sapor 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (332) hide show
  1. checksums.yaml +7 -0
  2. data/Area Class Diagram.dia +0 -0
  3. data/Area Class Diagram.png +0 -0
  4. data/Class Diagram.dia +0 -0
  5. data/Class Diagram.png +0 -0
  6. data/Example-Catalonia.md +361 -0
  7. data/Example-Flanders.md +486 -0
  8. data/Example-Greece.md +25 -0
  9. data/Example-Oslo.md +678 -0
  10. data/Example-UnitedKingdom-Referendum.md +132 -0
  11. data/Examples.md +15 -0
  12. data/LICENSE +674 -0
  13. data/README.md +103 -0
  14. data/Rakefile +18 -0
  15. data/Technical Documentation.md +14 -0
  16. data/bin/create_installation_package.sh +49 -0
  17. data/bin/install.sh +45 -0
  18. data/bin/sapor.rb +24 -0
  19. data/bin/sapor.sh +106 -0
  20. data/data/hu/hungary-2014.txt +1680 -0
  21. data/data/hu/hungary_2014_screen_scraper.rb +48 -0
  22. data/data/hu/hungary_2014_to_psv.rb +80 -0
  23. data/data/hu/index-2014.txt +106 -0
  24. data/data/pl/2015-gl-lis-okr.csv +42 -0
  25. data/data/pl/poland_2015_to_psv.rb +79 -0
  26. data/data/pl/poland_2015_to_psv_with_ko_and_rsw.rb +94 -0
  27. data/data/pl/poland_2015_to_psv_with_ko_konf_kp_l_and_zp.rb +100 -0
  28. data/data/pl/poland_2015_to_psv_with_ko_sld_and_wi.rb +92 -0
  29. data/data/pl/poland_2015_to_psv_with_sld.rb +84 -0
  30. data/data/pl/poland_2015_to_psv_with_sld_and_wi.rb +85 -0
  31. data/data/uk/inject_ukip_2015_as_brexit_2019_in_2017.rb +54 -0
  32. data/data/uk/united_kingdom_2015.txt +651 -0
  33. data/data/uk/united_kingdom_2015_to_psv.rb +104 -0
  34. data/data/uk/united_kingdom_2017.txt +651 -0
  35. data/data/uk/united_kingdom_2017_to_psv.rb +104 -0
  36. data/data/uk/united_kingdom_2017_to_psv_with_brexit_and_chuk.rb +113 -0
  37. data/data/uk/united_kingdom_2017_to_psv_with_tig.rb +111 -0
  38. data/lib/sapor.rb +150 -0
  39. data/lib/sapor/binomials_cache.rb +45 -0
  40. data/lib/sapor/combinations_distribution.rb +222 -0
  41. data/lib/sapor/denominators.rb +67 -0
  42. data/lib/sapor/dichotomies.rb +138 -0
  43. data/lib/sapor/dichotomy.rb +164 -0
  44. data/lib/sapor/first_past_the_post.rb +82 -0
  45. data/lib/sapor/largest_remainder.rb +118 -0
  46. data/lib/sapor/log4r_logger.rb +49 -0
  47. data/lib/sapor/log_facade.rb +40 -0
  48. data/lib/sapor/multi_district_leveled_proportional.rb +64 -0
  49. data/lib/sapor/multi_district_proportional.rb +123 -0
  50. data/lib/sapor/multi_district_variable_threshold_proportional.rb +128 -0
  51. data/lib/sapor/number_formatter.rb +45 -0
  52. data/lib/sapor/options.rb +73 -0
  53. data/lib/sapor/poll.rb +286 -0
  54. data/lib/sapor/polychotomy.rb +200 -0
  55. data/lib/sapor/pseudorandom_multirange_enumerator.rb +87 -0
  56. data/lib/sapor/referendum_polychotomy.rb +165 -0
  57. data/lib/sapor/regional_data/area.rb +82 -0
  58. data/lib/sapor/regional_data/austria.rb +84 -0
  59. data/lib/sapor/regional_data/belgium-brussels-2014.psv +46 -0
  60. data/lib/sapor/regional_data/belgium-brussels-20190526.psv +33 -0
  61. data/lib/sapor/regional_data/belgium-flanders-2014.psv +80 -0
  62. data/lib/sapor/regional_data/belgium-flanders-20190526.psv +74 -0
  63. data/lib/sapor/regional_data/belgium-wallonia-2014.psv +114 -0
  64. data/lib/sapor/regional_data/belgium-wallonia-20190526.psv +93 -0
  65. data/lib/sapor/regional_data/belgium.rb +97 -0
  66. data/lib/sapor/regional_data/belgium_brussels.rb +62 -0
  67. data/lib/sapor/regional_data/belgium_flanders.rb +64 -0
  68. data/lib/sapor/regional_data/belgium_wallonia.rb +63 -0
  69. data/lib/sapor/regional_data/catalonia-2012-2015.psv +100 -0
  70. data/lib/sapor/regional_data/catalonia-2012.psv +87 -0
  71. data/lib/sapor/regional_data/catalonia-2015-jxcat.psv +68 -0
  72. data/lib/sapor/regional_data/catalonia-2015-no-jxsi.psv +68 -0
  73. data/lib/sapor/regional_data/catalonia-2015.psv +63 -0
  74. data/lib/sapor/regional_data/catalonia-jxcat.rb +109 -0
  75. data/lib/sapor/regional_data/catalonia-no-jxsi.rb +96 -0
  76. data/lib/sapor/regional_data/catalonia.rb +96 -0
  77. data/lib/sapor/regional_data/denmark-20150618-with-e-and-p.psv +164 -0
  78. data/lib/sapor/regional_data/denmark-20150618-with-e.psv +153 -0
  79. data/lib/sapor/regional_data/denmark-20150618-with-p.psv +153 -0
  80. data/lib/sapor/regional_data/denmark-20150618.psv +142 -0
  81. data/lib/sapor/regional_data/denmark.rb +128 -0
  82. data/lib/sapor/regional_data/denmark_with_e.rb +128 -0
  83. data/lib/sapor/regional_data/denmark_with_e_and_p.rb +128 -0
  84. data/lib/sapor/regional_data/denmark_with_p.rb +128 -0
  85. data/lib/sapor/regional_data/estonia.rb +88 -0
  86. data/lib/sapor/regional_data/european-union-great-britain-20140522-brexit-chuk.psv +172 -0
  87. data/lib/sapor/regional_data/european-union-great-britain-20140522.psv +146 -0
  88. data/lib/sapor/regional_data/european-union-great-britain-20190523.psv +141 -0
  89. data/lib/sapor/regional_data/european-union-ireland-2014-ia-ri-sd.psv +64 -0
  90. data/lib/sapor/regional_data/european-union-ireland-2014-ia-sd.psv +60 -0
  91. data/lib/sapor/regional_data/european-union-ireland-2014-ia.psv +56 -0
  92. data/lib/sapor/regional_data/european-union-ireland-2014-sd.psv +56 -0
  93. data/lib/sapor/regional_data/european-union-ireland-2014.psv +50 -0
  94. data/lib/sapor/regional_data/european-union-ireland-20190524-ia.psv +58 -0
  95. data/lib/sapor/regional_data/european-union-ireland-20190524.psv +52 -0
  96. data/lib/sapor/regional_data/european_union_27_austria.rb +76 -0
  97. data/lib/sapor/regional_data/european_union_27_croatia.rb +81 -0
  98. data/lib/sapor/regional_data/european_union_27_denmark.rb +77 -0
  99. data/lib/sapor/regional_data/european_union_27_estonia.rb +74 -0
  100. data/lib/sapor/regional_data/european_union_27_finland.rb +74 -0
  101. data/lib/sapor/regional_data/european_union_27_ireland.rb +96 -0
  102. data/lib/sapor/regional_data/european_union_27_ireland_with_ia.rb +97 -0
  103. data/lib/sapor/regional_data/european_union_27_italy.rb +84 -0
  104. data/lib/sapor/regional_data/european_union_27_netherlands.rb +81 -0
  105. data/lib/sapor/regional_data/european_union_27_poland.rb +84 -0
  106. data/lib/sapor/regional_data/european_union_27_romania.rb +78 -0
  107. data/lib/sapor/regional_data/european_union_27_slovakia.rb +80 -0
  108. data/lib/sapor/regional_data/european_union_27_spain.rb +82 -0
  109. data/lib/sapor/regional_data/european_union_27_sweden.rb +76 -0
  110. data/lib/sapor/regional_data/european_union_austria.rb +76 -0
  111. data/lib/sapor/regional_data/european_union_bulgaria.rb +82 -0
  112. data/lib/sapor/regional_data/european_union_croatia.rb +81 -0
  113. data/lib/sapor/regional_data/european_union_cyprus.rb +72 -0
  114. data/lib/sapor/regional_data/european_union_czech_republic.rb +82 -0
  115. data/lib/sapor/regional_data/european_union_denmark.rb +77 -0
  116. data/lib/sapor/regional_data/european_union_estonia.rb +74 -0
  117. data/lib/sapor/regional_data/european_union_finland.rb +74 -0
  118. data/lib/sapor/regional_data/european_union_flanders.rb +74 -0
  119. data/lib/sapor/regional_data/european_union_france.rb +84 -0
  120. data/lib/sapor/regional_data/european_union_france_2019.rb +84 -0
  121. data/lib/sapor/regional_data/european_union_french_community_of_belgium.rb +73 -0
  122. data/lib/sapor/regional_data/european_union_germany.rb +86 -0
  123. data/lib/sapor/regional_data/european_union_great_britain.rb +98 -0
  124. data/lib/sapor/regional_data/european_union_greece.rb +77 -0
  125. data/lib/sapor/regional_data/european_union_hungary.rb +76 -0
  126. data/lib/sapor/regional_data/european_union_ireland.rb +96 -0
  127. data/lib/sapor/regional_data/european_union_ireland_with_ia.rb +97 -0
  128. data/lib/sapor/regional_data/european_union_italy.rb +84 -0
  129. data/lib/sapor/regional_data/european_union_latvia.rb +81 -0
  130. data/lib/sapor/regional_data/european_union_lithuania.rb +80 -0
  131. data/lib/sapor/regional_data/european_union_luxembourg.rb +75 -0
  132. data/lib/sapor/regional_data/european_union_malta.rb +71 -0
  133. data/lib/sapor/regional_data/european_union_netherlands.rb +81 -0
  134. data/lib/sapor/regional_data/european_union_northern_ireland.rb +75 -0
  135. data/lib/sapor/regional_data/european_union_poland.rb +84 -0
  136. data/lib/sapor/regional_data/european_union_portugal.rb +75 -0
  137. data/lib/sapor/regional_data/european_union_romania.rb +78 -0
  138. data/lib/sapor/regional_data/european_union_slovakia.rb +81 -0
  139. data/lib/sapor/regional_data/european_union_slovenia.rb +85 -0
  140. data/lib/sapor/regional_data/european_union_spain.rb +82 -0
  141. data/lib/sapor/regional_data/european_union_sweden.rb +76 -0
  142. data/lib/sapor/regional_data/finland-20150419-with-sin.psv +224 -0
  143. data/lib/sapor/regional_data/finland-20150419.psv +212 -0
  144. data/lib/sapor/regional_data/finland.rb +107 -0
  145. data/lib/sapor/regional_data/finland_with_sin.rb +107 -0
  146. data/lib/sapor/regional_data/flanders-2014.psv +96 -0
  147. data/lib/sapor/regional_data/flanders-20190526.psv +87 -0
  148. data/lib/sapor/regional_data/flanders.rb +115 -0
  149. data/lib/sapor/regional_data/france.rb +38 -0
  150. data/lib/sapor/regional_data/greece.rb +92 -0
  151. data/lib/sapor/regional_data/hungary-2014.psv +2104 -0
  152. data/lib/sapor/regional_data/hungary.rb +116 -0
  153. data/lib/sapor/regional_data/iceland-20161029-midflokkurinn.psv +94 -0
  154. data/lib/sapor/regional_data/iceland-20161029.psv +88 -0
  155. data/lib/sapor/regional_data/iceland-20171028.psv +85 -0
  156. data/lib/sapor/regional_data/iceland.rb +133 -0
  157. data/lib/sapor/regional_data/latvia-20141004-kpv-p-par.psv +109 -0
  158. data/lib/sapor/regional_data/latvia-20141004-kpv-par.psv +103 -0
  159. data/lib/sapor/regional_data/latvia-20141004-kpv.psv +97 -0
  160. data/lib/sapor/regional_data/latvia-20141004.psv +89 -0
  161. data/lib/sapor/regional_data/latvia.rb +112 -0
  162. data/lib/sapor/regional_data/latvia_kpv.rb +112 -0
  163. data/lib/sapor/regional_data/latvia_kpv_p_par.rb +112 -0
  164. data/lib/sapor/regional_data/latvia_kpv_par.rb +112 -0
  165. data/lib/sapor/regional_data/luxembourg-20131020.psv +76 -0
  166. data/lib/sapor/regional_data/luxembourg.rb +82 -0
  167. data/lib/sapor/regional_data/netherlands.rb +108 -0
  168. data/lib/sapor/regional_data/norway.rb +425 -0
  169. data/lib/sapor/regional_data/norwegian_municipality.rb +68 -0
  170. data/lib/sapor/regional_data/poland-20151025-with-ko-and-l-without-n-po-r-and-zl.psv +321 -0
  171. data/lib/sapor/regional_data/poland-20151025-with-ko-konf-kp-l-and-zp-without-k-k15-n-pis-po-psl-r-and-zl.psv +280 -0
  172. data/lib/sapor/regional_data/poland-20151025-with-ko-sld-and-wi-without-n-po-and-zl.psv +403 -0
  173. data/lib/sapor/regional_data/poland-20151025-with-sld-and-wi-without-zl.psv +444 -0
  174. data/lib/sapor/regional_data/poland-20151025-with-sld-without-zl.psv +403 -0
  175. data/lib/sapor/regional_data/poland-20151025.psv +403 -0
  176. data/lib/sapor/regional_data/poland.rb +125 -0
  177. data/lib/sapor/regional_data/poland_with_ko_and_l_without_n_po_r_and_zl.rb +122 -0
  178. data/lib/sapor/regional_data/poland_with_ko_konf_kp_l_and_zp_without_k_k15_n_pis_po_psl_r_and_zl.rb +123 -0
  179. data/lib/sapor/regional_data/poland_with_ko_sld_and_wi_without_n_po_and_zl.rb +125 -0
  180. data/lib/sapor/regional_data/poland_with_sld_and_wi_without_zl.rb +126 -0
  181. data/lib/sapor/regional_data/poland_with_sld_without_zl.rb +126 -0
  182. data/lib/sapor/regional_data/portugal-20151004-with-a-and-ch-without-paf.psv +438 -0
  183. data/lib/sapor/regional_data/portugal-20151004-with-a-and-il-without-paf.psv +438 -0
  184. data/lib/sapor/regional_data/portugal-20151004-with-a-ch-and-il-without-paf.psv +461 -0
  185. data/lib/sapor/regional_data/portugal-20151004-with-a-without-paf.psv +415 -0
  186. data/lib/sapor/regional_data/portugal-20151004-with-ch-and-il-without-paf.psv +438 -0
  187. data/lib/sapor/regional_data/portugal-20151004-without-paf.psv +392 -0
  188. data/lib/sapor/regional_data/portugal-20151004.psv +370 -0
  189. data/lib/sapor/regional_data/portugal.rb +101 -0
  190. data/lib/sapor/regional_data/portugal_with_a_and_ch_without_paf.rb +92 -0
  191. data/lib/sapor/regional_data/portugal_with_a_and_il_without_paf.rb +92 -0
  192. data/lib/sapor/regional_data/portugal_with_a_ch_and_il_without_paf.rb +92 -0
  193. data/lib/sapor/regional_data/portugal_with_a_without_paf.rb +92 -0
  194. data/lib/sapor/regional_data/portugal_with_ch_and_il_without_paf.rb +92 -0
  195. data/lib/sapor/regional_data/portugal_without_paf.rb +92 -0
  196. data/lib/sapor/regional_data/slovakia.rb +81 -0
  197. data/lib/sapor/regional_data/slovenia.rb +114 -0
  198. data/lib/sapor/regional_data/spain-20160626.psv +619 -0
  199. data/lib/sapor/regional_data/spain.rb +136 -0
  200. data/lib/sapor/regional_data/sweden.rb +92 -0
  201. data/lib/sapor/regional_data/sweden_20140914.rb +89 -0
  202. data/lib/sapor/regional_data/united_kingdom-2015.psv +4358 -0
  203. data/lib/sapor/regional_data/united_kingdom-20170608-brexit-chuk.psv +5154 -0
  204. data/lib/sapor/regional_data/united_kingdom-20170608-brexit.psv +4521 -0
  205. data/lib/sapor/regional_data/united_kingdom-20170608-tig.psv +4529 -0
  206. data/lib/sapor/regional_data/united_kingdom-20170608.psv +3894 -0
  207. data/lib/sapor/regional_data/united_kingdom.rb +94 -0
  208. data/lib/sapor/regional_data/united_kingdom_with_brexit.rb +110 -0
  209. data/lib/sapor/regional_data/united_kingdom_with_brexit_and_chuk.rb +111 -0
  210. data/lib/sapor/regional_data/united_kingdom_with_tig.rb +111 -0
  211. data/lib/sapor/regional_data/utopia.rb +66 -0
  212. data/lib/sapor/regional_data/wallonia-2014.psv +101 -0
  213. data/lib/sapor/regional_data/wallonia-20190526.psv +88 -0
  214. data/lib/sapor/regional_data/wallonia.rb +112 -0
  215. data/lib/sapor/representatives_polychotomy.rb +338 -0
  216. data/lib/sapor/single_district_proportional.rb +75 -0
  217. data/sapor.gemspec +35 -0
  218. data/spec/integration/area_spec.rb +28 -0
  219. data/spec/integration/poll_spec.rb +112 -0
  220. data/spec/integration/sample.poll +8 -0
  221. data/spec/spec_helper.rb +31 -0
  222. data/spec/unit/area_spec.rb +115 -0
  223. data/spec/unit/austria_spec.rb +76 -0
  224. data/spec/unit/belgium_brussels_spec.rb +58 -0
  225. data/spec/unit/belgium_flanders_spec.rb +62 -0
  226. data/spec/unit/belgium_spec.rb +26 -0
  227. data/spec/unit/belgium_wallonia_spec.rb +65 -0
  228. data/spec/unit/binomials_cache_spec.rb +34 -0
  229. data/spec/unit/catalonia_spec.rb +74 -0
  230. data/spec/unit/combinations_distribution_spec.rb +241 -0
  231. data/spec/unit/denmark_spec.rb +56 -0
  232. data/spec/unit/denmark_with_e_and_p_spec.rb +58 -0
  233. data/spec/unit/denmark_with_e_spec.rb +57 -0
  234. data/spec/unit/denmark_with_p_spec.rb +57 -0
  235. data/spec/unit/denominators_spec.rb +40 -0
  236. data/spec/unit/dichotomies_spec.rb +154 -0
  237. data/spec/unit/dichotomy_spec.rb +320 -0
  238. data/spec/unit/estonia_spec.rb +65 -0
  239. data/spec/unit/european_union_27_austria_spec.rb +61 -0
  240. data/spec/unit/european_union_27_croatia_spec.rb +60 -0
  241. data/spec/unit/european_union_27_denmark_spec.rb +62 -0
  242. data/spec/unit/european_union_27_estonia_spec.rb +94 -0
  243. data/spec/unit/european_union_27_finland_spec.rb +75 -0
  244. data/spec/unit/european_union_27_ireland_spec.rb +72 -0
  245. data/spec/unit/european_union_27_ireland_with_ia_spec.rb +74 -0
  246. data/spec/unit/european_union_27_italy_spec.rb +69 -0
  247. data/spec/unit/european_union_27_netherlands_spec.rb +81 -0
  248. data/spec/unit/european_union_27_poland_spec.rb +69 -0
  249. data/spec/unit/european_union_27_romania_spec.rb +67 -0
  250. data/spec/unit/european_union_27_slovakia_spec.rb +111 -0
  251. data/spec/unit/european_union_27_spain_spec.rb +130 -0
  252. data/spec/unit/european_union_27_sweden_spec.rb +89 -0
  253. data/spec/unit/european_union_austria_spec.rb +61 -0
  254. data/spec/unit/european_union_bulgaria_spec.rb +97 -0
  255. data/spec/unit/european_union_croatia_spec.rb +59 -0
  256. data/spec/unit/european_union_cyprus_spec.rb +65 -0
  257. data/spec/unit/european_union_czech_republic_spec.rb +125 -0
  258. data/spec/unit/european_union_denmark_spec.rb +61 -0
  259. data/spec/unit/european_union_estonia_spec.rb +93 -0
  260. data/spec/unit/european_union_finland_spec.rb +75 -0
  261. data/spec/unit/european_union_flanders_spec.rb +56 -0
  262. data/spec/unit/european_union_france_2019_spec.rb +73 -0
  263. data/spec/unit/european_union_france_spec.rb +73 -0
  264. data/spec/unit/european_union_french_community_of_belgium_spec.rb +61 -0
  265. data/spec/unit/european_union_germany_spec.rb +90 -0
  266. data/spec/unit/european_union_great_britain_spec.rb +87 -0
  267. data/spec/unit/european_union_greece_spec.rb +148 -0
  268. data/spec/unit/european_union_hungary_spec.rb +57 -0
  269. data/spec/unit/european_union_ireland_spec.rb +72 -0
  270. data/spec/unit/european_union_ireland_with_ia_spec.rb +74 -0
  271. data/spec/unit/european_union_italy_spec.rb +69 -0
  272. data/spec/unit/european_union_latvia_spec.rb +76 -0
  273. data/spec/unit/european_union_lithuania_spec.rb +68 -0
  274. data/spec/unit/european_union_luxembourg_spec.rb +63 -0
  275. data/spec/unit/european_union_malta_spec.rb +60 -0
  276. data/spec/unit/european_union_netherlands_spec.rb +81 -0
  277. data/spec/unit/european_union_northern_ireland_spec.rb +66 -0
  278. data/spec/unit/european_union_poland_spec.rb +69 -0
  279. data/spec/unit/european_union_portugal_spec.rb +77 -0
  280. data/spec/unit/european_union_romania_spec.rb +67 -0
  281. data/spec/unit/european_union_slovakia_spec.rb +111 -0
  282. data/spec/unit/european_union_slovenia_spec.rb +77 -0
  283. data/spec/unit/european_union_spain_spec.rb +129 -0
  284. data/spec/unit/european_union_sweden_spec.rb +89 -0
  285. data/spec/unit/finland_spec.rb +65 -0
  286. data/spec/unit/finland_with_sin_spec.rb +67 -0
  287. data/spec/unit/first_past_the_post_spec.rb +54 -0
  288. data/spec/unit/flanders_spec.rb +70 -0
  289. data/spec/unit/france_spec.rb +32 -0
  290. data/spec/unit/greece_spec.rb +118 -0
  291. data/spec/unit/hungary_spec.rb +132 -0
  292. data/spec/unit/iceland_spec.rb +57 -0
  293. data/spec/unit/largest_remainder_spec.rb +79 -0
  294. data/spec/unit/latvia_kpv_p_par_spec.rb +38 -0
  295. data/spec/unit/latvia_kpv_par_spec.rb +38 -0
  296. data/spec/unit/latvia_kpv_spec.rb +38 -0
  297. data/spec/unit/latvia_spec.rb +60 -0
  298. data/spec/unit/luxembourg_spec.rb +54 -0
  299. data/spec/unit/multi_district_leveled_proportional_spec.rb +49 -0
  300. data/spec/unit/multi_district_proportional_spec.rb +81 -0
  301. data/spec/unit/netherlands_spec.rb +107 -0
  302. data/spec/unit/norway_spec.rb +64 -0
  303. data/spec/unit/norwegian_municipality_spec.rb +89 -0
  304. data/spec/unit/number_formatter_spec.rb +173 -0
  305. data/spec/unit/poland_spec.rb +62 -0
  306. data/spec/unit/poland_with_ko_and_l_without_n_po_r_and_zl_spec.rb +60 -0
  307. data/spec/unit/poland_with_ko_konf_kp_l_and_zp_without_k_k15_n_pis_po_psl_r_and_zl_spec.rb +59 -0
  308. data/spec/unit/poland_with_ko_sld_and_wi_without_n_po_and_zl_spec.rb +62 -0
  309. data/spec/unit/poland_with_sld_and_wi_without_zl_spec.rb +63 -0
  310. data/spec/unit/poland_with_sld_without_zl_spec.rb +62 -0
  311. data/spec/unit/poll_spec.rb +110 -0
  312. data/spec/unit/portugal_spec.rb +66 -0
  313. data/spec/unit/portugal_with_a_and_ch_without_paf_spec.rb +68 -0
  314. data/spec/unit/portugal_with_a_and_il_without_paf_spec.rb +68 -0
  315. data/spec/unit/portugal_with_a_ch_and_il_without_paf_spec.rb +69 -0
  316. data/spec/unit/portugal_with_a_without_paf_spec.rb +67 -0
  317. data/spec/unit/portugal_with_ch_and_il_without_paf_spec.rb +68 -0
  318. data/spec/unit/portugal_without_paf_spec.rb +66 -0
  319. data/spec/unit/pseudorandom_multirange_enumerator_spec.rb +82 -0
  320. data/spec/unit/referendum_polychotomy_spec.rb +289 -0
  321. data/spec/unit/representatives_polychotomy_spec.rb +332 -0
  322. data/spec/unit/slovakia_spec.rb +99 -0
  323. data/spec/unit/slovenia_spec.rb +80 -0
  324. data/spec/unit/spain_spec.rb +101 -0
  325. data/spec/unit/sweden_20140914_spec.rb +112 -0
  326. data/spec/unit/sweden_spec.rb +113 -0
  327. data/spec/unit/united_kingdom_spec.rb +65 -0
  328. data/spec/unit/united_kingdom_with_brexit_and_chuk_spec.rb +67 -0
  329. data/spec/unit/united_kingdom_with_brexit_spec.rb +66 -0
  330. data/spec/unit/united_kingdom_with_tig_spec.rb +66 -0
  331. data/spec/unit/wallonia_spec.rb +70 -0
  332. metadata +490 -0
@@ -0,0 +1,136 @@
1
+ #
2
+ # Statistical Analysis of Polling Results (SAPoR)
3
+ # Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
4
+ #
5
+ # This file is part of SAPoR.
6
+ #
7
+ # SAPoR is free software: you can redistribute it and/or modify it under the
8
+ # terms of the GNU General Public License as published by the Free Software
9
+ # Foundation, either version 3 of the License, or (at your option) any later
10
+ # version.
11
+ #
12
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
13
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
+ #
16
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
17
+ #
18
+
19
+ module Sapor
20
+ #
21
+ # The regional data for Spain.
22
+ #
23
+ class Spain < Area
24
+ include Singleton
25
+
26
+ def area_code
27
+ 'ES'
28
+ end
29
+
30
+ def coalitions
31
+ COALITIONS
32
+ end
33
+
34
+ def no_of_seats
35
+ SEAT_DISTRIBUTION.values.inject(:+)
36
+ end
37
+
38
+ def overall_election_results_of_2016
39
+ if @overall_election_results_of_2016.nil?
40
+ @overall_election_results_of_2016 = \
41
+ summarize_election_results(election_results_of_2016)
42
+ end
43
+ @overall_election_results_of_2016
44
+ end
45
+
46
+ def population_size
47
+ POPULATION_SIZE
48
+ end
49
+
50
+ def seats(simulation)
51
+ electoral_system.project(simulation)
52
+ end
53
+
54
+ def threshold
55
+ THRESHOLD
56
+ end
57
+
58
+ private
59
+
60
+ CC_PARTY = 'Coalición Canaria–Partido Nacionalista Canario'.freeze
61
+ CS_PARTY = 'Ciudadanos–Partido de la Ciudadanía'.freeze
62
+ EAJPNV_PARTY = 'Euzko Alderdi Jeltzalea/Partido Nacionalista Vasco'.freeze
63
+ EHB_PARTY = 'Euskal Herria Bildu'.freeze
64
+ ERC_PARTY = 'Esquerra Republicana de Catalunya–Catalunya Sí'.freeze
65
+ PDECAT_PARTY = 'Partit Demòcrata Europeu Català'.freeze
66
+ PODEMOS_PARTY = 'Unidos Podemos'.freeze
67
+ PP_PARTY = 'Partido Popular'.freeze
68
+ PSOE_PARTY = 'Partido Socialista Obrero Español'.freeze
69
+ VOX_PARTY = 'Vox'.freeze
70
+
71
+ COALITIONS = [[CC_PARTY, CS_PARTY, PP_PARTY],
72
+ [CS_PARTY, EAJPNV_PARTY, PP_PARTY],
73
+ [CS_PARTY, PP_PARTY],
74
+ [CS_PARTY, PP_PARTY, PSOE_PARTY],
75
+ [CS_PARTY, PP_PARTY, VOX_PARTY],
76
+ [CS_PARTY, PODEMOS_PARTY, PSOE_PARTY],
77
+ [CS_PARTY, PSOE_PARTY],
78
+ [EAJPNV_PARTY, EHB_PARTY, ERC_PARTY, PDECAT_PARTY,
79
+ PODEMOS_PARTY, PSOE_PARTY],
80
+ [EAJPNV_PARTY, EHB_PARTY, PODEMOS_PARTY, PSOE_PARTY],
81
+ [EAJPNV_PARTY, PODEMOS_PARTY, PSOE_PARTY],
82
+ [EHB_PARTY, ERC_PARTY, PODEMOS_PARTY, PSOE_PARTY],
83
+ [ERC_PARTY, PDECAT_PARTY, PODEMOS_PARTY, PSOE_PARTY],
84
+ [PODEMOS_PARTY, PSOE_PARTY],
85
+ [PP_PARTY],
86
+ [PP_PARTY, PSOE_PARTY],
87
+ [PP_PARTY, VOX_PARTY],
88
+ [PSOE_PARTY]].freeze
89
+
90
+ # Voter turnout on 26 June 2016
91
+ # https://en.wikipedia.org/wiki/2016_Spanish_general_election
92
+ POPULATION_SIZE = 24_053_755
93
+
94
+ SEAT_DISTRIBUTION = { 'A Coruña' => 8, 'Albacete' => 4,
95
+ 'Alicante/Alacant' => 12, 'Almería' => 6,
96
+ 'Araba' => 4, 'Asturias' => 8, 'Ávila' => 3,
97
+ 'Badajoz' => 6, 'Barcelona' => 31, 'Bizkaia' => 8,
98
+ 'Burgos' => 4, 'Cáceres' => 4, 'Cádiz' => 9,
99
+ 'Cantabria' => 5, 'Castellón/Castelló' => 5,
100
+ 'Ceuta' => 1, 'Ciudad Real' => 5, 'Córdoba' => 6,
101
+ 'Cuenca' => 3, 'Gipuzkoa' => 6, 'Girona' => 6,
102
+ 'Granada' => 7, 'Guadalajara' => 3, 'Huelva' => 5,
103
+ 'Huesca' => 3, 'Illes Balears' => 8, 'Jaén' => 5,
104
+ 'La Rioja' => 4, 'Las Palmas' => 8, 'Léon' => 4,
105
+ 'Lleida' => 4, 'Lugo' => 4, 'Madrid' => 36,
106
+ 'Málaga' => 11, 'Melilla' => 1, 'Murcia' => 10,
107
+ 'Navarra' => 5, 'Ourense' => 4, 'Palencia' => 3,
108
+ 'Pontevedra' => 7, 'Salamanca' => 4,
109
+ 'Santa Cruz de Tenerife' => 7, 'Segovia' => 3,
110
+ 'Sevilla' => 12, 'Soria' => 2, 'Tarragona' => 6,
111
+ 'Teruel' => 3, 'Toledo' => 6,
112
+ 'Valencia/València' => 16, 'Valladolid' => 5,
113
+ 'Zamora' => 3, 'Zaragoza' => 7 }.freeze
114
+
115
+ THRESHOLD = 0.03
116
+
117
+ def election_results_of_2016
118
+ if @election_results_of_2016.nil?
119
+ @election_results_of_2016 = load_election_results(
120
+ 'spain-20160626.psv'
121
+ )
122
+ end
123
+ @election_results_of_2016
124
+ end
125
+
126
+ def electoral_system
127
+ if @electoral_system.nil?
128
+ @electoral_system = MultiDistrictProportional.new( \
129
+ overall_election_results_of_2016, election_results_of_2016,
130
+ SEAT_DISTRIBUTION, DhondtDenominators, THRESHOLD
131
+ )
132
+ end
133
+ @electoral_system
134
+ end
135
+ end
136
+ end
@@ -0,0 +1,92 @@
1
+ #
2
+ # Statistical Analysis of Polling Results (SAPoR)
3
+ # Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
4
+ #
5
+ # This file is part of SAPoR.
6
+ #
7
+ # SAPoR is free software: you can redistribute it and/or modify it under the
8
+ # terms of the GNU General Public License as published by the Free Software
9
+ # Foundation, either version 3 of the License, or (at your option) any later
10
+ # version.
11
+ #
12
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
13
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
+ #
16
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
17
+ #
18
+
19
+ module Sapor
20
+ #
21
+ # The regional data for Sweden.
22
+ #
23
+ class Sweden < Area
24
+ include Singleton
25
+
26
+ def area_code
27
+ 'SE'
28
+ end
29
+
30
+ def coalitions
31
+ COALITIONS
32
+ end
33
+
34
+ def no_of_seats
35
+ NO_OF_SEATS
36
+ end
37
+
38
+ def population_size
39
+ POPULATION_SIZE
40
+ end
41
+
42
+ def seats(simulation)
43
+ electoral_system.project(simulation)
44
+ end
45
+
46
+ private
47
+
48
+ C_PARTY = 'Centerpartiet'.freeze
49
+ FI_PARTY = 'Feministiskt initiativ'.freeze
50
+ KD_PARTY = 'Kristdemokraterna'.freeze
51
+ L_PARTY = 'Liberalerna'.freeze
52
+ M_PARTY = 'Moderata samlingspartiet'.freeze
53
+ MP_PARTY = 'Miljöpartiet de gröna'.freeze
54
+ S_PARTY = 'Sveriges socialdemokratiska arbetareparti'.freeze
55
+ SD_PARTY = 'Sverigedemokraterna'.freeze
56
+ V_PARTY = 'Vänsterpartiet'.freeze
57
+
58
+ COALITIONS = [[C_PARTY, KD_PARTY, L_PARTY, M_PARTY],
59
+ [C_PARTY, L_PARTY, M_PARTY],
60
+ [C_PARTY, L_PARTY, MP_PARTY, S_PARTY],
61
+ [C_PARTY, L_PARTY, MP_PARTY, S_PARTY, V_PARTY],
62
+ [C_PARTY, KD_PARTY, M_PARTY],
63
+ [C_PARTY, M_PARTY],
64
+ [C_PARTY, M_PARTY, S_PARTY],
65
+ [FI_PARTY, MP_PARTY, S_PARTY, V_PARTY],
66
+ [KD_PARTY, M_PARTY, SD_PARTY],
67
+ [MP_PARTY, S_PARTY],
68
+ [MP_PARTY, S_PARTY, V_PARTY],
69
+ [M_PARTY, SD_PARTY],
70
+ [M_PARTY, S_PARTY],
71
+ [S_PARTY, V_PARTY]].freeze
72
+
73
+ NO_OF_SEATS = 349
74
+
75
+ # Voter turnout on 14 September 2014
76
+ # Source: Web page with the official results of the elections of 14
77
+ # September 2014, downloaded on 11 June 2018,
78
+ # https://sv.wikipedia.org/wiki/Riksdagsvalet_i_Sverige_2014#Valresultat_partir%C3%B6ster
79
+ POPULATION_SIZE = 6_231_573
80
+
81
+ THRESHOLD = 0.04
82
+
83
+ def electoral_system
84
+ if @electoral_system.nil?
85
+ @electoral_system = SingleDistrictProportional.new(
86
+ NO_OF_SEATS, SainteLague12Denominators, THRESHOLD
87
+ )
88
+ end
89
+ @electoral_system
90
+ end
91
+ end
92
+ end
@@ -0,0 +1,89 @@
1
+ #
2
+ # Statistical Analysis of Polling Results (SAPoR)
3
+ # Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
4
+ #
5
+ # This file is part of SAPoR.
6
+ #
7
+ # SAPoR is free software: you can redistribute it and/or modify it under the
8
+ # terms of the GNU General Public License as published by the Free Software
9
+ # Foundation, either version 3 of the License, or (at your option) any later
10
+ # version.
11
+ #
12
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
13
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15
+ #
16
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
17
+ #
18
+
19
+ module Sapor
20
+ #
21
+ # The regional data for Sweden, using the electoral system used in the 2014
22
+ # election.
23
+ #
24
+ class Sweden20140914 < Area
25
+ include Singleton
26
+
27
+ def area_code
28
+ 'SE@20140914'
29
+ end
30
+
31
+ def coalitions
32
+ COALITIONS
33
+ end
34
+
35
+ def no_of_seats
36
+ NO_OF_SEATS
37
+ end
38
+
39
+ def population_size
40
+ POPULATION_SIZE
41
+ end
42
+
43
+ def seats(simulation)
44
+ electoral_system.project(simulation)
45
+ end
46
+
47
+ private
48
+
49
+ COALITIONS = [['Centerpartiet', 'Kristdemokraterna', 'Liberalerna',
50
+ 'Moderata samlingspartiet'],
51
+ ['Centerpartiet', 'Liberalerna', 'Moderata samlingspartiet'],
52
+ ['Centerpartiet', 'Kristdemokraterna',
53
+ 'Moderata samlingspartiet'],
54
+ ['Centerpartiet', 'Moderata samlingspartiet'],
55
+ ['Feministiskt initiativ', 'Miljöpartiet de gröna',
56
+ 'Sveriges socialdemokratiska arbetareparti',
57
+ 'Vänsterpartiet'],
58
+ ['Miljöpartiet de gröna',
59
+ 'Sveriges socialdemokratiska arbetareparti'],
60
+ ['Miljöpartiet de gröna',
61
+ 'Sveriges socialdemokratiska arbetareparti',
62
+ 'Vänsterpartiet'],
63
+ ['Moderata samlingspartiet',
64
+ 'Sverigedemokraterna'],
65
+ ['Moderata samlingspartiet',
66
+ 'Sveriges socialdemokratiska arbetareparti'],
67
+ ['Sveriges socialdemokratiska arbetareparti',
68
+ 'Vänsterpartiet']].freeze
69
+
70
+ NO_OF_SEATS = 349
71
+
72
+ # Voter turnout on 14 September 2014
73
+ # Source: Web page with the official results of the elections of 14
74
+ # September 2014, downloaded on 11 June 2018,
75
+ # https://sv.wikipedia.org/wiki/Riksdagsvalet_i_Sverige_2014#Valresultat_partir%C3%B6ster
76
+ POPULATION_SIZE = 6_231_573
77
+
78
+ THRESHOLD = 0.04
79
+
80
+ def electoral_system
81
+ if @electoral_system.nil?
82
+ @electoral_system = SingleDistrictProportional.new(
83
+ NO_OF_SEATS, SainteLague14Denominators, THRESHOLD
84
+ )
85
+ end
86
+ @electoral_system
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,4358 @@
1
+ # Statistical Analysis of Polling Results (SAPoR)
2
+ # Copyright (C) 2016 Filip van Laenen <f.a.vanlaenen@ieee.org>
3
+ #
4
+ # This file is part of SAPoR.
5
+ #
6
+ # SAPoR is free software: you can redistribute it and/or modify it under the
7
+ # terms of the GNU General Public License as published by the Free Software
8
+ # Foundation, either version 3 of the License, or (at your option) any later
9
+ # version.
10
+ #
11
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
12
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14
+ #
15
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
16
+ #
17
+
18
+ Aldershot | Conservative Party | 23369
19
+ Aldershot | Labour Party | 8468
20
+ Aldershot | Liberal Democrats | 4076
21
+ Aldershot | UK Independence Party | 8253
22
+ Aldershot | Green Party | 2025
23
+
24
+ Aldridge-Brownhills | Conservative Party | 20558
25
+ Aldridge-Brownhills | Labour Party | 8835
26
+ Aldridge-Brownhills | Liberal Democrats | 1330
27
+ Aldridge-Brownhills | UK Independence Party | 7751
28
+ Aldridge-Brownhills | Green Party | 826
29
+ Aldridge-Brownhills | All other candidates | 197
30
+
31
+ Altrincham and Sale West | Conservative Party | 26771
32
+ Altrincham and Sale West | Labour Party | 13481
33
+ Altrincham and Sale West | Liberal Democrats | 4235
34
+ Altrincham and Sale West | UK Independence Party | 4047
35
+ Altrincham and Sale West | Green Party | 1983
36
+
37
+ Amber Valley | Conservative Party | 20106
38
+ Amber Valley | Labour Party | 15901
39
+ Amber Valley | Liberal Democrats | 1360
40
+ Amber Valley | UK Independence Party | 7263
41
+ Amber Valley | Green Party | 1087
42
+
43
+ Arundel and South Downs | Conservative Party | 34331
44
+ Arundel and South Downs | Labour Party | 6324
45
+ Arundel and South Downs | Liberal Democrats | 4062
46
+ Arundel and South Downs | UK Independence Party | 8154
47
+ Arundel and South Downs | Green Party | 3606
48
+
49
+ Ashfield | Conservative Party | 10628
50
+ Ashfield | Labour Party | 19448
51
+ Ashfield | Liberal Democrats | 7030
52
+ Ashfield | UK Independence Party | 10150
53
+ Ashfield | All other candidates | 153
54
+
55
+ Ashford | Conservative Party | 30094
56
+ Ashford | Labour Party | 10580
57
+ Ashford | Liberal Democrats | 3433
58
+ Ashford | UK Independence Party | 10798
59
+ Ashford | Green Party | 2467
60
+
61
+ Ashton under Lyne | Conservative Party | 8610
62
+ Ashton under Lyne | Labour Party | 19366
63
+ Ashton under Lyne | Liberal Democrats | 943
64
+ Ashton under Lyne | UK Independence Party | 8468
65
+ Ashton under Lyne | Green Party | 1531
66
+
67
+ Aylesbury | Conservative Party | 28083
68
+ Aylesbury | Labour Party | 8391
69
+ Aylesbury | Liberal Democrats | 5885
70
+ Aylesbury | UK Independence Party | 10925
71
+ Aylesbury | Green Party | 2135
72
+
73
+ Banbury | Conservative Party | 30749
74
+ Banbury | Labour Party | 12354
75
+ Banbury | Liberal Democrats | 3440
76
+ Banbury | UK Independence Party | 8050
77
+ Banbury | Green Party | 2686
78
+ Banbury | All other candidates | 729
79
+
80
+ Barking | Conservative Party | 7019
81
+ Barking | Labour Party | 24826
82
+ Barking | Liberal Democrats | 562
83
+ Barking | UK Independence Party | 9554
84
+ Barking | Green Party | 879
85
+ Barking | All other candidates | 183
86
+
87
+ Barnsley Central | Conservative Party | 5485
88
+ Barnsley Central | Labour Party | 20376
89
+ Barnsley Central | Liberal Democrats | 770
90
+ Barnsley Central | UK Independence Party | 7941
91
+ Barnsley Central | Green Party | 938
92
+ Barnsley Central | Small or local party, or independent candidate | 573
93
+ Barnsley Central | All other candidates | 477
94
+
95
+ Barnsley East | Conservative Party | 5622
96
+ Barnsley East | Labour Party | 21079
97
+ Barnsley East | Liberal Democrats | 1217
98
+ Barnsley East | UK Independence Party | 9045
99
+ Barnsley East | Small or local party, or independent candidate | 647
100
+ Barnsley East | All other candidates | 907
101
+
102
+ Barrow and Furness | Conservative Party | 17525
103
+ Barrow and Furness | Labour Party | 18320
104
+ Barrow and Furness | Liberal Democrats | 1169
105
+ Barrow and Furness | UK Independence Party | 5070
106
+ Barrow and Furness | Green Party | 1061
107
+ Barrow and Furness | All other candidates | 130
108
+
109
+ Basildon and Billericay | Conservative Party | 22668
110
+ Basildon and Billericay | Labour Party | 10186
111
+ Basildon and Billericay | Liberal Democrats | 1636
112
+ Basildon and Billericay | UK Independence Party | 8538
113
+
114
+ Basildon South and East Thurrock | Conservative Party | 19788
115
+ Basildon South and East Thurrock | Labour Party | 11493
116
+ Basildon South and East Thurrock | Liberal Democrats | 1356
117
+ Basildon South and East Thurrock | UK Independence Party | 12097
118
+ Basildon South and East Thurrock | All other candidates | 859
119
+
120
+ Basingstoke | Conservative Party | 25769
121
+ Basingstoke | Labour Party | 14706
122
+ Basingstoke | Liberal Democrats | 3919
123
+ Basingstoke | UK Independence Party | 8290
124
+ Basingstoke | All other candidates | 392
125
+
126
+ Bassetlaw | Conservative Party | 15122
127
+ Bassetlaw | Labour Party | 23965
128
+ Bassetlaw | Liberal Democrats | 1331
129
+ Bassetlaw | UK Independence Party | 7865
130
+ Bassetlaw | Green Party | 1006
131
+
132
+ Bath | Conservative Party | 17833
133
+ Bath | Labour Party | 6216
134
+ Bath | Liberal Democrats | 14000
135
+ Bath | UK Independence Party | 2922
136
+ Bath | Green Party | 5634
137
+ Bath | All other candidates | 562
138
+
139
+ Batley and Spen | Conservative Party | 15769
140
+ Batley and Spen | Labour Party | 21826
141
+ Batley and Spen | Liberal Democrats | 2396
142
+ Batley and Spen | UK Independence Party | 9080
143
+ Batley and Spen | Green Party | 1232
144
+ Batley and Spen | All other candidates | 176
145
+
146
+ Battersea | Conservative Party | 26730
147
+ Battersea | Labour Party | 18792
148
+ Battersea | Liberal Democrats | 2241
149
+ Battersea | UK Independence Party | 1586
150
+ Battersea | Green Party | 1682
151
+
152
+ Beaconsfield | Conservative Party | 33621
153
+ Beaconsfield | Labour Party | 6074
154
+ Beaconsfield | Liberal Democrats | 3927
155
+ Beaconsfield | UK Independence Party | 7310
156
+ Beaconsfield | Green Party | 2231
157
+
158
+ Beckenham | Conservative Party | 27955
159
+ Beckenham | Labour Party | 9484
160
+ Beckenham | Liberal Democrats | 3378
161
+ Beckenham | UK Independence Party | 6108
162
+ Beckenham | Green Party | 1878
163
+
164
+ Bedford | Conservative Party | 19625
165
+ Bedford | Labour Party | 18528
166
+ Bedford | Liberal Democrats | 1958
167
+ Bedford | UK Independence Party | 4434
168
+ Bedford | Green Party | 1412
169
+ Bedford | All other candidates | 129
170
+
171
+ Bedfordshire Mid | Conservative Party | 32544
172
+ Bedfordshire Mid | Labour Party | 9217
173
+ Bedfordshire Mid | Liberal Democrats | 4193
174
+ Bedfordshire Mid | UK Independence Party | 8966
175
+ Bedfordshire Mid | Green Party | 2462
176
+ Bedfordshire Mid | All other candidates | 678
177
+
178
+ Bedfordshire North East | Conservative Party | 34891
179
+ Bedfordshire North East | Labour Party | 9247
180
+ Bedfordshire North East | Liberal Democrats | 3418
181
+ Bedfordshire North East | UK Independence Party | 8579
182
+ Bedfordshire North East | Green Party | 2537
183
+
184
+ Bedfordshire South West | Conservative Party | 28212
185
+ Bedfordshire South West | Labour Party | 10399
186
+ Bedfordshire South West | Liberal Democrats | 2646
187
+ Bedfordshire South West | UK Independence Party | 7941
188
+ Bedfordshire South West | Green Party | 2106
189
+
190
+ Bermondsey and Old Southwark | Conservative Party | 6051
191
+ Bermondsey and Old Southwark | Labour Party | 22146
192
+ Bermondsey and Old Southwark | Liberal Democrats | 17657
193
+ Bermondsey and Old Southwark | UK Independence Party | 3254
194
+ Bermondsey and Old Southwark | Green Party | 2023
195
+ Bermondsey and Old Southwark | All other candidates | 293
196
+
197
+ Berwick-upon-Tweed | Conservative Party | 16603
198
+ Berwick-upon-Tweed | Labour Party | 6042
199
+ Berwick-upon-Tweed | Liberal Democrats | 11689
200
+ Berwick-upon-Tweed | UK Independence Party | 4513
201
+ Berwick-upon-Tweed | Green Party | 1488
202
+ Berwick-upon-Tweed | All other candidates | 88
203
+
204
+ Bethnal Green and Bow | Conservative Party | 8070
205
+ Bethnal Green and Bow | Labour Party | 32387
206
+ Bethnal Green and Bow | Liberal Democrats | 2395
207
+ Bethnal Green and Bow | UK Independence Party | 3219
208
+ Bethnal Green and Bow | Green Party | 4906
209
+ Bethnal Green and Bow | All other candidates | 1947
210
+
211
+ Beverley and Holderness | Conservative Party | 25363
212
+ Beverley and Holderness | Labour Party | 13160
213
+ Beverley and Holderness | Liberal Democrats | 2900
214
+ Beverley and Holderness | UK Independence Party | 8794
215
+ Beverley and Holderness | Green Party | 1802
216
+ Beverley and Holderness | All other candidates | 658
217
+
218
+ Bexhill and Battle | Conservative Party | 30245
219
+ Bexhill and Battle | Labour Party | 7797
220
+ Bexhill and Battle | Liberal Democrats | 4199
221
+ Bexhill and Battle | UK Independence Party | 10170
222
+ Bexhill and Battle | Green Party | 2807
223
+
224
+ Bexleyheath and Crayford | Conservative Party | 20643
225
+ Bexleyheath and Crayford | Labour Party | 11451
226
+ Bexleyheath and Crayford | Liberal Democrats | 1308
227
+ Bexleyheath and Crayford | UK Independence Party | 9182
228
+ Bexleyheath and Crayford | Green Party | 950
229
+ Bexleyheath and Crayford | All other candidates | 151
230
+
231
+ Birkenhead | Conservative Party | 5816
232
+ Birkenhead | Labour Party | 26468
233
+ Birkenhead | Liberal Democrats | 1396
234
+ Birkenhead | UK Independence Party | 3838
235
+ Birkenhead | Green Party | 1626
236
+
237
+ Birmingham Edgbaston | Conservative Party | 15812
238
+ Birmingham Edgbaston | Labour Party | 18518
239
+ Birmingham Edgbaston | Liberal Democrats | 1184
240
+ Birmingham Edgbaston | UK Independence Party | 4154
241
+ Birmingham Edgbaston | Green Party | 1371
242
+ Birmingham Edgbaston | All other candidates | 254
243
+
244
+ Birmingham Erdington | Conservative Party | 10695
245
+ Birmingham Erdington | Labour Party | 15824
246
+ Birmingham Erdington | Liberal Democrats | 965
247
+ Birmingham Erdington | UK Independence Party | 6040
248
+ Birmingham Erdington | Green Party | 948
249
+ Birmingham Erdington | All other candidates | 212
250
+
251
+ Birmingham Hall Green | Conservative Party | 8329
252
+ Birmingham Hall Green | Labour Party | 28147
253
+ Birmingham Hall Green | Liberal Democrats | 5459
254
+ Birmingham Hall Green | UK Independence Party | 2131
255
+ Birmingham Hall Green | Green Party | 2200
256
+ Birmingham Hall Green | All other candidates | 780
257
+
258
+ Birmingham Hodge Hill | Conservative Party | 4707
259
+ Birmingham Hodge Hill | Labour Party | 28069
260
+ Birmingham Hodge Hill | Liberal Democrats | 2624
261
+ Birmingham Hodge Hill | UK Independence Party | 4651
262
+ Birmingham Hodge Hill | Green Party | 835
263
+ Birmingham Hodge Hill | All other candidates | 153
264
+
265
+ Birmingham Ladywood | Conservative Party | 4576
266
+ Birmingham Ladywood | Labour Party | 26444
267
+ Birmingham Ladywood | Liberal Democrats | 1374
268
+ Birmingham Ladywood | UK Independence Party | 1805
269
+ Birmingham Ladywood | Green Party | 1501
270
+ Birmingham Ladywood | All other candidates | 216
271
+
272
+ Birmingham Northfield | Conservative Party | 15164
273
+ Birmingham Northfield | Labour Party | 17673
274
+ Birmingham Northfield | Liberal Democrats | 1349
275
+ Birmingham Northfield | UK Independence Party | 7106
276
+ Birmingham Northfield | Green Party | 1169
277
+
278
+ Birmingham Perry Barr | Conservative Party | 8869
279
+ Birmingham Perry Barr | Labour Party | 23697
280
+ Birmingham Perry Barr | Liberal Democrats | 2001
281
+ Birmingham Perry Barr | UK Independence Party | 5032
282
+ Birmingham Perry Barr | Green Party | 1330
283
+ Birmingham Perry Barr | All other candidates | 331
284
+
285
+ Birmingham Selly Oak | Conservative Party | 13137
286
+ Birmingham Selly Oak | Labour Party | 21584
287
+ Birmingham Selly Oak | Liberal Democrats | 2517
288
+ Birmingham Selly Oak | UK Independence Party | 5755
289
+ Birmingham Selly Oak | Green Party | 2301
290
+
291
+ Birmingham Yardley | Conservative Party | 5760
292
+ Birmingham Yardley | Labour Party | 17129
293
+ Birmingham Yardley | Liberal Democrats | 10534
294
+ Birmingham Yardley | UK Independence Party | 6637
295
+ Birmingham Yardley | Green Party | 698
296
+ Birmingham Yardley | All other candidates | 393
297
+
298
+ Bishop Auckland | Conservative Party | 12799
299
+ Bishop Auckland | Labour Party | 16307
300
+ Bishop Auckland | Liberal Democrats | 1723
301
+ Bishop Auckland | UK Independence Party | 7015
302
+ Bishop Auckland | Green Party | 1545
303
+
304
+ Blackburn | Conservative Party | 12002
305
+ Blackburn | Labour Party | 24762
306
+ Blackburn | Liberal Democrats | 955
307
+ Blackburn | UK Independence Party | 6280
308
+
309
+ Blackley and Broughton | Conservative Party | 5581
310
+ Blackley and Broughton | Labour Party | 22982
311
+ Blackley and Broughton | Liberal Democrats | 874
312
+ Blackley and Broughton | UK Independence Party | 6108
313
+ Blackley and Broughton | Green Party | 1567
314
+
315
+ Blackpool North and Cleveleys | Conservative Party | 17508
316
+ Blackpool North and Cleveleys | Labour Party | 14168
317
+ Blackpool North and Cleveleys | Liberal Democrats | 948
318
+ Blackpool North and Cleveleys | UK Independence Party | 5823
319
+ Blackpool North and Cleveleys | Green Party | 889
320
+ Blackpool North and Cleveleys | All other candidates | 57
321
+
322
+ Blackpool South | Conservative Party | 10963
323
+ Blackpool South | Labour Party | 13548
324
+ Blackpool South | Liberal Democrats | 743
325
+ Blackpool South | UK Independence Party | 5613
326
+ Blackpool South | Green Party | 841
327
+ Blackpool South | All other candidates | 728
328
+
329
+ Blaydon | Conservative Party | 7838
330
+ Blaydon | Labour Party | 22090
331
+ Blaydon | Liberal Democrats | 5497
332
+ Blaydon | UK Independence Party | 7863
333
+ Blaydon | Green Party | 1648
334
+
335
+ Blyth Valley | Conservative Party | 8346
336
+ Blyth Valley | Labour Party | 17813
337
+ Blyth Valley | Liberal Democrats | 2265
338
+ Blyth Valley | UK Independence Party | 8584
339
+ Blyth Valley | Green Party | 1453
340
+
341
+ Bognor Regis and Littlehampton | Conservative Party | 24185
342
+ Bognor Regis and Littlehampton | Labour Party | 6508
343
+ Bognor Regis and Littlehampton | Liberal Democrats | 4240
344
+ Bognor Regis and Littlehampton | UK Independence Party | 10241
345
+ Bognor Regis and Littlehampton | Green Party | 1942
346
+
347
+ Bolsover | Conservative Party | 10764
348
+ Bolsover | Labour Party | 22542
349
+ Bolsover | Liberal Democrats | 1464
350
+ Bolsover | UK Independence Party | 9228
351
+
352
+ Bolton North East | Conservative Party | 14164
353
+ Bolton North East | Labour Party | 18541
354
+ Bolton North East | Liberal Democrats | 1236
355
+ Bolton North East | UK Independence Party | 8117
356
+ Bolton North East | Green Party | 1103
357
+
358
+ Bolton South East | Conservative Party | 8289
359
+ Bolton South East | Labour Party | 20555
360
+ Bolton South East | Liberal Democrats | 1072
361
+ Bolton South East | UK Independence Party | 9627
362
+ Bolton South East | Green Party | 1200
363
+
364
+ Bolton West | Conservative Party | 19744
365
+ Bolton West | Labour Party | 18943
366
+ Bolton West | Liberal Democrats | 1947
367
+ Bolton West | UK Independence Party | 7428
368
+ Bolton West | All other candidates | 530
369
+
370
+ Bootle | Conservative Party | 3639
371
+ Bootle | Labour Party | 33619
372
+ Bootle | Liberal Democrats | 978
373
+ Bootle | UK Independence Party | 4915
374
+ Bootle | Green Party | 1501
375
+ Bootle | All other candidates | 500
376
+
377
+ Boston and Skegness | Conservative Party | 18981
378
+ Boston and Skegness | Labour Party | 7142
379
+ Boston and Skegness | Liberal Democrats | 1015
380
+ Boston and Skegness | UK Independence Party | 14645
381
+ Boston and Skegness | Green Party | 800
382
+ Boston and Skegness | All other candidates | 756
383
+
384
+ Bosworth | Conservative Party | 22939
385
+ Bosworth | Labour Party | 9354
386
+ Bosworth | Liberal Democrats | 11951
387
+ Bosworth | UK Independence Party | 9338
388
+
389
+ Bournemouth East | Conservative Party | 22060
390
+ Bournemouth East | Labour Party | 7448
391
+ Bournemouth East | Liberal Democrats | 3752
392
+ Bournemouth East | UK Independence Party | 7401
393
+ Bournemouth East | Green Party | 3263
394
+ Bournemouth East | All other candidates | 903
395
+
396
+ Bournemouth West | Conservative Party | 20155
397
+ Bournemouth West | Labour Party | 7386
398
+ Bournemouth West | Liberal Democrats | 3281
399
+ Bournemouth West | UK Independence Party | 7745
400
+ Bournemouth West | Green Party | 3107
401
+ Bournemouth West | All other candidates | 99
402
+
403
+ Bracknell | Conservative Party | 29606
404
+ Bracknell | Labour Party | 8956
405
+ Bracknell | Liberal Democrats | 3983
406
+ Bracknell | UK Independence Party | 8339
407
+ Bracknell | Green Party | 2202
408
+
409
+ Bradford East | Conservative Party | 4682
410
+ Bradford East | Labour Party | 19312
411
+ Bradford East | Liberal Democrats | 12228
412
+ Bradford East | UK Independence Party | 4103
413
+ Bradford East | Green Party | 871
414
+ Bradford East | All other candidates | 210
415
+
416
+ Bradford South | Conservative Party | 9878
417
+ Bradford South | Labour Party | 16328
418
+ Bradford South | Liberal Democrats | 1094
419
+ Bradford South | UK Independence Party | 9057
420
+ Bradford South | Green Party | 1243
421
+
422
+ Bradford West | Conservative Party | 6160
423
+ Bradford West | Labour Party | 19977
424
+ Bradford West | Liberal Democrats | 1173
425
+ Bradford West | UK Independence Party | 3140
426
+ Bradford West | Green Party | 1085
427
+ Bradford West | Small or local party, or independent candidate | 8557
428
+ Bradford West | All other candidates | 198
429
+
430
+ Braintree | Conservative Party | 27071
431
+ Braintree | Labour Party | 9296
432
+ Braintree | Liberal Democrats | 2488
433
+ Braintree | UK Independence Party | 9461
434
+ Braintree | Green Party | 1564
435
+ Braintree | All other candidates | 403
436
+
437
+ Brent Central | Conservative Party | 9567
438
+ Brent Central | Labour Party | 29216
439
+ Brent Central | Liberal Democrats | 3937
440
+ Brent Central | UK Independence Party | 1850
441
+ Brent Central | Green Party | 1912
442
+ Brent Central | All other candidates | 550
443
+
444
+ Brent North | Conservative Party | 17517
445
+ Brent North | Labour Party | 28351
446
+ Brent North | Liberal Democrats | 2607
447
+ Brent North | UK Independence Party | 2024
448
+ Brent North | Green Party | 1539
449
+ Brent North | All other candidates | 197
450
+
451
+ Brentford and Isleworth | Conservative Party | 24631
452
+ Brentford and Isleworth | Labour Party | 25096
453
+ Brentford and Isleworth | Liberal Democrats | 2305
454
+ Brentford and Isleworth | UK Independence Party | 3203
455
+ Brentford and Isleworth | Green Party | 2120
456
+
457
+ Brentwood and Ongar | Conservative Party | 30534
458
+ Brentwood and Ongar | Labour Party | 6492
459
+ Brentwood and Ongar | Liberal Democrats | 4577
460
+ Brentwood and Ongar | UK Independence Party | 8724
461
+ Brentwood and Ongar | Green Party | 1397
462
+ Brentwood and Ongar | All other candidates | 173
463
+
464
+ Bridgwater and West Somerset | Conservative Party | 25020
465
+ Bridgwater and West Somerset | Labour Party | 9589
466
+ Bridgwater and West Somerset | Liberal Democrats | 6765
467
+ Bridgwater and West Somerset | UK Independence Party | 10437
468
+ Bridgwater and West Somerset | Green Party | 2636
469
+
470
+ Brigg and Goole | Conservative Party | 22946
471
+ Brigg and Goole | Labour Party | 11770
472
+ Brigg and Goole | Liberal Democrats | 764
473
+ Brigg and Goole | UK Independence Party | 6694
474
+ Brigg and Goole | Green Party | 915
475
+ Brigg and Goole | All other candidates | 181
476
+
477
+ Brighton Kemptown | Conservative Party | 18428
478
+ Brighton Kemptown | Labour Party | 17738
479
+ Brighton Kemptown | Liberal Democrats | 1365
480
+ Brighton Kemptown | UK Independence Party | 4446
481
+ Brighton Kemptown | Green Party | 3187
482
+ Brighton Kemptown | All other candidates | 142
483
+
484
+ Brighton Pavilion | Conservative Party | 12448
485
+ Brighton Pavilion | Labour Party | 14904
486
+ Brighton Pavilion | Liberal Democrats | 1525
487
+ Brighton Pavilion | UK Independence Party | 2724
488
+ Brighton Pavilion | Green Party | 22871
489
+ Brighton Pavilion | All other candidates | 204
490
+
491
+ Bristol East | Conservative Party | 14168
492
+ Bristol East | Labour Party | 18148
493
+ Bristol East | Liberal Democrats | 2689
494
+ Bristol East | UK Independence Party | 7152
495
+ Bristol East | Green Party | 3827
496
+ Bristol East | All other candidates | 229
497
+
498
+ Bristol North West | Conservative Party | 22767
499
+ Bristol North West | Labour Party | 17823
500
+ Bristol North West | Liberal Democrats | 3214
501
+ Bristol North West | UK Independence Party | 4889
502
+ Bristol North West | Green Party | 2952
503
+ Bristol North West | All other candidates | 160
504
+
505
+ Bristol South | Conservative Party | 12377
506
+ Bristol South | Labour Party | 19505
507
+ Bristol South | Liberal Democrats | 4416
508
+ Bristol South | UK Independence Party | 8381
509
+ Bristol South | Green Party | 5861
510
+ Bristol South | All other candidates | 302
511
+
512
+ Bristol West | Conservative Party | 9752
513
+ Bristol West | Labour Party | 22900
514
+ Bristol West | Liberal Democrats | 12103
515
+ Bristol West | UK Independence Party | 1940
516
+ Bristol West | Green Party | 17227
517
+ Bristol West | All other candidates | 296
518
+
519
+ Broadland | Conservative Party | 26808
520
+ Broadland | Labour Party | 9970
521
+ Broadland | Liberal Democrats | 5178
522
+ Broadland | UK Independence Party | 8881
523
+ Broadland | Green Party | 2252
524
+
525
+ Bromley and Chislehurst | Conservative Party | 23343
526
+ Bromley and Chislehurst | Labour Party | 9779
527
+ Bromley and Chislehurst | Liberal Democrats | 2836
528
+ Bromley and Chislehurst | UK Independence Party | 6285
529
+ Bromley and Chislehurst | Green Party | 1823
530
+
531
+ Bromsgrove | Conservative Party | 28133
532
+ Bromsgrove | Labour Party | 11604
533
+ Bromsgrove | Liberal Democrats | 2616
534
+ Bromsgrove | UK Independence Party | 8163
535
+ Bromsgrove | Green Party | 1729
536
+
537
+ Broxbourne | Conservative Party | 25797
538
+ Broxbourne | Labour Party | 8470
539
+ Broxbourne | Liberal Democrats | 1467
540
+ Broxbourne | UK Independence Party | 9074
541
+ Broxbourne | Green Party | 1216
542
+
543
+ Broxtowe | Conservative Party | 24163
544
+ Broxtowe | Labour Party | 19876
545
+ Broxtowe | Liberal Democrats | 2120
546
+ Broxtowe | UK Independence Party | 5674
547
+ Broxtowe | Green Party | 1544
548
+ Broxtowe | All other candidates | 63
549
+
550
+ Buckingham | Conservative Party | 34617
551
+ Buckingham | UK Independence Party | 11675
552
+ Buckingham | Green Party | 7400
553
+
554
+ Burnley | Conservative Party | 5374
555
+ Burnley | Labour Party | 14951
556
+ Burnley | Liberal Democrats | 11707
557
+ Burnley | UK Independence Party | 6864
558
+ Burnley | Green Party | 850
559
+
560
+ Burton | Conservative Party | 24736
561
+ Burton | Labour Party | 13484
562
+ Burton | Liberal Democrats | 1232
563
+ Burton | UK Independence Party | 8658
564
+ Burton | Green Party | 1224
565
+
566
+ Bury North | Conservative Party | 18970
567
+ Bury North | Labour Party | 18592
568
+ Bury North | Liberal Democrats | 932
569
+ Bury North | UK Independence Party | 5595
570
+ Bury North | Green Party | 1141
571
+
572
+ Bury South | Conservative Party | 16350
573
+ Bury South | Labour Party | 21272
574
+ Bury South | Liberal Democrats | 1690
575
+ Bury South | UK Independence Party | 6299
576
+ Bury South | Green Party | 1434
577
+ Bury South | All other candidates | 170
578
+
579
+ Bury St Edmunds | Conservative Party | 31815
580
+ Bury St Edmunds | Labour Party | 10514
581
+ Bury St Edmunds | Liberal Democrats | 3581
582
+ Bury St Edmunds | UK Independence Party | 8739
583
+ Bury St Edmunds | Green Party | 4692
584
+
585
+ Calder Valley | Conservative Party | 23354
586
+ Calder Valley | Labour Party | 18927
587
+ Calder Valley | Liberal Democrats | 2666
588
+ Calder Valley | UK Independence Party | 5950
589
+ Calder Valley | Green Party | 2090
590
+ Calder Valley | All other candidates | 554
591
+
592
+ Camberwell and Peckham | Conservative Party | 6790
593
+ Camberwell and Peckham | Labour Party | 32614
594
+ Camberwell and Peckham | Liberal Democrats | 2580
595
+ Camberwell and Peckham | UK Independence Party | 2413
596
+ Camberwell and Peckham | Green Party | 5187
597
+ Camberwell and Peckham | All other candidates | 1977
598
+
599
+ Camborne and Redruth | Conservative Party | 18452
600
+ Camborne and Redruth | Labour Party | 11448
601
+ Camborne and Redruth | Liberal Democrats | 5687
602
+ Camborne and Redruth | UK Independence Party | 6776
603
+ Camborne and Redruth | Green Party | 2608
604
+ Camborne and Redruth | All other candidates | 897
605
+
606
+ Cambridge | Conservative Party | 8117
607
+ Cambridge | Labour Party | 18646
608
+ Cambridge | Liberal Democrats | 18047
609
+ Cambridge | UK Independence Party | 2668
610
+ Cambridge | Green Party | 4109
611
+ Cambridge | All other candidates | 187
612
+
613
+ Cambridgeshire North East | Conservative Party | 28524
614
+ Cambridgeshire North East | Labour Party | 7476
615
+ Cambridgeshire North East | Liberal Democrats | 2314
616
+ Cambridgeshire North East | UK Independence Party | 11650
617
+ Cambridgeshire North East | Green Party | 1816
618
+
619
+ Cambridgeshire North West | Conservative Party | 32070
620
+ Cambridgeshire North West | Labour Party | 10927
621
+ Cambridgeshire North West | Liberal Democrats | 3479
622
+ Cambridgeshire North West | UK Independence Party | 12275
623
+ Cambridgeshire North West | Green Party | 2159
624
+ Cambridgeshire North West | All other candidates | 190
625
+
626
+ Cambridgeshire South | Conservative Party | 31454
627
+ Cambridgeshire South | Labour Party | 10860
628
+ Cambridgeshire South | Liberal Democrats | 9368
629
+ Cambridgeshire South | UK Independence Party | 6010
630
+ Cambridgeshire South | Green Party | 3848
631
+
632
+ Cambridgeshire South East | Conservative Party | 28845
633
+ Cambridgeshire South East | Labour Party | 9013
634
+ Cambridgeshire South East | Liberal Democrats | 12008
635
+ Cambridgeshire South East | UK Independence Party | 6593
636
+ Cambridgeshire South East | Green Party | 3047
637
+
638
+ Cannock Chase | Conservative Party | 20811
639
+ Cannock Chase | Labour Party | 15888
640
+ Cannock Chase | Liberal Democrats | 1270
641
+ Cannock Chase | UK Independence Party | 8224
642
+ Cannock Chase | Green Party | 906
643
+
644
+ Canterbury | Conservative Party | 22918
645
+ Canterbury | Labour Party | 13120
646
+ Canterbury | Liberal Democrats | 6227
647
+ Canterbury | UK Independence Party | 7289
648
+ Canterbury | Green Party | 3746
649
+ Canterbury | All other candidates | 165
650
+
651
+ Carlisle | Conservative Party | 18873
652
+ Carlisle | Labour Party | 16099
653
+ Carlisle | Liberal Democrats | 1087
654
+ Carlisle | UK Independence Party | 5277
655
+ Carlisle | Green Party | 1125
656
+ Carlisle | All other candidates | 126
657
+
658
+ Carshalton and Wallington | Conservative Party | 15093
659
+ Carshalton and Wallington | Labour Party | 7150
660
+ Carshalton and Wallington | Liberal Democrats | 16603
661
+ Carshalton and Wallington | UK Independence Party | 7049
662
+ Carshalton and Wallington | Green Party | 1492
663
+ Carshalton and Wallington | All other candidates | 226
664
+
665
+ Castle Point | Conservative Party | 23112
666
+ Castle Point | Labour Party | 6283
667
+ Castle Point | Liberal Democrats | 801
668
+ Castle Point | UK Independence Party | 14178
669
+ Castle Point | Green Party | 1076
670
+
671
+ Charnwood | Conservative Party | 28384
672
+ Charnwood | Labour Party | 11453
673
+ Charnwood | Liberal Democrats | 3605
674
+ Charnwood | UK Independence Party | 8330
675
+ Charnwood | All other candidates | 489
676
+
677
+ Chatham and Aylesford | Conservative Party | 21614
678
+ Chatham and Aylesford | Labour Party | 10159
679
+ Chatham and Aylesford | Liberal Democrats | 1360
680
+ Chatham and Aylesford | UK Independence Party | 8581
681
+ Chatham and Aylesford | Green Party | 1101
682
+ Chatham and Aylesford | All other candidates | 258
683
+
684
+ Cheadle | Conservative Party | 22889
685
+ Cheadle | Labour Party | 8673
686
+ Cheadle | Liberal Democrats | 16436
687
+ Cheadle | UK Independence Party | 4423
688
+ Cheadle | All other candidates | 674
689
+
690
+ Chelmsford | Conservative Party | 27732
691
+ Chelmsford | Labour Party | 9482
692
+ Chelmsford | Liberal Democrats | 6394
693
+ Chelmsford | UK Independence Party | 7652
694
+ Chelmsford | Green Party | 1892
695
+ Chelmsford | All other candidates | 665
696
+
697
+ Chelsea and Fulham | Conservative Party | 25322
698
+ Chelsea and Fulham | Labour Party | 9300
699
+ Chelsea and Fulham | Liberal Democrats | 2091
700
+ Chelsea and Fulham | UK Independence Party | 2039
701
+ Chelsea and Fulham | Green Party | 1474
702
+
703
+ Cheltenham | Conservative Party | 24790
704
+ Cheltenham | Labour Party | 3902
705
+ Cheltenham | Liberal Democrats | 18274
706
+ Cheltenham | UK Independence Party | 3808
707
+ Cheltenham | Green Party | 2689
708
+ Cheltenham | All other candidates | 272
709
+
710
+ Chesham and Amersham | Conservative Party | 31138
711
+ Chesham and Amersham | Labour Party | 6712
712
+ Chesham and Amersham | Liberal Democrats | 4761
713
+ Chesham and Amersham | UK Independence Party | 7218
714
+ Chesham and Amersham | Green Party | 2902
715
+
716
+ Chester, City of | Conservative Party | 22025
717
+ Chester, City of | Labour Party | 22118
718
+ Chester, City of | Liberal Democrats | 2870
719
+ Chester, City of | UK Independence Party | 4148
720
+
721
+ Chesterfield | Conservative Party | 8231
722
+ Chesterfield | Labour Party | 21829
723
+ Chesterfield | Liberal Democrats | 6301
724
+ Chesterfield | UK Independence Party | 7523
725
+ Chesterfield | Green Party | 1352
726
+ Chesterfield | All other candidates | 331
727
+
728
+ Chichester | Conservative Party | 32953
729
+ Chichester | Labour Party | 6933
730
+ Chichester | Liberal Democrats | 4865
731
+ Chichester | UK Independence Party | 8540
732
+ Chichester | Green Party | 3742
733
+ Chichester | All other candidates | 106
734
+
735
+ Chingford and Woodford Green | Conservative Party | 20999
736
+ Chingford and Woodford Green | Labour Party | 12613
737
+ Chingford and Woodford Green | Liberal Democrats | 2400
738
+ Chingford and Woodford Green | UK Independence Party | 5644
739
+ Chingford and Woodford Green | Green Party | 1854
740
+ Chingford and Woodford Green | All other candidates | 294
741
+
742
+ Chippenham | Conservative Party | 26354
743
+ Chippenham | Labour Party | 4561
744
+ Chippenham | Liberal Democrats | 16278
745
+ Chippenham | UK Independence Party | 5884
746
+ Chippenham | Green Party | 2330
747
+
748
+ Chipping Barnet | Conservative Party | 25759
749
+ Chipping Barnet | Labour Party | 18103
750
+ Chipping Barnet | Liberal Democrats | 2381
751
+ Chipping Barnet | UK Independence Party | 4151
752
+ Chipping Barnet | Green Party | 2501
753
+ Chipping Barnet | All other candidates | 118
754
+
755
+ Chorley | Conservative Party | 18792
756
+ Chorley | Labour Party | 23322
757
+ Chorley | Liberal Democrats | 1354
758
+ Chorley | UK Independence Party | 6995
759
+ Chorley | Green Party | 1111
760
+ Chorley | All other candidates | 138
761
+
762
+ Christchurch | Conservative Party | 28887
763
+ Christchurch | Labour Party | 4745
764
+ Christchurch | Liberal Democrats | 3263
765
+ Christchurch | UK Independence Party | 10663
766
+ Christchurch | Green Party | 2149
767
+
768
+ Cities of London and Westminster | Conservative Party | 19570
769
+ Cities of London and Westminster | Labour Party | 9899
770
+ Cities of London and Westminster | Liberal Democrats | 2521
771
+ Cities of London and Westminster | UK Independence Party | 1894
772
+ Cities of London and Westminster | Green Party | 1953
773
+ Cities of London and Westminster | All other candidates | 348
774
+
775
+ Clacton | Conservative Party | 16205
776
+ Clacton | Labour Party | 6364
777
+ Clacton | Liberal Democrats | 812
778
+ Clacton | UK Independence Party | 19642
779
+ Clacton | Green Party | 1184
780
+
781
+ Cleethorpes | Conservative Party | 21026
782
+ Cleethorpes | Labour Party | 13133
783
+ Cleethorpes | Liberal Democrats | 1346
784
+ Cleethorpes | UK Independence Party | 8356
785
+ Cleethorpes | Green Party | 1013
786
+ Cleethorpes | All other candidates | 215
787
+
788
+ Colchester | Conservative Party | 18919
789
+ Colchester | Labour Party | 7852
790
+ Colchester | Liberal Democrats | 13344
791
+ Colchester | UK Independence Party | 5870
792
+ Colchester | Green Party | 2499
793
+ Colchester | All other candidates | 109
794
+
795
+ Colne Valley | Conservative Party | 25246
796
+ Colne Valley | Labour Party | 19868
797
+ Colne Valley | Liberal Democrats | 3407
798
+ Colne Valley | UK Independence Party | 5734
799
+ Colne Valley | Green Party | 1919
800
+ Colne Valley | All other candidates | 626
801
+
802
+ Congleton | Conservative Party | 27164
803
+ Congleton | Labour Party | 10391
804
+ Congleton | Liberal Democrats | 4623
805
+ Congleton | UK Independence Party | 6922
806
+ Congleton | Green Party | 1876
807
+
808
+ Copeland | Conservative Party | 14186
809
+ Copeland | Labour Party | 16750
810
+ Copeland | Liberal Democrats | 1368
811
+ Copeland | UK Independence Party | 6148
812
+ Copeland | Green Party | 1179
813
+
814
+ Corby | Conservative Party | 24023
815
+ Corby | Labour Party | 21611
816
+ Corby | Liberal Democrats | 1458
817
+ Corby | UK Independence Party | 7708
818
+ Corby | Green Party | 1374
819
+
820
+ Cornwall North | Conservative Party | 21689
821
+ Cornwall North | Labour Party | 2621
822
+ Cornwall North | Liberal Democrats | 15068
823
+ Cornwall North | UK Independence Party | 6121
824
+ Cornwall North | Green Party | 2063
825
+ Cornwall North | All other candidates | 683
826
+
827
+ Cornwall South East | Conservative Party | 25516
828
+ Cornwall South East | Labour Party | 4692
829
+ Cornwall South East | Liberal Democrats | 8521
830
+ Cornwall South East | UK Independence Party | 7698
831
+ Cornwall South East | Green Party | 2718
832
+ Cornwall South East | All other candidates | 1353
833
+
834
+ Cotswolds, The | Conservative Party | 32045
835
+ Cotswolds, The | Labour Party | 5240
836
+ Cotswolds, The | Liberal Democrats | 10568
837
+ Cotswolds, The | UK Independence Party | 6188
838
+ Cotswolds, The | Green Party | 2626
839
+
840
+ Coventry North East | Conservative Party | 9751
841
+ Coventry North East | Labour Party | 22025
842
+ Coventry North East | Liberal Democrats | 2007
843
+ Coventry North East | UK Independence Party | 6278
844
+ Coventry North East | Green Party | 1245
845
+ Coventry North East | All other candidates | 925
846
+
847
+ Coventry North West | Conservative Party | 14048
848
+ Coventry North West | Labour Party | 18557
849
+ Coventry North West | Liberal Democrats | 1810
850
+ Coventry North West | UK Independence Party | 7101
851
+ Coventry North West | Green Party | 1961
852
+ Coventry North West | All other candidates | 1769
853
+
854
+ Coventry South | Conservative Party | 15284
855
+ Coventry South | Labour Party | 18472
856
+ Coventry South | Liberal Democrats | 1779
857
+ Coventry South | UK Independence Party | 5709
858
+ Coventry South | Green Party | 1719
859
+ Coventry South | All other candidates | 736
860
+
861
+ Crawley | Conservative Party | 22829
862
+ Crawley | Labour Party | 16303
863
+ Crawley | Liberal Democrats | 1339
864
+ Crawley | UK Independence Party | 6979
865
+ Crawley | Green Party | 1100
866
+
867
+ Crewe and Nantwich | Conservative Party | 22445
868
+ Crewe and Nantwich | Labour Party | 18825
869
+ Crewe and Nantwich | Liberal Democrats | 1374
870
+ Crewe and Nantwich | UK Independence Party | 7252
871
+
872
+ Croydon Central | Conservative Party | 22753
873
+ Croydon Central | Labour Party | 22588
874
+ Croydon Central | Liberal Democrats | 1152
875
+ Croydon Central | UK Independence Party | 4810
876
+ Croydon Central | Green Party | 1454
877
+ Croydon Central | All other candidates | 184
878
+
879
+ Croydon North | Conservative Party | 12149
880
+ Croydon North | Labour Party | 33513
881
+ Croydon North | Liberal Democrats | 1919
882
+ Croydon North | UK Independence Party | 2899
883
+ Croydon North | Green Party | 2515
884
+ Croydon North | All other candidates | 527
885
+
886
+ Croydon South | Conservative Party | 31448
887
+ Croydon South | Labour Party | 14308
888
+ Croydon South | Liberal Democrats | 3448
889
+ Croydon South | UK Independence Party | 6068
890
+ Croydon South | Green Party | 2154
891
+ Croydon South | All other candidates | 286
892
+
893
+ Dagenham and Rainham | Conservative Party | 10492
894
+ Dagenham and Rainham | Labour Party | 17830
895
+ Dagenham and Rainham | Liberal Democrats | 717
896
+ Dagenham and Rainham | UK Independence Party | 12850
897
+ Dagenham and Rainham | Green Party | 806
898
+ Dagenham and Rainham | All other candidates | 355
899
+
900
+ Darlington | Conservative Party | 14479
901
+ Darlington | Labour Party | 17637
902
+ Darlington | Liberal Democrats | 1966
903
+ Darlington | UK Independence Party | 5392
904
+ Darlington | Green Party | 1444
905
+ Darlington | All other candidates | 223
906
+
907
+ Dartford | Conservative Party | 25670
908
+ Dartford | Labour Party | 13325
909
+ Dartford | Liberal Democrats | 1454
910
+ Dartford | UK Independence Party | 10434
911
+ Dartford | Green Party | 1324
912
+ Dartford | All other candidates | 211
913
+
914
+ Daventry | Conservative Party | 30550
915
+ Daventry | Labour Party | 9491
916
+ Daventry | Liberal Democrats | 2352
917
+ Daventry | UK Independence Party | 8296
918
+ Daventry | Green Party | 1829
919
+
920
+ Denton and Reddish | Conservative Party | 9150
921
+ Denton and Reddish | Labour Party | 19661
922
+ Denton and Reddish | Liberal Democrats | 957
923
+ Denton and Reddish | UK Independence Party | 7225
924
+ Denton and Reddish | Green Party | 1466
925
+ Denton and Reddish | All other candidates | 222
926
+
927
+ Derby North | Conservative Party | 16402
928
+ Derby North | Labour Party | 16361
929
+ Derby North | Liberal Democrats | 3832
930
+ Derby North | UK Independence Party | 6532
931
+ Derby North | Green Party | 1618
932
+
933
+ Derby South | Conservative Party | 11179
934
+ Derby South | Labour Party | 20007
935
+ Derby South | Liberal Democrats | 1717
936
+ Derby South | UK Independence Party | 6341
937
+ Derby South | Green Party | 1208
938
+ Derby South | All other candidates | 368
939
+
940
+ Derbyshire Dales | Conservative Party | 24805
941
+ Derbyshire Dales | Labour Party | 10761
942
+ Derbyshire Dales | Liberal Democrats | 3965
943
+ Derbyshire Dales | UK Independence Party | 5508
944
+ Derbyshire Dales | Green Party | 2173
945
+ Derbyshire Dales | All other candidates | 149
946
+
947
+ Derbyshire Mid | Conservative Party | 24908
948
+ Derbyshire Mid | Labour Party | 12134
949
+ Derbyshire Mid | Liberal Democrats | 2292
950
+ Derbyshire Mid | UK Independence Party | 6497
951
+ Derbyshire Mid | Green Party | 1898
952
+
953
+ Derbyshire North East | Conservative Party | 17605
954
+ Derbyshire North East | Labour Party | 19488
955
+ Derbyshire North East | Liberal Democrats | 2004
956
+ Derbyshire North East | UK Independence Party | 7631
957
+ Derbyshire North East | Green Party | 1059
958
+ Derbyshire North East | All other candidates | 161
959
+
960
+ Derbyshire South | Conservative Party | 25066
961
+ Derbyshire South | Labour Party | 13595
962
+ Derbyshire South | Liberal Democrats | 1887
963
+ Derbyshire South | UK Independence Party | 8998
964
+ Derbyshire South | Green Party | 1216
965
+
966
+ Devizes | Conservative Party | 28295
967
+ Devizes | Labour Party | 6360
968
+ Devizes | Liberal Democrats | 3954
969
+ Devizes | UK Independence Party | 7544
970
+ Devizes | Green Party | 2853
971
+
972
+ Devon Central | Conservative Party | 28436
973
+ Devon Central | Labour Party | 6985
974
+ Devon Central | Liberal Democrats | 6643
975
+ Devon Central | UK Independence Party | 7171
976
+ Devon Central | Green Party | 4866
977
+ Devon Central | All other candidates | 347
978
+
979
+ Devon East | Conservative Party | 25401
980
+ Devon East | Labour Party | 5591
981
+ Devon East | Liberal Democrats | 3715
982
+ Devon East | UK Independence Party | 6870
983
+ Devon East | Small or local party, or independent candidate | 13140
984
+
985
+ Devon North | Conservative Party | 22341
986
+ Devon North | Labour Party | 3699
987
+ Devon North | Liberal Democrats | 15405
988
+ Devon North | UK Independence Party | 7719
989
+ Devon North | Green Party | 3018
990
+ Devon North | All other candidates | 138
991
+
992
+ Devon South West | Conservative Party | 28500
993
+ Devon South West | Labour Party | 8391
994
+ Devon South West | Liberal Democrats | 3767
995
+ Devon South West | UK Independence Party | 7306
996
+ Devon South West | Green Party | 2408
997
+
998
+ Devon West and Torridge | Conservative Party | 28774
999
+ Devon West and Torridge | Labour Party | 6015
1000
+ Devon West and Torridge | Liberal Democrats | 7483
1001
+ Devon West and Torridge | UK Independence Party | 10371
1002
+ Devon West and Torridge | Green Party | 3941
1003
+
1004
+ Dewsbury | Conservative Party | 20955
1005
+ Dewsbury | Labour Party | 22406
1006
+ Dewsbury | Liberal Democrats | 1924
1007
+ Dewsbury | UK Independence Party | 6649
1008
+ Dewsbury | Green Party | 1366
1009
+ Dewsbury | All other candidates | 330
1010
+
1011
+ Don Valley | Conservative Party | 10736
1012
+ Don Valley | Labour Party | 19621
1013
+ Don Valley | Liberal Democrats | 1487
1014
+ Don Valley | UK Independence Party | 9963
1015
+ Don Valley | All other candidates | 679
1016
+
1017
+ Doncaster Central | Conservative Party | 8386
1018
+ Doncaster Central | Labour Party | 19840
1019
+ Doncaster Central | Liberal Democrats | 1717
1020
+ Doncaster Central | UK Independence Party | 9747
1021
+ Doncaster Central | All other candidates | 730
1022
+
1023
+ Doncaster North | Conservative Party | 7235
1024
+ Doncaster North | Labour Party | 20708
1025
+ Doncaster North | Liberal Democrats | 1005
1026
+ Doncaster North | UK Independence Party | 8928
1027
+ Doncaster North | Green Party | 757
1028
+ Doncaster North | Small or local party, or independent candidate | 448
1029
+ Doncaster North | All other candidates | 420
1030
+
1031
+ Dorset Mid and Poole North | Conservative Party | 23639
1032
+ Dorset Mid and Poole North | Labour Party | 2767
1033
+ Dorset Mid and Poole North | Liberal Democrats | 13109
1034
+ Dorset Mid and Poole North | UK Independence Party | 5663
1035
+ Dorset Mid and Poole North | Green Party | 1321
1036
+
1037
+ Dorset North | Conservative Party | 30227
1038
+ Dorset North | Labour Party | 4785
1039
+ Dorset North | Liberal Democrats | 6226
1040
+ Dorset North | UK Independence Party | 9109
1041
+ Dorset North | Green Party | 3038
1042
+
1043
+ Dorset South | Conservative Party | 23756
1044
+ Dorset South | Labour Party | 11762
1045
+ Dorset South | Liberal Democrats | 2901
1046
+ Dorset South | UK Independence Party | 7304
1047
+ Dorset South | Green Party | 2275
1048
+ Dorset South | All other candidates | 599
1049
+
1050
+ Dorset West | Conservative Party | 28329
1051
+ Dorset West | Labour Party | 5633
1052
+ Dorset West | Liberal Democrats | 12199
1053
+ Dorset West | UK Independence Party | 7055
1054
+ Dorset West | Green Party | 3242
1055
+
1056
+ Dover | Conservative Party | 21737
1057
+ Dover | Labour Party | 15443
1058
+ Dover | Liberal Democrats | 1572
1059
+ Dover | UK Independence Party | 10177
1060
+ Dover | Green Party | 1295
1061
+
1062
+ Dudley North | Conservative Party | 11704
1063
+ Dudley North | Labour Party | 15885
1064
+ Dudley North | Liberal Democrats | 478
1065
+ Dudley North | UK Independence Party | 9113
1066
+ Dudley North | Green Party | 517
1067
+ Dudley North | All other candidates | 295
1068
+
1069
+ Dudley South | Conservative Party | 16723
1070
+ Dudley South | Labour Party | 12453
1071
+ Dudley South | Liberal Democrats | 828
1072
+ Dudley South | UK Independence Party | 7236
1073
+ Dudley South | Green Party | 970
1074
+
1075
+ Dulwich and West Norwood | Conservative Party | 11650
1076
+ Dulwich and West Norwood | Labour Party | 27772
1077
+ Dulwich and West Norwood | Liberal Democrats | 5055
1078
+ Dulwich and West Norwood | UK Independence Party | 1606
1079
+ Dulwich and West Norwood | Green Party | 4844
1080
+ Dulwich and West Norwood | All other candidates | 435
1081
+
1082
+ Durham North | Conservative Party | 8403
1083
+ Durham North | Labour Party | 22047
1084
+ Durham North | Liberal Democrats | 2046
1085
+ Durham North | UK Independence Party | 6404
1086
+ Durham North | Green Party | 1246
1087
+
1088
+ Durham North West | Conservative Party | 10018
1089
+ Durham North West | Labour Party | 20074
1090
+ Durham North West | Liberal Democrats | 3894
1091
+ Durham North West | UK Independence Party | 7265
1092
+ Durham North West | Green Party | 1567
1093
+
1094
+ Durham, City of | Conservative Party | 10157
1095
+ Durham, City of | Labour Party | 21596
1096
+ Durham, City of | Liberal Democrats | 5153
1097
+ Durham, City of | UK Independence Party | 5232
1098
+ Durham, City of | Green Party | 2687
1099
+ Durham, City of | All other candidates | 844
1100
+
1101
+ Ealing Central and Acton | Conservative Party | 21728
1102
+ Ealing Central and Acton | Labour Party | 22002
1103
+ Ealing Central and Acton | Liberal Democrats | 3106
1104
+ Ealing Central and Acton | UK Independence Party | 1926
1105
+ Ealing Central and Acton | Green Party | 1841
1106
+ Ealing Central and Acton | All other candidates | 291
1107
+
1108
+ Ealing North | Conservative Party | 14419
1109
+ Ealing North | Labour Party | 26745
1110
+ Ealing North | Liberal Democrats | 1575
1111
+ Ealing North | UK Independence Party | 3922
1112
+ Ealing North | Green Party | 1635
1113
+ Ealing North | All other candidates | 214
1114
+
1115
+ Ealing Southall | Conservative Party | 9387
1116
+ Ealing Southall | Labour Party | 28147
1117
+ Ealing Southall | Liberal Democrats | 1550
1118
+ Ealing Southall | UK Independence Party | 1769
1119
+ Ealing Southall | Green Party | 2007
1120
+ Ealing Southall | All other candidates | 461
1121
+
1122
+ Easington | Conservative Party | 4478
1123
+ Easington | Labour Party | 21132
1124
+ Easington | Liberal Democrats | 834
1125
+ Easington | UK Independence Party | 6491
1126
+ Easington | Green Party | 733
1127
+ Easington | Small or local party, or independent candidate | 810
1128
+ Easington | All other candidates | 146
1129
+
1130
+ East Ham | Conservative Party | 6311
1131
+ East Ham | Labour Party | 40563
1132
+ East Ham | Liberal Democrats | 856
1133
+ East Ham | UK Independence Party | 2622
1134
+ East Ham | Green Party | 1299
1135
+ East Ham | All other candidates | 639
1136
+
1137
+ Eastbourne | Conservative Party | 20934
1138
+ Eastbourne | Labour Party | 4143
1139
+ Eastbourne | Liberal Democrats | 20201
1140
+ Eastbourne | UK Independence Party | 6139
1141
+ Eastbourne | Green Party | 1351
1142
+ Eastbourne | All other candidates | 139
1143
+
1144
+ Eastleigh | Conservative Party | 23464
1145
+ Eastleigh | Labour Party | 7181
1146
+ Eastleigh | Liberal Democrats | 14317
1147
+ Eastleigh | UK Independence Party | 8783
1148
+ Eastleigh | Green Party | 1513
1149
+ Eastleigh | All other candidates | 247
1150
+
1151
+ Eddisbury | Conservative Party | 24167
1152
+ Eddisbury | Labour Party | 11193
1153
+ Eddisbury | Liberal Democrats | 4289
1154
+ Eddisbury | UK Independence Party | 5778
1155
+ Eddisbury | Green Party | 1624
1156
+ Eddisbury | All other candidates | 301
1157
+
1158
+ Edmonton | Conservative Party | 9969
1159
+ Edmonton | Labour Party | 25388
1160
+ Edmonton | Liberal Democrats | 897
1161
+ Edmonton | UK Independence Party | 3366
1162
+ Edmonton | Green Party | 1358
1163
+ Edmonton | All other candidates | 360
1164
+
1165
+ Ellesmere Port and Neston | Conservative Party | 16041
1166
+ Ellesmere Port and Neston | Labour Party | 22316
1167
+ Ellesmere Port and Neston | Liberal Democrats | 1563
1168
+ Ellesmere Port and Neston | UK Independence Party | 5594
1169
+ Ellesmere Port and Neston | Green Party | 990
1170
+ Ellesmere Port and Neston | All other candidates | 223
1171
+
1172
+ Elmet and Rothwell | Conservative Party | 27978
1173
+ Elmet and Rothwell | Labour Party | 19488
1174
+ Elmet and Rothwell | Liberal Democrats | 2640
1175
+ Elmet and Rothwell | UK Independence Party | 6430
1176
+ Elmet and Rothwell | Green Party | 1261
1177
+
1178
+ Eltham | Conservative Party | 15700
1179
+ Eltham | Labour Party | 18393
1180
+ Eltham | Liberal Democrats | 1308
1181
+ Eltham | UK Independence Party | 6481
1182
+ Eltham | Green Party | 1275
1183
+
1184
+ Enfield North | Conservative Party | 19086
1185
+ Enfield North | Labour Party | 20172
1186
+ Enfield North | Liberal Democrats | 1059
1187
+ Enfield North | UK Independence Party | 4133
1188
+ Enfield North | Green Party | 1303
1189
+ Enfield North | All other candidates | 384
1190
+
1191
+ Enfield Southgate | Conservative Party | 22624
1192
+ Enfield Southgate | Labour Party | 17871
1193
+ Enfield Southgate | Liberal Democrats | 1518
1194
+ Enfield Southgate | UK Independence Party | 2109
1195
+ Enfield Southgate | Green Party | 1690
1196
+
1197
+ Epping Forest | Conservative Party | 27027
1198
+ Epping Forest | Labour Party | 7962
1199
+ Epping Forest | Liberal Democrats | 3448
1200
+ Epping Forest | UK Independence Party | 9049
1201
+ Epping Forest | Green Party | 1782
1202
+ Epping Forest | All other candidates | 80
1203
+
1204
+ Epsom and Ewell | Conservative Party | 33309
1205
+ Epsom and Ewell | Labour Party | 8866
1206
+ Epsom and Ewell | Liberal Democrats | 5002
1207
+ Epsom and Ewell | UK Independence Party | 7117
1208
+ Epsom and Ewell | Green Party | 2116
1209
+ Epsom and Ewell | All other candidates | 733
1210
+
1211
+ Erewash | Conservative Party | 20636
1212
+ Erewash | Labour Party | 17052
1213
+ Erewash | Liberal Democrats | 1658
1214
+ Erewash | UK Independence Party | 7792
1215
+ Erewash | Green Party | 1184
1216
+
1217
+ Erith and Thamesmead | Conservative Party | 11684
1218
+ Erith and Thamesmead | Labour Party | 21209
1219
+ Erith and Thamesmead | Liberal Democrats | 972
1220
+ Erith and Thamesmead | UK Independence Party | 7368
1221
+ Erith and Thamesmead | Green Party | 941
1222
+ Erith and Thamesmead | All other candidates | 443
1223
+
1224
+ Esher and Walton | Conservative Party | 35845
1225
+ Esher and Walton | Labour Party | 7229
1226
+ Esher and Walton | Liberal Democrats | 5372
1227
+ Esher and Walton | UK Independence Party | 5551
1228
+ Esher and Walton | Green Party | 2355
1229
+ Esher and Walton | All other candidates | 624
1230
+
1231
+ Exeter | Conservative Party | 17879
1232
+ Exeter | Labour Party | 25062
1233
+ Exeter | Liberal Democrats | 2321
1234
+ Exeter | UK Independence Party | 5075
1235
+ Exeter | Green Party | 3491
1236
+ Exeter | All other candidates | 190
1237
+
1238
+ Fareham | Conservative Party | 30689
1239
+ Fareham | Labour Party | 7800
1240
+ Fareham | Liberal Democrats | 4814
1241
+ Fareham | UK Independence Party | 8427
1242
+ Fareham | Green Party | 2129
1243
+ Fareham | All other candidates | 841
1244
+
1245
+ Faversham and Kent Mid | Conservative Party | 24895
1246
+ Faversham and Kent Mid | Labour Party | 7403
1247
+ Faversham and Kent Mid | Liberal Democrats | 3039
1248
+ Faversham and Kent Mid | UK Independence Party | 8243
1249
+ Faversham and Kent Mid | Green Party | 1768
1250
+ Faversham and Kent Mid | All other candidates | 455
1251
+
1252
+ Feltham and Heston | Conservative Party | 14382
1253
+ Feltham and Heston | Labour Party | 25845
1254
+ Feltham and Heston | Liberal Democrats | 1579
1255
+ Feltham and Heston | UK Independence Party | 6209
1256
+ Feltham and Heston | Green Party | 1390
1257
+
1258
+ Filton and Bradley Stoke | Conservative Party | 22920
1259
+ Filton and Bradley Stoke | Labour Party | 13082
1260
+ Filton and Bradley Stoke | Liberal Democrats | 3581
1261
+ Filton and Bradley Stoke | UK Independence Party | 7261
1262
+ Filton and Bradley Stoke | Green Party | 2257
1263
+
1264
+ Finchley and Golders Green | Conservative Party | 25835
1265
+ Finchley and Golders Green | Labour Party | 20173
1266
+ Finchley and Golders Green | Liberal Democrats | 1662
1267
+ Finchley and Golders Green | UK Independence Party | 1732
1268
+ Finchley and Golders Green | Green Party | 1357
1269
+
1270
+ Folkestone and Hythe | Conservative Party | 26323
1271
+ Folkestone and Hythe | Labour Party | 7939
1272
+ Folkestone and Hythe | Liberal Democrats | 4882
1273
+ Folkestone and Hythe | UK Independence Party | 12526
1274
+ Folkestone and Hythe | Green Party | 2956
1275
+ Folkestone and Hythe | All other candidates | 384
1276
+
1277
+ Forest of Dean | Conservative Party | 23191
1278
+ Forest of Dean | Labour Party | 12204
1279
+ Forest of Dean | Liberal Democrats | 2630
1280
+ Forest of Dean | UK Independence Party | 8792
1281
+ Forest of Dean | Green Party | 2703
1282
+
1283
+ Fylde | Conservative Party | 21406
1284
+ Fylde | Labour Party | 8182
1285
+ Fylde | Liberal Democrats | 1623
1286
+ Fylde | UK Independence Party | 5569
1287
+ Fylde | Green Party | 1381
1288
+ Fylde | Small or local party, or independent candidate | 5166
1289
+ Fylde | All other candidates | 230
1290
+
1291
+ Gainsborough | Conservative Party | 25949
1292
+ Gainsborough | Labour Party | 10500
1293
+ Gainsborough | Liberal Democrats | 3290
1294
+ Gainsborough | UK Independence Party | 7727
1295
+ Gainsborough | Green Party | 1290
1296
+ Gainsborough | All other candidates | 505
1297
+
1298
+ Garston and Halewood | Conservative Party | 6693
1299
+ Garston and Halewood | Labour Party | 33839
1300
+ Garston and Halewood | Liberal Democrats | 2279
1301
+ Garston and Halewood | UK Independence Party | 4482
1302
+ Garston and Halewood | Green Party | 1690
1303
+
1304
+ Gateshead | Conservative Party | 5502
1305
+ Gateshead | Labour Party | 21549
1306
+ Gateshead | Liberal Democrats | 2585
1307
+ Gateshead | UK Independence Party | 6765
1308
+ Gateshead | Green Party | 1548
1309
+
1310
+ Gedling | Conservative Party | 17321
1311
+ Gedling | Labour Party | 20307
1312
+ Gedling | Liberal Democrats | 1906
1313
+ Gedling | UK Independence Party | 6930
1314
+ Gedling | Green Party | 1534
1315
+
1316
+ Gillingham and Rainham | Conservative Party | 22590
1317
+ Gillingham and Rainham | Labour Party | 12060
1318
+ Gillingham and Rainham | Liberal Democrats | 1707
1319
+ Gillingham and Rainham | UK Independence Party | 9199
1320
+ Gillingham and Rainham | Green Party | 1133
1321
+ Gillingham and Rainham | All other candidates | 389
1322
+
1323
+ Gloucester | Conservative Party | 23837
1324
+ Gloucester | Labour Party | 16586
1325
+ Gloucester | Liberal Democrats | 2828
1326
+ Gloucester | UK Independence Party | 7497
1327
+ Gloucester | Green Party | 1485
1328
+ Gloucester | All other candidates | 342
1329
+
1330
+ Gosport | Conservative Party | 26364
1331
+ Gosport | Labour Party | 6926
1332
+ Gosport | Liberal Democrats | 3298
1333
+ Gosport | UK Independence Party | 9266
1334
+ Gosport | Green Party | 1707
1335
+ Gosport | All other candidates | 104
1336
+
1337
+ Grantham and Stamford | Conservative Party | 28399
1338
+ Grantham and Stamford | Labour Party | 9070
1339
+ Grantham and Stamford | Liberal Democrats | 3263
1340
+ Grantham and Stamford | UK Independence Party | 9410
1341
+ Grantham and Stamford | Green Party | 1872
1342
+ Grantham and Stamford | All other candidates | 1741
1343
+
1344
+ Gravesham | Conservative Party | 23484
1345
+ Gravesham | Labour Party | 15114
1346
+ Gravesham | Liberal Democrats | 1111
1347
+ Gravesham | UK Independence Party | 9306
1348
+ Gravesham | Green Party | 1124
1349
+
1350
+ Great Grimsby | Conservative Party | 8874
1351
+ Great Grimsby | Labour Party | 13414
1352
+ Great Grimsby | Liberal Democrats | 1680
1353
+ Great Grimsby | UK Independence Party | 8417
1354
+ Great Grimsby | Green Party | 783
1355
+ Great Grimsby | All other candidates | 563
1356
+
1357
+ Great Yarmouth | Conservative Party | 19089
1358
+ Great Yarmouth | Labour Party | 12935
1359
+ Great Yarmouth | Liberal Democrats | 1030
1360
+ Great Yarmouth | UK Independence Party | 10270
1361
+ Great Yarmouth | Green Party | 978
1362
+ Great Yarmouth | All other candidates | 167
1363
+
1364
+ Greenwich and Woolwich | Conservative Party | 12438
1365
+ Greenwich and Woolwich | Labour Party | 24384
1366
+ Greenwich and Woolwich | Liberal Democrats | 2645
1367
+ Greenwich and Woolwich | UK Independence Party | 3888
1368
+ Greenwich and Woolwich | Green Party | 2991
1369
+ Greenwich and Woolwich | All other candidates | 370
1370
+
1371
+ Guildford | Conservative Party | 30802
1372
+ Guildford | Labour Party | 6534
1373
+ Guildford | Liberal Democrats | 8354
1374
+ Guildford | UK Independence Party | 4774
1375
+ Guildford | Green Party | 2558
1376
+ Guildford | All other candidates | 964
1377
+
1378
+ Hackney North and Stoke Newington | Conservative Party | 7349
1379
+ Hackney North and Stoke Newington | Labour Party | 31357
1380
+ Hackney North and Stoke Newington | Liberal Democrats | 2492
1381
+ Hackney North and Stoke Newington | UK Independence Party | 1085
1382
+ Hackney North and Stoke Newington | Green Party | 7281
1383
+ Hackney North and Stoke Newington | All other candidates | 323
1384
+
1385
+ Hackney South and Shoreditch | Conservative Party | 6420
1386
+ Hackney South and Shoreditch | Labour Party | 30663
1387
+ Hackney South and Shoreditch | Liberal Democrats | 2186
1388
+ Hackney South and Shoreditch | UK Independence Party | 1818
1389
+ Hackney South and Shoreditch | Green Party | 5519
1390
+ Hackney South and Shoreditch | All other candidates | 1004
1391
+
1392
+ Halesowen and Rowley Regis | Conservative Party | 18933
1393
+ Halesowen and Rowley Regis | Labour Party | 15851
1394
+ Halesowen and Rowley Regis | Liberal Democrats | 905
1395
+ Halesowen and Rowley Regis | UK Independence Party | 7280
1396
+ Halesowen and Rowley Regis | Green Party | 849
1397
+
1398
+ Halifax | Conservative Party | 17078
1399
+ Halifax | Labour Party | 17506
1400
+ Halifax | Liberal Democrats | 1629
1401
+ Halifax | UK Independence Party | 5621
1402
+ Halifax | Green Party | 1142
1403
+ Halifax | All other candidates | 777
1404
+
1405
+ Haltemprice and Howden | Conservative Party | 26414
1406
+ Haltemprice and Howden | Labour Party | 10219
1407
+ Haltemprice and Howden | Liberal Democrats | 3055
1408
+ Haltemprice and Howden | UK Independence Party | 6781
1409
+ Haltemprice and Howden | Green Party | 1809
1410
+ Haltemprice and Howden | All other candidates | 479
1411
+
1412
+ Halton | Conservative Party | 8007
1413
+ Halton | Labour Party | 28292
1414
+ Halton | Liberal Democrats | 1097
1415
+ Halton | UK Independence Party | 6333
1416
+ Halton | Green Party | 1017
1417
+ Halton | All other candidates | 277
1418
+
1419
+ Hammersmith | Conservative Party | 17463
1420
+ Hammersmith | Labour Party | 23981
1421
+ Hammersmith | Liberal Democrats | 2224
1422
+ Hammersmith | UK Independence Party | 2105
1423
+ Hammersmith | Green Party | 2105
1424
+ Hammersmith | All other candidates | 82
1425
+
1426
+ Hampshire East | Conservative Party | 31334
1427
+ Hampshire East | Labour Party | 5220
1428
+ Hampshire East | Liberal Democrats | 5732
1429
+ Hampshire East | UK Independence Party | 6187
1430
+ Hampshire East | Green Party | 3176
1431
+
1432
+ Hampshire North East | Conservative Party | 35573
1433
+ Hampshire North East | Labour Party | 5290
1434
+ Hampshire North East | Liberal Democrats | 5657
1435
+ Hampshire North East | UK Independence Party | 4732
1436
+ Hampshire North East | Green Party | 2364
1437
+ Hampshire North East | All other candidates | 384
1438
+
1439
+ Hampshire North West | Conservative Party | 32052
1440
+ Hampshire North West | Labour Party | 7342
1441
+ Hampshire North West | Liberal Democrats | 5151
1442
+ Hampshire North West | UK Independence Party | 8109
1443
+ Hampshire North West | Green Party | 2541
1444
+
1445
+ Hampstead and Kilburn | Conservative Party | 22839
1446
+ Hampstead and Kilburn | Labour Party | 23977
1447
+ Hampstead and Kilburn | Liberal Democrats | 3039
1448
+ Hampstead and Kilburn | UK Independence Party | 1532
1449
+ Hampstead and Kilburn | Green Party | 2387
1450
+ Hampstead and Kilburn | All other candidates | 190
1451
+
1452
+ Harborough | Conservative Party | 27675
1453
+ Harborough | Labour Party | 8043
1454
+ Harborough | Liberal Democrats | 7037
1455
+ Harborough | UK Independence Party | 7539
1456
+ Harborough | Green Party | 2177
1457
+
1458
+ Harlow | Conservative Party | 21623
1459
+ Harlow | Labour Party | 13273
1460
+ Harlow | Liberal Democrats | 904
1461
+ Harlow | UK Independence Party | 7208
1462
+ Harlow | Green Party | 954
1463
+ Harlow | All other candidates | 289
1464
+
1465
+ Harrogate and Knaresborough | Conservative Party | 28153
1466
+ Harrogate and Knaresborough | Labour Party | 5409
1467
+ Harrogate and Knaresborough | Liberal Democrats | 11782
1468
+ Harrogate and Knaresborough | UK Independence Party | 5681
1469
+ Harrogate and Knaresborough | Green Party | 2351
1470
+
1471
+ Harrow East | Conservative Party | 24668
1472
+ Harrow East | Labour Party | 19911
1473
+ Harrow East | Liberal Democrats | 1037
1474
+ Harrow East | UK Independence Party | 2333
1475
+ Harrow East | Green Party | 846
1476
+ Harrow East | All other candidates | 205
1477
+
1478
+ Harrow West | Conservative Party | 19677
1479
+ Harrow West | Labour Party | 21885
1480
+ Harrow West | Liberal Democrats | 1567
1481
+ Harrow West | UK Independence Party | 2047
1482
+ Harrow West | Green Party | 1310
1483
+ Harrow West | All other candidates | 117
1484
+
1485
+ Hartlepool | Conservative Party | 8256
1486
+ Hartlepool | Labour Party | 14076
1487
+ Hartlepool | Liberal Democrats | 761
1488
+ Hartlepool | UK Independence Party | 11052
1489
+ Hartlepool | Green Party | 1341
1490
+ Hartlepool | Small or local party, or independent candidate | 2954
1491
+ Hartlepool | All other candidates | 1050
1492
+
1493
+ Harwich and North Essex | Conservative Party | 24722
1494
+ Harwich and North Essex | Labour Party | 9548
1495
+ Harwich and North Essex | Liberal Democrats | 3576
1496
+ Harwich and North Essex | UK Independence Party | 8464
1497
+ Harwich and North Essex | Green Party | 2122
1498
+
1499
+ Hastings and Rye | Conservative Party | 22686
1500
+ Hastings and Rye | Labour Party | 17890
1501
+ Hastings and Rye | Liberal Democrats | 1614
1502
+ Hastings and Rye | UK Independence Party | 6786
1503
+ Hastings and Rye | Green Party | 1951
1504
+
1505
+ Havant | Conservative Party | 23159
1506
+ Havant | Labour Party | 7149
1507
+ Havant | Liberal Democrats | 2929
1508
+ Havant | UK Independence Party | 9239
1509
+ Havant | Green Party | 2352
1510
+
1511
+ Hayes and Harlington | Conservative Party | 11143
1512
+ Hayes and Harlington | Labour Party | 26843
1513
+ Hayes and Harlington | Liberal Democrats | 888
1514
+ Hayes and Harlington | UK Independence Party | 5388
1515
+ Hayes and Harlington | Green Party | 794
1516
+
1517
+ Hazel Grove | Conservative Party | 17882
1518
+ Hazel Grove | Labour Party | 7584
1519
+ Hazel Grove | Liberal Democrats | 11330
1520
+ Hazel Grove | UK Independence Party | 5283
1521
+ Hazel Grove | Green Party | 1140
1522
+
1523
+ Hemel Hempstead | Conservative Party | 26245
1524
+ Hemel Hempstead | Labour Party | 11825
1525
+ Hemel Hempstead | Liberal Democrats | 2402
1526
+ Hemel Hempstead | UK Independence Party | 7249
1527
+ Hemel Hempstead | Green Party | 1660
1528
+ Hemel Hempstead | All other candidates | 252
1529
+
1530
+ Hemsworth | Conservative Party | 9694
1531
+ Hemsworth | Labour Party | 21772
1532
+ Hemsworth | Liberal Democrats | 1357
1533
+ Hemsworth | UK Independence Party | 8565
1534
+ Hemsworth | All other candidates | 1018
1535
+
1536
+ Hendon | Conservative Party | 24328
1537
+ Hendon | Labour Party | 20604
1538
+ Hendon | Liberal Democrats | 1088
1539
+ Hendon | UK Independence Party | 2595
1540
+ Hendon | Green Party | 1015
1541
+
1542
+ Henley | Conservative Party | 32292
1543
+ Henley | Labour Party | 6917
1544
+ Henley | Liberal Democrats | 6205
1545
+ Henley | UK Independence Party | 6007
1546
+ Henley | Green Party | 3815
1547
+
1548
+ Hereford and South Herefordshire | Conservative Party | 24844
1549
+ Hereford and South Herefordshire | Labour Party | 6042
1550
+ Hereford and South Herefordshire | Liberal Democrats | 5002
1551
+ Hereford and South Herefordshire | UK Independence Party | 7954
1552
+ Hereford and South Herefordshire | Green Party | 3415
1553
+
1554
+ Herefordshire North | Conservative Party | 26716
1555
+ Herefordshire North | Labour Party | 5478
1556
+ Herefordshire North | Liberal Democrats | 5768
1557
+ Herefordshire North | UK Independence Party | 6720
1558
+ Herefordshire North | Green Party | 3341
1559
+
1560
+ Hertford and Stortford | Conservative Party | 31593
1561
+ Hertford and Stortford | Labour Party | 10084
1562
+ Hertford and Stortford | Liberal Democrats | 4385
1563
+ Hertford and Stortford | UK Independence Party | 7534
1564
+ Hertford and Stortford | Green Party | 2681
1565
+
1566
+ Hertfordshire North East | Conservative Party | 28949
1567
+ Hertfordshire North East | Labour Party | 9869
1568
+ Hertfordshire North East | Liberal Democrats | 3952
1569
+ Hertfordshire North East | UK Independence Party | 6728
1570
+ Hertfordshire North East | Green Party | 2789
1571
+
1572
+ Hertfordshire South West | Conservative Party | 32608
1573
+ Hertfordshire South West | Labour Party | 9345
1574
+ Hertfordshire South West | Liberal Democrats | 5872
1575
+ Hertfordshire South West | UK Independence Party | 6603
1576
+ Hertfordshire South West | Green Party | 2583
1577
+ Hertfordshire South West | All other candidates | 256
1578
+
1579
+ Hertsmere | Conservative Party | 29696
1580
+ Hertsmere | Labour Party | 11235
1581
+ Hertsmere | Liberal Democrats | 2777
1582
+ Hertsmere | UK Independence Party | 6383
1583
+
1584
+ Hexham | Conservative Party | 22834
1585
+ Hexham | Labour Party | 10803
1586
+ Hexham | Liberal Democrats | 2961
1587
+ Hexham | UK Independence Party | 4302
1588
+ Hexham | Green Party | 2445
1589
+
1590
+ Heywood and Middleton | Conservative Party | 9268
1591
+ Heywood and Middleton | Labour Party | 20926
1592
+ Heywood and Middleton | Liberal Democrats | 1607
1593
+ Heywood and Middleton | UK Independence Party | 15627
1594
+ Heywood and Middleton | Green Party | 1110
1595
+
1596
+ High Peak | Conservative Party | 22836
1597
+ High Peak | Labour Party | 17942
1598
+ High Peak | Liberal Democrats | 2389
1599
+ High Peak | UK Independence Party | 5811
1600
+ High Peak | Green Party | 1811
1601
+
1602
+ Hitchin and Harpenden | Conservative Party | 31488
1603
+ Hitchin and Harpenden | Labour Party | 11433
1604
+ Hitchin and Harpenden | Liberal Democrats | 4484
1605
+ Hitchin and Harpenden | UK Independence Party | 4917
1606
+ Hitchin and Harpenden | Green Party | 3053
1607
+
1608
+ Holborn and St Pancras | Conservative Party | 12014
1609
+ Holborn and St Pancras | Labour Party | 29062
1610
+ Holborn and St Pancras | Liberal Democrats | 3555
1611
+ Holborn and St Pancras | UK Independence Party | 2740
1612
+ Holborn and St Pancras | Green Party | 7013
1613
+ Holborn and St Pancras | All other candidates | 533
1614
+
1615
+ Hornchurch and Upminster | Conservative Party | 27051
1616
+ Hornchurch and Upminster | Labour Party | 11103
1617
+ Hornchurch and Upminster | Liberal Democrats | 1501
1618
+ Hornchurch and Upminster | UK Independence Party | 13977
1619
+ Hornchurch and Upminster | Green Party | 1411
1620
+ Hornchurch and Upminster | All other candidates | 193
1621
+
1622
+ Hornsey and Wood Green | Conservative Party | 5347
1623
+ Hornsey and Wood Green | Labour Party | 29417
1624
+ Hornsey and Wood Green | Liberal Democrats | 18359
1625
+ Hornsey and Wood Green | UK Independence Party | 1271
1626
+ Hornsey and Wood Green | Green Party | 3146
1627
+ Hornsey and Wood Green | All other candidates | 245
1628
+
1629
+ Horsham | Conservative Party | 32627
1630
+ Horsham | Labour Party | 6499
1631
+ Horsham | Liberal Democrats | 6647
1632
+ Horsham | UK Independence Party | 7969
1633
+ Horsham | Green Party | 2198
1634
+ Horsham | All other candidates | 985
1635
+
1636
+ Houghton and Sunderland South | Conservative Party | 7105
1637
+ Houghton and Sunderland South | Labour Party | 21218
1638
+ Houghton and Sunderland South | Liberal Democrats | 791
1639
+ Houghton and Sunderland South | UK Independence Party | 8280
1640
+ Houghton and Sunderland South | Green Party | 1095
1641
+
1642
+ Hove | Conservative Party | 20846
1643
+ Hove | Labour Party | 22082
1644
+ Hove | Liberal Democrats | 1861
1645
+ Hove | UK Independence Party | 3265
1646
+ Hove | Green Party | 3569
1647
+ Hove | All other candidates | 591
1648
+
1649
+ Huddersfield | Conservative Party | 10841
1650
+ Huddersfield | Labour Party | 18186
1651
+ Huddersfield | Liberal Democrats | 2365
1652
+ Huddersfield | UK Independence Party | 5948
1653
+ Huddersfield | Green Party | 2798
1654
+ Huddersfield | All other candidates | 340
1655
+
1656
+ Hull East | Conservative Party | 5593
1657
+ Hull East | Labour Party | 18180
1658
+ Hull East | Liberal Democrats | 2294
1659
+ Hull East | UK Independence Party | 7861
1660
+ Hull East | Green Party | 806
1661
+ Hull East | All other candidates | 410
1662
+
1663
+ Hull North | Conservative Party | 5306
1664
+ Hull North | Labour Party | 18661
1665
+ Hull North | Liberal Democrats | 3175
1666
+ Hull North | UK Independence Party | 5762
1667
+ Hull North | Green Party | 2066
1668
+ Hull North | All other candidates | 366
1669
+
1670
+ Hull West and Hessle | Conservative Party | 5561
1671
+ Hull West and Hessle | Labour Party | 15646
1672
+ Hull West and Hessle | Liberal Democrats | 3169
1673
+ Hull West and Hessle | UK Independence Party | 6313
1674
+ Hull West and Hessle | Green Party | 943
1675
+ Hull West and Hessle | All other candidates | 171
1676
+
1677
+ Huntingdon | Conservative Party | 29652
1678
+ Huntingdon | Labour Party | 10248
1679
+ Huntingdon | Liberal Democrats | 4375
1680
+ Huntingdon | UK Independence Party | 9473
1681
+ Huntingdon | Green Party | 2178
1682
+
1683
+ Hyndburn | Conservative Party | 13676
1684
+ Hyndburn | Labour Party | 18076
1685
+ Hyndburn | Liberal Democrats | 859
1686
+ Hyndburn | UK Independence Party | 9154
1687
+ Hyndburn | Green Party | 1122
1688
+
1689
+ Ilford North | Conservative Party | 20874
1690
+ Ilford North | Labour Party | 21463
1691
+ Ilford North | Liberal Democrats | 1130
1692
+ Ilford North | UK Independence Party | 4355
1693
+ Ilford North | Green Party | 1023
1694
+ Ilford North | All other candidates | 87
1695
+
1696
+ Ilford South | Conservative Party | 13455
1697
+ Ilford South | Labour Party | 33232
1698
+ Ilford South | Liberal Democrats | 1014
1699
+ Ilford South | UK Independence Party | 2705
1700
+ Ilford South | Green Party | 1506
1701
+
1702
+ Ipswich | Conservative Party | 21794
1703
+ Ipswich | Labour Party | 18061
1704
+ Ipswich | Liberal Democrats | 1400
1705
+ Ipswich | UK Independence Party | 5703
1706
+ Ipswich | Green Party | 1736
1707
+
1708
+ Isle of Wight | Conservative Party | 28591
1709
+ Isle of Wight | Labour Party | 8984
1710
+ Isle of Wight | Liberal Democrats | 5235
1711
+ Isle of Wight | UK Independence Party | 14888
1712
+ Isle of Wight | Green Party | 9404
1713
+ Isle of Wight | All other candidates | 3198
1714
+
1715
+ Islington North | Conservative Party | 8465
1716
+ Islington North | Labour Party | 29659
1717
+ Islington North | Liberal Democrats | 3984
1718
+ Islington North | UK Independence Party | 1971
1719
+ Islington North | Green Party | 5043
1720
+ Islington North | All other candidates | 112
1721
+
1722
+ Islington South and Finsbury | Conservative Party | 9839
1723
+ Islington South and Finsbury | Labour Party | 22547
1724
+ Islington South and Finsbury | Liberal Democrats | 4829
1725
+ Islington South and Finsbury | UK Independence Party | 3375
1726
+ Islington South and Finsbury | Green Party | 3371
1727
+ Islington South and Finsbury | All other candidates | 309
1728
+
1729
+ Jarrow | Conservative Party | 6584
1730
+ Jarrow | Labour Party | 21464
1731
+ Jarrow | Liberal Democrats | 1238
1732
+ Jarrow | UK Independence Party | 7583
1733
+ Jarrow | Green Party | 1310
1734
+ Jarrow | All other candidates | 385
1735
+
1736
+ Keighley | Conservative Party | 21766
1737
+ Keighley | Labour Party | 18713
1738
+ Keighley | Liberal Democrats | 1321
1739
+ Keighley | UK Independence Party | 5662
1740
+ Keighley | Green Party | 1661
1741
+
1742
+ Kenilworth and Southam | Conservative Party | 28474
1743
+ Kenilworth and Southam | Labour Party | 7472
1744
+ Kenilworth and Southam | Liberal Democrats | 4913
1745
+ Kenilworth and Southam | UK Independence Party | 5467
1746
+ Kenilworth and Southam | Green Party | 1956
1747
+ Kenilworth and Southam | All other candidates | 509
1748
+
1749
+ Kensington | Conservative Party | 18199
1750
+ Kensington | Labour Party | 10838
1751
+ Kensington | Liberal Democrats | 1962
1752
+ Kensington | UK Independence Party | 1557
1753
+ Kensington | Green Party | 1765
1754
+ Kensington | All other candidates | 507
1755
+
1756
+ Kettering | Conservative Party | 24467
1757
+ Kettering | Labour Party | 11877
1758
+ Kettering | Liberal Democrats | 1490
1759
+ Kettering | UK Independence Party | 7600
1760
+ Kettering | Green Party | 1633
1761
+ Kettering | All other candidates | 151
1762
+
1763
+ Kingston and Surbiton | Conservative Party | 23249
1764
+ Kingston and Surbiton | Labour Party | 8574
1765
+ Kingston and Surbiton | Liberal Democrats | 20415
1766
+ Kingston and Surbiton | UK Independence Party | 4321
1767
+ Kingston and Surbiton | Green Party | 2322
1768
+ Kingston and Surbiton | All other candidates | 372
1769
+
1770
+ Kingswood | Conservative Party | 23252
1771
+ Kingswood | Labour Party | 14246
1772
+ Kingswood | Liberal Democrats | 1827
1773
+ Kingswood | UK Independence Party | 7133
1774
+ Kingswood | Green Party | 1370
1775
+ Kingswood | All other candidates | 297
1776
+
1777
+ Knowsley | Conservative Party | 3367
1778
+ Knowsley | Labour Party | 39628
1779
+ Knowsley | Liberal Democrats | 1490
1780
+ Knowsley | UK Independence Party | 4973
1781
+ Knowsley | Green Party | 1270
1782
+
1783
+ Lancashire West | Conservative Party | 16114
1784
+ Lancashire West | Labour Party | 24474
1785
+ Lancashire West | Liberal Democrats | 1298
1786
+ Lancashire West | UK Independence Party | 6058
1787
+ Lancashire West | Green Party | 1582
1788
+ Lancashire West | All other candidates | 150
1789
+
1790
+ Lancaster and Fleetwood | Conservative Party | 16378
1791
+ Lancaster and Fleetwood | Labour Party | 17643
1792
+ Lancaster and Fleetwood | Liberal Democrats | 1390
1793
+ Lancaster and Fleetwood | UK Independence Party | 4060
1794
+ Lancaster and Fleetwood | Green Party | 2093
1795
+ Lancaster and Fleetwood | All other candidates | 174
1796
+
1797
+ Leeds Central | Conservative Party | 7791
1798
+ Leeds Central | Labour Party | 24758
1799
+ Leeds Central | Liberal Democrats | 1529
1800
+ Leeds Central | UK Independence Party | 7082
1801
+ Leeds Central | Green Party | 3558
1802
+ Leeds Central | All other candidates | 330
1803
+
1804
+ Leeds East | Conservative Party | 7997
1805
+ Leeds East | Labour Party | 20530
1806
+ Leeds East | Liberal Democrats | 1296
1807
+ Leeds East | UK Independence Party | 7256
1808
+ Leeds East | Green Party | 1117
1809
+
1810
+ Leeds North East | Conservative Party | 15887
1811
+ Leeds North East | Labour Party | 23137
1812
+ Leeds North East | Liberal Democrats | 2569
1813
+ Leeds North East | UK Independence Party | 3706
1814
+ Leeds North East | Green Party | 2541
1815
+ Leeds North East | All other candidates | 451
1816
+
1817
+ Leeds North West | Conservative Party | 8083
1818
+ Leeds North West | Labour Party | 13041
1819
+ Leeds North West | Liberal Democrats | 15948
1820
+ Leeds North West | UK Independence Party | 2997
1821
+ Leeds North West | Green Party | 3042
1822
+ Leeds North West | All other candidates | 246
1823
+
1824
+ Leeds West | Conservative Party | 7729
1825
+ Leeds West | Labour Party | 18456
1826
+ Leeds West | Liberal Democrats | 1495
1827
+ Leeds West | UK Independence Party | 7104
1828
+ Leeds West | Green Party | 3217
1829
+ Leeds West | All other candidates | 422
1830
+
1831
+ Leicester East | Conservative Party | 11034
1832
+ Leicester East | Labour Party | 29386
1833
+ Leicester East | Liberal Democrats | 1233
1834
+ Leicester East | UK Independence Party | 4290
1835
+ Leicester East | Green Party | 1468
1836
+ Leicester East | All other candidates | 657
1837
+
1838
+ Leicester South | Conservative Party | 9628
1839
+ Leicester South | Labour Party | 27473
1840
+ Leicester South | Liberal Democrats | 2127
1841
+ Leicester South | UK Independence Party | 3832
1842
+ Leicester South | Green Party | 2533
1843
+ Leicester South | All other candidates | 349
1844
+
1845
+ Leicester West | Conservative Party | 8848
1846
+ Leicester West | Labour Party | 16051
1847
+ Leicester West | Liberal Democrats | 1507
1848
+ Leicester West | UK Independence Party | 5950
1849
+ Leicester West | Green Party | 1878
1850
+ Leicester West | All other candidates | 288
1851
+
1852
+ Leicestershire North West | Conservative Party | 25505
1853
+ Leicestershire North West | Labour Party | 14132
1854
+ Leicestershire North West | Liberal Democrats | 2033
1855
+ Leicestershire North West | UK Independence Party | 8704
1856
+ Leicestershire North West | Green Party | 1174
1857
+
1858
+ Leicestershire South | Conservative Party | 28700
1859
+ Leicestershire South | Labour Party | 11876
1860
+ Leicestershire South | Liberal Democrats | 3987
1861
+ Leicestershire South | UK Independence Party | 9363
1862
+
1863
+ Leigh | Conservative Party | 10216
1864
+ Leigh | Labour Party | 24312
1865
+ Leigh | Liberal Democrats | 1150
1866
+ Leigh | UK Independence Party | 8903
1867
+ Leigh | All other candidates | 542
1868
+
1869
+ Lewes | Conservative Party | 19206
1870
+ Lewes | Labour Party | 5000
1871
+ Lewes | Liberal Democrats | 18123
1872
+ Lewes | UK Independence Party | 5427
1873
+ Lewes | Green Party | 2784
1874
+
1875
+ Lewisham Deptford | Conservative Party | 7056
1876
+ Lewisham Deptford | Labour Party | 28572
1877
+ Lewisham Deptford | Liberal Democrats | 2497
1878
+ Lewisham Deptford | UK Independence Party | 2013
1879
+ Lewisham Deptford | Green Party | 5932
1880
+ Lewisham Deptford | All other candidates | 1356
1881
+
1882
+ Lewisham East | Conservative Party | 9574
1883
+ Lewisham East | Labour Party | 23907
1884
+ Lewisham East | Liberal Democrats | 2455
1885
+ Lewisham East | UK Independence Party | 3886
1886
+ Lewisham East | Green Party | 2429
1887
+ Lewisham East | All other candidates | 672
1888
+
1889
+ Lewisham West and Penge | Conservative Party | 11633
1890
+ Lewisham West and Penge | Labour Party | 24347
1891
+ Lewisham West and Penge | Liberal Democrats | 3709
1892
+ Lewisham West and Penge | UK Independence Party | 3764
1893
+ Lewisham West and Penge | Green Party | 4077
1894
+ Lewisham West and Penge | All other candidates | 595
1895
+
1896
+ Leyton and Wanstead | Conservative Party | 8939
1897
+ Leyton and Wanstead | Labour Party | 23858
1898
+ Leyton and Wanstead | Liberal Democrats | 2304
1899
+ Leyton and Wanstead | UK Independence Party | 2341
1900
+ Leyton and Wanstead | Green Party | 2974
1901
+ Leyton and Wanstead | All other candidates | 289
1902
+
1903
+ Lichfield | Conservative Party | 28389
1904
+ Lichfield | Labour Party | 10200
1905
+ Lichfield | Liberal Democrats | 2700
1906
+ Lichfield | UK Independence Party | 8082
1907
+ Lichfield | Green Party | 1976
1908
+ Lichfield | All other candidates | 120
1909
+
1910
+ Lincoln | Conservative Party | 19976
1911
+ Lincoln | Labour Party | 18533
1912
+ Lincoln | Liberal Democrats | 1992
1913
+ Lincoln | UK Independence Party | 5721
1914
+ Lincoln | All other candidates | 630
1915
+
1916
+ Liverpool Riverside | Conservative Party | 4245
1917
+ Liverpool Riverside | Labour Party | 29835
1918
+ Liverpool Riverside | Liberal Democrats | 1719
1919
+ Liverpool Riverside | UK Independence Party | 2510
1920
+ Liverpool Riverside | Green Party | 5372
1921
+ Liverpool Riverside | All other candidates | 582
1922
+
1923
+ Liverpool Walton | Conservative Party | 1802
1924
+ Liverpool Walton | Labour Party | 31222
1925
+ Liverpool Walton | Liberal Democrats | 899
1926
+ Liverpool Walton | UK Independence Party | 3445
1927
+ Liverpool Walton | Green Party | 956
1928
+ Liverpool Walton | All other candidates | 79
1929
+
1930
+ Liverpool Wavertree | Conservative Party | 4098
1931
+ Liverpool Wavertree | Labour Party | 28401
1932
+ Liverpool Wavertree | Liberal Democrats | 2454
1933
+ Liverpool Wavertree | UK Independence Party | 3375
1934
+ Liverpool Wavertree | Green Party | 2140
1935
+ Liverpool Wavertree | All other candidates | 506
1936
+
1937
+ Liverpool West Derby | Conservative Party | 2710
1938
+ Liverpool West Derby | Labour Party | 30842
1939
+ Liverpool West Derby | Liberal Democrats | 959
1940
+ Liverpool West Derby | UK Independence Party | 3475
1941
+ Liverpool West Derby | Green Party | 996
1942
+ Liverpool West Derby | All other candidates | 2049
1943
+
1944
+ Loughborough | Conservative Party | 25762
1945
+ Loughborough | Labour Party | 16579
1946
+ Loughborough | Liberal Democrats | 2130
1947
+ Loughborough | UK Independence Party | 5704
1948
+ Loughborough | Green Party | 1845
1949
+
1950
+ Louth and Horncastle | Conservative Party | 25755
1951
+ Louth and Horncastle | Labour Party | 9077
1952
+ Louth and Horncastle | Liberal Democrats | 2255
1953
+ Louth and Horncastle | UK Independence Party | 10778
1954
+ Louth and Horncastle | Green Party | 1549
1955
+ Louth and Horncastle | All other candidates | 922
1956
+
1957
+ Ludlow | Conservative Party | 26093
1958
+ Ludlow | Labour Party | 5902
1959
+ Ludlow | Liberal Democrats | 6469
1960
+ Ludlow | UK Independence Party | 7164
1961
+ Ludlow | Green Party | 2435
1962
+
1963
+ Luton North | Conservative Party | 12739
1964
+ Luton North | Labour Party | 22243
1965
+ Luton North | Liberal Democrats | 1299
1966
+ Luton North | UK Independence Party | 5318
1967
+ Luton North | Green Party | 972
1968
+
1969
+ Luton South | Conservative Party | 12949
1970
+ Luton South | Labour Party | 18660
1971
+ Luton South | Liberal Democrats | 3183
1972
+ Luton South | UK Independence Party | 5129
1973
+ Luton South | Green Party | 1237
1974
+ Luton South | All other candidates | 1058
1975
+
1976
+ Macclesfield | Conservative Party | 26063
1977
+ Macclesfield | Labour Party | 11252
1978
+ Macclesfield | Liberal Democrats | 3842
1979
+ Macclesfield | UK Independence Party | 6037
1980
+ Macclesfield | Green Party | 2404
1981
+
1982
+ Maidenhead | Conservative Party | 35453
1983
+ Maidenhead | Labour Party | 6394
1984
+ Maidenhead | Liberal Democrats | 5337
1985
+ Maidenhead | UK Independence Party | 4539
1986
+ Maidenhead | Green Party | 1915
1987
+ Maidenhead | All other candidates | 217
1988
+
1989
+ Maidstone and The Weald | Conservative Party | 22745
1990
+ Maidstone and The Weald | Labour Party | 5268
1991
+ Maidstone and The Weald | Liberal Democrats | 12036
1992
+ Maidstone and The Weald | UK Independence Party | 7930
1993
+ Maidstone and The Weald | Green Party | 1396
1994
+ Maidstone and The Weald | All other candidates | 635
1995
+
1996
+ Makerfield | Conservative Party | 8752
1997
+ Makerfield | Labour Party | 23208
1998
+ Makerfield | Liberal Democrats | 1639
1999
+ Makerfield | UK Independence Party | 10053
2000
+ Makerfield | Green Party | 1136
2001
+
2002
+ Maldon | Conservative Party | 29112
2003
+ Maldon | Labour Party | 5690
2004
+ Maldon | Liberal Democrats | 2157
2005
+ Maldon | UK Independence Party | 7042
2006
+ Maldon | Green Party | 1504
2007
+ Maldon | Small or local party, or independent candidate | 2424
2008
+ Maldon | All other candidates | 116
2009
+
2010
+ Manchester Central | Conservative Party | 6133
2011
+ Manchester Central | Labour Party | 27772
2012
+ Manchester Central | Liberal Democrats | 1867
2013
+ Manchester Central | UK Independence Party | 5033
2014
+ Manchester Central | Green Party | 3838
2015
+ Manchester Central | All other candidates | 688
2016
+
2017
+ Manchester Gorton | Conservative Party | 4063
2018
+ Manchester Gorton | Labour Party | 28187
2019
+ Manchester Gorton | Liberal Democrats | 1782
2020
+ Manchester Gorton | UK Independence Party | 3434
2021
+ Manchester Gorton | Green Party | 4108
2022
+ Manchester Gorton | All other candidates | 445
2023
+
2024
+ Manchester Withington | Conservative Party | 4872
2025
+ Manchester Withington | Labour Party | 26843
2026
+ Manchester Withington | Liberal Democrats | 11970
2027
+ Manchester Withington | UK Independence Party | 2172
2028
+ Manchester Withington | Green Party | 4048
2029
+ Manchester Withington | All other candidates | 61
2030
+
2031
+ Mansfield | Conservative Party | 13288
2032
+ Mansfield | Labour Party | 18603
2033
+ Mansfield | Liberal Democrats | 1642
2034
+ Mansfield | UK Independence Party | 11850
2035
+ Mansfield | Green Party | 1486
2036
+ Mansfield | All other candidates | 324
2037
+
2038
+ Meon Valley | Conservative Party | 31578
2039
+ Meon Valley | Labour Party | 5656
2040
+ Meon Valley | Liberal Democrats | 4987
2041
+ Meon Valley | UK Independence Party | 7665
2042
+ Meon Valley | Green Party | 1831
2043
+
2044
+ Meriden | Conservative Party | 28791
2045
+ Meriden | Labour Party | 9996
2046
+ Meriden | Liberal Democrats | 2638
2047
+ Meriden | UK Independence Party | 8908
2048
+ Meriden | Green Party | 2170
2049
+ Meriden | All other candidates | 100
2050
+
2051
+ Middlesbrough | Conservative Party | 5388
2052
+ Middlesbrough | Labour Party | 18584
2053
+ Middlesbrough | Liberal Democrats | 1220
2054
+ Middlesbrough | UK Independence Party | 6107
2055
+ Middlesbrough | Green Party | 1407
2056
+
2057
+ Middlesbrough South and Cleveland East | Conservative Party | 16925
2058
+ Middlesbrough South and Cleveland East | Labour Party | 19193
2059
+ Middlesbrough South and Cleveland East | Liberal Democrats | 1564
2060
+ Middlesbrough South and Cleveland East | UK Independence Party | 6935
2061
+ Middlesbrough South and Cleveland East | Green Party | 1060
2062
+
2063
+ Milton Keynes North | Conservative Party | 27244
2064
+ Milton Keynes North | Labour Party | 17491
2065
+ Milton Keynes North | Liberal Democrats | 3575
2066
+ Milton Keynes North | UK Independence Party | 6852
2067
+ Milton Keynes North | Green Party | 2255
2068
+ Milton Keynes North | All other candidates | 275
2069
+
2070
+ Milton Keynes South | Conservative Party | 27601
2071
+ Milton Keynes South | Labour Party | 18929
2072
+ Milton Keynes South | Liberal Democrats | 2309
2073
+ Milton Keynes South | UK Independence Party | 7803
2074
+ Milton Keynes South | Green Party | 1936
2075
+ Milton Keynes South | All other candidates | 371
2076
+
2077
+ Mitcham and Morden | Conservative Party | 10458
2078
+ Mitcham and Morden | Labour Party | 27380
2079
+ Mitcham and Morden | Liberal Democrats | 1378
2080
+ Mitcham and Morden | UK Independence Party | 4287
2081
+ Mitcham and Morden | Green Party | 1422
2082
+ Mitcham and Morden | All other candidates | 217
2083
+
2084
+ Mole Valley | Conservative Party | 33434
2085
+ Mole Valley | Labour Party | 4565
2086
+ Mole Valley | Liberal Democrats | 7981
2087
+ Mole Valley | UK Independence Party | 6181
2088
+ Mole Valley | Green Party | 2979
2089
+
2090
+ Morecambe and Lunesdale | Conservative Party | 19691
2091
+ Morecambe and Lunesdale | Labour Party | 15101
2092
+ Morecambe and Lunesdale | Liberal Democrats | 1612
2093
+ Morecambe and Lunesdale | UK Independence Party | 5358
2094
+ Morecambe and Lunesdale | Green Party | 1395
2095
+ Morecambe and Lunesdale | All other candidates | 85
2096
+
2097
+ Morley and Outwood | Conservative Party | 18776
2098
+ Morley and Outwood | Labour Party | 18354
2099
+ Morley and Outwood | Liberal Democrats | 1426
2100
+ Morley and Outwood | UK Independence Party | 7951
2101
+ Morley and Outwood | Green Party | 1264
2102
+ Morley and Outwood | All other candidates | 479
2103
+
2104
+ New Forest East | Conservative Party | 27819
2105
+ New Forest East | Labour Party | 6018
2106
+ New Forest East | Liberal Democrats | 4626
2107
+ New Forest East | UK Independence Party | 8657
2108
+ New Forest East | Green Party | 2327
2109
+
2110
+ New Forest West | Conservative Party | 28420
2111
+ New Forest West | Labour Party | 5133
2112
+ New Forest West | Liberal Democrats | 3293
2113
+ New Forest West | UK Independence Party | 7816
2114
+ New Forest West | Green Party | 2748
2115
+
2116
+ Newark | Conservative Party | 29834
2117
+ Newark | Labour Party | 11360
2118
+ Newark | Liberal Democrats | 2385
2119
+ Newark | UK Independence Party | 6294
2120
+ Newark | Green Party | 1792
2121
+ Newark | All other candidates | 637
2122
+
2123
+ Newbury | Conservative Party | 34973
2124
+ Newbury | Labour Party | 4837
2125
+ Newbury | Liberal Democrats | 8605
2126
+ Newbury | UK Independence Party | 6195
2127
+ Newbury | Green Party | 2324
2128
+ Newbury | All other candidates | 366
2129
+
2130
+ Newcastle upon Tyne Central | Conservative Party | 6628
2131
+ Newcastle upon Tyne Central | Labour Party | 19301
2132
+ Newcastle upon Tyne Central | Liberal Democrats | 2218
2133
+ Newcastle upon Tyne Central | UK Independence Party | 5214
2134
+ Newcastle upon Tyne Central | Green Party | 1724
2135
+
2136
+ Newcastle upon Tyne East | Conservative Party | 6884
2137
+ Newcastle upon Tyne East | Labour Party | 19378
2138
+ Newcastle upon Tyne East | Liberal Democrats | 4332
2139
+ Newcastle upon Tyne East | UK Independence Party | 4910
2140
+ Newcastle upon Tyne East | Green Party | 3426
2141
+ Newcastle upon Tyne East | All other candidates | 292
2142
+
2143
+ Newcastle upon Tyne North | Conservative Party | 10536
2144
+ Newcastle upon Tyne North | Labour Party | 20689
2145
+ Newcastle upon Tyne North | Liberal Democrats | 4366
2146
+ Newcastle upon Tyne North | UK Independence Party | 7447
2147
+ Newcastle upon Tyne North | Green Party | 1515
2148
+ Newcastle upon Tyne North | All other candidates | 338
2149
+
2150
+ Newcastle-under-Lyme | Conservative Party | 15870
2151
+ Newcastle-under-Lyme | Labour Party | 16520
2152
+ Newcastle-under-Lyme | Liberal Democrats | 1826
2153
+ Newcastle-under-Lyme | UK Independence Party | 7252
2154
+ Newcastle-under-Lyme | Green Party | 1246
2155
+ Newcastle-under-Lyme | All other candidates | 283
2156
+
2157
+ Newton Abbot | Conservative Party | 22794
2158
+ Newton Abbot | Labour Party | 4736
2159
+ Newton Abbot | Liberal Democrats | 11506
2160
+ Newton Abbot | UK Independence Party | 6726
2161
+ Newton Abbot | Green Party | 2216
2162
+ Newton Abbot | All other candidates | 221
2163
+
2164
+ Norfolk Mid | Conservative Party | 27206
2165
+ Norfolk Mid | Labour Party | 9585
2166
+ Norfolk Mid | Liberal Democrats | 3300
2167
+ Norfolk Mid | UK Independence Party | 9930
2168
+ Norfolk Mid | Green Party | 2191
2169
+
2170
+ Norfolk North | Conservative Party | 15256
2171
+ Norfolk North | Labour Party | 5043
2172
+ Norfolk North | Liberal Democrats | 19299
2173
+ Norfolk North | UK Independence Party | 8328
2174
+ Norfolk North | Green Party | 1488
2175
+
2176
+ Norfolk North West | Conservative Party | 24727
2177
+ Norfolk North West | Labour Party | 10779
2178
+ Norfolk North West | Liberal Democrats | 1673
2179
+ Norfolk North West | UK Independence Party | 8412
2180
+ Norfolk North West | Green Party | 1780
2181
+
2182
+ Norfolk South | Conservative Party | 30995
2183
+ Norfolk South | Labour Party | 10502
2184
+ Norfolk South | Liberal Democrats | 4689
2185
+ Norfolk South | UK Independence Party | 7847
2186
+ Norfolk South | Green Party | 3090
2187
+
2188
+ Norfolk South West | Conservative Party | 25515
2189
+ Norfolk South West | Labour Party | 8649
2190
+ Norfolk South West | Liberal Democrats | 2217
2191
+ Norfolk South West | UK Independence Party | 11654
2192
+ Norfolk South West | Green Party | 2075
2193
+
2194
+ Normanton, Pontefract and Castleford | Conservative Party | 9569
2195
+ Normanton, Pontefract and Castleford | Labour Party | 25213
2196
+ Normanton, Pontefract and Castleford | Liberal Democrats | 1330
2197
+ Normanton, Pontefract and Castleford | UK Independence Party | 9785
2198
+
2199
+ Northampton North | Conservative Party | 16699
2200
+ Northampton North | Labour Party | 13454
2201
+ Northampton North | Liberal Democrats | 1401
2202
+ Northampton North | UK Independence Party | 6354
2203
+ Northampton North | Green Party | 1503
2204
+
2205
+ Northampton South | Conservative Party | 16163
2206
+ Northampton South | Labour Party | 12370
2207
+ Northampton South | Liberal Democrats | 1673
2208
+ Northampton South | UK Independence Party | 7114
2209
+ Northampton South | Green Party | 1403
2210
+ Northampton South | All other candidates | 161
2211
+
2212
+ Northamptonshire South | Conservative Party | 36607
2213
+ Northamptonshire South | Labour Party | 10191
2214
+ Northamptonshire South | Liberal Democrats | 3613
2215
+ Northamptonshire South | UK Independence Party | 8204
2216
+ Northamptonshire South | Green Party | 2247
2217
+
2218
+ Norwich North | Conservative Party | 19052
2219
+ Norwich North | Labour Party | 14589
2220
+ Norwich North | Liberal Democrats | 1894
2221
+ Norwich North | UK Independence Party | 5986
2222
+ Norwich North | Green Party | 1939
2223
+ Norwich North | All other candidates | 132
2224
+
2225
+ Norwich South | Conservative Party | 11379
2226
+ Norwich South | Labour Party | 19033
2227
+ Norwich South | Liberal Democrats | 6607
2228
+ Norwich South | UK Independence Party | 4539
2229
+ Norwich South | Green Party | 6749
2230
+ Norwich South | All other candidates | 156
2231
+
2232
+ Nottingham East | Conservative Party | 7314
2233
+ Nottingham East | Labour Party | 19208
2234
+ Nottingham East | Liberal Democrats | 1475
2235
+ Nottingham East | UK Independence Party | 3501
2236
+ Nottingham East | Green Party | 3473
2237
+ Nottingham East | All other candidates | 238
2238
+
2239
+ Nottingham North | Conservative Party | 7423
2240
+ Nottingham North | Labour Party | 19283
2241
+ Nottingham North | Liberal Democrats | 847
2242
+ Nottingham North | UK Independence Party | 6542
2243
+ Nottingham North | Green Party | 1088
2244
+ Nottingham North | All other candidates | 160
2245
+
2246
+ Nottingham South | Conservative Party | 13761
2247
+ Nottingham South | Labour Party | 20697
2248
+ Nottingham South | Liberal Democrats | 1532
2249
+ Nottingham South | UK Independence Party | 4900
2250
+ Nottingham South | Green Party | 2345
2251
+ Nottingham South | All other candidates | 230
2252
+
2253
+ Nuneaton | Conservative Party | 20827
2254
+ Nuneaton | Labour Party | 15945
2255
+ Nuneaton | Liberal Democrats | 816
2256
+ Nuneaton | UK Independence Party | 6582
2257
+ Nuneaton | Green Party | 1281
2258
+ Nuneaton | All other candidates | 298
2259
+
2260
+ Old Bexley and Sidcup | Conservative Party | 24682
2261
+ Old Bexley and Sidcup | Labour Party | 8879
2262
+ Old Bexley and Sidcup | Liberal Democrats | 1644
2263
+ Old Bexley and Sidcup | UK Independence Party | 8528
2264
+ Old Bexley and Sidcup | Green Party | 1336
2265
+ Old Bexley and Sidcup | Small or local party, or independent candidate | 1216
2266
+ Old Bexley and Sidcup | All other candidates | 463
2267
+
2268
+ Oldham East and Saddleworth | Conservative Party | 11527
2269
+ Oldham East and Saddleworth | Labour Party | 17529
2270
+ Oldham East and Saddleworth | Liberal Democrats | 5718
2271
+ Oldham East and Saddleworth | UK Independence Party | 8557
2272
+ Oldham East and Saddleworth | Green Party | 1152
2273
+
2274
+ Oldham West and Royton | Conservative Party | 8187
2275
+ Oldham West and Royton | Labour Party | 23630
2276
+ Oldham West and Royton | Liberal Democrats | 1589
2277
+ Oldham West and Royton | UK Independence Party | 8892
2278
+ Oldham West and Royton | Green Party | 839
2279
+
2280
+ Orpington | Conservative Party | 28152
2281
+ Orpington | Labour Party | 7645
2282
+ Orpington | Liberal Democrats | 3330
2283
+ Orpington | UK Independence Party | 8173
2284
+ Orpington | Green Party | 1732
2285
+
2286
+ Oxford East | Conservative Party | 10076
2287
+ Oxford East | Labour Party | 25356
2288
+ Oxford East | Liberal Democrats | 5453
2289
+ Oxford East | UK Independence Party | 3451
2290
+ Oxford East | Green Party | 5890
2291
+ Oxford East | All other candidates | 463
2292
+
2293
+ Oxford West and Abingdon | Conservative Party | 26153
2294
+ Oxford West and Abingdon | Labour Party | 7274
2295
+ Oxford West and Abingdon | Liberal Democrats | 16571
2296
+ Oxford West and Abingdon | UK Independence Party | 3963
2297
+ Oxford West and Abingdon | Green Party | 2497
2298
+ Oxford West and Abingdon | All other candidates | 789
2299
+
2300
+ Pendle | Conservative Party | 20978
2301
+ Pendle | Labour Party | 15525
2302
+ Pendle | Liberal Democrats | 1487
2303
+ Pendle | UK Independence Party | 5415
2304
+ Pendle | Green Party | 1043
2305
+
2306
+ Penistone and Stocksbridge | Conservative Party | 12968
2307
+ Penistone and Stocksbridge | Labour Party | 19691
2308
+ Penistone and Stocksbridge | Liberal Democrats | 2957
2309
+ Penistone and Stocksbridge | UK Independence Party | 10738
2310
+ Penistone and Stocksbridge | All other candidates | 500
2311
+
2312
+ Penrith and The Border | Conservative Party | 26202
2313
+ Penrith and The Border | Labour Party | 6308
2314
+ Penrith and The Border | Liberal Democrats | 3745
2315
+ Penrith and The Border | UK Independence Party | 5353
2316
+ Penrith and The Border | Green Party | 2313
2317
+
2318
+ Peterborough | Conservative Party | 18684
2319
+ Peterborough | Labour Party | 16759
2320
+ Peterborough | Liberal Democrats | 1774
2321
+ Peterborough | UK Independence Party | 7485
2322
+ Peterborough | Green Party | 1218
2323
+ Peterborough | All other candidates | 1155
2324
+
2325
+ Plymouth Moor View | Conservative Party | 16020
2326
+ Plymouth Moor View | Labour Party | 14994
2327
+ Plymouth Moor View | Liberal Democrats | 1265
2328
+ Plymouth Moor View | UK Independence Party | 9152
2329
+ Plymouth Moor View | Green Party | 1023
2330
+ Plymouth Moor View | All other candidates | 152
2331
+
2332
+ Plymouth Sutton and Devonport | Conservative Party | 18120
2333
+ Plymouth Sutton and Devonport | Labour Party | 17597
2334
+ Plymouth Sutton and Devonport | Liberal Democrats | 2008
2335
+ Plymouth Sutton and Devonport | UK Independence Party | 6731
2336
+ Plymouth Sutton and Devonport | Green Party | 3401
2337
+ Plymouth Sutton and Devonport | All other candidates | 106
2338
+
2339
+ Poole | Conservative Party | 23745
2340
+ Poole | Labour Party | 6102
2341
+ Poole | Liberal Democrats | 5572
2342
+ Poole | UK Independence Party | 7956
2343
+ Poole | Green Party | 2198
2344
+ Poole | All other candidates | 1820
2345
+
2346
+ Poplar and Limehouse | Conservative Party | 12962
2347
+ Poplar and Limehouse | Labour Party | 29886
2348
+ Poplar and Limehouse | Liberal Democrats | 2149
2349
+ Poplar and Limehouse | UK Independence Party | 3128
2350
+ Poplar and Limehouse | Green Party | 2463
2351
+ Poplar and Limehouse | All other candidates | 456
2352
+
2353
+ Portsmouth North | Conservative Party | 21343
2354
+ Portsmouth North | Labour Party | 10806
2355
+ Portsmouth North | Liberal Democrats | 2828
2356
+ Portsmouth North | UK Independence Party | 8660
2357
+ Portsmouth North | Green Party | 1450
2358
+ Portsmouth North | All other candidates | 303
2359
+
2360
+ Portsmouth South | Conservative Party | 14585
2361
+ Portsmouth South | Labour Party | 8184
2362
+ Portsmouth South | Liberal Democrats | 9344
2363
+ Portsmouth South | UK Independence Party | 5595
2364
+ Portsmouth South | Green Party | 3145
2365
+ Portsmouth South | Small or local party, or independent candidate | 716
2366
+ Portsmouth South | All other candidates | 334
2367
+
2368
+ Preston | Conservative Party | 6688
2369
+ Preston | Labour Party | 18755
2370
+ Preston | Liberal Democrats | 1244
2371
+ Preston | UK Independence Party | 5139
2372
+ Preston | Green Party | 1643
2373
+
2374
+ Pudsey | Conservative Party | 23637
2375
+ Pudsey | Labour Party | 19136
2376
+ Pudsey | Liberal Democrats | 1926
2377
+ Pudsey | UK Independence Party | 4689
2378
+ Pudsey | Green Party | 1539
2379
+
2380
+ Putney | Conservative Party | 23018
2381
+ Putney | Labour Party | 12838
2382
+ Putney | Liberal Democrats | 2717
2383
+ Putney | UK Independence Party | 1989
2384
+ Putney | Green Party | 2067
2385
+ Putney | All other candidates | 184
2386
+
2387
+ Rayleigh and Wickford | Conservative Party | 29088
2388
+ Rayleigh and Wickford | Labour Party | 6705
2389
+ Rayleigh and Wickford | Liberal Democrats | 1622
2390
+ Rayleigh and Wickford | UK Independence Party | 11858
2391
+ Rayleigh and Wickford | Green Party | 1529
2392
+ Rayleigh and Wickford | All other candidates | 2418
2393
+
2394
+ Reading East | Conservative Party | 23217
2395
+ Reading East | Labour Party | 16697
2396
+ Reading East | Liberal Democrats | 3719
2397
+ Reading East | UK Independence Party | 3647
2398
+ Reading East | Green Party | 3214
2399
+
2400
+ Reading West | Conservative Party | 23082
2401
+ Reading West | Labour Party | 16432
2402
+ Reading West | Liberal Democrats | 2355
2403
+ Reading West | UK Independence Party | 4826
2404
+ Reading West | Green Party | 1406
2405
+ Reading West | All other candidates | 303
2406
+
2407
+ Redcar | Conservative Party | 6630
2408
+ Redcar | Labour Party | 17946
2409
+ Redcar | Liberal Democrats | 7558
2410
+ Redcar | UK Independence Party | 7516
2411
+ Redcar | Green Party | 880
2412
+ Redcar | All other candidates | 389
2413
+
2414
+ Redditch | Conservative Party | 20771
2415
+ Redditch | Labour Party | 13717
2416
+ Redditch | Liberal Democrats | 1349
2417
+ Redditch | UK Independence Party | 7133
2418
+ Redditch | Green Party | 960
2419
+ Redditch | All other candidates | 168
2420
+
2421
+ Reigate | Conservative Party | 29151
2422
+ Reigate | Labour Party | 6578
2423
+ Reigate | Liberal Democrats | 5369
2424
+ Reigate | UK Independence Party | 6817
2425
+ Reigate | Green Party | 3434
2426
+
2427
+ Ribble South | Conservative Party | 24313
2428
+ Ribble South | Labour Party | 18368
2429
+ Ribble South | Liberal Democrats | 2312
2430
+ Ribble South | UK Independence Party | 7377
2431
+
2432
+ Ribble Valley | Conservative Party | 25404
2433
+ Ribble Valley | Labour Party | 11798
2434
+ Ribble Valley | Liberal Democrats | 2756
2435
+ Ribble Valley | UK Independence Party | 8250
2436
+ Ribble Valley | Green Party | 2193
2437
+ Ribble Valley | All other candidates | 1842
2438
+
2439
+ Richmond | Conservative Party | 27744
2440
+ Richmond | Labour Party | 7124
2441
+ Richmond | Liberal Democrats | 3465
2442
+ Richmond | UK Independence Party | 8194
2443
+ Richmond | Green Party | 2313
2444
+ Richmond | Small or local party, or independent candidate | 3348
2445
+ Richmond | All other candidates | 1811
2446
+
2447
+ Richmond Park | Conservative Party | 34404
2448
+ Richmond Park | Labour Party | 7296
2449
+ Richmond Park | Liberal Democrats | 11389
2450
+ Richmond Park | UK Independence Party | 2464
2451
+ Richmond Park | Green Party | 3548
2452
+
2453
+ Rochdale | Conservative Party | 7742
2454
+ Rochdale | Labour Party | 20961
2455
+ Rochdale | Liberal Democrats | 4667
2456
+ Rochdale | UK Independence Party | 8519
2457
+ Rochdale | Green Party | 1382
2458
+ Rochdale | Small or local party, or independent candidate | 1535
2459
+ Rochdale | All other candidates | 624
2460
+
2461
+ Rochester and Strood | Conservative Party | 23142
2462
+ Rochester and Strood | Labour Party | 10396
2463
+ Rochester and Strood | Liberal Democrats | 1251
2464
+ Rochester and Strood | UK Independence Party | 16009
2465
+ Rochester and Strood | Green Party | 1516
2466
+ Rochester and Strood | All other candidates | 202
2467
+
2468
+ Rochford and Southend East | Conservative Party | 20241
2469
+ Rochford and Southend East | Labour Party | 10765
2470
+ Rochford and Southend East | Liberal Democrats | 1459
2471
+ Rochford and Southend East | UK Independence Party | 8948
2472
+ Rochford and Southend East | Green Party | 2195
2473
+
2474
+ Romford | Conservative Party | 25067
2475
+ Romford | Labour Party | 10268
2476
+ Romford | Liberal Democrats | 1413
2477
+ Romford | UK Independence Party | 11208
2478
+ Romford | Green Party | 1222
2479
+
2480
+ Romsey and Southampton North | Conservative Party | 26285
2481
+ Romsey and Southampton North | Labour Party | 5749
2482
+ Romsey and Southampton North | Liberal Democrats | 8573
2483
+ Romsey and Southampton North | UK Independence Party | 5511
2484
+ Romsey and Southampton North | Green Party | 2280
2485
+
2486
+ Rossendale and Darwen | Conservative Party | 22847
2487
+ Rossendale and Darwen | Labour Party | 17193
2488
+ Rossendale and Darwen | Liberal Democrats | 806
2489
+ Rossendale and Darwen | UK Independence Party | 6862
2490
+ Rossendale and Darwen | Green Party | 1046
2491
+ Rossendale and Darwen | All other candidates | 270
2492
+
2493
+ Rother Valley | Conservative Party | 10945
2494
+ Rother Valley | Labour Party | 20501
2495
+ Rother Valley | Liberal Democrats | 1992
2496
+ Rother Valley | UK Independence Party | 13204
2497
+ Rother Valley | All other candidates | 377
2498
+
2499
+ Rotherham | Conservative Party | 4656
2500
+ Rotherham | Labour Party | 19860
2501
+ Rotherham | Liberal Democrats | 1093
2502
+ Rotherham | UK Independence Party | 11414
2503
+ Rotherham | All other candidates | 800
2504
+
2505
+ Rugby | Conservative Party | 24040
2506
+ Rugby | Labour Party | 13695
2507
+ Rugby | Liberal Democrats | 2776
2508
+ Rugby | UK Independence Party | 6855
2509
+ Rugby | Green Party | 1415
2510
+ Rugby | All other candidates | 225
2511
+
2512
+ Ruislip, Northwood and Pinner | Conservative Party | 30521
2513
+ Ruislip, Northwood and Pinner | Labour Party | 10297
2514
+ Ruislip, Northwood and Pinner | Liberal Democrats | 2537
2515
+ Ruislip, Northwood and Pinner | UK Independence Party | 5598
2516
+ Ruislip, Northwood and Pinner | Green Party | 1801
2517
+ Ruislip, Northwood and Pinner | All other candidates | 468
2518
+
2519
+ Runnymede and Weybridge | Conservative Party | 29901
2520
+ Runnymede and Weybridge | Labour Party | 7767
2521
+ Runnymede and Weybridge | Liberal Democrats | 3362
2522
+ Runnymede and Weybridge | UK Independence Party | 6951
2523
+ Runnymede and Weybridge | Green Party | 2071
2524
+
2525
+ Rushcliffe | Conservative Party | 28354
2526
+ Rushcliffe | Labour Party | 14525
2527
+ Rushcliffe | Liberal Democrats | 2783
2528
+ Rushcliffe | UK Independence Party | 5943
2529
+ Rushcliffe | Green Party | 3559
2530
+
2531
+ Rutland and Melton | Conservative Party | 30383
2532
+ Rutland and Melton | Labour Party | 8383
2533
+ Rutland and Melton | Liberal Democrats | 4407
2534
+ Rutland and Melton | UK Independence Party | 8678
2535
+ Rutland and Melton | Green Party | 2325
2536
+ Rutland and Melton | All other candidates | 427
2537
+
2538
+ Saffron Walden | Conservative Party | 32926
2539
+ Saffron Walden | Labour Party | 6791
2540
+ Saffron Walden | Liberal Democrats | 6079
2541
+ Saffron Walden | UK Independence Party | 7935
2542
+ Saffron Walden | Green Party | 2174
2543
+ Saffron Walden | All other candidates | 1658
2544
+
2545
+ Salford and Eccles | Conservative Party | 8823
2546
+ Salford and Eccles | Labour Party | 21364
2547
+ Salford and Eccles | Liberal Democrats | 1614
2548
+ Salford and Eccles | UK Independence Party | 7806
2549
+ Salford and Eccles | Green Party | 2251
2550
+ Salford and Eccles | All other candidates | 1403
2551
+
2552
+ Salisbury | Conservative Party | 28192
2553
+ Salisbury | Labour Party | 7771
2554
+ Salisbury | Liberal Democrats | 5099
2555
+ Salisbury | UK Independence Party | 6152
2556
+ Salisbury | Green Party | 2762
2557
+ Salisbury | All other candidates | 729
2558
+
2559
+ Scarborough and Whitby | Conservative Party | 20613
2560
+ Scarborough and Whitby | Labour Party | 14413
2561
+ Scarborough and Whitby | Liberal Democrats | 2159
2562
+ Scarborough and Whitby | UK Independence Party | 8162
2563
+ Scarborough and Whitby | Green Party | 2185
2564
+ Scarborough and Whitby | All other candidates | 207
2565
+
2566
+ Scunthorpe | Conservative Party | 12259
2567
+ Scunthorpe | Labour Party | 15393
2568
+ Scunthorpe | Liberal Democrats | 770
2569
+ Scunthorpe | UK Independence Party | 6329
2570
+ Scunthorpe | Green Party | 887
2571
+ Scunthorpe | Small or local party, or independent candidate | 1097
2572
+ Scunthorpe | All other candidates | 206
2573
+
2574
+ Sedgefield | Conservative Party | 11432
2575
+ Sedgefield | Labour Party | 18275
2576
+ Sedgefield | Liberal Democrats | 1370
2577
+ Sedgefield | UK Independence Party | 6426
2578
+ Sedgefield | Green Party | 1213
2579
+
2580
+ Sefton Central | Conservative Party | 14513
2581
+ Sefton Central | Labour Party | 26359
2582
+ Sefton Central | Liberal Democrats | 2086
2583
+ Sefton Central | UK Independence Party | 4879
2584
+ Sefton Central | Green Party | 1184
2585
+
2586
+ Selby and Ainsty | Conservative Party | 27725
2587
+ Selby and Ainsty | Labour Party | 14168
2588
+ Selby and Ainsty | Liberal Democrats | 1920
2589
+ Selby and Ainsty | UK Independence Party | 7389
2590
+ Selby and Ainsty | Green Party | 1465
2591
+ Selby and Ainsty | All other candidates | 137
2592
+
2593
+ Sevenoaks | Conservative Party | 28531
2594
+ Sevenoaks | Labour Party | 6448
2595
+ Sevenoaks | Liberal Democrats | 3937
2596
+ Sevenoaks | UK Independence Party | 8970
2597
+ Sevenoaks | Green Party | 2238
2598
+
2599
+ Sheffield Brightside and Hillsborough | Conservative Party | 4407
2600
+ Sheffield Brightside and Hillsborough | Labour Party | 22663
2601
+ Sheffield Brightside and Hillsborough | Liberal Democrats | 1802
2602
+ Sheffield Brightside and Hillsborough | UK Independence Party | 8856
2603
+ Sheffield Brightside and Hillsborough | Green Party | 1712
2604
+ Sheffield Brightside and Hillsborough | All other candidates | 613
2605
+
2606
+ Sheffield Central | Conservative Party | 4917
2607
+ Sheffield Central | Labour Party | 24308
2608
+ Sheffield Central | Liberal Democrats | 4278
2609
+ Sheffield Central | UK Independence Party | 3296
2610
+ Sheffield Central | Green Party | 6999
2611
+ Sheffield Central | All other candidates | 375
2612
+
2613
+ Sheffield Hallam | Conservative Party | 7544
2614
+ Sheffield Hallam | Labour Party | 19862
2615
+ Sheffield Hallam | Liberal Democrats | 22215
2616
+ Sheffield Hallam | UK Independence Party | 3575
2617
+ Sheffield Hallam | Green Party | 1772
2618
+ Sheffield Hallam | All other candidates | 513
2619
+
2620
+ Sheffield Heeley | Conservative Party | 6792
2621
+ Sheffield Heeley | Labour Party | 20269
2622
+ Sheffield Heeley | Liberal Democrats | 4746
2623
+ Sheffield Heeley | UK Independence Party | 7315
2624
+ Sheffield Heeley | Green Party | 2566
2625
+ Sheffield Heeley | All other candidates | 360
2626
+
2627
+ Sheffield South East | Conservative Party | 7242
2628
+ Sheffield South East | Labour Party | 21439
2629
+ Sheffield South East | Liberal Democrats | 2226
2630
+ Sheffield South East | UK Independence Party | 9128
2631
+ Sheffield South East | Green Party | 1117
2632
+ Sheffield South East | All other candidates | 533
2633
+
2634
+ Sherwood | Conservative Party | 22833
2635
+ Sherwood | Labour Party | 18186
2636
+ Sherwood | Liberal Democrats | 1094
2637
+ Sherwood | UK Independence Party | 7399
2638
+ Sherwood | Green Party | 1108
2639
+ Sherwood | All other candidates | 78
2640
+
2641
+ Shipley | Conservative Party | 25269
2642
+ Shipley | Labour Party | 15645
2643
+ Shipley | Liberal Democrats | 1949
2644
+ Shipley | UK Independence Party | 4479
2645
+ Shipley | Green Party | 2657
2646
+ Shipley | All other candidates | 543
2647
+
2648
+ Shrewsbury and Atcham | Conservative Party | 24628
2649
+ Shrewsbury and Atcham | Labour Party | 15063
2650
+ Shrewsbury and Atcham | Liberal Democrats | 4268
2651
+ Shrewsbury and Atcham | UK Independence Party | 7813
2652
+ Shrewsbury and Atcham | Green Party | 2247
2653
+ Shrewsbury and Atcham | All other candidates | 83
2654
+
2655
+ Shropshire North | Conservative Party | 27041
2656
+ Shropshire North | Labour Party | 10547
2657
+ Shropshire North | Liberal Democrats | 3148
2658
+ Shropshire North | UK Independence Party | 9262
2659
+ Shropshire North | Green Party | 2575
2660
+
2661
+ Sittingbourne and Sheppey | Conservative Party | 24425
2662
+ Sittingbourne and Sheppey | Labour Party | 9673
2663
+ Sittingbourne and Sheppey | Liberal Democrats | 1563
2664
+ Sittingbourne and Sheppey | UK Independence Party | 12257
2665
+ Sittingbourne and Sheppey | Green Party | 1185
2666
+ Sittingbourne and Sheppey | All other candidates | 275
2667
+
2668
+ Skipton and Ripon | Conservative Party | 30248
2669
+ Skipton and Ripon | Labour Party | 9487
2670
+ Skipton and Ripon | Liberal Democrats | 4057
2671
+ Skipton and Ripon | UK Independence Party | 7651
2672
+ Skipton and Ripon | Green Party | 3116
2673
+
2674
+ Sleaford and North Hykeham | Conservative Party | 34805
2675
+ Sleaford and North Hykeham | Labour Party | 10690
2676
+ Sleaford and North Hykeham | Liberal Democrats | 3500
2677
+ Sleaford and North Hykeham | UK Independence Party | 9716
2678
+ Sleaford and North Hykeham | All other candidates | 3233
2679
+
2680
+ Slough | Conservative Party | 16085
2681
+ Slough | Labour Party | 23421
2682
+ Slough | Liberal Democrats | 1275
2683
+ Slough | UK Independence Party | 6274
2684
+ Slough | Green Party | 1220
2685
+
2686
+ Solihull | Conservative Party | 26956
2687
+ Solihull | Labour Party | 5693
2688
+ Solihull | Liberal Democrats | 14054
2689
+ Solihull | UK Independence Party | 6361
2690
+ Solihull | Green Party | 1632
2691
+ Solihull | All other candidates | 83
2692
+
2693
+ Somerset North | Conservative Party | 31540
2694
+ Somerset North | Labour Party | 8441
2695
+ Somerset North | Liberal Democrats | 7486
2696
+ Somerset North | UK Independence Party | 7669
2697
+ Somerset North | Green Party | 3806
2698
+
2699
+ Somerset North East | Conservative Party | 25439
2700
+ Somerset North East | Labour Party | 12690
2701
+ Somerset North East | Liberal Democrats | 4029
2702
+ Somerset North East | UK Independence Party | 6150
2703
+ Somerset North East | Green Party | 2802
2704
+
2705
+ Somerton and Frome | Conservative Party | 31960
2706
+ Somerton and Frome | Labour Party | 4419
2707
+ Somerton and Frome | Liberal Democrats | 11692
2708
+ Somerton and Frome | UK Independence Party | 6439
2709
+ Somerton and Frome | Green Party | 5434
2710
+ Somerton and Frome | All other candidates | 365
2711
+
2712
+ South Holland and The Deepings | Conservative Party | 29303
2713
+ South Holland and The Deepings | Labour Party | 6122
2714
+ South Holland and The Deepings | Liberal Democrats | 1466
2715
+ South Holland and The Deepings | UK Independence Party | 10736
2716
+ South Holland and The Deepings | Green Party | 1580
2717
+
2718
+ South Shields | Conservative Party | 6021
2719
+ South Shields | Labour Party | 18589
2720
+ South Shields | Liberal Democrats | 639
2721
+ South Shields | UK Independence Party | 7975
2722
+ South Shields | Green Party | 1614
2723
+ South Shields | Small or local party, or independent candidate | 1427
2724
+
2725
+ Southampton Itchen | Conservative Party | 18656
2726
+ Southampton Itchen | Labour Party | 16340
2727
+ Southampton Itchen | Liberal Democrats | 1595
2728
+ Southampton Itchen | UK Independence Party | 6010
2729
+ Southampton Itchen | Green Party | 1876
2730
+ Southampton Itchen | All other candidates | 233
2731
+
2732
+ Southampton Test | Conservative Party | 14207
2733
+ Southampton Test | Labour Party | 18017
2734
+ Southampton Test | Liberal Democrats | 2121
2735
+ Southampton Test | UK Independence Party | 5566
2736
+ Southampton Test | Green Party | 2568
2737
+ Southampton Test | All other candidates | 1173
2738
+
2739
+ Southend West | Conservative Party | 22175
2740
+ Southend West | Labour Party | 8154
2741
+ Southend West | Liberal Democrats | 4129
2742
+ Southend West | UK Independence Party | 7803
2743
+ Southend West | Green Party | 2083
2744
+ Southend West | All other candidates | 165
2745
+
2746
+ Southport | Conservative Party | 12330
2747
+ Southport | Labour Party | 8468
2748
+ Southport | Liberal Democrats | 13652
2749
+ Southport | UK Independence Party | 7429
2750
+ Southport | Green Party | 1230
2751
+ Southport | All other candidates | 992
2752
+
2753
+ Spelthorne | Conservative Party | 24386
2754
+ Spelthorne | Labour Party | 9114
2755
+ Spelthorne | Liberal Democrats | 3163
2756
+ Spelthorne | UK Independence Party | 10234
2757
+ Spelthorne | Green Party | 1724
2758
+ Spelthorne | All other candidates | 458
2759
+
2760
+ St Albans | Conservative Party | 25392
2761
+ St Albans | Labour Party | 12660
2762
+ St Albans | Liberal Democrats | 10076
2763
+ St Albans | UK Independence Party | 4271
2764
+ St Albans | Green Party | 2034
2765
+
2766
+ St Austell and Newquay | Conservative Party | 20250
2767
+ St Austell and Newquay | Labour Party | 5150
2768
+ St Austell and Newquay | Liberal Democrats | 12077
2769
+ St Austell and Newquay | UK Independence Party | 8503
2770
+ St Austell and Newquay | Green Party | 2318
2771
+ St Austell and Newquay | All other candidates | 2063
2772
+
2773
+ St Helens North | Conservative Party | 9087
2774
+ St Helens North | Labour Party | 26378
2775
+ St Helens North | Liberal Democrats | 2046
2776
+ St Helens North | UK Independence Party | 6983
2777
+ St Helens North | Green Party | 1762
2778
+
2779
+ St Helens South and Whiston | Conservative Party | 7707
2780
+ St Helens South and Whiston | Labour Party | 28950
2781
+ St Helens South and Whiston | Liberal Democrats | 2737
2782
+ St Helens South and Whiston | UK Independence Party | 6766
2783
+ St Helens South and Whiston | Green Party | 2237
2784
+
2785
+ St Ives | Conservative Party | 18491
2786
+ St Ives | Labour Party | 4510
2787
+ St Ives | Liberal Democrats | 16022
2788
+ St Ives | UK Independence Party | 5720
2789
+ St Ives | Green Party | 3051
2790
+ St Ives | All other candidates | 518
2791
+
2792
+ Stafford | Conservative Party | 23606
2793
+ Stafford | Labour Party | 14429
2794
+ Stafford | Liberal Democrats | 1348
2795
+ Stafford | UK Independence Party | 6293
2796
+ Stafford | Green Party | 1390
2797
+ Stafford | Small or local party, or independent candidate | 1701
2798
+
2799
+ Staffordshire Moorlands | Conservative Party | 21770
2800
+ Staffordshire Moorlands | Labour Party | 11596
2801
+ Staffordshire Moorlands | Liberal Democrats | 1759
2802
+ Staffordshire Moorlands | UK Independence Party | 6236
2803
+ Staffordshire Moorlands | Green Party | 1226
2804
+
2805
+ Staffordshire South | Conservative Party | 29478
2806
+ Staffordshire South | Labour Party | 9107
2807
+ Staffordshire South | Liberal Democrats | 1448
2808
+ Staffordshire South | UK Independence Party | 8267
2809
+ Staffordshire South | Green Party | 1298
2810
+
2811
+ Stalybridge and Hyde | Conservative Party | 11761
2812
+ Stalybridge and Hyde | Labour Party | 18447
2813
+ Stalybridge and Hyde | Liberal Democrats | 1256
2814
+ Stalybridge and Hyde | UK Independence Party | 7720
2815
+ Stalybridge and Hyde | Green Party | 1850
2816
+
2817
+ Stevenage | Conservative Party | 21291
2818
+ Stevenage | Labour Party | 16336
2819
+ Stevenage | Liberal Democrats | 1582
2820
+ Stevenage | UK Independence Party | 6864
2821
+ Stevenage | Green Party | 1369
2822
+ Stevenage | All other candidates | 357
2823
+
2824
+ Stockport | Conservative Party | 9710
2825
+ Stockport | Labour Party | 19771
2826
+ Stockport | Liberal Democrats | 3034
2827
+ Stockport | UK Independence Party | 5206
2828
+ Stockport | Green Party | 1753
2829
+ Stockport | All other candidates | 175
2830
+
2831
+ Stockton North | Conservative Party | 11069
2832
+ Stockton North | Labour Party | 19436
2833
+ Stockton North | Liberal Democrats | 884
2834
+ Stockton North | UK Independence Party | 7581
2835
+ Stockton North | All other candidates | 601
2836
+
2837
+ Stockton South | Conservative Party | 24221
2838
+ Stockton South | Labour Party | 19175
2839
+ Stockton South | Liberal Democrats | 1366
2840
+ Stockton South | UK Independence Party | 5480
2841
+ Stockton South | Green Party | 952
2842
+ Stockton South | All other candidates | 603
2843
+
2844
+ Stoke-on-Trent Central | Conservative Party | 7008
2845
+ Stoke-on-Trent Central | Labour Party | 12220
2846
+ Stoke-on-Trent Central | Liberal Democrats | 1296
2847
+ Stoke-on-Trent Central | UK Independence Party | 7041
2848
+ Stoke-on-Trent Central | Green Party | 1123
2849
+ Stoke-on-Trent Central | Small or local party, or independent candidate | 2120
2850
+ Stoke-on-Trent Central | All other candidates | 276
2851
+
2852
+ Stoke-on-Trent North | Conservative Party | 10593
2853
+ Stoke-on-Trent North | Labour Party | 15429
2854
+ Stoke-on-Trent North | Liberal Democrats | 1137
2855
+ Stoke-on-Trent North | UK Independence Party | 9542
2856
+ Stoke-on-Trent North | Green Party | 1091
2857
+ Stoke-on-Trent North | All other candidates | 862
2858
+
2859
+ Stoke-on-Trent South | Conservative Party | 12780
2860
+ Stoke-on-Trent South | Labour Party | 15319
2861
+ Stoke-on-Trent South | Liberal Democrats | 1309
2862
+ Stoke-on-Trent South | UK Independence Party | 8298
2863
+ Stoke-on-Trent South | Green Party | 1029
2864
+ Stoke-on-Trent South | All other candidates | 372
2865
+
2866
+ Stone | Conservative Party | 25733
2867
+ Stone | Labour Party | 9483
2868
+ Stone | Liberal Democrats | 2473
2869
+ Stone | UK Independence Party | 7620
2870
+ Stone | Green Party | 1191
2871
+ Stone | All other candidates | 531
2872
+
2873
+ Stourbridge | Conservative Party | 21195
2874
+ Stourbridge | Labour Party | 14501
2875
+ Stourbridge | Liberal Democrats | 1538
2876
+ Stourbridge | UK Independence Party | 7774
2877
+ Stourbridge | Green Party | 1021
2878
+
2879
+ Stratford-on-Avon | Conservative Party | 29674
2880
+ Stratford-on-Avon | Labour Party | 6677
2881
+ Stratford-on-Avon | Liberal Democrats | 6182
2882
+ Stratford-on-Avon | UK Independence Party | 6798
2883
+ Stratford-on-Avon | Green Party | 2128
2884
+
2885
+ Streatham | Conservative Party | 12540
2886
+ Streatham | Labour Party | 26474
2887
+ Streatham | Liberal Democrats | 4491
2888
+ Streatham | UK Independence Party | 1602
2889
+ Streatham | Green Party | 4421
2890
+ Streatham | All other candidates | 405
2891
+
2892
+ Stretford and Urmston | Conservative Party | 12916
2893
+ Stretford and Urmston | Labour Party | 24601
2894
+ Stretford and Urmston | Liberal Democrats | 1362
2895
+ Stretford and Urmston | UK Independence Party | 5068
2896
+ Stretford and Urmston | Green Party | 2187
2897
+ Stretford and Urmston | All other candidates | 252
2898
+
2899
+ Stroud | Conservative Party | 27813
2900
+ Stroud | Labour Party | 22947
2901
+ Stroud | Liberal Democrats | 2086
2902
+ Stroud | UK Independence Party | 4848
2903
+ Stroud | Green Party | 2779
2904
+ Stroud | All other candidates | 346
2905
+
2906
+ Suffolk Central and Ipswich North | Conservative Party | 30317
2907
+ Suffolk Central and Ipswich North | Labour Party | 10173
2908
+ Suffolk Central and Ipswich North | Liberal Democrats | 3314
2909
+ Suffolk Central and Ipswich North | UK Independence Party | 7459
2910
+ Suffolk Central and Ipswich North | Green Party | 2664
2911
+ Suffolk Central and Ipswich North | All other candidates | 162
2912
+
2913
+ Suffolk Coastal | Conservative Party | 28855
2914
+ Suffolk Coastal | Labour Party | 10013
2915
+ Suffolk Coastal | Liberal Democrats | 4777
2916
+ Suffolk Coastal | UK Independence Party | 8655
2917
+ Suffolk Coastal | Green Party | 3294
2918
+
2919
+ Suffolk South | Conservative Party | 27546
2920
+ Suffolk South | Labour Party | 10001
2921
+ Suffolk South | Liberal Democrats | 4044
2922
+ Suffolk South | UK Independence Party | 7897
2923
+ Suffolk South | Green Party | 2253
2924
+ Suffolk South | All other candidates | 166
2925
+
2926
+ Suffolk West | Conservative Party | 25684
2927
+ Suffolk West | Labour Party | 8604
2928
+ Suffolk West | Liberal Democrats | 2465
2929
+ Suffolk West | UK Independence Party | 10700
2930
+ Suffolk West | Green Party | 1779
2931
+
2932
+ Sunderland Central | Conservative Party | 9780
2933
+ Sunderland Central | Labour Party | 20959
2934
+ Sunderland Central | Liberal Democrats | 1105
2935
+ Sunderland Central | UK Independence Party | 7997
2936
+ Sunderland Central | Green Party | 1706
2937
+ Sunderland Central | All other candidates | 215
2938
+
2939
+ Surrey East | Conservative Party | 32211
2940
+ Surrey East | Labour Party | 6627
2941
+ Surrey East | Liberal Democrats | 5189
2942
+ Surrey East | UK Independence Party | 9553
2943
+ Surrey East | Green Party | 2159
2944
+ Surrey East | All other candidates | 364
2945
+
2946
+ Surrey Heath | Conservative Party | 32582
2947
+ Surrey Heath | Labour Party | 6100
2948
+ Surrey Heath | Liberal Democrats | 4937
2949
+ Surrey Heath | UK Independence Party | 7778
2950
+ Surrey Heath | Green Party | 2400
2951
+ Surrey Heath | All other candidates | 634
2952
+
2953
+ Surrey South West | Conservative Party | 34199
2954
+ Surrey South West | Labour Party | 5415
2955
+ Surrey South West | Liberal Democrats | 3586
2956
+ Surrey South West | UK Independence Party | 5643
2957
+ Surrey South West | Green Party | 3105
2958
+ Surrey South West | Small or local party, or independent candidate | 4851
2959
+ Surrey South West | All other candidates | 320
2960
+
2961
+ Sussex Mid | Conservative Party | 32268
2962
+ Sussex Mid | Labour Party | 7982
2963
+ Sussex Mid | Liberal Democrats | 6604
2964
+ Sussex Mid | UK Independence Party | 6898
2965
+ Sussex Mid | Green Party | 2453
2966
+ Sussex Mid | All other candidates | 1287
2967
+
2968
+ Sutton and Cheam | Conservative Party | 20732
2969
+ Sutton and Cheam | Labour Party | 5546
2970
+ Sutton and Cheam | Liberal Democrats | 16811
2971
+ Sutton and Cheam | UK Independence Party | 5341
2972
+ Sutton and Cheam | Green Party | 1051
2973
+ Sutton and Cheam | All other candidates | 424
2974
+
2975
+ Sutton Coldfield | Conservative Party | 27782
2976
+ Sutton Coldfield | Labour Party | 11365
2977
+ Sutton Coldfield | Liberal Democrats | 2627
2978
+ Sutton Coldfield | UK Independence Party | 7489
2979
+ Sutton Coldfield | Green Party | 1426
2980
+ Sutton Coldfield | All other candidates | 165
2981
+
2982
+ Swindon North | Conservative Party | 26295
2983
+ Swindon North | Labour Party | 14509
2984
+ Swindon North | Liberal Democrats | 1704
2985
+ Swindon North | UK Independence Party | 8011
2986
+ Swindon North | Green Party | 1723
2987
+
2988
+ Swindon South | Conservative Party | 22777
2989
+ Swindon South | Labour Party | 16992
2990
+ Swindon South | Liberal Democrats | 1817
2991
+ Swindon South | UK Independence Party | 5920
2992
+ Swindon South | Green Party | 1757
2993
+
2994
+ Tamworth | Conservative Party | 23606
2995
+ Tamworth | Labour Party | 12304
2996
+ Tamworth | Liberal Democrats | 1427
2997
+ Tamworth | UK Independence Party | 8727
2998
+ Tamworth | Green Party | 1110
2999
+
3000
+ Tatton | Conservative Party | 26552
3001
+ Tatton | Labour Party | 8311
3002
+ Tatton | Liberal Democrats | 3850
3003
+ Tatton | UK Independence Party | 4871
3004
+ Tatton | Green Party | 1714
3005
+
3006
+ Taunton Deane | Conservative Party | 27849
3007
+ Taunton Deane | Labour Party | 5347
3008
+ Taunton Deane | Liberal Democrats | 12358
3009
+ Taunton Deane | UK Independence Party | 6921
3010
+ Taunton Deane | Green Party | 2630
3011
+ Taunton Deane | Small or local party, or independent candidate | 2568
3012
+ Taunton Deane | All other candidates | 214
3013
+
3014
+ Telford | Conservative Party | 16094
3015
+ Telford | Labour Party | 15364
3016
+ Telford | Liberal Democrats | 927
3017
+ Telford | UK Independence Party | 7330
3018
+ Telford | Green Party | 930
3019
+
3020
+ Tewkesbury | Conservative Party | 30176
3021
+ Tewkesbury | Labour Party | 8204
3022
+ Tewkesbury | Liberal Democrats | 7629
3023
+ Tewkesbury | UK Independence Party | 7128
3024
+ Tewkesbury | Green Party | 2207
3025
+
3026
+ Thanet North | Conservative Party | 23045
3027
+ Thanet North | Labour Party | 8411
3028
+ Thanet North | Liberal Democrats | 1645
3029
+ Thanet North | UK Independence Party | 12097
3030
+ Thanet North | Green Party | 1719
3031
+ Thanet North | All other candidates | 136
3032
+
3033
+ Thanet South | Conservative Party | 18838
3034
+ Thanet South | Labour Party | 11740
3035
+ Thanet South | Liberal Democrats | 932
3036
+ Thanet South | UK Independence Party | 16026
3037
+ Thanet South | Green Party | 1076
3038
+ Thanet South | All other candidates | 789
3039
+
3040
+ Thirsk and Malton | Conservative Party | 27545
3041
+ Thirsk and Malton | Labour Party | 8089
3042
+ Thirsk and Malton | Liberal Democrats | 4703
3043
+ Thirsk and Malton | UK Independence Party | 7805
3044
+ Thirsk and Malton | Green Party | 2404
3045
+ Thirsk and Malton | All other candidates | 1819
3046
+
3047
+ Thornbury and Yate | Conservative Party | 19924
3048
+ Thornbury and Yate | Labour Party | 3775
3049
+ Thornbury and Yate | Liberal Democrats | 18429
3050
+ Thornbury and Yate | UK Independence Party | 5126
3051
+ Thornbury and Yate | Green Party | 1316
3052
+
3053
+ Thurrock | Conservative Party | 16692
3054
+ Thurrock | Labour Party | 16156
3055
+ Thurrock | Liberal Democrats | 644
3056
+ Thurrock | UK Independence Party | 15718
3057
+ Thurrock | All other candidates | 354
3058
+
3059
+ Tiverton and Honiton | Conservative Party | 29030
3060
+ Tiverton and Honiton | Labour Party | 6835
3061
+ Tiverton and Honiton | Liberal Democrats | 5626
3062
+ Tiverton and Honiton | UK Independence Party | 8857
3063
+ Tiverton and Honiton | Green Party | 3415
3064
+
3065
+ Tonbridge and Malling | Conservative Party | 31887
3066
+ Tonbridge and Malling | Labour Party | 7604
3067
+ Tonbridge and Malling | Liberal Democrats | 3660
3068
+ Tonbridge and Malling | UK Independence Party | 8153
3069
+ Tonbridge and Malling | Green Party | 2366
3070
+
3071
+ Tooting | Conservative Party | 22421
3072
+ Tooting | Labour Party | 25263
3073
+ Tooting | Liberal Democrats | 2107
3074
+ Tooting | UK Independence Party | 1537
3075
+ Tooting | Green Party | 2201
3076
+
3077
+ Torbay | Conservative Party | 19551
3078
+ Torbay | Labour Party | 4166
3079
+ Torbay | Liberal Democrats | 16265
3080
+ Torbay | UK Independence Party | 6540
3081
+ Torbay | Green Party | 1557
3082
+
3083
+ Totnes | Conservative Party | 24941
3084
+ Totnes | Labour Party | 5988
3085
+ Totnes | Liberal Democrats | 4667
3086
+ Totnes | UK Independence Party | 6656
3087
+ Totnes | Green Party | 4845
3088
+
3089
+ Tottenham | Conservative Party | 5090
3090
+ Tottenham | Labour Party | 28654
3091
+ Tottenham | Liberal Democrats | 1756
3092
+ Tottenham | UK Independence Party | 1512
3093
+ Tottenham | Green Party | 3931
3094
+ Tottenham | Small or local party, or independent candidate | 1324
3095
+ Tottenham | All other candidates | 291
3096
+
3097
+ Truro and Falmouth | Conservative Party | 22681
3098
+ Truro and Falmouth | Labour Party | 7814
3099
+ Truro and Falmouth | Liberal Democrats | 8681
3100
+ Truro and Falmouth | UK Independence Party | 5967
3101
+ Truro and Falmouth | Green Party | 4483
3102
+ Truro and Falmouth | All other candidates | 1918
3103
+
3104
+ Tunbridge Wells | Conservative Party | 30181
3105
+ Tunbridge Wells | Labour Party | 7307
3106
+ Tunbridge Wells | Liberal Democrats | 4342
3107
+ Tunbridge Wells | UK Independence Party | 6481
3108
+ Tunbridge Wells | Green Party | 2659
3109
+ Tunbridge Wells | All other candidates | 458
3110
+
3111
+ Twickenham | Conservative Party | 25580
3112
+ Twickenham | Labour Party | 7129
3113
+ Twickenham | Liberal Democrats | 23563
3114
+ Twickenham | UK Independence Party | 3069
3115
+ Twickenham | Green Party | 2463
3116
+ Twickenham | All other candidates | 200
3117
+
3118
+ Tynemouth | Conservative Party | 17551
3119
+ Tynemouth | Labour Party | 25791
3120
+ Tynemouth | Liberal Democrats | 1595
3121
+ Tynemouth | UK Independence Party | 6541
3122
+ Tynemouth | Green Party | 2017
3123
+
3124
+ Tyneside North | Conservative Party | 8997
3125
+ Tyneside North | Labour Party | 26191
3126
+ Tyneside North | Liberal Democrats | 2075
3127
+ Tyneside North | UK Independence Party | 7618
3128
+ Tyneside North | Green Party | 1442
3129
+ Tyneside North | All other candidates | 495
3130
+
3131
+ Uxbridge and South Ruislip | Conservative Party | 22511
3132
+ Uxbridge and South Ruislip | Labour Party | 11816
3133
+ Uxbridge and South Ruislip | Liberal Democrats | 2215
3134
+ Uxbridge and South Ruislip | UK Independence Party | 6346
3135
+ Uxbridge and South Ruislip | Green Party | 1414
3136
+ Uxbridge and South Ruislip | All other candidates | 509
3137
+
3138
+ Vauxhall | Conservative Party | 13070
3139
+ Vauxhall | Labour Party | 25778
3140
+ Vauxhall | Liberal Democrats | 3312
3141
+ Vauxhall | UK Independence Party | 1385
3142
+ Vauxhall | Green Party | 3658
3143
+ Vauxhall | All other candidates | 738
3144
+
3145
+ Wakefield | Conservative Party | 14688
3146
+ Wakefield | Labour Party | 17301
3147
+ Wakefield | Liberal Democrats | 1483
3148
+ Wakefield | UK Independence Party | 7862
3149
+ Wakefield | Green Party | 1069
3150
+ Wakefield | All other candidates | 570
3151
+
3152
+ Wallasey | Conservative Party | 9828
3153
+ Wallasey | Labour Party | 26176
3154
+ Wallasey | Liberal Democrats | 1011
3155
+ Wallasey | UK Independence Party | 5063
3156
+ Wallasey | Green Party | 1288
3157
+
3158
+ Walsall North | Conservative Party | 12455
3159
+ Walsall North | Labour Party | 14392
3160
+ Walsall North | Liberal Democrats | 840
3161
+ Walsall North | UK Independence Party | 8122
3162
+ Walsall North | Green Party | 529
3163
+ Walsall North | All other candidates | 554
3164
+
3165
+ Walsall South | Conservative Party | 13733
3166
+ Walsall South | Labour Party | 19740
3167
+ Walsall South | Liberal Democrats | 676
3168
+ Walsall South | UK Independence Party | 6540
3169
+ Walsall South | Green Party | 1149
3170
+
3171
+ Walthamstow | Conservative Party | 5584
3172
+ Walthamstow | Labour Party | 28779
3173
+ Walthamstow | Liberal Democrats | 1661
3174
+ Walthamstow | UK Independence Party | 2507
3175
+ Walthamstow | Green Party | 2661
3176
+ Walthamstow | All other candidates | 604
3177
+
3178
+ Wansbeck | Conservative Party | 8386
3179
+ Wansbeck | Labour Party | 19267
3180
+ Wansbeck | Liberal Democrats | 2407
3181
+ Wansbeck | UK Independence Party | 7014
3182
+ Wansbeck | Green Party | 1454
3183
+
3184
+ Wantage | Conservative Party | 31092
3185
+ Wantage | Labour Party | 9343
3186
+ Wantage | Liberal Democrats | 7611
3187
+ Wantage | UK Independence Party | 7288
3188
+ Wantage | Green Party | 2986
3189
+
3190
+ Warley | Conservative Party | 7310
3191
+ Warley | Labour Party | 22012
3192
+ Warley | Liberal Democrats | 805
3193
+ Warley | UK Independence Party | 6237
3194
+ Warley | Green Party | 1465
3195
+
3196
+ Warrington North | Conservative Party | 12797
3197
+ Warrington North | Labour Party | 21720
3198
+ Warrington North | Liberal Democrats | 1881
3199
+ Warrington North | UK Independence Party | 7757
3200
+ Warrington North | Green Party | 1264
3201
+
3202
+ Warrington South | Conservative Party | 25928
3203
+ Warrington South | Labour Party | 23178
3204
+ Warrington South | Liberal Democrats | 3335
3205
+ Warrington South | UK Independence Party | 4909
3206
+ Warrington South | Green Party | 1765
3207
+ Warrington South | All other candidates | 238
3208
+
3209
+ Warwick and Leamington | Conservative Party | 24249
3210
+ Warwick and Leamington | Labour Party | 17643
3211
+ Warwick and Leamington | Liberal Democrats | 2512
3212
+ Warwick and Leamington | UK Independence Party | 4183
3213
+ Warwick and Leamington | Green Party | 1994
3214
+
3215
+ Warwickshire North | Conservative Party | 20042
3216
+ Warwickshire North | Labour Party | 17069
3217
+ Warwickshire North | Liberal Democrats | 978
3218
+ Warwickshire North | UK Independence Party | 8256
3219
+ Warwickshire North | Green Party | 894
3220
+ Warwickshire North | All other candidates | 138
3221
+
3222
+ Washington and Sunderland West | Conservative Party | 7033
3223
+ Washington and Sunderland West | Labour Party | 20478
3224
+ Washington and Sunderland West | Liberal Democrats | 993
3225
+ Washington and Sunderland West | UK Independence Party | 7321
3226
+ Washington and Sunderland West | Green Party | 1091
3227
+ Washington and Sunderland West | All other candidates | 341
3228
+
3229
+ Watford | Conservative Party | 24400
3230
+ Watford | Labour Party | 14606
3231
+ Watford | Liberal Democrats | 10152
3232
+ Watford | UK Independence Party | 5481
3233
+ Watford | Green Party | 1332
3234
+ Watford | All other candidates | 178
3235
+
3236
+ Waveney | Conservative Party | 22104
3237
+ Waveney | Labour Party | 19696
3238
+ Waveney | Liberal Democrats | 1055
3239
+ Waveney | UK Independence Party | 7580
3240
+ Waveney | Green Party | 1761
3241
+
3242
+ Wealden | Conservative Party | 32508
3243
+ Wealden | Labour Party | 6165
3244
+ Wealden | Liberal Democrats | 5180
3245
+ Wealden | UK Independence Party | 9541
3246
+ Wealden | Green Party | 3623
3247
+
3248
+ Weaver Vale | Conservative Party | 20227
3249
+ Weaver Vale | Labour Party | 19421
3250
+ Weaver Vale | Liberal Democrats | 1395
3251
+ Weaver Vale | UK Independence Party | 4547
3252
+ Weaver Vale | Green Party | 1183
3253
+ Weaver Vale | All other candidates | 94
3254
+
3255
+ Wellingborough | Conservative Party | 26265
3256
+ Wellingborough | Labour Party | 9839
3257
+ Wellingborough | Liberal Democrats | 2240
3258
+ Wellingborough | UK Independence Party | 9868
3259
+ Wellingborough | Green Party | 2218
3260
+
3261
+ Wells | Conservative Party | 26247
3262
+ Wells | Labour Party | 3780
3263
+ Wells | Liberal Democrats | 18662
3264
+ Wells | UK Independence Party | 5644
3265
+ Wells | Green Party | 2331
3266
+ Wells | All other candidates | 240
3267
+
3268
+ Welwyn Hatfield | Conservative Party | 25281
3269
+ Welwyn Hatfield | Labour Party | 13128
3270
+ Welwyn Hatfield | Liberal Democrats | 3140
3271
+ Welwyn Hatfield | UK Independence Party | 6556
3272
+ Welwyn Hatfield | Green Party | 1742
3273
+ Welwyn Hatfield | All other candidates | 358
3274
+
3275
+ Wentworth and Dearne | Conservative Party | 6441
3276
+ Wentworth and Dearne | Labour Party | 24571
3277
+ Wentworth and Dearne | Liberal Democrats | 1135
3278
+ Wentworth and Dearne | UK Independence Party | 10733
3279
+ Wentworth and Dearne | All other candidates | 309
3280
+
3281
+ West Bromwich East | Conservative Party | 9347
3282
+ West Bromwich East | Labour Party | 18817
3283
+ West Bromwich East | Liberal Democrats | 751
3284
+ West Bromwich East | UK Independence Party | 7949
3285
+ West Bromwich East | Green Party | 628
3286
+
3287
+ West Bromwich West | Conservative Party | 8365
3288
+ West Bromwich West | Labour Party | 16578
3289
+ West Bromwich West | Liberal Democrats | 550
3290
+ West Bromwich West | UK Independence Party | 8836
3291
+ West Bromwich West | Green Party | 697
3292
+
3293
+ West Ham | Conservative Party | 8146
3294
+ West Ham | Labour Party | 36132
3295
+ West Ham | Liberal Democrats | 1430
3296
+ West Ham | UK Independence Party | 3950
3297
+ West Ham | Green Party | 2651
3298
+ West Ham | All other candidates | 484
3299
+
3300
+ Westminster North | Conservative Party | 16527
3301
+ Westminster North | Labour Party | 18504
3302
+ Westminster North | Liberal Democrats | 1457
3303
+ Westminster North | UK Independence Party | 1489
3304
+ Westminster North | Green Party | 1322
3305
+ Westminster North | All other candidates | 215
3306
+
3307
+ Westmorland and Lonsdale | Conservative Party | 16245
3308
+ Westmorland and Lonsdale | Labour Party | 2661
3309
+ Westmorland and Lonsdale | Liberal Democrats | 25194
3310
+ Westmorland and Lonsdale | UK Independence Party | 3031
3311
+ Westmorland and Lonsdale | Green Party | 1798
3312
+
3313
+ Weston-Super-Mare | Conservative Party | 25203
3314
+ Weston-Super-Mare | Labour Party | 9594
3315
+ Weston-Super-Mare | Liberal Democrats | 5486
3316
+ Weston-Super-Mare | UK Independence Party | 9366
3317
+ Weston-Super-Mare | Green Party | 2592
3318
+ Weston-Super-Mare | All other candidates | 311
3319
+
3320
+ Wigan | Conservative Party | 9389
3321
+ Wigan | Labour Party | 23625
3322
+ Wigan | Liberal Democrats | 1255
3323
+ Wigan | UK Independence Party | 8818
3324
+ Wigan | Green Party | 1273
3325
+ Wigan | All other candidates | 933
3326
+
3327
+ Wiltshire North | Conservative Party | 28938
3328
+ Wiltshire North | Labour Party | 4930
3329
+ Wiltshire North | Liberal Democrats | 7892
3330
+ Wiltshire North | UK Independence Party | 5813
3331
+ Wiltshire North | Green Party | 2350
3332
+ Wiltshire North | All other candidates | 633
3333
+
3334
+ Wiltshire South West | Conservative Party | 27198
3335
+ Wiltshire South West | Labour Party | 6948
3336
+ Wiltshire South West | Liberal Democrats | 5482
3337
+ Wiltshire South West | UK Independence Party | 9030
3338
+ Wiltshire South West | Green Party | 2985
3339
+
3340
+ Wimbledon | Conservative Party | 25225
3341
+ Wimbledon | Labour Party | 12606
3342
+ Wimbledon | Liberal Democrats | 6129
3343
+ Wimbledon | UK Independence Party | 2476
3344
+ Wimbledon | Green Party | 1986
3345
+
3346
+ Winchester | Conservative Party | 30425
3347
+ Winchester | Labour Party | 4613
3348
+ Winchester | Liberal Democrats | 13511
3349
+ Winchester | UK Independence Party | 4122
3350
+ Winchester | Green Party | 2645
3351
+
3352
+ Windsor | Conservative Party | 31797
3353
+ Windsor | Labour Party | 6714
3354
+ Windsor | Liberal Democrats | 4323
3355
+ Windsor | UK Independence Party | 4992
3356
+ Windsor | Green Party | 1834
3357
+ Windsor | All other candidates | 500
3358
+
3359
+ Wirral South | Conservative Party | 15566
3360
+ Wirral South | Labour Party | 20165
3361
+ Wirral South | Liberal Democrats | 1474
3362
+ Wirral South | UK Independence Party | 3737
3363
+ Wirral South | Green Party | 895
3364
+
3365
+ Wirral West | Conservative Party | 18481
3366
+ Wirral West | Labour Party | 18898
3367
+ Wirral West | Liberal Democrats | 1433
3368
+ Wirral West | UK Independence Party | 2772
3369
+ Wirral West | All other candidates | 274
3370
+
3371
+ Witham | Conservative Party | 27123
3372
+ Witham | Labour Party | 7467
3373
+ Witham | Liberal Democrats | 2891
3374
+ Witham | UK Independence Party | 7569
3375
+ Witham | Green Party | 2038
3376
+ Witham | All other candidates | 80
3377
+
3378
+ Witney | Conservative Party | 35201
3379
+ Witney | Labour Party | 10046
3380
+ Witney | Liberal Democrats | 3953
3381
+ Witney | UK Independence Party | 5352
3382
+ Witney | Green Party | 2970
3383
+ Witney | All other candidates | 960
3384
+
3385
+ Woking | Conservative Party | 29199
3386
+ Woking | Labour Party | 8389
3387
+ Woking | Liberal Democrats | 6047
3388
+ Woking | UK Independence Party | 5873
3389
+ Woking | Green Party | 2109
3390
+ Woking | All other candidates | 347
3391
+
3392
+ Wokingham | Conservative Party | 32329
3393
+ Wokingham | Labour Party | 8132
3394
+ Wokingham | Liberal Democrats | 7572
3395
+ Wokingham | UK Independence Party | 5516
3396
+ Wokingham | Green Party | 2092
3397
+ Wokingham | All other candidates | 358
3398
+
3399
+ Wolverhampton North East | Conservative Party | 10174
3400
+ Wolverhampton North East | Labour Party | 15669
3401
+ Wolverhampton North East | Liberal Democrats | 935
3402
+ Wolverhampton North East | UK Independence Party | 6524
3403
+ Wolverhampton North East | Green Party | 701
3404
+
3405
+ Wolverhampton South East | Conservative Party | 7761
3406
+ Wolverhampton South East | Labour Party | 18539
3407
+ Wolverhampton South East | Liberal Democrats | 798
3408
+ Wolverhampton South East | UK Independence Party | 7061
3409
+ Wolverhampton South East | Green Party | 605
3410
+
3411
+ Wolverhampton South West | Conservative Party | 16573
3412
+ Wolverhampton South West | Labour Party | 17374
3413
+ Wolverhampton South West | Liberal Democrats | 845
3414
+ Wolverhampton South West | UK Independence Party | 4310
3415
+ Wolverhampton South West | Green Party | 1058
3416
+ Wolverhampton South West | All other candidates | 49
3417
+
3418
+ Worcester | Conservative Party | 22534
3419
+ Worcester | Labour Party | 16888
3420
+ Worcester | Liberal Democrats | 1677
3421
+ Worcester | UK Independence Party | 6378
3422
+ Worcester | Green Party | 2024
3423
+ Worcester | All other candidates | 222
3424
+
3425
+ Worcestershire Mid | Conservative Party | 29763
3426
+ Worcestershire Mid | Labour Party | 7548
3427
+ Worcestershire Mid | Liberal Democrats | 3750
3428
+ Worcestershire Mid | UK Independence Party | 9231
3429
+ Worcestershire Mid | Green Party | 1933
3430
+
3431
+ Worcestershire West | Conservative Party | 30342
3432
+ Worcestershire West | Labour Party | 7244
3433
+ Worcestershire West | Liberal Democrats | 5245
3434
+ Worcestershire West | UK Independence Party | 7764
3435
+ Worcestershire West | Green Party | 3505
3436
+
3437
+ Workington | Conservative Party | 11596
3438
+ Workington | Labour Party | 16282
3439
+ Workington | Liberal Democrats | 1708
3440
+ Workington | UK Independence Party | 7538
3441
+ Workington | Green Party | 1149
3442
+ Workington | All other candidates | 190
3443
+
3444
+ Worsley and Eccles South | Conservative Party | 12654
3445
+ Worsley and Eccles South | Labour Party | 18600
3446
+ Worsley and Eccles South | Liberal Democrats | 1100
3447
+ Worsley and Eccles South | UK Independence Party | 7688
3448
+ Worsley and Eccles South | Green Party | 1242
3449
+ Worsley and Eccles South | All other candidates | 764
3450
+
3451
+ Worthing East and Shoreham | Conservative Party | 24686
3452
+ Worthing East and Shoreham | Labour Party | 9737
3453
+ Worthing East and Shoreham | Liberal Democrats | 3360
3454
+ Worthing East and Shoreham | UK Independence Party | 8267
3455
+ Worthing East and Shoreham | Green Party | 2605
3456
+ Worthing East and Shoreham | All other candidates | 1243
3457
+
3458
+ Worthing West | Conservative Party | 26124
3459
+ Worthing West | Labour Party | 7955
3460
+ Worthing West | Liberal Democrats | 4477
3461
+ Worthing West | UK Independence Party | 9269
3462
+ Worthing West | Green Party | 2938
3463
+
3464
+ Wrekin, The | Conservative Party | 22579
3465
+ Wrekin, The | Labour Party | 11836
3466
+ Wrekin, The | Liberal Democrats | 1959
3467
+ Wrekin, The | UK Independence Party | 7620
3468
+ Wrekin, The | Green Party | 1443
3469
+
3470
+ Wycombe | Conservative Party | 26444
3471
+ Wycombe | Labour Party | 11588
3472
+ Wycombe | Liberal Democrats | 4546
3473
+ Wycombe | UK Independence Party | 5198
3474
+ Wycombe | Green Party | 3086
3475
+ Wycombe | All other candidates | 577
3476
+
3477
+ Wyre and Preston North | Conservative Party | 26528
3478
+ Wyre and Preston North | Labour Party | 12377
3479
+ Wyre and Preston North | Liberal Democrats | 2712
3480
+ Wyre and Preston North | UK Independence Party | 6577
3481
+ Wyre and Preston North | Green Party | 1699
3482
+
3483
+ Wyre Forest | Conservative Party | 22394
3484
+ Wyre Forest | Labour Party | 9523
3485
+ Wyre Forest | Liberal Democrats | 1228
3486
+ Wyre Forest | UK Independence Party | 7967
3487
+ Wyre Forest | Green Party | 1117
3488
+ Wyre Forest | Small or local party, or independent candidate | 7211
3489
+
3490
+ Wythenshawe and Sale East | Conservative Party | 11124
3491
+ Wythenshawe and Sale East | Labour Party | 21693
3492
+ Wythenshawe and Sale East | Liberal Democrats | 1927
3493
+ Wythenshawe and Sale East | UK Independence Party | 6354
3494
+ Wythenshawe and Sale East | Green Party | 1658
3495
+ Wythenshawe and Sale East | All other candidates | 507
3496
+
3497
+ Yeovil | Conservative Party | 24178
3498
+ Yeovil | Labour Party | 4053
3499
+ Yeovil | Liberal Democrats | 18865
3500
+ Yeovil | UK Independence Party | 7646
3501
+ Yeovil | Green Party | 2191
3502
+
3503
+ York Central | Conservative Party | 13496
3504
+ York Central | Labour Party | 20212
3505
+ York Central | Liberal Democrats | 3804
3506
+ York Central | UK Independence Party | 4795
3507
+ York Central | Green Party | 4791
3508
+ York Central | All other candidates | 579
3509
+
3510
+ York Outer | Conservative Party | 26477
3511
+ York Outer | Labour Party | 13348
3512
+ York Outer | Liberal Democrats | 6269
3513
+ York Outer | UK Independence Party | 5251
3514
+ York Outer | Green Party | 2558
3515
+
3516
+ Yorkshire East | Conservative Party | 25276
3517
+ Yorkshire East | Labour Party | 10343
3518
+ Yorkshire East | Liberal Democrats | 2966
3519
+ Yorkshire East | UK Independence Party | 8955
3520
+ Yorkshire East | Green Party | 1731
3521
+ Yorkshire East | All other candidates | 720
3522
+
3523
+ Aberavon | Conservative Party | 3742
3524
+ Aberavon | Labour Party | 15416
3525
+ Aberavon | Liberal Democrats | 1397
3526
+ Aberavon | UK Independence Party | 4971
3527
+ Aberavon | Green Party | 711
3528
+ Aberavon | Plaid Cymru | 3663
3529
+ Aberavon | Small or local party, or independent candidate | 1137
3530
+ Aberavon | All other candidates | 486
3531
+
3532
+ Aberconwy | Conservative Party | 12513
3533
+ Aberconwy | Labour Party | 8514
3534
+ Aberconwy | Liberal Democrats | 1391
3535
+ Aberconwy | UK Independence Party | 3467
3536
+ Aberconwy | Green Party | 727
3537
+ Aberconwy | Plaid Cymru | 3536
3538
+
3539
+ Alyn and Deeside | Conservative Party | 13197
3540
+ Alyn and Deeside | Labour Party | 16540
3541
+ Alyn and Deeside | Liberal Democrats | 1733
3542
+ Alyn and Deeside | UK Independence Party | 7260
3543
+ Alyn and Deeside | Green Party | 976
3544
+ Alyn and Deeside | Plaid Cymru | 1608
3545
+
3546
+ Arfon | Conservative Party | 3521
3547
+ Arfon | Labour Party | 8122
3548
+ Arfon | Liberal Democrats | 718
3549
+ Arfon | UK Independence Party | 2277
3550
+ Arfon | Plaid Cymru | 11790
3551
+ Arfon | All other candidates | 409
3552
+
3553
+ Blaenau Gwent | Conservative Party | 3419
3554
+ Blaenau Gwent | Labour Party | 18380
3555
+ Blaenau Gwent | Liberal Democrats | 620
3556
+ Blaenau Gwent | UK Independence Party | 5677
3557
+ Blaenau Gwent | Green Party | 738
3558
+ Blaenau Gwent | Plaid Cymru | 2849
3559
+
3560
+ Brecon and Radnorshire | Conservative Party | 16453
3561
+ Brecon and Radnorshire | Labour Party | 5904
3562
+ Brecon and Radnorshire | Liberal Democrats | 11351
3563
+ Brecon and Radnorshire | UK Independence Party | 3338
3564
+ Brecon and Radnorshire | Green Party | 1261
3565
+ Brecon and Radnorshire | Plaid Cymru | 1767
3566
+
3567
+ Bridgend | Conservative Party | 12697
3568
+ Bridgend | Labour Party | 14624
3569
+ Bridgend | Liberal Democrats | 1648
3570
+ Bridgend | UK Independence Party | 5911
3571
+ Bridgend | Green Party | 736
3572
+ Bridgend | Plaid Cymru | 2784
3573
+ Bridgend | Small or local party, or independent candidate | 763
3574
+ Bridgend | All other candidates | 290
3575
+
3576
+ Caerphilly | Conservative Party | 6683
3577
+ Caerphilly | Labour Party | 17864
3578
+ Caerphilly | Liberal Democrats | 935
3579
+ Caerphilly | UK Independence Party | 7791
3580
+ Caerphilly | Green Party | 937
3581
+ Caerphilly | Plaid Cymru | 5895
3582
+ Caerphilly | All other candidates | 178
3583
+
3584
+ Cardiff Central | Conservative Party | 5674
3585
+ Cardiff Central | Labour Party | 15462
3586
+ Cardiff Central | Liberal Democrats | 10481
3587
+ Cardiff Central | UK Independence Party | 2499
3588
+ Cardiff Central | Green Party | 2461
3589
+ Cardiff Central | Plaid Cymru | 1925
3590
+ Cardiff Central | All other candidates | 144
3591
+
3592
+ Cardiff North | Conservative Party | 21709
3593
+ Cardiff North | Labour Party | 19572
3594
+ Cardiff North | Liberal Democrats | 1953
3595
+ Cardiff North | UK Independence Party | 3953
3596
+ Cardiff North | Green Party | 1254
3597
+ Cardiff North | Plaid Cymru | 2301
3598
+ Cardiff North | All other candidates | 409
3599
+
3600
+ Cardiff South and Penarth | Conservative Party | 12513
3601
+ Cardiff South and Penarth | Labour Party | 19966
3602
+ Cardiff South and Penarth | Liberal Democrats | 2318
3603
+ Cardiff South and Penarth | UK Independence Party | 6423
3604
+ Cardiff South and Penarth | Green Party | 1746
3605
+ Cardiff South and Penarth | Plaid Cymru | 3443
3606
+ Cardiff South and Penarth | All other candidates | 258
3607
+
3608
+ Cardiff West | Conservative Party | 11014
3609
+ Cardiff West | Labour Party | 17803
3610
+ Cardiff West | Liberal Democrats | 2069
3611
+ Cardiff West | UK Independence Party | 4923
3612
+ Cardiff West | Green Party | 1704
3613
+ Cardiff West | Plaid Cymru | 6096
3614
+ Cardiff West | All other candidates | 183
3615
+
3616
+ Carmarthen East and Dinefwr | Conservative Party | 8336
3617
+ Carmarthen East and Dinefwr | Labour Party | 9541
3618
+ Carmarthen East and Dinefwr | Liberal Democrats | 928
3619
+ Carmarthen East and Dinefwr | UK Independence Party | 4363
3620
+ Carmarthen East and Dinefwr | Green Party | 1091
3621
+ Carmarthen East and Dinefwr | Plaid Cymru | 15140
3622
+
3623
+ Carmarthen West and Pembrokeshire South | Conservative Party | 17626
3624
+ Carmarthen West and Pembrokeshire South | Labour Party | 11572
3625
+ Carmarthen West and Pembrokeshire South | Liberal Democrats | 963
3626
+ Carmarthen West and Pembrokeshire South | UK Independence Party | 4698
3627
+ Carmarthen West and Pembrokeshire South | Green Party | 1290
3628
+ Carmarthen West and Pembrokeshire South | Plaid Cymru | 4201
3629
+
3630
+ Ceredigion | Conservative Party | 4123
3631
+ Ceredigion | Labour Party | 3615
3632
+ Ceredigion | Liberal Democrats | 13414
3633
+ Ceredigion | UK Independence Party | 3829
3634
+ Ceredigion | Green Party | 2088
3635
+ Ceredigion | Plaid Cymru | 10347
3636
+
3637
+ Clwyd South | Conservative Party | 10649
3638
+ Clwyd South | Labour Party | 13051
3639
+ Clwyd South | Liberal Democrats | 1349
3640
+ Clwyd South | UK Independence Party | 5480
3641
+ Clwyd South | Green Party | 915
3642
+ Clwyd South | Plaid Cymru | 3620
3643
+
3644
+ Clwyd West | Conservative Party | 16463
3645
+ Clwyd West | Labour Party | 9733
3646
+ Clwyd West | Liberal Democrats | 1387
3647
+ Clwyd West | UK Independence Party | 4988
3648
+ Clwyd West | Plaid Cymru | 4651
3649
+ Clwyd West | All other candidates | 806
3650
+
3651
+ Cynon Valley | Conservative Party | 3676
3652
+ Cynon Valley | Labour Party | 14532
3653
+ Cynon Valley | Liberal Democrats | 830
3654
+ Cynon Valley | UK Independence Party | 4976
3655
+ Cynon Valley | Green Party | 799
3656
+ Cynon Valley | Plaid Cymru | 5126
3657
+ Cynon Valley | All other candidates | 533
3658
+
3659
+ Delyn | Conservative Party | 12257
3660
+ Delyn | Labour Party | 15187
3661
+ Delyn | Liberal Democrats | 1380
3662
+ Delyn | UK Independence Party | 6150
3663
+ Delyn | Green Party | 680
3664
+ Delyn | Plaid Cymru | 1803
3665
+
3666
+ Dwyfor Meirionnydd | Conservative Party | 6550
3667
+ Dwyfor Meirionnydd | Labour Party | 3904
3668
+ Dwyfor Meirionnydd | Liberal Democrats | 1153
3669
+ Dwyfor Meirionnydd | UK Independence Party | 3126
3670
+ Dwyfor Meirionnydd | Green Party | 981
3671
+ Dwyfor Meirionnydd | Plaid Cymru | 11811
3672
+ Dwyfor Meirionnydd | Small or local party, or independent candidate | 1388
3673
+
3674
+ Gower | Conservative Party | 15862
3675
+ Gower | Labour Party | 15835
3676
+ Gower | Liberal Democrats | 1552
3677
+ Gower | UK Independence Party | 4773
3678
+ Gower | Green Party | 1161
3679
+ Gower | Plaid Cymru | 3051
3680
+ Gower | All other candidates | 524
3681
+
3682
+ Islwyn | Conservative Party | 5366
3683
+ Islwyn | Labour Party | 17336
3684
+ Islwyn | Liberal Democrats | 950
3685
+ Islwyn | UK Independence Party | 6932
3686
+ Islwyn | Green Party | 659
3687
+ Islwyn | Plaid Cymru | 3794
3688
+ Islwyn | All other candidates | 364
3689
+
3690
+ Llanelli | Conservative Party | 5534
3691
+ Llanelli | Labour Party | 15948
3692
+ Llanelli | Liberal Democrats | 751
3693
+ Llanelli | UK Independence Party | 6269
3694
+ Llanelli | Green Party | 689
3695
+ Llanelli | Plaid Cymru | 8853
3696
+ Llanelli | All other candidates | 530
3697
+
3698
+ Merthyr Tydfil and Rhymney | Conservative Party | 3292
3699
+ Merthyr Tydfil and Rhymney | Labour Party | 17619
3700
+ Merthyr Tydfil and Rhymney | Liberal Democrats | 1351
3701
+ Merthyr Tydfil and Rhymney | UK Independence Party | 6106
3702
+ Merthyr Tydfil and Rhymney | Green Party | 603
3703
+ Merthyr Tydfil and Rhymney | Plaid Cymru | 3099
3704
+ Merthyr Tydfil and Rhymney | Small or local party, or independent candidate | 459
3705
+ Merthyr Tydfil and Rhymney | All other candidates | 186
3706
+
3707
+ Monmouth | Conservative Party | 23701
3708
+ Monmouth | Labour Party | 12719
3709
+ Monmouth | Liberal Democrats | 2496
3710
+ Monmouth | UK Independence Party | 4942
3711
+ Monmouth | Green Party | 1629
3712
+ Monmouth | Plaid Cymru | 1875
3713
+ Monmouth | All other candidates | 100
3714
+
3715
+ Montgomeryshire | Conservative Party | 15204
3716
+ Montgomeryshire | Labour Party | 1900
3717
+ Montgomeryshire | Liberal Democrats | 9879
3718
+ Montgomeryshire | UK Independence Party | 3769
3719
+ Montgomeryshire | Green Party | 1260
3720
+ Montgomeryshire | Plaid Cymru | 1745
3721
+
3722
+ Neath | Conservative Party | 5691
3723
+ Neath | Labour Party | 16270
3724
+ Neath | Liberal Democrats | 1173
3725
+ Neath | UK Independence Party | 6094
3726
+ Neath | Green Party | 1185
3727
+ Neath | Plaid Cymru | 6722
3728
+
3729
+ Newport East | Conservative Party | 9585
3730
+ Newport East | Labour Party | 14290
3731
+ Newport East | Liberal Democrats | 2251
3732
+ Newport East | UK Independence Party | 6466
3733
+ Newport East | Green Party | 887
3734
+ Newport East | Plaid Cymru | 1231
3735
+ Newport East | All other candidates | 398
3736
+
3737
+ Newport West | Conservative Party | 13123
3738
+ Newport West | Labour Party | 16633
3739
+ Newport West | Liberal Democrats | 1581
3740
+ Newport West | UK Independence Party | 6134
3741
+ Newport West | Green Party | 1272
3742
+ Newport West | Plaid Cymru | 1604
3743
+
3744
+ Ogmore | Conservative Party | 5620
3745
+ Ogmore | Labour Party | 18663
3746
+ Ogmore | Liberal Democrats | 1072
3747
+ Ogmore | UK Independence Party | 5420
3748
+ Ogmore | Green Party | 754
3749
+ Ogmore | Plaid Cymru | 3556
3750
+ Ogmore | All other candidates | 165
3751
+
3752
+ Pontypridd | Conservative Party | 6569
3753
+ Pontypridd | Labour Party | 15554
3754
+ Pontypridd | Liberal Democrats | 4904
3755
+ Pontypridd | UK Independence Party | 5085
3756
+ Pontypridd | Green Party | 992
3757
+ Pontypridd | Plaid Cymru | 4348
3758
+ Pontypridd | All other candidates | 430
3759
+
3760
+ Preseli Pembrokeshire | Conservative Party | 16383
3761
+ Preseli Pembrokeshire | Labour Party | 11414
3762
+ Preseli Pembrokeshire | Liberal Democrats | 780
3763
+ Preseli Pembrokeshire | UK Independence Party | 4257
3764
+ Preseli Pembrokeshire | Green Party | 1452
3765
+ Preseli Pembrokeshire | Plaid Cymru | 2518
3766
+ Preseli Pembrokeshire | Small or local party, or independent candidate | 3729
3767
+ Preseli Pembrokeshire | All other candidates | 23
3768
+
3769
+ Rhondda | Conservative Party | 2116
3770
+ Rhondda | Labour Party | 15976
3771
+ Rhondda | Liberal Democrats | 474
3772
+ Rhondda | UK Independence Party | 3998
3773
+ Rhondda | Green Party | 453
3774
+ Rhondda | Plaid Cymru | 8521
3775
+
3776
+ Swansea East | Conservative Party | 5142
3777
+ Swansea East | Labour Party | 17807
3778
+ Swansea East | Liberal Democrats | 1392
3779
+ Swansea East | UK Independence Party | 5779
3780
+ Swansea East | Plaid Cymru | 3498
3781
+
3782
+ Swansea West | Conservative Party | 7931
3783
+ Swansea West | Labour Party | 14967
3784
+ Swansea West | Liberal Democrats | 3178
3785
+ Swansea West | UK Independence Party | 4744
3786
+ Swansea West | Green Party | 1784
3787
+ Swansea West | Plaid Cymru | 2266
3788
+ Swansea West | All other candidates | 286
3789
+
3790
+ Torfaen | Conservative Party | 8769
3791
+ Torfaen | Labour Party | 16938
3792
+ Torfaen | Liberal Democrats | 1271
3793
+ Torfaen | UK Independence Party | 7203
3794
+ Torfaen | Green Party | 746
3795
+ Torfaen | Plaid Cymru | 2169
3796
+ Torfaen | Small or local party, or independent candidate | 697
3797
+ Torfaen | All other candidates | 144
3798
+
3799
+ Vale of Clwyd | Conservative Party | 13760
3800
+ Vale of Clwyd | Labour Party | 13523
3801
+ Vale of Clwyd | Liberal Democrats | 915
3802
+ Vale of Clwyd | UK Independence Party | 4577
3803
+ Vale of Clwyd | Plaid Cymru | 2486
3804
+
3805
+ Vale of Glamorgan | Conservative Party | 23607
3806
+ Vale of Glamorgan | Labour Party | 16727
3807
+ Vale of Glamorgan | Liberal Democrats | 1309
3808
+ Vale of Glamorgan | UK Independence Party | 5489
3809
+ Vale of Glamorgan | Green Party | 1054
3810
+ Vale of Glamorgan | Plaid Cymru | 2869
3811
+ Vale of Glamorgan | All other candidates | 238
3812
+
3813
+ Wrexham | Conservative Party | 10350
3814
+ Wrexham | Labour Party | 12181
3815
+ Wrexham | Liberal Democrats | 1735
3816
+ Wrexham | UK Independence Party | 5072
3817
+ Wrexham | Green Party | 669
3818
+ Wrexham | Plaid Cymru | 2501
3819
+ Wrexham | All other candidates | 211
3820
+
3821
+ Ynys Mon | Conservative Party | 7393
3822
+ Ynys Mon | Labour Party | 10871
3823
+ Ynys Mon | Liberal Democrats | 751
3824
+ Ynys Mon | UK Independence Party | 5121
3825
+ Ynys Mon | Plaid Cymru | 10642
3826
+ Ynys Mon | All other candidates | 148
3827
+
3828
+ Aberdeen North | Conservative Party | 5304
3829
+ Aberdeen North | Labour Party | 11397
3830
+ Aberdeen North | Liberal Democrats | 2050
3831
+ Aberdeen North | Scottish National Party | 24793
3832
+ Aberdeen North | All other candidates | 392
3833
+
3834
+ Aberdeen South | Conservative Party | 11087
3835
+ Aberdeen South | Labour Party | 12991
3836
+ Aberdeen South | Liberal Democrats | 2252
3837
+ Aberdeen South | UK Independence Party | 897
3838
+ Aberdeen South | Green Party | 964
3839
+ Aberdeen South | Scottish National Party | 20221
3840
+ Aberdeen South | All other candidates | 139
3841
+
3842
+ Aberdeenshire West and Kincardine | Conservative Party | 15916
3843
+ Aberdeenshire West and Kincardine | Labour Party | 2487
3844
+ Aberdeenshire West and Kincardine | Liberal Democrats | 11812
3845
+ Aberdeenshire West and Kincardine | UK Independence Party | 1006
3846
+ Aberdeenshire West and Kincardine | Green Party | 885
3847
+ Aberdeenshire West and Kincardine | Scottish National Party | 22949
3848
+ Aberdeenshire West and Kincardine | All other candidates | 141
3849
+
3850
+ Airdrie and Shotts | Conservative Party | 3389
3851
+ Airdrie and Shotts | Labour Party | 15108
3852
+ Airdrie and Shotts | Liberal Democrats | 678
3853
+ Airdrie and Shotts | UK Independence Party | 1088
3854
+ Airdrie and Shotts | Scottish National Party | 23887
3855
+ Airdrie and Shotts | All other candidates | 136
3856
+
3857
+ Angus | Conservative Party | 12900
3858
+ Angus | Labour Party | 3919
3859
+ Angus | Liberal Democrats | 1216
3860
+ Angus | UK Independence Party | 1355
3861
+ Angus | Green Party | 965
3862
+ Angus | Scottish National Party | 24130
3863
+
3864
+ Argyll and Bute | Conservative Party | 7733
3865
+ Argyll and Bute | Labour Party | 5394
3866
+ Argyll and Bute | Liberal Democrats | 14486
3867
+ Argyll and Bute | UK Independence Party | 1311
3868
+ Argyll and Bute | Scottish National Party | 22959
3869
+
3870
+ Ayr Carrick and Cumnock | Conservative Party | 10355
3871
+ Ayr Carrick and Cumnock | Labour Party | 14227
3872
+ Ayr Carrick and Cumnock | Liberal Democrats | 855
3873
+ Ayr Carrick and Cumnock | UK Independence Party | 1280
3874
+ Ayr Carrick and Cumnock | Scottish National Party | 25492
3875
+
3876
+ Ayrshire Central | Conservative Party | 8803
3877
+ Ayrshire Central | Labour Party | 13410
3878
+ Ayrshire Central | Liberal Democrats | 917
3879
+ Ayrshire Central | Green Party | 645
3880
+ Ayrshire Central | Scottish National Party | 26999
3881
+
3882
+ Ayrshire North and Arran | Conservative Party | 7968
3883
+ Ayrshire North and Arran | Labour Party | 15068
3884
+ Ayrshire North and Arran | Liberal Democrats | 896
3885
+ Ayrshire North and Arran | UK Independence Party | 1296
3886
+ Ayrshire North and Arran | Scottish National Party | 28641
3887
+
3888
+ Banff and Buchan | Conservative Party | 13148
3889
+ Banff and Buchan | Labour Party | 2647
3890
+ Banff and Buchan | Liberal Democrats | 2347
3891
+ Banff and Buchan | Scottish National Party | 27487
3892
+
3893
+ Berwickshire, Roxburgh and Selkirk | Conservative Party | 19817
3894
+ Berwickshire, Roxburgh and Selkirk | Labour Party | 2700
3895
+ Berwickshire, Roxburgh and Selkirk | Liberal Democrats | 10294
3896
+ Berwickshire, Roxburgh and Selkirk | UK Independence Party | 1316
3897
+ Berwickshire, Roxburgh and Selkirk | Green Party | 631
3898
+ Berwickshire, Roxburgh and Selkirk | Scottish National Party | 20145
3899
+ Berwickshire, Roxburgh and Selkirk | All other candidates | 135
3900
+
3901
+ Caithness Sutherland and Easter Ross | Conservative Party | 2326
3902
+ Caithness Sutherland and Easter Ross | Labour Party | 3061
3903
+ Caithness Sutherland and Easter Ross | Liberal Democrats | 11987
3904
+ Caithness Sutherland and Easter Ross | UK Independence Party | 981
3905
+ Caithness Sutherland and Easter Ross | Scottish National Party | 15831
3906
+
3907
+ Coatbridge, Chryston and Bellshill | Conservative Party | 3209
3908
+ Coatbridge, Chryston and Bellshill | Labour Party | 17195
3909
+ Coatbridge, Chryston and Bellshill | Liberal Democrats | 549
3910
+ Coatbridge, Chryston and Bellshill | UK Independence Party | 1049
3911
+ Coatbridge, Chryston and Bellshill | Scottish National Party | 28696
3912
+
3913
+ Cumbernauld, Kilsyth and Kirkintilloch East | Conservative Party | 3891
3914
+ Cumbernauld, Kilsyth and Kirkintilloch East | Labour Party | 14820
3915
+ Cumbernauld, Kilsyth and Kirkintilloch East | Liberal Democrats | 1099
3916
+ Cumbernauld, Kilsyth and Kirkintilloch East | Scottish National Party | 29572
3917
+
3918
+ Dumfries and Galloway | Conservative Party | 16926
3919
+ Dumfries and Galloway | Labour Party | 13982
3920
+ Dumfries and Galloway | Liberal Democrats | 953
3921
+ Dumfries and Galloway | UK Independence Party | 1301
3922
+ Dumfries and Galloway | Scottish National Party | 23440
3923
+
3924
+ Dumfriesshire, Clydesdale and Tweeddale | Conservative Party | 20759
3925
+ Dumfriesshire, Clydesdale and Tweeddale | Labour Party | 7711
3926
+ Dumfriesshire, Clydesdale and Tweeddale | Liberal Democrats | 1392
3927
+ Dumfriesshire, Clydesdale and Tweeddale | UK Independence Party | 1472
3928
+ Dumfriesshire, Clydesdale and Tweeddale | Green Party | 839
3929
+ Dumfriesshire, Clydesdale and Tweeddale | Scottish National Party | 19961
3930
+
3931
+ Dunbartonshire East | Conservative Party | 4727
3932
+ Dunbartonshire East | Labour Party | 6754
3933
+ Dunbartonshire East | Liberal Democrats | 19926
3934
+ Dunbartonshire East | UK Independence Party | 567
3935
+ Dunbartonshire East | Green Party | 804
3936
+ Dunbartonshire East | Scottish National Party | 22093
3937
+
3938
+ Dunbartonshire West | Conservative Party | 3597
3939
+ Dunbartonshire West | Labour Party | 16027
3940
+ Dunbartonshire West | Liberal Democrats | 816
3941
+ Dunbartonshire West | Scottish National Party | 30198
3942
+ Dunbartonshire West | All other candidates | 503
3943
+
3944
+ Dundee East | Conservative Party | 7206
3945
+ Dundee East | Labour Party | 9603
3946
+ Dundee East | Liberal Democrats | 1387
3947
+ Dundee East | Green Party | 895
3948
+ Dundee East | Scottish National Party | 28765
3949
+ Dundee East | All other candidates | 329
3950
+
3951
+ Dundee West | Conservative Party | 3852
3952
+ Dundee West | Labour Party | 10592
3953
+ Dundee West | Liberal Democrats | 1057
3954
+ Dundee West | Green Party | 1225
3955
+ Dundee West | Scottish National Party | 27684
3956
+ Dundee West | All other candidates | 304
3957
+
3958
+ Dunfermline and West Fife | Conservative Party | 6623
3959
+ Dunfermline and West Fife | Labour Party | 17744
3960
+ Dunfermline and West Fife | Liberal Democrats | 2232
3961
+ Dunfermline and West Fife | Green Party | 1195
3962
+ Dunfermline and West Fife | Scottish National Party | 28096
3963
+
3964
+ East Kilbride, Strathaven and Lesmahagow | Conservative Party | 7129
3965
+ East Kilbride, Strathaven and Lesmahagow | Labour Party | 17151
3966
+ East Kilbride, Strathaven and Lesmahagow | Liberal Democrats | 1042
3967
+ East Kilbride, Strathaven and Lesmahagow | UK Independence Party | 1221
3968
+ East Kilbride, Strathaven and Lesmahagow | Scottish National Party | 33678
3969
+ East Kilbride, Strathaven and Lesmahagow | All other candidates | 318
3970
+
3971
+ East Lothian | Conservative Party | 11511
3972
+ East Lothian | Labour Party | 18301
3973
+ East Lothian | Liberal Democrats | 1517
3974
+ East Lothian | UK Independence Party | 1178
3975
+ East Lothian | Green Party | 1245
3976
+ East Lothian | Scottish National Party | 25104
3977
+ East Lothian | All other candidates | 158
3978
+
3979
+ Edinburgh East | Conservative Party | 4670
3980
+ Edinburgh East | Labour Party | 14082
3981
+ Edinburgh East | Liberal Democrats | 1325
3982
+ Edinburgh East | UK Independence Party | 898
3983
+ Edinburgh East | Green Party | 2809
3984
+ Edinburgh East | Scottish National Party | 23188
3985
+ Edinburgh East | All other candidates | 117
3986
+
3987
+ Edinburgh North and Leith | Conservative Party | 9378
3988
+ Edinburgh North and Leith | Labour Party | 18145
3989
+ Edinburgh North and Leith | Liberal Democrats | 2634
3990
+ Edinburgh North and Leith | UK Independence Party | 847
3991
+ Edinburgh North and Leith | Green Party | 3140
3992
+ Edinburgh North and Leith | Scottish National Party | 23742
3993
+ Edinburgh North and Leith | All other candidates | 122
3994
+
3995
+ Edinburgh South | Conservative Party | 8626
3996
+ Edinburgh South | Labour Party | 19293
3997
+ Edinburgh South | Liberal Democrats | 1823
3998
+ Edinburgh South | UK Independence Party | 601
3999
+ Edinburgh South | Green Party | 2090
4000
+ Edinburgh South | Scottish National Party | 16656
4001
+ Edinburgh South | All other candidates | 197
4002
+
4003
+ Edinburgh South West | Conservative Party | 10444
4004
+ Edinburgh South West | Labour Party | 14033
4005
+ Edinburgh South West | Liberal Democrats | 1920
4006
+ Edinburgh South West | UK Independence Party | 1072
4007
+ Edinburgh South West | Green Party | 1965
4008
+ Edinburgh South West | Scottish National Party | 22168
4009
+
4010
+ Edinburgh West | Conservative Party | 6732
4011
+ Edinburgh West | Labour Party | 6425
4012
+ Edinburgh West | Liberal Democrats | 18168
4013
+ Edinburgh West | UK Independence Party | 1015
4014
+ Edinburgh West | Green Party | 1140
4015
+ Edinburgh West | Scottish National Party | 21378
4016
+
4017
+ Falkirk | Conservative Party | 7325
4018
+ Falkirk | Labour Party | 15130
4019
+ Falkirk | Liberal Democrats | 1225
4020
+ Falkirk | UK Independence Party | 1829
4021
+ Falkirk | Scottish National Party | 34831
4022
+
4023
+ Fife North East | Conservative Party | 7373
4024
+ Fife North East | Labour Party | 3476
4025
+ Fife North East | Liberal Democrats | 14179
4026
+ Fife North East | Green Party | 1387
4027
+ Fife North East | Scottish National Party | 18523
4028
+ Fife North East | All other candidates | 325
4029
+
4030
+ Glasgow Central | Conservative Party | 2359
4031
+ Glasgow Central | Labour Party | 12996
4032
+ Glasgow Central | Liberal Democrats | 612
4033
+ Glasgow Central | UK Independence Party | 786
4034
+ Glasgow Central | Green Party | 1559
4035
+ Glasgow Central | Scottish National Party | 20658
4036
+ Glasgow Central | All other candidates | 348
4037
+
4038
+ Glasgow East | Conservative Party | 2544
4039
+ Glasgow East | Labour Party | 13729
4040
+ Glasgow East | Liberal Democrats | 318
4041
+ Glasgow East | UK Independence Party | 1105
4042
+ Glasgow East | Green Party | 381
4043
+ Glasgow East | Scottish National Party | 24116
4044
+ Glasgow East | All other candidates | 224
4045
+
4046
+ Glasgow North | Conservative Party | 2901
4047
+ Glasgow North | Labour Party | 10315
4048
+ Glasgow North | Liberal Democrats | 1012
4049
+ Glasgow North | UK Independence Party | 486
4050
+ Glasgow North | Green Party | 2284
4051
+ Glasgow North | Scottish National Party | 19610
4052
+ Glasgow North | All other candidates | 314
4053
+
4054
+ Glasgow North East | Conservative Party | 1769
4055
+ Glasgow North East | Labour Party | 12754
4056
+ Glasgow North East | Liberal Democrats | 300
4057
+ Glasgow North East | Green Party | 615
4058
+ Glasgow North East | Scottish National Party | 21976
4059
+ Glasgow North East | Small or local party, or independent candidate | 225
4060
+ Glasgow North East | All other candidates | 218
4061
+
4062
+ Glasgow North West | Conservative Party | 3692
4063
+ Glasgow North West | Labour Party | 13544
4064
+ Glasgow North West | Liberal Democrats | 1194
4065
+ Glasgow North West | Green Party | 1167
4066
+ Glasgow North West | Scottish National Party | 23908
4067
+ Glasgow North West | All other candidates | 349
4068
+
4069
+ Glasgow South | Conservative Party | 4752
4070
+ Glasgow South | Labour Party | 14504
4071
+ Glasgow South | Liberal Democrats | 1019
4072
+ Glasgow South | Green Party | 1431
4073
+ Glasgow South | Scottish National Party | 26773
4074
+ Glasgow South | All other candidates | 299
4075
+
4076
+ Glasgow South West | Conservative Party | 2036
4077
+ Glasgow South West | Labour Party | 13438
4078
+ Glasgow South West | Liberal Democrats | 406
4079
+ Glasgow South West | UK Independence Party | 970
4080
+ Glasgow South West | Green Party | 507
4081
+ Glasgow South West | Scottish National Party | 23388
4082
+ Glasgow South West | All other candidates | 176
4083
+
4084
+ Glenrothes | Conservative Party | 3685
4085
+ Glenrothes | Labour Party | 14562
4086
+ Glenrothes | Liberal Democrats | 892
4087
+ Glenrothes | Scottish National Party | 28459
4088
+
4089
+ Gordon | Conservative Party | 6807
4090
+ Gordon | Labour Party | 3441
4091
+ Gordon | Liberal Democrats | 19030
4092
+ Gordon | UK Independence Party | 1166
4093
+ Gordon | Scottish National Party | 27717
4094
+
4095
+ Inverclyde | Conservative Party | 4446
4096
+ Inverclyde | Labour Party | 13522
4097
+ Inverclyde | Liberal Democrats | 1106
4098
+ Inverclyde | UK Independence Party | 715
4099
+ Inverclyde | Scottish National Party | 24585
4100
+ Inverclyde | All other candidates | 233
4101
+
4102
+ Inverness Nairn Badenoch and Strathspey | Conservative Party | 3410
4103
+ Inverness Nairn Badenoch and Strathspey | Labour Party | 4311
4104
+ Inverness Nairn Badenoch and Strathspey | Liberal Democrats | 18029
4105
+ Inverness Nairn Badenoch and Strathspey | UK Independence Party | 1236
4106
+ Inverness Nairn Badenoch and Strathspey | Green Party | 1367
4107
+ Inverness Nairn Badenoch and Strathspey | Scottish National Party | 28838
4108
+ Inverness Nairn Badenoch and Strathspey | All other candidates | 422
4109
+
4110
+ Kilmarnock and Loudoun | Conservative Party | 6752
4111
+ Kilmarnock and Loudoun | Labour Party | 16362
4112
+ Kilmarnock and Loudoun | Liberal Democrats | 789
4113
+ Kilmarnock and Loudoun | Scottish National Party | 30000
4114
+
4115
+ Kirkcaldy and Cowdenbeath | Conservative Party | 5223
4116
+ Kirkcaldy and Cowdenbeath | Labour Party | 17654
4117
+ Kirkcaldy and Cowdenbeath | Liberal Democrats | 1150
4118
+ Kirkcaldy and Cowdenbeath | UK Independence Party | 1237
4119
+ Kirkcaldy and Cowdenbeath | Scottish National Party | 27628
4120
+
4121
+ Lanark and Hamilton East | Conservative Party | 8772
4122
+ Lanark and Hamilton East | Labour Party | 16876
4123
+ Lanark and Hamilton East | Liberal Democrats | 1203
4124
+ Lanark and Hamilton East | UK Independence Party | 1431
4125
+ Lanark and Hamilton East | Scottish National Party | 26976
4126
+
4127
+ Linlithgow and East Falkirk | Conservative Party | 7384
4128
+ Linlithgow and East Falkirk | Labour Party | 19121
4129
+ Linlithgow and East Falkirk | Liberal Democrats | 1252
4130
+ Linlithgow and East Falkirk | UK Independence Party | 1682
4131
+ Linlithgow and East Falkirk | Scottish National Party | 32055
4132
+ Linlithgow and East Falkirk | All other candidates | 103
4133
+
4134
+ Livingston | Conservative Party | 5929
4135
+ Livingston | Labour Party | 15893
4136
+ Livingston | Liberal Democrats | 1232
4137
+ Livingston | UK Independence Party | 1757
4138
+ Livingston | Scottish National Party | 32736
4139
+
4140
+ Midlothian | Conservative Party | 5760
4141
+ Midlothian | Labour Party | 14594
4142
+ Midlothian | Liberal Democrats | 1132
4143
+ Midlothian | UK Independence Party | 1173
4144
+ Midlothian | Green Party | 1219
4145
+ Midlothian | Scottish National Party | 24453
4146
+
4147
+ Moray | Conservative Party | 15319
4148
+ Moray | Labour Party | 4898
4149
+ Moray | Liberal Democrats | 1395
4150
+ Moray | UK Independence Party | 1939
4151
+ Moray | Green Party | 1345
4152
+ Moray | Scottish National Party | 24384
4153
+
4154
+ Motherwell and Wishaw | Conservative Party | 3695
4155
+ Motherwell and Wishaw | Labour Party | 15377
4156
+ Motherwell and Wishaw | Liberal Democrats | 601
4157
+ Motherwell and Wishaw | UK Independence Party | 1289
4158
+ Motherwell and Wishaw | Scottish National Party | 27275
4159
+
4160
+ Na h-Eileanan An Iar (Western Isles) | Conservative Party | 1215
4161
+ Na h-Eileanan An Iar (Western Isles) | Labour Party | 4560
4162
+ Na h-Eileanan An Iar (Western Isles) | Liberal Democrats | 456
4163
+ Na h-Eileanan An Iar (Western Isles) | Scottish National Party | 8662
4164
+ Na h-Eileanan An Iar (Western Isles) | Small or local party, or independent candidate | 1045
4165
+
4166
+ Ochil and South Perthshire | Conservative Party | 11987
4167
+ Ochil and South Perthshire | Labour Party | 16452
4168
+ Ochil and South Perthshire | Liberal Democrats | 1481
4169
+ Ochil and South Perthshire | UK Independence Party | 1331
4170
+ Ochil and South Perthshire | Scottish National Party | 26620
4171
+
4172
+ Orkney and Shetland | Conservative Party | 2025
4173
+ Orkney and Shetland | Labour Party | 1624
4174
+ Orkney and Shetland | Liberal Democrats | 9407
4175
+ Orkney and Shetland | UK Independence Party | 1082
4176
+ Orkney and Shetland | Scottish National Party | 8590
4177
+
4178
+ Paisley and Renfrewshire North | Conservative Party | 6183
4179
+ Paisley and Renfrewshire North | Labour Party | 16525
4180
+ Paisley and Renfrewshire North | Liberal Democrats | 1055
4181
+ Paisley and Renfrewshire North | Green Party | 703
4182
+ Paisley and Renfrewshire North | Scottish National Party | 25601
4183
+ Paisley and Renfrewshire North | All other candidates | 395
4184
+
4185
+ Paisley and Renfrewshire South | Conservative Party | 3526
4186
+ Paisley and Renfrewshire South | Labour Party | 17864
4187
+ Paisley and Renfrewshire South | Liberal Democrats | 1010
4188
+ Paisley and Renfrewshire South | Scottish National Party | 23548
4189
+ Paisley and Renfrewshire South | All other candidates | 278
4190
+
4191
+ Perth and North Perthshire | Conservative Party | 17738
4192
+ Perth and North Perthshire | Labour Party | 4413
4193
+ Perth and North Perthshire | Liberal Democrats | 2059
4194
+ Perth and North Perthshire | UK Independence Party | 1110
4195
+ Perth and North Perthshire | Green Party | 1146
4196
+ Perth and North Perthshire | Scottish National Party | 27379
4197
+ Perth and North Perthshire | All other candidates | 355
4198
+
4199
+ Renfrewshire East | Conservative Party | 12465
4200
+ Renfrewshire East | Labour Party | 19295
4201
+ Renfrewshire East | Liberal Democrats | 1069
4202
+ Renfrewshire East | UK Independence Party | 888
4203
+ Renfrewshire East | Scottish National Party | 23013
4204
+
4205
+ Ross Skye and Lochaber | Conservative Party | 2598
4206
+ Ross Skye and Lochaber | Labour Party | 2043
4207
+ Ross Skye and Lochaber | Liberal Democrats | 14995
4208
+ Ross Skye and Lochaber | UK Independence Party | 814
4209
+ Ross Skye and Lochaber | Green Party | 1051
4210
+ Ross Skye and Lochaber | Scottish National Party | 20119
4211
+ Ross Skye and Lochaber | All other candidates | 191
4212
+
4213
+ Rutherglen and Hamilton West | Conservative Party | 4350
4214
+ Rutherglen and Hamilton West | Labour Party | 20304
4215
+ Rutherglen and Hamilton West | Liberal Democrats | 1045
4216
+ Rutherglen and Hamilton West | UK Independence Party | 1301
4217
+ Rutherglen and Hamilton West | Scottish National Party | 30279
4218
+ Rutherglen and Hamilton West | All other candidates | 336
4219
+
4220
+ Stirling | Conservative Party | 12051
4221
+ Stirling | Labour Party | 13303
4222
+ Stirling | Liberal Democrats | 1392
4223
+ Stirling | Green Party | 1606
4224
+ Stirling | Scottish National Party | 23783
4225
+
4226
+ Antrim East | Ulster Unionist Party | 6308
4227
+ Antrim East | Social Democratic & Labour Party | 1639
4228
+ Antrim East | Democratic Unionist Party | 12103
4229
+ Antrim East | UK Independence Party | 3660
4230
+ Antrim East | Sinn Féin | 2314
4231
+ Antrim East | Small or local party, or independent candidate | 5021
4232
+ Antrim East | All other candidates | 2452
4233
+
4234
+ Antrim North | Ulster Unionist Party | 5054
4235
+ Antrim North | Social Democratic & Labour Party | 2925
4236
+ Antrim North | Democratic Unionist Party | 18107
4237
+ Antrim North | UK Independence Party | 1341
4238
+ Antrim North | Sinn Féin | 5143
4239
+ Antrim North | Small or local party, or independent candidate | 6561
4240
+ Antrim North | All other candidates | 2776
4241
+
4242
+ Antrim South | Ulster Unionist Party | 11942
4243
+ Antrim South | Social Democratic & Labour Party | 2990
4244
+ Antrim South | Democratic Unionist Party | 10993
4245
+ Antrim South | Sinn Féin | 4699
4246
+ Antrim South | Small or local party, or independent candidate | 3576
4247
+ Antrim South | All other candidates | 2323
4248
+
4249
+ Belfast East | Social Democratic & Labour Party | 127
4250
+ Belfast East | Democratic Unionist Party | 19575
4251
+ Belfast East | Green Party | 1058
4252
+ Belfast East | Sinn Féin | 823
4253
+ Belfast East | Small or local party, or independent candidate | 16978
4254
+ Belfast East | All other candidates | 1121
4255
+
4256
+ Belfast North | Social Democratic & Labour Party | 3338
4257
+ Belfast North | Democratic Unionist Party | 19096
4258
+ Belfast North | Sinn Féin | 13770
4259
+ Belfast North | Small or local party, or independent candidate | 2941
4260
+ Belfast North | All other candidates | 1448
4261
+
4262
+ Belfast South | Ulster Unionist Party | 3549
4263
+ Belfast South | Social Democratic & Labour Party | 9560
4264
+ Belfast South | Democratic Unionist Party | 8654
4265
+ Belfast South | UK Independence Party | 1900
4266
+ Belfast South | Green Party | 2238
4267
+ Belfast South | Sinn Féin | 5402
4268
+ Belfast South | Small or local party, or independent candidate | 6711
4269
+ Belfast South | All other candidates | 943
4270
+
4271
+ Belfast West | Ulster Unionist Party | 1088
4272
+ Belfast West | Social Democratic & Labour Party | 3475
4273
+ Belfast West | Democratic Unionist Party | 2773
4274
+ Belfast West | UK Independence Party | 765
4275
+ Belfast West | Sinn Féin | 19163
4276
+ Belfast West | Small or local party, or independent candidate | 6798
4277
+ Belfast West | All other candidates | 1267
4278
+
4279
+ Down North | Social Democratic & Labour Party | 355
4280
+ Down North | Democratic Unionist Party | 8487
4281
+ Down North | UK Independence Party | 1482
4282
+ Down North | Green Party | 1958
4283
+ Down North | Sinn Féin | 273
4284
+ Down North | Small or local party, or independent candidate | 17689
4285
+ Down North | All other candidates | 5703
4286
+
4287
+ Down South | Ulster Unionist Party | 3964
4288
+ Down South | Social Democratic & Labour Party | 18077
4289
+ Down South | Democratic Unionist Party | 3486
4290
+ Down South | UK Independence Party | 3044
4291
+ Down South | Sinn Féin | 12186
4292
+ Down South | Small or local party, or independent candidate | 1622
4293
+ Down South | All other candidates | 318
4294
+
4295
+ Fermanagh and South Tyrone | Ulster Unionist Party | 23608
4296
+ Fermanagh and South Tyrone | Social Democratic & Labour Party | 2732
4297
+ Fermanagh and South Tyrone | Green Party | 788
4298
+ Fermanagh and South Tyrone | Sinn Féin | 23078
4299
+ Fermanagh and South Tyrone | All other candidates | 658
4300
+
4301
+ Foyle | Ulster Unionist Party | 1226
4302
+ Foyle | Social Democratic & Labour Party | 17725
4303
+ Foyle | Democratic Unionist Party | 4573
4304
+ Foyle | UK Independence Party | 832
4305
+ Foyle | Sinn Féin | 11679
4306
+ Foyle | Small or local party, or independent candidate | 835
4307
+ Foyle | All other candidates | 132
4308
+
4309
+ Lagan Valley | Ulster Unionist Party | 6055
4310
+ Lagan Valley | Social Democratic & Labour Party | 2500
4311
+ Lagan Valley | Democratic Unionist Party | 19055
4312
+ Lagan Valley | UK Independence Party | 2200
4313
+ Lagan Valley | Sinn Féin | 1144
4314
+ Lagan Valley | Small or local party, or independent candidate | 5544
4315
+ Lagan Valley | All other candidates | 3297
4316
+
4317
+ Londonderry East | Ulster Unionist Party | 5333
4318
+ Londonderry East | Social Democratic & Labour Party | 4268
4319
+ Londonderry East | Democratic Unionist Party | 14663
4320
+ Londonderry East | Sinn Féin | 6859
4321
+ Londonderry East | Small or local party, or independent candidate | 2642
4322
+ Londonderry East | All other candidates | 949
4323
+
4324
+ Newry and Armagh | Ulster Unionist Party | 16312
4325
+ Newry and Armagh | Social Democratic & Labour Party | 12026
4326
+ Newry and Armagh | Sinn Féin | 20488
4327
+ Newry and Armagh | All other candidates | 1051
4328
+
4329
+ Strangford | Ulster Unionist Party | 4868
4330
+ Strangford | Social Democratic & Labour Party | 2335
4331
+ Strangford | Democratic Unionist Party | 15053
4332
+ Strangford | UK Independence Party | 2237
4333
+ Strangford | Sinn Féin | 876
4334
+ Strangford | Small or local party, or independent candidate | 4687
4335
+ Strangford | All other candidates | 3868
4336
+
4337
+ Tyrone West | Ulster Unionist Party | 6144
4338
+ Tyrone West | Social Democratic & Labour Party | 6444
4339
+ Tyrone West | Democratic Unionist Party | 6747
4340
+ Tyrone West | Green Party | 780
4341
+ Tyrone West | Sinn Féin | 16807
4342
+ Tyrone West | Small or local party, or independent candidate | 869
4343
+ Tyrone West | All other candidates | 863
4344
+
4345
+ Ulster Mid | Ulster Unionist Party | 6318
4346
+ Ulster Mid | Social Democratic & Labour Party | 5055
4347
+ Ulster Mid | Democratic Unionist Party | 5465
4348
+ Ulster Mid | UK Independence Party | 863
4349
+ Ulster Mid | Sinn Féin | 19935
4350
+ Ulster Mid | Small or local party, or independent candidate | 1892
4351
+ Ulster Mid | All other candidates | 1394
4352
+
4353
+ Upper Bann | Ulster Unionist Party | 13166
4354
+ Upper Bann | Social Democratic & Labour Party | 4238
4355
+ Upper Bann | Democratic Unionist Party | 15430
4356
+ Upper Bann | Sinn Féin | 11593
4357
+ Upper Bann | Small or local party, or independent candidate | 1780
4358
+ Upper Bann | All other candidates | 1012