Skip to content

Instantly share code, notes, and snippets.

@catherinekerr
Last active December 5, 2023 09:28
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save catherinekerr/e345a906f8e2bae8d07dbc79f8f04036 to your computer and use it in GitHub Desktop.
Save catherinekerr/e345a906f8e2bae8d07dbc79f8f04036 to your computer and use it in GitHub Desktop.
D3 with embedded SVG map

Embedding SVG Map

This example uses a map that was created in Adobe Illustrator and exported as an SVG file. Although it might be preferable to use GeoJSON files for geographical maps, they are not always available in the detail that is required. In any case, we could be using any irregular shaped SVG graphic created by an application like Illustrator - this example shows how to embed the SVG into D3 and bind data to the paths.

The SVG file is quite simple. Each county is identified by a path and an id. Some paths are grouped together to denote Northern Ireland and the Republic. The path titles are dynamically created in the program.

The data in this case comes from the Irish Central Statistics Office and gives the average rental prices for houses/apartments in each county in the Republic of Ireland in 2015. The map is a chloropleth using a quantize scale. Another useful feature of this example is the zoom and center feature which centers the county's bounding box in the map container.

Hover over a county to display the title with county name and value. Click on a county in the map or in the table to zoom in to that county. Click on a legend box to highlight all counties in that range.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
@import url(style.css);
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<body>
<!-- Table to hold the data table, map and legend -->
<table border="0" cellpadding="10" style="overflow-y: scroll;">
<tr>
<td><div id="table_container" class="csvTable"></div></td>
<td><div id="map_container"></div></td>
<td><div id="legend_container"></div></td>
</tr>
</table>
<script>
var mw = 500; // map container width
var mh = 600; // map container height
var main_chart_svg = d3.select("#map_container")
.append("svg")
.attr({
"width":mw,
"height":mh,
});
var legend_svg = d3.select("#legend_container")
.append("svg")
.attr({
"width":200,
"height":600,
});
var hue = "g"; /* b=blue, g=green, r=red colours - from ColorBrewer */
/* break the data values into 9 ranges of €100 each */
/* max and min values already known so 400-1300 works */
var quantize = d3.scale.quantize()
.domain([400, 1300])
.range(d3.range(9).map(function(i) { return hue + i + "-9"; }));
/* declare locale so we can format values with euro symbol */
var ie = d3.locale({
"decimal": ".",
"thousands": ",",
"grouping": [3],
"currency": ["€", ""],
"dateTime": "%a %b %e %X %Y",
"date": "%d/%m/%Y",
"time": "%H:%M:%S",
"periods": ["AM", "PM"],
"days": ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
"shortDays": ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
"months": ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
"shortMonths": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
});
var rateById = d3.map();
var lastActive = "";
var ireland;
var data;
var defaultScale = 0.6; /* default scale of map - fits nicely on standard screen */
var scale = 3; /* maximum size to zoom county */
var format = ie.numberFormat("$, #,##0d");
/* Thanks to http://stackoverflow.com/users/3128209/ameliabr for tips on creating a quantized legend */
var legend = legend_svg.selectAll('g.legendEntry')
.data(quantize.range())
.enter()
.append('g').attr('class', 'legendEntry');
legend
.append('rect')
.attr("x", 20)
.attr("y", function(d, i) {
return i * 25 + 20;
})
.attr("width", 15)
.attr("height", 15)
.attr("class", function(d){ return d;})
.style("stroke", "black")
.style("stroke-width", 1)
.on("click", function(d)
{
if (lastActive == "") {
resetAll();
d3.select(ireland).selectAll("." + d).attr("class", "highlight"); /* Highlight all counties in range selected */
}
});
legend
.append('text')
.attr("x", 40) //leave 5 pixel space after the <rect>
.attr("y", function(d, i) {
return i * 25 + 20;
})
.attr("dy", "0.8em") //place text one line *below* the x,y point
.text(function(d,i) {
var extent = quantize.invertExtent(d);
//extent will be a two-element array, format it however you want:
return format(extent[0]) + " - " + format(+extent[1])
})
.style("font-family", "sans-serif")
.style("font-size", "12px");
/* Data has key "county" and value "rental" - i.e. average rental price per county */
queue()
.defer(d3.csv, "rentals-2015-bycounty.csv", data)
.await(ready);
function ready(error, data) {
if (error) throw error;
d3.map(data, function(d) {rateById.set(d.county, +d.rental)}); /* create the data map */
d3.xml("ireland.svg", "image/svg+xml", function(error, xml) { /* embed the SVG map */
if (error) throw error;
var countyTable = tabulate(data, ["county", "rental"]); /* render the data table */
var svgMap = xml.getElementsByTagName("g")[0]; /* set svgMap to root g */
ireland = main_chart_svg.node().appendChild(svgMap); /* island of Ireland map */
d3.select(ireland).selectAll("#NI") /* Group Northern Ireland together */
.attr("class", "region NI");
d3.select(ireland).selectAll("#republic") /* Group Republic of Ireland together */
.attr("class", "region republic");
d3.select(ireland).selectAll("#republic").selectAll("path") /* Map Republic counties to rental data */
.attr("class", function(d) {
return quantize(rateById.get(this.id));
})
.append("title").text(function(d) { /* add title = name of each county and average rental */
return this.parentNode.id + ", " + format(rateById.get(this.parentNode.id))
});
d3.select(ireland).selectAll("#republic").selectAll("path")
.on("mouseover", function(d)
{
if (d3.select(this).classed("active")) return; /* no need to change class when county is already selected */
d3.select(this).attr("class", "hover");
})
.on("mouseout", function(d)
{
if (d3.select(this).classed("active")) return;
d3.select(this).attr("class", function(d) { /* reset county color to quantize range */
return quantize(rateById.get(this.id))
});
})
.on("click", function (d) { zoomed(d3.select(this)); });
/* Let's add an id to each group that wraps a path */
d3.select(ireland).selectAll("#republic").selectAll("path")
.each(function(d) {
d3.select(this.parentNode).attr("id", this.id);
});
/* Now add a text box to the group with content equal to the id of the group */
d3.select(ireland).selectAll("#republic").selectAll("g")
.append("svg:text")
.text(function(d){
return this.parentNode.id;
})
.attr("x", function(d){
console.log(d3.select(this.parentNode).select("path").attr("d"));
//return 600;
//d3.select(ireland).select("path")
return getBoundingBox(d3.select(this.parentNode).select("path"))[4];
})
.attr("y", function(d){
return getBoundingBox(d3.select(this.parentNode).select("path"))[5];
})
// .attr("text-anchor","middle")
// .attr("font-family", "sans-serif")
// .attr("stroke-width", 0.5)
.classed("text", true)
// .attr("fill", "#333")
// .attr('font-size','10pt')
;
});
}
/* Thanks to http://bl.ocks.org/phil-pedruco/7557092 for the table code */
/* and style - and what a coincidence he also used a map of Ireland! */
function tabulate(data, columns) {
var table = d3.select("#table_container").append("table")
thead = table.append("thead"),
tbody = table.append("tbody");
// append the header row
thead.append("tr")
.selectAll("th")
.data(columns)
.enter()
.append("th")
.text(function(column) { return column; });
// create a row for each object in the data
var rows = tbody.selectAll("tr")
.data(data)
.enter()
.append("tr")
.on("click", function (d) { tableRowClicked(d)});
// create a cell in each row for each column
var cells = rows.selectAll("td")
.data(function(row) {
return columns.map(function(column) {
return {column: column, value: row[column]};
});
})
.enter()
.append("td")
// .attr("style", "font-family: Courier") // sets the font style
.html(function(d) {
if (d.column == "rental") return format(d.value); else return d.value;
});
return table;
}
function zoomed(d) {
/* Thanks to http://complextosimple.blogspot.ie/2012/10/zoom-and-center-with-d3.html */
/* for a simple explanation of transform scale and translation */
/* This function centers the county's bounding box in the map container */
/* The scale is set to the minimum value that enables the county to fit in the */
/* container, horizontally or vertically, up to a maximum value of 3. */
/* If the full width of container is not required, the county is horizontally centred */
/* Likewise, if the full height of the container is not required, the county is */
/* vertically centred. */
var xy = getBoundingBox(d); /* get top left co-ordinates and width and height */
if (d.classed("active")) { /* if county is active reset map scale and county colour */
d.attr("class", function(d) {
return quantize(rateById.get(this.id))
});
main_chart_svg.selectAll("#viewport")
.transition().duration(750).attr("transform", "scale(" + defaultScale + ")");
lastActive = "";
} else { /* zoom into new county */
resetAll(); /* reset county colors */
/* scale is the max number of times bounding box will fit into container, capped at 3 times */
scale = Math.min(mw/xy[1], mh/xy[3], 3);
/* tx and ty are the translations of the x and y co-ordinates */
/* the translation centers the bounding box in the container */
var tx = -xy[0] + (mw - xy[1]*scale)/(2*scale);
var ty = -xy[2] + (mh - xy[3]*scale)/(2*scale);
main_chart_svg.selectAll("#viewport")
.transition().duration(750).attr("transform", "scale(" + scale + ")translate("+ tx +"," + ty + ")");
d.attr("class", "active");
lastActive = d.attr("id");
}
}
function reset(selection) {
/* resets the color of a single county */
if (selection != "")
d3.select(ireland).select("#" + selection).attr("class", function(d) {
return quantize(rateById.get(this.id))
});
}
function resetAll() {
/* resets the color of all counties */
d3.select(ireland).selectAll("#republic").selectAll("path")
.attr("class", function(d) {
return quantize(rateById.get(this.id))
});
}
function tableRowClicked(x) {
/* resets colors and zooms into new county */
resetAll();
lastActive = x.county;
zoomed(d3.select(ireland).selectAll("#" + x.county).select("path"));
}
function getBoundingBox(selection) {
/* get x,y co-ordinates of top-left of bounding box and width and height */
var element = selection.node(),
bbox = element.getBBox();
cx = bbox.x + bbox.width/2;
cy = bbox.y + bbox.height/2;
return [bbox.x, bbox.width, bbox.y, bbox.height, cx, cy];
}
d3.select(self.frameElement).style("height", "650px");
</script>
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<g id="viewport" transform="scale(0.6)">
<g>
<g id="NI">
<path id="Antrim" d="m 693.1376,223.0642 c -7.14912,-3.8628 2.23488,-14.61 4.9,-19.6876 6.02048,-3.1609 13.62256,-3.036 16.24992,-10.7875 4.61568,-7.6129 2.0728,-18.5905 1.31712,-27.2046 -3.32656,-4.2098 -2.1768,7.7006 -5.04512,9.5286 -5.34032,7.6483 -4.99872,-7.6587 -5.98448,-10.899 -0.8624,-7.8875 -10.84176,-8.688 -12.7,-16.1499 -4.0696,-5.0272 -16.5104,-7.0528 -13.2,-15.5 1.2208,-4.8111 2.63456,-17.6122 -5.55008,-12.9876 -2.62128,-4.916 -2.48128,-13.5729 -1.3624,-18.6 4.11536,-2.1211 1.62944,-9.0403 -3.02496,-7.3 -1.73216,-8.9076 -10.48176,-9.647 -18.01552,-8.332 -6.3072,0.6391 -11.43648,-0.8108 -15.55952,-4.8931 -9.38496,3.4551 -17.16992,-5.3587 -26.17504,-2.2 -4.4864,2.2917 -7.93952,4.1738 -8.98752,9.3875 -3.0672,3.2888 -11.7552,1.8434 -5.05952,6.5 5.05008,6.1156 2.75312,14.1341 2.89008,21.426 0.13568,7.7708 -4.80192,20.0884 3.72176,24.3472 -2.14512,4.3307 -1.7248,8.8518 3.06432,12.1334 1.99824,7.7818 3.11968,15.8253 7.376,23.0262 2.29712,5.2879 -3.13472,17.725 3.99488,18.4423 2.59152,3.1033 1.55744,10.8185 8.62208,8.5109 6.97728,0.7024 17.57264,-6.545 21.90288,1.3516 3.07616,8.9264 -10.05216,12.9701 -8.8,20.8375 7.29968,4.0685 -0.44768,14.7709 -1.78496,21.1709 -4.85104,3.9972 6.74128,0.2548 4.51008,6.8166 5.91552,-0.2072 12.7688,-0.8048 18.13152,4.0835 7.52,1.4747 13.36432,-7.5931 17.36112,-13.0478 0.9504,-8.6888 9.43216,-7.3175 14.74832,-4.3899 3.58944,-4.2359 2.12576,-10.4381 2.45904,-15.5832 z" />
<path id="Derry" d="m 583.02496,89.9642 c -2.22816,-0.0029 -4.20896,0.1952 -4.73744,0.9 -1.14016,1.52 -4.384,9.3419 -5.14992,9.7249 -4.96592,2.4831 -12.82016,-3.4325 -19.66256,-4.075 -7.49024,-0.7032 -7.8728,2.4517 -4.8,10.2251 0.74032,1.8728 -6.38752,6.2989 -6.38752,7.5624 0,1.1656 0.67952,9.3989 -0.57504,9.7125 -2.92096,0.7304 -10.61056,1.3283 -12.77488,1.6376 -5.16928,0.7384 -5.2584,-3.5907 -11.76256,-1.5376 -1.67648,0.5293 -5.18736,-1.6407 -7.16256,-3.025 -0.11328,0.0205 -0.23456,0.0432 -0.3,0.0626 0.059,4.5734 -4.94704,3.4374 -9.71248,3.4374 -0.2824,0 -5.05776,4 -6.8624,4 -7.34592,0 -4.6064,1.8763 -7.42512,7.425 -1.34544,2.6486 -0.72992,10.2875 2.86256,10.2875 2.8824,0 -1.44064,7.2734 1.13744,8.5626 0.236,0.1179 -1.09552,1.099 -1.42496,2 -0.14192,0.2342 -0.29312,0.4555 -0.43744,0.6875 0.69072,0.0525 1.32832,0.1104 1.8624,0.175 2.73888,1.0306 10.0512,-1.8697 13.71248,-1.1376 1.50592,0.3013 0.79776,3.6275 2.28752,4 4.33664,1.0842 9.14992,-0.2793 9.15008,4.5626 -1.6e-4,6.8811 5.91312,7.2502 9.71248,9.1499 3.57264,1.7864 4.13408,1.6678 9.13744,0 1.41136,-0.4704 1.96992,2.2349 2.86256,3.4251 0.68,0.9067 12.8064,0 15.42496,0 2.21776,0 2.28752,-0.1601 2.28752,4.5749 0,1.7917 0.77904,1.4464 0,4.5626 -1.13648,4.5457 -7.7488,9.1499 -1.14992,9.1499 2.82384,0 8.91888,1.3216 10.28736,1.7126 1.82672,0.5218 -2.19456,4.5749 4,4.5749 11.6496,0 4.70672,-0.2518 6.86256,5.1376 2.04976,5.1245 -1.2696,4.7547 4,6.8624 0.38912,0.1557 2.17328,3.8318 4,4.5626 4.1672,1.6668 2.59872,1.5632 8,-1.1375 2.82736,-1.4137 6.64688,-3.0422 9.71248,-4.575 0.76192,-0.381 1.5256,-0.7567 2.28752,-1.1376 1.20464,-0.6023 4.3656,-1.1499 5.71248,-1.1499 0.84096,0.2284 -0.8712,-1.7852 -1.13744,-2.2751 -1.34464,-2.6889 -1.72496,-5.2261 -1.72496,-9.1499 0,-3.1702 5.24752,-3.5646 8,-5.1376 0.35376,-0.1925 0.6648,-0.3525 0.9624,-0.4875 -0.47024,-1.2693 -1.2448,-1.829 -1.52496,-2.9499 -0.70624,-2.8245 0,-11.545 0,-12.5626 0,-4.5019 -3.56928,-9.4229 -5.15008,-13.1499 -1.82976,-4.3147 -0.21248,-8.4127 -2.28736,-12.5626 -0.81008,-1.6198 -6.78352,-6.3803 -5.1376,-8.575 5.59344,-7.4578 -2.8624,-1.9434 -2.8624,-9.7125 0,-3.8453 -0.92416,-8.879 0,-12.5749 0.77824,-3.1131 0.47104,-6.8933 1.14992,-10.2875 0.7184,-3.5925 -1.76704,-5.6037 0,-9.1376 C 599.45456,99.9677 593.46416,90.707 592,91.4392 c 0.0266,-0.4013 0.0997,-0.7922 0.15008,-1.1877 -0.59552,0.0349 -1.216,0.0501 -1.86256,0.0501 -1.12352,0 -4.3976,-0.3339 -7.26256,-0.3374 z" />
<path id="Down" d="m 733.15008,205.5517 c -0.50272,0.0229 -1.06672,0.1233 -1.82512,0.275 -4.45792,0.8915 -5.8648,3.833 -8.7,4.4 -4.32176,0.8643 -7.72336,2.925 -12.91248,2.925 -5.37104,0 -5.05968,2.7846 -7.42496,5.1499 -2.69664,2.6966 -3.53952,5.8123 -9.14992,4.8 0,2.3973 0,4.8029 0,7.2 -1.6e-4,1.4582 -0.6912,11.8715 -5.1376,7.4251 -1.26608,-1.2662 -9.13024,-3.4913 -10.28752,1.1375 -0.85344,3.4142 -4.0792,8.0792 -6.28752,10.2875 -1.78848,1.7886 -9.06352,9.1153 -12,7.4374 -4.67936,-2.6739 -7.44848,-5.6648 -12,-4.575 -3.32384,0.796 -2.90896,0.1211 -2.9624,-0.3 -0.15248,0.1014 -0.30624,0.2011 -0.46256,0.3 -2.21408,1.1641 -3.43952,6.3019 -5.71248,8.575 -2.97936,2.9794 -6.86256,4.1056 -6.86256,9.1376 0,4.8427 -9.7728,-1.9665 -7.42496,7.425 0.61328,2.4531 7.34416,7.3566 9.1376,9.1499 4.95648,4.9566 2.45632,8.8966 -1.1376,14.2875 -0.29968,0.4495 1.1376,6.3519 1.1376,9.7125 0,3.5566 -0.56256,6.0534 -0.56256,9.1376 0,4.505 0.74544,5.2818 1.71248,9.1499 0.82864,3.3147 1.6992,5.1235 2.85008,7.425 1.29728,2.5947 1.61072,3.9837 4.0624,6.4501 1.20928,0.1401 2.97168,1.2785 5.08752,2.1249 1.9048,0.7619 3.80768,1.5131 5.71248,2.2751 4.2744,1.7097 11.45296,4.0203 14.86256,5.7249 5.56384,2.7821 5.52544,3.7251 12.2,3.725 0.3808,0 0.56784,-1.92 0.93744,-2.0125 3.49072,-0.8726 6.40848,-0.817 8.57504,-5.1499 1.40672,-2.8136 5.09936,-7.0843 6.84992,-9.7125 3.47136,-5.2115 3.93856,-8.0312 4.67504,-12 0.24576,-1.3243 -1.62736,-4.7602 -0.67504,-5.7125 3.33072,-3.3307 5.14384,-4.5625 4,-9.1376 -0.51072,-2.0432 -0.68336,-10.2875 2.86256,-10.2875 4.10448,0 4.86272,0.3133 5.71248,4.5626 0.79232,3.9616 0.24112,6.167 4.57504,4 3.18272,-1.5914 6.97104,-1.9548 8.56256,-5.1375 2.06288,-4.1261 12.00336,-0.5958 11.53744,-4.875 -0.55856,-5.1306 10.17424,-3.364 0.6,-8.3376 -1.84896,-0.9603 -0.77872,-3.4376 -3.56256,-4.5 -10.92112,-4.1677 -5.24992,-2.3648 -5.24992,-5.7874 -1.6e-4,-4.3704 2.17328,-7.663 1.24992,-11.9251 0.0251,-0.1006 1.14992,-3.275 1.15008,-5.7125 -1.6e-4,-2.5862 -2.97776,-8.1139 -2.86256,-8.575 0.54848,-2.1935 1.45008,-5.8047 1.45008,-7.425 0,-2.0958 -1.40608,-7.3934 -2.58752,-8.575 -0.63776,-0.6376 -7.69984,-8.4354 -6.86256,-8.5749 2.97072,-0.4952 5.02576,-3.9251 8.0376,-3.9251 6.00224,0 3.92672,-8.3898 7.38736,2.7875 0.96544,3.1181 2.28752,5.4506 2.28752,9.7125 0,4.8691 3.42512,6.6688 3.42512,10.8501 0,3.4528 1.14992,5.4172 1.14992,9.1499 0,4.2825 -4.57504,6.8497 -4.57504,8 0,3.5517 0.31424,5.2321 1.15008,8.575 0.25872,1.0354 0.79472,7.8224 2.27504,8.5626 3.55408,1.7769 6.27696,2.0293 6.8624,-2.2875 0.18048,-1.3309 2.8624,-5.7922 2.86256,-8.5626 0,-4.3507 1.2328,-4.203 2.27504,-6.2875 1.07568,-2.1514 1.02352,-5.1944 1.72496,-8 0.39776,-1.5911 3.91024,-9.1885 0.5624,-10.8624 -3.94464,-1.9723 -1.89024,-4.612 -4,-7.425 -0.37904,-0.5054 -2.31472,-7.5985 -2.84992,-8 -2.54096,-1.9057 -3.10336,-5.9659 -5.71248,-8.575 C 741.032,223.3211 740,222.1317 740,218.3016 c 0,-1.233 0.0134,-9.9933 -0.57504,-10.2875 -3.8304,-1.9152 -4.76736,-2.5311 -6.27488,-2.4624 z M 644.1376,349.1891 c 0.1864,0.5023 0.49136,0.8946 1,1.1125 0.94752,0.4062 2.0632,0.8994 3.22496,1.4125 -0.28224,-0.2661 -0.5624,-0.5373 -0.8376,-0.8125 -0.88144,-0.8814 -2.13248,-1.3346 -3.38736,-1.7125 z" />
<path id="Armagh" d="m 636.96256,247.1267 c -0.80784,0.002 -1.7272,0.1683 -2.67504,0.3125 -0.0166,0.003 -0.0405,-0.0184 -0.0626,-0.0376 -0.90736,1.0339 -1.87536,1.9755 -2.8,2.9 -3.20592,3.2061 0.15376,7.4259 -4.5624,1.1376 -2.4432,-3.2576 -6.57296,-5.7459 -7.4376,-2.2875 -0.1688,0.6755 -9.0296,-1.8205 -11.42496,0.575 -0.9712,0.9712 -2.28208,1.5256 -3.42496,2.2874 -2.46928,1.6462 -4.69264,-0.5592 -6.11248,-2.325 -0.25328,0.1986 -0.50784,0.3975 -0.75008,0.6125 -4.7912,2.3957 -7.42512,2.004 -7.42496,7.4251 0,2.2223 1.08816,8.0493 -0.57504,9.7125 -2.44208,2.4421 -8.86016,4.857 -13.13744,5.7125 -6.38704,1.2774 -6.28752,1.4819 -6.28752,8 0,5.0621 -5.62704,7.0933 -5.42496,8 -0.9008,5.3174 1.42496,11.2377 1.42496,16 0,5.0829 3.10192,4.4913 4.57504,7.4374 1.04288,2.0863 4.07504,6.1253 4.5624,8.5626 0.50288,2.5141 3.57312,8.4793 8,5.7125 3.45184,-2.1575 5.95936,-4.9032 9.15008,-1.7125 2.11632,2.1163 2.28736,5.2945 2.28752,9.1499 -1.6e-4,2.6059 0.5624,5.7821 0.5624,8 0,3.2528 -0.78176,7.7232 0,10.8501 0.58976,2.3585 8.18384,10.7147 8.57504,9.1499 0.21152,0.0421 0.40784,0.0714 0.6,0.1 0.0107,-0.3222 0.0878,-0.5589 0.26256,-0.6749 1.22608,-3.7619 5.87504,-3.5501 10,-2.8625 2.50256,0.4171 8.816,0.7361 9.71248,-2.8501 0.62704,-2.5083 6.84992,-5.5299 6.84992,-5.7125 0,-2.2035 7.42064,-2.3787 8.05008,-4 -0.0349,-0.1766 -0.0501,-0.3702 -0.0501,-0.5749 0,-2.655 0.64688,-3.3933 1.77504,-3.2625 -2.45168,-2.4664 -2.76512,-3.8554 -4.0624,-6.4501 -1.15088,-2.3015 -2.02144,-4.1103 -2.85008,-7.425 -0.96704,-3.8681 -1.71248,-4.6449 -1.71248,-9.1499 0,-3.0842 0.56256,-5.581 0.56256,-9.1376 0,-3.3606 -1.43728,-9.263 -1.1376,-9.7125 3.59392,-5.3909 6.09408,-9.3309 1.1376,-14.2875 -1.79344,-1.7933 -8.52432,-6.6968 -9.1376,-9.1499 -2.34784,-9.3915 7.42496,-2.5823 7.42496,-7.425 0,-5.032 3.8832,-6.1582 6.86256,-9.1376 2.49824,-2.6856 2.99984,-6.8053 6.17504,-8.875 -1.16816,-1.1011 -3.51456,1.4102 -4.46256,-0.2749 0,-3.5296 -1.26032,-4.3165 -3.03744,-4.3125 z" />
<path id="Fermanagh" d="m 450.28752,226.3016 c -0.1536,0.0107 -0.30896,0.0144 -0.46256,0.0251 0.047,0.0795 0.10448,0.1602 0.16256,0.2375 -0.41808,0.0195 -10.30736,4.7475 -10.56256,4.875 -2.5384,1.2691 2.54688,6.7914 -2.28736,8 -3.28016,0.82 -2.31424,2.9987 -4.28752,4.025 0.34912,0.0102 0.70256,0.0329 1.07488,0.075 2.61488,0.2947 3.47504,0.116 3.47504,-0.7376 0,-0.2563 0.1328,-0.3965 0.42496,-0.4125 0.64288,-0.035 2.05072,0.5261 4.5,1.7626 l 4.9376,2.4875 -1.66256,2.325 c -1.52656,2.144 -1.54768,2.4131 -0.31248,3.4374 1.95552,1.6218 3.53744,5.8942 3.53744,9.5626 0,2.7264 0.29024,3.2801 2.01264,3.7124 1.15472,0.29 3.43888,2.4138 5.31248,4.9501 2.6472,3.5835 3.27488,5.1229 3.27488,7.9874 0,1.9525 -0.5096,4.2539 -1.13744,5.1126 -1.0624,1.4528 -1.32624,1.1795 -3.81248,-3.8625 -1.54896,-3.141 -3.45088,-5.7732 -4.52496,-6.2626 -1.01936,-0.4643 -3.256,-2.0861 -4.96256,-3.6125 -1.70656,-1.5264 -4.756,-3.7872 -6.77504,-5.0249 -2.01904,-1.2378 -4.2632,-3.0015 -4.98752,-3.9125 -1.12128,-1.4107 -2.52608,-1.7143 -9.5,-2.0501 l -8.18736,-0.3875 0.81248,-2.3624 c 0.45168,-1.296 0.59872,-3.2464 0.32496,-4.3376 -0.45872,-1.8269 0.0685,-2.2541 6.63744,-5.3749 2.6624,-1.265 4.49584,-2.0699 5.97504,-2.5376 -3.81616,-0.0944 -5.90112,-1.4443 -8.71248,-2.8499 -3.31056,-1.6554 -6.53504,0.8408 -9.15008,1.7125 -3.46384,1.1545 -2.84992,5.1664 -2.84992,8.575 0,5.203 -5.9344,3.8558 -7.43744,6.8624 -1.83509,3.6699 -8.2731,1.9358 -11.4251,4.5626 -1.2706,1.0588 -3.27586,1.3988 -6.28749,1.4374 -2.57231,-1.6674 0.89235,2.385 1.15,3.1376 -2e-5,1.8496 3.296,9.3667 5.13749,10.2875 4.86776,2.4338 6.28638,3.9989 9.71251,7.425 2.35371,2.3536 3.38859,5.684 6.86251,8 0.82352,0.5489 10.34528,8.1966 10.57504,8.2875 0.98624,-0.1997 2.52848,0.8539 2.5624,0.8624 5.15184,1.288 3.37984,2.2298 6.28752,5.1376 2.2104,2.2104 3.99216,5.1296 6.28752,7.425 2.4536,2.4536 3.66656,6.2875 6.86256,6.2875 4.38416,0 4.89872,-1.0597 9.13744,0 3.87536,0.9688 6.28752,0.6915 6.28752,5.1499 0,4.3558 0.27328,5.7125 5.13744,5.7125 5.11504,0 7.98336,1.7022 12.57504,2.8501 1.49776,0.3744 4.64848,11.3515 9.71248,6.2875 0.4752,-0.4751 4.56096,-8.0315 5.71248,-3.425 1.42016,5.6802 6.60496,1.9144 9.71264,1.1375 0.14512,-0.0364 9.61152,-9.8466 9.14992,-8 0.11632,-0.0567 0.33376,-0.1911 0.58752,-0.3501 0.59472,-4.3624 3.41088,-4.8063 4.54992,-9.3624 0.80896,-3.2352 9.48704,-6.3866 11.4376,-10.2875 C 523.22848,310.1318 520,304.9379 520,302.3016 c 0,-2.4936 -1.47504,-5.5494 -0.57504,-9.1499 0.18192,-1.3043 7.02192,-4.2592 2.28752,-2.8501 -1.34096,0.3354 -7.20688,-0.8301 -10.84992,-2.2875 -3.64336,-1.4573 -6.83872,-7.8823 -9.72496,-10.2874 -2.49792,-2.0816 -4.03568,-5.1678 -7.42512,-6.8625 -3.53008,-1.7652 -0.5504,-4.3812 -6.28752,-3.425 -4.27328,0.7122 -6.72384,0.8621 -10.28736,2.2875 -4.81344,1.9253 -4.09008,1.3063 -7.42512,-2.8625 -0.18352,-0.2293 -6.02176,3.7883 -7.42496,3.4374 -3.40736,-0.8518 -0.18016,-7.4778 -2.28752,-10.2875 -2.60864,-3.4781 6.28752,-7.0773 6.28752,-11.425 0,-0.9523 0,-1.9101 0,-2.8624 0,-4.7141 7.11424,-5.9401 -3.42496,-8.575 -3.49312,-0.8733 -6.28048,-3.9803 -9.15008,-6.8501 -0.87088,-0.8707 -2.46112,-3.6787 -3.42496,-4 z m 20.92496,75.9125 3.47504,2.5 c 2.72256,1.9553 3.37104,2.871 3.02496,4.2501 -0.33312,1.3273 0.0736,1.9942 1.65008,2.7124 1.79552,0.8183 2.08752,1.4644 2.08752,4.6501 0,3.197 0.45584,4.2019 3.3,7.2874 2.68688,2.915 3.19472,3.9645 2.7624,5.6875 -0.29968,1.1936 -1.10672,2.1312 -1.8624,2.1376 -0.73648,0.006 -2.14848,0.2222 -3.1376,0.4875 -1.48352,0.3978 -1.89408,0.0711 -2.3,-1.8501 -1.376,-6.5112 -6.60992,-13.9214 -13.77488,-19.4875 l -3.18752,-2.475 3.97488,-2.9499 3.98752,-2.9501 z" />
<path id="Tyrone" d="m 501.9,156.4642 c -3.88976,0.0505 -9.79088,2.1641 -12.18752,1.2625 -0.53408,-0.0646 -1.17168,-0.1225 -1.8624,-0.175 -1.38512,2.2243 -2.84912,4.3115 -3.85008,5.3125 -3.07568,3.0756 -4,4.0198 -4,8.575 0,6.4795 -5.41984,3.3795 -6.8624,9.1499 -0.70912,2.8359 -0.56256,5.9789 -0.56256,9.1376 0,0.9842 -1.28448,11.6207 -4,8 -0.61984,-0.8264 -7.43744,-6.6918 -7.43744,-1.7126 0,7.3789 -12.96176,4.7627 -13.71264,4.575 -2.25024,-0.5625 -8.8488,-1.1499 -13.13744,-1.1499 -8.58512,0 0.10448,5.9944 -4.57504,8 -6.38832,2.7378 -4.57488,1.7861 -4.57488,5.7125 0,4.0785 -1.76144,9.7125 3.43744,9.7125 5.29648,0 5.82432,4.606 8,5.1499 0.94752,0.2369 1.65328,0.2981 2.18752,0.2376 0.1944,-0.1767 0.42144,-0.3357 0.7,-0.4751 0.18256,-0.0913 0.36144,-0.1851 0.54992,-0.2625 0.89712,-1.7263 -1.66016,-5.7874 0.56256,-5.7874 2.48352,0 4.06608,-5.1107 6.28752,-4 5.15072,2.5754 1.50592,6.1336 2.9624,8.6 0.1536,-0.0107 0.30896,-0.0144 0.46256,-0.0251 0.96384,0.3213 2.55408,3.1293 3.42496,4 2.86976,2.8698 5.65696,5.9768 9.15008,6.8501 10.5392,2.6349 3.42496,3.8609 3.42496,8.575 0,0.9523 0,1.9101 0,2.8624 0,4.3477 -8.89616,7.9469 -6.28752,11.425 2.10736,2.8097 -1.11984,9.4357 2.28752,10.2875 1.4032,0.3509 7.24144,-3.6667 7.42496,-3.4374 3.33504,4.1688 2.61168,4.7878 7.42512,2.8625 3.56352,-1.4254 6.01408,-1.5753 10.28736,-2.2875 5.73712,-0.9562 2.75744,1.6598 6.28752,3.425 3.38944,1.6947 4.9272,4.7809 7.42512,6.8625 2.88624,2.4051 6.0816,8.8301 9.72496,10.2874 3.6432,1.4574 9.50896,2.6229 10.84992,2.2875 1.34096,-0.3352 8.92112,-2.4171 9.71248,-4 2.37104,-4.7421 1.24816,-5.823 4,-8.5749 2.7424,-2.7424 3.13344,-6.9293 8,-5.7126 1.80992,0.4525 11.68208,0.1229 12,1.7126 0.28496,1.4243 -1.6704,7.4386 0.57504,8 1.93584,0.4839 7.55776,5.5055 8.86256,7.4125 -0.1496,-0.9126 5.42496,-2.948 5.42496,-7.9875 0,-6.5181 -0.0995,-6.7226 6.28752,-8 4.27728,-0.8555 10.69536,-3.2704 13.13744,-5.7125 1.6632,-1.6632 0.57504,-7.4902 0.57504,-9.7125 -1.6e-4,-5.4211 2.63376,-5.0294 7.42496,-7.4251 0.24224,-0.215 0.4968,-0.4139 0.75008,-0.6125 -0.59616,-0.7413 -1.05776,-1.4077 -1.32496,-1.675 -2.42816,-2.428 0.57488,-6.8536 0.57488,-10.2874 0,-4.3153 0.75056,-8.3637 1.71248,-10.2875 0.256,-0.5118 3.9136,4.9922 8,-1.1376 1.87232,-2.8083 1.35312,-6.6936 2.86256,-9.7125 0.9128,-1.8257 -0.51072,-3.7609 -1.88752,-5.6499 -0.1376,-0.0373 -0.2728,-0.0661 -0.4,-0.075 -1.34688,0 -4.50784,0.5476 -5.71248,1.1499 -0.76192,0.3809 -1.5256,0.7566 -2.28752,1.1376 -3.0656,1.5328 -6.88512,3.1613 -9.71248,4.575 -5.40128,2.7007 -3.8328,2.8043 -8,1.1375 -1.82672,-0.7308 -3.61088,-4.4069 -4,-4.5626 -5.2696,-2.1077 -1.95024,-1.7379 -4,-6.8624 -2.15584,-5.3894 4.78704,-5.1376 -6.86256,-5.1376 -6.19456,0 -2.17328,-4.0531 -4,-4.5749 -1.36848,-0.391 -7.46352,-1.7126 -10.28736,-1.7126 -6.59888,0 0.0134,-4.6042 1.14992,-9.1499 0.77904,-3.1162 -1.6e-4,-2.7709 0,-4.5626 0,-4.735 -0.0698,-4.5749 -2.28752,-4.5749 -2.61856,0 -14.74496,0.9067 -15.42496,0 -0.89264,-1.1902 -1.4512,-3.8955 -2.86256,-3.4251 -5.00336,1.6678 -5.5648,1.7864 -9.13744,0 -3.79936,-1.8997 -9.71264,-2.2688 -9.71248,-9.1499 -1.6e-4,-4.8419 -4.8136,-3.4784 -9.15008,-4.5626 -1.48976,-0.3725 -0.7816,-3.6987 -2.28752,-4 -0.4576,-0.0915 -0.96928,-0.1321 -1.52496,-0.1249 z" />
</g>
<g id="republic">
<g id="g_Louth">
<path id="Louth" d="m 639.47504,346.3016 c -0.62944,1.6213 -8.05008,1.7965 -8.05008,4 0,0.1826 -6.22288,3.2042 -6.84992,5.7125 -0.89648,3.5862 -7.20992,3.2672 -9.71248,2.8501 -4.12496,-0.6876 -8.77392,-0.8994 -10,2.8625 -1.41536,0.9413 3.56528,9.4986 -1.4376,12 -2.65712,1.3285 -4.56256,4.6995 -4.5624,8.5749 -1.6e-4,3.4494 -3.79392,5.3221 -5.72496,6.2875 -1.69744,0.8487 -5.65088,2.2559 -8.27504,3.425 4.46128,0.9494 10.12768,4.1277 14,8.0001 2.41936,2.4194 4.5624,4.3455 4.5624,8.5749 0,1.8098 1.90928,11.4251 4.57504,11.4251 2.81104,-1e-4 10.37536,-1.3811 13.1376,0 2.292,1.146 3.23888,4.5159 5.72496,5.1375 4.59456,1.1486 5.77984,4.1907 9.13744,5.1499 1.64336,0.4696 11.97408,-0.3099 13.1376,0.5626 -1.0456,-1.7863 0.44544,-1.5327 0.43744,-3.2876 0,-6.0755 7.05312,-10.2206 2.42496,-14.9875 -0.88592,-0.7086 -1.71248,-3.9317 -1.71248,-5.1499 0,-5.339 1.86176,-5.0152 0.57504,-9.1376 -2.35584,-7.5469 -2.76656,-4 -8.57504,-4 -2.99824,0 -8,-1.155 -8,-4.5749 0,-3.4157 -2.45728,-5.7686 -0.57504,-8.575 3.23248,-4.8197 0,-7.6155 0,-11.425 -3.0304,-2.4622 -1.2472,-10.2848 3.22512,-5.8126 3.33456,3.3347 6.51264,8.3032 10.48736,8.1 1.59792,-0.0816 5.52384,-3.8192 7.4376,-2.8624 3.53088,1.7654 6.0928,0.575 10.27504,0.575 5.43904,0 2.62672,-2.6803 1.72496,-6.2875 -2.18048,-8.7218 -3.43504,1.715 -7.4376,-2.2875 -3.56944,-3.5696 -8.1024,-6.4525 -11.9,-10.2501 -2.3856,-2.3858 -7.47552,-1.6883 -8.04992,-4.6 z" />
</g>
<g>
<path id="Kerry" d="m 211.38213,696.5421 c -0.61135,0.003 -1.06415,0.1409 -1.2625,0.475 -2.82843,4.7631 -6.15937,6.3663 -10.1,4.8499 -1.4035,-0.54 -4.39209,-5.4564 -5.25,-2.0249 -0.47269,1.8907 -5.73339,6.2624 -6.87501,2.8376 -0.85664,-2.5701 -4.85216,-4.4039 -5.65,-1.2127 -0.16444,0.658 -3.13665,8.0146 -3.23748,8.0751 -5.05064,3.0304 -3.12935,4.7763 -5.25,8.4875 -2.52727,4.4227 -5.56778,4.0482 -10.1,6.0626 -1.2122,0.5387 -2.57631,0.8164 -3.63751,1.6124 -1.52381,1.1428 -5.20053,-1.0353 -5.66249,0.8125 -0.53253,2.1301 -3.97789,6.4103 -7.67501,3.6375 -2.13175,-1.5988 -10.5125,-4.9903 -10.5125,0 0,2.9635 -0.0997,9.6875 4.05,9.6875 5.14039,0 3.85824,2.6361 6.8625,3.6376 6.67872,2.2261 -0.28197,6.5805 3.2375,10.1 1.95122,1.9512 4.72459,6.1225 0.8125,7.6873 -2.24943,0.8999 -8.45443,3.4396 -1.2125,5.2501 2.05488,0.5138 5.10583,-1.2125 8.47499,-1.2125 1.96741,0 8.02104,-1.0534 8.48751,0.8125 1.21896,4.8759 -6.56677,6.5559 -10.1,7.2626 -2.10458,0.4208 -18.05976,1.051 -18.18751,0.4125 -0.91164,-4.5584 -7.88153,-2.2836 -8.07499,-3.6376 -0.43168,-3.0218 -4.45,-4.1133 -4.45,-6.8749 0,-3.0848 3.10359,-5.8077 -0.8,-5.2501 -1.93625,0.2766 -8.13509,1.5048 -6.46249,4.8501 0.81926,1.6385 1.61249,2.2054 1.61249,4.0374 0,6.42 -1.5019,2.825 -5.66249,2.825 -5.85583,0 -7.21052,0.7865 -12.11252,3.2376 -2.2172,1.1085 -3.89094,0.2817 -2.63748,-2.2251 0.0395,-0.0791 3.49531,-7.6066 2.83748,-7.4749 -5.94553,1.1889 -5.98976,4.2214 -10.31249,5.6624 -1.48239,0.6353 -3.30605,2.4478 -4.43751,2.8249 -2.89435,0.9648 -7.76089,0.494 -6.87499,4.0376 0.51032,2.0413 1.2125,3.5416 1.2125,6.0624 0,4.5101 -4.00147,-0.036 -6.4625,2.4252 -3.1036,3.1035 -7.13245,-0.1149 -8.4875,-2.8252 -0.40045,-0.8008 -4.85,-4.6953 -4.85,-0.8124 0,2.4244 0,4.8507 0,7.275 0,1.7562 -5.34101,1.3192 -4.43751,2.825 2.38255,3.971 2.82501,3.0792 2.82501,6.875 0,3.0117 -0.8639,5.6243 1.6125,6.8626 0.53875,0.2692 1.07457,0.5678 1.62501,0.8124 1.21217,0.5388 2.19336,0.4927 3.42499,0 1.83313,-0.7332 3.39317,-2.7201 5.46249,-3.2376 2.53522,-0.6337 2.36812,-3.9777 5.25,-2.8249 3.15474,1.2619 3.87269,-0.2352 6.06252,-2.425 3.96548,-3.9654 1.33726,0.6666 5.65,1.625 1.21217,0.2694 2.39574,0.8 3.63748,0.8 1.87599,0 4.80752,-3.8325 5.26252,-2.0125 0.54801,2.192 1.83611,5.6499 4.83748,5.6501 3.02549,0 4.17572,-2.0251 5.26252,-2.0251 2.8836,0 4.69905,-1.9874 7.67499,-2.4125 3.22569,-0.4608 12.88485,2.2488 15.35,0.4 3.35589,-2.517 5.20405,-1.5957 8.4875,-3.2375 3.22549,-1.6128 4.4925,-3.2249 8.48751,-3.2249 0.78523,0 10.5,0.2467 10.5,2.8249 0,4.4709 -1.2817,4.5413 -3.63751,8.0751 -1.60926,2.4137 -4.39734,5.4693 -8.47501,4.4499 -2.76454,-0.6912 -4.99257,-2.96 -8.48748,-1.2125 -2.93082,1.4655 0.0285,5.8829 -1.62501,6.8751 -3.92335,2.3539 -7.72834,3.4579 -12.1125,5.6499 -3.48528,1.7427 -8.70816,1.0365 -13.7375,3.2376 -3.48479,1.5249 -8.54759,4.9485 -12.12499,4.4374 -1.88562,-0.2694 -4.18367,1.7119 -6.06252,2.025 -3.4259,0.571 -1.55001,4.6555 -2.42499,4.8501 -3.58685,0.7969 -8.92769,0.6392 -7.67501,5.6499 0.57229,2.2891 3.64477,6.4552 1.61252,8.4875 -3.81437,3.8144 -1.15228,6.875 -9.28751,6.875 -1.96069,0 -8.52936,3.2093 -8.4875,3.225 1.57837,0.5918 7.67501,2.4509 7.67501,5.2501 0,1.2473 -0.68325,8.9582 0,9.3 1.09523,0.5475 6.81491,2.4248 8.08748,2.4249 0.58484,0 5.18997,-3.1776 5.25,-3.2376 0.56536,-0.5652 1.2454,-3.2838 2.42501,-5.2499 0.52191,-0.8699 6.07195,-7.2435 7.67499,-4.0374 1.8806,3.7611 0.67728,6.8608 -2.02499,8.8873 -3.68877,2.7666 -0.10358,5.1464 2.02499,7.2751 1.78938,1.7894 6.86252,0.6944 6.86252,3.2249 0,6.67 -0.0963,8.1154 6.06249,6.0626 2.29263,-0.7643 4.09256,-4.0374 7.68751,-4.0374 6.13673,0 3.59945,-3.6656 6.86249,-6.4626 0.94282,-0.8082 1.58325,-2.4251 2.82499,-2.425 4.79744,0 3.46988,-1.8755 6.87501,-3.2376 5.08405,-2.0336 10.9125,2.689 10.9125,2.0252 0,-4.7976 6.73317,-0.554 8.47501,-4.0376 2.11256,-4.2252 2.88187,-4.05 8.48748,-4.05 4.09855,0 5.57341,-4.0376 9.7,-4.0376 3.27703,0 6.02535,-0.8 9.3,-0.8 2.99191,0 3.17044,2.6184 2.41252,5.6501 -1.14386,4.5754 -4.69722,4.4499 -9.68751,4.4499 -3.46264,0 -8.30681,-1.1476 -9.3,2.8252 -0.58616,2.3446 -8.65297,2.163 -8.4875,2.8249 0.66235,2.6495 2.23185,6.6235 -1.6125,5.6626 -1.07749,-0.2695 -2.16,-0.5432 -3.2375,-0.8127 -1.02053,-0.255 -1.21381,-3.1094 -2.0125,-2.4249 -1.79773,1.5409 -1.55003,5.8227 -3.56249,6.4 0.98089,2.9446 0.67499,10.5211 0.67499,13.9376 0,5.2017 5.05824,0.9021 6.86249,0 1.74362,-0.8719 5.71538,-3.9946 10.28751,-5.1376 2.64614,-0.6615 6.48936,-3.6824 7.42501,-7.425 1.41072,-5.6429 6.99299,-4 13.13748,-4 3.2437,0 6.48692,-0.3845 9.72501,-0.575 2.05677,-0.121 3.07719,-3.425 5.13751,-3.425 5.98902,0 6.3922,-6.3921 9.71249,-9.7125 2.05064,-2.0507 12.67747,-0.8689 16,-2.8625 2.26931,-1.3616 1.15,-10.2003 1.15,-12.5751 0,-3.6472 0.70779,-7.4312 2.85,-10.2873 3.5841,-4.7789 14.28751,-3.9455 14.28751,-10.8501 0,-4.8203 -8.28892,-1.6973 -5.13751,-8 2.02786,-4.0557 4.5652,-4.5723 0.5625,-8.575 -2.57336,-2.5735 -0.5625,-7.7764 -0.5625,-10.85 0,-2.0353 -2.46201,-7.1476 -2.86249,-9.15 -1.04428,-5.2213 -4.0602,-7.6887 -6.86252,-11.425 -3.69774,-4.9304 2.90648,-6.1586 5.15,-9.1499 1.1778,-1.5706 4.19884,-7.0579 4.57501,-8.5626 0.0438,-0.1753 -0.34331,-1.0043 -0.6375,-1.8625 -0.74832,-0.5172 -1.48898,-1.0495 -2.22499,-1.5749 4.34769,0 -7.11088,-5.7359 -11.42501,-6.2751 -5.78423,-0.723 -5.61845,-3.3913 -4,-7.4376 1.90139,-4.7534 2.16273,-4.2369 0,-8.5624 -1.60179,-3.2036 3.29411,-7.1545 4.56249,-8 0.6561,-0.4374 -0.88132,-10.9656 0.57501,-13.15 2.23832,-3.3575 -2.34144,-8.054 -4,-9.7125 -1.45376,-1.4538 -1.20446,-8.3115 -1.15,-11.125 -0.36091,-0.0784 -0.77789,-0.1894 -1.2375,-0.3249 -1.05821,0.3734 -1.32299,0.107 -1.37499,-0.4252 -2.276,-0.7251 -4.97298,-1.6329 -6.57501,-1.6249 z" />
</g>
<g>
<path id="Wexford" d="m 639.9,645.9267 c -5.2192,0.0954 -4.5632,4.1117 -1.61248,7.8 1.35664,1.6959 -4,2.9658 -4,5.1375 -1.6e-4,2.3236 -1.87072,6.3216 -4.57504,6.8625 -6.4672,1.2935 -6.81856,4.5749 -11.42496,4.5749 -1.96112,0 -3.18896,2.8501 -5.14992,2.8501 -4.31728,0 -3.54272,-0.8032 -5.42512,-3.425 -0.15008,0.0242 -0.284,0.0279 -0.41248,0.0125 -0.3248,0.1906 -0.66528,0.377 -1.01248,0.5624 -6.07808,4.3416 -8.83568,4.877 -5.14992,8.5626 2.79152,2.7916 1.35728,5.7249 -3.42512,5.7249 -4.46736,0 -14.85008,-0.4713 -14.84992,6.8501 -1.6e-4,4.0893 -0.98,9.2301 0,13.1499 2.10528,8.4218 -8.2024,3.6221 -9.72496,9.7125 -0.95248,3.8096 -13.62496,9.2234 -10.56256,12 -1.97184,2.2576 -2.06096,1.0766 0.28752,3.4251 2.4776,2.4776 4.22576,5.8059 0,6.8624 -7.10832,1.7771 -1.74912,3.6571 -4.57504,7.4251 -2.75088,3.6677 -4.8176,6.1328 -5.71248,9.7125 -0.27296,0.5221 -0.46816,0.8445 -0.62496,1.1 0.51024,-0.3763 1.09872,-0.7408 1.7624,-1.1 0,0.7619 0,1.5255 0,2.2875 0,4.1957 -0.57488,8.0026 -0.57488,10.85 -1.6e-4,0.7619 4,1.5256 4,2.2875 0,2.035 -0.14864,8.6643 1.14992,10.2875 3.00784,3.7597 8,4.1194 8,9.1499 0,4.3955 2.88384,4.4752 -3.9,8.5376 -4.8472,2.9026 2.32352,7.4523 6.75008,3.4624 3.99984,-3.6056 0.66064,-4.1745 6.8624,-5.7249 3.17168,-0.793 1.38768,-5.8868 0.57504,-9.1375 -1.244,-4.976 2.492,-2.5557 3.42496,-6.2875 0.84624,-3.3851 3.86688,-4.1331 6.28752,-1.7125 0.67488,0.6747 4.3144,7.4216 5.71248,6.8624 12.7624,-5.1049 6.86736,0.145 13.1376,1.7125 3.40352,0.8509 4.5304,7.5608 6.28736,8 3.33744,0.8344 8.75872,-5.1938 11.9,-4.6125 3.83408,0.7095 3.0784,-5.1 5.18752,-5.1 2.55552,0 2.20064,4.2331 4.62512,3.4251 2.96944,-0.9899 7.68128,-1.4688 10.28736,1.1375 2.54528,2.5453 5.71264,5.2345 5.71264,-0.5626 0,-4.1845 2.8624,-5.6561 2.8624,-8 0,-5.5342 -0.008,-6.2912 -4.57504,-8.5749 -6.35616,-3.1782 0.5968,-3.9782 -1.71248,-6.2875 -2.74704,-2.7472 -11.42496,1.5975 -11.42496,-2.2875 0,-6.2622 -2.76992,-5.1376 -8.57504,-5.1376 -4.26576,0 -4.19792,-5.7125 -2.28752,-5.7125 0.95248,0 1.91008,0 2.86256,0 4.36624,0 8.05312,0.5626 12.57504,0.5626 2.71104,0 4.93552,-5.4544 5.71248,-8.5626 1.12496,-4.5 5.26784,-3.3589 6.28752,-7.4374 1.22864,-4.9151 4.20288,-7.8955 6.84992,-11.425 2.0048,-2.6731 2.69296,-7.2949 5.15008,-9.1376 3.66256,-2.7469 2.20784,-3.132 3.42496,-8 0.54384,-2.1752 1.1848,-6.7627 0,-9.7249 -1.70928,-4.2732 -2.86256,-5.5842 -2.86256,-10.85 0,-4.4884 -1.26384,-6.7361 1.71264,-9.7126 0.76192,-0.7619 1.5256,-1.5256 2.28736,-2.2874 3.52704,-3.5272 0.85744,-5.4369 1.71264,-9.7126 0.44128,-2.2064 1.68944,-3.675 2.67488,-5.325 -0.44448,-0.0222 -0.82816,-0.0347 -1.0624,-0.0249 0.007,0.0129 0.11184,0.1973 0.11248,0.2 -0.53776,-0.129 -0.49216,-0.1843 -0.11248,-0.2 -0.22336,-0.4215 -3.54304,-5.961 -4.46256,-7.8 -1.06432,-2.1285 -8.436,-2.2434 -10.86256,-2.8501 -5.40368,-1.3509 -7.14864,-3.0298 -12,-4 -1.39232,-0.2784 -2.5584,-0.3926 -3.52496,-0.3749 z m 36.52496,1.2 c -0.0878,0.421 -0.21552,0.8335 -0.3624,1.2375 0.1472,-0.4052 0.27456,-0.8154 0.3624,-1.2375 z m -0.3624,1.2375 c -0.0734,0.202 -0.15344,0.4006 -0.2376,0.6 0.0845,-0.1999 0.16384,-0.3976 0.2376,-0.6 z m -0.78752,1.7875 c -0.34704,0.7033 -0.71552,1.4109 -1.05008,2.1374 0.33552,-0.7277 0.70224,-1.4331 1.05008,-2.1374 z m -1.05008,2.1374 c -0.10032,0.2181 -0.19536,0.4397 -0.28736,0.6626 0.0922,-0.2234 0.18672,-0.444 0.28736,-0.6626 z m -0.28736,0.6626 c -0.0786,0.1901 -0.15488,0.3803 -0.22512,0.575 0.0704,-0.1949 0.1464,-0.3846 0.22512,-0.575 z m -0.65008,2.1 c -0.0315,0.1651 -0.053,0.3304 -0.075,0.5 0.0219,-0.1683 0.0437,-0.3362 0.075,-0.5 z m -0.4,3.4875 c -0.0382,0.1445 -0.0794,0.2864 -0.12496,0.425 0.0456,-0.1389 0.0866,-0.2802 0.12496,-0.425 z m -0.14992,0.5 c -0.0565,0.1656 -0.12208,0.3291 -0.18752,0.4875 0.0659,-0.1593 0.13072,-0.3209 0.18752,-0.4875 z" />
</g>
<g>
<path id="Wicklow" d="m 621.08752,547.0016 c -0.18768,0.3376 -0.3592,0.6787 -0.51248,1.0126 2.74592,5.4919 -6.86912,1.7636 -8,6.2874 -0.8512,3.4045 1.13744,5.8179 1.13744,8.5626 0,5.3246 -4.52576,3.9264 -6.84992,8.575 -1.02224,2.0442 -5.54384,7.3859 -8,8 -3.84272,0.9606 -6.79968,2.7872 -9.72496,5.7125 -2.44336,2.4433 -7.42512,6.0949 -7.42512,9.7125 0,4.3424 -0.62,5.195 -3.42496,8 -3.73344,3.7334 -0.21472,3.7852 2.28752,6.2875 2.29072,2.2907 2.8264,10.2694 6.28752,12 3.62928,0 5.89392,-1.6218 9.13744,0 3.54768,1.7739 5.89824,-0.9643 8.57504,1.7125 2.28432,2.2844 3.18192,5.9833 7.42496,3.4374 0.95248,-0.5714 1.86912,-1.2157 2.86256,-1.7125 5.63008,-2.8152 2.27504,3.6815 2.27504,6.8501 0,1.0699 1.47424,11.425 0,11.425 -4.55312,0 -8.6576,0.8892 -12,1.7249 -2.0984,0.5247 -5.71264,3.3509 -5.71264,6.8501 0,5.9186 2.58656,3.149 5.15008,5.7125 2.2936,2.2936 -0.392,13.1464 3.13744,12.575 1.8824,2.6218 1.10784,3.425 5.42512,3.425 1.96096,0 3.1888,-2.8501 5.14992,-2.8501 4.6064,0 4.95776,-3.2814 11.42496,-4.5749 2.70432,-0.5409 4.57504,-4.5389 4.57504,-6.8625 0,-2.1717 5.35664,-3.4416 4,-5.1375 -3.49712,-4.3713 -3.7736,-9.2073 5.13744,-7.4251 4.85136,0.9702 6.59632,2.6491 12,4 2.42656,0.6067 9.79824,0.7216 10.86256,2.8501 0.91952,1.839 4.2392,7.3785 4.46256,7.8 0.23424,-0.01 0.61792,0.003 1.0624,0.0249 0.736,-1.2321 1.32512,-2.5641 1.32512,-4.3875 -1.6e-4,-4.2757 3.43744,-7.0157 3.43744,-10.8624 0,-3.7371 1.09216,-8.2699 4.56256,-9.1376 2.70896,-0.6773 6.28736,-3.2717 6.28736,-7.4374 0,-3.1559 0.009,-6.3096 0.57504,-9.1375 1.1464,-5.7321 -0.57504,-10.4907 -0.57504,-16 0,-0.9524 0,-1.9102 0,-2.8625 0,-6.4448 -1,-6.6079 -1,-12.5626 0,-3.7657 -0.37504,-7.3174 -0.37488,-11.0624 0,-5.5389 -2.3816,-6.4192 -5.47504,-9.5125 -2.81872,-2.8187 -2.1616,-7.2992 -4.57504,-9.7126 -0.83616,-0.8362 -1.26192,-1.7045 -1.47504,-2.6 -1.6e-4,-6e-4 -0.0123,8e-4 -0.0125,0 -0.46208,0.0522 -0.91696,0.2208 -1.37488,0.3126 -2.68448,-2.0136 -7.13056,-6.2171 -9.71264,-6.8625 -4.40688,-1.1018 -5.13744,3.8064 -5.13744,7.4374 0,2.5165 -7.05072,-4.7757 -7.42496,-5.1499 -5.42272,-5.4227 -6.28752,2.7282 -6.28752,6.2875 0,0.6701 -7.75152,-6.6016 -8.57504,-7.4251 -3.14032,-3.1403 -6.92864,-2.8624 -12,-2.8624 -0.57136,0 -1.14288,-0.002 -2,-0.2875 -0.30608,-0.0199 -0.60784,-0.0776 -0.91248,-0.1501 z m 49.66256,113.9501 c -0.37968,0.0157 -0.42528,0.071 0.11248,0.2 -6.4e-4,-0.003 -0.10576,-0.1871 -0.11248,-0.2 z" />
</g>
<g>
<path id="Monaghan" d="m 541.8,271.8016 c -3.37264,0.0238 -3.97552,3.5256 -6.37504,5.9251 -2.75184,2.7519 -1.62896,3.8328 -4,8.5749 -0.63168,1.2635 -5.5432,2.8304 -8.2,3.5875 0.0624,0.3234 0.12608,0.6397 0.2,0.9751 -1.80272,0.4507 -3.35776,-0.2815 -4,2.2875 -0.9,3.6005 0.57504,6.6563 0.57504,9.1499 0,2.6363 3.22848,7.8302 2.86256,8.5626 -1.95056,3.9009 -10.62864,7.0523 -11.4376,10.2875 -1.14576,4.5835 -3.99104,5.0014 -4.5624,9.4374 2.87552,2.0093 1.13744,3.6082 1.13744,6.5626 0,1.8145 -3.7808,8.5038 -3.42496,8.575 3.18112,0.6362 10.4904,4.5656 14.28752,2.2874 5.65952,-3.3957 10.09312,-2.2874 16.5624,-2.2874 6.23424,0 3.84736,0.5019 5.15008,5.7125 0.6432,2.5728 3.3968,3.4211 5.71248,4 2.42864,0.6072 5.53664,4.2355 6.85008,6.8624 2.07456,4.1493 2.96256,1.8003 5.72496,4.5626 1.1992,1.1993 7.292,7.0696 7.42496,8 0.7944,5.5606 0.7376,4.1376 5.13744,7.4374 2.37296,1.7797 11.28064,9.4973 12,9.1376 1.1992,-0.1914 2.41376,-0.2854 3.62512,-0.3501 2.29168,-0.9254 4.8192,-1.8659 6.08752,-2.5 1.93088,-0.9654 5.7248,-2.8381 5.72496,-6.2875 -1.6e-4,-3.8754 1.90528,-7.2464 4.5624,-8.5749 4.38576,-2.1929 1.0992,-9.0349 1.17504,-11.3251 -0.19216,-0.0286 -0.38848,-0.0579 -0.6,-0.1 -0.3912,1.5648 -7.98528,-6.7914 -8.57504,-9.1499 -0.78176,-3.1269 0,-7.5973 0,-10.8501 0,-2.2179 -0.56256,-5.3941 -0.5624,-8 -1.6e-4,-3.8554 -0.1712,-7.0336 -2.28752,-9.1499 -3.19072,-3.1907 -5.69824,-0.445 -9.15008,1.7125 -4.42688,2.7668 -7.49712,-3.1984 -8,-5.7125 -0.48736,-2.4373 -3.51952,-6.4763 -4.5624,-8.5626 -1.47312,-2.9461 -4.57504,-2.3545 -4.57504,-7.4374 0,-4.7623 -2.32576,-10.6826 -1.42496,-16 -9.6e-4,-0.004 6.4e-4,-0.009 0,-0.0125 -1.3048,-1.907 -6.92672,-6.9286 -8.86256,-7.4125 -2.24544,-0.5614 -0.29008,-6.5757 -0.57504,-8 -0.31792,-1.5897 -10.19008,-1.2601 -12,-1.7126 -0.60832,-0.152 -1.1432,-0.2159 -1.62496,-0.2125 z" />
</g>
<g>
<path id="Donegal" d="m 498.66256,52.4141 c -2.62576,0.0073 -5.27696,0.175 -7.8,0.175 -5.09792,0 -3.66576,3.0771 -0.57504,5.1375 3.47632,2.3176 6.73632,6.512 9.71248,8 1.27952,0.6398 5.37008,7.408 3.42496,8.575 -5.60048,3.3603 -7.26928,2.8741 -10.28736,-1.1501 -4.96304,-6.6173 -1.93424,-1.8438 -5.1376,-0.5624 -2.30656,0.9226 -9.64032,0.5264 -9.71248,0.5624 -3.00608,1.5032 -7.42512,2.3658 -7.42496,7.4376 -1.6e-4,4.3973 -0.26816,7.464 1.71248,11.425 1.32736,2.6547 3.28032,4.2857 4.56256,6.8501 1.84144,3.6832 1.7248,6.9403 1.72496,11.4374 -1.6e-4,3.9586 0.49376,8.1371 -1.15008,11.4251 -0.7024,1.4048 -0.50992,10.5618 -1.71248,10.8624 -2.47744,0.6194 -10.28752,1.9512 -10.28752,5.1376 0,5.864 0.46704,5.6559 -3.42496,8.5749 -1.36576,1.0243 -13.73088,6.2493 -10.38752,-0.4374 1.6864,-3.373 5.29344,-4.9365 6.28752,-8.9125 0.92976,-3.7195 4.236,-4.6311 5.26256,-7.0626 0.36368,-0.8614 -3.11632,-1.8971 -2.77504,-3.2624 1.05952,-4.2385 3.12368,-5.0725 5.03744,-8.9 1.75936,-3.5187 4.07232,-0.8733 2.86256,-5.7126 -0.71984,-2.8791 -1.78752,-4.7175 -1.78752,-8.3 0,-3.6698 -1.69648,-10.1365 -5.64992,-11.125 -5.35504,-1.3387 -1.63328,-4.3939 -3.42512,-8.575 C 454.87488,77.3933 452.1728,79.439 444,79.439 c -3.58256,0 -10.38464,1.0888 -11.52496,5.6501 -0.70368,2.8146 -5.92704,4.9383 -5.45008,7.8 0.6528,3.916 4.4,2.6627 4.4,6.5501 0,4.2296 -2.75328,7.0491 -4.5624,9.1499 -0.19088,-0.6033 -3.91872,2.5839 -3.41248,-6.6624 0.20064,-3.667 0.1384,-5.7217 -8.68752,-6.0625 -2.57088,-0.0992 3.45824,-3.1799 2.63744,-6.4626 -0.99328,-3.9733 -5.66128,-3.0382 -8.48752,-1.625 -2.87024,1.4351 -1.21712,7.3304 -3.23744,9.7 -1.50544,1.7658 -4.64528,2.3076 -7.27504,2.825 -2.94533,0.5797 2.4352,8.8432 -4.6375,7.075 -2.35453,-0.5886 -1.98828,-2.0724 -4.25,-4.6499 -1.64376,-1.8734 -3.84412,2.9762 -6.4625,1.0125 -5.67827,-4.2587 -4.23672,1.0125 -8.4875,1.0125 -1.57655,0 -6.06248,-0.6237 -6.0625,1.6125 0,1.5291 0.79554,7.8246 2.02501,9.3 3.28739,3.9448 0.86397,2.4724 -0.81251,6.0625 -1.69037,3.6197 0.6995,7.3035 -0.6,11.7125 -2.46834,2.1114 -3.74917,-2.3003 -5.4625,-4.8501 -2.09133,-3.1121 -1.13954,-1.7205 -5.05,-1.8125 -4.84874,-0.114 -3.38627,8.862 -6.2625,10.3 -5.43284,2.7165 -1.21251,2.1063 -1.21249,7.2751 0,2.6969 7.69155,5.9725 6.87499,6.4624 -2.13448,1.2808 -6.948,1.2491 -10.1,2.8251 -3.28171,1.6408 0.0866,6.7981 2.42501,7.6749 1.07749,0.4041 2.10857,0.9334 3.22499,1.2126 4.28459,1.0711 4.09741,-1.3771 7.27501,-2.0126 3.98342,-0.7967 8.02198,-1.4939 5.66249,3.2251 -0.92977,1.8595 -1.58588,6.8946 0.8,8.0875 3.7645,1.8823 1.36068,3.2795 0.4125,5.6499 -0.93909,2.3477 -3.15,3.8125 -4.85,0.4125 -1.27184,-2.5437 -5.09792,-6.1361 -8.8875,-5.6624 -3.37767,0.4221 -4.37677,2.425 -7.275,2.425 -2.91483,0 -8.08598,-1.6115 -7.675,2.0249 0.80048,7.0832 1.87044,3.8373 4.8375,6.0626 1.92085,1.4406 6.04696,2.397 7.6875,4.0374 0.71565,0.7157 1.25016,3.1623 0,5.6626 -0.65326,1.3064 -4.53361,7.5914 -6.875,5.2499 -2.34989,-2.3499 -3.25695,-3.6486 -6.4625,-4.4499 -2.49582,-0.624 -5.18778,-5.6501 -6.4625,-5.6501 -2.54795,0 -6.69502,-0.8374 -7.675,1.6125 -0.37348,0.9338 -0.30773,7.7734 -1.2125,8.075 -5.24701,1.749 -6.14038,2.1029 -9.7,5.6626 -2.91618,2.9162 -2.20814,-4.2018 -4.45,-1.2125 -1.97674,2.6355 -4.1039,2.0517 -2.42499,4.8499 1.22313,2.0386 4.84406,7.1674 6.87499,7.6751 1.98978,0.4974 2.98846,9.632 4.85,8.8875 6.73622,-2.6946 5.73253,3.2792 11.7125,2.425 9.20558,-1.3151 1.28166,0.5172 5.66251,1.6124 2.56992,0.6426 5.36598,-5.0116 6.06249,-4.8374 2.31172,0.5779 3.77186,7.3813 4.83751,5.2499 1.12875,-2.2574 6.99366,-6.8003 8.08749,-2.4249 1.22616,4.9046 -0.91461,2.715 -4.03749,6.4625 -0.99077,1.1888 -3.95099,5.9917 0,5.6624 3.77825,-0.3149 8.51803,0.6279 9.68749,-4.0499 0.87134,-3.4854 2.1595,-6.9755 2.8375,-9.6875 1.70296,-6.8119 9.05851,-1.7277 8.8875,-1.625 -1.9886,1.1931 -4.00361,8.7853 -1.21249,8.0874 3.35465,-0.8386 4.39027,-4.8499 8.07499,-4.8499 2.6364,0 3.90282,-2.8303 6.0625,-4.4501 0.37737,-0.2829 8.39726,-5.2234 9.3,-1.6125 0.17769,0.7107 1.63654,7.0568 0.4,7.675 -4.96343,2.4818 -5.56156,4.6143 -8.88749,7.2751 -3.54935,2.8395 -3.63752,4.3246 -3.63751,8.4875 0,7.9933 -6.3258,-1.4782 -4.0375,7.6749 0.55683,2.2273 0.26541,6.3257 -4.0375,5.2501 -0.53874,-0.1348 -1.08624,-0.2653 -1.625,-0.4 -0.31784,0.4238 -0.43632,1.0404 -0.575,1.6249 0.67835,0.5088 0.6534,0.4901 2.15,1.6125 1.81859,1.364 7.99822,4.1038 9.71251,6 3.01163,-0.0386 5.01689,-0.3786 6.28749,-1.4374 3.152,-2.6268 9.59011,-0.8927 11.4251,-4.5626 1.5032,-3.0066 7.43744,-1.6594 7.43744,-6.8624 0,-3.4086 -0.61392,-7.4205 2.84992,-8.575 2.61504,-0.8717 5.83952,-3.3679 9.15008,-1.7125 2.91456,1.4573 5.04576,2.8624 9.13744,2.8624 6.21088,0 3.06976,-3.4861 7.42512,-4.5749 4.83424,-1.2086 -0.25104,-6.7309 2.28736,-8 0.2552,-0.1275 10.14464,-4.8555 10.56256,-4.875 -1.85792,-2.4708 2.192,-6.1791 -3.12496,-8.8375 -2.22144,-1.1107 -3.804,4 -6.28752,4 -3.13808,0 3.26624,8.104 -4,6.2874 -2.17568,-0.5439 -2.70352,-5.1499 -8,-5.1499 -5.19888,0 -3.43744,-5.634 -3.43744,-9.7125 0,-3.9264 -1.81344,-2.9747 4.57488,-5.7125 4.67968,-2.0056 -4.01008,-8 4.57504,-8 4.28864,0 10.8872,0.5874 13.13744,1.1499 0.75088,0.1877 13.71264,2.8039 13.71264,-4.575 0,-4.9792 6.8176,0.8862 7.43744,1.7126 2.71552,3.6207 4,-7.0158 4,-8 0,-3.1587 -0.1464,-6.3017 0.56256,-9.1376 1.44256,-5.7704 6.8624,-2.6704 6.8624,-9.1499 0,-4.5552 0.92432,-5.4994 4,-8.575 1.10528,-1.1053 2.7848,-3.5204 4.28752,-6 0.32944,-0.901 1.66096,-1.8821 1.42496,-2 -2.57808,-1.2892 1.74496,-8.5626 -1.13744,-8.5626 -3.59248,0 -4.208,-7.6389 -2.86256,-10.2875 2.81872,-5.5487 0.0792,-7.425 7.42512,-7.425 1.80464,0 6.58,-4 6.8624,-4 4.76544,0 9.77152,1.136 9.71248,-3.4374 0.0654,-0.0194 0.18672,-0.0421 0.3,-0.0626 -0.84064,-0.5891 -1.42992,-1.0445 -1.43744,-1.075 -1.004,-4.0155 0.0926,-4.6675 2.84992,-7.425 1.93136,-1.9312 6.90816,-5.2955 8.85008,-7.2374 2.17824,-2.1784 1.56896,-5.0018 4.3,-7.0501 2.572,-1.929 5.72096,-2.525 9.13744,-4.5749 2.73792,-1.6429 8.52368,0.2683 9.15008,-2.8625 0.89984,-4.5002 3.74992,-4.9629 2.84992,-8.5626 -0.60272,-2.4109 -0.78464,-7.817 -4.57488,-8.575 -4.30896,-0.8618 -7.24832,-2.8624 -12.56256,-2.8624 -4.06912,0 -5.13392,-2.2583 -7.43744,-5.1376 -1.43856,-1.7983 -6.0864,-6.0965 -6.85008,-6.2876 -4.71904,-1.1796 -4.48144,-5.4078 -8,-6.2875 -2.40288,-0.6006 -4.99952,-0.7448 -7.62496,-0.7374 z m -48.67504,174.1501 c 0.006,0.007 0.007,0.0176 0.0125,0.0249 0.015,-0.015 0.004,-0.0257 -0.0125,-0.0249 z" />
</g>
<g>
<path id="Waterford" d="m 496.01968,749.7546 c -2.87456,0.1643 -8.03392,4.0009 -11.4376,3.15 -2.88784,-0.722 -4.15488,2.1698 -8.57504,0.5624 -9.79568,-3.562 -5.5064,0 -14.28736,0 -5.6856,0 -7.64288,0.3042 -10.28752,2.2876 -1.6304,1.2228 -10.83872,1.7948 -10.28752,4 0.40592,1.6236 3.12832,7.3958 1.72496,9.15 -5.60304,7.0037 3.42512,4.3312 3.42512,9.7125 -1.6e-4,4.0811 -0.82752,8.8739 -6.86256,6.2875 -4.83888,-2.0739 -9.39936,1.5816 -12.56256,0 -2.93248,-1.4664 -8.38512,-3.3808 -10.8624,-4 -9.20496,-2.3012 -3.38192,-0.6307 -6.86256,2.85 -2.30544,2.3056 -13.71072,-1.5426 -13.42499,2.575 -1.52285,3.2685 -6.57501,5.8771 -6.57501,9.425 0,6.2827 3.04397,6.4689 6.86248,10.2875 2.14261,2.1425 5.97752,7.2977 9.13752,8 11.08912,2.4643 2.52272,2.5227 8.57504,8.575 1.78576,1.7858 2.93744,5.3437 4,8 1.10496,2.7624 14.88656,6.7034 12,7.425 0.1736,0.0155 0.30384,0.0333 0.4624,0.0501 0.0942,-1.3828 0.39968,-2.8733 0.78752,-4.4252 1.24272,-4.9708 4.74,-3.6848 5.51248,0.9501 0.44288,2.6571 -0.84464,7.8679 1.81264,7.425 8.22432,-1.3707 0.2304,0.8056 4,4.575 0.55536,0.5555 7.48848,7.1831 8,5.1375 1.15376,-4.6156 3.22304,-1.8714 4.57488,-4.5749 2.12288,-4.2459 2.24096,-4.9047 4.56256,-8 2.74448,-3.6594 10.33376,-5.8051 12,-9.1376 2.30592,-4.612 -0.14976,-3.1619 -1.71248,-6.2875 -1.11072,-2.2213 -1.51648,-6.2874 -4,-6.2876 -4.96064,0 -3.61792,-5.1374 -1.1376,-5.1374 2.4728,0 15.42496,1.4552 15.42496,-1.1499 0,-10.9472 7.75536,-4.1591 14.28768,-7.4251 0.3808,-0.1904 0.71984,-0.4914 1.13744,-0.5749 7.80368,-1.5608 15.43744,1.3441 15.43744,0 0,-5.4394 5.39792,-2.6442 8,-0.5626 6.19664,4.9573 3.80384,3.569 8.56256,0 1.52384,-1.1429 2.9416,-2.4574 4.57488,-3.4374 4.46208,-2.6773 6.25456,-2.4739 4.57504,1.7249 -3.8016,9.504 -4.57536,5.7125 4.56256,5.7125 4.9296,0 6.29872,-4.4278 11.43744,-5.7125 1.91184,-0.478 5.70512,-4.8148 4.36256,-7.5 -0.69648,-1.3929 0.19568,-8.8001 -0.9376,-9.65 -0.76176,-0.5714 -1.52544,-1.141 -2.28736,-1.7125 -5.69584,-4.2719 -9.08608,-1.1082 -11.42496,-2.8624 -2.48352,-1.8627 -8.6584,-3.1879 -9.95008,-5.1 -0.1128,-0.0115 -0.2248,-0.0261 -0.3376,-0.0376 -1.10304,-1.4707 -6.73408,3.4867 -6.8624,4 -0.83856,3.3545 -9.212,-4.7621 -9.71248,-5.1375 -2.80688,-2.1052 -3.77888,-6.0155 -4.56256,-9.15 -1.17568,-4.7028 -7.40624,-6.8468 -10.86256,-8.5749 -0.71968,-0.3599 -3.54976,-4.2317 -3.71232,-5.4251 -0.0878,-0.003 -0.1824,-0.005 -0.27504,0 z" />
</g>
<g>
<path id="Cork" d="m 300.35712,744.867 c -1.58371,-0.0115 -2.78139,0.313 -3.21248,1.1751 -0.51112,1.0222 1.11749,3.1856 0,3.4249 -16.56875,3.5506 -3.63395,3.0716 -8.56251,8 -0.50216,0.5023 -14.28751,8.362 -14.28751,4 0,-4.6835 -5.62646,-4.7046 -9.15,-4 -2.25196,0.4504 -7.94886,1.7381 -10.27499,0.5751 -1.57795,-0.789 -4.52027,-3.5917 -7.4375,-2.8624 -3.01365,0.7534 -7.65949,6.0968 -9.13751,7.4374 -1.14284,0.381 0.6674,3.6304 0.57501,4 -0.37617,1.5047 -3.39721,6.9922 -4.57501,8.5626 -2.24352,2.9913 -8.84774,4.2195 -5.15,9.1499 2.80232,3.7363 5.81824,6.2037 6.86252,11.425 0.40048,2.0025 2.86249,7.1148 2.86249,9.15 0,3.0736 -2.01086,8.2767 0.5625,10.85 4.0027,4.0027 1.46536,4.5193 -0.5625,8.575 -3.15141,6.3027 5.13751,3.1797 5.13751,8 0,6.9046 -10.70341,6.0712 -14.28751,10.8501 -2.14221,2.8563 -2.85,6.6401 -2.85,10.2873 0,2.3748 1.11931,11.2135 -1.15,12.5751 -3.32253,1.9936 -13.94936,0.8118 -16,2.8625 -3.32029,3.3204 -3.72347,9.7125 -9.71249,9.7125 -2.06032,0 -3.08074,3.304 -5.13751,3.425 -3.23809,0.1905 -6.48131,0.575 -9.72501,0.575 -6.14449,0 -11.72676,-1.6429 -13.13748,4 -0.93565,3.7426 -4.77887,6.7635 -7.42501,7.425 -4.57213,1.143 -8.54389,4.2657 -10.28751,5.1376 -1.80425,0.9021 -6.86249,5.2017 -6.86249,0 0,-3.4165 0.3059,-10.993 -0.67499,-13.9376 -0.14749,0.0424 -0.30149,0.0625 -0.47501,0.0625 -0.67343,0 -1.35155,-1e-4 -2.02499,0 -1.46488,0 -5.66252,-2.9416 -5.66252,0.4125 0,4.4952 -1.80347,5.2131 -6.05,6.0626 -7.1391,1.4277 -2.67502,2.8998 0.4,4.4374 3.07592,1.5379 3.50407,3.2979 -0.4,5.2499 -4.00768,2.004 -7.80384,0.2836 -10.51249,-0.8 -2.28967,-0.9158 -7.02685,-1.2124 -10.5,-1.2124 -3.19451,0 -2.73887,1.4097 -1.62499,3.6376 0.62352,1.247 3.99972,4.1728 2.42499,6.0624 -3.12455,3.7496 -7.18184,2.952 -11.3125,6.05 -1.14347,0.8576 -5.26261,5.0562 -2.42501,6.4751 1.99944,0.9997 6.30029,3.387 8.88751,0.8 2.05037,-2.0504 4.97699,-2.9522 7.27501,-5.2501 3.47854,-3.4786 5.01963,-0.6765 9.7,-1.6125 4.07188,-0.8144 7.02731,-0.4125 11.31249,-0.4125 0,-0.2694 -0.26937,-0.8001 0,-0.8 3.34503,0 7.25546,5.8599 10.1,4.4375 3.71397,-1.857 6.14251,-2.9359 8.48751,-6.0624 0.93731,-1.2499 3.41043,-8.0751 4.85,-8.0751 2.62236,0 5.70376,-2.8251 6.06249,-2.8249 1.7944,0 7.12615,1.8209 8.48751,0.8 2.64436,-1.9834 4.84611,-2.1488 8.07499,-3.2251 3.86265,-1.2876 5.45501,-3.6359 7.27501,-6.0624 1.33142,-1.7754 4.49625,-5.2944 5.66249,-1.2125 1.58435,5.5451 1.22187,3.6469 3.63751,6.0624 0.98854,0.9886 6.8475,3.5901 7.26249,5.2501 0.98159,3.9262 -1.22144,4.2427 -5.25,5.2499 -2.66917,0.6673 -5.47577,3.5176 -8.07501,4.0376 -3.92921,0.7857 -13.83496,-0.5451 -15.76249,2.0249 -3.73243,4.9765 -6.27475,4.1874 -12.52499,6.0624 -4.28378,1.2852 -9.22199,1.1789 -13.33751,2.8252 -4.4576,1.783 -3.29984,4.3003 -1.61249,7.6748 0.83875,1.6776 1.82814,3.6725 4.43748,3.2376 3.42247,-0.5705 5.37172,-2.7132 7.68751,-4.45 1.17161,-0.8788 6.83331,-3.0146 7.67501,-3.225 2.73569,-0.684 6.45196,-2.9016 8.88748,-4.8499 3.40869,-2.7271 4.44876,-2.0251 7.67501,-2.0251 1.13965,0 7.75527,2.371 4.45,4.85 -7.00211,5.2516 2.86354,2.5216 -9.7,5.6624 -4.52635,1.1317 -11.93216,1.9096 -14.1375,4.8501 -5.12701,6.836 -2.33939,3.0794 -9.3,6.0626 -2.59386,1.1115 -8.16931,7.6749 -4.45,7.6749 3.19493,0 6.05478,0.8 9.7,0.8 1.8075,0 5.11761,1.8899 6.06249,0 1.11285,-2.2256 1.69756,-5.2925 4.03751,-6.4624 1.97249,-0.9863 4.61029,-0.8127 7.27501,-0.8125 2.20241,-2e-4 8.12118,1.1576 9.3,-1.2 2.02532,-4.0507 2.67817,-1.2587 6.06249,-0.4127 1.67568,0.4191 3.40403,0.6336 4.83751,-0.8 2.35856,-2.3585 1.85654,-6.9139 5.26249,-6.0624 3.55712,0.8893 4.43751,2.1496 4.43751,5.65 0,3.8254 1.93856,5.7364 4.85,2.8251 2.63046,-2.6306 4.44998,-1.4576 4.45,2.0249 0,4.4309 -0.18034,4.45 3.63748,4.45 3.5218,0 5.25941,-2.8375 7.67501,-2.8375 3.68675,0 5.04421,2.3546 8.07499,2.8375 0.66936,0.1067 1.34316,0.2059 2.01252,0.3124 0,-2.3814 -0.38602,-5.1089 0,-7.4249 0.60564,-3.6339 6.28748,-4.5527 6.28748,-4.5751 0,-5.6092 -1.78259,-5.3899 2.28751,-7.4249 3.94497,-1.9725 3.86979,4.0294 6.2875,3.4249 2.94421,-0.736 7.57111,0.952 10.72499,-0.6249 4.38456,-2.1923 5.21044,-2.8645 8.7,0.6249 3.87823,3.8783 7.62535,3.2437 8.83751,-0.7374 0,-1.1429 2.73096,-0.9882 3.23752,-2.0125 1.94504,-3.9337 -0.9548,-10.4275 3.35,-9.8125 0.75219,0.1076 10.88203,1.5511 11.42499,2.2751 2.96501,3.9533 7.16493,7.5438 13.15,5.1499 4.65597,-1.8624 2.21392,-5.9733 0.57501,-8 -0.79141,-0.9787 -13.2744,-6.7418 -5.72501,-8 2.61016,-0.435 4.4444,-3.4622 6.86248,-2.3875 8.86968,3.9421 12.1784,4.2784 18.28752,10.3875 1.80264,1.8027 2.76053,-1.4878 6.01248,-5.0875 2.6264,-2.9072 -1.41144,-5.6237 0.57501,-9.1 6.036,-10.5631 8.25784,-0.6703 12.26251,-4.6751 1.86904,-1.8689 3.47941,-5.7124 7.43749,-5.7124 2.55411,0 11.81904,-0.5429 10.28752,-5.1375 -0.26309,-0.7893 -0.21845,-8.5481 -1.15,-9.7125 -0.76192,-0.9524 -2.73808,-3.3227 -3.5,-4.275 0.81816,-0.6136 8.56264,-6.3654 7.5,-7.1626 -2.79736,-2.0979 -8.52981,-8.2894 -5.13752,-9.1374 3.03227,-0.7581 3.89059,3.5344 5.71251,1.7125 1.34624,-1.3463 9.52525,-4.1757 7.42501,-2.8624 -1.594,0.9966 5.14283,0.0808 4,11.4374 -0.47488,4.7187 -13.71832,2.9666 -6.28752,7.425 1.98019,1.1881 10.00232,6.1363 12,5.1376 2.76832,-1.3842 8.94419,-0.1759 9.71251,-1.7127 1.87728,-3.7544 10.7784,-5.267 11.43744,-8.5624 1.052,-5.2595 3.40688,-4.4516 7.42512,-6.8625 1.09248,-0.6555 13.63696,-4.0755 11.42496,-6.2875 -1.01168,-1.0116 -5.81184,-2.4404 -5.13744,-5.1375 0.26064,-1.043 8.3752,-8.7217 6.28736,-10.2875 -2.03552,-1.5266 -2.57264,-3.7008 -2.4,-6.2374 -0.15856,-0.0168 -0.2888,-0.0346 -0.4624,-0.0501 2.8864,-0.7216 -10.89504,-4.6626 -12,-7.425 -1.06256,-2.6563 -2.21424,-6.2142 -4,-8 -6.05232,-6.0523 2.51408,-6.1107 -8.57504,-8.575 -3.16,-0.7023 -6.99491,-5.8575 -9.13752,-8 -3.81851,-3.8186 -6.86248,-4.0048 -6.86248,-10.2875 0,-3.4224 4.68808,-5.9776 6.38749,-9.0876 -0.32829,-0.306 -0.6528,-0.6206 -0.97501,-0.9374 -1.30736,0.0526 -8.26248,-1.3162 -8.26248,-7.1125 0,-3.6584 1.13749,-4.0288 1.13749,-7.9125 2.85715,-3.619 -0.38272,-4.0947 -0.28749,-5.2376 -7.00144,0.6432 -9.28184,-0.5625 -16.27499,-0.5624 -1.35021,0 -9.72501,-3.6283 -9.72501,-3.4376 0,0.381 0.29749,0.912 0,1.1501 -2.0116,1.6093 -12.67432,7.9503 -15.42499,6.8499 -1.71045,-0.6841 -9.94776,0.3399 -11.42501,-1.1374 -0.19587,-0.1958 -7.18784,-8.575 -7.42499,-8.575 -6.69648,0 -0.422,-6.0194 -4.57501,-6.85 -13.55747,-2.7115 -0.43507,0.194 -7.42499,-4 -1.51512,-0.9091 -9.76136,-4.003 -14.51253,-4.0376 z m 94.2,40.8626 c 0.32685,-0.0131 0.31597,-0.1179 -0.26248,-0.2626 0.088,0.0879 0.17408,0.1756 0.26248,0.2626 z m 36.41248,47.9374 c -0.12384,0.4957 -0.23456,0.9808 -0.33744,1.4626 0.10272,-0.4808 0.21376,-0.9677 0.33744,-1.4626 z" />
</g>
<g>
<path id="Limerick" d="m 346.0125,658.1642 c -1.32904,-0.2754 -6.58749,9.1241 -6.58749,11.5625 0,2.1917 -2.50376,5.0199 -3.42501,6.8624 -0.32128,0.6426 -8.40034,2.113 -9.1375,2.8501 -1.64276,1.6427 -2.67863,1.7125 -6.28749,1.7125 -0.16509,-0.0608 -0.3328,-0.1264 -0.5,-0.1875 0.30605,4.5171 -10.12896,3.2124 -14.2,3.2124 -3.75856,0 -10.32923,-1.9644 -13.33751,-1.2124 -4.92216,1.2305 -11.51424,-4.8988 -16.96249,-0.8125 -4.14394,3.1078 -2.04165,5.6569 -6.87501,6.4625 -3.94669,0.6578 -7.4505,3.6375 -10.5,3.6375 -6.746,0 -10.52245,3.1966 -16.1625,4.4499 -6.18908,1.3754 -10.23713,3.9395 -16.975,2.0251 -1.49962,-0.0619 -3.01754,0.1451 -4.5,-0.1251 -0.0545,2.8134 -0.30376,9.6714 1.15,11.1251 1.65856,1.6586 6.23832,6.3551 4,9.7125 -1.45634,2.1845 0.0811,12.7125 -0.575,13.1499 -1.26838,0.8456 -6.1643,4.7965 -4.56249,8 2.16273,4.3255 1.90137,3.8091 0,8.5626 -1.61847,4.0461 -1.78423,6.7144 4,7.4374 4.31411,0.5392 15.77269,6.2751 11.42499,6.2751 0.73603,0.5254 1.47667,1.0577 2.22501,1.575 -0.32568,-0.9502 -0.53797,-1.9374 0.0625,-2.1376 1.478,-1.3406 6.12384,-6.684 9.13751,-7.4374 2.91721,-0.7293 5.85953,2.0736 7.43749,2.8625 2.32614,1.1631 8.02302,-0.1246 10.275,-0.575 3.52352,-0.7047 9.15,-0.6837 9.15,4 0,4.3617 13.78532,-3.4978 14.28751,-4 4.92853,-4.9285 -8.00627,-4.4496 8.56249,-8 1.11749,-0.2395 -0.5111,-2.4029 0,-3.425 0.43108,-0.8622 1.62879,-1.1865 3.2125,-1.175 4.75115,0.0345 12.99739,3.1283 14.5125,4.0374 6.98992,4.1939 -6.13248,1.2885 7.425,4 4.15301,0.8306 -2.12145,6.8501 4.575,6.8501 0.23716,0 7.22913,8.379 7.425,8.575 1.47725,1.4772 9.71456,0.4533 11.425,1.1375 2.75068,1.1003 13.41342,-5.2408 15.425,-6.8501 0.29748,-0.2379 0,-0.769 0,-1.1499 0,-0.1909 8.3748,3.4374 9.725,3.4374 6.99316,0 9.27358,1.2056 16.275,0.5626 -0.0367,0.4406 0.4232,0.7766 0.83751,1.2374 0.0102,-0.7915 0.0148,-1.5833 0.025,-2.3749 0,-6.1944 4.34965,-7.347 -2.8625,-9.15 -1.90633,-0.4765 -7.0694,-7.0695 -8.56249,-8.5626 -3.35415,-3.3541 3.79229,-7.4374 -4.57501,-7.4374 -6.74395,0 -5.7125,-0.5773 -5.7125,-6.85 0,-3.2881 -7.08201,0.2604 -9.71249,-1.7126 -2.39704,-1.7978 1.89328,-7.5731 2.28749,-9.1499 0.6439,-2.5757 14.32353,-6.3235 16,-8 5.71174,-5.7117 6.47555,3.0062 2.85,-10.2875 -0.79242,-2.9056 2.86249,-5.5509 2.86251,-8.5626 0,-1.9686 -4.89999,-1.5501 -4,-5.1499 0.88358,-3.5344 10.64603,-10.5983 13.13749,-13.7125 0.71812,-0.8976 -17.99285,2.8768 -20,-1.1376 -0.90551,-1.811 -2.66666,0.3739 -4,-1.1499 -1.95927,-2.2392 -3.96351,3.0091 -6.85,2.2875 -6.44872,-1.6122 -6.82884,5.7798 -10.8625,-2.2875 -1.5869,-3.1738 -0.2804,-7.9967 -1.1375,-11.425 -0.1849,-0.7397 -0.42095,-1.6643 -0.575,-3.1376 -0.0434,-0.2537 -0.13752,-0.3965 -0.275,-0.4249 z m -107.2,107.875 c 0.0192,0.0624 0.0421,0.1182 0.05,0.1624 -0.007,-0.044 -0.0307,-0.0994 -0.05,-0.1624 z" />
</g>
<g>
<path id="Clare" d="m 265.0625,562.1517 c -5.87186,0 -3.63751,0.3273 -3.63749,4.0374 0,3.8813 -2.10763,6.4943 -6.46251,5.2501 -4.02856,-1.151 -4.24061,-0.8 -6.4625,-0.8 -4.55586,-2e-4 -3.16773,-2.4125 -6.4625,-6.0626 -4.35081,-4.8201 -8.45756,-0.1795 -8.4875,0 -0.43062,2.5837 0.50194,10.3087 -2.02499,11.7125 -6.41661,3.5648 -3.18797,6.0285 -4.85,7.2751 -2.86747,2.1505 -5.31088,3.0075 -6.46251,6.4625 -1.09407,3.2821 -2.68399,6.3162 -4.03749,9.7 -0.75776,1.8944 -6.87501,4.209 -6.87501,5.6624 0,3.0315 -0.1939,4.0383 -0.8,6.4626 -0.49411,1.9765 -6.38074,6.0625 -0.8125,6.0625 0.0898,0 -0.35478,0 0.8125,0 3.80034,-1e-4 4.95485,-3.2376 8.47501,-3.2376 5.04048,0 5.73009,1.945 2.42499,5.2501 -2.77117,2.7711 0.41685,4.8477 -3.6375,6.8749 -2.94868,1.4744 -3.33015,5.7088 -4.03749,6.0626 -4.88058,2.4403 -5.36474,2.6419 -7.67501,7.2625 -1.23589,2.4717 -5.65,3.2989 -5.65,6.0624 0,3.3655 1.91717,4.0813 2.4125,6.0626 1.39366,5.5745 -4.92245,2.4249 -8.075,2.4249 -5.319,0 -4.27102,4.4599 -7.275,6.4626 -4.37938,2.9195 -6.4625,4.7266 -6.4625,9.7 0,3.1382 0.55078,6.0626 -3.2375,6.0624 -1.76858,0 -7.32959,-0.6192 -8.475,0.8126 -0.8203,1.0253 -2.47483,5.6812 -3.2375,6.0624 -2.7296,1.3648 -6.27267,5.6501 -9.7,5.6501 -4.14552,0 -3.87206,1.2288 -6.8625,2.425 -1.48968,0.5958 -11.32468,6.875 -6.06249,6.875 3.53408,0 10.65251,-1.2045 13.32499,0.8 3.28168,2.4611 2.1457,-1.2126 3.6375,-1.2125 0.80812,-10e-5 1.61688,-10e-5 2.425,0 1.6532,0 8.38201,-2.376 10.1,-4.4376 1.08489,-1.3019 6.33745,-6.1624 7.275,-6.475 2.42437,-0.808 5.46797,4.232 7.275,2.4251 2.54265,-2.5427 3.77233,-4.2857 2.825,-8.075 -0.60313,-2.4125 -0.26854,-4.0735 2.83751,-4.8501 2.34483,-0.5861 3.5184,3.7994 4.85,6.4626 0.98525,1.9705 2.10944,7.4265 6.46249,5.25 6.70668,-3.3534 1.77751,1.2125 8.88751,1.2125 4.37857,0 4.79038,-1.2085 8.48749,-3.2251 1.72262,-0.9395 10.55739,-5.5477 12.525,-1.6125 2.48858,4.9773 -3.04852,-0.3654 -5.25,4.0376 -2.13676,4.2735 1.24664,3.225 4.83751,3.225 2.18305,0 6.47709,-1.4199 8.48749,-2.425 4.6014,-2.3008 0.65129,-1.3257 6.875,-4.4376 3.62877,-1.8144 5.94229,-5.1297 8.48751,-7.6749 1.98003,-1.9801 2.11393,-6.1515 3.63749,-7.675 1.94646,-1.9466 5.29545,-3.8432 4.4375,-7.275 -0.2817,-1.1268 -0.79584,-8.0876 1.2125,-8.0876 8.40344,0 4.81035,-1.0142 6.06251,-7.275 0.74854,-3.7427 1.92312,-4.348 4.03749,-6.4624 3.11416,-3.1142 3.23659,7.3054 2.8375,9.7 -0.57533,3.4518 -5.6625,5.5192 -5.6625,8.4875 0,3.6675 3.23751,5.0607 3.23751,8.0749 0,1.4318 3.10577,1.8336 2.82499,3.2376 -0.13469,0.6734 -1.07568,1.8896 -0.4,2.0125 2.97886,0.5416 10.7889,0.8125 14.5375,0.8125 4.37882,0 7.29354,2.1918 11.725,2.8249 1.32689,0.1896 15.21872,1.7936 15.75,4.4501 0.93577,2.2493 5.57145,-0.1952 6.85,-1.1 0.73716,-0.7371 8.81622,-2.2075 9.1375,-2.8501 0.92125,-1.8425 3.42501,-4.6707 3.42501,-6.8624 0,-2.4384 5.25845,-11.8379 6.58749,-11.5625 0.053,0.011 0.0978,0.0427 0.1375,0.0875 0.0455,-0.1751 0.092,-0.3501 0.1375,-0.525 -2.22131,2.2213 0.88261,-6.3278 2.28751,-9.1376 1.47299,-2.9461 -4.432,-8.164 -4.432,-10.8624 0,-4.6593 12.27649,-12.3941 -4.13349,-13.7323 -3.14029,-0.2562 6.94072,-6.3464 10.1247,-8.2568 4.31175,-2.587 13.18957,2.1219 13.18959,-2.492 0,-5.7552 2.87635,-5.3901 1.81369,-8.944 0.65376,3.3027 -11.09464,-1.3027 -14.275,0.2875 -4.01602,2.008 -8.71735,-4.7173 -9.725,-5.7249 -1.41393,-1.414 -8.36147,-2.1336 -10.85,-4 -3.9803,-2.9852 -7.86864,0.404 -9.71249,2.8625 -2.05575,2.741 -5.21487,2.2874 -9.71251,2.2875 -0.64952,0 -5.26229,3.9999 -9.15,4 -4.16125,0 -6.21696,5.5895 -12.575,4 -1.53291,-0.3833 0,-7.946 0,-9.15 0,-3.5077 -3.7908,-6.4165 -4.56249,-10.2751 -0.78647,-3.9323 -3.48832,-4.8379 -6.86251,-6.8624 -5.47338,-3.2841 -4.94493,-6.0549 -6.28749,-11.4251 -0.10101,-0.404 -0.19901,-0.8085 -0.3,-1.2125 -0.48595,-0.2747 -1.02493,-0.6998 -1.61251,-1.2875 -1.56594,-1.5659 -1.98245,-5.6499 -4.45,-5.6499 z" />
</g>
<g>
<path id="Carlow" d="m 585.31248,619.7642 c -0.0586,0.0828 -0.1192,0.1648 -0.17488,0.25 -0.81936,1.6386 -3.09136,3.8026 -3.42512,5.1375 -1.09744,4.3899 -7.41568,2.8126 -8,5.1499 -1.04944,4.1982 -12.00176,1.6138 -12.28752,2 -0.48896,0.3242 -2.5624,2.6245 -2.5624,4.2875 -1.6e-4,7.5631 -1.33776,2.9847 -5.72496,6.2751 -3.4472,2.5854 -8.35856,6.6531 -10.56256,8 -0.47152,0.1715 -2.67968,10.967 -3.15008,11.4374 -3.81392,3.8141 -3.83136,6.7749 0.57504,9.7126 3.65472,2.4365 9.71248,3.2925 9.71248,8 0,4.1674 -0.97728,8.7352 1.71248,11.425 1.93824,1.9382 6.7536,5.2645 7.4376,8 0.66608,2.6651 5.79104,4.4054 4.5624,6.8624 -0.89008,1.7803 -3.55104,5.092 -4.5624,9.1376 -1.1848,4.739 1.07168,6.2218 3.42496,8.575 0.0432,0.1224 0.0725,0.2317 0.11248,0.35 1.68704,-2.9306 9.97424,-7.0096 10.7376,-10.0626 1.52256,-6.0904 11.83024,-1.2907 9.72496,-9.7125 -0.98,-3.9198 -1.6e-4,-9.0606 0,-13.1499 -1.6e-4,-7.3216 10.38256,-6.8501 14.84992,-6.8501 4.7824,0 6.21664,-2.9333 3.42512,-5.7249 -3.68576,-3.6856 -0.92816,-4.221 5.14992,-8.5626 0.3472,-0.1854 0.68768,-0.3718 1.01248,-0.5624 -2.89296,-0.3482 -0.5288,-10.3914 -2.72496,-12.5875 -2.56352,-2.5635 -5.15008,0.2061 -5.15008,-5.7125 0,-3.4992 3.61424,-6.3254 5.71264,-6.8501 3.3424,-0.8357 7.44688,-1.7249 12,-1.7249 1.47424,-2e-4 0,-10.3551 0,-11.425 0,-3.1686 3.35504,-9.6653 -2.27504,-6.8501 -0.99344,0.4968 -1.91008,1.1411 -2.86256,1.7125 -4.24304,2.5459 -5.14064,-1.153 -7.42496,-3.4374 -2.6768,-2.6768 -5.02736,0.0614 -8.57504,-1.7125 -3.24352,-1.6218 -5.50816,0 -9.13744,0 -0.59488,-0.2975 -1.10416,-0.7816 -1.55008,-1.3875 z" />
</g>
<g>
<path id="Laois" d="m 493.1376,550.8642 c -7.88752,0 -4.94032,2.5769 -9.1376,5.7249 -4.00848,3.0064 -10.29104,1.2751 -14.8624,4 -1.07776,0.6424 0.84688,9.1376 -1.71264,9.1376 -6.2736,0 -6.84992,-0.1155 -6.84992,4 0,2.7959 5.16592,9.6557 5.13744,9.7125 -0.21344,0.4272 -8.72016,8.6275 -10.28752,9.1499 -4.47776,1.4927 -5.48192,2.736 -3.42496,6.8501 1.13232,2.2645 -5.77072,11.8291 -4.57504,12 0.0504,0.6302 0.0528,1.1875 0.0251,1.7 0.93088,0.5397 2.64016,1.6856 2.83744,1.725 7.7304,1.546 8.89152,3.1084 5.13744,6.8625 -2.28272,2.2827 -5.13744,4.1187 -5.13744,8 0,3.4474 0.57488,6.4725 0.57504,9.7125 -1.6e-4,4.5755 4.49344,10.5739 5.13744,13.1499 0.2624,0.1256 0.52512,0.2493 0.78752,0.3751 0.005,0.002 0.008,0.01 0.0125,0.0124 10.39664,1.3116 3.67552,-5.5374 3.77504,-5.5374 4.04688,0 5.46576,-2.2165 8,-2.8501 4.9408,-1.2353 3.4056,2.2723 6.28752,3.4251 2.84512,1.138 5.3896,5.1375 9.13744,5.1375 1.63856,0 1.22384,-4 2.86256,-4 1.62288,0 9.13744,0.5446 9.13744,-1.1375 0,-3.1172 -0.5672,-6.1489 2.28752,-6.8625 3.56272,-0.8907 3.81888,-2.8501 8,-2.8501 4.8704,0 4.94864,1.9178 6.28752,-3.4374 1.11392,-4.456 2.43328,-5.1375 7.42496,-5.1375 1.62256,0 3.792,-0.2459 5.87504,-0.2501 3.47168,-0.007 6.7,0.6578 6.7,4.2501 0,2.653 -5.51552,7.425 -2.86256,7.425 1.71424,0 3.43568,0 5.15008,0 5.77152,0 7.42496,4.7408 7.42496,9.1499 0.32064,0.032 0.64432,0.0694 0.96256,0.1126 2.41696,-1.6384 6.74768,-5.1952 9.88752,-7.55 4.3872,-3.2906 5.7248,1.288 5.72496,-6.2751 0,-1.2097 1.08848,-2.7467 1.87504,-3.6249 -0.0314,-0.0748 -0.14224,-0.3282 -0.16256,-0.3751 0.45024,-1.8008 0.31536,-12.5067 -1.15008,-15.4374 -2.1352,-4.2707 -7.23584,-6.4845 -9.13744,-10.2875 -2.08496,-4.17 -7.70544,-2.6359 -10.86256,-3.425 -5.17152,-1.293 -1.13744,-4.2072 -1.13744,-8 0,-4.164 1.25456,-5.9469 2.85008,-9.1376 1.596,-3.192 -0.86368,-8.6146 -2.27504,-11.4374 -3.38192,-6.7636 6.3176,0.6176 -3.4376,-9.1375 -0.14816,-0.1483 -0.28464,-0.2579 -0.41248,-0.3501 -0.44768,-0.058 -0.8864,-0.1283 -1.3,-0.2249 -0.8816,0.2205 -0.93056,0.2357 -2.28752,0.575 -3.00592,0.7515 -8.65664,-0.2062 -12.5624,0.5749 -1.26144,0.2523 -11.75968,3.4514 -12,2.8501 -0.55264,-1.3813 -2.50176,-1.9818 -2.86256,-3.425 -0.57728,-2.3091 0.18736,-7.0168 -0.57504,-8 -5.26944,-6.7957 -1.95552,-6.8625 -10.28736,-6.8625 z m 68.4624,81.4 c 0.0962,-0.003 0.22304,-4e-4 0.38752,0.0124 -0.15616,-0.0115 -0.29632,-0.0163 -0.38752,-0.0124 z" />
</g>
<g>
<path id="Tipperary" d="m 397.8,563.8016 c -0.18141,0.002 -0.35742,0.006 -0.5375,0.0126 -0.69338,0.4493 -1.31842,0.6631 -1.83749,0.4874 -1.14287,-1.4997 -7.4217,3.4274 -8.56251,3.7126 -2.15509,0.5386 -3.43749,4.266 -3.43749,6.85 0,2.5179 9.08733,7.2622 5.76457,7.2622 -2.6168,0 -5.79268,7.9235 -11.53868,10.2259 -2.85559,1.1442 -2.2797,5.9477 -2.85,8.7994 -0.37268,1.8633 2.16985,11.5734 0.3076,12.7021 1.11195,3.1116 -3.25151,7.6337 -3.25151,13.1761 0,4.6141 -2.97025,-7.3153 -7.28198,-4.7283 -3.18399,1.9104 -6.18632,3.1368 -6.18632,6.2875 10e-6,5.9331 -6.3689,5.7911 -6.3689,10.4504 2e-5,2.6984 -1.97179,6.6035 -3.44478,9.5496 -1.4049,2.8098 -4.50882,11.3589 -2.28751,9.1376 -0.0455,0.1749 -0.092,0.3499 -0.1375,0.525 0.0633,0.0713 0.11085,0.1814 0.1375,0.3374 0.15405,1.4733 0.3901,2.3979 0.575,3.1376 0.8571,3.4283 -0.4494,8.2512 1.1375,11.425 4.03366,8.0673 4.41378,0.6753 10.8625,2.2875 2.88649,0.7216 4.89073,-4.5267 6.85,-2.2875 1.33334,1.5238 3.09449,-0.6611 4,1.1499 2.00715,4.0144 20.71812,0.24 20,1.1376 -2.49146,3.1142 -12.25391,10.1781 -13.13749,13.7125 -0.89999,3.5998 4,3.1813 4,5.1499 -2e-5,3.0117 -3.65493,5.657 -2.86251,8.5626 3.62555,13.2936 2.86174,4.5758 -2.85,10.2875 -1.67647,1.6765 -15.3561,5.4243 -16,8 -0.39421,1.5768 -4.68453,7.3521 -2.28749,9.1499 2.63048,1.973 9.71249,-1.5757 9.71249,1.7126 0,6.2727 -1.03145,6.85 5.7125,6.85 8.3673,0 1.22086,4.0833 4.57501,7.4374 1.49309,1.4931 6.65616,8.0861 8.56249,8.5626 7.21215,1.803 2.8625,2.9555 2.8625,9.15 -0.0102,0.7916 -0.0148,1.5834 -0.025,2.3749 -0.41431,-0.4608 -0.87423,-0.7968 -0.83751,-1.2374 -20.60456,-1.289 -28.17651,-1.5549 0.0125,0.3125 -0.0952,1.1428 3.14466,1.6184 0.2875,5.2374 0,3.8837 -1.1375,4.2541 -1.1375,7.9126 0,5.7964 6.95514,7.1652 8.2625,7.1125 -0.0884,-0.087 -0.17455,-0.1747 -0.2625,-0.2625 0.59219,0.2436 0.55586,0.5553 1.2375,1.2 0.0613,-0.1125 0.13439,-0.2236 0.18751,-0.3375 -0.28573,-4.1176 11.11947,-0.2696 13.42507,-2.575 3.48064,-3.4807 -2.34272,-5.1514 6.8624,-2.8501 2.47728,0.6194 7.92992,2.5338 10.86256,4 3.1632,1.5816 7.72336,-2.0738 12.56256,0 6.03488,2.5864 6.8624,-2.2064 6.8624,-6.2874 0,-5.3812 -9.028,-2.7088 -3.42496,-9.7126 1.4032,-1.7541 -1.31904,-7.5262 -1.72496,-9.1499 -0.55136,-2.2051 8.65696,-2.7773 10.28752,-4 2.64448,-1.9835 4.60192,-2.2875 10.28736,-2.2875 8.78096,0 4.49168,-3.5621 14.28752,0 4.42016,1.6073 5.68704,-1.2845 8.57504,-0.5626 3.40352,0.8509 8.56288,-2.9856 11.43744,-3.1499 0.0928,-0.005 0.1872,-0.003 0.27504,0 0.37968,-1.6136 0.0394,-9.7816 -0.3,-13.1626 -0.66512,-3.3254 -5.60192,-3.8894 -8,-6.2875 -2.80176,-2.8018 -4.57504,-4.8581 -4.57504,-9.1499 0,-3.3709 3.80432,-5.3703 2.86256,-9.1375 -1.30752,-5.2304 -8.94896,-1.656 -3.42496,-10.8625 0.43808,-0.7304 0.75648,-1.5256 1.13744,-2.2875 2.19552,-4.3912 -2.26704,-6.2525 -4.57504,-9.1375 -2.4928,-3.1161 1.14096,-5.1461 -3.42496,-6.2875 -0.78128,-0.1955 -2.52896,-9.6331 -3.42496,-11.425 -1.38944,-2.7788 -6.52368,-3.3435 -9.15008,-4 -3.36848,-0.8422 -5.5064,-4.3008 -6.28736,-7.4251 -0.82816,-3.3121 -1.16272,-5.2165 -1.1376,-7.7249 0.28192,0.0432 0.53984,0.0796 0.8,0.1124 -0.26752,-0.128 -0.53248,-0.2595 -0.8,-0.3875 -0.644,-2.576 -5.1376,-8.5744 -5.13744,-13.1499 -1.6e-4,-3.24 -0.57504,-6.2651 -0.57504,-9.7125 0,-3.8813 2.85472,-5.7173 5.13744,-8 3.75408,-3.7541 2.59296,-5.3165 -5.13744,-6.8625 -0.26416,-0.0528 -3.23456,-2.0952 -3.42496,-2 -3.24016,-0.3623 -6.21984,0.93 -8.57504,-1.425 -3.55888,-3.5589 -5.71248,4.0974 -5.71248,6.8624 0,3.1934 -5.16672,5.164 -6.86256,7.4251 -4.17536,5.5672 -9.13744,-2.9501 -9.13744,6.8624 0,3.3922 5.25392,8 -1.71248,8 -2.29376,0 -2.60832,-3.9699 -4.57504,-5.1499 -2.78336,-1.6699 -4.13312,-4.1331 -6.28752,-6.2875 -2.67168,-2.6717 -4.25222,-3.173 -2.28752,-5.1375 1.66816,-1.6684 -0.51008,-6.4049 0.57504,-8.575 1.09904,-2.1986 4.24032,-2.1235 5.13744,-5.7125 1.06192,-4.2472 3.208,-5.8285 5.15008,-9.7125 0.97488,-1.95 0.16064,-7.5427 0.56256,-9.15 1.18528,-4.7416 5.14992,-2.6356 5.14992,-9.1375 0,-4.6952 -3.31776,-5.7725 -6.86256,-4 -3.15632,1.5783 -4.9344,-2.072 -6.28736,-3.4251 -1.64816,-1.6478 -3.53392,-7.8475 -4,-9.7125 -0.16384,-0.6541 -1.73413,-0.8081 -3.3376,-0.7875 z m -22.16011,53.4216 c -1.07557,0.5936 -0.51965,0.9309 0,0 z" />
</g>
<g>
<path id="Kilkenny" d="m 525.87504,629.4766 c -2.08304,0.004 -4.25248,0.2501 -5.87504,0.2501 -4.99168,0 -6.31104,0.6815 -7.42496,5.1375 -1.33888,5.3552 -1.41712,3.4374 -6.28752,3.4374 -4.18112,0 -4.43728,1.9594 -8,2.8501 C 495.4328,641.8653 496,644.897 496,648.0142 c 0,1.6821 -7.51456,1.1375 -9.13744,1.1375 -1.63856,0 -1.224,4 -2.86256,4 -3.74784,0 -6.29232,-3.9995 -9.13744,-5.1375 -2.88176,-1.1528 -1.34672,-4.6603 -6.28752,-3.4251 -2.53424,0.6336 -3.95312,2.8501 -8,2.8501 -0.10192,0 6.97584,7.1974 -4.57504,5.425 -0.0251,2.5086 0.30944,4.4128 1.1376,7.7249 0.78096,3.1243 2.91888,6.5829 6.28736,7.4251 2.6264,0.6565 7.76064,1.2212 9.15008,4 0.896,1.792 2.64368,11.2295 3.42496,11.425 4.56592,1.1414 0.93216,3.1714 3.42496,6.2875 2.308,2.885 6.77056,4.7463 4.57504,9.1375 -0.38096,0.7619 -0.69936,1.5571 -1.13744,2.2875 -5.524,9.2065 2.11744,5.6321 3.42496,10.8625 0.94176,3.7672 -2.86256,5.7666 -2.86256,9.1375 0,4.2918 1.77328,6.3481 4.57504,9.1499 2.39808,2.3981 7.33488,2.9621 8,6.2875 0.4472,2.2359 0.41872,12.4843 0.57504,12.5626 -0.076,0.3997 -0.1256,0.728 -0.16256,1.0249 0.57008,1.4922 2.94928,4.6748 3.6,5 3.45632,1.7282 9.68688,3.8724 10.86256,8.5751 0.78368,3.1345 1.75568,7.0448 4.56256,9.1499 0.50048,0.3754 8.87376,8.4922 9.71248,5.1376 0.12832,-0.5134 5.75936,-5.4707 6.8624,-4 0.1128,0.0114 0.22464,0.9542 0.3376,0.9658 -6.3136,-4.1826 16.22768,-8.2058 17.3624,-9.8533 -1.30528,-4.6661 -1.27344,-7.7367 2.2376,-10.325 0.1568,-0.2555 0.352,-0.5779 0.62496,-1.1 0.89488,-3.5797 2.9616,-6.0448 5.71248,-9.7125 2.82592,-3.7681 -2.53328,-5.648 4.57504,-7.4251 4.22576,-1.0565 2.4776,-4.3848 0,-6.8624 -2.34848,-2.3485 -2.25936,-1.1675 -0.28752,-3.4251 -0.60832,-0.5515 -0.59312,-1.211 -0.17504,-1.9374 -0.04,-0.1184 -0.0693,-0.2276 -0.11248,-0.35 -2.35328,-2.3532 -4.60976,-3.8361 -3.42496,-8.575 1.01136,-4.0456 3.67232,-7.3573 4.5624,-9.1376 1.22864,-2.457 -3.89632,-4.1974 -4.5624,-6.8624 -0.684,-2.7355 -5.49936,-6.0619 -7.4376,-8 -2.68976,-2.6898 -1.71248,-7.2576 -1.71248,-11.425 0,-4.7075 -6.05776,-5.5635 -9.71248,-8 -4.4064,-2.9377 -4.38896,-5.8985 -0.57504,-9.7126 0.4704,-0.4704 2.67856,-11.2659 3.15008,-11.4374 0.19648,-0.1202 0.4384,-0.2896 0.67504,-0.45 -0.31824,-0.0432 -0.64192,-0.0806 -0.96256,-0.1126 0,-4.4091 -1.65344,-9.1499 -7.42496,-9.1499 -1.7144,0 -3.43584,0 -5.15008,0 -2.65296,0 2.86256,-4.772 2.86256,-7.425 0,-3.5923 -3.22832,-4.2569 -6.7,-4.2501 z" />
</g>
<g>
<path id="Meath" d="m 585.05008,392.0517 c -1.7704,0.864 -9.29056,4.083 -11.3376,6.8125 -1.7632,2.3508 -10.78624,-1.0189 -12,-1.7125 -4.01376,-2.2936 -5.8088,-7.6026 -7.42496,-1.1376 -1.20608,4.8243 3.05184,4.3733 0,7.4251 -2.46528,2.4651 -2.09264,7.0573 -1.14992,8 2.46784,2.4678 0.82368,4.3262 -0.56256,5.7125 -1.03856,1.0385 -10.44976,0.328 -11.43744,0.575 -3.8848,0.9712 -4.5568,0.1362 -7.42512,2.2875 -0.44384,0.3328 -4.50944,-4.522 -5.13744,-5.15 -2.9192,-2.9191 -9.23456,1.2344 -10.86256,2.8625 -2.94816,2.9482 -12.27104,-2.4272 -14.84992,-1.1376 -3.29024,1.6451 -5.4768,0.0786 -6.86256,2.8501 -1.38576,2.7714 3.80224,1.2859 5.1376,2.2875 1.3352,1.0015 9.14992,6.801 9.14992,7.425 0,5.0688 0.268,4.2805 3.42496,7.4374 1.65408,1.6541 5.54528,3.8051 8.57504,4.5626 2.54672,0.6366 9.36928,2.9715 11.42496,5.7125 1.41216,1.883 4.21456,3.2792 5.15008,5.15 1.016,2.0319 3.42496,3.9685 3.42496,-0.575 0,-0.2282 0.67424,-11.0968 1.71248,-9.7125 1.79872,2.3983 5.71248,6.4203 5.71248,10.2875 0,0.8496 -0.58688,8.844 0,9.1375 2.38544,1.1926 3.7392,3.4374 -1.13744,3.4374 -3.5424,0 -6.30192,-0.6075 -5.15008,4 1.0976,4.3898 -0.80608,10.8199 0,14.8501 1.51632,7.5816 -7.2064,0.2878 -8.5624,5.7125 -1.40656,5.6256 -6.97664,3.4413 -8.57504,7.4374 -0.94912,2.3728 -10.2904,4.1442 -8.05536,4.8501 0.68544,1.257 2.82624,1.7702 4.19936,1.7347 2.27744,2.6175 6.86304,5.4442 10.70608,5.9778 0.4112,-0.4114 10.36752,-3.6315 16,-6.8501 6.47376,-3.6992 8.63648,-3.9877 15.43744,-2.2874 5.14736,1.2868 8.20416,1.5616 13.13744,0.5749 0.95248,-0.1904 1.89136,-0.5749 2.86256,-0.5749 4.76976,-1e-4 11.30448,5.1375 12,5.1375 7.13264,0 12.26512,-4.4207 18.28752,-1.7125 3.64928,1.641 2.7976,1.2704 2.23744,1.2875 -0.56016,0.017 7.32976,4.1043 7.85008,4.3125 1.05984,0.424 2.40304,0.6758 3.8624,0.825 -0.0704,-0.3303 -0.14944,-0.6669 -0.23744,-1 3.13008,-1.2794 4.24816,-5.8429 4.56256,-6 3.39392,-1.697 4.94112,-4.3664 8,-7.425 2.98592,-2.9861 1.14976,-6.3875 1.14992,-10.2875 0,-2.2755 -4.77392,-6.8648 -6.28752,-8 -0.66976,-0.5023 -7.86912,-5.7779 -3.42496,-8 1.79776,-0.8989 4.49824,-5.4728 5.13744,-5.7125 5.82912,-2.1859 5.82768,-0.8243 11.42512,0.575 3.38512,0.8461 4.57488,1.1322 4.57488,-3.4251 0,-2.6789 5.54384,-10.4361 6.28752,-10.2875 0.15408,-0.1096 0.30832,-0.2056 0.46256,-0.3125 -2.85184,-4.3328 -0.5216,-9.4589 -3.32496,-12.2624 -3.05232,-3.0523 -3.49248,-4.6688 -3.55008,-8.7625 -1.51552,0.3334 -1.02144,0.4713 -0.44992,1.9 -1.16352,-0.8725 -11.49424,-0.093 -13.1376,-0.5626 -3.3576,-0.9592 -4.54288,-4.0013 -9.13744,-5.1499 -2.48624,-0.6216 -3.43296,-3.9915 -5.72496,-5.1375 -2.76224,-1.3811 -10.32656,-1e-4 -13.1376,0 -2.66576,0 -4.57504,-9.6153 -4.57504,-11.4251 0,-4.2294 -2.14304,-6.1557 -4.5624,-8.5749 -3.81952,-3.8195 -9.38032,-6.9662 -13.81248,-7.9625 z" />
</g>
<g>
<path id="Kildare" d="m 558.41248,499.0142 c -2.86288,-0.006 -5.2288,0.9754 -9.27488,3.2874 -5.25712,3.0042 -14.27376,6.0034 -15.78752,6.7251 1.2264,2.5136 2.59248,5.765 4.3624,8.125 2.88144,3.8421 4.57504,5.4317 4.57504,10.8625 0,5.845 2.28752,5.6253 2.28752,8 0,3.5312 -8.14416,7.8557 -6.28752,9.7125 2.04896,2.0488 6.88784,5.4184 0.57504,8.5749 -1.91952,0.9598 -5.05696,1.1376 -8.57504,1.1376 -1.07328,0 -12.46912,1.3048 -8.57504,2.8624 10.00352,4.0014 8.30992,4.217 11.76256,6.8126 0.76192,-0.0953 1.18816,-0.1494 1.94992,0.6125 9.7552,9.7551 0.0557,2.3739 3.4376,9.1375 1.41136,2.8228 3.87104,8.2454 2.27504,11.4374 -1.59552,3.1907 -2.85008,4.9736 -2.85008,9.1376 0,3.7928 -4.03408,6.707 1.13744,8 3.15712,0.7893 8.7776,-0.745 10.86256,3.425 1.9016,3.8032 7.00224,6.0168 9.13744,10.2875 1.46544,2.9307 1.60032,13.6366 1.15008,15.4374 0.0203,0.0469 0.1312,0.3003 0.16256,0.3751 0.29456,-0.329 0.55408,-0.5741 0.68736,-0.6626 0.28576,-0.3862 11.23808,2.1982 12.28752,-2 0.58432,-2.3373 6.90256,-0.76 8,-5.1499 0.33376,-1.3349 2.60576,-3.4989 3.42512,-5.1375 0.0555,-0.0852 0.11632,-0.1672 0.17488,-0.25 -2.148,-2.9197 -2.84048,-8.7156 -4.73744,-10.6125 -2.50224,-2.5023 -6.02096,-2.5541 -2.28752,-6.2875 2.80496,-2.8052 3.42496,-3.6576 3.42496,-8 0,-3.6176 4.9816,-7.2692 7.42512,-9.7125 2.92528,-2.9253 5.88224,-4.7519 9.72496,-5.7125 2.45616,-0.6141 6.97776,-5.9558 8,-8 2.32416,-4.6486 6.84992,-3.2506 6.84992,-8.575 0,-2.7447 -1.98864,-5.1581 -1.13744,-8.5626 1.13088,-4.5238 10.74592,-0.7955 8,-6.2874 0.15328,-0.3339 0.32464,-0.675 0.51248,-1.0126 -4.09872,-0.9738 -7.94992,-6.4907 -7.94992,-10.9874 0,-4.5433 -0.13664,-5.9256 2.8624,-7.4251 0.43984,-0.22 2.72304,-5.6278 4.57504,-6.8624 4.41664,-2.9445 5.22096,-7.2477 4.23744,-11.8625 -1.45936,-0.1492 -2.80256,-0.4012 -3.8624,-0.825 -0.52032,-0.2082 -8.41024,-4.2955 -7.85008,-4.3125 0.56016,-0.0171 1.41184,0.3535 -2.23744,-1.2875 -6.0224,-2.7082 -11.15488,1.7125 -18.28752,1.7125 -0.69552,0 -7.23024,-5.1376 -12,-5.1375 -0.9712,0 -1.91024,0.3845 -2.86256,0.5749 -4.93328,0.9867 -7.99008,0.7119 -13.13744,-0.5749 -2.5504,-0.6376 -4.4448,-0.9969 -6.16256,-1 z m 46.96256,124.7624 c 0.25136,0.3149 0.48912,0.6359 0.72496,0.9501 -0.23648,-0.3147 -0.47312,-0.6345 -0.72496,-0.9501 z" />
</g>
<g>
<path id="Dublin" d="m 656.46256,449.9891 c -0.15408,0.1069 -0.30848,0.2029 -0.46256,0.3125 -0.74368,-0.1486 -6.28752,7.6086 -6.28752,10.2875 0,4.5573 -1.18976,4.2714 -4.57488,3.4251 -5.59744,-1.3993 -5.596,-2.7609 -11.42512,-0.575 -0.63904,0.2397 -3.33968,4.8136 -5.13744,5.7125 -4.44416,2.2221 2.7552,7.4977 3.42496,8 1.5136,1.1352 6.28752,5.7245 6.28752,8 0,3.9 1.836,7.3014 -1.14992,10.2875 -3.05872,3.0587 -4.60608,5.728 -8,7.425 -0.3144,0.1572 -1.43248,4.7208 -4.56256,6 1.31808,4.9865 0.73264,9.7073 -4,12.8625 -1.852,1.2346 -4.1352,6.6426 -4.57504,6.8624 -2.99904,1.4995 -2.8624,2.8819 -2.8624,7.4251 0,4.8311 4.44016,10.8517 8.8624,11.1375 0.85712,0.2857 1.42864,0.2875 2,0.2875 5.07136,0 8.85968,-0.2779 12,2.8624 0.82352,0.8235 8.57504,8.0952 8.57504,7.4251 0,-3.5593 0.8648,-11.7101 6.28752,-6.2875 0.37424,0.3742 7.42496,7.6664 7.42496,5.1499 0,-3.631 0.73056,-8.5392 5.13744,-7.4374 2.58208,0.6454 7.02816,4.8491 9.71264,6.8625 0.46192,-0.0926 0.92112,-0.262 1.38736,-0.3126 -0.58848,-2.4733 0.53136,-5.1872 -0.23744,-8.2624 -0.91088,-3.6435 -3.42512,-6.9216 -3.42496,-11.425 -1.6e-4,-6.6864 -7.72448,-3.7246 -10.86256,-6.8625 -2.44816,-2.4483 -1.71248,-6.4901 -1.71248,-10.2875 0,-6.7956 6.69344,-2.8501 11.42496,-2.85 8.08656,-10e-5 15.3576,1.6525 6.28752,-5.15 -2.5904,-1.9429 -8.57504,-1.3245 -8.57504,-4.5626 0,-0.5714 0.25568,-1.2014 0,-1.7125 -0.74336,-1.4867 -8.13664,-9.8944 -4.5624,-12.5749 11.67248,-8.7544 4.50848,-1.3662 2.84992,-8 -2.1608,-8.6436 8.57504,-4.642 8.57504,-7.4251 0,-5.9141 -4.28144,-10.2288 -9.14992,-13.1499 -5.88688,-3.5322 -4.792,-9.7101 -6.85008,-11.425 -0.77328,-0.6444 -1.36496,-1.326 -1.82496,-2.0251 z" />
</g>
<g>
<path id="Cavan" d="m 417.02496,301.4141 c -0.34496,0.2878 -0.68784,0.5817 -1.02496,0.8875 -0.55552,2.2221 -1.028,3.1243 -3.42496,4.5626 -5.612,3.3672 -5.15008,3.8424 -5.15008,10.2875 0,2.5097 -1.19584,9.0457 0,11.4374 2.40128,4.8026 4.4112,0.0967 8.57504,1.1376 3.28272,0.8207 5.11488,2.2171 6.86256,5.7125 2.01632,4.0328 4.23872,3.1011 6.84992,5.7125 4.41296,4.4129 6.84496,2.0965 11.42512,5.1499 4.10288,2.7354 3.65312,4.7907 6.8624,8 2.34976,2.3498 5.02448,5.2434 6.86256,8 1.9824,2.9739 6.27504,6.1299 6.27504,9.1376 0,3.2437 -1.7152,11.4189 1.14992,13.7125 5.73168,0 2.9104,1.1977 5.71248,4 3.04416,3.0441 4.23712,4.812 7.42496,8 2.4752,2.4752 5.99488,6.2769 8,10.2875 1.32176,2.6432 4.55424,6.7669 5.15008,9.1499 0.30896,1.2363 3.276,11.7104 6.84992,4.5626 0.28624,-0.0483 0.54528,-0.1271 0.78752,-0.2125 -0.45424,-0.2517 -0.61616,-0.6928 -0.21248,-1.5 1.38576,-2.7715 3.57232,-1.205 6.86256,-2.8501 2.57888,-1.2896 11.90176,4.0858 14.84992,1.1376 1.628,-1.6281 7.94336,-5.7816 10.86256,-2.8625 0.628,0.628 4.6936,5.4828 5.13744,5.15 2.86832,-2.1513 3.54032,-1.3163 7.42512,-2.2875 0.98768,-0.247 10.39888,0.4635 11.43744,-0.575 1.38624,-1.3863 3.0304,-3.2447 0.56256,-5.7125 -0.94272,-0.9427 -1.31536,-5.5349 1.14992,-8 3.05184,-3.0518 -1.20608,-2.6008 0,-7.4251 1.61616,-6.465 3.4112,-1.156 7.42496,1.1376 1.21376,0.6936 10.2368,4.0633 12,1.7125 2.01568,-2.6876 9.28576,-5.8287 11.2,-6.7501 -0.008,-0.2871 -0.0181,-0.5752 -0.025,-0.8624 -0.48848,0.0501 -0.97792,0.1101 -1.46256,0.1875 -0.71936,0.3597 -9.62704,-7.3579 -12,-9.1376 -4.39984,-3.2998 -4.34304,-1.8768 -5.13744,-7.4374 -0.13296,-0.9304 -6.22576,-6.8007 -7.42496,-8 -2.7624,-2.7623 -3.6504,-0.4133 -5.72496,-4.5626 -1.31344,-2.6269 -4.42144,-6.2552 -6.85008,-6.8624 -2.31568,-0.5789 -5.06928,-1.4272 -5.71248,-4 -1.30272,-5.2106 1.08416,-5.7125 -5.15008,-5.7125 -6.46928,0 -10.90288,-1.1083 -16.5624,2.2874 -3.79712,2.2782 -11.1064,-1.6512 -14.28752,-2.2874 -0.35584,-0.0712 3.42496,-6.7605 3.42496,-8.575 0,-2.9544 1.73808,-4.5533 -1.13744,-6.5626 0.003,-0.0264 0.009,-0.0488 0.0125,-0.075 -0.25376,0.159 -0.4712,0.2934 -0.58752,0.3501 0.4616,-1.8466 -9.00496,7.9636 -9.14992,8 -3.10768,0.7769 -8.29248,4.5427 -9.71264,-1.1375 -1.15152,-4.6065 -5.23728,2.9499 -5.71248,3.425 -5.064,5.064 -8.21472,-5.9131 -9.71248,-6.2875 -4.59168,-1.1479 -7.46,-2.8501 -12.57504,-2.8501 -4.86416,0 -5.13744,-1.3567 -5.13744,-5.7125 0,-4.4584 -2.41216,-4.1811 -6.28752,-5.1499 -4.23872,-1.0597 -4.75328,0 -9.13744,0 -3.196,0 -4.40896,-3.8339 -6.86256,-6.2875 -2.29536,-2.2954 -4.07712,-5.2146 -6.28752,-7.425 -2.90768,-2.9078 -1.13568,-3.8496 -6.28752,-5.1376 -0.0322,-0.008 -1.41584,-0.9539 -2.4,-0.8875 z" />
</g>
<g>
<path id="Leitrim" d="m 371.5625,256.6891 c -0.17671,0.7448 -0.38271,1.4363 -1.03749,1.6 -1.34461,0.3362 -8.80642,3.2376 -9.7,3.2376 -0.29107,0 -0.67016,0.1675 -1.08751,0.425 0.38709,0.6085 0.90301,1.2129 0.2625,3.775 -0.52267,2.0906 -6.0988,3.0511 -4.57499,4.5749 1.40094,1.401 9.14998,4.1214 9.15,6.2875 0,1.3922 -1.26978,10.9823 -2.28751,12 -4.92379,4.9239 1.42231,6.5242 2.28751,10.8501 0.46699,2.3349 -0.19227,7.2683 0.56249,10.2875 0.86176,3.4469 2.8625,4.9359 2.8625,9.1375 0,2.5206 -0.81045,8.902 0.57501,10.2875 1.8056,1.8056 5.15299,5.1499 8.56249,5.1499 5.48007,0 6.68612,3.8043 7.15,7.7125 -0.0203,0.0897 -0.0403,0.1752 -0.0625,0.2625 0.68177,0.2173 1.3668,0.4151 2.06249,0.5876 0.62999,-3.7799 6.85,-4.8484 6.85,1.1499 0,3.6267 5.15,3.8825 5.15,8.575 0,5.7047 0.9042,6.2335 1.7125,10.2751 1.76,8.8003 -0.81795,6.0705 -4,11.4374 -1.80696,3.0477 2.62518,2.7606 2.2875,6.2875 -0.45918,4.796 -6.4842,3.7091 3.42498,7.425 2.16912,0.8136 8.012,2.8619 9.15008,5.1376 1.60688,3.2139 1.0944,6.2445 3.42496,8.575 2.88224,2.8823 5.17648,6.1314 4.57504,9.425 -0.37376,0.005 10.5896,1.2011 14.27504,-3.7125 2.68288,-3.5773 8.57488,0.092 8.57488,-6.2875 0,-0.8949 4.20896,-6.6807 5.15008,-8.5626 2.0656,-4.1312 6.09696,-5.3368 10.84992,-6.2875 0.57904,-0.1157 2.78128,-0.989 3.42512,-1.1499 0.33296,-0.0906 0.63552,-0.1568 0.92496,-0.2125 -2.54,-2.5418 -0.92496,-10.3474 -0.92496,-13.5 0,-3.0077 -4.29264,-6.1637 -6.27504,-9.1376 -1.83808,-2.7566 -4.5128,-5.6502 -6.86256,-8 -3.20928,-3.2093 -2.75952,-5.2646 -6.8624,-8 -4.58016,-3.0534 -7.01216,-0.737 -11.42512,-5.1499 -2.6112,-2.6114 -4.8336,-1.6797 -6.84992,-5.7125 -1.74768,-3.4954 -3.57984,-4.8918 -6.86256,-5.7125 -4.16384,-1.0409 -6.17376,3.665 -8.57504,-1.1376 -1.19584,-2.3917 0,-8.9277 0,-11.4374 0,-6.4451 -0.46192,-6.9203 5.15008,-10.2875 2.39696,-1.4383 2.86944,-2.3405 3.42496,-4.5626 0.33712,-0.3058 0.68,-0.5997 1.02496,-0.8875 -0.0565,0.004 -0.1088,0.0142 -0.1624,0.0251 -0.22976,-0.0909 -9.75168,-7.7386 -10.57504,-8.2875 -3.47408,-2.316 -4.5088,-5.6464 -6.86251,-8 -3.42613,-3.4261 -4.84475,-4.9912 -9.71251,-7.425 -1.84149,-0.9208 -5.13751,-8.4379 -5.13749,-10.2875 -0.25765,-0.7526 -3.72231,-4.805 -1.15,-3.1376 -1.71429,-1.8962 -7.89392,-4.636 -9.71251,-6 -1.4966,-1.1224 -1.47165,-1.1037 -2.15,-1.6125 z" />
</g>
<g>
<path id="Sligo" d="m 348.22501,256.6141 c -0.68203,-0.01 -1.13751,0.4726 -1.13751,1.675 0,3.2912 0.47543,6.7445 -2.825,7.6875 -6.07488,1.7357 -0.71312,5.4004 -3.63749,6.8626 -1.11328,0.5566 -6.60365,1.2501 -7.27501,2.425 -2.6896,4.7068 -3.72234,3.28 -9.2875,6.0625 -1.95268,0.9763 -3.99965,3.3131 -2.425,6.4624 0.75348,1.5071 2.64298,5.2663 4.43751,6.4626 4.92329,3.2822 5.32979,-1.1736 10.51249,-4.0376 1.89111,-1.045 2.31848,7.239 4.03751,8.4875 3.18149,2.3107 5.97769,6.8869 2.82499,7.675 -2.99762,0.7495 -6.62443,-1.9814 -9.7,-1.2124 -2.7367,0.6841 -4.88048,1.999 -1.6125,4.4499 1.08407,0.8131 7.275,4.9557 7.275,6.0625 0,2.4224 -5.14972,8.2804 -7.675,5.2501 -0.52788,-0.6336 -3.91729,-3.5174 -5.25,-4.8501 -0.57691,-0.5769 -4.85,-2.3539 -4.85,-3.2374 0,-1.4346 0.55092,-6.8251 -1.625,-6.4626 -4.53701,0.7562 -6.24548,-0.4 -10.1,-0.4 -2.74708,0 -5.87732,3.2608 -8.075,1.6125 -2.80953,-2.107 -2.0398,-5.4462 -7.675,-4.0374 -5.02632,1.2565 -3.83445,-3.2375 -8.9,-3.2376 -2.87791,0 -6.74324,4.4798 -7.675,3.2376 -0.16131,-0.2151 -1.64403,-5.6453 -3.225,-5.2501 -0.9893,0.2474 -6.30192,3.2914 -6.875,4.4376 -1.53081,3.0616 -0.4,6.6776 -0.4,10.1 0,4.4288 -1.56857,7.267 -4.85,8.0875 -0.25257,0.0631 -4.25289,5.1512 -5.475,4.9499 -0.49866,0.3981 -1.3778,0.6008 -1.9,0.9876 0,0.6326 -0.47879,5.3419 0,5.7249 8.81763,7.0541 5.12587,-4.1955 10.85,-2.2875 3.995,1.3317 11.7535,0.9846 14.86251,2.8501 0.67819,0.4069 10.72581,6.1565 9.13749,6.8624 -8.5868,3.8165 -8.47575,3.2096 -6.85,9.7126 1.14587,4.5834 -2.46242,6.325 -6.8625,7.425 -2.36165,0.5904 -8.65078,6.8624 -2.2875,6.8624 5.98772,0 7.76694,2.2875 13.15,2.2875 5.4568,0 4.73814,5.0408 7.425,5.7125 2.23079,0.5577 6.32812,5.4118 7.425,5.1376 4.14513,-1.0363 2.01563,-4.5626 7.425,-4.5626 1.88554,0 10.93442,-3.7126 11.43751,-5.7249 0.56096,-2.2439 7.99998,-5.8632 8,-4 0,2.1304 0.18105,7.6091 0.25,9.775 0.4556,0.3771 0.86205,0.7954 1.18749,1.2749 0.35777,0.5273 0.70472,1.0603 1.06251,1.5875 0.50881,-0.3368 6.61904,2.2066 8.35,3.9376 2.4192,2.4192 0.75272,5.7066 4.57499,8 4.29878,2.5792 10.57406,-2.8413 12,2.8624 0.95645,3.8259 5.87474,4.6115 6.8625,8.5626 1.26121,5.0448 9.32652,-2.4765 10.85,-4 2.88814,-2.8882 -4.66756,-6.2231 -5.7125,-6.8501 -3.32946,-1.9976 -0.4109,-4.9621 -5.7125,-6.2874 -0.76192,-0.1905 -1.5256,-0.3846 -2.2875,-0.575 -3.18746,-0.797 -3.64488,-5.2943 -4,-7.425 -0.91947,-5.5169 -3.6628,-6.8625 4,-6.8625 5.59754,0 3.31397,5.372 7.42501,-2.8501 2.37702,-4.7539 6.86249,0.8158 6.86249,-6.8624 0,-1.7464 7.87624,-5.52 8.575,-9.7125 0.47734,-2.8642 1.09174,-3.949 1.425,-5.4251 -0.46388,-3.9082 -1.66993,-7.7125 -7.15,-7.7125 -3.4095,0 -6.75689,-3.3443 -8.56249,-5.1499 C 367.18955,327.7662 368,321.3848 368,318.8642 c 0,-4.2016 -2.00074,-5.6906 -2.8625,-9.1375 -0.75476,-3.0192 -0.0955,-7.9526 -0.56249,-10.2875 -0.8652,-4.3259 -7.2113,-5.9262 -2.28751,-10.8501 1.01773,-1.0177 2.28751,-10.6078 2.28751,-12 -2e-5,-2.1661 -7.74906,-4.8865 -9.15,-6.2875 -1.52381,-1.5238 4.05232,-2.4843 4.57499,-4.5749 0.64051,-2.5621 0.12459,-3.1665 -0.2625,-3.775 -2.10686,1.2997 -5.37502,4.9509 -5.375,1.6 0,-2.4799 -4.09141,-6.9088 -6.13749,-6.9376 z m -17.15,118.8875 c -0.0942,0.0624 -0.004,0.2294 0.35,0.5125 -0.11624,-0.1712 -0.23378,-0.3411 -0.35,-0.5125 z" />
</g>
<g>
<path id="Galway" d="m 335.47501,431.3142 c -0.0625,-0.001 -0.1224,0.005 -0.18751,0.0125 -2.5178,0.2701 -7.1643,6.1495 -10.71249,5.2624 -1.30667,-0.3267 -2.66667,-0.3845 -4,-0.5749 -3.22767,-0.4612 -0.35923,6.5493 -1.15,9.7125 -0.47991,1.9195 -10.07909,0.1927 -10.85,0 -0.78725,-0.1968 -5.45362,-2.2893 -5.15,-2.575 -4.38456,-1.6675 -13.22971,8.8625 -19.42501,8.8625 -5.54341,-1e-4 -3.27715,3.1765 -7.42499,6.2874 -3.40755,2.5557 -3.43751,3.6344 -3.43751,8.5626 0,3.5145 -4,5.9857 -4,10.2875 0,5.7869 -7.24795,1.6041 -8.56249,6.8625 -1.27335,5.0932 -10.88069,3.8968 -13.71251,3.425 -0.93628,-0.156 -2.10836,-0.9533 -3.33749,-2.075 0.11206,0.1811 0.23358,0.3768 0.32499,0.5374 0.0284,0.0502 0.0611,0.1141 0.0875,0.1626 0.11208,0.2051 0.2097,0.3969 0.28751,0.575 0.001,0.003 -0.001,0.009 0,0.0125 0.16227,0.3737 0.25126,0.6917 0.27499,1 0.0179,0.2318 0.002,0.4565 -0.05,0.6875 -0.0171,0.0765 -0.0383,0.1589 -0.0625,0.2374 -0.009,0.0288 -0.0152,0.0584 -0.025,0.0876 -0.0214,0.0657 -0.049,0.1318 -0.075,0.2 -0.012,0.0307 -0.0246,0.0561 -0.0375,0.0875 -0.0834,0.2065 -0.17872,0.4221 -0.3,0.6625 -0.58326,1.1567 -1.18603,2.3759 -1.35,2.7125 -0.082,0.1682 -0.0199,0.3264 0.15,0.4375 0.0425,0.0278 0.095,0.0529 0.15,0.075 0.16506,0.0662 0.38256,0.1 0.6375,0.1 0.67986,0 2.01656,1.104 2.975,2.4499 1.40963,1.9797 2.33268,2.4501 4.825,2.4501 0.25564,0 0.49816,0.008 0.73751,0.025 0.23933,0.0169 0.47705,0.0411 0.7,0.075 1.3376,0.2032 2.3775,0.7128 3.11249,1.525 0.0733,0.0809 0.14972,0.1638 0.225,0.2374 1.12932,1.1054 2.54619,1.4 6.3,1.4 2.77195,0 5.25564,0.2182 5.525,0.4875 0.0337,0.0338 0.0501,0.0864 0.05,0.1626 -1.2e-4,0.0761 -0.0187,0.1741 -0.05,0.2875 -0.12534,0.4538 -0.49076,1.1842 -1.01249,2.025 -0.13045,0.2102 -0.26375,0.4286 -0.41251,0.65 -0.14877,0.2213 -0.31047,0.4479 -0.475,0.6749 -1.9372,2.6741 -2.4,4.1298 -2.4,7.6626 0,3.367 0.29042,4.3625 1.25,4.3625 1.62776,-1e-4 3.062,3.8687 2.4125,6.5 -0.10547,0.4272 -0.33683,0.9647 -0.65,1.5375 -0.10438,0.1909 -0.21734,0.3921 -0.3375,0.5875 -0.48064,0.7814 -1.07568,1.5706 -1.6625,2.1875 -0.50338,0.5291 -0.98525,0.952 -1.47499,1.2749 -0.24488,0.1616 -0.49778,0.3 -0.75,0.4126 -0.37837,0.1688 -0.75987,0.286 -1.17501,0.35 -0.13838,0.0212 -0.28075,0.0273 -0.42499,0.0374 -0.86555,0.0608 -1.84715,-0.073 -3.03751,-0.3874 -0.77897,-0.2059 -2.43235,-2.8892 -3.825,-6.2251 -2.22066,-5.319 -2.32752,-5.9902 -1.18749,-7.2499 1.13904,-1.2587 1.09072,-1.6027 -0.5,-3.625 -0.82963,-1.0547 -1.25042,-1.6281 -1.28751,-2.0251 -0.005,-0.0496 0.005,-0.0926 0.0125,-0.1374 0.0502,-0.3143 0.38331,-0.5261 0.9875,-0.8501 0.8036,-0.4307 1.57972,-0.8835 1.725,-1 0.14521,-0.1165 -0.303,-1.2886 -0.98749,-2.6125 -1.02631,-1.9846 -1.90936,-2.5053 -5.06251,-2.9374 -2.10319,-0.2883 -5.0548,-0.5251 -6.5625,-0.525 -2.22726,0 -2.75,-0.3173 -2.75,-1.6875 0,-1.3026 -0.35523,-1.5661 -1.5875,-1.175 -0.10968,0.0348 -0.23871,0.0555 -0.38749,0.075 -0.1488,0.0194 -0.31896,0.0328 -0.5,0.0374 -1.08634,0.0284 -2.69016,-0.1974 -4.07501,-0.6124 -1.44603,-0.4333 -2.43832,-0.9245 -3.2375,-1.6751 -0.0888,-0.0833 -0.1781,-0.1597 -0.2625,-0.2499 -0.50638,-0.5413 -0.93672,-1.216 -1.37499,-2.075 -0.83951,-1.6458 -2.49607,-3.6151 -3.67501,-4.3876 -2.6677,-1.748 -9.0347,-3.7257 -12.05,-3.7374 -2.88477,-0.0112 -3.50557,-1.6235 -1.85,-4.825 1.5404,-2.9788 1.63427,-2.9942 4.3125,-0.8875 1.45608,1.1453 2.86515,1.728 3.5375,1.6749 0.0747,-0.006 0.14454,-0.0157 0.2,-0.0374 0.33274,-0.1303 0.3016,-0.5501 -0.3,-1.2751 -0.11069,-0.1333 -0.21016,-0.2552 -0.2875,-0.3749 -0.54135,-0.838 -0.2382,-1.4243 1.21251,-2.875 1.79499,-1.7949 2.69765,-1.9856 9.95,-2.1125 0.56269,-0.01 1.09873,-0.0209 1.6,-0.0251 0.46992,-0.004 0.91645,-0.004 1.33749,0 0.0158,2e-4 0.0343,-2e-4 0.05,0 0.82054,0.008 1.55044,0.0357 2.21251,0.0875 0.04,0.003 0.0855,0.009 0.12499,0.0125 0.0171,10e-4 0.033,-0.001 0.05,0 0.32373,0.0285 0.63286,0.0693 0.92501,0.1126 0.004,5e-4 0.009,-6e-4 0.0125,0 0.0214,0.003 0.0412,0.009 0.0625,0.0125 0.25763,0.0397 0.5136,0.084 0.75,0.1375 0.16525,0.0377 0.33128,0.0798 0.4875,0.1249 0.0698,0.02 0.14434,0.041 0.2125,0.0626 0.0595,0.019 0.11667,0.0422 0.17501,0.0625 0.0634,0.0218 0.12541,0.0391 0.18749,0.0624 0.0633,0.024 0.12548,0.0495 0.1875,0.0751 0.24877,0.1017 0.48059,0.2209 0.7125,0.3499 0.112,0.0624 0.22843,0.1184 0.3375,0.1875 -0.75979,-1.2409 -1.27445,-2.2973 -1.4,-2.9249 -0.92752,-4.6376 -3.26891,-2.8173 -8,-4 -1.31592,-0.329 -2.79283,-0.5296 -4.3,-0.6876 -0.47032,0.0424 -0.96861,0.101 -1.45,0.1626 -0.13248,0.017 -0.25787,0.0318 -0.3875,0.0499 -0.0639,0.009 -0.12464,0.0155 -0.18749,0.0251 -0.11327,0.0165 -0.22831,0.0325 -0.33751,0.05 -0.23944,0.0395 -0.49008,0.083 -0.7,0.1249 -0.27515,0.0551 -0.5135,0.097 -0.7375,0.1251 -0.007,8e-4 -0.0177,-9e-4 -0.025,0 -0.0823,0.01 -0.17346,0.0197 -0.25,0.025 -0.23522,0.0166 -0.44344,0.0114 -0.63751,-0.025 -0.0201,-0.004 -0.0427,-0.008 -0.0625,-0.0126 -0.0504,-0.0115 -0.10154,-0.0213 -0.15,-0.0374 -0.0301,-0.01 -0.0581,-0.0258 -0.0875,-0.0375 -0.0555,-0.0224 -0.10881,-0.0459 -0.16249,-0.075 -0.008,-0.005 -0.0168,-0.008 -0.025,-0.0125 -0.10034,-0.0558 -0.19034,-0.1307 -0.2875,-0.2125 -0.2034,-0.1713 -0.41069,-0.3957 -0.625,-0.7 -0.005,-0.007 -0.008,-0.0179 -0.0125,-0.0251 -0.99743,-0.1158 -1.91999,-0.2518 -2.71251,-0.4499 -3.83924,-0.9599 -8.12352,0.111 -9.725,1.7125 -2.39152,2.3915 -6.90228,-7.4648 -8,-8.5626 -2.48756,-2.4875 -6.66696,-1.7125 -10.85,-1.7125 -2.99267,0 -6.70916,-1.6421 -9.15,-2.8624 -0.804,-0.4021 -17.31257,-1.5126 -9.71249,2.2875 0.87853,0.4392 -4.87024,6.244 -6.28751,0.5749 -0.30974,-1.2389 -3.40536,-2.2838 -4.56249,-2.8624 -0.37259,-0.2099 -0.73528,-0.3886 -1.08751,-0.5501 0.14445,0.4034 0.19722,0.7908 0.15,1.1626 -0.015,0.1179 -0.0409,0.2365 -0.075,0.3499 -0.001,0.004 0.001,0.009 0,0.0125 -0.0334,0.1088 -0.0741,0.2086 -0.125,0.3126 -0.004,0.008 -0.008,0.0167 -0.0125,0.025 -0.0507,0.1002 -0.10794,0.2048 -0.17501,0.3 -0.007,0.01 -0.0181,0.0154 -0.025,0.025 -0.0771,0.1062 -0.16483,0.2136 -0.26251,0.3124 -0.0163,0.0167 -0.0331,0.0336 -0.05,0.0501 -0.0835,0.0805 -0.17757,0.1498 -0.275,0.225 -0.1106,0.0853 -0.2215,0.1725 -0.35,0.2499 -0.008,0.005 -0.0167,0.007 -0.025,0.0126 -0.0951,0.0565 -0.1953,0.1104 -0.3,0.1624 -0.0953,0.0477 -0.19666,0.0938 -0.3,0.1376 -0.10352,0.0436 -0.21352,0.0853 -0.325,0.125 -0.009,0.003 -0.016,0.009 -0.025,0.0125 -0.16818,0.0589 -0.35151,0.1009 -0.53749,0.1499 -0.009,0.003 -0.0157,0.0101 -0.025,0.0126 -0.16232,0.0421 -0.3368,0.0781 -0.5125,0.1125 -0.0351,0.007 -0.0644,0.0184 -0.1,0.025 -0.017,0.003 -0.0329,0.009 -0.05,0.0125 -0.18835,0.0336 -0.38451,0.0507 -0.5875,0.075 -0.0174,0.002 -0.0325,0.0104 -0.05,0.0125 -0.17824,0.0205 -0.34814,0.0368 -0.5375,0.0499 -0.068,0.005 -0.13053,0.009 -0.2,0.0126 -0.25868,0.0141 -0.52149,0.0248 -0.8,0.025 -3.50186,0 -7.01063,-2e-4 -10.5125,0 -6.67402,-2e-4 -3.43472,-0.4139 -2.42499,3.625 0.51902,2.0761 1.04096,2.8052 1.06249,2.9625 0.002,0.0112 0.004,0.0192 0,0.025 -0.0642,0.0974 -0.92414,-0.5626 -3.4875,-0.5626 -4.236,0 -4.62838,-2.4633 -7.67499,-3.2249 -3.97474,-0.9938 -4.01199,1.8038 -7.03751,2.3374 -0.10433,0.0184 -0.20076,0.0373 -0.31249,0.0501 -0.22347,0.0254 -0.46853,0.0374 -0.72501,0.0374 -1.00326,0 -10.10413,-2.8459 -10.5125,-1.2125 -0.65305,2.6122 0.52167,2.7445 2.025,5.2501 1.5147,2.5245 3.9034,5.1159 6.06251,7.2749 2.23099,2.231 7.98045,4.6299 7.67499,6.4626 -0.37837,2.2702 4.48355,5.4332 2.42501,6.4625 -3.14051,1.5703 -6.41709,1.2125 -10.1,1.2125 -0.85296,-2e-4 -8.54458,0.7067 -8.28751,1.625 1.51338,2.5566 3.21672,3.2084 4.23751,5.25 0.82936,1.6588 5.70141,8.2813 7.67499,5.65 2.65498,-3.54 4.59875,-1.9103 8.0875,-1.2125 3.71053,0.7421 5.32456,7.275 9.28751,7.275 0.54221,0 1.03254,-0.005 1.47499,-0.0251 0.22123,-0.01 0.42635,-0.0208 0.62501,-0.0374 2.58253,-0.216 3.32766,-1.0357 3.96249,-3.5751 0.20797,-0.8318 0.76767,-6.9198 2.83751,-4.8499 1.80473,1.8048 3.03176,2.8374 6.05,2.8374 2.56622,0 5.26249,-0.8044 5.26249,2.0125 0,2.2058 0.89304,7.6751 -2.025,7.6751 -0.87327,0 -10.92021,0.3971 -10.9125,0.4124 0.65144,1.3029 3.71262,7.7908 4.85,8.0751 0.51986,0.1299 1.03355,0.1309 1.5375,0.0499 0.16797,-0.0269 0.33428,-0.0698 0.5,-0.1125 0.33144,-0.0853 0.6541,-0.1877 0.975,-0.3125 0.32091,-0.1248 0.64161,-0.2667 0.95,-0.4 1.23358,-0.5329 2.35812,-1.01 3.31251,-0.4374 3.46024,2.0762 6.53877,2.1112 10.1,3.6374 1.70206,0.7295 3.47672,1.7911 4.92499,1.3626 0.069,-0.0205 0.13256,-0.0352 0.2,-0.0626 0.67448,-0.2737 1.27451,-0.9112 1.75,-2.1 1.54179,-3.8545 -0.33338,-4.2697 3.6375,-5.2624 2.81575,-0.704 3.63751,-1.4489 3.63751,-4.4376 0,-0.4395 0.0472,-0.8748 0.13749,-1.2875 0.27099,-1.2376 0.93512,-2.2813 1.86251,-2.7624 0.0773,-0.0401 0.15654,-0.0806 0.23749,-0.1125 1.21436,-0.4793 2.82835,-0.0185 4.625,2.1375 1.58874,1.9064 4.71167,2.6134 2.425,5.6625 -2.19152,2.922 -2.9661,4.4591 -3.63749,8.4874 -0.40263,2.4157 -0.34555,6.9294 1.61249,8.8875 0.0443,0.0443 0.10517,0.0799 0.175,0.1125 0.0698,0.0328 0.14576,0.0645 0.2375,0.0875 1.28443,0.3224 4.54339,-0.2139 4.85,1.0125 1.1203,4.4813 2.89771,5.2928 5.0875,7.1875 0.1564,0.1354 0.31447,0.2768 0.475,0.4251 0.16054,0.1482 0.32302,0.298 0.4875,0.4624 1.67104,1.6711 3.78562,3.534 5.95,3.3376 0.0941,-0.009 0.18072,-0.0211 0.27501,-0.0376 0.75425,-0.132 1.51473,-0.5272 2.26249,-1.275 3.9241,-3.924 8.64116,-3.6374 14.15,-3.6374 0.44456,0 0.89596,-0.002 1.35,-0.0125 3.17834,-0.076 6.54789,-0.3381 9.55,0.4125 3.42992,0.8574 5.50242,1.428 7.45,1.35 0.4869,-0.0195 0.97197,-0.0804 1.4625,-0.1875 1.47155,-0.3213 3.04018,-1.0566 5.2375,-2.375 1.43836,-0.8631 8.70429,-4.6515 10.5,-5.2501 2.54474,-0.8482 4.80104,-1.3819 7.275,-3.2374 2.88326,-2.1624 8.26676,-3.3938 11.725,-0.8 0.86381,0.6478 2.52325,1.6822 3.675,2.9875 0.12798,0.1449 0.2487,0.2985 0.36251,0.4499 0.68278,0.9086 1.07413,1.9286 0.8,3.0251 -0.47752,1.9099 -10.06499,2.5274 -9.68751,4.0375 0.0314,0.1256 0.0614,0.2468 0.1,0.3625 0.0386,0.1155 0.0796,0.2314 0.125,0.3375 1.36248,3.1819 5.73448,2.1662 8.66251,3.3374 3.76123,1.5046 6.31982,1.536 3.22499,5.6626 -1.45043,1.9339 -0.8,2.9155 -0.8,6.0625 0,1.8253 -0.26077,2.8562 -0.6625,3.0875 -0.0268,0.0154 -0.047,0.0292 -0.075,0.0375 -0.44872,0.1333 -1.05738,-0.6447 -1.68749,-2.325 -1.27594,-3.4025 -8.77504,-5.2377 -8.48751,-3.2251 0.12688,0.8883 2.02501,6.4459 2.025,8.4875 0,0.2274 -0.0113,0.4395 -0.025,0.6501 -0.0115,0.1758 -0.0165,0.3493 -0.0375,0.5125 -0.007,0.0507 -0.0175,0.1005 -0.025,0.1499 -0.0168,0.1117 -0.0411,0.2202 -0.0625,0.3251 -0.0193,0.0943 -0.0395,0.1863 -0.0625,0.2749 -0.0316,0.1218 -0.0614,0.2394 -0.1,0.3501 -0.004,0.012 -0.008,0.0256 -0.0125,0.0374 -0.0111,0.0307 -0.0259,0.0578 -0.0375,0.0875 -0.0337,0.0872 -0.0741,0.1708 -0.1125,0.2501 -0.0337,0.0691 -0.0628,0.137 -0.1,0.2 -0.0426,0.0723 -0.0903,0.136 -0.1375,0.2 -0.0734,0.0994 -0.15309,0.1845 -0.2375,0.2624 -0.004,0.004 -0.008,0.009 -0.0125,0.0125 -0.0281,0.0254 -0.0582,0.0522 -0.0875,0.075 -0.0166,0.013 -0.033,0.0255 -0.05,0.0376 -0.049,0.0352 -0.0978,0.0714 -0.15,0.1 -0.0513,0.0279 -0.10815,0.0536 -0.1625,0.0749 -0.0124,0.005 -0.0249,0.008 -0.0375,0.0125 -0.0777,0.028 -0.15376,0.0483 -0.23749,0.0626 -0.0292,0.005 -0.0576,0.009 -0.0875,0.0124 -0.0204,0.002 -0.0417,0.0111 -0.0625,0.0125 -0.0928,0.006 -0.20047,-0.002 -0.3,-0.0125 -0.008,-8e-4 -0.017,0.001 -0.025,0 -0.0565,-0.006 -0.11635,-0.0256 -0.17499,-0.0374 -0.11778,-0.024 -0.23624,-0.0539 -0.36251,-0.1 -0.0499,-0.0182 -0.0987,-0.0408 -0.15,-0.0626 -0.12396,-0.0531 -0.25589,-0.1131 -0.38749,-0.1875 0.10099,0.404 0.19899,0.8085 0.3,1.2125 1.34256,5.3702 0.81411,8.141 6.28749,11.4251 3.37419,2.0245 6.07604,2.9301 6.86251,6.8624 0.77169,3.8586 4.56249,6.7672 4.56249,10.2751 0,1.2038 -1.53291,8.7667 0,9.15 6.35804,1.5893 8.41375,-4 12.575,-4 3.88771,-10e-5 8.50048,-4.0001 9.15,-4 4.49764,-10e-5 7.65676,0.4535 9.71251,-2.2875 1.84385,-2.4585 5.73219,-5.8477 9.71249,-2.8625 2.48853,1.8664 9.43607,2.5859 10.85,4 1.00765,1.0076 5.70898,7.7329 9.725,5.7249 2.04604,-1.023 7.63284,0.5125 11.1875,0.8626 -0.0136,-0.0295 -0.0242,-0.0583 -0.0375,-0.0875 -0.12762,-0.2808 -0.24376,-0.5568 -0.35,-0.825 -0.0715,-0.1805 -0.1382,-0.3506 -0.2,-0.525 -0.0316,-0.0892 -0.0584,-0.175 -0.0875,-0.2625 -0.081,-0.2435 -0.15112,-0.4821 -0.21251,-0.7125 -0.009,-0.0338 -0.0164,-0.0667 -0.025,-0.1 -0.0406,-0.1584 -0.0813,-0.3107 -0.11249,-0.4626 -0.0164,-0.0795 -0.0362,-0.1598 -0.05,-0.2374 -0.036,-0.2032 -0.0567,-0.3976 -0.075,-0.5875 -0.0372,-0.3871 -0.0362,-0.7475 0,-1.0751 0.002,-0.0156 -0.002,-0.0344 0,-0.0499 0.002,-0.0125 -0.002,-0.0253 0,-0.0376 0.0191,-0.148 0.0529,-0.2779 0.0875,-0.4125 0.0267,-0.1036 0.0517,-0.2046 0.0875,-0.3 0.005,-0.0121 0.008,-0.0254 0.0125,-0.0374 0.0241,-0.0618 0.0595,-0.1168 0.0875,-0.175 0.0394,-0.0818 0.0778,-0.1632 0.12499,-0.2375 0.0625,-0.0985 0.13642,-0.1897 0.2125,-0.275 0.0101,-0.0114 0.0146,-0.0264 0.025,-0.0375 0.0838,-0.0899 0.17551,-0.1636 0.275,-0.2376 0.016,-0.0118 0.0336,-0.026 0.05,-0.0374 0.0897,-0.0624 0.18572,-0.1254 0.2875,-0.175 0.0792,-0.0386 0.16352,-0.0693 0.25,-0.1 0.0255,-0.009 0.0489,-0.0167 0.075,-0.025 0.0758,-0.0243 0.15633,-0.0442 0.23749,-0.0626 0.0813,-0.0184 0.16331,-0.0376 0.25,-0.0499 1.01049,-0.1435 2.21156,-0.9715 2.675,-1.8376 0.46351,-0.8661 1.57938,-1.5749 2.475,-1.5749 1.78686,-1e-4 2.58542,-1.4348 1.95,-2.9376 -0.0489,-0.1155 -0.10896,-0.2342 -0.175,-0.3499 -0.13209,-0.2315 -0.29683,-0.463 -0.5,-0.6875 -1.79988,-1.989 -1.67243,-3.2955 0.675,-6.7501 1.98083,-2.915 2.04392,-2.936 5.85,-2.2249 2.91406,0.5444 4.1608,0.4472 5.1375,-0.4 0.1396,-0.1212 0.28523,-0.2354 0.4375,-0.3375 0.0175,-0.0118 0.0324,-0.0261 0.05,-0.0376 0.0744,-0.0485 0.14981,-0.0819 0.225,-0.1249 0.0749,-0.0431 0.15059,-0.088 0.225,-0.125 0.21514,-0.1067 0.42253,-0.1898 0.6125,-0.2376 0.0552,-0.0138 0.11106,-0.0293 0.1625,-0.0374 0.0131,-0.002 0.0247,0.002 0.0375,0 0.59034,-1.9344 0.62501,-4.4074 0.62501,-5.8 0,-2.584 1.2824,-6.3114 3.43749,-6.85 1.14081,-0.2852 7.41964,-5.2123 8.56251,-3.7126 2.73105,0.9243 8.63451,-8.629 9.71259,-9.4374 3.05792,-2.2936 3.43744,-3.6816 3.43744,-8 0,-4.716 -2.75392,-4.1104 -6.86256,-5.1375 -1.40736,-0.3518 -2.78285,-6.1273 -3.22498,-8.7376 1.13616,-8.5245 -7.51105,2.8851 -15.06249,-4.9749 -0.57643,-2.3057 -5.08019,-4.448 -6.28751,-6.8625 -0.5674,-1.1349 1.15,-9.1096 1.15,-11.425 0,-3.0462 -6.06272,-2.7246 -3.425,-8 2.15844,-4.3169 -2.8625,-8.4897 -2.8625,-12.575 0,-4.7619 0,-9.5258 0,-14.2875 0,-1.1429 0,-2.2823 0,-3.425 0,-1.8742 -8.03576,-7.339 -9.1375,-8 -5.8606,-3.5163 -8.4748,-0.0365 -9.725,-6.2875 -0.50256,-2.5128 4.57898,-2.8455 5.725,-5.1375 1.68662,-3.3734 -4.81096,-7.6611 -6.8625,-9.7126 -4.92363,-4.9235 -5.61402,-4.4354 -12,-5.7125 -2.12958,-0.4259 -2.05752,-4.1787 -4,-5.1499 -0.15837,-0.0792 -0.33747,-0.1221 -0.52499,-0.125 z" />
</g>
<g>
<path id="Roscommon" d="m 389.95,339.7766 c -1.63376,-0.0102 -3.3475,1.1976 -3.6625,3.0876 -0.69569,-0.1725 -1.38072,-0.3703 -2.06249,-0.5876 -0.34367,1.3493 -0.91418,2.4725 -1.36251,5.1626 -0.69876,4.1925 -8.575,7.9661 -8.575,9.7125 0,1.1014 -0.0974,1.9241 -0.26249,2.5499 l 2.9,1.2 c 3.84801,1.5992 4.1875,1.9531 4.18749,4.4251 0,1.4813 -0.36244,3.6367 -0.8,4.7874 -0.43757,1.1509 -1.26557,2.0486 -1.83749,1.9875 -3.75691,-0.4013 -4.70583,-0.9298 -4.71251,-2.6 -0.004,-0.9782 -0.24194,-3.7058 -0.525,-6.0624 l -0.25,-2.1251 c -1.5102,0.9177 -3.99441,-0.4362 -5.56249,2.7 -4.11104,8.2221 -1.82747,2.8501 -7.42501,2.8501 -7.6628,0 -4.91947,1.3456 -4,6.8625 0.0872,0.5234 0.18645,1.1933 0.32501,1.9125 l 1.08749,0.2374 -0.7625,1.1751 c 0.51557,1.8253 1.44435,3.6235 3.35,4.1 0.7619,0.1904 1.52558,0.3845 2.2875,0.575 5.3016,1.3253 2.38304,4.2898 5.7125,6.2874 1.04494,0.627 8.60064,3.9619 5.7125,6.8501 -1.52348,1.5235 -9.58879,9.0448 -10.85,4 -0.98776,-3.9511 -5.90605,-4.7367 -6.8625,-8.5626 -1.42594,-5.7037 -7.70122,-0.2832 -12,-2.8624 -3.82227,-2.2934 -2.15579,-5.5808 -4.57499,-8 -1.73096,-1.731 -7.84119,-4.2744 -8.35,-3.9376 0.11622,0.1714 0.23376,0.3413 0.35,0.5125 -0.35399,-0.2831 -0.44424,-0.4501 -0.35,-0.5125 -0.35779,-0.5272 -0.70474,-1.0602 -1.06251,-1.5875 -0.32544,-0.4795 -0.73189,-0.8978 -1.18749,-1.2749 0.008,0.2635 0.0336,0.9499 0.0375,1.0875 -1.2041,0.7704 -5.20146,-1.2617 -6.575,-0.575 -2.9784,1.4891 -4.8447,3.4712 -3.425,9.1499 0.47366,1.8947 2.48628,6.1794 4.56251,7.4251 12.28112,7.3687 -7.1781,4.6437 -8,6.2874 -1.50333,3.0067 -5.38495,2.7824 -6.85,5.7126 -2.00365,4.0072 0.44817,6.7696 -0.57501,10.8624 -3.23854,12.9541 6.22379,-0.6899 9.1375,5.1376 1.01716,2.0343 1.94232,5.9682 1.15,9.1375 -1.38566,5.5425 -8.55032,2.764 -9.71249,8.575 -0.60811,3.0403 -7.03955,3.8542 -6.28751,6.8624 -0.005,0.2245 -0.0189,0.4504 -0.025,0.675 0.41632,-0.0148 0.80235,0.0381 1.16251,0.1751 -0.30362,0.2857 4.36275,2.3782 5.15,2.575 0.77091,0.1927 10.37009,1.9195 10.85,0 0.79077,-3.1632 -2.07767,-10.1737 1.15,-9.7125 1.33333,0.1904 2.69333,0.2482 4,0.5749 3.54819,0.8871 8.19469,-4.9923 10.71249,-5.2624 0.0651,-0.007 0.125,-0.0136 0.18751,-0.0125 0.18752,0.003 0.36662,0.0458 0.52499,0.125 1.94248,0.9712 1.87042,4.724 4,5.1499 6.38598,1.2771 7.07637,0.789 12,5.7125 2.05154,2.0515 8.54912,6.3392 6.8625,9.7126 -1.14602,2.292 -6.22756,2.6247 -5.725,5.1375 1.2502,6.251 3.8644,2.771 9.725,6.2875 1.10174,0.661 9.1375,6.1258 9.1375,8 0,1.1427 0,2.2821 0,3.425 0,4.7619 0,9.5256 0,14.2875 0,4.0853 5.02094,8.2581 2.8625,12.575 -2.63772,5.2754 3.425,4.9538 3.425,8 0,2.3154 -1.7174,10.2901 -1.15,11.425 1.20732,2.4145 5.71108,4.5568 6.28751,6.8625 7.51144,7.8183 16.10237,-3.4206 15.07499,4.85 0.97067,-2.5893 7.62032,-6.4791 7.78752,-6.5626 4.18064,-2.0904 6.27872,-4.2864 10.93744,-6.2874 0.0171,-10e-5 0.033,0 0.0501,0 -0.2176,-0.1953 -0.4528,-0.3844 -0.7,-0.575 3.58176,-1.7909 -2.28752,-12.5706 -2.28752,-16.575 0,-3.6471 -1.05472,-8.6663 -1.14992,-12 -0.50432,0.1612 -0.36672,0.0612 0.11248,-0.225 -0.42944,-0.2574 -0.81664,-0.6645 -1.25008,-0.9125 -0.0229,-0.1149 -0.0478,-0.2272 -0.075,-0.3376 -0.84432,-0.7022 -1.54304,-1.599 -1.73744,-2.3249 -0.0938,-0.3501 -0.17088,-0.7263 -0.23744,-1.125 -2.41952,-2.4579 0.548,-7.2432 0.548,-11.3507 0,-3.3917 -4.89344,-1.5439 -4.79808,-5.1119 -0.576,-0.7137 -1.3392,-1.3878 -2.0624,-1.775 -1.86912,-1.0003 -2.40928,-1.5773 -1.8,-2.425 -0.62976,-0.642 1.66272,-4.9886 1.52224,-5.5505 -0.87584,-3.5035 -4.45755,-3.732 -1.07232,-5.4245 0.28368,-0.1418 0.59856,-0.343 0.92496,-0.5749 -0.0515,-2.4913 0.39776,-3.4366 1.86256,-5.6501 1.4872,-2.2473 2.87296,-3.3238 3.84992,-3.4 0.60976,-0.0475 1.05968,0.2994 1.27504,1 0.3344,-0.6278 0.57008,-1.2 0.66256,-1.6624 C 411.6776,439.9386 412,437.0494 412,432.5891 c 0,-2.0433 2.8624,-2.4739 2.86256,-5.7249 -1.6e-4,-2.0516 5.21488,-0.285 5.71248,-2.2751 1.06192,-4.2477 -3.04656,-6.4224 -5.15008,-8 -3.15888,-2.3693 1.0544,-3.4043 3.4376,-4 0.009,-0.4704 0.004,-0.9513 0,-1.4374 6.4e-4,-0.004 -8e-4,-0.009 0,-0.0125 -0.008,-0.8056 -0.033,-1.6485 -0.0626,-2.4875 -0.53744,-2.4248 -2.3624,-4.7747 -4.51248,-6.925 -2.33056,-2.3305 -1.81824,-5.3611 -3.42496,-8.575 -1.13808,-2.2757 -6.98096,-4.324 -9.15008,-5.1376 -9.90938,-3.7159 -3.88416,-2.629 -3.42498,-7.425 0.33768,-3.5269 -4.09446,-3.2398 -2.2875,-6.2875 3.18205,-5.3669 5.76,-2.6371 4,-11.4374 -0.8083,-4.0416 -1.7125,-4.5704 -1.7125,-10.2751 0,-4.6925 -5.15,-4.9483 -5.15,-8.575 0,-2.9991 -1.55374,-4.2272 -3.1875,-4.2375 z" />
</g>
<g>
<path id="Longford" d="m 462.06256,384.9392 c -0.28944,0.0557 -0.592,0.1219 -0.92496,0.2125 -0.64384,0.1609 -2.84624,1.0342 -3.42512,1.1499 -4.75296,0.9507 -8.78432,2.1563 -10.84992,6.2875 -0.94112,1.8819 -5.15008,7.6677 -5.15008,8.5626 0,6.3795 -5.89216,2.7102 -8.57488,6.2875 -3.68544,4.9136 -14.6488,3.7179 -14.27504,3.7125 0.004,0.4861 0.009,0.967 0,1.4374 -2.3832,0.5959 -6.59648,1.6307 -3.4376,4 2.10352,1.5776 6.212,3.7523 5.15008,8 -0.4976,1.9903 -5.71264,0.2235 -5.71248,2.2751 0,3.251 -2.86256,3.6816 -2.86256,5.7249 0,4.4603 -0.3224,7.3495 -1.13744,11.4251 -0.0925,0.4624 -0.32816,1.0346 -0.66256,1.6624 0.28912,0.9404 0.15536,2.5191 -0.58752,4.6501 -0.73376,2.105 -0.56176,3.0987 1.1376,6.4375 1.10624,2.1736 2.97136,4.8497 4.13744,5.9374 1.7168,1.6016 2.11248,2.7246 2.11248,5.9126 0,2.165 0.2824,3.9375 0.62496,3.9375 0.34256,0 2.55056,-1.2928 4.9,-2.8751 4.00992,-2.7003 4.27504,-2.774 4.27504,-1.1374 0,1.7235 0.0117,1.7218 1.5376,-0.1626 l 1.53744,-1.9124 1.31248,3.15 c 0.72144,1.7264 1.31248,3.4396 1.31248,3.8125 0,0.3728 -1.64352,1.4069 -3.6624,2.3 -3.10512,1.3735 -3.67504,1.9821 -3.67504,3.9375 0,0.0356 8e-4,0.076 0,0.1124 1.74256,-0.7795 3.4776,-1.5526 4.54992,-2.6249 3.67072,-3.6707 5.20304,-1.1376 9.71248,-1.1375 5.74288,-1e-4 10.92624,2.2874 17.15008,2.2874 4.52208,0 6.0856,-1.3573 5.13744,-5.1499 -0.98864,-3.9546 -5.29344,-5.5567 -1.13744,-9.7125 2.63728,-2.6373 4.8072,-4.0854 2.84992,-8 -2.7264,-5.453 -0.77808,-4.7422 3.4376,-6.8501 7.01088,-3.5056 5.03296,-4.444 8.5624,-9.1499 2.58176,-3.4424 1.28176,-7.8835 4.57504,-12 3.6696,-4.5872 2.8624,3.5611 2.86256,5.7125 -1.6e-4,3.5019 9.71248,-0.4981 9.71248,-4 0,-1.5239 0,-3.0387 0,-4.5626 0.22544,-0.3408 0.4504,-0.6827 0.67504,-1.0249 -2.53952,0.6907 -4.43168,-6.0012 -4.67504,-6.9751 -0.59584,-2.383 -3.82832,-6.5067 -5.15008,-9.1499 -2.00512,-4.0106 -5.5248,-7.8123 -8,-10.2875 -3.18784,-3.188 -4.3808,-4.9559 -7.42496,-8 -2.80208,-2.8023 0.0192,-4 -5.71248,-4 -0.0803,-0.0643 -0.15184,-0.1392 -0.22496,-0.2125 z M 418.8,408.6517 c 0.0296,0.839 0.055,1.6819 0.0626,2.4875 0.15008,-0.8323 0.11952,-1.6662 -0.0626,-2.4875 z" />
</g>
<g>
<path id="Westmeath" d="m 495.92496,420.7142 c -0.8296,0.4976 -1.53904,1.1274 -2.07488,1.9375 -0.42608,0.6438 -0.84912,1.2934 -1.27504,1.9374 0,1.5239 0,3.0387 0,4.5626 0,3.5019 -9.71264,7.5019 -9.71248,4 -1.6e-4,-2.1514 0.80704,-10.2997 -2.86256,-5.7125 -3.29328,4.1166 -1.99328,8.5576 -4.57504,12 -3.52944,4.7059 -1.55152,5.6443 -8.5624,9.1499 -4.21568,2.1079 -6.164,1.3971 -3.4376,6.8501 1.95728,3.9146 -0.21264,5.3627 -2.84992,8 -4.156,4.1558 0.1488,5.7579 1.13744,9.7125 0.94816,3.7926 -0.61536,5.1499 -5.13744,5.1499 -6.22384,0 -11.4072,-2.2875 -17.15008,-2.2874 -4.50944,-1e-4 -6.04176,-2.5332 -9.71248,1.1375 -1.07232,1.0723 -2.80736,1.8454 -4.54992,2.6249 -0.0312,1.2666 -0.59616,3.0434 -1.27504,4.0125 -1.14928,1.641 -1.14928,1.8125 0,1.8125 1.46992,0 1.62592,1.0906 0.45008,3.2875 -0.69776,1.3035 -0.41664,1.7725 1.82496,2.9626 l 2.67504,1.4125 -4.3376,0.6625 c -2.3864,0.3597 -5.0256,1.0146 -5.8624,1.4624 -2.44064,1.3059 -3.26256,0.7696 -3.26256,-2.1499 0,-1.0949 -0.61344,-2.0306 -1.81248,-2.7875 -0.68944,0.4048 -1.01456,0.6011 -0.42496,0.4125 0.0954,3.3339 1.14992,8.3529 1.14992,12 0,4.0046 5.86928,14.7841 2.28752,16.575 0.2472,0.1906 0.4824,0.3797 0.7,0.575 4.07792,-0.0124 6.94384,-1.4828 7.86256,-1.7126 3.32752,-0.8318 8.74144,-1.7483 11.43744,-2.2874 0.6696,-0.134 12.16704,1.0068 12.56256,-0.575 0.62832,-2.5134 6.28736,-1.9843 6.28736,-4.575 0,-5.758 1.89296,-8.9696 6.86256,-4 3.7776,3.7776 6.28752,2.49 6.28752,8.575 0,3.837 -0.089,7.0698 4.56256,8 4.10288,0.8206 11.13984,1.1499 16,1.1499 5.7392,0 5.90992,-6.4837 9.72496,-7.4374 1.2976,-0.3245 7.16256,-2.8879 8,-4.5626 0.93248,-1.8651 4.05232,-3.6845 4.5624,-5.7249 2.03344,-2.8744 4.78368,-5.269 6.56256,-5.5125 0.0176,-0.002 0.0326,0.002 0.0501,0 -1.33952,-0.7559 7.33648,-2.4792 8.24992,-4.7626 1.5984,-3.9961 7.16848,-1.8118 8.57504,-7.4374 1.356,-5.4247 10.07872,1.8691 8.5624,-5.7125 -0.80608,-4.0302 1.0976,-10.4603 0,-14.8501 -1.15184,-4.6075 1.60768,-4 5.15008,-4 4.87664,0 3.52272,-2.2448 1.13744,-3.4374 -0.58688,-0.2935 0,-8.2879 0,-9.1375 0,-3.8672 -3.91376,-7.8892 -5.71248,-10.2875 -1.03824,-1.3843 -1.71248,9.4842 -1.71248,9.7125 0,4.5435 -2.40896,2.6069 -3.42496,0.575 -0.93552,-1.8708 -3.73792,-3.2672 -5.15008,-5.15 -2.05568,-2.741 -8.8784,-5.0759 -11.42496,-5.7125 -3.02976,-0.7575 -6.92096,-2.9085 -8.57504,-4.5626 -3.15696,-3.1569 -3.42496,-2.3686 -3.42496,-7.4374 0,-0.624 -7.81472,-6.4235 -9.14992,-7.425 -1.04336,-0.7824 -4.43808,-0.0504 -5.21264,-1.0125 z m 2.18752,22.75 c 1.63376,-0.0191 2.61904,0.608 5.05008,2.6 2.15072,1.7624 3.57488,3.614 3.57504,4.6374 0,0.9371 0.91568,2.9045 2.03744,4.375 1.1216,1.4706 2.03744,2.8832 2.03744,3.1376 0,1.4759 -7.0816,-1.8828 -10.88752,-5.1625 -0.83392,-0.7186 -2.67792,-1.3 -4.08736,-1.3 -2.46752,0 -2.56512,-0.1506 -2.8,-3.7751 l -0.25008,-3.7624 3.4,-0.5376 c 0.76816,-0.1228 1.38032,-0.206 1.92496,-0.2124 z m -4.58752,17.3249 c 0.3288,-0.0229 0.70624,0.0731 1.18752,0.2501 1.00608,0.3698 3.09616,2.4229 4.6376,4.5624 2.68368,3.7253 2.72848,3.9406 1.2624,5.0126 -2.3296,1.7036 -3.43856,1.393 -7.0624,-1.9875 l -3.32512,-3.1125 1.32512,-2.575 c 0.77024,-1.4898 1.25168,-2.0998 1.97488,-2.1501 z" />
</g>
<g>
<path id="Offaly" d="m 511.42496,506.8642 c -0.51008,2.0404 -3.62992,3.8598 -4.5624,5.7249 -0.83744,1.6747 -6.7024,4.2381 -8,4.5626 -3.81504,0.9537 -3.98576,7.4374 -9.72496,7.4374 -4.86016,0 -11.89712,-0.3293 -16,-1.1499 -4.65152,-0.9302 -4.56256,-4.163 -4.56256,-8 0,-6.085 -2.50992,-4.7974 -6.28752,-8.575 -4.9696,-4.9696 -6.86256,-1.758 -6.86256,4 0,2.5907 -5.65904,2.0616 -6.28736,4.575 -0.39552,1.5818 -11.89296,0.441 -12.56256,0.575 -2.696,0.5391 -8.10992,1.4556 -11.43744,2.2874 -0.92256,0.2307 -3.80752,1.7125 -7.91264,1.7126 -4.65872,2.0012 -6.75664,4.197 -10.93744,6.2874 -0.16704,0.0835 -6.81685,3.9733 -7.78752,6.5626 -0.005,0.044 -0.006,0.0798 -0.0125,0.1249 0.0622,0.3672 0.15336,0.8064 0.25,1.2751 0.26096,0.2472 0.67018,0.452 1.2625,0.6 -0.29386,0.4118 -0.56526,0.8448 -0.8375,1.275 0.64436,2.569 1.58646,5.3466 2.54998,5.5875 4.10864,1.0271 6.86256,0.4215 6.86256,5.1375 0,4.3184 -0.37936,5.7064 -3.43744,8 -0.87232,0.6542 -4.90864,7.0284 -7.86259,8.95 0.17569,-0.006 0.34781,-0.0102 0.52499,-0.0126 1.60347,-0.0206 3.17376,0.1334 3.3376,0.7875 0.46608,1.865 2.35184,8.0647 4,9.7125 1.35296,1.3531 3.13104,5.0034 6.28736,3.4251 3.5448,-1.7725 6.86256,-0.6952 6.86256,4 0,6.5019 -3.96464,4.3959 -5.14992,9.1375 -0.40192,1.6073 0.41232,7.2 -0.56256,9.15 -1.94208,3.884 -4.08816,5.4653 -5.15008,9.7125 -0.89712,3.589 -4.0384,3.5139 -5.13744,5.7125 -1.08528,2.1701 1.09312,6.9066 -0.57504,8.575 -1.96474,1.9645 -0.38416,2.4658 2.28752,5.1375 2.1544,2.1544 3.50416,4.6176 6.28752,6.2875 1.96672,1.18 2.28128,5.1499 4.57504,5.1499 6.9664,0 1.71248,-4.6078 1.71248,-8 0,-9.8125 4.96208,-1.2952 9.13744,-6.8624 1.69584,-2.2611 6.86256,-4.2317 6.86256,-7.4251 0,-2.765 2.15344,-10.4214 5.71248,-6.8624 2.3552,2.355 5.33488,1.0626 8.57504,1.425 0.0482,-0.0242 0.27168,0.0918 0.58752,0.275 0.0277,-0.5125 0.0253,-1.0699 -0.0251,-1.7 -1.19568,-0.1709 5.70736,-9.7355 4.57504,-12 -2.05696,-4.1141 -1.0528,-5.3574 3.42496,-6.8501 1.56736,-0.5224 10.07408,-8.7227 10.28752,-9.1499 0.0285,-0.0568 -5.13744,-6.9166 -5.13744,-9.7125 0,-4.1155 0.57632,-4 6.84992,-4 2.55952,0 0.63488,-8.4952 1.71264,-9.1376 4.57136,-2.7249 10.85392,-0.9936 14.8624,-4 4.19728,-3.148 1.24992,-5.7249 9.1376,-5.7249 8.33184,0 5.01792,0.0668 10.28736,6.8625 0.7624,0.9832 -0.002,5.6909 0.57504,8 0.3608,1.4432 2.30992,2.0437 2.86256,3.425 0.24032,0.6013 10.7384,-2.5978 12,-2.8501 3.90576,-0.7811 9.55648,0.1766 12.5624,-0.5749 1.35696,-0.3393 1.40592,-0.3545 2.28752,-0.575 0.40976,0.0957 0.84416,0.1672 1.28752,0.2249 -0.52464,-0.3748 -0.91456,-0.3387 -1.52496,-0.2624 -3.45264,-2.5956 -1.7592,-2.8112 -11.76256,-6.8126 -3.89408,-1.5576 7.50176,-2.8624 8.57504,-2.8624 3.51808,0 6.65536,-0.1778 8.57504,-1.1376 6.3128,-3.1565 1.47392,-6.5261 -0.57504,-8.5749 -1.85664,-1.8568 6.28752,-6.1813 6.28752,-9.7125 0,-2.3747 -2.28752,-2.155 -2.28752,-8 0,-5.4308 -1.6936,-7.0204 -4.57504,-10.8625 -1.76992,-2.36 -3.136,-5.6114 -4.3624,-8.125 -4.92144,-0.5806 -8.54272,-3.7502 -11.86368,-5.4601 -1.5056,-0.7752 -2.02112,-2.4109 -3.49632,-2.2088 -1.77888,0.2435 -4.53168,2.6321 -6.56512,5.5064 z m 6.66336,-5.6712 c 0.3528,0.0438 0.4128,-0.0736 0,0 z" />
</g>
<g>
<path id="Mayo" d="m 170.4375,288.2517 c -0.54091,0.0312 -1.17201,0.372 -1.95,1.1499 -0.76784,0.7678 -2.56163,0.5715 -2.825,1.6251 -0.35986,1.4394 -0.89172,3.8719 0.41251,4.8499 2.63923,1.9796 2.81851,4.2276 4.03749,7.2751 0.19616,0.4904 3.49385,6.4624 0.4,6.4624 -3.60111,0 -5.5506,-2.8375 -8.075,-2.8375 -3.04945,0 -3.68038,0.5591 -4.45,3.6375 -0.18046,0.7219 -1.60908,8.4875 -3.2375,8.4875 -1.21915,0 -7.63346,-0.0581 -6.05,-3.225 1.06528,-2.1305 0,-4.0257 0,-6.0625 0,-1.0427 0.5491,-7.3346 -0.8125,-7.6749 -5.173,-1.2933 -6.06249,-0.8494 -6.06249,-6.0626 0,-3.8841 -3.87557,-5.1102 -4.85,-1.2124 -0.4404,1.7616 -4.16125,4.6993 -6.06251,5.6499 -3.21629,1.6081 0.31504,6.9891 -0.4,7.275 -1.71863,0.6875 -6.76103,0.228 -5.6625,2.425 0.9879,1.9758 7.23832,3.0496 5.2625,4.0376 -0.88007,0.44 -4.54586,0.5083 -5.6625,1.6249 -1.76464,1.7647 -1.2125,4.9656 -1.2125,8.0751 0,1.3195 3.47231,8.1019 2.425,8.8875 -1.67981,1.2598 -11.67468,5.7003 -7.675,9.7 0.86732,0.8672 6.74183,2.5581 8.48751,0.8125 2.0848,-2.0848 3.63749,-1.9671 3.63749,-5.6626 0,-2.4243 0,-4.8505 0,-7.275 0,-2.0088 2.10356,-5.2888 4.0375,-6.0624 4.9776,-1.9911 2.54488,-2.092 3.6375,-6.4626 0.82215,-3.2885 1.24128,-3.1673 2.825,0 1.33449,2.669 7.12785,6.0211 7.275,6.4626 2.12402,6.372 -3.6375,3.4501 -3.6375,7.275 0,3.0399 5.56008,4.2298 4.0375,7.2749 -1.37987,2.7598 -6.05675,4.4491 -4.0375,8.4875 1.61278,3.2256 5.45998,4.0917 7.67501,0.4 0.93246,-1.5541 1.95757,-7.6413 4.45,-8.8875 2.57857,-1.2893 6.06249,-1.98 6.06249,2.0251 0,3.768 -3.2375,7.9485 -3.2375,10.1 0,4.305 -7.27499,2.6627 -7.27499,6.8624 0,4.1706 3.75413,4.3306 5.66249,6.8751 1.60298,2.1372 0.93967,4.7168 2.0125,6.8625 1.42717,2.8543 2.19392,5.2003 3.6375,8.0874 0.26936,0.5389 0.54312,1.0737 0.8125,1.6126 -2.98773,5.9754 -2.89718,-2.9723 -7.27499,-2.4251 -5.06183,0.6328 -5.25,2.428 -5.25,7.275 0,2.9136 -1.61251,6.1751 -1.61251,8.4876 0,4.7801 -0.53482,5.2499 4.8375,5.25 2.5041,-1e-4 7.31501,-0.0275 8.9,-1.6126 2.44122,-2.4411 8.41946,-3.9819 8.8875,-4.4499 3.40242,-3.4024 3.33821,-3.0432 6.8625,-0.4 3.06578,2.2993 6.41474,4.8499 8.8875,4.8499 3.87322,0 2.20837,-3.9864 5.6625,-4.8499 4.34037,-1.0851 1.30738,2.5118 1.6125,4.0374 0.42673,2.1338 3.78428,4.3634 2.425,6.0626 -1.63368,2.0421 -6.46251,1.8349 -6.46249,4.4499 0,3.292 -0.0918,4.4178 3.23749,5.2501 4.23108,1.0577 4.86974,4.8499 0,4.8499 -4.71026,0 -10.13584,-0.5531 -14.55,1.2126 -2.41661,0.9666 -9.35948,5.3871 -10.1,2.425 -0.80394,-3.2158 -3.04372,-2.8672 -5.25,-1.2125 -1.36165,1.0211 -3.97594,1.413 -5.6625,2.425 -3.02141,1.8128 -6.77398,-2.9261 -7.67499,-2.025 -2.41069,2.4106 -0.2,3.9949 -0.2,7.2749 0,0.979 -1.6469,7.912 -2.62501,8.075 -5.06939,0.845 -0.85435,3.8576 0,7.2751 0.5889,2.3555 -3.116,4.4821 -0.8125,5.2499 0.80812,0.2694 -0.0139,2.2186 0.8125,2.4251 2.74333,0.6858 3.44741,2.2474 5.65,4.4499 0.56765,0.5677 0.93877,1.1452 1.1375,1.7 0.35223,0.1615 0.71492,0.3402 1.08751,0.5501 1.15713,0.5786 4.25275,1.6234 4.56249,2.8624 1.41727,5.6691 7.16604,-0.1357 6.28751,-0.5749 -7.60008,-3.8001 8.90849,-2.6896 9.71249,-2.2875 2.44084,1.2203 6.15733,2.8624 9.15,2.8624 4.18304,0 8.36244,-0.775 10.85,1.7125 1.09772,1.0978 5.60848,10.9541 8,8.5626 1.60148,-1.6015 5.88576,-2.6724 9.725,-1.7125 3.36339,0.8408 9.02524,0.6845 13.1375,1.7125 4.73109,1.1827 7.07248,-0.6376 8,4 0.50558,2.528 7.3575,11.9908 10.8625,12.575 2.83182,0.4718 12.43916,1.6682 13.71251,-3.425 1.31454,-5.2584 8.56249,-1.0756 8.56249,-6.8625 0,-4.3018 4,-6.773 4,-10.2875 0,-4.9282 0.03,-6.0069 3.43751,-8.5626 4.14784,-3.1109 1.88158,-6.2875 7.42499,-6.2874 5.69085,0 13.61101,-8.8707 18.2625,-9.0251 0.006,-0.2288 0.02,-0.4589 0.025,-0.6875 -0.75204,-3.0082 5.6794,-3.8219 6.28751,-6.8624 1.16217,-5.8109 8.32683,-3.0325 9.71249,-8.575 0.79232,-3.1693 -0.13284,-7.1032 -1.15,-9.1375 -2.91371,-5.8275 -12.37604,7.8167 -9.1375,-5.1376 1.02318,-4.0928 -1.42864,-6.8552 0.57501,-10.8624 1.46505,-2.9302 5.34667,-2.7059 6.85,-5.7126 0.8219,-1.6437 20.28112,1.0813 8,-6.2874 -2.07623,-1.2457 -4.08885,-5.5304 -4.56251,-7.4251 -1.4197,-5.6787 0.4466,-7.6608 3.425,-9.1499 1.37354,-0.6867 5.3709,1.3454 6.575,0.575 -0.0361,-1.2677 -0.28749,-8.4729 -0.28749,-10.8625 -2e-5,-1.8632 -7.43904,1.7561 -8,4 -0.50309,2.0123 -9.55197,5.7249 -11.43751,5.7249 -5.40937,0 -3.27987,3.5263 -7.425,4.5626 -1.09688,0.2742 -5.19421,-4.5799 -7.425,-5.1376 -2.68686,-0.6717 -1.9682,-5.7125 -7.425,-5.7125 -5.38306,0 -7.16228,-2.2875 -13.15,-2.2875 -6.36328,0 -0.0741,-6.272 2.2875,-6.8624 4.40008,-1.1 8.00837,-2.8416 6.8625,-7.425 -1.62575,-6.503 -1.7368,-5.8961 6.85,-9.7126 1.58832,-0.7059 -8.4593,-6.4555 -9.13749,-6.8624 -3.10901,-1.8655 -10.86751,-1.5184 -14.86251,-2.8501 -5.72413,-1.908 -2.03237,9.3416 -10.85,2.2875 -0.47879,-0.383 0,-5.0923 0,-5.7249 0.5222,-0.3868 1.40134,-0.5895 1.9,-0.9876 -0.0728,-0.012 -0.13578,-0.0483 -0.18749,-0.1 -0.26939,-0.2694 -0.43043,-0.9048 -0.8,-0.8124 -4.91143,1.2278 0.63878,-3.5181 -2.02501,-4.8501 -2.24186,-1.1208 -3.23749,-0.265 -3.2375,-3.6375 0,-3.2009 -0.16186,-7.7217 -0.8,-10.9124 -1.309,-6.545 -4.26994,0.363 -6.875,-1.2 -2.0743,-1.2447 -4.18984,-4.2344 -4.85,-6.8751 -1.0959,-4.3835 -0.47656,-1.4702 -5.25,-2.4249 -1.34688,-0.2695 -2.68265,-0.5868 -4.0375,-0.8125 -3.01472,-0.5026 -11.70568,-4.1317 -14.55,-2.425 -4.9308,2.9584 -6.00114,0 -10.5,0 -2.83426,0 -5.91712,-0.1016 -8.4875,0.4125 -0.67344,0.1346 -1.35874,0.2334 -2.025,0.4 -4.33294,1.0832 -1.92513,1.6125 -6.06249,1.6125 -2.47055,0 -11.49493,1.1709 -12.92501,-1.2125 -1.30394,-2.1733 -2.08978,-4.8813 -3.7125,-4.7875 z m -56,67.6 c -0.4364,0.0152 -0.87579,0.2008 -1.3,0.6249 -0.92358,0.9236 -0.81251,1.86 -0.81249,3.4375 0,1.539 0.84293,2.1593 1.21249,3.6376 0.39213,1.5685 -0.91838,3.4793 -2.21249,4.4499 -1.17031,0.8778 -3.79959,1 -5.66251,1 -1.07808,0 -2.825,-0.7754 -2.825,0.4125 0,2.2011 -0.66009,1.8845 -2.225,3.0251 0,1.2224 0.9134,2.5878 1.81251,3.0374 2.384,1.192 2.3951,2.7159 4.65,1.2125 0.28771,-0.1918 3.74163,-2.2489 3.83749,-2.2249 2.22432,0.556 3.37436,1.6124 5.86251,1.6124 0.96662,0 1.50726,-1.43 1.61249,-1.4124 5.27207,0.8787 0.6788,0.578 3.23751,2.6249 2.35641,1.8851 2.27875,0.6125 4.85,0.6125 0.70915,0 4.14993,-0.1253 4.23749,0.4 0.3191,1.9146 -0.2,3.5666 -0.2,5.6626 0,1.4462 0.85254,3.9574 1.81251,4.4374 1.11502,0.5576 4.31253,-1.6562 4.65,-0.8125 0.54801,1.3701 0,2.9117 0,4.4501 0,1.8995 -0.2541,3.5701 1.21249,4.4499 1.94757,1.1687 1.46322,2.1245 3.03751,1 0.47139,-0.3366 1.00285,-0.5904 1.41249,-1 1.06388,-1.0638 -0.26787,-3.7821 0.6,-4.6499 1.5684,-1.5685 1.00964,-1.6203 1.4125,-4.0376 0.20606,-1.2363 0.41251,-2.7398 0.4125,-4.2499 0,-1.8856 1e-5,-3.7643 0,-5.6501 0,-1.5627 -0.45551,-3.0557 0,-4.6499 0.66472,-2.3266 -0.77488,-6.1503 0,-8.0875 1.17518,-2.938 -1.60514,-0.3754 -3.83749,-1.2125 -0.18795,-0.0706 -4.97712,-0.8293 -5.06251,-1 -0.3305,-0.661 -1.44629,-6.7965 -3.225,-5.4626 -1.50166,1.1263 -5.64454,3.837 -7.075,4.4501 -1.29692,0.5558 -3.97906,2.8834 -5.45,1.4125 -0.81626,-0.8163 -0.21994,-2.445 -1.4125,-3.6376 -0.78958,-0.7895 -2.67146,-3.9285 -4.5625,-3.8624 z m 39.525,104.5249 c -0.0956,0.0476 -0.19647,0.094 -0.3,0.1376 0.10334,-0.0438 0.20465,-0.0899 0.3,-0.1376 z" />
</g>
</g>
</g>
</g>
</svg>
type bedrooms address rental county
All property types All bedrooms Carlow 633.84 Carlow
All property types All bedrooms Cavan 453.01 Cavan
All property types All bedrooms Clare 524.19 Clare
All property types All bedrooms Cork 806.69 Cork
All property types All bedrooms Donegal 452.97 Donegal
All property types All bedrooms Dublin 1207.37 Dublin
All property types All bedrooms Galway 829.52 Galway
All property types All bedrooms Kerry 553.56 Kerry
All property types All bedrooms Kildare 887.66 Kildare
All property types All bedrooms Kilkenny 644.59 Kilkenny
All property types All bedrooms Laois 567.85 Laois
All property types All bedrooms Leitrim 414.23 Leitrim
All property types All bedrooms Limerick 643.55 Limerick
All property types All bedrooms Longford 422.36 Longford
All property types All bedrooms Louth 672.48 Louth
All property types All bedrooms Mayo 514.76 Mayo
All property types All bedrooms Meath 765.04 Meath
All property types All bedrooms Monaghan 499.16 Monaghan
All property types All bedrooms Offaly 545.5 Offaly
All property types All bedrooms Roscommon 462.79 Roscommon
All property types All bedrooms Sligo 600.72 Sligo
All property types All bedrooms Tipperary 539.24 Tipperary
All property types All bedrooms Waterford 554.23 Waterford
All property types All bedrooms Westmeath 568.02 Westmeath
All property types All bedrooms Wexford 560.88 Wexford
All property types All bedrooms Wicklow 911.88 Wicklow
/* style.css */
.region.republic {
fill: #fee391;
stroke: #333;
stroke-width: 1px;
}
.active
{fill: #f29929;
}
.hover
{fill: #fee391;
}
.highlight
{fill: #fec44f;
}
.region.NI {
fill: #aaa;
stroke: #aaa;
}
rect {
fill: none;
pointer-events: all;
}
/* Colors taken from colorbrewer2.org - blue */
.b0-9 { fill:rgb(247,251,255); }
.b1-9 { fill:rgb(222,235,247); }
.b2-9 { fill:rgb(198,219,239); }
.b3-9 { fill:rgb(158,202,225); }
.b4-9 { fill:rgb(107,174,214); }
.b5-9 { fill:rgb(66,146,198); }
.b6-9 { fill:rgb(33,113,181); }
.b7-9 { fill:rgb(8,81,156); }
.b8-9 { fill:rgb(8,48,107); }
/* Colors taken from colorbrewer2.org - red */
.r0-9 { fill:rgb(255,245,240); }
.r1-9 { fill:rgb(254,224,210); }
.r2-9 { fill:rgb(252,187,161); }
.r3-9 { fill:rgb(252,146,114); }
.r4-9 { fill:rgb(251,106,74); }
.r5-9 { fill:rgb(239,59,44); }
.r6-9 { fill:rgb(203,24,29); }
.r7-9 { fill:rgb(165,15,21); }
.r8-9 { fill:rgb(103,0,13); }
/* Colors taken from colorbrewer2.org - green */
.g0-9 { fill:rgb(247,252,245); }
.g1-9 { fill:rgb(229,245,224); }
.g2-9 { fill:rgb(199,233,192); }
.g3-9 { fill:rgb(161,217,155); }
.g4-9 { fill:rgb(116,196,118); }
.g5-9 { fill:rgb(65,171,93); }
.g6-9 { fill:rgb(35,139,69); }
.g7-9 { fill:rgb(0,109,44); }
.g8-9 { fill:rgb(0,68,27); }
.text { stroke:#333;
text-anchor: middle;
font-family: "sans-serif";
stroke-width: 0.5;
fill: #333;
font-size: 10pt;
}
.csvTable table {
border-collapse: collapse;
text-align: left;
width: 100%;
}
.csvTable {
font: normal 12px/120% Arial, Helvetica, sans-serif;
background: #fff;
overflow: hidden;
border: 1px solid #063;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.csvTable table td, .csvTable table th {
padding: 3px 10px;
}
.csvTable table thead th {
background: 0;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006699',endColorstr='#00557F');
background-color: #006D2C;
color: #FFF;
font-size: 15px;
font-weight: 700;
border-left: 1px solid #0070A8;
}
.csvTable table thead th:first-child {
border: none;
}
.csvTable table tbody td {
color: #006633; /* #00496B */
border-left: 1px solid #E1EEF4;
font-size: 12px;
border-bottom: 1px solid #E1EEF4;
font-weight: 400;
}
.csvTable table tbody td:first-child {
border-left: none;
}
.csvTable table tbody tr:last-child td {
border-bottom: none;
}
.csvTable tr:hover td {
background-color: #063;
color: white;
}
@briannaess
Copy link

Great map! I'm attempting something similar, but with a click to zoom to a country in a map of the world. The trick, though, is that I have the SVG auto-resizing based on browser size. How might someone modify your code to get it to find the centroid and zoom into the SVG in the right spot when the SVG is inside a div? Thanks!

@catherinekerr
Copy link
Author

Hi @briannaess,
Apologies for not replying earlier but I was on holidays. Also, I haven't looked at this code in ages and had to refresh my memory. I am gobsmacked that someone sent me a comment after so long :)

Have you tried adjusting the mw and mh values based on browser size?

var mw = 500;	// map container width
var mh = 600;	// map container height
var main_chart_svg = d3.select("#map_container")
        .append("svg")
        .attr({
            "width":mw,
            "height":mh,
        });

Alternatively, you can create the map with appropriate width and height proportions and then scale according to browser size?

You should also take a look at my other gist - https://bl.ocks.org/catherinekerr/b3227f16cebc8dd8beee461a945fb323 - as this explains a bit better how to center SVGs, with zoom etc. This was an early attempt at using D3 with SVGs. I am no expert though as I haven't worked with D3 in a few years.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment