sapor 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (343) 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/ie/2016-04-28_general-election-2016-candidate-details-csv_en.csv +552 -0
  25. data/data/ie/ireland_2016_to_psv.rb +138 -0
  26. data/data/no/2020-01-01_partifordeling_1_st_2017.csv +335 -0
  27. data/data/no/norway_2017_to_psv.rb +61 -0
  28. data/data/pl/2015-gl-lis-okr.csv +42 -0
  29. data/data/pl/poland_2015_to_psv.rb +79 -0
  30. data/data/pl/poland_2015_to_psv_with_ko_and_rsw.rb +94 -0
  31. data/data/pl/poland_2015_to_psv_with_ko_konf_kp_l_and_zp.rb +100 -0
  32. data/data/pl/poland_2015_to_psv_with_ko_sld_and_wi.rb +92 -0
  33. data/data/pl/poland_2015_to_psv_with_sld.rb +84 -0
  34. data/data/pl/poland_2015_to_psv_with_sld_and_wi.rb +85 -0
  35. data/data/uk/inject_ukip_2015_as_brexit_2019_in_2017.rb +54 -0
  36. data/data/uk/united_kingdom_2015.txt +651 -0
  37. data/data/uk/united_kingdom_2015_to_psv.rb +104 -0
  38. data/data/uk/united_kingdom_2017.txt +651 -0
  39. data/data/uk/united_kingdom_2017_to_psv.rb +104 -0
  40. data/data/uk/united_kingdom_2017_to_psv_with_brexit_and_chuk.rb +113 -0
  41. data/data/uk/united_kingdom_2017_to_psv_with_tig.rb +111 -0
  42. data/lib/sapor.rb +147 -0
  43. data/lib/sapor/binomials_cache.rb +45 -0
  44. data/lib/sapor/combinations_distribution.rb +222 -0
  45. data/lib/sapor/denominators.rb +67 -0
  46. data/lib/sapor/dichotomies.rb +138 -0
  47. data/lib/sapor/dichotomy.rb +164 -0
  48. data/lib/sapor/first_past_the_post.rb +82 -0
  49. data/lib/sapor/largest_remainder.rb +118 -0
  50. data/lib/sapor/log4r_logger.rb +49 -0
  51. data/lib/sapor/log_facade.rb +40 -0
  52. data/lib/sapor/many_past_the_post.rb +113 -0
  53. data/lib/sapor/multi_district_leveled_proportional.rb +64 -0
  54. data/lib/sapor/multi_district_proportional.rb +123 -0
  55. data/lib/sapor/multi_district_variable_threshold_proportional.rb +128 -0
  56. data/lib/sapor/number_formatter.rb +45 -0
  57. data/lib/sapor/options.rb +73 -0
  58. data/lib/sapor/poll.rb +282 -0
  59. data/lib/sapor/polychotomy.rb +200 -0
  60. data/lib/sapor/pseudorandom_multirange_enumerator.rb +87 -0
  61. data/lib/sapor/referendum_polychotomy.rb +165 -0
  62. data/lib/sapor/regional_data/area.rb +100 -0
  63. data/lib/sapor/regional_data/austria.rb +84 -0
  64. data/lib/sapor/regional_data/belgium-brussels-2014.psv +46 -0
  65. data/lib/sapor/regional_data/belgium-brussels-20190526.psv +33 -0
  66. data/lib/sapor/regional_data/belgium-flanders-2014.psv +80 -0
  67. data/lib/sapor/regional_data/belgium-flanders-20190526.psv +74 -0
  68. data/lib/sapor/regional_data/belgium-wallonia-2014.psv +114 -0
  69. data/lib/sapor/regional_data/belgium-wallonia-20190526.psv +93 -0
  70. data/lib/sapor/regional_data/belgium.rb +97 -0
  71. data/lib/sapor/regional_data/belgium_brussels.rb +62 -0
  72. data/lib/sapor/regional_data/belgium_flanders.rb +64 -0
  73. data/lib/sapor/regional_data/belgium_wallonia.rb +63 -0
  74. data/lib/sapor/regional_data/catalonia-2012-2015.psv +100 -0
  75. data/lib/sapor/regional_data/catalonia-2012.psv +87 -0
  76. data/lib/sapor/regional_data/catalonia-2015-jxcat.psv +68 -0
  77. data/lib/sapor/regional_data/catalonia-2015-no-jxsi.psv +68 -0
  78. data/lib/sapor/regional_data/catalonia-2015.psv +63 -0
  79. data/lib/sapor/regional_data/catalonia-20171221-with-vox.psv +67 -0
  80. data/lib/sapor/regional_data/catalonia-20171221.psv +61 -0
  81. data/lib/sapor/regional_data/catalonia.rb +124 -0
  82. data/lib/sapor/regional_data/denmark-20150618-with-e-and-p.psv +164 -0
  83. data/lib/sapor/regional_data/denmark-20150618-with-e.psv +153 -0
  84. data/lib/sapor/regional_data/denmark-20150618-with-p.psv +153 -0
  85. data/lib/sapor/regional_data/denmark-20150618.psv +142 -0
  86. data/lib/sapor/regional_data/denmark.rb +128 -0
  87. data/lib/sapor/regional_data/denmark_with_e.rb +128 -0
  88. data/lib/sapor/regional_data/denmark_with_e_and_p.rb +128 -0
  89. data/lib/sapor/regional_data/denmark_with_p.rb +128 -0
  90. data/lib/sapor/regional_data/estonia.rb +88 -0
  91. data/lib/sapor/regional_data/european-union-great-britain-20140522-brexit-chuk.psv +172 -0
  92. data/lib/sapor/regional_data/european-union-great-britain-20140522.psv +146 -0
  93. data/lib/sapor/regional_data/european-union-great-britain-20190523.psv +141 -0
  94. data/lib/sapor/regional_data/european-union-ireland-2014-ia-ri-sd.psv +64 -0
  95. data/lib/sapor/regional_data/european-union-ireland-2014-ia-sd.psv +60 -0
  96. data/lib/sapor/regional_data/european-union-ireland-2014-ia.psv +56 -0
  97. data/lib/sapor/regional_data/european-union-ireland-2014-sd.psv +56 -0
  98. data/lib/sapor/regional_data/european-union-ireland-2014.psv +50 -0
  99. data/lib/sapor/regional_data/european-union-ireland-20190524-ia.psv +58 -0
  100. data/lib/sapor/regional_data/european-union-ireland-20190524.psv +52 -0
  101. data/lib/sapor/regional_data/european_union_27_austria.rb +76 -0
  102. data/lib/sapor/regional_data/european_union_27_croatia.rb +83 -0
  103. data/lib/sapor/regional_data/european_union_27_denmark.rb +77 -0
  104. data/lib/sapor/regional_data/european_union_27_estonia.rb +74 -0
  105. data/lib/sapor/regional_data/european_union_27_finland.rb +74 -0
  106. data/lib/sapor/regional_data/european_union_27_france.rb +84 -0
  107. data/lib/sapor/regional_data/european_union_27_ireland.rb +96 -0
  108. data/lib/sapor/regional_data/european_union_27_ireland_with_ia.rb +97 -0
  109. data/lib/sapor/regional_data/european_union_27_italy.rb +84 -0
  110. data/lib/sapor/regional_data/european_union_27_netherlands.rb +81 -0
  111. data/lib/sapor/regional_data/european_union_27_poland.rb +84 -0
  112. data/lib/sapor/regional_data/european_union_27_romania.rb +78 -0
  113. data/lib/sapor/regional_data/european_union_27_slovakia.rb +80 -0
  114. data/lib/sapor/regional_data/european_union_27_spain.rb +82 -0
  115. data/lib/sapor/regional_data/european_union_27_sweden.rb +76 -0
  116. data/lib/sapor/regional_data/european_union_austria.rb +76 -0
  117. data/lib/sapor/regional_data/european_union_bulgaria.rb +82 -0
  118. data/lib/sapor/regional_data/european_union_croatia.rb +83 -0
  119. data/lib/sapor/regional_data/european_union_cyprus.rb +72 -0
  120. data/lib/sapor/regional_data/european_union_czech_republic.rb +82 -0
  121. data/lib/sapor/regional_data/european_union_denmark.rb +77 -0
  122. data/lib/sapor/regional_data/european_union_estonia.rb +74 -0
  123. data/lib/sapor/regional_data/european_union_finland.rb +74 -0
  124. data/lib/sapor/regional_data/european_union_flanders.rb +74 -0
  125. data/lib/sapor/regional_data/european_union_france.rb +84 -0
  126. data/lib/sapor/regional_data/european_union_french_community_of_belgium.rb +73 -0
  127. data/lib/sapor/regional_data/european_union_germany.rb +86 -0
  128. data/lib/sapor/regional_data/european_union_great_britain.rb +98 -0
  129. data/lib/sapor/regional_data/european_union_greece.rb +77 -0
  130. data/lib/sapor/regional_data/european_union_hungary.rb +76 -0
  131. data/lib/sapor/regional_data/european_union_ireland.rb +96 -0
  132. data/lib/sapor/regional_data/european_union_ireland_with_ia.rb +97 -0
  133. data/lib/sapor/regional_data/european_union_italy.rb +84 -0
  134. data/lib/sapor/regional_data/european_union_latvia.rb +81 -0
  135. data/lib/sapor/regional_data/european_union_lithuania.rb +80 -0
  136. data/lib/sapor/regional_data/european_union_luxembourg.rb +75 -0
  137. data/lib/sapor/regional_data/european_union_malta.rb +71 -0
  138. data/lib/sapor/regional_data/european_union_netherlands.rb +81 -0
  139. data/lib/sapor/regional_data/european_union_northern_ireland.rb +75 -0
  140. data/lib/sapor/regional_data/european_union_poland.rb +84 -0
  141. data/lib/sapor/regional_data/european_union_portugal.rb +75 -0
  142. data/lib/sapor/regional_data/european_union_romania.rb +78 -0
  143. data/lib/sapor/regional_data/european_union_slovakia.rb +81 -0
  144. data/lib/sapor/regional_data/european_union_slovenia.rb +85 -0
  145. data/lib/sapor/regional_data/european_union_spain.rb +82 -0
  146. data/lib/sapor/regional_data/european_union_sweden.rb +76 -0
  147. data/lib/sapor/regional_data/finland-20150419-with-sin.psv +224 -0
  148. data/lib/sapor/regional_data/finland-20150419.psv +212 -0
  149. data/lib/sapor/regional_data/finland.rb +107 -0
  150. data/lib/sapor/regional_data/finland_with_sin.rb +107 -0
  151. data/lib/sapor/regional_data/flanders-2014.psv +96 -0
  152. data/lib/sapor/regional_data/flanders-20190526.psv +87 -0
  153. data/lib/sapor/regional_data/flanders.rb +115 -0
  154. data/lib/sapor/regional_data/france.rb +38 -0
  155. data/lib/sapor/regional_data/greece.rb +92 -0
  156. data/lib/sapor/regional_data/hungary-2014.psv +2104 -0
  157. data/lib/sapor/regional_data/hungary.rb +116 -0
  158. data/lib/sapor/regional_data/iceland-20161029-midflokkurinn.psv +94 -0
  159. data/lib/sapor/regional_data/iceland-20161029.psv +88 -0
  160. data/lib/sapor/regional_data/iceland-20171028-with-j.psv +94 -0
  161. data/lib/sapor/regional_data/iceland-20171028.psv +85 -0
  162. data/lib/sapor/regional_data/iceland.rb +149 -0
  163. data/lib/sapor/regional_data/ireland-20160226-2020-candidates.psv +322 -0
  164. data/lib/sapor/regional_data/ireland-20160226-2020.psv +344 -0
  165. data/lib/sapor/regional_data/ireland-20160226.psv +348 -0
  166. data/lib/sapor/regional_data/ireland.rb +165 -0
  167. data/lib/sapor/regional_data/latvia-20141004-kpv-p-par.psv +109 -0
  168. data/lib/sapor/regional_data/latvia-20141004-kpv-par.psv +103 -0
  169. data/lib/sapor/regional_data/latvia-20141004-kpv.psv +97 -0
  170. data/lib/sapor/regional_data/latvia-20141004.psv +89 -0
  171. data/lib/sapor/regional_data/latvia-20181006.psv +104 -0
  172. data/lib/sapor/regional_data/latvia.rb +111 -0
  173. data/lib/sapor/regional_data/luxembourg-20131020.psv +60 -0
  174. data/lib/sapor/regional_data/luxembourg-20181014.psv +59 -0
  175. data/lib/sapor/regional_data/luxembourg.rb +88 -0
  176. data/lib/sapor/regional_data/netherlands.rb +108 -0
  177. data/lib/sapor/regional_data/norway-20170911.psv +331 -0
  178. data/lib/sapor/regional_data/norway.rb +130 -0
  179. data/lib/sapor/regional_data/norwegian_municipality.rb +68 -0
  180. data/lib/sapor/regional_data/poland-20151025-with-ko-and-l-without-n-po-r-and-zl.psv +321 -0
  181. 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
  182. data/lib/sapor/regional_data/poland-20151025-with-ko-sld-and-wi-without-n-po-and-zl.psv +403 -0
  183. data/lib/sapor/regional_data/poland-20151025-with-sld-and-wi-without-zl.psv +444 -0
  184. data/lib/sapor/regional_data/poland-20151025-with-sld-without-zl.psv +403 -0
  185. data/lib/sapor/regional_data/poland-20151025.psv +403 -0
  186. data/lib/sapor/regional_data/poland.rb +125 -0
  187. data/lib/sapor/regional_data/poland_with_ko_and_l_without_n_po_r_and_zl.rb +122 -0
  188. 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
  189. data/lib/sapor/regional_data/poland_with_ko_sld_and_wi_without_n_po_and_zl.rb +125 -0
  190. data/lib/sapor/regional_data/poland_with_sld_and_wi_without_zl.rb +126 -0
  191. data/lib/sapor/regional_data/poland_with_sld_without_zl.rb +126 -0
  192. data/lib/sapor/regional_data/portugal-20151004-with-a-and-ch-without-paf.psv +438 -0
  193. data/lib/sapor/regional_data/portugal-20151004-with-a-and-il-without-paf.psv +438 -0
  194. data/lib/sapor/regional_data/portugal-20151004-with-a-ch-and-il-without-paf.psv +461 -0
  195. data/lib/sapor/regional_data/portugal-20151004-with-a-without-paf.psv +415 -0
  196. data/lib/sapor/regional_data/portugal-20151004-with-ch-and-il-without-paf.psv +438 -0
  197. data/lib/sapor/regional_data/portugal-20151004-without-paf.psv +392 -0
  198. data/lib/sapor/regional_data/portugal-20151004.psv +370 -0
  199. data/lib/sapor/regional_data/portugal.rb +101 -0
  200. data/lib/sapor/regional_data/portugal_with_a_and_ch_without_paf.rb +92 -0
  201. data/lib/sapor/regional_data/portugal_with_a_and_il_without_paf.rb +92 -0
  202. data/lib/sapor/regional_data/portugal_with_a_ch_and_il_without_paf.rb +92 -0
  203. data/lib/sapor/regional_data/portugal_with_a_without_paf.rb +92 -0
  204. data/lib/sapor/regional_data/portugal_with_ch_and_il_without_paf.rb +92 -0
  205. data/lib/sapor/regional_data/portugal_without_paf.rb +92 -0
  206. data/lib/sapor/regional_data/slovakia.rb +81 -0
  207. data/lib/sapor/regional_data/slovenia.rb +114 -0
  208. data/lib/sapor/regional_data/spain-20160626.psv +619 -0
  209. data/lib/sapor/regional_data/spain.rb +136 -0
  210. data/lib/sapor/regional_data/sweden.rb +92 -0
  211. data/lib/sapor/regional_data/sweden_20140914.rb +89 -0
  212. data/lib/sapor/regional_data/united_kingdom-2015.psv +4358 -0
  213. data/lib/sapor/regional_data/united_kingdom-20170608-brexit-chuk.psv +5154 -0
  214. data/lib/sapor/regional_data/united_kingdom-20170608-brexit.psv +4521 -0
  215. data/lib/sapor/regional_data/united_kingdom-20170608-tig.psv +4529 -0
  216. data/lib/sapor/regional_data/united_kingdom-20170608.psv +3894 -0
  217. data/lib/sapor/regional_data/united_kingdom.rb +94 -0
  218. data/lib/sapor/regional_data/united_kingdom_with_brexit.rb +110 -0
  219. data/lib/sapor/regional_data/united_kingdom_with_brexit_and_chuk.rb +111 -0
  220. data/lib/sapor/regional_data/united_kingdom_with_tig.rb +111 -0
  221. data/lib/sapor/regional_data/utopia.rb +66 -0
  222. data/lib/sapor/regional_data/wallonia-2014.psv +101 -0
  223. data/lib/sapor/regional_data/wallonia-20190526.psv +88 -0
  224. data/lib/sapor/regional_data/wallonia.rb +112 -0
  225. data/lib/sapor/representatives_polychotomy.rb +338 -0
  226. data/lib/sapor/single_district_proportional.rb +75 -0
  227. data/sapor.gemspec +35 -0
  228. data/spec/integration/area_spec.rb +28 -0
  229. data/spec/integration/poll_spec.rb +112 -0
  230. data/spec/integration/sample.poll +8 -0
  231. data/spec/spec_helper.rb +31 -0
  232. data/spec/unit/area_spec.rb +115 -0
  233. data/spec/unit/austria_spec.rb +76 -0
  234. data/spec/unit/belgium_brussels_spec.rb +58 -0
  235. data/spec/unit/belgium_flanders_spec.rb +62 -0
  236. data/spec/unit/belgium_spec.rb +26 -0
  237. data/spec/unit/belgium_wallonia_spec.rb +65 -0
  238. data/spec/unit/binomials_cache_spec.rb +34 -0
  239. data/spec/unit/catalonia_spec.rb +61 -0
  240. data/spec/unit/catalonia_with_vox_spec.rb +62 -0
  241. data/spec/unit/combinations_distribution_spec.rb +241 -0
  242. data/spec/unit/denmark_spec.rb +56 -0
  243. data/spec/unit/denmark_with_e_and_p_spec.rb +58 -0
  244. data/spec/unit/denmark_with_e_spec.rb +57 -0
  245. data/spec/unit/denmark_with_p_spec.rb +57 -0
  246. data/spec/unit/denominators_spec.rb +40 -0
  247. data/spec/unit/dichotomies_spec.rb +154 -0
  248. data/spec/unit/dichotomy_spec.rb +320 -0
  249. data/spec/unit/estonia_spec.rb +65 -0
  250. data/spec/unit/european_union_27_austria_spec.rb +61 -0
  251. data/spec/unit/european_union_27_croatia_spec.rb +60 -0
  252. data/spec/unit/european_union_27_denmark_spec.rb +62 -0
  253. data/spec/unit/european_union_27_estonia_spec.rb +94 -0
  254. data/spec/unit/european_union_27_finland_spec.rb +75 -0
  255. data/spec/unit/european_union_27_france_spec.rb +73 -0
  256. data/spec/unit/european_union_27_ireland_spec.rb +72 -0
  257. data/spec/unit/european_union_27_ireland_with_ia_spec.rb +74 -0
  258. data/spec/unit/european_union_27_italy_spec.rb +69 -0
  259. data/spec/unit/european_union_27_netherlands_spec.rb +81 -0
  260. data/spec/unit/european_union_27_poland_spec.rb +69 -0
  261. data/spec/unit/european_union_27_romania_spec.rb +67 -0
  262. data/spec/unit/european_union_27_slovakia_spec.rb +111 -0
  263. data/spec/unit/european_union_27_spain_spec.rb +130 -0
  264. data/spec/unit/european_union_27_sweden_spec.rb +89 -0
  265. data/spec/unit/european_union_austria_spec.rb +61 -0
  266. data/spec/unit/european_union_bulgaria_spec.rb +97 -0
  267. data/spec/unit/european_union_croatia_spec.rb +59 -0
  268. data/spec/unit/european_union_cyprus_spec.rb +65 -0
  269. data/spec/unit/european_union_czech_republic_spec.rb +125 -0
  270. data/spec/unit/european_union_denmark_spec.rb +61 -0
  271. data/spec/unit/european_union_estonia_spec.rb +93 -0
  272. data/spec/unit/european_union_finland_spec.rb +75 -0
  273. data/spec/unit/european_union_flanders_spec.rb +56 -0
  274. data/spec/unit/european_union_france_spec.rb +73 -0
  275. data/spec/unit/european_union_french_community_of_belgium_spec.rb +61 -0
  276. data/spec/unit/european_union_germany_spec.rb +90 -0
  277. data/spec/unit/european_union_great_britain_spec.rb +87 -0
  278. data/spec/unit/european_union_greece_spec.rb +148 -0
  279. data/spec/unit/european_union_hungary_spec.rb +57 -0
  280. data/spec/unit/european_union_ireland_spec.rb +72 -0
  281. data/spec/unit/european_union_ireland_with_ia_spec.rb +74 -0
  282. data/spec/unit/european_union_italy_spec.rb +69 -0
  283. data/spec/unit/european_union_latvia_spec.rb +76 -0
  284. data/spec/unit/european_union_lithuania_spec.rb +68 -0
  285. data/spec/unit/european_union_luxembourg_spec.rb +63 -0
  286. data/spec/unit/european_union_malta_spec.rb +60 -0
  287. data/spec/unit/european_union_netherlands_spec.rb +81 -0
  288. data/spec/unit/european_union_northern_ireland_spec.rb +66 -0
  289. data/spec/unit/european_union_poland_spec.rb +69 -0
  290. data/spec/unit/european_union_portugal_spec.rb +77 -0
  291. data/spec/unit/european_union_romania_spec.rb +67 -0
  292. data/spec/unit/european_union_slovakia_spec.rb +111 -0
  293. data/spec/unit/european_union_slovenia_spec.rb +77 -0
  294. data/spec/unit/european_union_spain_spec.rb +129 -0
  295. data/spec/unit/european_union_sweden_spec.rb +89 -0
  296. data/spec/unit/finland_spec.rb +65 -0
  297. data/spec/unit/finland_with_sin_spec.rb +67 -0
  298. data/spec/unit/first_past_the_post_spec.rb +54 -0
  299. data/spec/unit/flanders_spec.rb +70 -0
  300. data/spec/unit/france_spec.rb +32 -0
  301. data/spec/unit/greece_spec.rb +118 -0
  302. data/spec/unit/hungary_spec.rb +132 -0
  303. data/spec/unit/iceland_spec.rb +57 -0
  304. data/spec/unit/iceland_with_j_spec.rb +58 -0
  305. data/spec/unit/ireland_2016_spec.rb +62 -0
  306. data/spec/unit/ireland_spec.rb +62 -0
  307. data/spec/unit/largest_remainder_spec.rb +79 -0
  308. data/spec/unit/latvia_spec.rb +62 -0
  309. data/spec/unit/luxembourg_spec.rb +55 -0
  310. data/spec/unit/multi_district_leveled_proportional_spec.rb +49 -0
  311. data/spec/unit/multi_district_proportional_spec.rb +81 -0
  312. data/spec/unit/netherlands_spec.rb +107 -0
  313. data/spec/unit/norway_spec.rb +69 -0
  314. data/spec/unit/norwegian_municipality_spec.rb +89 -0
  315. data/spec/unit/number_formatter_spec.rb +173 -0
  316. data/spec/unit/poland_spec.rb +62 -0
  317. data/spec/unit/poland_with_ko_and_l_without_n_po_r_and_zl_spec.rb +60 -0
  318. 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
  319. data/spec/unit/poland_with_ko_sld_and_wi_without_n_po_and_zl_spec.rb +62 -0
  320. data/spec/unit/poland_with_sld_and_wi_without_zl_spec.rb +63 -0
  321. data/spec/unit/poland_with_sld_without_zl_spec.rb +62 -0
  322. data/spec/unit/poll_spec.rb +110 -0
  323. data/spec/unit/portugal_spec.rb +66 -0
  324. data/spec/unit/portugal_with_a_and_ch_without_paf_spec.rb +68 -0
  325. data/spec/unit/portugal_with_a_and_il_without_paf_spec.rb +68 -0
  326. data/spec/unit/portugal_with_a_ch_and_il_without_paf_spec.rb +69 -0
  327. data/spec/unit/portugal_with_a_without_paf_spec.rb +67 -0
  328. data/spec/unit/portugal_with_ch_and_il_without_paf_spec.rb +68 -0
  329. data/spec/unit/portugal_without_paf_spec.rb +66 -0
  330. data/spec/unit/pseudorandom_multirange_enumerator_spec.rb +82 -0
  331. data/spec/unit/referendum_polychotomy_spec.rb +289 -0
  332. data/spec/unit/representatives_polychotomy_spec.rb +332 -0
  333. data/spec/unit/slovakia_spec.rb +99 -0
  334. data/spec/unit/slovenia_spec.rb +80 -0
  335. data/spec/unit/spain_spec.rb +101 -0
  336. data/spec/unit/sweden_20140914_spec.rb +112 -0
  337. data/spec/unit/sweden_spec.rb +113 -0
  338. data/spec/unit/united_kingdom_spec.rb +65 -0
  339. data/spec/unit/united_kingdom_with_brexit_and_chuk_spec.rb +67 -0
  340. data/spec/unit/united_kingdom_with_brexit_spec.rb +66 -0
  341. data/spec/unit/united_kingdom_with_tig_spec.rb +66 -0
  342. data/spec/unit/wallonia_spec.rb +70 -0
  343. metadata +502 -0
@@ -0,0 +1,48 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Statistical Analysis of Polling Results (SAPoR)
4
+ # Copyright (C) 2020 Filip van Laenen <f.a.vanlaenen@ieee.org>
5
+ #
6
+ # This file is part of SAPoR.
7
+ #
8
+ # SAPoR is free software: you can redistribute it and/or modify it under the
9
+ # terms of the GNU General Public License as published by the Free Software
10
+ # Foundation, either version 3 of the License, or (at your option) any later
11
+ # version.
12
+ #
13
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
14
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16
+ #
17
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
18
+ #
19
+
20
+ INDEX = 'index-2014.txt'.freeze
21
+ TARGET = 'hungary-2014.txt'.freeze
22
+
23
+ BASE_URL = 'http://valasztas.hu/dyn/pv14/szavossz/en/'.freeze
24
+
25
+ DISTRICT_MATCHER = %r{<h2>Result of the single-member constituencies\s+(.*)\.\s*\(.*</h2>}m
26
+ RESULT_ROW_MATCHER = %r{<tr>\s*((<td[^>]*>[^<]*</td>\s*)+)}m
27
+ SEQUENCE_CELL_MATCHER = %r{<td[^>]*>&nbsp;(\d+)&nbsp;</td>}m
28
+ CELL_MATCHER = %r{<td[^>]*>([^<]*)</td>}m
29
+
30
+ File.open(TARGET, 'w') do |output|
31
+ File.open(INDEX).each do |line|
32
+ url = BASE_URL + line.chomp
33
+ puts url
34
+ content = `curl -s #{url}`.encode('utf-8', 'iso-8859-2')
35
+ district = content.scan(DISTRICT_MATCHER).first.first.gsub(/&ndash;/, '–')
36
+ puts district
37
+ content.scan(RESULT_ROW_MATCHER) do |match|
38
+ row = match.first
39
+ unless row.scan(SEQUENCE_CELL_MATCHER).first.nil?
40
+ cells = row.scan(CELL_MATCHER)
41
+ party = cells[2].first
42
+ result = cells[3].first.gsub(/&nbsp;/, '')
43
+ output.puts "#{district} | #{party} | #{result}"
44
+ end
45
+ end
46
+ output.puts
47
+ end
48
+ end
@@ -0,0 +1,80 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Statistical Analysis of Polling Results (SAPoR)
4
+ # Copyright (C) 2020 Filip van Laenen <f.a.vanlaenen@ieee.org>
5
+ #
6
+ # This file is part of SAPoR.
7
+ #
8
+ # SAPoR is free software: you can redistribute it and/or modify it under the
9
+ # terms of the GNU General Public License as published by the Free Software
10
+ # Foundation, either version 3 of the License, or (at your option) any later
11
+ # version.
12
+ #
13
+ # SAPoR is distributed in the hope that it will be useful, but WITHOUT ANY
14
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15
+ # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16
+ #
17
+ # You can find a copy of the GNU General Public License in /doc/gpl.txt
18
+ #
19
+
20
+ SOURCE = 'hungary-2014.txt'.freeze
21
+ TARGET = '../../lib/sapor/regional_data/hungary-2014.psv'.freeze
22
+
23
+ File.open(TARGET, 'w') do |output|
24
+ output.puts '# Statistical Analysis of Polling Results (SAPoR)'
25
+ output.puts '# Copyright (C) 2020 Filip van Laenen <f.a.vanlaenen@ieee.org>'
26
+ output.puts '#'
27
+ output.puts '# This file is part of SAPoR.'
28
+ output.puts '#'
29
+ output.puts '# SAPoR is free software: you can redistribute it and/or' \
30
+ ' modify it under the'
31
+ output.puts '# terms of the GNU General Public License as published by the' \
32
+ ' Free Software'
33
+ output.puts '# Foundation, either version 3 of the License, or (at your' \
34
+ ' option) any later'
35
+ output.puts '# version.'
36
+ output.puts '#'
37
+ output.puts '# SAPoR is distributed in the hope that it will be useful, but' \
38
+ ' WITHOUT ANY'
39
+ output.puts '# WARRANTY; without even the implied warranty of' \
40
+ ' MERCHANTABILITY or FITNESS FOR'
41
+ output.puts '# A PARTICULAR PURPOSE. See the GNU General Public License' \
42
+ ' for more details.'
43
+ output.puts '#'
44
+ output.puts '# You can find a copy of the GNU General Public License in' \
45
+ ' /doc/gpl.txt'
46
+ output.puts '#'
47
+ File.open(SOURCE).each do |line|
48
+ next if line.chomp.start_with?('#')
49
+ if line.chomp.empty?
50
+ output.puts
51
+ else
52
+ elements = line.chomp.split('|').map(&:strip)
53
+ party = elements[1]
54
+ if party == 'FIDESZ-KDNP'
55
+ elements[1] = 'Fidesz–KDNP'
56
+ output.puts(elements.join(' | '))
57
+ elsif party == 'JOBBIK'
58
+ elements[1] = 'Jobbik'
59
+ output.puts(elements.join(' | '))
60
+ elsif party == 'MSZP-EGYÜTT-DK-PM-MLP'
61
+ elements[2] = (elements[2].to_i / 5).to_s
62
+ elements[1] = 'DK'
63
+ output.puts(elements.join(' | '))
64
+ elements[1] = 'Együtt'
65
+ output.puts(elements.join(' | '))
66
+ elements[1] = 'MLP'
67
+ output.puts(elements.join(' | '))
68
+ elements[1] = 'MSZP'
69
+ output.puts(elements.join(' | '))
70
+ elements[1] = 'PM'
71
+ output.puts(elements.join(' | '))
72
+ elsif party == 'SZOCIÁLDEMOKRATÁK'
73
+ elements[1] = 'Szociáldemokraták'
74
+ output.puts(elements.join(' | '))
75
+ else
76
+ output.puts line
77
+ end
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,106 @@
1
+ M01/E01/evkjkv_e.html
2
+ M01/E02/evkjkv_e.html
3
+ M01/E03/evkjkv_e.html
4
+ M01/E04/evkjkv_e.html
5
+ M01/E05/evkjkv_e.html
6
+ M01/E06/evkjkv_e.html
7
+ M01/E07/evkjkv_e.html
8
+ M01/E08/evkjkv_e.html
9
+ M01/E09/evkjkv_e.html
10
+ M01/E10/evkjkv_e.html
11
+ M01/E11/evkjkv_e.html
12
+ M01/E12/evkjkv_e.html
13
+ M01/E13/evkjkv_e.html
14
+ M01/E14/evkjkv_e.html
15
+ M01/E15/evkjkv_e.html
16
+ M01/E16/evkjkv_e.html
17
+ M01/E17/evkjkv_e.html
18
+ M01/E18/evkjkv_e.html
19
+ M02/E01/evkjkv_e.html
20
+ M02/E02/evkjkv_e.html
21
+ M02/E03/evkjkv_e.html
22
+ M02/E04/evkjkv_e.html
23
+ M03/E01/evkjkv_e.html
24
+ M03/E02/evkjkv_e.html
25
+ M03/E03/evkjkv_e.html
26
+ M03/E04/evkjkv_e.html
27
+ M03/E05/evkjkv_e.html
28
+ M03/E06/evkjkv_e.html
29
+ M04/E01/evkjkv_e.html
30
+ M04/E02/evkjkv_e.html
31
+ M04/E03/evkjkv_e.html
32
+ M04/E04/evkjkv_e.html
33
+ M05/E01/evkjkv_e.html
34
+ M05/E02/evkjkv_e.html
35
+ M05/E03/evkjkv_e.html
36
+ M05/E04/evkjkv_e.html
37
+ M05/E05/evkjkv_e.html
38
+ M05/E06/evkjkv_e.html
39
+ M05/E07/evkjkv_e.html
40
+ M06/E01/evkjkv_e.html
41
+ M06/E02/evkjkv_e.html
42
+ M06/E03/evkjkv_e.html
43
+ M06/E04/evkjkv_e.html
44
+ M07/E01/evkjkv_e.html
45
+ M07/E02/evkjkv_e.html
46
+ M07/E03/evkjkv_e.html
47
+ M07/E04/evkjkv_e.html
48
+ M07/E05/evkjkv_e.html
49
+ M08/E01/evkjkv_e.html
50
+ M08/E02/evkjkv_e.html
51
+ M08/E03/evkjkv_e.html
52
+ M08/E04/evkjkv_e.html
53
+ M08/E05/evkjkv_e.html
54
+ M09/E01/evkjkv_e.html
55
+ M09/E02/evkjkv_e.html
56
+ M09/E03/evkjkv_e.html
57
+ M09/E04/evkjkv_e.html
58
+ M09/E05/evkjkv_e.html
59
+ M09/E06/evkjkv_e.html
60
+ M10/E01/evkjkv_e.html
61
+ M10/E02/evkjkv_e.html
62
+ M10/E03/evkjkv_e.html
63
+ M11/E01/evkjkv_e.html
64
+ M11/E02/evkjkv_e.html
65
+ M11/E03/evkjkv_e.html
66
+ M11/E04/evkjkv_e.html
67
+ M12/E01/evkjkv_e.html
68
+ M12/E02/evkjkv_e.html
69
+ M12/E03/evkjkv_e.html
70
+ M13/E01/evkjkv_e.html
71
+ M13/E02/evkjkv_e.html
72
+ M14/E01/evkjkv_e.html
73
+ M14/E02/evkjkv_e.html
74
+ M14/E03/evkjkv_e.html
75
+ M14/E04/evkjkv_e.html
76
+ M14/E05/evkjkv_e.html
77
+ M14/E06/evkjkv_e.html
78
+ M14/E07/evkjkv_e.html
79
+ M14/E08/evkjkv_e.html
80
+ M14/E09/evkjkv_e.html
81
+ M14/E10/evkjkv_e.html
82
+ M14/E11/evkjkv_e.html
83
+ M14/E12/evkjkv_e.html
84
+ M15/E01/evkjkv_e.html
85
+ M15/E02/evkjkv_e.html
86
+ M15/E03/evkjkv_e.html
87
+ M15/E04/evkjkv_e.html
88
+ M16/E01/evkjkv_e.html
89
+ M16/E02/evkjkv_e.html
90
+ M16/E03/evkjkv_e.html
91
+ M16/E04/evkjkv_e.html
92
+ M16/E05/evkjkv_e.html
93
+ M16/E06/evkjkv_e.html
94
+ M17/E01/evkjkv_e.html
95
+ M17/E02/evkjkv_e.html
96
+ M17/E03/evkjkv_e.html
97
+ M18/E01/evkjkv_e.html
98
+ M18/E02/evkjkv_e.html
99
+ M18/E03/evkjkv_e.html
100
+ M19/E01/evkjkv_e.html
101
+ M19/E02/evkjkv_e.html
102
+ M19/E03/evkjkv_e.html
103
+ M19/E04/evkjkv_e.html
104
+ M20/E01/evkjkv_e.html
105
+ M20/E02/evkjkv_e.html
106
+ M20/E03/evkjkv_e.html
@@ -0,0 +1,552 @@
1
+ Constituency,Surname,First Name,Gender,Party,Party Abbreviation,Count Number,Required To Reach Quota,Required To Save Deposit,Votes,Result,Candidate Id,Constituency Number,Constituency Ainm
2
+ Galway West, Ó Cuív,Éamon,M,Fianna Fáil,F.F.,14,0,0,9539,Elected,165,23,Gaillimh Thiar
3
+ Louth,Adams,Gerry,M,Sinn Féin,S.F.,11,0,0,10661,Elected,160,31,Lú
4
+ Cork East,Ahern,Barbara,F,Fianna Fáil,F.F.,10,3781,0,4594,,169,4,Corcaigh Thoir
5
+ Waterford,Ahmed,Sheik Mohiuddin,M,Independent,NON-P.,9,0,2443,140,Excluded,160,38,Port Lairge
6
+ Dublin Mid-West,Akpoveta,Patrick,M,Independent,NON-P.,12,0,1813,288,Excluded,187,643,Baile Átha Cliath Thiar-Meán
7
+ Tipperary,Ambrose,Siobhán,F,Fianna Fáil,F.F.,7,0,0,4472,Excluded,160,36,Tiobraid Árann
8
+ Dublin Bay South,Andrews,Chris,M,Sinn Féin,S.F.,8,0,0,3774,Excluded,174,17,Cuan Bhaile Átha Cliath Theas
9
+ Dublin South-Central,Ardagh,Catherine,F,Fianna Fáil,F.F.,11,728,0,5441,Excluded,160,16,Baile Átha Cliath Theas-Lár
10
+ Carlow–Kilkenny,Aylward,Bobby,M,Fianna Fáil,F.F.,11,334,0,9366,Elected,160,1,Ceatharlach-Cill Chainnigh
11
+ Dún Laoghaire,Bailey,Maria,F,Fine Gael,F.G.,7,0,0,10489,Elected,232,21,Dún Laoghaire
12
+ Longford–Westmeath,Bannon,James,M,Fine Gael,F.G.,15,0,0,4639,Excluded,227,30,An Longfort-An Iarmhí
13
+ Cork North-Central,Barry,Mick,M,Solidarity–People Before Profit,AAA-PBP,11,0,0,8041,Elected,160,5,Corcaigh Thuaidh-Lár
14
+ Cork East,Barry,Tom,M,Fine Gael,F.G.,10,0,0,3461,Excluded,162,4,Corcaigh Thoir
15
+ Wicklow,Behan,Joe,M,Independent,NON-P.,10,0,0,3070,Excluded,160,41,Cill Mhantáin
16
+ Kildare North,Beirne,Michael,M,Independent,NON-P.,9,0,2059,372,Excluded,160,26,Cill Dara Thuaidh
17
+ Limerick City,Bennis,Nora,F,Catholic Democrats,C.D.,6,0,1516,673,Excluded,160,28,Cathair Luimnigh
18
+ Cork South-Central,Bogue,Lorna,F,Green Party/Comhaontas Glas,G.P.,11,0,0,2064,Excluded,243,7,Corcaigh Theas-Lár
19
+ Meath East,Bonner,Joseph,M,Independent,NON-P.,9,0,0,2482,Excluded,178,34,An Mhí Thoir
20
+ Offaly,Bopp,Kate,F,Independent,NON-P.,7,0,2199,549,Excluded,161,37,Uíbh Fhailí
21
+ Dún Laoghaire,Boyd Barrett,Richard,M,Solidarity–People Before Profit,AAA-PBP,7,0,0,9775,Elected,233,21,Dún Laoghaire
22
+ Cork East,Bradford,Paul,M,Renua Ireland,R.I.,10,0,0,3244,Excluded,164,4,Corcaigh Thoir
23
+ Louth,Bradley,David,M,Independent,NON-P.,11,0,2495,319,Excluded,161,31,Lú
24
+ Dublin South-Central,Bradley,Neville,M,Direct Democracy Ireland,D.D.I.,11,0,1737,407,Excluded,161,16,Baile Átha Cliath Theas-Lár
25
+ Wicklow,Brady,John,M,Sinn Féin,S.F.,10,0,0,11151,Elected,161,41,Cill Mhantáin
26
+ Kerry,Brassil,John,M,Fianna Fáil,F.F.,11,421,0,8156,Elected,160,24,Ciarraí
27
+ Louth,Breathnach,Declan,M,Fianna Fáil,F.F.,11,0,0,9099,Elected,162,31,Lú
28
+ Sligo–Leitrim,Bree,Declan,M,Independent,NON-P.,15,0,0,3250,Excluded,160,35,Sligeach-Liatroim
29
+ Clare,Breen,Pat,M,Fine Gael,F.G.,12,1313,0,6583,Elected,160,3,An Clár
30
+ Wicklow,Briggs,Sharon,F,Solidarity–People Before Profit,AAA-PBP,10,0,649,1241,Excluded,162,41,Cill Mhantáin
31
+ Dublin South-West,Brophy,Colm,M,Fine Gael,F.G.,16,573,0,7195,Elected,202,19,Baile Átha Cliath Thiar Theas
32
+ Dublin Bay North,Broughan,Tommy,M,Independents 4 Change,I.4.C,15,706,0,5361,Elected,160,13,Cuan Bhaile Átha Cliath Thuaidh
33
+ Wexford,Browne,James,M,Fianna Fáil,F.F.,14,0,0,9827,Elected,160,40,Loch Garman
34
+ Limerick County,Browne,Seamus,M,Sinn Féin,S.F.,6,0,0,3347,Excluded,160,29,Contae Luimnigh
35
+ Dublin Bay North,Bruton,Richard,M,Fine Gael,F.G.,15,0,0,9792,Elected,161,13,Cuan Bhaile Átha Cliath Thuaidh
36
+ Cork East,Buckley,Pat,M,Sinn Féin,S.F.,10,1923,0,5358,Elected,161,4,Corcaigh Thoir
37
+ Cork East,Bullman,Paddy,M,Independent,NON-P.,10,0,2400,241,Excluded,196,4,Corcaigh Thoir
38
+ Dublin Central,Burke,Christy,M,Independent,NON-P.,11,0,0,2406,Excluded,160,11,Baile Átha Cliath Láir
39
+ Dublin South-West,Burke,Declan,M,Independent,NON-P.,16,0,2243,515,Excluded,203,19,Baile Átha Cliath Thiar Theas
40
+ Longford–Westmeath,Burke,Peter,M,Fine Gael,F.G.,15,0,0,5681,Elected,228,30,An Longfort-An Iarmhí
41
+ Dublin West,Burton,Joan,F,Labour Party,LAB.,5,382,0,6445,Elected,176,20,Baile Átha Thiar
42
+ Waterford,Butler,Mary,F,Fianna Fáil,F.F.,9,0,0,10603,Elected,161,38,Port Lairge
43
+ Meath West,Butler,Ray,M,Fine Gael,F.G.,6,3811,0,4432,,178,39,An Mhí Thiar
44
+ Cork South-Central,Buttimer,Jerry,M,Fine Gael,F.G.,11,2020,0,6419,Excluded,244,7,Corcaigh Theas-Lár
45
+ Wexford,Byrne,Aoife,F,Fianna Fáil,F.F.,14,0,0,3164,Excluded,161,40,Loch Garman
46
+ Dublin South-Central,Byrne,Catherine,F,Fine Gael,F.G.,11,0,0,6130,Elected,162,16,Baile Átha Cliath Theas-Lár
47
+ Dublin South-Central,Byrne,Eric,M,Labour Party,LAB.,11,0,0,3297,Excluded,163,16,Baile Átha Cliath Theas-Lár
48
+ Wexford,Byrne,Malcolm,M,Fianna Fáil,F.F.,14,0,0,6115,Excluded,162,40,Loch Garman
49
+ Meath East,Byrne,Thomas,M,Fianna Fáil,F.F.,9,0,0,10818,Elected,179,34,An Mhí Thoir
50
+ Tipperary,Cahill,Jackie,M,Fianna Fáil,F.F.,7,0,0,7414,Elected,161,36,Tiobraid Árann
51
+ Clare,Cahill,Richard,M,Independent,NON-P.,12,0,2152,699,Excluded,161,3,An Clár
52
+ Cavan–Monaghan,Callaghan,Micheal,M,Green Party/Comhaontas Glas,G.P.,10,0,1460,1251,Excluded,160,2,An Cabhán-Muineachán
53
+ Louth,Callan,Kevin,M,Independent,NON-P.,11,0,0,3541,Excluded,163,31,Lú
54
+ Mayo,Calleary,Dara,M,Fianna Fáil,F.F.,10,580,0,9402,Elected,160,32,Maigh Eo
55
+ Galway East,Canney,Seán,M,Independent,NON-P.,7,0,0,8447,Elected,160,22,Gaillimh Thoir
56
+ Galway East,Cannon,Ciaran,M,Fine Gael,F.G.,7,1153,0,7123,Elected,161,22,Gaillimh Thoir
57
+ Cork East,Cannon,Ross,M,Independent,NON-P.,10,0,2494,147,Excluded,197,4,Corcaigh Thoir
58
+ Clare,Carey,Joe,M,Fine Gael,F.G.,12,1486,0,6071,Elected,162,3,An Clár
59
+ Dublin North-West,Carney Boud,Cathleen,F,Sinn Féin,S.F.,9,0,0,2437,Excluded,160,15,Baile Átha Cliath Thiar Thuaidh
60
+ Wexford,Carthy,Ger,M,Independent,NON-P.,14,0,0,3134,Excluded,163,40,Loch Garman
61
+ Dublin West,Casey,Dermot,M,Independent,NON-P.,5,0,1873,225,Excluded,177,20,Baile Átha Thiar
62
+ Wicklow,Casey,Pat,M,Fianna Fáil,F.F.,10,1208,0,6289,Elected,163,41,Cill Mhantáin
63
+ Meath West,Cassells,Shane,M,Fianna Fáil,F.F.,6,0,0,10585,Elected,179,39,An Mhí Thiar
64
+ Sligo–Leitrim,Casserly,Marie,F,Independent,NON-P.,15,0,0,2726,Excluded,161,35,Sligeach-Liatroim
65
+ Dublin West,Chambers,Jack,M,Fianna Fáil,F.F.,5,76,0,6917,Elected,178,20,Baile Átha Thiar
66
+ Mayo,Chambers,Lisa,F,Fianna Fáil,F.F.,10,1044,0,8231,Elected,161,32,Maigh Eo
67
+ Galway West,Charity,James,M,Independent,NON-P.,14,0,1411,1171,Excluded,160,23,Gaillimh Thiar
68
+ Dublin West,Clare,Tj,M,Independent,NON-P.,5,0,884,1092,Excluded,179,20,Baile Átha Thiar
69
+ Dublin Bay North,Clarke,Paul,M,Independent,NON-P.,15,0,2762,306,Excluded,162,13,Cuan Bhaile Átha Cliath Thuaidh
70
+ Dublin Fingal,Clifford-Lee,Lorraine,F,Fianna Fáil,F.F.,10,0,0,3359,Excluded,160,14,Baile Átha Cliath - Fine Gall
71
+ Galway West,Clochartaigh,Trevor Ó,M,Sinn Féin,S.F.,14,2635,0,5755,,161,23,Gaillimh Thiar
72
+ Louth,Coffey,Emma,F,Fianna Fáil,F.F.,11,0,0,3422,Excluded,164,31,Lú
73
+ Waterford,Coffey,Paudie,M,Fine Gael,F.G.,9,1237,0,7209,Excluded,162,38,Port Lairge
74
+ Cork South-West,Coleman,Alan,M,Independent,NON-P.,5,0,0,4955,Excluded,195,8,Corcaigh Thiar Theas
75
+ Roscommon–Galway,Coleman,Tony,M,Independent,NON-P.,8,0,2619,214,Excluded,162,996,Ros Comáin-Gaillimh
76
+ Clare,Colleran-Molloy,Clare,F,Fianna Fáil,F.F.,12,0,0,2639,Excluded,163,3,An Clár
77
+ Cork North-West,Collins,Áine Collins,F,Fine Gael,F.G.,9,0,0,6237,Excluded,179,6,Corcaigh Thiar Thuaidh
78
+ Dublin South-Central,Collins,Joan,F,Independents 4 Change,I.4.C,11,0,0,6195,Elected,164,16,Baile Átha Cliath Theas-Lár
79
+ Cork South-West,Collins,Michael,M,Independent,NON-P.,5,0,0,6765,Elected,193,8,Corcaigh Thiar Theas
80
+ Limerick County,Collins,Niall,M,Fianna Fáil,F.F.,6,0,0,12276,Elected,161,29,Contae Luimnigh
81
+ Cavan–Monaghan,Conlan,Sean,M,Independent,NON-P.,10,0,1003,1665,Excluded,161,2,An Cabhán-Muineachán
82
+ Galway East,Connaughton,Paul,M,Fine Gael,F.G.,7,2457,0,6474,,162,22,Gaillimh Thoir
83
+ Laois,Connell,Thomasina,F,Fine Gael,F.G.,3,4578,0,4233,,160,27,Laois
84
+ Galway West,Connolly,Catherine Martina Ann,F,Independent,NON-P.,14,473,0,4877,Elected,162,23,Gaillimh Thiar
85
+ Galway West,Connolly,John,M,Fianna Fáil,F.F.,14,0,0,3885,Excluded,163,23,Gaillimh Thiar
86
+ Louth,Connor,Anthony,M,Direct Democracy Ireland,D.D.I.,11,0,2138,676,Excluded,165,31,Lú
87
+ Dublin North-West,Conroy,Caroline,F,Green Party/Comhaontas Glas,G.P.,9,0,1194,915,Excluded,161,15,Baile Átha Cliath Thiar Thuaidh
88
+ Roscommon–Galway,Conroy,Eddie,M,Solidarity–People Before Profit,AAA-PBP,8,0,1684,982,Excluded,160,996,Ros Comáin-Gaillimh
89
+ Waterford,Conway,Ciara,F,Labour Party,LAB.,9,0,137,2268,Excluded,163,38,Port Lairge
90
+ Mayo,Conway-Walsh,Rose,F,Sinn Féin,S.F.,10,0,0,6414,Excluded,162,32,Maigh Eo
91
+ Tipperary,Coonan,Noel,M,Fine Gael,F.G.,7,0,0,4782,Excluded,162,36,Tiobraid Árann
92
+ Dublin Bay North,Cooney,Donna,F,Green Party/Comhaontas Glas,G.P.,15,0,2013,1024,Excluded,163,13,Cuan Bhaile Átha Cliath Thuaidh
93
+ Dublin West,Coppinger,Ruth,F,Solidarity–People Before Profit,AAA-PBP,5,0,0,6520,Elected,180,20,Baile Átha Thiar
94
+ Kerry,Corcoran,Donal,M,Renua Ireland,R.I.,11,0,2404,716,Excluded,161,24,Ciarraí
95
+ Offaly,Corcoran Kennedy,Marcella,F,Fine Gael,F.G.,7,0,0,6838,Elected,162,37,Uíbh Fhailí
96
+ Dublin Central,Costello,Joe,M,Labour Party,LAB.,11,0,0,2092,Excluded,161,11,Baile Átha Cliath Láir
97
+ Cork South-Central,Coveney,Simon,M,Fine Gael,F.G.,11,765,0,7965,Elected,245,7,Corcaigh Theas-Lár
98
+ Offaly,Cowen,Barry,M,Fianna Fáil,F.F.,7,0,0,12366,Elected,163,37,Uíbh Fhailí
99
+ Mayo,Cowley,Jerry,M,Independent,NON-P.,10,0,0,3479,Excluded,163,32,Maigh Eo
100
+ Dublin South-Central,Coyne,Liam,M,Social Democrats,S.D.,11,0,0,2434,Excluded,165,16,Baile Átha Cliath Theas-Lár
101
+ Cork North-West,Creed,Michael,M,Fine Gael,F.G.,9,0,0,8869,Elected,178,6,Corcaigh Thiar Thuaidh
102
+ Dublin Bay South,Creighton,Lucinda,F,Renua Ireland,R.I.,8,0,0,4229,Excluded,175,17,Cuan Bhaile Átha Cliath Theas
103
+ Wicklow,Cronin,Avril,F,Fine Gael,F.G.,10,0,546,2091,Excluded,164,41,Cill Mhantáin
104
+ Dún Laoghaire,Cronin,Frank,M,Renua Ireland,R.I.,7,0,1891,1812,Excluded,234,21,Dún Laoghaire
105
+ Kildare North,Cronin,Réada,F,Sinn Féin,S.F.,9,0,0,3205,Excluded,161,26,Cill Dara Thuaidh
106
+ Kildare South,Crowe,Declan,M,Independent,NON-P.,6,0,0,2143,Excluded,174,187,Cill Dara Theas
107
+ Dublin South-West,Crowe,Seán,M,Sinn Féin,S.F.,16,0,0,6974,Elected,204,19,Baile Átha Cliath Thiar Theas
108
+ Galway West,Cubbard,Mike,M,Independent,NON-P.,14,0,145,2122,Excluded,164,23,Gaillimh Thiar
109
+ Wicklow,Cuffe,Jennifer,F,Fianna Fáil,F.F.,10,0,0,2990,Excluded,165,41,Cill Mhantáin
110
+ Waterford,Cullinane,David,M,Sinn Féin,S.F.,9,0,0,9739,Elected,164,38,Port Lairge
111
+ Dublin Mid-West,Curran,John,M,Fianna Fáil,F.F.,12,0,0,6971,Elected,188,643,Baile Átha Cliath Thiar-Meán
112
+ Roscommon–Galway,Curran,Shane,M,Fianna Fáil,F.F.,8,0,467,2006,Excluded,161,996,Ros Comáin-Gaillimh
113
+ Cork East,Curtin,Ken,M,Social Democrats,S.D.,10,0,1071,1386,Excluded,172,4,Corcaigh Thoir
114
+ Dublin Fingal,Daly,Clare,F,Independents 4 Change,I.4.C,10,0,0,9480,Elected,161,14,Baile Átha Cliath - Fine Gall
115
+ Cork South-West,Daly,Jim,M,Fine Gael,F.G.,5,1016,0,7370,Elected,189,8,Corcaigh Thiar Theas
116
+ Wexford,D'arcy,Michael,M,Fine Gael,F.G.,14,299,0,7798,Elected,164,40,Loch Garman
117
+ Dublin Rathdown,Daveron,Alan,M,Renua Ireland,R.I.,6,0,1514,1055,Excluded,223,18,Baile Átha Cliath-Ráth an Dúin
118
+ Galway West,Daveron,Nicola,F,Renua Ireland,R.I.,14,0,1653,994,Excluded,166,23,Gaillimh Thiar
119
+ Dublin Fingal,De Brun,Dr. Marcus,M,Independent,NON-P.,10,0,1884,627,Excluded,162,14,Baile Átha Cliath - Fine Gall
120
+ Louth,Dearey,Mark,M,Green Party/Comhaontas Glas,G.P.,11,0,0,3187,Excluded,166,31,Lú
121
+ Waterford,Deasy,John,M,Fine Gael,F.G.,9,670,0,7641,Elected,165,38,Port Lairge
122
+ Kerry,Deenihan,Jimmy,M,Fine Gael,F.G.,11,3434,0,6489,,162,24,Ciarraí
123
+ Carlow–Kilkenny,Deering,Pat,M,Fine Gael,F.G.,11,520,0,6562,Elected,161,1,Ceatharlach-Cill Chainnigh
124
+ Cork North-West,Dennehy,Nigel,M,Sinn Féin,S.F.,9,0,0,3238,Excluded,182,6,Corcaigh Thiar Thuaidh
125
+ Dublin South-West,Dermody,Anne-Marie,F,Fine Gael,F.G.,16,1709,0,6463,,205,19,Baile Átha Cliath Thiar Theas
126
+ Dublin South-Central,Devine,Máire,F,Sinn Féin,S.F.,11,0,0,3332,Excluded,166,16,Baile Átha Cliath Theas-Lár
127
+ Dún Laoghaire,Devlin,Cormac,M,Fianna Fáil,F.F.,7,0,0,4665,Excluded,235,21,Dún Laoghaire
128
+ Dublin North-West,Dignam,Jimmy,M,Workers’ Party,W.P.,9,0,1551,692,Excluded,162,15,Baile Átha Cliath Thiar Thuaidh
129
+ Tipperary,Dillon,Michael,M,Independent,NON-P.,7,0,3011,238,Excluded,163,36,Tiobraid Árann
130
+ Donegal,Doherty,Gary,M,Sinn Féin,S.F.,13,0,0,4136,Excluded,160,9,Dún na nGall
131
+ Donegal,Doherty,Pearse,M,Sinn Féin,S.F.,13,0,0,10300,Elected,161,9,Dún na nGall
132
+ Meath East,Doherty,Regina,F,Fine Gael,F.G.,9,736,0,6830,Elected,180,34,An Mhí Thoir
133
+ Dublin West,Donnelly,Paul,M,Sinn Féin,S.F.,5,1300,0,6034,,181,20,Baile Átha Thiar
134
+ Wicklow,Donnelly,Stephen,M,Social Democrats,S.D.,10,0,0,14348,Elected,166,41,Cill Mhantáin
135
+ Dublin Central,Donohoe,Paschal,M,Fine Gael,F.G.,11,475,0,3226,Elected,162,11,Baile Átha Cliath Láir
136
+ Clare,Dooley,Timmy,M,Fianna Fáil,F.F.,12,0,0,10215,Elected,164,3,An Clár
137
+ Wicklow,Doyle,Andrew,M,Fine Gael,F.G.,10,1074,0,6045,Elected,167,41,Cill Mhantáin
138
+ Wicklow,Doyle,Anna,F,Solidarity–People Before Profit,AAA-PBP,10,0,2213,539,Excluded,168,41,Cill Mhantáin
139
+ Dublin South-West,Duff,Mick,M,Labour Party,LAB.,16,0,684,1743,Excluded,206,19,Baile Átha Cliath Thiar Theas
140
+ Dublin South-West,Duffy,Francis Noel,M,Green Party/Comhaontas Glas,G.P.,16,0,1467,1297,Excluded,207,19,Baile Átha Cliath Thiar Theas
141
+ Kildare North,Dunne,Ger,M,Independent,NON-P.,9,0,2187,249,Excluded,162,26,Cill Dara Thuaidh
142
+ Waterford,Dunphy,Úna,F,Solidarity–People Before Profit,AAA-PBP,9,0,729,1646,Excluded,166,38,Port Lairge
143
+ Kildare North,Durkan,Bernard,M,Fine Gael,F.G.,9,898,0,6147,Elected,163,26,Cill Dara Thuaidh
144
+ Cavan–Monaghan,Durkan,Mike,M,Fianna Fáil,F.F.,10,0,0,2909,Excluded,162,2,An Cabhán-Muineachán
145
+ Wexford,Dwyer,John,M,Independent,NON-P.,14,0,1625,1265,Excluded,165,40,Loch Garman
146
+ Dublin North-West,Ellis,Dessie,M,Sinn Féin,S.F.,9,0,0,7571,Elected,163,15,Baile Átha Cliath Thiar Thuaidh
147
+ Meath West,English,Damien,M,Fine Gael,F.G.,6,0,0,8123,Elected,180,39,An Mhí Thiar
148
+ Longford–Westmeath,Fagan,Brian,M,Independent,NON-P.,15,0,1711,897,Excluded,229,30,An Longfort-An Iarmhí
149
+ Galway East,Fahy,Michael,M,Independent,NON-P.,7,0,410,2358,Excluded,163,22,Gaillimh Thoir
150
+ Roscommon–Galway,Fallon,Thomas Declan,M,Independent,NON-P.,8,0,2768,75,Excluded,163,996,Ros Comáin-Gaillimh
151
+ Dublin Fingal,Farrell,Alan,M,Fine Gael,F.G.,10,100,0,7514,Elected,163,14,Baile Átha Cliath - Fine Gall
152
+ Roscommon–Galway,Farrell,Anne,F,Renua Ireland,R.I.,8,0,2240,520,Excluded,164,996,Ros Comáin-Gaillimh
153
+ Mayo,Farrington,Michael Patrick,M,Renua Ireland,R.I.,10,0,1524,1574,Excluded,164,32,Maigh Eo
154
+ Dublin South-West,Fay,Sandra,F,Solidarity–People Before Profit,AAA-PBP,16,0,0,3241,Excluded,208,19,Baile Átha Cliath Thiar Theas
155
+ Galway West,Feeney,Patrick,M,Independent,NON-P.,14,0,2657,22,Excluded,167,23,Gaillimh Thiar
156
+ Wicklow,Ferris,Anne,F,Labour Party,LAB.,10,0,0,2634,Excluded,169,41,Cill Mhantáin
157
+ Kerry,Ferris,Martin,M,Sinn Féin,S.F.,11,249,0,9458,Elected,163,24,Ciarraí
158
+ Offaly,Fettes,Christopher,M,Green Party/Comhaontas Glas,G.P.,7,0,2221,525,Excluded,164,37,Uíbh Fhailí
159
+ Sligo–Leitrim,Filan,Finbarr,M,Renua Ireland,R.I.,15,0,2205,881,Excluded,163,35,Sligeach-Liatroim
160
+ Cork South-Central,Finn,Mick,M,Independent,NON-P.,11,0,0,2378,Excluded,246,7,Corcaigh Theas-Lár
161
+ Kerry,Finucane,Brian,M,Solidarity–People Before Profit,AAA-PBP,11,0,1875,981,Excluded,164,24,Ciarraí
162
+ Carlow–Kilkenny,Fitzgerald,David,M,Fine Gael,F.G.,11,0,0,5017,Excluded,162,1,Ceatharlach-Cill Chainnigh
163
+ Dublin Mid-West,Fitzgerald,Frances,F,Fine Gael,F.G.,12,0,0,9028,Elected,189,643,Baile Átha Cliath Thiar-Meán
164
+ Cork North-West,Fitzgerald,Jason,M,Renua Ireland,R.I.,9,0,1056,1568,Excluded,188,6,Corcaigh Thiar Thuaidh
165
+ Kerry,Fitzgerald,Michael,M,Green Party/Comhaontas Glas,G.P.,11,0,2082,1011,Excluded,165,24,Ciarraí
166
+ Kildare North,Fitzgerald,Shane,M,Renua Ireland,R.I.,9,0,1212,994,Excluded,164,26,Cill Dara Thuaidh
167
+ Tipperary,Fitzgibbon,Gearóid,M,Green Party/Comhaontas Glas,G.P.,7,0,1908,1341,Excluded,164,36,Tiobraid Árann
168
+ Kerry,Fitzgibbon,Mary Elizabeth,F,Independent,NON-P.,11,0,2552,635,Excluded,166,24,Ciarraí
169
+ Roscommon–Galway,Fitzmaurice,Michael,M,Independent,NON-P.,8,0,0,9750,Elected,165,996,Ros Comáin-Gaillimh
170
+ Offaly,Fitzpatrick,Eddie,M,Fianna Fáil,F.F.,7,2289,0,3394,Excluded,165,37,Uíbh Fhailí
171
+ Dublin Central,Fitzpatrick,Mary,F,Fianna Fáil,F.F.,11,0,0,2508,Excluded,163,11,Baile Átha Cliath Láir
172
+ Louth,Fitzpatrick,Peter,M,Fine Gael,F.G.,11,2123,0,6408,Elected,167,31,Lú
173
+ Dublin South-West,Fitzpatrick,Peter,M,Independent,NON-P.,16,0,0,2812,Excluded,209,19,Baile Átha Cliath Thiar Theas
174
+ Laois,Flanagan,Charlie,M,Fine Gael,F.G.,3,193,0,8370,Elected,161,27,Laois
175
+ Donegal,Flanagan,Paula Mary,F,Green Party/Comhaontas Glas,G.P.,13,0,2612,428,Excluded,162,9,Dún na nGall
176
+ Dublin Bay North,Flanagan,Terence,M,Renua Ireland,R.I.,15,0,0,3205,Excluded,164,13,Cuan Bhaile Átha Cliath Thuaidh
177
+ Laois,Fleming,Seán,M,Fianna Fáil,F.F.,3,0,0,13626,Elected,162,27,Laois
178
+ Dublin Bay South,Flynn,Mannix,M,Independent,NON-P.,8,0,338,1525,Excluded,176,17,Cuan Bhaile Átha Cliath Theas
179
+ Offaly,Foley,John,M,Independent,NON-P.,7,0,0,4200,Excluded,166,37,Uíbh Fhailí
180
+ Mayo,Forkin,Sean,M,Independent,NON-P.,10,0,3141,42,Excluded,165,32,Maigh Eo
181
+ Wexford,Foxe,Caroline,F,Independent,NON-P.,14,0,2031,930,Excluded,166,40,Loch Garman
182
+ Dublin Fingal,Fuller,Roslyn,F,Independent,NON-P.,10,0,1742,772,Excluded,164,14,Baile Átha Cliath - Fine Gall
183
+ Carlow–Kilkenny,Funchion,Kathleen,F,Sinn Féin,S.F.,11,0,0,8700,Elected,163,1,Ceatharlach-Cill Chainnigh
184
+ Limerick City,Gaffney,James,M,Green Party/Comhaontas Glas,G.P.,6,0,1258,964,Excluded,161,28,Cathair Luimnigh
185
+ Sligo–Leitrim,Gallagher,Nigel,M,Solidarity–People Before Profit,AAA-PBP,15,0,1044,1768,Excluded,164,35,Sligeach-Liatroim
186
+ Donegal,Gallagher,Pat The Cope,M,Fianna Fáil,F.F.,13,0,0,10198,Elected,163,9,Dún na nGall
187
+ Dublin Central,Gannon,Gary,M,Social Democrats,S.D.,11,974,0,2307,Excluded,164,11,Baile Átha Cliath Láir
188
+ Dublin South-Central,Gargan,Michael,M,Renua Ireland,R.I.,11,0,1201,893,Excluded,167,16,Baile Átha Cliath Theas-Lár
189
+ Kerry,Gaynor,Henry,M,Independent,NON-P.,11,0,3146,147,Excluded,167,24,Ciarraí
190
+ Longford–Westmeath,Gerety-Quinn,Connie,F,Fianna Fáil,F.F.,15,0,0,3943,Excluded,230,30,An Longfort-An Iarmhí
191
+ Dublin Central,Gilbourne,Jacqui,F,Renua Ireland,R.I.,11,0,1142,330,Excluded,165,11,Baile Átha Cliath Láir
192
+ Carlow–Kilkenny,Gilligan,Keith Martin,M,Independent,NON-P.,11,0,2462,456,Excluded,164,1,Ceatharlach-Cill Chainnigh
193
+ Meath East,Gilroy,Ben,M,Direct Democracy Ireland,D.D.I.,9,0,1689,794,Excluded,181,34,An Mhí Thoir
194
+ Dublin Mid-West,Gogarty,Paul Nicholas,M,Independent,NON-P.,12,0,0,2522,Excluded,190,643,Baile Átha Cliath Thiar-Meán
195
+ Meath West,Golden,Trevor,M,Independent,NON-P.,6,0,0,1718,Excluded,181,39,An Mhí Thiar
196
+ Dublin Central,Gorman,William D.j.,M,Independent,NON-P.,11,0,1454,27,Excluded,166,11,Baile Átha Cliath Láir
197
+ Dublin Bay South,Gorman,William D.j.,M,Independent,NON-P.,8,0,1889,97,Excluded,177,17,Cuan Bhaile Átha Cliath Theas
198
+ Cork North-Central,Gould,Thomas,M,Sinn Féin,S.F.,11,0,0,3773,Excluded,161,5,Corcaigh Thuaidh-Lár
199
+ Galway West,Grealish,Noel,M,Independent,NON-P.,14,0,0,7187,Elected,168,23,Gaillimh Thiar
200
+ Louth,Greene,Patrick,M,Direct Democracy Ireland,D.D.I.,11,0,2687,127,Excluded,168,31,Lú
201
+ Kerry,Griffin,Brendan,M,Fine Gael,F.G.,11,0,0,9674,Elected,169,24,Ciarraí
202
+ Cork North-West,Griffin,Shirley,F,Independent,NON-P.,9,0,2497,439,Excluded,186,6,Corcaigh Thiar Thuaidh
203
+ Sligo–Leitrim,Guckian,Des,M,Independent,NON-P.,15,0,1964,1060,Excluded,165,35,Sligeach-Liatroim
204
+ Dublin Bay North,Guerin,Jimmy,M,Independent,NON-P.,15,0,2286,756,Excluded,165,13,Cuan Bhaile Átha Cliath Thuaidh
205
+ Dublin Central,Guinan,Kerry,F,Independent,NON-P.,11,0,1423,58,Excluded,167,11,Baile Átha Cliath Láir
206
+ Waterford,Halligan,John,M,Independent,NON-P.,9,0,0,8306,Elected,167,38,Port Lairge
207
+ Dún Laoghaire,Hanafin,Mary,F,Fianna Fáil,F.F.,7,3841,0,6478,,236,21,Dún Laoghaire
208
+ Dublin South-Central,Hand,Paul,M,Independent,NON-P.,11,0,0,2011,Excluded,168,16,Baile Átha Cliath Theas-Lár
209
+ Meath East,Hannigan,Dominic,M,Labour Party,LAB.,9,0,0,2270,Excluded,182,34,An Mhí Thoir
210
+ Offaly,Hannigan,Joe,M,Independent,NON-P.,7,0,0,5188,Excluded,167,37,Uíbh Fhailí
211
+ Cork South-West,Harrington,Noel,M,Fine Gael,F.G.,5,2607,0,6433,,190,8,Corcaigh Thiar Theas
212
+ Cork South-Central,Harris,Joe,M,Independent,NON-P.,11,0,2397,350,Excluded,247,7,Corcaigh Theas-Lár
213
+ Wicklow,Harris,Simon,M,Fine Gael,F.G.,10,0,0,10819,Elected,170,41,Cill Mhantáin
214
+ Donegal,Harte,Paddy,M,Fine Gael,F.G.,13,0,0,2831,Excluded,164,9,Dún na nGall
215
+ Clare,Harty,Michael,M,Independent,NON-P.,12,0,0,8629,Elected,165,3,An Clár
216
+ Cork East,Harty,Natasha,F,Green Party/Comhaontas Glas,G.P.,10,0,1835,806,Excluded,165,4,Corcaigh Thoir
217
+ Dublin Bay North,Haughey,Seán,M,Fianna Fáil,F.F.,15,0,0,8007,Elected,166,13,Cuan Bhaile Átha Cliath Thuaidh
218
+ Limerick City,Hayes,Des,M,Independent,NON-P.,6,0,2025,254,Excluded,162,28,Cathair Luimnigh
219
+ Tipperary,Hayes,Tom,M,Fine Gael,F.G.,7,2555,0,6218,,165,36,Tiobraid Árann
220
+ Dublin Mid-West,Healy,Christopher,M,Direct Democracy Ireland,D.D.I.,12,0,1976,167,Excluded,191,643,Baile Átha Cliath Thiar-Meán
221
+ Tipperary,Healy,Seamus,M,Independent,NON-P.,7,118,0,7452,Elected,166,36,Tiobraid Árann
222
+ Longford–Westmeath,Healy,Stephanie,F,Direct Democracy Ireland,D.D.I.,15,0,2631,132,Excluded,231,30,An Longfort-An Iarmhí
223
+ Galway West,Healy Eames,Dr. Fidelma,F,Independent,NON-P.,14,0,1021,1394,Excluded,169,23,Gaillimh Thiar
224
+ Kerry,Healy-Rae,Danny,M,Independent,NON-P.,11,0,0,9991,Elected,170,24,Ciarraí
225
+ Kerry,Healy-Rae,Michael,M,Independent,NON-P.,11,0,0,20378,Elected,171,24,Ciarraí
226
+ Cork South-West,Heaney,Theresa,F,Catholic Democrats,C.D.,5,0,2018,686,Excluded,200,8,Corcaigh Thiar Theas
227
+ Limerick County,Heffernan,James,M,Social Democrats,S.D.,6,0,0,3270,Excluded,162,29,Contae Luimnigh
228
+ Dublin Bay North,Heney,Deirdre,F,Fianna Fáil,F.F.,15,0,0,3360,Excluded,167,13,Cuan Bhaile Átha Cliath Thuaidh
229
+ Limerick City,Hennelly,Sarah Jane,F,Social Democrats,S.D.,6,0,0,2747,Excluded,163,28,Cathair Luimnigh
230
+ Dublin Mid-West,Hennessy,Lorraine,F,Workers’ Party,W.P.,12,0,1543,502,Excluded,192,643,Baile Átha Cliath Thiar-Meán
231
+ Roscommon–Galway,Hennessy,Miriam,F,Green Party/Comhaontas Glas,G.P.,8,0,2549,286,Excluded,166,996,Ros Comáin-Gaillimh
232
+ Kildare South,Heydon,Martin,M,Fine Gael,F.G.,6,0,0,7851,Elected,175,187,Cill Dara Theas
233
+ Galway East,Higgins,Lorraine,F,Labour Party,LAB.,7,0,0,4531,Excluded,164,22,Gaillimh Thoir
234
+ Galway West,Hoade,Mary,F,Fianna Fáil,F.F.,14,0,5,2205,Excluded,170,23,Gaillimh Thiar
235
+ Wexford,Hogan,Julie,F,Fine Gael,F.G.,14,0,1682,1214,Excluded,167,40,Loch Garman
236
+ Longford–Westmeath,Hogan,Paul,M,Sinn Féin,S.F.,15,3226,0,5270,,232,30,An Longfort-An Iarmhí
237
+ Dublin South-West,Holland,Sarah,F,Sinn Féin,S.F.,16,0,0,2616,Excluded,210,19,Baile Átha Cliath Thiar Theas
238
+ Galway West,Holohan,Tommy,M,Solidarity–People Before Profit,AAA-PBP,14,0,1607,1017,Excluded,171,23,Gaillimh Thiar
239
+ Roscommon–Galway,Hopkins,Maura,F,Fine Gael,F.G.,8,2108,0,6812,,167,996,Ros Comáin-Gaillimh
240
+ Cork South-Central,Hourihane,Elizabeth,F,Independent,NON-P.,11,0,2452,304,Excluded,248,7,Corcaigh Theas-Lár
241
+ Clare,Howard,Mary,F,Fine Gael,F.G.,12,0,732,2053,Excluded,166,3,An Clár
242
+ Wexford,Howlin,Brendan,M,Labour Party,LAB.,14,0,0,10574,Elected,168,40,Loch Garman
243
+ Dublin North-West,Hughes,Bernie,F,Independent,NON-P.,9,0,859,1120,Excluded,164,15,Baile Átha Cliath Thiar Thuaidh
244
+ Cavan–Monaghan,Humphreys,Heather,F,Fine Gael,F.G.,10,0,0,12391,Elected,163,2,An Cabhán-Muineachán
245
+ Dublin Bay South,Humphreys,Kevin,M,Labour Party,LAB.,8,1720,0,4205,,178,17,Cuan Bhaile Átha Cliath Theas
246
+ Dún Laoghaire,Hunt,Carol,F,Independent,NON-P.,7,0,93,3152,Excluded,237,21,Dún Laoghaire
247
+ Wicklow,Hutchinson,Katrina,F,Direct Democracy Ireland,D.D.I.,10,0,2651,168,Excluded,171,41,Cill Mhantáin
248
+ Longford–Westmeath,Jackson,Donal,M,Independent,NON-P.,15,0,2712,51,Excluded,233,30,An Longfort-An Iarmhí
249
+ Donegal,Jackson,Tim,M,Independent,NON-P.,13,0,0,3580,Excluded,165,9,Dún na nGall
250
+ Mayo,Jordan,Peter,M,Independent,NON-P.,10,0,2986,176,Excluded,166,32,Maigh Eo
251
+ Mayo,Kamal Uddin,Mohammad,M,Independent,NON-P.,10,0,3033,144,Excluded,167,32,Maigh Eo
252
+ Wicklow,Kearns,Bob,M,Independent,NON-P.,10,0,2748,112,Excluded,172,41,Cill Mhantáin
253
+ Dublin South-West,Kearns,Pamela,F,Labour Party,LAB.,16,0,0,2635,Excluded,211,19,Baile Átha Cliath Thiar Theas
254
+ Dublin Mid-West,Keating,Derek,M,Fine Gael,F.G.,12,0,0,2337,Excluded,193,643,Baile Átha Cliath Thiar-Meán
255
+ Galway East,Keaveney,Colm,M,Fianna Fáil,F.F.,7,0,0,5436,Excluded,165,22,Gaillimh Thoir
256
+ Wicklow,Keddy,Charlie,M,Independent,NON-P.,10,0,2348,447,Excluded,173,41,Cill Mhantáin
257
+ Dublin North-West,Keegan,Andrew,M,Solidarity–People Before Profit,AAA-PBP,9,0,0,1434,Excluded,165,15,Baile Átha Cliath Thiar Thuaidh
258
+ Wexford,Kehoe,Paul,M,Fine Gael,F.G.,14,2240,0,7696,Elected,169,40,Loch Garman
259
+ Dublin Bay South,Keigher,John Dominic,M,Independent,NON-P.,8,0,1949,37,Excluded,179,17,Cuan Bhaile Átha Cliath Theas
260
+ Cork North-Central,Kelleher,Billy,M,Fianna Fáil,F.F.,11,0,0,14286,Elected,162,5,Corcaigh Thuaidh-Lár
261
+ Dublin Fingal,Kelleher,Terry,M,Solidarity–People Before Profit,AAA-PBP,10,0,307,2067,Excluded,165,14,Baile Átha Cliath - Fine Gall
262
+ Tipperary,Kelly,Alan,M,Labour Party,LAB.,7,1242,0,7746,Elected,167,36,Tiobraid Árann
263
+ Roscommon–Galway,Kelly,John,M,Labour Party,LAB.,8,0,1414,1211,Excluded,168,996,Ros Comáin-Gaillimh
264
+ Wexford,Kelly,Leonard,M,Social Democrats,S.D.,14,0,808,1635,Excluded,170,40,Loch Garman
265
+ Cork South-Central,Kenneally,Ciarán,M,Renua Ireland,R.I.,11,0,1771,887,Excluded,249,7,Corcaigh Theas-Lár
266
+ Kildare South,Kennedy,Mary,F,Renua Ireland,R.I.,6,0,1513,787,Excluded,176,187,Cill Dara Theas
267
+ Donegal,Kennedy,Niamh,F,Independent,NON-P.,13,0,998,1836,Excluded,166,9,Dún na nGall
268
+ Mayo,Kenny,Enda,M,Fine Gael,F.G.,10,0,0,13318,Elected,168,32,Maigh Eo
269
+ Dublin Mid-West,Kenny,Gino,M,Solidarity–People Before Profit,AAA-PBP,12,710,0,4629,Elected,194,643,Baile Átha Cliath Thiar-Meán
270
+ Sligo–Leitrim,Kenny,Martin,M,Sinn Féin,S.F.,15,0,0,6356,Elected,166,35,Sligeach-Liatroim
271
+ Meath East,Keogan,Sharon,F,Independent,NON-P.,9,0,783,1528,Excluded,183,34,An Mhí Thoir
272
+ Limerick County,Keogh,Mark,M,Direct Democracy Ireland,D.D.I.,6,0,2546,222,Excluded,163,29,Contae Luimnigh
273
+ Cork North-Central,Keohane,Ger,M,Independent,NON-P.,11,0,1259,912,Excluded,163,5,Corcaigh Thuaidh-Lár
274
+ Roscommon–Galway,Kerrane,Claire,F,Sinn Féin,S.F.,8,0,0,3075,Excluded,169,996,Ros Comáin-Gaillimh
275
+ Dublin Mid-West,Khan,Dr. Haroon,M,Independent,NON-P.,12,0,1881,268,Excluded,195,643,Baile Átha Cliath Thiar-Meán
276
+ Cork North-Central,Kiely,Thomas,M,Independent,NON-P.,11,0,2011,473,Excluded,164,5,Corcaigh Thuaidh-Lár
277
+ Dublin Mid-West,Kivlehan,Tom,M,Green Party/Comhaontas Glas,G.P.,12,0,1713,388,Excluded,196,643,Baile Átha Cliath Thiar-Meán
278
+ Galway West,Kyne,Seán,M,Fine Gael,F.G.,14,122,0,6136,Elected,172,23,Gaillimh Thiar
279
+ Dublin South-West,Lahart,John,M,Fianna Fáil,F.F.,16,0,0,9647,Elected,212,19,Baile Átha Cliath Thiar Theas
280
+ Meath West,Lawes,Alan,M,Direct Democracy Ireland,D.D.I.,6,0,974,1279,Excluded,182,39,An Mhí Thiar
281
+ Kildare North,Lawless,James,M,Fianna Fáil,F.F.,9,344,0,7461,Elected,165,26,Cill Dara Thuaidh
282
+ Kildare North,Lawlor,Anthony,M,Fine Gael,F.G.,9,2386,0,5406,Excluded,166,26,Cill Dara Thuaidh
283
+ Offaly,Leahy,John,M,Renua Ireland,R.I.,7,0,0,4596,Excluded,168,37,Uíbh Fhailí
284
+ Dublin Mid-West,Leonard,Clare,F,Independent,NON-P.,12,0,1734,358,Excluded,197,643,Baile Átha Cliath Thiar-Meán
285
+ Cork East,Leonardi-Roche,Ciara,F,Solidarity–People Before Profit,AAA-PBP,10,0,0,1999,Excluded,171,4,Corcaigh Thoir
286
+ Cork East,Linehan-Foley,Mary,F,Independent,NON-P.,10,0,0,3145,Excluded,173,4,Corcaigh Thoir
287
+ Wexford,Lloyd,David,M,Direct Democracy Ireland,D.D.I.,14,0,2859,128,Excluded,171,40,Loch Garman
288
+ Tipperary,Lowry,Michael,M,Independent,NON-P.,7,0,0,13064,Elected,168,36,Tiobraid Árann
289
+ Cork South-Central,Lynch,Ciarán,M,Labour Party,LAB.,11,0,100,2417,Excluded,250,7,Corcaigh Theas-Lár
290
+ Dublin Bay South,Lynch,Glenna,F,Social Democrats,S.D.,8,0,0,2652,Excluded,180,17,Cuan Bhaile Átha Cliath Theas
291
+ Clare,Lynch,Ian,M,Independent,NON-P.,12,0,1276,1494,Excluded,167,3,An Clár
292
+ Cork North-Central,Lynch,Kathleen,F,Labour Party,LAB.,11,2744,0,3723,Excluded,165,5,Corcaigh Thuaidh-Lár
293
+ Dublin Bay North,Lyons,John,M,Solidarity–People Before Profit,AAA-PBP,15,0,0,4409,Excluded,168,13,Cuan Bhaile Átha Cliath Thuaidh
294
+ Dublin North-West,Lyons,John,M,Labour Party,LAB.,9,0,0,2750,Excluded,166,15,Baile Átha Cliath Thiar Thuaidh
295
+ Carlow–Kilkenny,Mac Liam,Conor,M,Solidarity–People Before Profit,AAA-PBP,11,0,1687,1120,Excluded,165,1,Ceatharlach-Cill Chainnigh
296
+ Sligo–Leitrim,Mac Manus,Chris,M,Sinn Féin,S.F.,15,0,0,4747,Excluded,167,35,Sligeach-Liatroim
297
+ Dublin Bay North,Macdonncha,Mícheál,M,Sinn Féin,S.F.,15,0,0,3527,Excluded,169,13,Cuan Bhaile Átha Cliath Thuaidh
298
+ Donegal,MacLochlainn,Pádraig,M,Sinn Féin,S.F.,13,2320,0,5742,Excluded,167,9,Dún na nGall
299
+ Sligo–Leitrim,MacSharry,Marc,M,Fianna Fáil,F.F.,15,0,0,8856,Elected,168,35,Sligeach-Liatroim
300
+ Dublin Bay South,Macstiofain,Alan,M,Independent,NON-P.,8,0,1751,235,Excluded,181,17,Cuan Bhaile Átha Cliath Theas
301
+ Dublin Rathdown,Madigan,Josepha,F,Fine Gael,F.G.,6,787,0,6668,Elected,224,18,Baile Átha Cliath-Ráth an Dúin
302
+ Longford–Westmeath,Magan,Manchán,M,Green Party/Comhaontas Glas,G.P.,15,0,1370,1102,Excluded,234,30,An Longfort-An Iarmhí
303
+ Meath West,Malone,John,M,Independent,NON-P.,6,0,1928,439,Excluded,183,39,An Mhí Thiar
304
+ Wexford,Maloney,David,M,Independent,NON-P.,14,0,2511,476,Excluded,172,40,Loch Garman
305
+ Dublin South-West,Maloney,Eamonn,M,Independent,NON-P.,16,0,1056,1627,Excluded,213,19,Baile Átha Cliath Thiar Theas
306
+ Cork North-West,Manning,Cormac,M,Green Party/Comhaontas Glas,G.P.,9,0,1435,1354,Excluded,187,6,Corcaigh Thiar Thuaidh
307
+ Carlow–Kilkenny,Manning,Paddy,M,Independent,NON-P.,11,0,1776,1078,Excluded,166,1,Ceatharlach-Cill Chainnigh
308
+ Mayo,Manning,Stephen,M,Independent,NON-P.,10,0,3009,157,Excluded,169,32,Maigh Eo
309
+ Dublin Fingal,Martin,Barry,M,Independents 4 Change,I.4.C,10,0,0,2412,Excluded,166,14,Baile Átha Cliath - Fine Gall
310
+ Dublin Rathdown,Martin,Catherine,F,Green Party/Comhaontas Glas,G.P.,6,854,0,4122,Elected,225,18,Baile Átha Cliath-Ráth an Dúin
311
+ Cork South-Central,Martin,Micheál,M,Fianna Fáil,F.F.,11,0,0,11346,Elected,251,7,Corcaigh Theas-Lár
312
+ Dublin Rathdown,Mathews,Peter,M,Independent,NON-P.,6,0,328,2021,Excluded,226,18,Baile Átha Cliath-Ráth an Dúin
313
+ Wicklow,Matthews,Steven,M,Green Party/Comhaontas Glas,G.P.,10,0,1123,1350,Excluded,174,41,Cill Mhantáin
314
+ Dublin North-West,Mcauliffe,Paul,M,Fianna Fáil,F.F.,9,2346,0,4750,Excluded,167,15,Baile Átha Cliath Thiar Thuaidh
315
+ Donegal,McBrearty,Frank,M,Independent,NON-P.,13,0,1074,1914,Excluded,168,9,Dún na nGall
316
+ Cork East,McCarthy,Kieran,M,Independent,NON-P.,10,0,828,1635,Excluded,170,4,Corcaigh Thoir
317
+ Cork South-West,McCarthy,Michael,M,Labour Party,LAB.,5,0,0,3035,Excluded,191,8,Corcaigh Thiar Theas
318
+ Cork East,McCarthy,Noel,M,Fine Gael,F.G.,10,0,0,4406,Excluded,167,4,Corcaigh Thoir
319
+ Cork South-West,McCarthy,Rachel,F,Sinn Féin,S.F.,5,0,0,3656,Excluded,194,8,Corcaigh Thiar Theas
320
+ Donegal,McConalogue,Charlie,M,Fianna Fáil,F.F.,13,0,0,12533,Elected,169,9,Dún na nGall
321
+ Cavan–Monaghan,McDermott,Michael,M,Direct Democracy Ireland,D.D.I.,10,0,2504,475,Excluded,164,2,An Cabhán-Muineachán
322
+ Clare,McDonagh,Michael Malty,M,Fianna Fáil,F.F.,12,3639,0,4726,Excluded,168,3,An Clár
323
+ Meath East,McDonagh,Seamus,M,Workers’ Party,W.P.,9,0,2253,326,Excluded,184,34,An Mhí Thoir
324
+ Dublin Central,McDonald,Mary Lou,F,Sinn Féin,S.F.,11,0,0,5770,Elected,168,11,Baile Átha Cliath Láir
325
+ Meath West,McElhinney,Tracy,F,Labour Party,LAB.,6,0,1173,1166,Excluded,184,39,An Mhí Thiar
326
+ Kildare South,McEneaney,Suzanne,F,Green Party/Comhaontas Glas,G.P.,6,0,1464,836,Excluded,177,187,Cill Dara Theas
327
+ Meath East,McEntee,Helen,F,Fine Gael,F.G.,9,390,0,7556,Elected,185,34,An Mhí Thoir
328
+ Longford–Westmeath,McFadden,Gabrielle,F,Fine Gael,F.G.,15,0,0,2836,Excluded,235,30,An Longfort-An Iarmhí
329
+ Donegal,McGarvey,Ian,M,Independent,NON-P.,13,0,2066,982,Excluded,170,9,Dún na nGall
330
+ Dublin Bay North,McGrath,Finian,M,Independent,NON-P.,15,1080,0,5878,Elected,170,13,Cuan Bhaile Átha Cliath Thuaidh
331
+ Tipperary,McGrath,Mattie,M,Independent,NON-P.,7,0,0,11237,Elected,169,36,Tiobraid Árann
332
+ Cork South-Central,McGrath,Michael,M,Fianna Fáil,F.F.,11,0,0,11795,Elected,252,7,Corcaigh Theas-Lár
333
+ Dublin West,McGuinness,David,M,Independent,NON-P.,5,0,0,2991,Excluded,182,20,Baile Átha Thiar
334
+ Carlow–Kilkenny,McGuinness,John,M,Fianna Fáil,F.F.,11,0,0,10528,Elected,167,1,Ceatharlach-Cill Chainnigh
335
+ Donegal,McHugh,Joe,M,Fine Gael,F.G.,13,0,0,8412,Elected,171,9,Dún na nGall
336
+ Dublin Central,McKay,Cormac,M,Direct Democracy Ireland,D.D.I.,11,0,1419,62,Excluded,169,11,Baile Átha Cliath Láir
337
+ Dublin North-West,McKay,Cormac,M,Direct Democracy Ireland,D.D.I.,9,0,2126,158,Excluded,168,15,Baile Átha Cliath Thiar Thuaidh
338
+ Carlow–Kilkenny,McKee,Patrick,M,Renua Ireland,R.I.,11,0,0,2483,Excluded,168,1,Ceatharlach-Cill Chainnigh
339
+ Longford–Westmeath,McKervey,Noel,M,Catholic Democrats,C.D.,15,0,2077,654,Excluded,236,30,An Longfort-An Iarmhí
340
+ Sligo–Leitrim,McLoughlin,Tony,M,Fine Gael,F.G.,15,1537,0,6172,Elected,169,35,Sligeach-Liatroim
341
+ Kildare South,McLoughlin Healy,Fiona,F,Fine Gael,F.G.,6,0,0,3250,Excluded,178,187,Cill Dara Theas
342
+ Dublin South-West,McMahon,Ronan,M,Renua Ireland,R.I.,16,0,0,2906,Excluded,214,19,Baile Átha Cliath Thiar Theas
343
+ Meath West,McMenamin,Séamus,M,Green Party/Comhaontas Glas,G.P.,6,0,236,1421,Excluded,185,39,An Mhí Thiar
344
+ Dublin Mid-West,McNally,Anne-Marie,F,Social Democrats,S.D.,12,3301,0,2633,,198,643,Baile Átha Cliath Thiar-Meán
345
+ Clare,McNamara,Michael,M,Labour Party,LAB.,12,0,0,4472,Excluded,169,3,An Clár
346
+ Cavan–Monaghan,Mee,James,M,Independent,NON-P.,10,0,2893,88,Excluded,165,2,An Cabhán-Muineachán
347
+ Galway East,Melia,Aengus,M,Direct Democracy Ireland,D.D.I.,7,0,2339,489,Excluded,166,22,Gaillimh Thoir
348
+ Kildare North,Merriman,Ashling,F,Solidarity–People Before Profit,AAA-PBP,9,0,1505,781,Excluded,167,26,Cill Dara Thuaidh
349
+ Longford–Westmeath,Miller,James,M,Independent,NON-P.,15,0,2533,208,Excluded,237,30,An Longfort-An Iarmhí
350
+ Dublin Bay North,Mitchell,Denise,F,Sinn Féin,S.F.,15,923,0,5039,Elected,171,13,Cuan Bhaile Átha Cliath Thuaidh
351
+ Dún Laoghaire,Mitchell O'Connor,Mary,F,Fine Gael,F.G.,7,0,0,10817,Elected,238,21,Dún Laoghaire
352
+ Cork South-Central,Mohally,Michael Joseph,M,Independent,NON-P.,11,0,2609,170,Excluded,253,7,Corcaigh Theas-Lár
353
+ Dublin Fingal,Molloy,Dr. Gerry,M,Renua Ireland,R.I.,10,0,162,2091,Excluded,167,14,Baile Átha Cliath - Fine Gall
354
+ Dublin Bay South,Mooney,Annette,F,Solidarity–People Before Profit,AAA-PBP,8,0,0,1728,Excluded,182,17,Cuan Bhaile Átha Cliath Theas
355
+ Donegal,Mooney,Michael,M,Independent,NON-P.,13,0,2648,397,Excluded,172,9,Dún na nGall
356
+ Laois,Moore,Sinead,F,Green Party/Comhaontas Glas,G.P.,3,0,269,1541,Excluded,163,27,Laois
357
+ Longford–Westmeath,Moran,Kevin 'Boxer',M,Independent,NON-P.,15,0,0,7586,Elected,238,30,An Longfort-An Iarmhí
358
+ Louth,Moran,Mary,F,Labour Party,LAB.,11,0,1603,1198,Excluded,169,31,Lú
359
+ Clare,Moran,Noeleen,F,Sinn Féin,S.F.,12,0,0,4216,Excluded,170,3,An Clár
360
+ Cork North-Central,Moran,Oliver,M,Green Party/Comhaontas Glas,G.P.,11,0,69,1693,Excluded,166,5,Corcaigh Thuaidh-Lár
361
+ Mayo,Moran,Tom,M,Solidarity–People Before Profit,AAA-PBP,10,0,2519,576,Excluded,170,32,Maigh Eo
362
+ Longford–Westmeath,Morgan,James,M,Independent,NON-P.,15,0,0,3329,Excluded,239,30,An Longfort-An Iarmhí
363
+ Kerry,Moriarty,Norma,F,Fianna Fáil,F.F.,11,0,0,4348,Excluded,172,24,Ciarraí
364
+ Tipperary,Morris,Séamus Séan,M,Sinn Féin,S.F.,7,0,0,5724,Excluded,170,36,Tiobraid Árann
365
+ Cork North-West,Moynihan,Aindrias,M,Fianna Fáil,F.F.,9,0,0,8924,Elected,181,6,Corcaigh Thiar Thuaidh
366
+ Cork North-West,Moynihan,Michael,M,Fianna Fáil,F.F.,9,1811,0,7332,Elected,180,6,Corcaigh Thiar Thuaidh
367
+ Mayo,Mulherin,Michelle,F,Fine Gael,F.G.,10,3137,0,7841,,171,32,Maigh Eo
368
+ Clare,Mulqueen,Dermot,M,Independent,NON-P.,12,0,2812,39,Excluded,171,3,An Clár
369
+ Louth,Munster,Imelda,F,Sinn Féin,S.F.,11,0,0,8829,Elected,170,31,Lú
370
+ Carlow–Kilkenny,Murnane-O'Connor,Jennifer,F,Fianna Fáil,F.F.,11,2151,0,8373,,169,1,Ceatharlach-Cill Chainnigh
371
+ Kildare North,Murphy,Catherine,F,Social Democrats,S.D.,9,0,0,11108,Elected,168,26,Cill Dara Thuaidh
372
+ Cork North-Central,Murphy,Dara,M,Fine Gael,F.G.,11,979,0,5264,Elected,167,5,Corcaigh Thuaidh-Lár
373
+ Dublin Bay South,Murphy,Eoghan,M,Fine Gael,F.G.,8,0,0,6567,Elected,183,17,Cuan Bhaile Átha Cliath Theas
374
+ Roscommon–Galway,Murphy,Eugene,M,Fianna Fáil,F.F.,8,1317,0,6813,Elected,170,996,Ros Comáin-Gaillimh
375
+ Kerry,Murphy,Kevin,M,Independent,NON-P.,11,0,2799,464,Excluded,173,24,Ciarraí
376
+ Tipperary,Murphy,Marie,F,Fine Gael,F.G.,7,0,1707,1542,Excluded,171,36,Tiobraid Árann
377
+ Cork North-Central,Murphy,Mick,M,Independent,NON-P.,11,0,2294,215,Excluded,168,5,Corcaigh Thuaidh-Lár
378
+ Dublin South-West,Murphy,Paul,M,Solidarity–People Before Profit,AAA-PBP,16,0,0,9005,Elected,215,19,Baile Átha Cliath Thiar Theas
379
+ Dublin Fingal,Murphy,Tony,M,Independent,NON-P.,10,0,0,2503,Excluded,168,14,Baile Átha Cliath - Fine Gall
380
+ Cork South-West,Murphy O'Mahony,Margaret,F,Fianna Fáil,F.F.,5,0,0,8482,Elected,192,8,Corcaigh Thiar Theas
381
+ Sligo–Leitrim,Murray,Eamon,M,Independent,NON-P.,15,0,2762,356,Excluded,170,35,Sligeach-Liatroim
382
+ Dublin South-Central,Murray,Richard,M,Independent,NON-P.,11,0,1850,294,Excluded,169,16,Baile Átha Cliath Theas-Lár
383
+ Wexford,Mythen,John,M,Sinn Féin,S.F.,14,2292,0,7260,Excluded,173,40,Loch Garman
384
+ Louth,Nash,Ged,M,Labour Party,LAB.,11,2509,0,4945,,171,31,Lú
385
+ Roscommon–Galway,Naughten,Denis,M,Independent,NON-P.,8,0,0,13936,Elected,171,996,Ros Comáin-Gaillimh
386
+ Galway West,Naughton,Hildegarde,F,Fine Gael,F.G.,14,1583,0,4567,Elected,173,23,Gaillimh Thiar
387
+ Limerick County,Neville,Tom,M,Fine Gael,F.G.,6,735,0,8013,Elected,164,29,Contae Luimnigh
388
+ Galway East,Ní Chróinín,Máiréad,F,Green Party/Comhaontas Glas,G.P.,7,0,2059,769,Excluded,167,22,Gaillimh Thoir
389
+ Kildare North,Ní Fhallúin,Maebh,F,Green Party/Comhaontas Glas,G.P.,9,0,29,1485,Excluded,169,26,Cill Dara Thuaidh
390
+ Dublin Rathdown,Nic Cormaic,Sorcha,F,Sinn Féin,S.F.,6,0,0,2858,Excluded,227,18,Baile Átha Cliath-Ráth an Dúin
391
+ Donegal,NicFhearraigh,Cordelia,F,Fís Nua,F.N.,13,0,2985,70,Excluded,173,9,Dún na nGall
392
+ Offaly,Nolan,Carol,F,Sinn Féin,S.F.,7,2119,0,4804,Elected,169,37,Uíbh Fhailí
393
+ Galway West,Nolan,Derek,M,Labour Party,LAB.,14,0,0,3220,Excluded,174,23,Gaillimh Thiar
394
+ Carlow–Kilkenny,Noonan,Malcolm,M,Green Party/Comhaontas Glas,G.P.,11,0,0,2621,Excluded,170,1,Ceatharlach-Cill Chainnigh
395
+ Limerick City,Noonan,Michael,M,Fine Gael,F.G.,6,42,0,7294,Elected,164,28,Cathair Luimnigh
396
+ Dublin West,Noone,Catherine,F,Fine Gael,F.G.,5,0,973,1074,Excluded,183,20,Baile Átha Thiar
397
+ Clare,Norton,Ann,F,Independent,NON-P.,12,0,0,2240,Excluded,172,3,An Clár
398
+ Dublin Mid-West,Ó Broin,Eoin,M,Sinn Féin,S.F.,12,0,0,9782,Elected,199,643,Baile Átha Cliath Thiar-Meán
399
+ Meath East,Ó Buachalla,Seán,M,Green Party/Comhaontas Glas,G.P.,9,0,1735,766,Excluded,188,34,An Mhí Thoir
400
+ Cork South-Central,Ó Cadhla,Diarmaid,M,Independent,NON-P.,11,0,1597,869,Excluded,254,7,Corcaigh Theas-Lár
401
+ Cavan–Monaghan,Ó Caoláin,Caoimhghín,M,Sinn Féin,S.F.,10,0,0,10060,Elected,166,2,An Cabhán-Muineachán
402
+ Kildare South,Ó Fearghaíl,Seán,M,Fianna Fáil,F.F.,6,977,0,6469,Elected,179,187,Cill Dara Theas
403
+ Dublin South-Central,Ó Halmhain,Oisín,M,Green Party/Comhaontas Glas,G.P.,11,0,630,1410,Excluded,170,16,Baile Átha Cliath Theas-Lár
404
+ Cork South-Central,Ó Laoghaire,Donnchadh Uinseann,M,Sinn Féin,S.F.,11,484,0,6986,Elected,256,7,Corcaigh Theas-Lár
405
+ Galway West,O Mahony,John,M,Fine Gael,F.G.,14,0,0,4734,Excluded,175,23,Gaillimh Thiar
406
+ Dublin Bay North,Ó Muirí,Naoise,M,Fine Gael,F.G.,15,0,0,2868,Excluded,175,13,Cuan Bhaile Átha Cliath Thuaidh
407
+ Dublin Bay North,Ó Ríordáin,Aodhán,M,Labour Party,LAB.,15,1942,0,5675,,177,13,Cuan Bhaile Átha Cliath Thuaidh
408
+ Dublin South-Central,Ó Snodaigh,Aengus,M,Sinn Féin,S.F.,11,0,0,6639,Elected,171,16,Baile Átha Cliath Theas-Lár
409
+ Galway West,Ó Tuathail,Niall,M,Social Democrats,S.D.,14,0,0,3455,Excluded,177,23,Gaillimh Thiar
410
+ Cork North-West,O’ Donnell,Michael,M,Communist Party of Ireland,C.P.I.,9,0,2751,185,Excluded,198,6,Corcaigh Thiar Thuaidh
411
+ Cork South-West,O’ Mahony,Johnny,M,Green Party/Comhaontas Glas,G.P.,5,0,1952,752,Excluded,201,8,Corcaigh Thiar Theas
412
+ Mayo,O'Boyle,Gerry,M,Independent,NON-P.,10,0,3053,126,Excluded,172,32,Maigh Eo
413
+ Dublin Fingal,O'Brien,Darragh,M,Fianna Fáil,F.F.,10,0,0,10826,Elected,170,14,Baile Átha Cliath - Fine Gall
414
+ Limerick County,O'Brien,Emmett,M,Independent,NON-P.,6,1623,0,5432,Excluded,165,29,Contae Luimnigh
415
+ Dublin West,O'Brien,Jo,F,Renua Ireland,R.I.,5,0,1421,677,Excluded,184,20,Baile Átha Thiar
416
+ Dublin Fingal,O'Brien,Joe,M,Green Party/Comhaontas Glas,G.P.,10,0,0,2783,Excluded,171,14,Baile Átha Cliath - Fine Gall
417
+ Cork North-Central,O'Brien,Jonathan,M,Sinn Féin,S.F.,11,0,0,6231,Elected,169,5,Corcaigh Thuaidh-Lár
418
+ Dublin Bay North,O'Brien,Michael,M,Solidarity–People Before Profit,AAA-PBP,15,0,506,2236,Excluded,172,13,Cuan Bhaile Átha Cliath Thuaidh
419
+ Clare,O'Brien,Niamh,F,Fís Nua,F.N.,12,0,1635,1154,Excluded,173,3,An Clár
420
+ Dún Laoghaire,O'Brien,Shane,M,Sinn Féin,S.F.,7,0,494,3167,Excluded,239,21,Dún Laoghaire
421
+ Dublin Bay North,O'Callaghan,Cian,M,Social Democrats,S.D.,15,0,0,3864,Excluded,173,13,Cuan Bhaile Átha Cliath Thuaidh
422
+ Dublin Bay South,O'Callaghan,Jim,M,Fianna Fáil,F.F.,8,1020,0,4575,Elected,184,17,Cuan Bhaile Átha Cliath Theas
423
+ Dublin Bay North,O'Conaráin,Proinsias,M,Independent,NON-P.,15,0,2964,104,Excluded,174,13,Cuan Bhaile Átha Cliath Thuaidh
424
+ Cavan–Monaghan,O'Connell,Aoife,F,Direct Democracy Ireland,D.D.I.,10,0,2691,279,Excluded,167,2,An Cabhán-Muineachán
425
+ Dublin Fingal,O'Connell,Fergal,M,Independent,NON-P.,10,0,2465,51,Excluded,172,14,Baile Átha Cliath - Fine Gall
426
+ Cork South-Central,O'Connell,Jim,M,Solidarity–People Before Profit,AAA-PBP,11,0,1905,795,Excluded,255,7,Corcaigh Theas-Lár
427
+ Dublin Bay South,O'Connell,Kate,F,Fine Gael,F.G.,8,1394,0,5399,Elected,188,17,Cuan Bhaile Átha Cliath Theas
428
+ Limerick City,O'Dea,Willie,M,Fianna Fáil,F.F.,6,0,0,12999,Elected,166,28,Cathair Luimnigh
429
+ Kerry,O'Donnell,Grace,F,Fine Gael,F.G.,11,0,2450,776,Excluded,174,24,Ciarraí
430
+ Limerick City,O'Donnell,Kieran,M,Fine Gael,F.G.,6,1504,0,6047,Excluded,167,28,Cathair Luimnigh
431
+ Limerick County,O'Donoghue,Richard,M,Independent,NON-P.,6,0,0,2855,Excluded,166,29,Contae Luimnigh
432
+ Dublin South-West,O'Donovan,Deirdre,F,Independent,NON-P.,16,0,233,2197,Excluded,216,19,Baile Átha Cliath Thiar Theas
433
+ Limerick County,O'Donovan,Patrick,M,Fine Gael,F.G.,6,813,0,8479,Elected,167,29,Contae Luimnigh
434
+ Louth,O'Dowd,Fergus,M,Fine Gael,F.G.,11,1999,0,6814,Elected,172,31,Lú
435
+ Louth,O'Dowd,Michael,M,Renua Ireland,R.I.,11,0,572,2095,Excluded,173,31,Lú
436
+ Dublin Central,O'Dwyer,Diana,F,Solidarity–People Before Profit,AAA-PBP,11,0,572,721,Excluded,170,11,Baile Átha Cliath Láir
437
+ Cork North-West,O'Flynn,Diarmuid,M,Independent,NON-P.,9,0,6,2159,Excluded,184,6,Corcaigh Thiar Thuaidh
438
+ Dublin South-West,O'Gorman,Frank,M,Independent,NON-P.,16,0,2745,59,Excluded,217,19,Baile Átha Cliath Thiar Theas
439
+ Limerick County,O'Gorman,John,M,Independent,NON-P.,6,0,2558,207,Excluded,168,29,Contae Luimnigh
440
+ Kerry,O'Gorman,Michael Pixie,M,Independent,NON-P.,11,0,1630,1236,Excluded,175,24,Ciarraí
441
+ Dublin West,O'Gorman,Roderic,M,Green Party/Comhaontas Glas,G.P.,5,0,0,1730,Excluded,185,20,Baile Átha Thiar
442
+ Sligo–Leitrim,O'Hara,Bernie,F,Independent,NON-P.,15,0,1648,1206,Excluded,171,35,Sligeach-Liatroim
443
+ Sligo–Leitrim,O'Hora,Leslie V. John,M,Green Party/Comhaontas Glas,G.P.,15,0,2499,603,Excluded,172,35,Sligeach-Liatroim
444
+ Cork East,O'Keeffe,Kevin,M,Fianna Fáil,F.F.,10,0,0,8264,Elected,168,4,Corcaigh Thoir
445
+ Sligo–Leitrim,O'Keeffe,Susan,F,Labour Party,LAB.,15,0,926,1829,Excluded,173,35,Sligeach-Liatroim
446
+ Cork North-Central,O'Leary,Julie,F,Fine Gael,F.G.,11,0,0,3841,Excluded,170,5,Corcaigh Thuaidh-Lár
447
+ Cork North-Central,O'Leary,Paddy,M,Renua Ireland,R.I.,11,0,843,1120,Excluded,171,5,Corcaigh Thuaidh-Lár
448
+ Kildare South,O'Loughlin,Fiona,F,Fianna Fáil,F.F.,6,223,0,6906,Elected,180,187,Cill Dara Theas
449
+ Cork North-Central,O'Loughlin,Peter,M,Independent,NON-P.,11,0,2341,183,Excluded,172,5,Corcaigh Thuaidh-Lár
450
+ Mayo,O'Malley,George,M,Independent,NON-P.,10,0,2882,262,Excluded,173,32,Maigh Eo
451
+ Meath East,O'Neill,Aisling,F,Social Democrats,S.D.,9,0,125,1715,Excluded,186,34,An Mhí Thoir
452
+ Dublin Bay North,O'Neill,Damien,M,Independent,NON-P.,15,0,1551,1446,Excluded,176,13,Cuan Bhaile Átha Cliath Thuaidh
453
+ Galway West,O'Neill,Ruairí,M,Direct Democracy Ireland,D.D.I.,14,0,2527,152,Excluded,176,23,Gaillimh Thiar
454
+ Cavan–Monaghan,O'Reilly,Joe,M,Fine Gael,F.G.,10,3141,0,6566,,168,2,An Cabhán-Muineachán
455
+ Dublin Fingal,O'Reilly,Louise,F,Sinn Féin,S.F.,10,1294,0,5228,Elected,173,14,Baile Átha Cliath - Fine Gall
456
+ Cork North-West,O'Riordan,Steven,M,Independent,NON-P.,9,0,1208,1361,Excluded,185,6,Corcaigh Thiar Thuaidh
457
+ Meath East,O'Rourke,Darren,M,Sinn Féin,S.F.,9,1792,0,5780,Excluded,187,34,An Mhí Thoir
458
+ Kildare North,O'Rourke,Frank,M,Fianna Fáil,F.F.,9,1309,0,6341,Elected,170,26,Cill Dara Thuaidh
459
+ Sligo–Leitrim,O'Rourke,Paddy,M,Fianna Fáil,F.F.,15,0,0,5447,Excluded,174,35,Sligeach-Liatroim
460
+ Cork North-West,O'Shea,John Paul,M,Independent,NON-P.,9,2060,0,4814,,183,6,Corcaigh Thiar Thuaidh
461
+ Kildare North,O'Sullivan,Elizabeth,F,Independent,NON-P.,9,0,2329,99,Excluded,171,26,Cill Dara Thuaidh
462
+ Waterford,O'Sullivan,Grace,F,Green Party/Comhaontas Glas,G.P.,9,0,0,2237,Excluded,168,38,Port Lairge
463
+ Limerick City,O'Sullivan,Jan,F,Labour Party,LAB.,6,1166,0,5227,Elected,168,28,Cathair Luimnigh
464
+ Cork North-West,O'Sullivan,Jerry,M,Independent,NON-P.,9,0,2458,478,Excluded,206,6,Corcaigh Thiar Thuaidh
465
+ Dublin Central,O'Sullivan,Maureen,F,Independent,NON-P.,11,653,0,1990,Elected,171,11,Baile Átha Cliath Láir
466
+ Longford–Westmeath,Parker,Dominic,M,Solidarity–People Before Profit,AAA-PBP,15,0,2172,506,Excluded,240,30,An Longfort-An Iarmhí
467
+ Longford–Westmeath,Penrose,Willie,M,Labour Party,LAB.,15,2545,0,4817,Elected,241,30,An Longfort-An Iarmhí
468
+ Dublin Central,Perry,Cieran,M,Independent,NON-P.,11,0,0,1242,Excluded,172,11,Baile Átha Cliath Láir
469
+ Sligo–Leitrim,Perry,John,M,Fine Gael,F.G.,15,0,0,4403,Excluded,175,35,Sligeach-Liatroim
470
+ Cork South-West,Pettit O’leary,Fiona,F,Independent,NON-P.,5,0,2281,423,Excluded,202,8,Corcaigh Thiar Theas
471
+ Carlow–Kilkenny,Phelan,Ann,F,Labour Party,LAB.,11,0,0,4391,Excluded,171,1,Ceatharlach-Cill Chainnigh
472
+ Carlow–Kilkenny,Phelan,John Paul,M,Fine Gael,F.G.,11,0,0,7568,Elected,172,1,Ceatharlach-Cill Chainnigh
473
+ Cork South-West,Powell,Gillian,F,Independent,NON-P.,5,0,2003,701,Excluded,203,8,Corcaigh Thiar Theas
474
+ Dublin Bay North,Power,Averil,F,Independent,NON-P.,15,0,0,4911,Excluded,178,13,Cuan Bhaile Átha Cliath Thuaidh
475
+ Waterford,Power,Mailo,F,Renua Ireland,R.I.,9,0,1499,862,Excluded,169,38,Port Lairge
476
+ Limerick City,Prendiville,Cian,M,Solidarity–People Before Profit,AAA-PBP,6,0,0,4584,Excluded,169,28,Cathair Luimnigh
477
+ Donegal,Pringle,Thomas,M,Independent,NON-P.,13,2136,0,6220,Elected,174,9,Dún na nGall
478
+ Dublin South-West,Quigley,Kieran Adam,M,Independent,NON-P.,16,0,2475,317,Excluded,218,19,Baile Átha Cliath Thiar Theas
479
+ Waterford,Quilty,Edward,M,Direct Democracy Ireland,D.D.I.,9,0,2391,194,Excluded,170,38,Port Lairge
480
+ Limerick City,Quinlivan,Maurice,M,Sinn Féin,S.F.,6,0,0,5894,Elected,170,28,Cathair Luimnigh
481
+ Galway East,Rabbitte,Anne,F,Fianna Fáil,F.F.,7,0,0,6928,Elected,168,22,Gaillimh Thoir
482
+ Dublin Bay North,Regan,Stephanie Bernadette,F,Fine Gael,F.G.,15,0,1111,1857,Excluded,179,13,Cuan Bhaile Átha Cliath Thuaidh
483
+ Dublin Fingal,Reilly,James,M,Fine Gael,F.G.,10,3850,0,4666,Excluded,174,14,Baile Átha Cliath - Fine Gall
484
+ Cavan–Monaghan,Reilly,Kathryn,F,Sinn Féin,S.F.,10,0,0,6066,Excluded,169,2,An Cabhán-Muineachán
485
+ Sligo–Leitrim,Reynolds,Gerard,M,Fine Gael,F.G.,15,2051,0,6672,Excluded,176,35,Sligeach-Liatroim
486
+ Mayo,Ring,Michael,M,Fine Gael,F.G.,10,0,0,11275,Elected,174,32,Maigh Eo
487
+ Limerick City,Riordan,Denis,M,Independent,NON-P.,6,0,2251,78,Excluded,171,28,Cathair Luimnigh
488
+ Galway East,Roche,Annemarie,F,Sinn Féin,S.F.,7,0,0,2683,Excluded,169,22,Gaillimh Thoir
489
+ Dublin North-West,Rock,Noel,M,Fine Gael,F.G.,9,1690,0,4642,Elected,169,15,Baile Átha Cliath Thiar Thuaidh
490
+ Galway West,Roddy,Tommy,M,Independent,NON-P.,14,0,2428,251,Excluded,178,23,Gaillimh Thiar
491
+ Dublin Rathdown,Ross,Shane,M,Independent,NON-P.,6,0,0,10202,Elected,228,18,Baile Átha Cliath-Ráth an Dúin
492
+ Dublin Fingal,Ryan,Brendan,M,Labour Party,LAB.,10,659,0,6009,Elected,175,14,Baile Átha Cliath - Fine Gall
493
+ Dublin Bay South,Ryan,Eamon,M,Green Party/Comhaontas Glas,G.P.,8,0,0,4529,Elected,189,17,Cuan Bhaile Átha Cliath Theas
494
+ Dublin Central,Ryan,Éilis,F,Workers’ Party,W.P.,11,0,1165,303,Excluded,173,11,Baile Átha Cliath Láir
495
+ Cork South-Central,Ryan,Fiona,F,Solidarity–People Before Profit,AAA-PBP,11,0,903,937,Excluded,257,7,Corcaigh Theas-Lár
496
+ Kildare South,Ryan,Patricia,F,Sinn Féin,S.F.,6,0,0,4267,Excluded,181,187,Cill Dara Theas
497
+ Offaly,Ryan-Feehan,Teresa,F,Independent,NON-P.,7,0,2137,603,Excluded,170,37,Uíbh Fhailí
498
+ Sligo–Leitrim,Scanlon,Eamon,M,Fianna Fáil,F.F.,15,1646,0,5874,Elected,177,35,Sligeach-Liatroim
499
+ Longford–Westmeath,Sexton,Mae,F,Independent,NON-P.,15,0,868,1646,Excluded,242,30,An Longfort-An Iarmhí
500
+ Dublin Rathdown,Shatter,Alan,M,Fine Gael,F.G.,6,1831,0,5905,,229,18,Baile Átha Cliath-Ráth an Dúin
501
+ Mayo,Sheehan,Margaret (Mags),F,Green Party/Comhaontas Glas,G.P.,10,0,2503,629,Excluded,175,32,Maigh Eo
502
+ Donegal,Sheils,Dessie,M,Independent,NON-P.,13,0,0,3724,Excluded,175,9,Dún na nGall
503
+ Galway West,Sheridan,Séamus,M,Green Party/Comhaontas Glas,G.P.,14,0,865,1588,Excluded,179,23,Gaillimh Thiar
504
+ Cork East,Sherlock,Sean,M,Labour Party,LAB.,10,0,0,6949,Elected,163,4,Corcaigh Thoir
505
+ Dublin North-West,Shortall,Róisín,F,Social Democrats,S.D.,9,0,0,10540,Elected,170,15,Baile Átha Cliath Thiar Thuaidh
506
+ Dublin South-West,Sinclair,Stephen,M,Direct Democracy Ireland,D.D.I.,16,0,2419,359,Excluded,219,19,Baile Átha Cliath Thiar Theas
507
+ Clare,Siro Hakizimana,Andres,M,Independent,NON-P.,12,0,2781,70,Excluded,174,3,An Clár
508
+ Cavan–Monaghan,Smith,Brendan,M,Fianna Fáil,F.F.,10,0,0,8775,Elected,170,2,An Cabhán-Muineachán
509
+ Dublin South-Central,Smith,Bríd,F,Solidarity–People Before Profit,AAA-PBP,11,693,0,4374,Elected,172,16,Baile Átha Cliath Theas-Lár
510
+ Cavan–Monaghan,Smith,Emmett,M,Independent,NON-P.,10,0,2725,245,Excluded,171,2,An Cabhán-Muineachán
511
+ Clare,Smith,Fergal,M,Green Party/Comhaontas Glas,G.P.,12,0,658,1700,Excluded,175,3,An Clár
512
+ Tipperary,Smith,Michael,M,Fianna Fáil,F.F.,7,0,0,6718,Excluded,172,36,Tiobraid Árann
513
+ Offaly,Smollen,Ken,M,Irish Democratic Party,I.D.P.,7,0,1754,971,Excluded,171,37,Uíbh Fhailí
514
+ Longford–Westmeath,Smyth,Barbara,F,Independent,NON-P.,15,0,2451,296,Excluded,243,30,An Longfort-An Iarmhí
515
+ Dún Laoghaire,Smyth,Carrie,F,Labour Party,LAB.,7,0,0,5192,Excluded,240,21,Dún Laoghaire
516
+ Dublin Central,Smyth,Ian Noel,M,Green Party/Comhaontas Glas,G.P.,11,0,785,644,Excluded,174,11,Baile Átha Cliath Láir
517
+ Cavan–Monaghan,Smyth,Mary,F,Independent,NON-P.,10,0,643,1589,Excluded,172,2,An Cabhán-Muineachán
518
+ Cavan–Monaghan,Smyth,Niamh,F,Fianna Fáil,F.F.,10,2287,0,6268,Elected,173,2,An Cabhán-Muineachán
519
+ Dún Laoghaire,Smyth,Ossian,M,Green Party/Comhaontas Glas,G.P.,7,0,0,3478,Excluded,241,21,Dún Laoghaire
520
+ Kerry,Spring,Arthur J.,M,Labour Party,LAB.,11,0,0,4813,Excluded,176,24,Ciarraí
521
+ Kildare North,Stagg,Emmet,M,Labour Party,LAB.,9,0,0,4087,Excluded,172,26,Cill Dara Thuaidh
522
+ Laois,Stanley,Brian,M,Sinn Féin,S.F.,3,0,0,8242,Elected,164,27,Laois
523
+ Cork East,Stanton,David,M,Fine Gael,F.G.,10,0,0,7171,Elected,166,4,Corcaigh Thoir
524
+ Limerick County,Storey-Cosgrave,Alexander,M,Green Party/Comhaontas Glas,G.P.,6,0,2456,311,Excluded,169,29,Contae Luimnigh
525
+ Dublin South-West,Summerville-Molloy,Joan,F,Independent,NON-P.,16,0,2692,112,Excluded,220,19,Baile Átha Cliath Thiar Theas
526
+ Sligo–Leitrim,Sweeney,Bernard,M,Independent,NON-P.,15,0,2989,129,Excluded,178,35,Sligeach-Liatroim
527
+ Dublin Bay South,Tierney,Eoin,M,Independent,NON-P.,8,0,1835,151,Excluded,190,17,Cuan Bhaile Átha Cliath Theas
528
+ Wicklow,Timmins,Billy,M,Renua Ireland,R.I.,10,3109,0,5510,,175,41,Cill Mhantáin
529
+ Dublin Mid-West,Timmons,Francis,M,Independent,NON-P.,12,0,734,1085,Excluded,200,643,Baile Átha Cliath Thiar-Meán
530
+ Meath West,Tóibín,Peadar,M,Sinn Féin,S.F.,6,0,0,9442,Elected,186,39,An Mhí Thiar
531
+ Longford–Westmeath,Troy,Robert,M,Fianna Fáil,F.F.,15,0,0,11653,Elected,244,30,An Longfort-An Iarmhí
532
+ Dublin Mid-West,Tuffy,Joanna,F,Labour Party,LAB.,12,0,0,2146,Excluded,201,643,Baile Átha Cliath Thiar-Meán
533
+ Cork North-Central,Tynan,Ted,M,Workers’ Party,W.P.,11,0,640,1419,Excluded,173,5,Corcaigh Thuaidh-Lár
534
+ Meath East,Tyrrell,Sarah,F,Renua Ireland,R.I.,9,0,2025,523,Excluded,189,34,An Mhí Thoir
535
+ Dublin West,Varadkar,Leo,M,Fine Gael,F.G.,5,0,0,8247,Elected,186,20,Baile Átha Thiar
536
+ Wexford,Wadding,Deirdre,F,Solidarity–People Before Profit,AAA-PBP,14,0,1144,1472,Excluded,174,40,Loch Garman
537
+ Kildare South,Wall,Mark,M,Labour Party,LAB.,6,2333,0,4277,Excluded,182,187,Cill Dara Theas
538
+ Carlow–Kilkenny,Wallace,Adrienne,F,Solidarity–People Before Profit,AAA-PBP,11,0,576,1582,Excluded,173,1,Ceatharlach-Cill Chainnigh
539
+ Wexford,Wallace,Mick,M,Independents 4 Change,I.4.C,14,0,0,7917,Elected,175,40,Loch Garman
540
+ Wexford,Walsh,Ann,F,Green Party/Comhaontas Glas,G.P.,14,0,1894,1056,Excluded,176,40,Loch Garman
541
+ Waterford,Walsh,John D,M,Independent,NON-P.,9,0,1691,858,Excluded,171,38,Port Lairge
542
+ Carlow–Kilkenny,Walsh,Noel G.,M,Independent,NON-P.,11,0,2754,164,Excluded,174,1,Ceatharlach-Cill Chainnigh
543
+ Dublin South-West,Warren,Karen,F,Fine Gael,F.G.,16,0,1699,1088,Excluded,221,19,Baile Átha Cliath Thiar Theas
544
+ Louth,Weldon,Garrett,M,Solidarity–People Before Profit,AAA-PBP,11,0,0,3462,Excluded,174,31,Lú
545
+ Laois,Whelan,John,M,Labour Party,LAB.,3,5822,0,2856,,165,27,Laois
546
+ Dublin Rathdown,White,Alex,M,Labour Party,LAB.,6,0,0,4048,Excluded,230,18,Baile Átha Cliath-Ráth an Dúin
547
+ Dublin Rathdown,White,Mary,F,Fianna Fáil,F.F.,6,0,0,4220,Excluded,231,18,Baile Átha Cliath-Ráth an Dúin
548
+ Dún Laoghaire,Whitehead,Raymond,M,Direct Democracy Ireland,D.D.I.,7,0,3490,213,Excluded,242,21,Dún Laoghaire
549
+ Cavan–Monaghan,Wilson,John,M,Independent,NON-P.,10,0,1812,1023,Excluded,174,2,An Cabhán-Muineachán
550
+ Louth,Yore,Maeve,F,Independent,NON-P.,11,0,0,2746,Excluded,175,31,Lú
551
+ Kildare North,Young,Brendan,M,Independent,NON-P.,9,0,590,1200,Excluded,173,26,Cill Dara Thuaidh
552
+ Dublin South-West,Zappone,Katherine,F,Independent,NON-P.,16,1557,0,4463,Elected,222,19,Baile Átha Cliath Thiar Theas