Skip to content

Instantly share code, notes, and snippets.

@fherbine
Last active May 1, 2020 00:01
Show Gist options
  • Save fherbine/32c769d1ed02348507530e2ea06da261 to your computer and use it in GitHub Desktop.
Save fherbine/32c769d1ed02348507530e2ea06da261 to your computer and use it in GitHub Desktop.
<!-- Personnal exercise based on Derek banas work - https://www.youtube.com/watch?v=zeTPUdhfJOk -->
<!DOCTYPE html>
<html>
<head>
<title>Meteo</title>
<meta charset="utf-8">
</head>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
var api_uri = "https://www.prevision-meteo.ch/services/json/"
var palette = generateColor('#fa8011','#ffffad',25);
var region_data = {
"lat=48.8566969lng=2.3514616" : {"capital": "Paris", "region": "ile_de_france"},
"lat=50.6365654lng=3.0635282": {"capital": "Lille", "region": "hauts_de_france"},
"lat=48.584614lng=7.7507127": {"capital": "Strasbourg", "region": "grand_est"},
"lat=49.4404591lng=1.0939658" : {"capital": "Rouen", "region": "normandie"},
"lat=47.2186371lng=-1.5541362" : {"capital": "Nantes", "region": "pays_de_la_loire"},
"lat=48.1113387lng=-1.6800198" : {"capital": "Rennes", "region": "bretagne"},
"lat=47.898556753799596lng=1.9266713009728775" : {"capital": "Orleans", "region": "centre_val_de_loire"},
"lat=44.841225lng=-0.5800364" : {"capital": "Bordeaux", "region": "nouvelle_aquitaine"},
"lat=43.6044622lng=1.4442469" : {"capital": "Toulouse", "region": "occitanie"},
"lat=45.7578137lng=4.8320114" : {"capital": "Lyon", "region": "auvergne_rhone_alpes"},
"lat=47.3215806lng=5.0414701" : {"capital": "Dijon", "region": "bourgogne_franche_comte"},
"lat=43.2961743lng=5.3699525" : {"capital": "Marseille", "region": "paca"},
"lat=41.916667lng=8.733333" : {"capital": "Ajaccio", "region": "corse"},
}
var region_temp = {}
function init() {
generate_color_temperature()
generate_regions_color()
}
function get_region_infos(obj) {
var x = event.clientX
var y = event.clientY
var region = obj.id
var meteo_box = document.getElementById('meteo_box')
var city = document.getElementById('city')
var temp = document.getElementById('temp')
if (typeof region_temp == "undefined" || typeof region_temp[region] == "undefined")
return
city.innerHTML = region_temp[region][0]
temp.innerHTML = region_temp[region][1] + "°C"
meteo_box.style.display = "block"
meteo_box.style.left = x + "px"
meteo_box.style.top = y + "px"
}
function generate_regions_color() {
for (route in region_data) {
var url = api_uri + route
console.log(url)
axios.get(url)
.then(function (response) {
var url = response.config.url.split('/')
var coord = url[url.length-1]
var area_info = region_data[coord]
var element = document.getElementById(area_info['region'])
var path = element.getElementsByTagName('path')[0]
var current_temp = response.data['current_condition']['tmp']
var tmp = current_temp + 10
var idx = 0
region_temp[area_info['region']] = [area_info['capital'], current_temp]
if (tmp > 0) {
if (tmp < 25)
idx = parseInt(tmp / 2)
else
idx = 24
}
path.style.fill = "#"+ palette[idx]
})
.catch(function (error) {
console.log('KO')
console.log(error);
});
}
}
function generate_color_temperature() {
for (var i = palette.length-1; i > 0; i--) {
document.getElementById('temp_indicator').innerHTML += ("<div style='height:6px;background-color:#"+palette[i]+"'></div>")
}
}
/*
* this part of the code is used to get a color from a given gradient
* This is not mine !
* source: https://stackoverflow.com/a/32257791/12113451
*/
function hex (c) {
var s = "0123456789abcdef";
var i = parseInt (c);
if (i == 0 || isNaN (c))
return "00";
i = Math.round (Math.min (Math.max (0, i), 255));
return s.charAt ((i - i % 16) / 16) + s.charAt (i % 16);
}
/* Convert an RGB triplet to a hex string */
function convertToHex (rgb) {
return hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]);
}
/* Remove '#' in color hex string */
function trim (s) { return (s.charAt(0) == '#') ? s.substring(1, 7) : s }
/* Convert a hex string to an RGB triplet */
function convertToRGB (hex) {
var color = [];
color[0] = parseInt ((trim(hex)).substring (0, 2), 16);
color[1] = parseInt ((trim(hex)).substring (2, 4), 16);
color[2] = parseInt ((trim(hex)).substring (4, 6), 16);
return color;
}
function generateColor(colorStart,colorEnd,colorCount){
// The beginning of your gradient
var start = convertToRGB (colorStart);
// The end of your gradient
var end = convertToRGB (colorEnd);
// The number of colors to compute
var len = colorCount;
//Alpha blending amount
var alpha = 0.0;
var saida = [];
for (i = 0; i < len; i++) {
var c = [];
alpha += (1.0/len);
c[0] = start[0] * alpha + (1 - alpha) * end[0];
c[1] = start[1] * alpha + (1 - alpha) * end[1];
c[2] = start[2] * alpha + (1 - alpha) * end[2];
saida.push(convertToHex (c));
}
return saida;
}
</script>
<style>
body {
display: flex;
font-family: Arial;
}
#meteo_box {
position: absolute;
display: none;
background-color: #fff;
border: 1px outset black;
padding: 20px;
}
#temp_indicator {
border: 1px solid lightgrey;
}
</style>
<body onload="init()">
<div>
<h1>Meteo France</h1>
<p>Note: you'll have to place your mouse over region to get some details</p>
</div>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg3767"
width="950"
height="704"
viewBox="0 0 950 704"
sodipodi:docname="france2.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
<metadata
id="metadata3773">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3771" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1002"
id="namedview3769"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="488.21643"
inkscape:cy="303.99176"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer13"
inkscape:snap-grids="true" />
<g
id="g4520"
transform="translate(-26.169682,-2.3310829)">
<g
id="g4523">
<g
id="g4526">
<path
style="fill:#000000"
d="m 487.82812,14.458984 c -0.41773,-0.03747 -1.01685,0.06041 -1.86328,0.267578 -1.5125,0.370192 -5,1.057469 -7.75,1.527344 -2.75,0.469875 -6.575,1.519516 -8.5,2.332032 -1.925,0.812515 -5.41562,1.794014 -7.75781,2.179687 -6.29813,1.037066 -14.52907,4.239795 -16.25391,6.326172 -0.83181,1.006156 -2.40681,2.331529 -3.5,2.943359 -1.6229,0.908289 -2.02045,2.271164 -2.16015,7.431641 -0.34988,12.924112 -0.16334,17.314565 0.7832,18.455078 0.62994,0.759027 0.62587,1.292456 -0.0117,1.517578 -0.5409,0.190985 -1.22445,3.381339 -1.51953,7.087891 -0.29508,3.706551 -0.83231,7.914949 -1.19336,9.353515 -0.54774,2.182358 -0.0128,3.18967 3.22852,6.078125 3.57781,3.188352 3.66302,3.376869 1.07031,2.394532 -4.59357,-1.740434 -5.66178,-1.284432 -7.59961,3.236328 -1.36166,3.176625 -3.77214,5.762043 -9.21484,9.886718 -4.05377,3.072101 -8.9461,6.072038 -10.8711,6.666018 -6.80163,2.09869 -14.5483,4.04572 -18.5,4.65039 -2.2,0.33663 -5.88951,1.94824 -8.19922,3.58008 -2.30971,1.63184 -6.86325,4.28692 -10.11914,5.90234 -5.12843,2.54448 -6.12248,3.51068 -7.43554,7.22461 -0.83363,2.35786 -2.1031,5.71362 -2.82032,7.45703 -1.50459,3.65739 -0.34626,5.83916 3.97071,7.48047 l 2.47851,0.94336 -2.9375,1.96875 c -1.6158,1.08319 -4.47075,3.09067 -6.3457,4.46094 -1.87496,1.37028 -5.1615,3.01667 -7.30273,3.6582 -3.41585,1.02341 -4.44498,0.89832 -8.39649,-1.02148 -3.28794,-1.5974 -7.12193,-2.3382 -14.19922,-2.74219 -5.33178,-0.30434 -11.00065,-1.1965 -12.59765,-1.98438 -3.32624,-1.64099 -11.17536,-1.92275 -12.09571,-0.43359 -1.00783,1.6307 -2.5,1.13975 -2.5,-0.82227 0,-1.00202 -1.33795,-3.58952 -2.97265,-5.75 -3.33375,-4.406 -3.73088,-6.59896 -1.52735,-8.42773 2.08535,-1.73069 1.87369,-5.35158 -0.43554,-7.44141 -2.47234,-2.23744 -8.43553,-2.42998 -10.76758,-0.34765 -0.98796,0.88216 -2.70459,1.75232 -3.81445,1.93359 -1.95853,0.3199 -9.96208,-1.8077 -11.98243,-3.18555 -0.55,-0.37509 -2.2375,-0.97853 -3.75,-1.33984 -2.51924,-0.60182 -2.75,-0.41278 -2.75,2.24609 0,2.06141 0.57952,3.05431 2,3.42578 2.19522,0.57406 2.84244,5.46617 0.97071,7.3379 -0.7057,0.7057 -0.55015,1.94864 0.49414,3.95117 0.83771,1.6064 1.52629,3.96824 1.52929,5.24804 0.003,1.27981 1.29043,3.6088 2.85938,5.17774 1.56894,1.56895 3.61501,4.46009 4.54687,6.42383 0.93185,1.96375 2.12229,3.57031 2.64649,3.57031 0.52419,0 0.95312,3.3388 0.95312,7.41797 0,4.07916 0.42681,7.56666 0.94922,7.75 1.00885,0.35406 1.17775,4.64666 0.5586,14.18554 -0.3692,5.68811 -0.26825,5.9596 3.54492,9.69727 3.6821,3.60919 3.86573,5.8999 0.36523,4.55664 -0.81781,-0.31383 -3.74678,-0.0863 -6.50781,0.50586 -7.14167,1.53161 -9.91016,0.63474 -9.91016,-3.21094 0,-2.92864 -0.13992,-3.03024 -3.25,-2.36523 -1.7875,0.38221 -3.8125,1.14733 -4.5,1.70117 -1.65855,1.33606 -1.6006,5.6895 0.084,6.33594 0.73334,0.2814 1.33203,1.10616 1.33203,1.83203 0,1.72826 -2.91987,0.93651 -5.53516,-1.5 -2.3711,-2.20902 -3.79101,-2.42187 -4.3789,-0.6582 -0.25625,0.76874 -0.87788,0.38505 -1.61914,-1 -0.66151,-1.23604 -1.88846,-2.24805 -2.72657,-2.24805 -0.83813,0 -1.24466,-0.45198 -0.90234,-1.00586 0.90608,-1.46608 -2.43412,-2.46431 -3.77148,-1.12695 -0.62303,0.62303 -1.92847,1.13281 -2.90235,1.13281 -0.97388,0 -3.92216,2.01869 -6.55078,4.48437 -2.62862,2.46568 -5.08292,4.491 -5.45312,4.5 -1.42377,0.0358 -6.82618,-6.22653 -6.82618,-7.9121 0,-0.97544 -1.35337,-2.81021 -3.00781,-4.07813 -1.65444,-1.26793 -2.89194,-2.99369 -2.75,-3.83398 0.14194,-0.84029 -0.64219,-1.7822 -1.74219,-2.09375 -1.1,-0.31155 -2,-1.24141 -2,-2.06641 0,-0.825 -0.7875,-1.43773 -1.75,-1.36133 -1.09804,0.0871 -1.75,-0.56482 -1.75,-1.75 0,-1.82754 -2.88757,-2.66907 -4.30273,-1.2539 -0.34943,0.34941 -2.27755,0.78274 -4.28516,0.96289 -2.0076,0.18015 -4.72161,1.03056 -6.03125,1.88867 -1.30964,0.85811 -2.38086,1.09979 -2.38086,0.53711 0,-0.56268 -1.27301,-1.02344 -2.83007,-1.02344 -3.1501,0 -4.84998,2.49424 -5.05469,7.41992 -0.16031,3.85744 -0.47652,4.04593 -3.91211,2.33203 -4.35096,-2.17055 -8.63173,-1.74712 -9.00781,0.89063 -0.37993,2.66471 -3.76502,2.11352 -4.50977,-0.73438 -0.52955,-2.02501 -4.68555,-2.73353 -4.68555,-0.79883 0,0.68114 -0.95741,0.86762 -2.48437,0.48438 -1.75504,-0.44049 -3.07661,-0.0328 -4.5,1.39062 -2.12319,2.12319 -5.01563,2.70903 -5.01563,1.01563 0,-1.4898 -3.34208,-1.20774 -5.55859,0.46875 -1.06762,0.8075 -3.17891,1.4825 -4.69141,1.5 -1.64051,0.019 -2.75,0.5827 -2.75,1.39648 0,0.75028 -2.03045,2.13833 -4.51172,3.08594 -2.48127,0.94761 -4.91086,2.4721 -5.39843,3.38672 -0.48758,0.91461 -0.85421,4.6863 -0.81641,8.38281 l 0.0684,6.72071 4.58008,-0.14454 c 2.51857,-0.0801 6.26562,-0.97709 8.32812,-1.99218 3.7049,-1.82343 3.75,-1.82026 3.75,0.17578 0,2.13949 3.34024,2.89606 4.5,1.01953 0.97385,-1.57572 2.50048,-1.16561 1.86133,0.5 -0.36449,0.94984 0.0137,1.5 1.03125,1.5 0.88385,0 1.5998,0.7875 1.5918,1.75 -0.009,1.06572 -0.30259,1.32677 -0.75,0.66601 -0.94372,-1.39369 -14.25875,-1.70766 -16.23438,-0.38281 -1.3115,0.87949 -1.28009,1.17301 0.25,2.34571 0.9625,0.73768 1.75,2.08056 1.75,2.98242 0,2.01049 2.85346,2.18354 3.60743,0.21875 0.70962,-1.84922 6.13193,-0.21994 8.59179,2.58203 2.18218,2.48567 1.29308,4.9793 -1.55273,4.35156 -1.18016,-0.26032 -5.52149,0.32103 -9.64649,1.29297 -6.08116,1.43287 -7.5,2.12571 -7.5,3.66602 0,1.86063 0.44542,2.06248 8.75,3.94335 3.85416,0.87293 8.09884,7.71738 7.23243,11.66211 -0.63234,2.87906 -0.57919,2.92135 3.6875,2.90625 5.23697,-0.0185 7.35798,-1.16547 6.46289,-3.49804 -0.58394,-1.52172 -0.14633,-1.64005 3.86132,-1.03906 3.59879,0.53967 4.64358,0.36038 5.11914,-0.87891 0.75556,-1.96893 2.23992,-1.08247 3.42969,2.04687 1.1404,2.99947 5.595,4.93101 7.57813,3.28516 0.91988,-0.76346 1.3789,-0.79217 1.3789,-0.084 0,0.58365 2.00485,1.36107 4.45508,1.72851 3.20612,0.48078 4.91497,1.37273 6.09766,3.17774 1.36731,2.08677 2.20292,2.41758 4.96875,1.96875 2.94827,-0.47844 3.91089,0.0224 8.51172,4.43359 4.29777,4.12067 5.72488,4.92173 8.32617,4.67383 1.72692,-0.16457 3.63473,-0.9284 4.23828,-1.69922 0.70814,-0.90441 1.32446,-1.0348 1.73828,-0.36524 0.434,0.70224 1.85658,0.61856 4.40234,-0.25976 3.17377,-1.09498 3.88792,-1.0767 4.56641,0.12109 1.13553,2.00462 -0.0177,3.4043 -2.80469,3.4043 -2.80766,0 -3.75653,1.16945 -2.85546,3.51758 0.51575,1.34402 1.40123,1.56173 4.2539,1.05078 1.98111,-0.35484 5.91358,-0.91 8.73828,-1.23438 5.11737,-0.58766 5.1334,-0.5796 4.63282,2.03907 -0.3217,1.68286 -0.0613,2.62695 0.7246,2.62695 0.67505,0 0.27464,0.7875 -0.89062,1.75 -1.84434,1.52343 -2.016,2.33262 -1.32813,6.25 0.74144,4.22241 0.98845,4.50369 4.01563,4.55859 1.7744,0.0322 3.76266,0.59469 4.41797,1.25 1.78324,1.78324 4.18837,1.44869 7.40625,-1.03125 1.5868,-1.2228 2.30298,-1.4909 1.5918,-0.5957 -0.74322,0.93545 -1.03065,2.674 -0.67579,4.08789 0.43345,1.72699 0.14818,2.64034 -0.95703,3.06445 -2.8018,1.07515 -1.67165,3.32095 2.26367,4.5 4.27812,1.28175 8.50139,5.16569 6.41211,5.89649 -0.6875,0.24048 -1.25,1.04037 -1.25,1.77734 0,0.73697 -1.125,2.67646 -2.5,4.31055 -3.11469,3.70159 -3.34093,8.6429 -0.47656,10.42383 3.62405,2.25326 11.74035,13.15804 12.84375,17.25781 0.89393,3.32147 1.99889,4.55131 6.51172,7.25 2.9891,1.7875 6.34646,3.25 7.46094,3.25 1.14809,0 2.3005,0.86684 2.66015,2 0.45425,1.43122 1.51269,2 3.72266,2 1.8034,0 4.54032,1.10781 6.57812,2.66211 3.18354,2.42819 3.59662,2.51591 4.70508,1 0.66826,-0.91391 1.50361,-1.66211 1.85547,-1.66211 1.48826,0 0.45536,3.43036 -1.86133,6.18359 -3.00864,3.57557 -3.20838,5.81641 -0.51953,5.81641 2.78596,0 5.86664,6.41926 5.51953,11.5 -0.31451,4.60369 -1.32176,7.5 -2.60742,7.5 -0.49115,0 -0.89258,0.79409 -0.89258,1.76367 0,0.96958 -1.0125,2.21253 -2.25,2.76172 -1.69389,0.75175 -2.19587,1.73008 -2.03125,3.95898 0.23499,3.1817 2.74743,5.68134 8.03125,7.99219 1.7875,0.78175 3.25,1.86627 3.25,2.41016 0,0.54389 2.04308,2.45611 4.54102,4.25 5.31177,3.81463 7.73941,7.5027 9.36914,14.23437 1.53154,6.3261 0.76895,6.95122 -1.69336,1.38477 -1.17381,-2.6536 -4.19598,-6.3504 -7.58398,-9.27539 -3.09772,-2.67437 -5.63282,-5.67481 -5.63282,-6.66992 0,-2.4451 -3.19492,-2.32876 -4.75781,0.17382 -0.68155,1.09134 -1.69548,8.37901 -2.25391,16.19336 -0.55842,7.81435 -1.68463,20.23761 -2.50195,27.60938 -0.81732,7.37176 -1.48633,13.58605 -1.48633,13.80859 0,1.02427 2.60027,-0.29491 4.13086,-2.0957 1.69216,-1.99086 1.71202,-1.98941 4.28516,0.42383 3.60894,3.38468 3.24047,4.26143 -1.63477,3.89453 -3.57245,-0.26885 -4.2688,-0.012 -4.55078,1.68164 -0.18314,1.1 -0.70503,2.9 -1.1582,4 -0.45316,1.1 -1.55977,8.3 -2.46094,16 -0.90116,7.7 -2.78244,19.4 -4.17969,26 -1.39726,6.6 -2.7776,13.575 -3.06836,15.5 -0.73227,4.84811 -2.24887,8.66007 -5.76953,14.5 -3.39476,5.63111 -5.28381,7.42245 -7.875,7.46875 -2.36404,0.0422 -3.14987,2.35819 -1.71093,5.04687 0.80354,1.50144 1.78798,2.01053 3.1875,1.64454 1.43057,-0.3741 2.17371,0.0371 2.53125,1.40429 0.52697,2.01512 3.85223,2.69719 4.44726,0.91211 0.47501,-1.42503 6.87112,-0.0249 7.51172,1.64453 0.28225,0.73552 -0.43143,3.28892 -1.58594,5.67383 -2.61574,5.40337 -2.6188,6.358 -0.0215,7.74805 2.78547,1.49073 4.90883,0.52715 4.98633,-2.26172 l 0.0625,-2.28125 0.90429,2.25 c 0.52471,1.30541 1.76426,2.25 2.95118,2.25 1.12519,0 2.8262,0.41718 3.78125,0.92773 7.00383,3.74449 11.57984,5.19954 15.46289,4.91602 3.80088,-0.27752 4.30908,-0.0584 4.59961,1.97656 0.18522,1.29733 1.34968,2.67617 2.68945,3.18555 1.29942,0.49404 2.82832,1.7665 3.39648,2.82812 1.2269,2.29248 3.80883,3.45956 5.42774,2.45118 0.63787,-0.39732 2.23872,-0.5845 3.55664,-0.41407 1.31792,0.17043 3.39441,-0.22359 4.61523,-0.87695 1.8846,-1.00861 2.84347,-0.79392 6.35352,1.42187 2.27376,1.43536 4.14871,2.94206 4.16601,3.34766 0.0173,0.40561 1.13863,1.5423 2.49219,2.52734 2.29086,1.66716 2.8201,1.68445 7.65039,0.25 6.39022,-1.89764 6.32698,-1.89762 8.28125,0.0566 0.99481,0.99481 2.24628,1.32057 3.32031,0.86328 0.94836,-0.40378 5.47042,-0.63322 10.04883,-0.50977 l 8.32422,0.22461 -0.67773,-4.51758 c -0.37252,-2.48403 -0.41515,-4.93822 -0.0957,-5.45508 0.33579,-0.54332 3.43817,0.0418 7.35352,1.38672 3.72465,1.27946 7.95701,2.34379 9.40625,2.36719 1.65038,0.0266 3.22661,0.94582 4.2168,2.45703 1.3383,2.0425 2.3135,2.38782 6.36132,2.25 4.56392,-0.15539 4.87397,0.007 6.78516,3.58399 2.2271,4.16782 3.19263,4.55814 5.0332,2.04101 1.06097,-1.45096 1.65264,-1.52681 3.90625,-0.5 1.46113,0.66574 3.56824,1.21094 4.68164,1.21094 3.05721,0 4.9378,2.22347 3.23047,3.81836 -2.54544,2.37779 -1.3952,3.98249 4.09375,5.70898 4.38856,1.38037 5.63963,2.26938 6.44922,4.5918 0.80518,2.30972 1.59653,2.88086 3.99805,2.88086 1.84684,0 3.52588,-0.75562 4.37695,-1.9707 2.50521,-3.57668 10.47515,-2.52798 16.66406,2.1914 1.33763,1.02001 3.06218,1.61183 3.83204,1.31641 0.76985,-0.29542 2.38243,-0.53711 3.58203,-0.53711 1.30271,0 2.57838,-0.90612 3.16797,-2.25 0.55853,-1.27308 2.07179,-2.40003 3.48632,-2.5957 1.375,-0.1902 3.0972,-0.83648 3.82618,-1.43555 1.814,-1.49073 8.8544,-2.04648 9.64843,-0.76172 0.35448,0.57355 1.96645,1.04297 3.58399,1.04297 3.80436,0 4.00072,-3.11407 0.40625,-6.44531 -3.25987,-3.02115 -3.92278,-8.62055 -2.69727,-22.78907 0.86016,-9.94467 1.19766,-11.13909 4.58203,-16.23632 4.64294,-6.99276 10.36974,-10.96837 14.49414,-10.0625 2.56747,0.56391 3.3217,0.18263 5.6211,-2.83203 1.46054,-1.91487 3.86622,-3.9183 5.3457,-4.45313 1.47948,-0.53483 5.04479,-3.00724 7.92383,-5.49414 7.10274,-6.13534 13.26562,-7.40515 13.26562,-2.73438 0,2.53924 2.11738,3.20386 12.5,3.92383 l 9,0.62305 -0.2832,2.72266 c -0.31691,3.04288 0.15112,3.23967 10.0332,4.22265 5.09147,0.50645 5.75,0.36525 5.75,-1.23633 0,-0.99481 -0.53922,-2.34781 -1.19922,-3.00781 -0.93333,-0.93333 -0.49431,-1.20117 1.97461,-1.20117 2.51561,0 3.49518,0.62254 4.72461,3 1.45848,2.82039 1.90566,3 7.4668,3 3.25342,0 6.21835,-0.48802 6.58789,-1.08594 1.22366,-1.97993 2.71875,0.78264 2.71875,5.02344 v 4.0625 h 4.75586 c 3.44526,0 4.92627,0.44219 5.37305,1.60547 0.43349,1.12967 1.3381,1.42691 3.04687,0.99804 1.33617,-0.33536 2.72576,-0.13086 3.08789,0.45508 0.36214,0.58595 1.73898,1.47606 3.06055,1.97852 1.46185,0.5558 2.40234,1.71979 2.40234,2.9707 0,3.05471 2.97979,3.73703 5.06641,1.16016 1.81077,-2.23621 4.39711,-2.84668 5.37305,-1.26758 0.87893,1.42215 7.36042,1.04726 8.64453,-0.5 1.34693,-1.62295 4.51554,-1.85738 5.41601,-0.40039 0.94944,1.53622 3.5,1.18622 3.5,-0.48047 0,-0.81452 1.2375,-1.74676 2.75,-2.07031 1.5125,-0.32354 3.7835,-1.00564 5.04688,-1.51758 1.26338,-0.51193 3.18766,-0.93164 4.27539,-0.93164 1.2028,0 2.35999,-1.00441 2.95312,-2.56445 1.41423,-3.7197 1.22668,-4.43555 -1.16015,-4.43555 -2.00005,0 -1.96423,-0.13412 0.57422,-2.13086 1.49025,-1.17223 3.12686,-3.22468 3.63476,-4.56055 0.50789,-1.33587 1.32075,-2.18237 1.8086,-1.88086 2.13864,1.32176 7.07406,-1.66446 8.28515,-5.01367 0.87396,-2.41688 1.85153,-3.41406 3.34571,-3.41406 2.45657,0 6.48632,-3.4258 6.48632,-5.51367 0,-0.78983 2.1375,-2.3861 4.75,-3.54688 7.96531,-3.53915 12.71677,-6.10353 13.43555,-7.25195 0.37643,-0.60144 0.4504,-2.2636 0.16406,-3.69531 -0.33478,-1.67387 0.0445,-3.07342 1.06446,-3.91992 0.87241,-0.72405 1.58593,-1.93767 1.58593,-2.69532 0,-0.75766 0.68678,-1.37695 1.52539,-1.37695 0.83861,0 1.96298,-1.0125 2.49805,-2.25 0.53508,-1.2375 1.532,-3.03549 2.2168,-3.99609 0.99204,-1.39213 0.99247,-2.15024 0.002,-3.73633 -0.68349,-1.09443 -1.24219,-2.89645 -1.24219,-4.00391 0,-2.20312 -1.09201,-2.51661 -3.76367,-1.08008 -3.35705,1.80506 -11.66433,3.28044 -12.04492,2.13868 -0.19641,-0.58926 -1.37521,-1.07227 -2.61914,-1.07227 -1.24392,0 -3.0344,-0.85326 -3.97852,-1.89649 -0.94411,-1.04323 -3.71316,-2.39899 -6.15429,-3.01367 -2.44112,-0.61468 -4.43946,-1.63209 -4.43946,-2.25976 0,-0.62766 -1.1784,-2.68726 -2.61914,-4.57617 -2.11555,-2.77363 -2.42764,-3.85641 -1.61914,-5.63086 0.78232,-1.71702 0.57044,-2.72809 -0.96875,-4.62891 -1.9657,-2.42754 -1.96558,-2.43558 0.17383,-4.16797 1.17901,-0.9547 2.40433,-3.33169 2.7207,-5.28125 0.47065,-2.90025 1.00492,-3.54492 2.94336,-3.54492 1.67848,0 2.36914,-0.56628 2.36914,-1.94141 0,-1.06754 -0.45,-2.21867 -1,-2.55859 -0.55,-0.33992 -1,-1.85184 -1,-3.35938 0,-3.58693 -1.67609,-5.14062 -5.54492,-5.14062 -3.34269,0 -6.81205,-2.88241 -7.0039,-5.82031 -0.29217,-4.474 -0.56022,-5.17969 -1.97266,-5.17969 -0.83679,0 -2.03859,-1.13742 -2.67188,-2.52734 -1.60308,-3.51838 3.1e-4,-4.80745 5.86914,-4.71875 3.80934,0.0576 5.20499,-0.41198 7.00977,-2.35938 1.23958,-1.33753 3.60746,-2.70235 5.26172,-3.0332 3.66099,-0.7322 5.50198,-2.74702 4.61719,-5.05274 -0.36348,-0.94722 0.14173,-3.20569 1.12695,-5.03515 l 1.78711,-3.31641 -4.80078,-4.3457 c -4.24933,-3.8463 -4.80602,-4.82747 -4.85742,-8.55469 -0.0407,-2.94982 -0.54671,-4.38653 -1.68946,-4.79687 -4.57368,-1.64238 -7.13086,-4.43525 -7.13086,-7.78907 0,-3.11312 0.32985,-3.4819 4.00196,-4.4707 4.85874,-1.30832 7.44189,-4.74935 6.53711,-8.70899 -0.83812,-3.66788 -4.1817,-7.64226 -5.88086,-6.99023 -0.96336,0.36967 -1.21567,-0.16243 -0.88867,-1.87305 0.35676,-1.86624 -0.11158,-2.607 -2.13672,-3.37695 -2.6925,-1.02369 -2.73275,-1.88729 -0.32422,-6.89062 0.89964,-1.86886 0.77969,-2.9404 -0.5918,-5.33008 -0.94429,-1.64533 -1.7168,-3.80364 -1.7168,-4.79492 0,-0.99128 -0.89798,-2.03706 -1.99609,-2.32422 -2.5922,-0.67788 -14.00391,0.35513 -14.00391,1.26757 0,1.25731 -4.88753,3.01327 -5.52343,1.98438 -1.27366,-2.06083 -3.6479,-0.79344 -5.1211,2.73242 -1.43933,3.44481 -1.41925,3.7887 0.30078,5.11328 1.34572,1.03633 1.49554,1.55151 0.55664,1.90235 -0.70782,0.26449 -2.57296,1.56237 -4.14453,2.88476 -3.72998,3.13857 -9.06836,3.32634 -9.06836,0.31836 0,-1.40044 0.98679,-2.4608 3,-3.2207 1.65,-0.62281 3,-1.73116 3,-2.46289 0,-0.73173 0.73175,-2.74335 1.625,-4.4707 1.5522,-3.00163 1.53007,-3.21553 -0.5,-4.85938 -2.52842,-2.04739 -2.70702,-4.62384 -0.53515,-7.72461 0.87406,-1.24789 1.33313,-2.93201 1.02148,-3.74414 -0.58911,-1.5352 3.96005,-6.16518 11.23828,-11.4375 3.83068,-2.7749 3.93354,-3.005 3.86524,-8.72852 -0.0826,-6.92877 0.33751,-7.82532 4.02343,-8.5625 2.80384,-0.56077 8.26172,-4.5746 8.26172,-6.07617 0,-0.44587 2.7,-3.53634 6,-6.86718 3.3,-3.33087 6,-6.71207 6,-7.51368 0,-0.80161 1.125,-2.34225 2.5,-3.42382 4.32447,-3.40164 2.7332,-6.16223 -2.92773,-5.08008 l -2.79883,0.53515 1.72852,-2.63867 c 0.95078,-1.45107 2.12654,-2.63867 2.61328,-2.63867 0.48674,0 0.88476,-0.79835 0.88476,-1.77539 0,-1.46936 0.69132,-1.71202 4,-1.39649 3.12523,0.29804 4,0.7968 4,2.27735 0,1.65263 0.77938,1.89456 6.09375,1.89453 5.25262,0 6.16636,-0.27603 6.61719,-2 0.28947,-1.10692 1.36389,-2 2.40625,-2 1.16397,0 1.88281,-0.70349 1.88281,-1.84375 0,-1.01476 0.9,-2.66076 2,-3.65625 2.32079,-2.10028 2.53027,-3.81906 0.69336,-5.67773 -1.75982,-1.78068 -2.71054,-4.47168 -1.875,-5.30665 0.37461,-0.37434 0.71034,-2.4092 0.74414,-4.52148 0.0338,-2.11228 0.91971,-6.36495 1.96875,-9.45117 1.54974,-4.55926 1.67785,-5.97864 0.6875,-7.56446 -1.87633,-3.00448 -1.46385,-6.72174 1.36914,-12.34374 1.42327,-2.82444 3.22327,-6.40778 4,-7.96485 0.77674,-1.55707 1.41211,-4.1601 1.41211,-5.7832 0,-1.62309 0.675,-4.56652 1.5,-6.54102 0.825,-1.97451 1.5,-4.68921 1.5,-6.0332 0,-3.10406 1.57467,-6.04145 5.16407,-9.63086 1.55966,-1.55965 2.84065,-3.36262 2.84765,-4.00781 0.007,-0.6452 1.58181,-2.19105 3.5,-3.4336 1.91819,-1.24256 3.48828,-2.83346 3.48828,-3.53711 0,-0.70365 0.9,-3.04553 2,-5.20312 1.1,-2.15759 1.985,-4.38973 1.9668,-4.96094 -0.0707,-2.22203 -12.32433,-6.82554 -19.2832,-7.24414 -7.21019,-0.43371 -12.27144,-2.52798 -14.09961,-5.83398 -2.24008,-4.05086 -5.47033,-4.57473 -8.83985,-1.43555 -2.89512,2.69722 -13.72828,2.52451 -13.73828,-0.21875 -0.008,-2.27825 -3.81053,-4.80664 -7.22851,-4.80664 -2.11082,0 -2.77735,0.48005 -2.77735,2 0,1.46667 -0.66667,2 -2.5,2 -1.83333,0 -2.5,-0.53333 -2.5,-2 0,-1.1 -0.45,-2 -1,-2 -0.55,0 -1,-0.65061 -1,-1.44727 0,-0.79666 -1.125,-2.66283 -2.5,-4.14648 -1.375,-1.48365 -2.5,-3.75806 -2.5,-5.05274 0,-1.29468 -0.45,-2.35351 -1,-2.35351 -0.55,0 -1,-0.62303 -1,-1.38477 0,-2.11662 -4.8611,-4.86735 -7.45312,-4.21679 -1.521,0.38175 -2.85518,-0.0822 -4.06055,-1.41407 -2.30779,-2.55006 -6.671,-2.54278 -8.98633,0.0156 -2.12835,2.3518 -6.31553,2.64507 -7.13867,0.5 -0.31659,-0.825 -1.58159,-1.5 -2.8125,-1.5 -1.23091,0 -3.00183,-0.8415 -3.93359,-1.87109 -1.66143,-1.83585 -8.67881,-2.4709 -11.11524,-1.00586 -0.55,0.33072 -2.17265,0.88113 -3.60546,1.22265 -2.32075,0.55316 -2.77626,0.18466 -4.16993,-3.36328 -1.08434,-2.76047 -2.16619,-3.98242 -3.52734,-3.98242 -1.12116,0 -2.18849,-0.85521 -2.48633,-1.99414 -0.28693,-1.09723 -1.35051,-2.26442 -2.36523,-2.59375 -5.49739,-1.7842 -7.33044,-2.78657 -7.81055,-4.26953 -0.65908,-2.03574 -5.04131,-4.14258 -8.61719,-4.14258 -2.04051,0 -2.79506,-0.57619 -3.14453,-2.4043 -0.25282,-1.32256 -0.0612,-3.11618 0.42578,-3.98633 1.10435,-1.97336 -0.69072,-5.60937 -2.76953,-5.60937 -1.17313,0 -1.27445,-0.420838 -0.46484,-1.933594 0.56935,-1.063842 1.03515,-2.879648 1.03515,-4.035157 0,-1.155508 0.71353,-3.190022 1.58594,-4.521484 1.876,-2.863148 1.16242,-4.509766 -1.95703,-4.509766 -3.33411,0 -7.62891,4.956278 -7.62891,8.804688 0,2.210324 -0.47388,3.195312 -1.53906,3.195312 -0.84691,0 -3.26556,0.879919 -5.37305,1.955079 -3.16518,1.614762 -4.47256,1.776852 -7.51953,0.935542 -2.02878,-0.560167 -4.67458,-0.889915 -5.8789,-0.734371 -1.20433,0.155543 -2.75196,-0.0681 -3.43946,-0.496093 -1.94341,-1.209832 -1.47175,-4.455002 0.75,-5.160157 1.1,-0.349126 2,-1.032473 2,-1.519531 0,-1.615006 -2.30654,-5.980469 -3.16015,-5.980469 -1.40185,0 -0.93886,-3.758411 0.66015,-5.357421 2.25784,-2.257845 1.94378,-4.990625 -0.5,-4.351563 -1.20081,0.314018 -2,0.0288 -2,-0.710937 0,-0.677636 -1.0125,-2.136614 -2.25,-3.244141 -1.81998,-1.628826 -3.7312,-2.032475 -10,-2.109375 -4.2625,-0.05229 -7.75,0.325903 -7.75,0.839844 0,0.513941 -0.45,0.933593 -1,0.933593 -0.55,0 -1,-1.924721 -1,-4.277343 0,-5.201471 -2.24303,-8.722657 -5.55664,-8.722657 -1.50516,0 -2.44336,-0.57595 -2.44336,-1.5 0,-1.865425 -1.91327,-1.880943 -4.34961,-0.03516 -3.06321,2.320699 -6.2807,0.135722 -7.10156,-4.822265 -0.37726,-2.278615 -0.65499,-5.21684 -0.61719,-6.529297 0.0378,-1.312457 -1.0566,-3.509724 -2.43164,-4.884766 -1.37504,-1.375043 -2.5,-2.890234 -2.5,-3.365234 0,-1.340891 -4.6916,-1.018368 -8.53125,0.585937 -1.93179,0.807156 -3.46875,2.166817 -3.46875,3.06836 0,1.214436 -0.56163,1.447061 -2.25,0.933593 -2.15349,-0.65492 -6.63954,-5.131844 -6.71484,-6.701172 -0.0198,-0.4125 -0.91935,-0.75 -2,-0.75 -2.74476,0 -4.30454,-3.446117 -3.55859,-7.861328 0.41802,-2.474227 0.11248,-4.697682 -0.91797,-6.673828 -0.85007,-1.630217 -1.54974,-3.805414 -1.55274,-4.832031 -0.003,-0.957531 -0.19636,-1.398494 -0.89258,-1.460938 z"
id="path4922"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 560.08008,139.63281 c 0.0909,0.0138 0.19865,0.16765 0.31836,0.4668 0.28891,0.72187 0.25221,1.58567 -0.0801,1.91797 1.42198,-0.32842 0.71355,-1.59602 -0.23828,-2.38477 z"
id="path4914"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 447.72266,154.30469 c 0.038,0.0843 -0.29611,0.55741 -0.97461,1.48242 -0.80687,1.1 -1.59437,2.1888 -1.75,2.41797 -0.15563,0.22916 2.36844,-0.14299 2.36844,-0.7173 0,-0.57432 -1.58094,-0.94582 -0.61844,-1.70067 0.80938,-0.63476 0.93658,-1.56675 0.97461,-1.48242 z"
id="path4912"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 544.02117,161.21983 c 0.80508,-0.039 1.32195,-1.1411 1.10383,-0.78819 -0.51208,0.82856 -2.93295,-2.38979 -4.41016,0.47266 -0.0967,0.18741 0.61661,0.71723 1.97497,0.45756 0.33958,-0.0649 1.063,-0.12904 1.33136,-0.14203 z"
id="path4908"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 539.08008,161.63281 c 0.0909,0.0138 -0.56505,0.95815 -0.44534,1.2573 0.28891,0.72187 0.46658,-0.11591 0.13429,0.21639 -0.33229,0.33229 -0.0195,0.65274 0.0239,-0.40142 0.03,-0.7281 0.59107,-0.70667 0.28711,-1.07227 z"
id="path4906"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 514.25977,163.41406 c 0.0482,-0.20485 -0.33887,0.26699 -0.15851,0.32711 0.74895,0.24965 0.15851,-0.32711 -1.61688,0.37797 -1.66335,0.43497 -0.74208,0.74207 0,0 0.41645,-0.35352 1.5412,0.29021 1.77539,-0.70508 z"
id="path4904"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 507.74164,166.14148 c 0.45313,0 0.55789,0.63105 1.33039,0.12664 0.6875,0.27741 -0.11617,-0.88951 -1.49117,-0.88951 -1.375,0 -0.67806,0.5238 0.009,0.24639 0.34375,-0.1387 -0.30178,0.51648 0.15134,0.51648 z"
id="path4902"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 539.2793,166.75195 c 0.67755,0.034 0.81922,0.27649 0.81922,0.79376 0,0.15087 0.31041,-1.68076 -0.49039,-1.68076 -0.80081,0 -1.56882,1.70588 -1.28001,1.23857 0.16695,-0.27012 0.54465,-0.37196 0.95118,-0.35157 z"
id="path4900"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 517.21484,169.78711 2.25,1.90625 c 1.2375,1.04774 2.25,2.43976 2.25,2.25 0,0 -0.0578,-0.80547 -1.90164,-2.38398 z"
id="path4898"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 356.08008,206.63281 c 0.0909,0.0138 0.19865,0.16765 0.31836,0.4668 0.28891,0.72187 0.25221,1.58567 -0.0801,1.91797 -0.33229,0.33229 0.44948,0.01 0.49288,-1.04453 0.03,-0.7281 -0.88274,-1.36319 -0.73116,-1.34024 z"
id="path4892"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 382.18164,213.75 c 0.0603,0.0225 0.12596,0.11523 0.19531,0.28711 0.27741,0.6875 0.27741,1.8125 0,2.5 -0.27741,0.6875 0.62156,0.125 0.62156,-1.25 0,-1.03125 -0.99774,-1.60449 -0.81687,-1.53711 z"
id="path4888"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 142.83789,240.74413 c 0.4719,-0.0703 0.6319,0.12954 0.36914,0.55469 -0.33602,0.5437 -1.03324,0.98828 -1.55078,0.98828 -1.43843,0 -1.12109,-0.71607 0.61133,-1.38086 0.22247,-0.0854 0.41301,-0.13866 0.57031,-0.16211 z"
id="path4884"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 204.71484,261.28711 c 0.0516,0.0516 -0.25111,0.45697 -0.87304,1.25 -1.30637,1.66575 -2.12696,2.19609 -2.12696,1.37305 0,-0.20765 0.7875,-0.99515 1.75,-1.75 0.79303,-0.62194 1.19839,-0.92467 1.25,-0.87305 z"
id="path4882"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 372.08008,287.63281 c 0.0909,0.0138 0.19865,0.16765 0.31836,0.4668 0.28891,0.72187 0.25221,1.58568 -0.0801,1.91797 -0.33229,0.33229 0.55667,-0.41912 0.60007,-1.47328 0.03,-0.7281 -0.98993,-0.93444 -0.83835,-0.91149 z"
id="path4880"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 364.90625,304.35742 c 0.93004,-0.0387 1.96867,0.37969 2.30859,0.92969 0.71066,1.14988 1.69418,0.0244 -0.98173,-1.12546 -1.63041,-0.70061 -2.70535,0.25307 -1.32686,0.19577 z"
id="path4878"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 393.21484,318.28711 c 0.88992,0 1.33992,-1.55 1,-1 -0.33992,0.55 -0.78992,1 -1,1 -0.21008,0 -0.66008,-0.45 -1,-1 -0.33992,-0.55 0.11008,1 1,1 z"
id="path4874"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 326.47203,317.96436 c 0.3474,0.0143 0.16206,-0.64301 0.32821,-0.47687 0.33229,0.33229 0.38478,-0.23511 -0.66938,-0.27851 -1.16495,-0.048 -1.24047,0.83922 -0.44274,0.52 0.36094,-0.14446 0.43652,0.22107 0.78391,0.23538 z"
id="path4872"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 333.63281,316.41016 c 0.3474,0.0143 0.6444,0.10729 0.81055,0.27343 0.33229,0.33229 -0.63349,-0.87823 -1.68765,-0.92163 -1.16495,-0.048 -1.0261,1.16078 -0.22837,0.84156 0.36094,-0.14446 0.75808,-0.20767 1.10547,-0.19336 z"
id="path4870"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 389.71484,319.41797 c 0.45313,0 0.90625,0.0683 1.25,0.20703 0.6875,0.27741 0.17859,-0.94311 -1.19641,-0.94311 -1.375,0 -1.99109,1.22052 -1.30359,0.94311 0.34375,-0.13871 0.79688,-0.20703 1.25,-0.20703 z"
id="path4868"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 398.08008,320.63281 c 0.0909,0.0138 0.19865,0.16765 0.31836,0.4668 0.28891,0.72187 0.25221,1.58568 -0.0801,1.91797 -0.33229,0.33229 0.50307,0.01 0.54647,-1.04453 0.03,-0.7281 -0.93633,-1.36319 -0.78475,-1.34024 z"
id="path4866"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 324.08008,322.63281 c 0.0909,0.0138 0.19865,0.16765 0.31836,0.4668 0.28891,0.72187 0.25221,1.58568 -0.0801,1.91797 -0.33229,0.33229 0.50307,0.0632 0.54647,-0.99094 0.03,-0.7281 -0.93633,-1.41678 -0.78475,-1.39383 z"
id="path4864"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 497.18009,462.19675 c 0.35465,0.0282 0.32777,-0.78547 0.7222,-0.36079 1.01879,1.09691 1.08753,0.50109 0.0268,-0.10049 -0.753,-0.42705 -2.62764,-0.0726 -3.5268,1.16689 -2.13838,1.7706 -2.18914,2.37012 0,0 1.16709,-1.26357 2.18672,-0.75257 2.7778,-0.70561 z"
id="path4856"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 672.08005,461.63283 c 0.0909,0.0138 0.19865,0.16765 0.31836,0.4668 0.28891,0.72187 0.25221,1.58568 -0.0801,1.91797 -0.33229,0.33229 0.71968,0.007 0.76308,-1.04723 0.03,-0.7281 -1.15294,-1.36049 -1.00136,-1.33754 z"
id="path4854"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 662.71481,465.41799 c 0.45313,0 0.90625,0.0683 1.25,0.20703 0.6875,0.27741 0.125,-0.20703 -1.25,-0.20703 -1.375,0 -1.9375,0.48444 -1.25,0.20703 0.34375,-0.1387 0.79688,-0.20703 1.25,-0.20703 z"
id="path4852"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 656.32224,467.50588 c 0.21743,-4.8e-4 0.42313,0.0326 0.60937,0.10742 0.82668,0.33205 0.48568,-0.15822 -0.60937,-0.10742 -0.93516,0.0434 -3.06574,0.77293 -3.62634,1.73543 -0.56061,0.9625 0.0669,2.03903 0.0502,1.41887 -0.0389,-1.44391 2.05411,-3.15095 3.57618,-3.1543 z"
id="path4850"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 545.21481,467.78713 2.25,1.90625 c 1.2375,1.04774 1.34049,0.0138 1.34049,0.20361 0,0.80025 -0.45978,-0.13556 -2.25,-2.25 z"
id="path4848"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 468.30466,476.70705 c 0.95472,0.46501 1.19901,1.66167 1.19726,2.7168 0.72588,-0.7321 0.0493,-2.2165 -1.19726,-2.7168 z"
id="path4846"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 594.71481,528.28713 c 0.0516,0.0516 -0.62807,0.08 -1.25,0.87305 -1.30637,1.66575 1.50906,-0.55339 1.50906,-1.37643 0,-0.20765 -2.47156,2.13128 -1.50906,1.37643 0.79303,-0.62194 1.19839,-0.92467 1.25,-0.87305 z"
id="path4844"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 819.29489,589.2871 c -2.01075,0 -2.39944,0.6636 -3.08203,5.25 -0.42975,2.8875 -0.7112,7.19529 -0.625,9.57227 0.20439,5.63575 -0.34741,6.33319 -3.64062,4.61523 -4.06275,-2.1194 -5.92901,-1.76666 -8.40625,1.58398 -1.55384,2.10168 -3.38482,3.20369 -6.01954,3.625 -2.08275,0.33305 -4.88792,1.62716 -6.23437,2.875 -1.34645,1.24785 -2.73157,1.98524 -3.07813,1.63868 -0.94935,-0.94935 -4.44725,4.04489 -4.47265,6.38671 -0.0122,1.1258 -1.35181,3.1508 -2.97852,4.5 -3.44597,2.8581 -3.88747,4.95313 -1.04297,4.95313 1.1,0 2,0.6388 2,1.41797 0,0.77916 0.5625,1.62362 1.25,1.8789 0.70282,0.26096 0.0462,0.94324 -1.5,1.5586 -2.97647,1.18458 -3.05112,1.39085 -2.14062,5.94336 0.41878,2.09389 1.49434,3.41514 3.42969,4.21679 3.28484,1.36063 4.57702,3.81015 2.44336,4.62891 -0.81573,0.31303 -1.48243,1.19673 -1.48243,1.96289 0,0.76615 -0.70487,1.39258 -1.5664,1.39258 -1.11887,0 -1.47602,0.78573 -1.25,2.75 0.29523,2.56589 0.60752,2.73628 4.66211,2.55078 4.2006,-0.19218 4.32459,-0.11281 3.70117,2.37109 -0.35471,1.41328 -1.29785,3.22364 -2.0957,4.02149 -2.63614,2.63614 -1.72248,4.89698 2.54882,6.30664 4.35776,1.43819 5.13989,2.88984 2,3.71094 -2.76985,0.72433 -2.63867,5.29809 0.22266,7.74804 1.22281,1.047 4.26031,2.66474 6.75,3.59375 2.48968,0.92902 4.93969,2.57231 5.44336,3.65235 0.50366,1.08004 1.85366,2.43023 3,3 2.84504,1.41407 4.02806,1.02026 4.39453,-1.46094 0.17052,-1.15448 0.95802,-2.63569 1.75,-3.29297 0.79199,-0.65729 1.43945,-2.21798 1.43945,-3.4668 0,-1.24881 0.675,-2.52911 1.5,-2.8457 2.07852,-0.7976 1.88762,-3.62377 -0.25,-3.70117 -1.33333,-0.0483 -1.20972,-0.28146 0.51563,-0.97461 3.14234,-1.26242 4.23437,-4.81883 4.23437,-13.78125 0,-7.22093 0.21711,-7.99041 3.57813,-12.68359 l 3.57812,-4.99805 -0.57226,-15.37109 c -0.49946,-13.4108 -0.84891,-15.81914 -2.73633,-18.87305 -1.97607,-3.19734 -2.05703,-3.91504 -0.9375,-8.2832 0.90689,-3.53849 0.95476,-6.25336 0.18164,-10.43555 -1.28702,-6.96217 -1.6315,-7.53711 -4.51172,-7.53711 z"
id="path4842"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="ile_de_france"
onmouseover="get_region_infos(this)"
inkscape:label="ile_de_france"
style="display:inline">
<path
style="fill:#f2f2f2"
d="m 438.87768,157.44502 c 1.05105,0.001 1.70746,0.24682 2.29493,0.73438 0.81692,0.67799 4.03776,1.37375 7.1582,1.54687 3.93798,0.21847 6.59897,0.99945 8.69726,2.55078 1.67906,1.24139 4.47676,2.23438 6.29297,2.23438 1.79849,0 3.26953,0.31104 3.26953,0.69141 0,1.08776 4.96001,2.05247 6.29688,1.22461 0.6622,-0.41007 4.06953,-0.82177 7.57226,-0.91407 4.13343,-0.10897 6.67795,-0.64785 7.25,-1.53515 0.73495,-1.13996 1.04262,-1.11796 1.85743,0.13281 0.53746,0.825 0.77251,2.175 0.52148,3 -0.45682,1.50132 4.29487,7.07577 10.44141,12.25 1.79672,1.5125 2.77061,2.75 2.16406,2.75 -1.55488,0 -1.37907,6.73239 0.20117,7.70117 0.71743,0.43983 1.2799,2.37383 1.25,4.29883 -0.0433,2.78634 0.31557,3.47063 1.75977,3.35156 1.75214,-0.14447 1.75214,-0.0779 0,1.98242 -0.99775,1.17328 -2.35768,2.5914 -3.02149,3.15039 -0.6638,0.55899 -1.57372,3.26563 -2.02148,6.01563 l -0.8125,5 -7.33594,0.65625 c -4.03466,0.36122 -7.7993,1.12157 -8.36523,1.6875 -0.56593,0.56593 -1.16224,2.88788 -1.32422,5.16211 -0.4193,5.88677 -4.1351,9.22517 -9.3418,8.39258 -2.94579,-0.47105 -3.93659,-0.24622 -4.41406,0.99804 -0.3386,0.88237 -0.96672,1.53553 -1.39649,1.45313 -0.42976,-0.0824 -1.99251,-0.33455 -3.47265,-0.56055 -2.18786,-0.33406 -2.74893,-1.00682 -3,-3.59961 -0.20996,-2.16817 -1.02896,-3.50469 -2.5586,-4.17578 -1.2375,-0.54292 -2.25,-1.75429 -2.25,-2.6914 0,-2.2186 -1.0508,-2.79814 -5.80468,-3.20118 -2.15582,-0.18278 -4.45848,-0.66591 -5.11914,-1.07422 -0.66065,-0.4083 -1.96084,-0.0587 -2.88868,0.77735 -0.92785,0.83603 -2.925,1.82955 -4.4375,2.20703 -2.53438,0.6325 -2.75,0.45357 -2.75,-2.26953 0,-4.27114 -2.81003,-9.42001 -4.94336,-9.0586 -2.44557,0.41431 -5.05664,-2.0159 -5.05664,-4.70703 0,-1.30712 -1.70323,-3.96496 -4.04101,-6.30273 -3.66375,-3.66376 -4.08435,-4.61265 -4.49219,-10.14844 -0.24745,-3.35887 -1.35443,-7.97752 -2.45898,-10.26367 -1.10455,-2.28615 -2.00782,-4.88284 -2.00782,-5.76953 0,-0.88669 -0.52255,-2.13583 -1.16211,-2.77539 -1.12761,-1.12761 -0.59884,-1.46222 5.8125,-3.69532 0.63214,-0.22017 1.66216,-1.95591 2.28907,-3.85546 1.13743,-3.44645 1.14695,-3.45087 5.17773,-2.42774 2.90841,0.73823 5.57149,0.68213 9.50977,-0.19922 2.16333,-0.48396 3.60911,-0.72596 4.66015,-0.72461 z"
id="path4910"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="hauts_de_france"
onmouseover="get_region_infos(this)"
inkscape:label="hauts_de_france">
<path
style="fill:#f2f2f2"
d="m 458.77851,16.250958 c 1.12036,-0.008 1.64622,0.729906 2.53711,2.861328 0.75834,1.81432 1.27675,5.39382 1.15234,7.955078 -0.26483,5.451858 1.23879,8.84375 3.92188,8.84375 1.07452,0 2.69762,1.347784 3.71484,3.083985 1.57194,2.682981 6.73828,5.916011 9.45313,5.916011 0.49645,0 1.32518,-1.10729 1.83984,-2.46093 1.24564,-3.276281 6.95967,-5.016181 8.73047,-2.658206 0.66875,0.890487 1.61676,2.095106 2.10742,2.675776 0.84819,1.00382 1.56769,3.85036 2.83985,11.2461 0.63813,3.70978 3.99282,6.45688 7.53125,6.16601 7.38718,-0.60724 9.54319,-0.0135 10.77929,2.97071 0.6697,1.6168 0.90634,3.44415 0.52539,4.06054 -0.38095,0.6164 -0.14431,2.44376 0.52539,4.06055 1.31298,3.16981 4.62355,4.01869 5.61329,1.43945 0.67805,-1.76696 3.48718,-1.97374 5.08593,-0.375 0.81284,0.81284 1.96876,0.82992 4.17578,0.0606 2.83257,-0.98743 3.26257,-0.81099 5.95313,2.45313 2.64568,3.20967 2.81724,3.87879 1.9707,7.64648 -0.82521,3.67275 -0.68566,4.31087 1.26367,5.78125 l 2.19141,1.6543 -2.18945,2.19141 c -2.1779,2.1779 -2.12269,5.74852 0.11133,7.18749 2.24668,1.44713 3.77967,6.06838 2.68945,8.10547 -0.59609,1.11385 -0.89419,3.31916 -0.66211,4.90039 0.30512,2.07893 -0.22087,3.47894 -1.90234,5.05859 -1.27892,1.20149 -2.32618,2.75054 -2.32618,3.44141 0,0.69088 -1.0125,1.40042 -2.25,1.57617 -1.734,0.24627 -2.19157,0.89169 -1.99609,2.81836 0.3894,3.83805 0.17894,15.40114 -0.28906,15.86914 -0.22861,0.22861 -1.11757,-0.16567 -1.97461,-0.87695 -1.27547,-1.05852 -2.00504,-1.05287 -4.02344,0.0273 -1.35625,0.72585 -2.4668,1.69333 -2.4668,2.15039 0,0.45706 -1.0125,0.83199 -2.25,0.83399 -1.2375,0.002 -3.67395,0.87255 -5.41406,1.93359 -2.94852,1.79788 -3.12677,2.2228 -2.61523,6.24609 0.30189,2.3744 0.94822,4.825 1.43554,5.44532 0.577,0.73448 0.23523,1.29732 -0.98047,1.61523 -1.36219,0.35622 -2.04336,1.78129 -2.52148,5.26953 -0.36037,2.62921 -0.2347,5.28848 0.28125,5.91016 0.6224,0.74995 -0.13344,2.53917 -2.24805,5.3164 -3.53344,4.64063 -5.23486,5.26127 -6.1875,2.25977 -0.34913,-1.1 -1.06615,-2 -1.59375,-2 -1.82417,0 -7.90625,-6.32845 -7.90625,-8.22656 0,-3.75756 -1.91256,-5.77344 -5.47656,-5.77344 -1.87319,0 -3.68834,0.45763 -4.0332,1.01562 -0.8873,1.43568 -19.54538,0.26322 -21.13672,-1.32812 -0.37787,-0.37787 -1.33404,-0.6875 -2.125,-0.6875 -0.79096,0 -3.69512,-1.13328 -6.45508,-2.51953 -3.23236,-1.62351 -5.42046,-2.19208 -6.14648,-1.5957 -0.70736,0.58104 -2.76677,0.37009 -5.53125,-0.56836 -3.34868,-1.13677 -4.97833,-1.23484 -6.79688,-0.40625 -2.82983,1.28935 -9.24182,1.41353 -11.13281,0.21484 -1.07393,-0.68077 -1.02522,-0.96573 0.25,-1.45508 2.00976,-0.77121 2.00467,-3.36208 -0.0195,-9.32422 -1.48756,-4.38143 -1.48033,-4.93161 0.0957,-7.59961 1.57508,-2.66646 1.57899,-3.00964 0.0606,-4.6875 -2.22251,-2.45584 -3.14422,-8.64067 -1.57031,-10.53711 0.6827,-0.82265 0.95086,-2.25219 0.5957,-3.17773 -0.35758,-0.93181 -0.0783,-2.03409 0.625,-2.46875 1.0218,-0.63152 1.00454,-1.42916 -0.082,-4.08008 -0.74281,-1.81224 -1.56496,-4.4692 -1.82813,-5.9043 -0.28679,-1.56387 -2.81835,-4.66916 -6.31836,-7.74999 -6.81898,-6.00231 -7.58879,-7.73624 -5.57226,-12.5625 1.37465,-3.28998 1.69585,-3.48988 4.10937,-2.57226 4.17716,1.58815 5.48828,1.22755 5.48828,-1.50586 0,-1.375 -0.43236,-2.5 -0.96093,-2.5 -1.73188,0 -5.03907,-4.3271 -5.03907,-6.59375 0,-1.72549 0.44398,-2.10222 2,-1.69532 1.5416,0.40314 2,0.0307 2,-1.625 0,-1.1814 -0.675,-2.40802 -1.5,-2.7246 -0.92551,-0.35516 -1.5,-1.87524 -1.5,-3.96875 0,-2.72635 0.39296,-3.39258 2,-3.39258 2.56891,0 2.52828,-1.36462 -0.14648,-4.98242 -1.88502,-2.54963 -2.04911,-3.60954 -1.35547,-8.71094 0.43427,-3.19394 0.81204,-7.584706 0.83984,-9.757814 0.041,-3.214429 0.69426,-4.51957 3.49805,-7 3.71593,-3.287376 11.53192,-6.427424 17.16406,-6.896485 1.925,-0.16032 5.3,-1.084781 7.5,-2.052734 2.2,-0.967954 5.35,-1.894453 7,-2.058594 1.65,-0.164141 4.12992,-0.600096 5.51172,-0.96875 0.5411,-0.144362 0.98202,-0.229751 1.35547,-0.232422 z"
id="path4920"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="normandie"
onmouseover="get_region_infos(this)"
inkscape:label="normandie">
<path
style="fill:#f2f2f2"
d="m 405.44442,92.411229 c 0.48334,0.003 3.8039,2.7932 7.3789,6.20117 7.2843,6.943961 9.48499,11.597921 7.4668,15.792971 -1.4318,2.97617 -1.67407,13.7541 -0.32812,14.58594 0.51901,0.32078 0.68107,1.40663 0.36132,2.41406 -0.31975,1.00743 -0.12975,2.11025 0.42188,2.45117 0.66128,0.40869 0.62218,1.4577 -0.11524,3.07617 -0.89278,1.95944 -0.75671,3.25841 0.67774,6.43946 1.76254,3.90861 1.75825,4.01946 -0.25781,5.75976 -1.13055,0.9759 -2.78263,4.36094 -3.66993,7.52344 -0.8873,3.1625 -2.16185,5.80183 -2.83398,5.86523 -1.59562,0.15061 -2.76369,0.43934 -5.33203,1.32032 -1.899,0.6515 -2.08805,1.40507 -1.90039,7.55664 0.19074,6.25265 0.009,6.9393 -2.14063,8.08984 -1.49338,0.79924 -2.34961,2.15795 -2.34961,3.73047 0,2.42615 -0.1148,2.46082 -6,1.8457 -3.3,-0.34492 -6,-0.29072 -6,0.1211 0,0.87469 -7.39792,4.2207 -9.33203,4.2207 -0.72535,0 -2.30254,1.04738 -3.5039,2.32617 -2.80117,2.9817 -2.05592,7.54892 1.79101,10.97655 2.58639,2.30449 3.03852,4.60844 2.14844,10.93946 -0.0574,0.40817 -1.79102,1.54334 -3.85352,2.52343 -3.91676,1.86123 -4.57667,3.92489 -2.87304,8.98438 1.05226,3.125 -0.79131,2.83313 -2.24414,-0.35547 -1.04547,-2.29455 -1.59533,-2.52955 -4.60547,-1.96484 -2.80178,0.52561 -3.61525,0.27323 -4.50781,-1.39453 -0.59906,-1.11935 -1.76082,-2.03516 -2.58008,-2.03516 -1.66996,0 -3.43946,-3.87978 -3.43946,-7.54102 0,-5.95323 -9.54814,-6.81867 -15.23828,-1.38086 -3.10281,2.9652 -5.76172,2.91193 -5.76172,-0.11523 0,-1.12965 -0.85611,-1.94461 -2.25,-2.14258 -1.63908,-0.23278 -2.17149,-0.89303 -1.96093,-2.42969 0.1857,-1.35522 -0.60621,-2.69598 -2.21485,-3.75 -3.2782,-2.14796 -3.99705,-2.07899 -6.95898,0.66602 -1.89751,1.75856 -3.33958,2.20701 -6.06641,1.88867 -2.05146,-0.2395 -4.23957,0.13369 -5.13281,0.875 -2.2044,1.8295 -11.3343,2.09787 -14.94141,0.43946 -1.66406,-0.76509 -4.81406,-1.37427 -7,-1.35547 -2.18594,0.0189 -5.24075,-0.45893 -6.78906,-1.06055 -3.74073,-1.45352 -7.39855,-1.3853 -8.38477,0.15625 -0.43982,0.6875 -1.58518,1.86658 -2.54492,2.61914 -1.49036,1.16862 -2.11055,1.12838 -4.25,-0.27344 -1.55201,-1.01692 -2.50586,-2.58011 -2.50586,-4.10742 0,-2.11075 0.58671,-2.55858 4.08008,-3.11719 3.53815,-0.56577 4.0047,-0.93239 3.51367,-2.76172 -0.31141,-1.16018 -0.57207,-2.70824 -0.58007,-3.43945 -0.01,-0.94048 -0.84821,-1.1446 -2.86719,-0.70116 -2.31431,0.50831 -3.16032,0.16005 -4.47071,-1.83984 -2.36847,-3.61476 -2.1113,-19.12259 0.3418,-20.63868 1.11867,-0.69138 1.12503,-1.11261 0.0449,-2.41406 -0.71948,-0.86692 -1.87426,-1.57617 -2.56836,-1.57617 -0.8578,0 -1.2388,-1.60146 -1.1875,-5 0.0415,-2.75 0.43981,-5 0.88477,-5 1.85726,0 0.62184,-3.11995 -1.56445,-3.95117 -1.31368,-0.49946 -2.66427,-2.06316 -3.02539,-3.50196 -0.35881,-1.42964 -2.16285,-4.04929 -4.00782,-5.82226 -3.07119,-2.95135 -4.81174,-7.46364 -4.52539,-11.72461 0.0557,-0.825 0.0834,-3.41619 0.0625,-5.75781 -0.0369,-4.1256 0.0458,-4.23715 2.66602,-3.61133 1.48717,0.3552 3.52367,1.06868 4.52734,1.58398 2.34166,1.20225 9.20579,0.0559 10.74024,-1.79297 1.72743,-2.08144 6.66572,-1.79327 7.87109,0.45899 0.76887,1.43664 0.54119,2.41587 -0.96484,4.15234 -2.66153,3.06876 -2.5265,3.934 1.52929,9.83008 1.925,2.79846 3.5,5.96872 3.5,7.04492 0,2.66701 3.65919,3.70991 5.90039,1.68164 2.194,-1.98554 5.35514,-2.02625 9.04688,-0.11718 1.58502,0.81965 7.21719,1.75335 12.70117,2.10546 6.61525,0.42475 11.09432,1.25516 13.63281,2.52735 2.07944,1.04214 5.45444,1.88515 7.5,1.87304 4.44571,-0.0262 10.95792,-2.84064 13.69922,-5.91992 2.32752,-2.6145 7.74569,-5.05859 11.21485,-5.05859 3.02794,0 2.84903,-3.29593 -0.20704,-3.81445 -6.6212,-1.12339 -9.48828,-2.36219 -9.48828,-4.09961 0,-2.45126 4.74447,-13.08594 5.83789,-13.08594 0.47429,0 4.913,-2.44226 9.86524,-5.42773 5.25801,-3.16982 11.0412,-5.82319 13.90039,-6.37696 14.88609,-2.88311 21.47272,-5.46228 27.23047,-10.664061 2.1497,-1.94213 4.30377,-3.52819 4.78711,-3.52539 z"
id="path4916"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="grand_est"
onmouseover="get_region_infos(this)"
inkscape:label="grand_est">
<path
style="fill:#f2f2f2"
d="m 571.90063,85.799775 c 0.30232,-0.024 0.30488,0.29116 -0.14648,1.02148 -0.33584,0.5434 -1.28137,3.56394 -2.10157,6.71289 -1.41879,5.4471 -1.39721,5.79977 0.46289,7.261715 1.60369,1.26046 1.88201,2.4619 1.54493,6.67969 -0.38547,4.82324 -0.25414,5.18216 2.13281,5.78125 1.39957,0.35127 2.92707,0.40219 3.39453,0.11328 1.30329,-0.80547 5.79237,1.85449 8.11914,4.8125 1.38695,1.76322 3.04152,2.65039 4.94531,2.65039 2.37771,0 2.91477,0.46453 3.17774,2.75 0.24998,2.17256 0.83526,2.75 2.78711,2.75 2.38697,0 2.94773,0.87722 4.6289,7.23633 0.3691,1.39616 9.65132,0.58837 10.23437,-0.89063 0.60004,-1.52208 7.90734,-0.9614 8.52734,0.6543 0.31658,0.825 1.60723,1.5 2.86719,1.5 1.25996,0 2.85687,0.90762 3.54883,2.01562 1.57728,2.52563 7.12569,2.3886 9.02929,-0.22265 1.61192,-2.21111 4.49967,-2.29342 7.66602,-0.21875 1.32087,0.86547 3.21756,1.45446 4.21484,1.30859 3.76845,-0.5512 6.22563,1.13888 6.90235,4.7461 0.36269,1.93331 1.73489,4.79198 3.04883,6.35351 1.31393,1.56153 3.05022,4.42282 3.85937,6.35938 1.68467,4.032 1.86313,4.17913 6.24609,5.11914 2.86165,0.61374 3.36104,0.39462 4.21875,-1.86133 0.81273,-2.13764 1.34664,-2.42079 3.25391,-1.7168 1.43235,0.5287 2.47303,1.91854 2.79297,3.73047 0.34075,1.92978 1.08692,2.86039 2.25,2.80469 0.9571,-0.0458 4.35644,-0.1583 7.55273,-0.25 4.25165,-0.12194 6.38207,-0.70154 7.94141,-2.1543 1.93318,-1.80103 2.27706,-1.84013 3.69531,-0.42187 0.86003,0.86003 2.02605,2.4292 2.5918,3.48632 0.56575,1.05711 1.72148,1.92188 2.56641,1.92188 0.84494,0 2.17079,0.63564 2.94726,1.41211 0.94155,0.94155 3.6979,1.41211 8.27735,1.41211 5.51384,0 7.88179,0.53082 12.01757,2.69336 5.06414,2.64797 6.05506,3.80547 4.22657,4.93554 -0.50769,0.31377 -1.21233,1.88984 -1.56641,3.50196 -0.3545,1.61403 -2.18568,4.1607 -4.07617,5.66797 -1.88823,1.50549 -3.4336,3.16823 -3.4336,3.69531 0,0.52709 -1.8,2.91015 -4,5.29687 -3.06137,3.32119 -4,5.15406 -4,7.80469 0,1.90483 -0.40777,3.71537 -0.90625,4.02344 -0.49847,0.30807 -1.20015,2.9217 -1.56054,5.80859 -0.66153,5.29922 -1.15484,6.70418 -5.90821,16.84766 -2.6757,5.70984 -3.44453,12.68047 -1.60156,14.52344 0.69727,0.69727 0.57699,2.11521 -0.37695,4.45117 -0.76974,1.88488 -1.93615,7.18152 -2.5918,11.77148 -1.06274,7.43986 -1.01073,8.54447 0.47266,10.1836 1.56424,1.72847 1.49316,2.052 -1.18164,5.40429 -1.56491,1.96127 -3.13017,3.56639 -3.47852,3.56641 -0.34835,2e-5 -0.84522,0.80917 -1.10351,1.79687 -0.34378,1.31461 -1.60357,1.86228 -4.69922,2.04493 -3.85285,0.22734 -4.16958,0.0666 -3.57813,-1.79688 0.42908,-1.3519 0.20278,-2.04864 -0.66797,-2.05664 -0.72457,-0.006 -2.17753,-1.80631 -3.22851,-4 -1.05099,-2.19369 -2.40099,-3.98722 -3,-3.98633 -0.62602,9.3e-4 -1.08985,-1.93175 -1.08985,-4.54492 0,-4.26973 -0.24329,-4.68072 -4,-6.75195 -2.2,-1.21295 -4.45,-2.69927 -5,-3.30469 -0.55,-0.60543 -2.8,-2.38915 -5,-3.96289 -2.2,-1.57373 -4.80513,-3.66511 -5.78906,-4.64844 -2.19121,-2.18991 -3.12189,-2.23356 -5.11523,-0.24023 -1.39676,1.39677 -1.83622,1.33354 -4.51172,-0.64453 -2.40802,-1.78033 -3.79314,-2.07769 -7.38086,-1.58594 -4.00379,0.54878 -4.52244,0.37381 -5.53906,-1.85742 -1.30344,-2.86076 -6.11723,-3.42723 -8.16407,-0.96094 -0.68469,0.825 -2.20289,1.51254 -3.37304,1.52734 -1.38599,0.0175 -2.98142,1.41175 -4.57813,4 -1.34806,2.1852 -2.92306,3.98997 -3.5,4.00977 -0.57693,0.0198 -2.35141,1.10061 -3.94336,2.40234 -2.35938,1.92926 -2.78631,2.90047 -2.31445,5.25977 0.66385,3.31928 -0.52105,5.89587 -2.22656,4.84179 -2.04832,-1.26593 -10.92813,1.45169 -11.59374,3.54883 -0.85856,2.70509 -4.14289,2.36654 -7.00586,-0.72265 -1.96549,-2.1208 -2.72099,-2.39977 -3.88281,-1.43555 -1.16726,0.96873 -2.02259,0.5897 -4.48438,-1.98633 -2.48213,-2.59731 -2.85077,-3.53846 -2.00586,-5.11719 0.81151,-1.51631 0.47205,-2.89583 -1.57031,-6.38085 -1.43324,-2.44565 -2.93943,-4.44727 -3.34766,-4.44727 -0.40823,0 -1.50131,-1.2858 -2.42969,-2.85742 -1.37396,-2.32594 -2.83969,-3.10136 -7.875,-4.16992 -6.15039,-1.3052 -6.19777,-1.29795 -8.27734,1.28125 -1.6903,2.0964 -3.05116,2.63235 -7.0918,2.79492 -2.75,0.11065 -5.75235,-0.11386 -6.67187,-0.5 -0.91952,-0.38614 -2.71401,-0.14485 -3.98828,0.53711 -1.27426,0.68197 -4.23442,1.406 -6.57813,1.60742 -3.59543,0.30899 -4.26172,0.0785 -4.26172,-1.46485 0,-1.00602 -0.5571,-2.38522 -1.23828,-3.0664 -0.68119,-0.68119 -2.39882,-3.58486 -3.8164,-6.45117 -2.05044,-4.14593 -3.17452,-5.3134 -5.4961,-5.7168 -2.43435,-0.423 -3.01264,-1.1 -3.49609,-4.07422 -0.63974,-3.93574 -5.43941,-10.91992 -7.50391,-10.91992 -2.9357,0 -2.81214,-8.26339 0.14063,-9.39649 0.77536,-0.29752 1.41015,-1.08073 1.41015,-1.74218 0,-0.66146 0.71528,-1.99454 1.58985,-2.96094 1.83084,-2.02305 1.07146,-5.90039 -1.15625,-5.90039 -0.90238,0 -1.4336,-1.03514 -1.4336,-2.79883 0,-1.54 -0.46966,-3.27044 -1.04296,-3.84375 -0.72318,-0.72318 -0.57007,-1.43418 0.5,-2.32226 0.84831,-0.70403 1.54296,-2.12556 1.54296,-3.15821 0,-1.03266 0.7875,-2.67951 1.75,-3.66015 5.74986,-5.85826 8.50326,-11.32362 6.36914,-12.64258 -0.48433,-0.29933 -1.09691,-1.67547 -1.36132,-3.0586 -0.41941,-2.19405 -0.12962,-2.51562 2.27343,-2.51562 3.25328,0 4.8677,-2.86909 2.5625,-4.55469 -1.39319,-1.01873 -3.59375,-5.51916 -3.59375,-7.34961 0,-1.15194 4.7383,-3.0957 7.54688,-3.0957 1.58632,0 2.45312,-0.56818 2.45312,-1.60742 0,-1.1532 0.49417,-1.39088 1.75,-0.84571 0.9625,0.41782 2.85038,0.80197 4.19532,0.85547 2.96513,0.11798 3.86949,-3.05525 3.67968,-12.91015 -0.0901,-4.67857 0.23307,-6.49259 1.15625,-6.49219 0.70477,3e-4 1.5694,-0.7875 1.91993,-1.75 0.35053,-0.9625 1.81156,-3.11603 3.24804,-4.78516 2.33732,-2.71589 2.60843,-3.84618 2.57813,-10.76172 -0.0279,-6.3685 0.22209,-7.629095 1.42383,-7.16796 4.41022,1.69237 9.71582,1.50697 13.50976,-0.470705 2.17879,-1.13575 4.54129,-2.06445 5.25,-2.06445 0.80231,0 1.28906,-1.30012 1.28906,-3.44727 0,-2.23973 0.82942,-4.34282 2.36524,-6 1.44955,-1.5641 2.7852,-2.546 3.28906,-2.58593 z"
id="path4918"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="bretagne"
onmouseover="get_region_infos(this)"
inkscape:label="bretagne">
<path
style="fill:#f2f2f2"
d="m 185.98786,181.9565 c 1.25934,0 1.23667,0.65506 -0.11133,3.17383 -1.44026,2.69115 0.30728,4.72246 2.49804,2.90429 0.8793,-0.72975 2.05376,-0.89546 2.86524,-0.40625 2.55214,1.53857 8.72851,9.0585 8.72851,10.62696 0,0.85592 1.125,2.44185 2.5,3.52344 1.375,1.08157 2.5,2.39486 2.5,2.91796 0,1.04845 3.26303,4.25977 4.32813,4.25977 0.36919,0 0.67187,-0.42145 0.67187,-0.9375 0,-2.9561 13.03909,-12.44722 13.83204,-10.06836 0.18457,0.5537 1.37421,1.00586 2.64453,1.00586 1.27033,0 2.56817,0.675 2.88476,1.5 0.3226,0.8407 1.81048,1.5 3.38477,1.5 3.28986,0 7.2539,2.49004 7.2539,4.55664 0,1.95537 3.63308,1.84065 4.39258,-0.13867 1.0964,-2.85716 0.63634,-7.14912 -0.9043,-8.42774 -1.1503,-0.95467 -1.24203,-1.58303 -0.3789,-2.62304 1.65997,-2.00013 2.59384,-1.68391 3.29687,1.11718 0.7616,3.03444 3.94513,3.98969 10.65235,3.19532 l 4.89062,-0.58008 1.0625,3.94726 c 1.21806,4.5235 4.4263,7.95622 7.42774,7.94922 1.13379,-0.003 3.48699,-1.34237 5.23047,-2.97656 2.88045,-2.6999 3.45931,-2.87116 6.32812,-1.87109 2.52081,0.87876 3.04881,1.52962 2.625,3.22656 -0.29193,1.16891 -0.1489,3.81543 0.31836,5.88086 0.48951,2.16368 0.47126,3.98958 -0.0449,4.30859 -1.32537,0.81913 -1.06133,7.12153 0.58398,13.93555 1.91679,7.93835 1.88645,8.30916 -0.69726,8.68164 -2.35044,0.33885 -3.68314,2.43655 -6.34961,9.99609 -1.70048,4.82092 -3.06291,5.28447 -6.25586,2.12891 -1.94378,-1.92102 -5.48926,-1.59114 -7.44531,0.69336 -0.94185,1.1 -2.35417,2 -3.13868,2 -0.78451,0 -2.27733,1.16734 -3.3164,2.59375 -1.46758,2.01466 -2.77007,2.60292 -5.83399,2.63672 -4.82141,0.0532 -13.31705,2.52973 -15.69336,4.57422 -1.00616,0.86566 -1.75,2.90173 -1.75,4.79101 0,3.87691 -1.11055,4.7626 -5.75781,4.58789 -2.64978,-0.0996 -3.56188,0.32526 -3.95898,1.84375 -0.5861,2.24129 -3.28321,2.70963 -3.28321,0.57032 0,-2.1347 -5.02667,-3.42854 -10.24414,-2.63672 -2.70698,0.41082 -4.43564,0.33019 -4.11328,-0.19141 0.30587,-0.4949 0.25778,-2.48363 -0.10547,-4.41992 l -0.66015,-3.51953 -4.84375,0.66601 c -4.00266,0.55051 -5.01198,0.36364 -5.81446,-1.07031 -1.32781,-2.37267 -4.5753,-1.12423 -3.75976,1.44531 0.8525,2.68598 -2.85588,3.43698 -5.67969,1.15039 -1.86708,-1.51187 -2.00958,-2.03856 -0.91016,-3.36328 1.86799,-2.25078 0.38356,-3.95796 -2.87304,-3.30664 -3.52142,0.70429 -4.13226,0.0424 -2.75586,-2.97851 1.43907,-3.15841 -0.32,-5.38117 -2.69727,-3.40821 -1.27798,1.06063 -1.54297,1.01223 -1.54297,-0.2832 0,-2.09846 -1.91349,-3.16854 -3.25976,-1.82227 -0.78099,0.78099 -0.74334,1.83841 0.13476,3.76563 0.89759,1.96999 0.92545,2.97009 0.10547,3.77734 -1.70665,1.68014 -3.98047,-2.08677 -3.98047,-6.59375 0,-3.21038 -0.33187,-3.80859 -2.11328,-3.80859 -1.77951,0 -2.04456,0.47408 -1.67383,3 0.30046,2.04719 0.0187,3 -0.88671,3 -0.72975,0 -1.32618,-0.9 -1.32618,-2 0,-1.45377 -0.66709,-2 -2.4414,-2 -1.34254,0 -2.71868,-0.45 -3.0586,-1 -1.04512,-1.69104 -2.5,-1.10908 -2.5,1 0,2.652 -2.68332,2.5703 -3.5332,-0.10742 -0.92224,-2.90572 -3.62324,-5.89258 -5.32812,-5.89258 -0.77963,0 -1.96231,0.74335 -2.62696,1.65234 -0.71977,0.98433 -1.71729,1.33821 -2.46679,0.875 -0.99984,-0.61791 -1.00243,-0.93504 -0.0156,-1.54492 1.68585,-1.04191 0.38078,-5.98242 -1.58008,-5.98242 -0.83178,0 -1.79534,0.7875 -2.14258,1.75 -0.34724,0.9625 -1.48166,2.97628 -2.51953,4.47461 -1.03786,1.49833 -1.7508,3.52333 -1.58593,4.5 0.20206,1.19706 -0.43443,1.88029 -1.95118,2.0957 -1.95365,0.27746 -2.25,-0.1272 -2.25,-3.07031 0,-2.38459 -0.98595,-4.55551 -3.32422,-7.32031 -4.63034,-5.47499 -5.15849,-7.31114 -2.4082,-8.35352 1.31169,-0.49714 2.72764,-0.4471 3.4336,0.1211 1.88278,1.51538 5.03604,-0.0145 5.73046,-2.78126 0.93393,-3.72106 -1.4048,-7.57816 -5.43164,-8.95703 -3.28922,-1.1263 -3.34944,-1.22278 -1,-1.60156 1.375,-0.22169 3.625,0.36906 5,1.3125 1.375,0.94344 4.075,1.85432 6,2.02344 2.98043,0.26184 3.54821,-0.0274 3.82032,-1.94336 0.26185,-1.84373 -0.15661,-2.25 -2.31055,-2.25 -1.44571,0 -2.37763,-0.40436 -2.07227,-0.89844 0.68026,-1.10069 -4.76939,-7.10156 -6.44922,-7.10156 -0.66527,0 -0.14804,-0.86873 1.1504,-1.92969 1.79752,-1.46877 2.08426,-2.2103 1.20117,-3.10937 -0.89077,-0.90688 -1.81866,-0.83577 -4,0.30664 -6.19155,3.24264 -14.34371,5.86529 -16.30078,5.24414 -1.33242,-0.42289 -2.0688,-0.18918 -2.125,0.67187 -0.0473,0.72457 -0.49263,-0.0336 -0.99024,-1.68359 -0.68911,-2.28499 -0.54947,-3.26375 0.58594,-4.10938 1.69037,-1.25896 1.99836,-3.39062 0.49023,-3.39062 -0.55,0 -1,-0.62526 -1,-1.39063 0,-1.67792 3.71983,-2.75691 6.76368,-1.96093 1.2121,0.31701 3.38091,0.28069 4.81836,-0.0801 2.18023,-0.54721 2.51041,-1.06211 1.99609,-3.11133 -0.46913,-1.86918 -0.21925,-2.45703 1.04297,-2.45703 0.91234,0 2.25569,-0.7875 2.98633,-1.75 1.25537,-1.65374 1.33122,-1.64676 1.36132,0.11719 0.0246,1.44311 0.54175,1.72983 2.28125,1.26367 1.2375,-0.33164 3.0375,-0.60919 4,-0.61719 0.9625,-0.008 1.75,-0.6545 1.75,-1.4375 0,-1.04633 1.19265,-1.37762 4.5,-1.25 3.96757,0.1531 4.49998,0.44362 4.5,2.45508 2e-5,2.58291 2.79765,4.1658 3.98047,2.25195 0.62097,-1.00474 0.86498,-0.99883 1.20899,0.0332 0.26581,0.79743 1.12475,1.02645 2.24218,0.59765 1.40049,-0.53742 1.67622,-1.37284 1.21485,-3.67969 -0.53011,-2.65054 -0.3279,-2.98437 1.80664,-2.98437 1.32197,0 3.07444,0.6721 3.89453,1.49219 2.19553,2.19553 7.98952,0.90581 7.32617,-1.63086 -0.26724,-1.02193 -0.0385,-2.13504 0.50781,-2.47266 0.54629,-0.33762 0.78285,-1.41358 0.52735,-2.39062 -0.79072,-3.02372 0.70031,-4.38289 3.13672,-2.86133 1.79648,1.12192 2.55295,1.06038 5.03906,-0.40821 3.66339,-2.16402 3.76893,-2.15817 4.4043,0.27149 0.73519,2.81138 3.37023,2.49169 4.12109,-0.5 0.34511,-1.375 1.06985,-2.5 1.60938,-2.5 z"
id="path4894"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="pays_de_la_loire"
onmouseover="get_region_infos(this)"
inkscape:label="pays_de_la_loire">
<path
style="fill:#f2f2f2"
d="m 327.27568,204.46197 c 0.56591,-0.11754 1.53022,1.16081 1.90235,3.02148 0.33879,1.69395 2.54047,3.18268 3.68796,3.54688 1.08775,0.34524 2.11867,1.60793 2.29101,2.80468 0.52258,3.62872 5.27565,3.27986 9.41556,-0.625 6.20934,-5.85681 10.27148,-5.33496 10.27148,1.31836 0,3.84268 1.96487,7.03516 4.33008,7.03516 0.65342,0 1.7232,0.85747 2.37696,1.9043 0.68673,1.09965 2.90541,2.19307 5.2539,2.58984 2.47122,0.41751 4.46649,1.4346 5.08789,2.5957 0.56218,1.05045 1.87955,1.91016 2.92774,1.91016 2.83659,0 3.40658,1.76711 1.50586,4.66797 -1.34681,2.0555 -1.46569,3.07307 -0.58594,5.0039 1.54107,3.38229 1.37538,6.28687 -0.39649,6.9668 -0.87657,0.33637 -1.5,1.83514 -1.5,3.60547 0,2.3247 -1.04681,3.9693 -4.5,7.07227 -2.475,2.22399 -4.5,4.61116 -4.5,5.30468 0,1.68735 -1.71185,2.64715 -5.96679,3.34375 -2.77151,0.45374 -3.5389,1.0477 -3.5625,2.75391 -0.0165,1.19658 -0.61936,2.14022 -1.10352,2.58203 -0.48748,0.44483 -0.38117,0.66443 0,0 0.67389,-1.17465 -2.11226,-3.30078 -4.32617,-3.30078 -1.49427,0 -3.18827,4.58731 -3.68555,9.98047 -0.22719,2.46393 -1.75054,7.22359 -3.38476,10.57812 -1.63421,3.35454 -2.97071,7.02888 -2.97071,8.16407 0,1.13519 -0.67805,2.32416 -1.50781,2.64257 -0.82976,0.3184 -1.97571,1.60449 -2.54687,2.85743 -0.94255,2.06762 -1.72624,2.28116 -8.48243,2.31835 -4.14764,0.0228 -7.94605,0.54176 -8.57617,1.17188 -0.62199,0.62199 -1.75055,0.89289 -2.50976,0.60156 -2.61714,-1.00429 -6.22644,0.61267 -6.55664,2.9375 -0.28274,1.99073 -1.0651,2.31952 -6.82032,2.86719 -10.18677,0.96937 -11.75739,2.12347 -8,5.88086 1.1,1.1 2,2.60883 2,3.35351 0,0.74468 1.125,2.56909 2.5,4.05274 1.375,1.48365 2.5,3.54674 2.5,4.58594 0,1.03921 0.45,2.16789 1,2.50781 0.55,0.33992 1.00286,1.37855 1.00586,2.30859 0.003,0.93004 0.58024,2.81641 1.28125,4.19141 0.7899,1.54935 1.22227,5.92235 1.13867,11.5 -0.1283,8.5593 -0.24507,9.01693 -2.41601,9.33789 -1.2555,0.18562 -2.6516,-0.25829 -3.10156,-0.98633 -0.637,-1.03069 -1.46192,-1.08016 -3.72852,-0.22461 -2.4752,0.93428 -2.89352,0.85748 -2.79492,-0.51367 0.14108,-1.96148 -3.34618,-1.778 -7.72852,0.4082 -1.62943,0.81287 -3.9819,1.47852 -5.22656,1.47852 -1.24467,0 -2.41232,0.42833 -2.5957,0.95117 -0.18333,0.52285 -1.45899,0.0821 -2.83399,-0.97851 -1.375,-1.06061 -3.62956,-1.93702 -5.00976,-1.94922 -1.3802,-0.0122 -3.03136,-0.86031 -3.66992,-1.88282 -0.63856,-1.0225 -2.58237,-2.14303 -4.31836,-2.49023 -5.54283,-1.10857 -10.7884,-5.64256 -12.54102,-10.83984 -1.05132,-3.11761 -3.74117,-6.96996 -8.02148,-11.48828 -3.54171,-3.73866 -6.43946,-7.29534 -6.43946,-7.9043 0,-0.60895 0.88865,-1.91175 1.97461,-2.89453 1.08596,-0.98278 2.26505,-2.73934 2.61914,-3.9043 0.3541,-1.16497 1.34386,-2.91667 2.20118,-3.89258 1.42017,-1.6166 1.38009,-2.01673 -0.46094,-4.5 -1.1114,-1.49909 -3.32926,-3.17656 -4.92774,-3.72656 -2.67384,-0.92 -2.88251,-1.34 -2.59961,-5.25 0.24362,-3.36712 0.24264,-4.09375 1.71681,-4.09375 3.15868,0 3.16405,-1.81817 4.42968,-2.81251 0.39659,-0.31157 -0.0173,-0.8843 -0.083,-1.35052 -0.0656,-0.46622 -1.68821,-0.26676 -1.90924,-0.40338 -1.98569,0.23804 -7.06474,0.42966 -9.20313,2.42188 -1.95734,1.82353 -2.25268,1.85036 -3.90235,0.35742 -1.00614,-0.91054 -2.80894,-1.42067 -4.13086,-1.16797 -1.9439,0.3716 -2.52353,-0.12229 -3.39062,-2.89258 -0.96884,-3.09539 -0.86832,-3.38766 1.36914,-3.94922 1.51133,-0.37932 2.21915,-1.12119 1.88867,-1.98242 -0.37618,-0.9803 0.33437,-1.37695 2.4707,-1.37695 1.82455,0 3.24075,-0.62491 3.61328,-1.5957 0.45218,-1.17836 1.40043,-1.43827 3.6211,-0.99414 3.55835,0.71167 5.61176,-1.5447 7.20312,-7.91016 0.79154,-3.16617 1.52114,-4.07197 3.5,-4.3457 1.375,-0.1902 3.01382,-0.76698 3.64063,-1.28125 0.62681,-0.51428 3.72482,-1.06023 6.88672,-1.21485 4.58406,-0.22417 6.12643,-0.74722 7.60742,-2.57617 1.02153,-1.26154 3.44833,-3.10446 5.39258,-4.0957 3.19171,-1.62723 3.82255,-1.65893 6.49804,-0.32422 5.27763,2.63283 6.97223,1.58339 9.89649,-6.125 2.09491,-5.52223 3.15178,-7.08296 5.10937,-7.55078 2.18614,-0.52244 2.4571,-1.09952 2.3711,-5.03906 -0.0534,-2.44625 -0.66502,-7.26688 -1.35938,-10.7129 -1.00382,-4.98203 -1.00779,-6.56978 -0.0234,-7.75586 0.85102,-1.02541 1.0354,-3.28642 0.58984,-7.23437 l -0.64844,-5.74414 3.9961,-0.27149 c 2.93702,-0.20021 4.53677,0.2653 6.02929,1.75782 1.58944,1.58944 2.95484,1.93606 6.27344,1.58984 5.27678,-0.5505 8.74023,-1.57213 8.74023,-2.57617 0,-1.35145 4.25765,-1.93216 6.26954,-0.85547 1.36628,0.73126 2.26983,0.71649 3.0371,-0.0508 0.60095,-0.60095 1.90258,-1.09375 2.89258,-1.09375 0.99,0 1.80078,-0.45 1.80078,-1 0,-0.70664 0.17442,-1.04814 0.43164,-1.10156 z"
id="path4890"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="centre_val_de_loire"
onmouseover="get_region_infos(this)"
inkscape:label="centre_val_de_loire">
<path
style="fill:#f2f2f2"
d="m 410.88515,177.4022 c 0.34731,-0.11094 0.61485,1.08611 1.02344,4.03125 0.4023,2.89985 1.1012,5.50098 1.55468,5.78125 0.45349,0.28027 0.57006,1.17185 0.25977,1.98047 -1.02132,2.66152 0.5909,6.24347 4.65234,10.3457 2.20061,2.22272 4,4.94097 4,6.04101 0,2.08047 3.58244,6.07813 5.44727,6.07813 1.67347,0 3.89661,4.1904 3.97851,7.5 l 0.0742,3 6,-0.1543 c 3.3,-0.0851 7.575,-0.23838 9.5,-0.33984 5.37095,-0.28308 6,-0.12285 6,1.51953 0,0.83861 1.125,1.95184 2.5,2.47461 3.04346,1.15712 3.09268,1.73929 0.39454,4.61133 -1.15763,1.23223 -1.80821,2.71872 -1.44727,3.30273 0.84687,1.37025 17.96288,1.20786 22.23633,-0.21094 3.92834,-1.30421 5.07225,-0.48593 8.27344,5.92383 l 2.35156,4.71094 -2.88282,2.48047 c -2.30486,1.98256 -2.8642,3.25535 -2.7832,6.34375 0.089,3.39356 -0.21655,3.9345 -2.51953,4.43555 -1.44219,0.31377 -3.18555,0.74327 -3.87305,0.95507 -1.94119,0.59803 -1.4729,4.93557 0.75,6.94727 2.40914,2.18024 2.74166,7.5 0.46875,7.5 -2.30746,0 -2.72303,2.28472 -1.01171,5.56641 1.84907,3.54589 1.89746,4.81026 0.3457,9.10156 -1.0937,3.02458 -0.97503,3.55025 1.3789,6.07226 3.00366,3.21814 5.17723,9.31882 5,14.03321 -0.0685,1.82197 0.42603,3.52357 1.09766,3.78125 0.67162,0.25767 1.14208,1.92556 1.04688,3.70703 -0.0952,1.78147 -0.2077,5.15078 -0.25,7.48828 -0.069,3.80961 -0.32783,4.25 -2.5,4.25 -1.33281,0 -3.79847,1.15892 -5.48047,2.57422 -2.07958,1.74985 -3.70379,2.36722 -5.07617,1.93164 -1.44169,-0.45757 -3.28423,0.39711 -6.45118,2.99219 -4.41178,3.61512 -5.40888,6.42225 -3.27929,9.24023 1.10386,1.46067 0.18244,1.84961 -6.51758,2.74609 -3.77922,0.50566 -5.06188,1.19968 -6.39649,3.45899 -1.29513,2.19249 -2.64354,2.95826 -6.01172,3.41992 -2.38804,0.32732 -5.39618,0.1953 -6.68554,-0.29492 -1.28936,-0.49021 -3.8826,-0.76973 -5.76172,-0.62109 -1.87911,0.14862 -3.97184,-0.16757 -4.65234,-0.70118 -1.56081,-1.2239 -4.26368,-0.24587 -4.26368,1.54297 0,1.05382 -1.15816,1.19706 -5.25,0.64844 -4.43231,-0.59426 -5.58449,-0.39903 -7.39453,1.25391 -1.8413,1.68148 -2.43731,1.77438 -4.22461,0.6582 -1.64218,-1.02556 -2.34003,-1.04083 -3.30664,-0.0742 -1.55581,1.55584 -3.82422,1.58716 -3.82422,0.0527 0,-0.64481 -0.7875,-2.8822 -1.75,-4.97265 -1.31636,-2.859 -3.04383,-4.4436 -6.97461,-6.39063 -5.12558,-2.53885 -5.22305,-2.66727 -5.04492,-6.77539 0.14571,-3.36068 -0.35224,-4.72443 -2.52343,-6.89453 -1.48827,-1.4875 -2.70704,-3.40222 -2.70704,-4.25586 0,-0.85364 -1.125,-2.53101 -2.5,-3.72656 -1.375,-1.19555 -2.5,-3.18547 -2.5,-4.42383 0,-1.36133 -1.18852,-3.09852 -3.00586,-4.39258 -3.28339,-2.33799 -6.49414,-2.32941 -6.49414,0.0176 0,1.47691 -2.94413,2.64271 -7.25,2.86914 -1.93713,0.10186 -2.25,-0.38065 -2.25,-3.46875 0,-3.0671 -0.43472,-3.75242 -3,-4.7207 -1.65,-0.62281 -3,-1.60952 -3,-2.19336 0,-0.58384 -1.40931,-1.59359 -3.13281,-2.24414 -2.99396,-1.13009 -3.10466,-1.368 -2.47265,-5.32031 0.36382,-2.27519 1.52637,-5.77781 2.58398,-7.78516 2.63871,-5.00825 5.13448,-13.69081 4.44922,-15.47656 -0.72934,-1.90063 1.40924,-3.23724 2.85937,-1.78711 1.53588,1.53588 5.71289,1.40345 5.71289,-0.18164 0,-0.71276 2.3625,-2.64697 5.25,-4.29688 2.8875,-1.64991 5.25758,-3.67619 5.26758,-4.5039 0.01,-0.82772 1.69704,-3.18533 3.75,-5.23829 2.05296,-2.05295 3.73242,-4.61755 3.73242,-5.69921 0,-1.08167 0.39697,-1.9668 0.88282,-1.9668 1.40703,0 2.40231,-4.02797 2.56054,-10.36328 0.10611,-4.24863 0.6163,-6.20613 1.85157,-7.10938 2.25223,-1.64687 2.15436,-3.23015 -0.29493,-4.75976 -1.1,-0.68696 -2,-1.96577 -2,-2.8418 0,-0.87603 -0.30317,-1.89497 -0.67382,-2.26562 -1.19595,-1.19595 -0.93084,-5.66016 0.33593,-5.66016 0.675,0 2.41172,-1.01845 3.85938,-2.26367 2.13652,-1.83776 2.68307,-3.26939 2.90429,-7.59961 0.25162,-4.92474 0.009,-5.59036 -3.1621,-8.66992 -4.81732,-4.67852 -4.11565,-6.52888 3.40625,-8.9668 3.39392,-1.1 6.45077,-2.28056 6.79101,-2.62305 0.34025,-0.3425 2.63671,-0.39523 5.10352,-0.11718 5.1075,0.57569 8.89292,-1.7431 7.9082,-4.84571 -0.37889,-1.19378 0.11506,-1.96619 1.55078,-2.42187 1.1586,-0.36772 2.48183,-1.64095 2.94141,-2.83008 0.21216,-0.54896 0.38705,-0.8695 0.54492,-0.91992 z"
id="path4896"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="bourgogne_franche_comte"
onmouseover="get_region_infos(this)"
inkscape:label="bourgogne_franche_comte">
<path
style="fill:#f2f2f2"
d="m 506.02579,217.704 2.58398,3.90625 c 2.18033,3.2947 2.39405,4.21275 1.36328,5.86328 -1.34606,2.15538 -0.76889,3.875 1.29883,3.875 0.7337,0 1.56694,0.61062 1.85351,1.35742 0.28658,0.7468 1.86393,1.62708 3.50391,1.95508 2.60578,0.52115 3.14875,1.24755 4.30469,5.75781 0.72752,2.83861 1.89874,5.3819 2.60351,5.65235 0.70478,0.27044 1.28125,1.14943 1.28125,1.95312 0,1.17592 1.61091,1.43148 8.25,1.30859 4.5375,-0.084 9.25747,0.16108 10.48828,0.54493 1.59164,0.49638 2.41708,0.23152 2.85743,-0.91602 0.45098,-1.17524 1.92517,-1.61328 5.42968,-1.61328 6.13741,0 7.97461,-0.73082 7.97461,-3.17383 0,-1.38625 0.51248,-1.81778 1.75,-1.47266 0.9625,0.26842 2.71988,0.76466 3.9043,1.10352 1.18443,0.33886 2.893,2.1753 3.79688,4.08008 0.90388,1.90478 2.27106,3.46289 3.03906,3.46289 0.76801,0 2.08852,0.98687 2.93359,2.19336 1.35746,1.93806 1.36401,2.38545 0.0566,3.83008 -1.6651,1.83991 -1.95932,3.97656 -0.54687,3.97656 0.51347,0 1.07597,1.2375 1.25,2.75 0.22758,1.97786 0.87796,2.75 2.3164,2.75 1.1,0 2.27969,0.38219 2.6211,0.84961 0.3414,0.46743 2.1414,1.15561 4,1.5293 2.16884,0.43606 3.73709,1.50395 4.3789,2.98046 0.88067,2.02602 1.4773,2.22583 5,1.67383 2.2,-0.34474 4.16875,-1.11216 4.375,-1.70508 1.05774,-3.04071 3.99839,-4.57281 8.10547,-4.22461 2.32349,0.197 5.02478,-0.0717 6.00391,-0.5957 2.06713,-1.10629 3.24716,-6.92787 1.77539,-8.75781 -0.72342,-0.89947 -0.55029,-1.25 0.61719,-1.25 0.89234,0 1.62304,-0.45 1.62304,-1 0,-0.55 0.9,-1 2,-1 1.1,0 2,-0.57457 2,-1.27734 0,-1.39351 3.47391,-4.72266 4.92774,-4.72266 0.4971,0 2.17703,-1.35 3.73437,-3 3.26265,-3.45678 4.33789,-3.74556 4.33789,-1.16797 0,2.94369 4.04121,4.52712 8.44727,3.31055 3.38564,-0.93482 3.96756,-0.79779 6.01562,1.41211 2.5952,2.80026 4.74395,3.0959 6.88868,0.95117 1.61961,-1.61961 0.91032,-2.02837 10.50781,6.06445 2.00268,1.6887 5.08821,3.64948 6.85742,4.35742 3.79293,1.51774 4.79296,3.86126 3.16797,7.42774 -1.26995,2.78723 0.0615,5.64453 2.63086,5.64453 0.98224,0 2.48437,2.02078 2.48437,3.3418 0,0.0978 -1.45087,0.17296 -3.22461,0.16797 -2.41294,-0.007 -3.32321,0.48662 -3.61523,1.95898 -0.21466,1.08233 -1.51412,3.44066 -2.88672,5.24023 -3.27964,4.29983 -2.46789,6.68381 1.97656,5.8125 l 3.25,-0.63671 -2.39453,1.91992 c -1.3166,1.05625 -2.1165,2.36845 -1.77929,2.91406 0.3372,0.54561 -0.83637,3.62438 -3.98197,6.8418 -3.1456,3.21743 -6.17078,6.7696 -6.72265,7.89453 -0.55187,1.12494 -2.93771,3.02224 -5.30274,4.21679 -6.57938,3.32319 -6.9082,3.79827 -6.9082,10.01172 0,5.17085 -1.40792,5.90509 -4.30124,8.2461 -10.23484,8.28112 -13.22297,11.48364 -12.69141,13.60156 0.29615,1.17995 -0.11253,3.00521 -0.9082,4.05664 -0.79566,1.05143 -1.46102,2.51663 -1.47852,3.25391 -0.0175,0.73728 -2.1194,3.78378 -4.67187,6.77148 -5.10429,5.97463 -6.49846,6.19309 -11.27539,1.76367 -3.1682,-2.93772 -3.20887,-2.93738 -6.08399,0.12305 -2.49247,2.65312 -4,3.19264 -4,1.42969 0,-1.26506 -2.49714,-3.92969 -3.68359,-3.92969 -0.45502,0 -1.44045,-1.38407 -2.18945,-3.07617 -0.749,-1.6921 -2.09638,-3.32236 -2.99414,-3.62305 -0.89777,-0.3007 -2.61758,-1.70118 -3.82032,-3.11133 -2.0024,-2.34769 -2.48623,-2.47177 -5.74804,-1.4707 -2.08448,0.63975 -3.79536,0.71772 -4.12305,0.1875 -0.82553,-1.33573 -5.19564,-1.10202 -6.13281,0.32812 -0.44496,0.67902 -2.21224,5.51652 -3.92774,10.75 -2.06967,6.314 -3.33134,8.92685 -3.75,7.76563 -0.347,-0.9625 -0.86233,-2.48117 -1.14648,-3.375 -0.42126,-1.32514 -1.29813,-1.49003 -4.75,-0.89063 -2.32835,0.4043 -4.68438,0.68019 -5.23438,0.61329 -6.63819,-0.80765 -6.86829,-0.71363 -7.79687,3.15234 -0.49539,2.0625 -1.30738,3.78582 -1.80274,3.82812 -3.98951,0.34074 -8.7907,0.10769 -9.72656,-0.4707 -0.62302,-0.38505 -2.01268,-0.22778 -3.08789,0.34766 -2.43968,1.30563 -3.08594,1.31404 -3.08594,0.0449 0,-0.55 -0.675,-1 -1.5,-1 -2.2868,0 -1.7869,-3.56583 0.65235,-4.6543 1.81341,-0.80917 2.185,-1.89465 2.36133,-6.90234 0.22212,-6.30807 -0.66661,-8.44336 -3.51368,-8.44336 -0.96531,0 -2.31531,-0.675 -3,-1.5 -0.68469,-0.825 -2.10437,-1.5 -3.15429,-1.5 -1.04992,0 -2.15108,-0.7875 -2.44727,-1.75 -0.29619,-0.9625 -1.91511,-4.5625 -3.59766,-8 -3.5294,-7.21067 -5.82012,-8.04449 -8.39843,-3.05859 -1.48327,2.86833 -1.77544,3.01977 -2.88672,1.5 -1.33261,-1.82245 -5.51563,-2.34128 -5.51563,-0.6836 0,0.59721 -0.81748,0.49874 -2.0039,-0.24219 -1.48601,-0.92803 -2.45454,-0.966 -3.75,-0.14843 -2.34322,1.47884 -8.69047,-3.08827 -7.67383,-5.52149 1.1694,-2.79886 1.52685,-16.91555 0.44531,-17.58398 -0.55933,-0.34568 -1.01758,-1.6757 -1.01758,-2.95508 0,-3.69577 -3.15924,-12.85373 -5.24218,-15.19727 -1.67773,-1.88762 -1.76268,-2.61012 -0.72071,-6.08789 0.98683,-3.29375 0.91759,-4.45831 -0.41797,-7.04101 -1.5524,-3.002 -1.53306,-3.10329 0.64063,-3.41211 1.5467,-0.21974 2.18392,-0.93761 2.05859,-2.31836 -0.50533,-5.56696 -1.25196,-7.80168 -3.35937,-10.04492 l -2.30664,-2.45508 h 2.45117 c 4.24671,0 6.84465,-2.59162 6.53516,-6.52149 -0.20224,-2.56799 0.32844,-4.03969 2.04296,-5.65039 3.93588,-3.69757 2.57477,-10.13487 -3.72265,-17.5957 -0.78081,-0.92507 -0.54925,-2.00554 0.85937,-4 1.34985,-1.9113 1.77761,-3.75245 1.42188,-6.125 -0.356,-2.37437 -0.16902,-3.18018 0.625,-2.68945 0.62389,0.38563 1.67765,0.36359 2.3418,-0.0469 0.66416,-0.41047 4.76094,-0.80636 9.10351,-0.88086 z"
id="path4886"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="nouvelle_aquitaine"
onmouseover="get_region_infos(this)"
inkscape:label="nouvelle_aquitaine">
<path
style="fill:#f2f2f2"
d="m 339.23657,304.27634 c 0.35859,-0.057 0.61132,0.1715 0.61132,0.61719 0,0.59425 1.125,1.59226 2.5,2.21875 1.375,0.6265 2.5,1.75344 2.5,2.50391 1.89395,2.47361 5.45498,1.25526 6.01563,5.18945 0.008,1.44375 0.42653,3.27697 0.92969,4.07227 1.01999,1.61221 8.73399,2.38169 9.61328,0.95898 0.30768,-0.49783 1.85632,-0.90625 3.4414,-0.90625 1.58508,0 3.16431,-0.45666 3.50977,-1.01563 0.97504,-1.57765 2.49023,-0.11748 2.49023,2.4004 0,1.24666 1.125,3.32348 2.5,4.61523 1.375,1.29175 2.5,2.88049 2.5,3.5293 0,0.64882 1.16686,2.43888 2.59375,3.97851 2.03796,2.19905 2.46515,3.44376 1.99219,5.8086 -0.66251,3.31254 1.51649,7.68359 3.83008,7.68359 0.75348,0 1.62872,0.675 1.94531,1.5 0.31658,0.825 1.71515,1.5 3.10742,1.5 2.01978,0 2.53125,0.49607 2.53125,2.45117 0,1.34767 0.5625,2.81017 1.25,3.25 0.6875,0.43983 1.25,1.69883 1.25,2.79883 0,1.70369 0.6969,2.0131 4.70704,2.0918 2.58916,0.0508 5.38933,0.65768 6.2207,1.34765 1.23884,1.02814 1.99136,0.87648 4.17578,-0.84179 2.16482,-1.70285 3.61155,-2.00281 7.70117,-1.59571 3.77542,0.37581 5.48409,0.0949 6.83203,-1.125 1.56101,-1.4127 3.21625,-1.51207 12.57227,-0.75195 10.52929,0.85544 10.80584,0.9401 12.14648,3.74805 0.75452,1.58034 2.22033,3.09588 3.25781,3.36718 1.03747,0.27131 1.88672,0.89111 1.88672,1.37696 0,0.48585 0.6262,0.88281 1.39063,0.88281 1.86721,0 5.63091,8.20304 4.95312,10.79492 -0.29693,1.13545 0.26557,3.42726 1.25,5.09375 1.61765,2.73848 1.64153,3.20204 0.25,4.82031 -0.84682,0.98479 -1.81881,2.57852 -2.16015,3.54102 -0.34133,0.9625 -1.20967,1.75 -1.92969,1.75 -1.58089,0 -4.75391,3.52606 -4.75391,5.2832 0,0.6934 1.4068,2.9663 3.125,5.05078 l 3.12305,3.79102 -1.80078,3.34375 c -1.59808,2.96746 -1.63879,3.60713 -0.35938,5.6875 1.98464,3.22708 1.0994,11.22812 -1.08789,9.83203 -2.961,-1.88992 -5,-1.15263 -5,1.80859 0,1.9475 -1.21901,3.98793 -4.01562,6.71875 -3.25062,3.17414 -3.97478,4.54593 -3.79688,7.1875 0.16066,2.38552 -0.5172,4.0313 -2.51562,6.11719 -1.61539,1.68611 -2.49366,3.48199 -2.14649,4.38672 0.62622,1.6319 -1.91838,2.72675 -6.52539,2.81055 -1.375,0.025 -3.3783,0.71013 -4.45117,1.52148 -1.78682,1.35126 -2.24884,1.19233 -5.5,-1.90234 -4.3967,-4.18508 -8.87114,-5.16531 -13.50195,-2.95703 -3.2322,1.54133 -3.41999,1.90752 -3.31641,6.45508 0.0915,4.01832 -0.33513,5.23249 -2.56054,7.29492 -1.46854,1.361 -2.66993,3.32616 -2.66993,4.36718 0,2.01787 -2.36342,4.49622 -5.27343,5.5293 -0.97498,0.34612 -2.05396,1.42736 -2.39844,2.40234 -0.92675,2.62292 -4.46984,6.27149 -6.08985,6.27149 -1.10473,0 -1.26253,0.92856 -0.72265,4.25 0.37995,2.3375 1.0945,4.67867 1.58789,5.20117 1.75688,1.86052 0.84542,2.63093 -2.76758,2.3418 -3.42329,-0.27394 -3.72597,-0.064 -4.58203,3.16211 -0.72778,2.74272 -0.59175,3.6911 0.66406,4.60937 2.22703,1.62845 2.05335,2.1323 -2.17383,6.26367 -2.06621,2.01938 -4.47992,4.79076 -5.36328,6.15821 -1.35897,2.10369 -1.84688,2.28781 -3.16797,1.1914 -1.80639,-1.49917 -7.96815,-0.68552 -11.32226,1.4961 -1.16048,0.75481 -4.89136,1.54794 -8.29102,1.76172 -3.39966,0.21379 -7.22761,1.07458 -8.50586,1.91211 -1.70435,1.11674 -2.62071,1.22498 -3.43554,0.41015 -0.81484,-0.81484 -1.60447,-0.66295 -2.96289,0.56641 -1.01881,0.922 -2.62006,1.67578 -3.5586,1.67578 -3.89231,0 -8.62229,5.16339 -5.65039,6.16797 1.22713,0.4148 -0.52833,12.12561 -2.22461,14.8418 -0.95238,1.525 -0.82284,2.26664 0.6875,3.93554 1.02333,1.13077 2.91532,2.05469 4.20508,2.05469 3.88229,0 5.99676,2.97694 5.53711,7.79687 -0.32035,3.35913 -0.0793,4.20313 1.20313,4.20313 1.78399,0 2.15733,1.54089 0.60546,2.5 -0.55,0.33992 -1,1.78671 -1,3.21484 0,2.53107 -4.08151,8.9844 -6.69531,10.58594 -0.71783,0.43983 -1.30469,1.45233 -1.30469,2.25 0,0.79767 -0.9,2.34922 -2,3.44922 -1.1,1.1 -2,3.09887 -2,4.44141 0,1.34254 -0.48997,2.74375 -1.08789,3.11328 -0.59788,0.36953 -0.87067,1.49527 -0.60742,2.50195 0.27179,1.03931 -0.36292,2.59104 -1.46875,3.5918 -1.63339,1.4782 -2.27444,1.55934 -3.9707,0.5 -1.33519,-0.83384 -2.42065,-0.93198 -3.19531,-0.28907 -1.43403,1.19014 -6.60494,-3.14844 -8.33594,-6.99414 -1.05625,-2.34663 -1.68113,-2.58331 -6.63672,-2.51172 -3.00903,0.0435 -6.08437,-0.38671 -6.83399,-0.95507 -0.74962,-0.56836 -4.11211,-2.09464 -7.47265,-3.39258 -4.88612,-1.88717 -6.01598,-2.72586 -5.63477,-4.18359 0.30835,-1.17913 -0.0638,-1.82227 -1.05664,-1.82227 -2.86997,0 -4.69922,1.20955 -4.69922,3.10742 0,1.04115 -0.675,1.89258 -1.5,1.89258 -0.825,0 -1.5,-0.45 -1.5,-1 0,-0.55 0.43214,-1 0.96094,-1 1.32062,0 3.31167,-7.78299 2.65625,-10.38477 -0.576,-2.28651 -7.36015,-5.03392 -9.96289,-4.03515 -0.79806,0.30624 -1.74823,0.0758 -2.11133,-0.51172 -0.36309,-0.58749 -1.75902,-1.06836 -3.10156,-1.06836 -1.34254,0 -2.44141,-0.45 -2.44141,-1 0,-0.55 0.82205,-1 1.82618,-1 2.37042,0 5.19338,-3.14606 9.08984,-10.13086 2.44118,-4.37607 4.00492,-9.87718 7.02148,-24.68945 2.13485,-10.48278 4.41142,-24.14892 5.0586,-30.36914 1.44753,-13.91266 2.89372,-19.7905 4.69922,-19.09766 2.34062,0.89818 8.30468,-0.72192 8.30468,-2.25586 0,-2.26152 -7.00412,-9.45703 -9.20507,-9.45703 -1.7165,0 -1.8948,-0.4851 -1.38086,-3.75 0.95293,-6.05357 3.57803,-35.37035 3.58203,-40 0.002,-2.74366 0.44694,-4.24126 1.2539,-4.22656 2.51545,0.0457 12.72019,10.58715 14.08594,14.55078 1.0597,3.07546 1.92771,3.99436 4.00781,4.24219 2.2481,0.26785 2.65625,-0.066 2.65625,-2.17383 0,-6.50207 -2.46144,-12.94055 -6.78906,-17.75391 -2.41736,-2.68867 -4.99936,-4.88867 -5.73633,-4.88867 -0.73697,0 -1.59151,-0.7875 -1.90039,-1.75 -0.30887,-0.9625 -3.04018,-3.08413 -6.06836,-4.71484 -6.04515,-3.25537 -7.23025,-6.06474 -3.00586,-7.125 1.58456,-0.3977 2.5,-1.3315 2.5,-2.55274 0,-1.05973 0.6272,-2.92443 1.39258,-4.14258 0.76538,-1.21815 1.69108,-4.34786 2.0586,-6.95507 0.61112,-4.3352 0.35412,-5.2162 -3.01954,-10.29883 l -3.68945,-5.55664 1.98047,-2.20118 c 1.08907,-1.21105 2.26098,-2.99964 2.60547,-3.97461 0.7984,-2.25968 3.64763,-3.38666 4.61328,-1.82421 0.41693,0.67462 2.46382,1.09468 4.69727,0.96289 2.17718,-0.12846 4.45225,0.0718 5.05664,0.44531 1.9357,1.19632 6.7121,-0.37692 10.31054,-3.39649 l 3.49414,-2.93359 -2.15625,-1.82617 c -2.29778,-1.94564 -3.28621,-5.84449 -2.0039,-7.9043 0.9481,-1.52297 -1.77588,-12.60794 -3.8125,-15.51562 -0.81006,-1.15652 -1.23319,-3.06213 -0.93946,-4.23242 0.40088,-1.59722 -0.1092,-2.42094 -2.04882,-3.30469 -1.64876,-0.75122 -2.80324,-2.26619 -3.1875,-4.1875 -0.33122,-1.65609 -1.06966,-3.01172 -1.64258,-3.01172 -0.57291,0 -0.76729,-0.27374 -0.43164,-0.60938 0.33564,-0.33565 3.14827,-0.76231 6.25,-0.94726 5.82603,-0.34739 8.47265,-1.63636 8.47265,-4.125 0,-0.79012 0.38308,-1.1997 0.85157,-0.91016 0.46849,0.28954 3.40286,-0.19875 6.52148,-1.08593 5.3799,-1.53044 5.85372,-1.51535 9.2207,0.2832 3.36921,1.79975 3.61355,1.80603 4.83789,0.14453 0.70925,-0.9625 1.80283,-1.75 2.42969,-1.75 0.62687,0 1.13867,-0.87387 1.13867,-1.94141 0,-1.06754 0.45,-2.21867 1,-2.55859 0.1375,-0.085 0.26914,-0.13529 0.38868,-0.1543 z"
id="path4876"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="auvergne_rhone_alpes"
onmouseover="get_region_infos(this)"
inkscape:label="auvergne_rhone_alpes">
<path
style="fill:#f2f2f2"
d="m 481.7093,330.11605 c 0.41857,0 2.71182,1.80116 5.09571,4.00195 4.23983,3.91419 4.47204,3.99443 10.66601,3.64844 4.82874,-0.26973 6.33203,-0.0332 6.33203,0.99805 0,2.06628 4.34657,1.60954 6.84571,-0.71875 l 2.2207,-2.06836 1.95117,2.31836 c 1.07274,1.27591 2.23814,3.99481 2.58985,6.04101 0.53905,3.13607 1.28685,4.01962 4.76562,5.62891 2.26981,1.05002 4.91445,2.17403 5.87695,2.49805 2.53912,0.85476 2.42504,8.067 -0.15625,9.875 -2.77484,1.94357 -3.14899,7.70907 -0.59375,9.15039 1.1,0.62047 2.28712,1.52394 2.63868,2.00781 0.35157,0.48386 2.12166,0.66213 3.93164,0.39648 1.80999,-0.26565 5.05399,-0.0862 7.21093,0.39844 5.92089,1.33034 10.52971,-0.65091 11.32032,-4.86523 0.51338,-2.73661 0.97949,-3.2079 2.75781,-2.78907 1.17716,0.27725 3.69838,0.66055 5.60156,0.85157 3.36437,0.33768 4.28523,1.17138 5.46289,4.94726 0.3694,1.18441 1.3284,1.70832 2.7461,1.5 1.73551,-0.25503 2.56636,-1.64239 4.08789,-6.82031 1.05051,-3.575 2.26545,-7.19015 2.69922,-8.0332 0.43375,-0.84306 1.08809,-2.89949 1.45507,-4.57032 0.64992,-2.95907 0.80933,-3.03397 6.13477,-2.875 4.70438,0.14043 5.99046,0.64023 9.21094,3.57227 2.05848,1.87412 4.38167,4.64375 5.16211,6.15625 0.78044,1.5125 2.09228,2.75 2.91601,2.75 0.82369,0 1.20174,0.29631 0.83984,0.6582 -0.99479,0.9948 1.33177,3.3418 3.3125,3.3418 0.95849,0 2.88674,-0.9 4.28516,-2 3.20518,-2.52119 4.35632,-2.52119 5.01563,0 0.42534,1.62652 1.36475,2 5.02734,2 4.18102,0 4.82228,-0.36902 8.94336,-5.15234 4.94666,-5.74158 7.09213,-5.92247 5.38086,-0.45508 -0.72527,2.31719 -2.11505,3.94165 -4.24024,4.95508 -2.76137,1.3168 -3.16995,2.01979 -3.21875,5.55664 l -0.0547,4.04882 5.68554,-0.56445 c 3.39997,-0.33759 6.31036,-1.23295 7.23633,-2.22656 0.85186,-0.91409 2.39721,-2.14176 3.4336,-2.72852 3.36872,-1.90723 4.25739,-4.37212 2.14257,-5.94336 -2.73789,-2.03418 -1.40028,-4.72346 1.9336,-3.88672 1.84319,0.46261 3.44326,0.033 5.48242,-1.4746 3.74973,-2.77229 12.95898,-3.08747 12.95898,-0.44336 0,0.92705 0.96577,2.71388 2.14649,3.9707 1.68141,1.78978 1.89618,2.58926 0.98633,3.68555 -0.63891,0.76984 -1.26913,3.14563 -1.39844,5.27929 -0.20075,3.31247 0.0839,3.92425 1.94531,4.18946 1.67077,0.23803 2.13795,0.92961 2,2.96093 -0.13032,1.91892 0.36497,2.7628 1.79492,3.05664 2.09314,0.43012 4.12038,2.63679 4.82422,5.25196 0.69572,2.58503 -1.98841,5.18412 -6.02148,5.83398 -3.54496,0.57121 -3.79778,0.84901 -4.09766,4.50195 -0.47697,5.81028 0.42076,8.05394 4.2793,10.69532 2.73734,1.87386 3.62506,3.27615 4.10937,6.5 0.47809,3.18251 1.51206,4.85277 4.57813,7.38867 2.78831,2.30617 3.75847,3.75396 3.27344,4.88867 -0.37898,0.88662 -0.97044,3.15975 -1.3125,5.05078 -0.49767,2.75138 -1.21813,3.59421 -3.61329,4.22266 -1.6462,0.43192 -4.16363,1.87747 -5.59375,3.21289 -1.75044,1.63455 -3.05546,2.14729 -3.99218,1.56836 -1.42093,-0.87818 -5.60793,-0.26647 -7.40821,1.08203 -0.55,0.41198 -2.9128,1.06374 -5.25,1.44922 -2.33719,0.38548 -4.67835,1.44908 -5.20312,2.36328 -0.8564,1.49193 -1.11774,1.43163 -2.55664,-0.58789 -2.38743,-3.35079 -8.19497,-3.15719 -9.51563,0.31641 -0.53639,1.4108 -0.97461,3.8858 -0.97461,5.5 0,2.42559 0.41305,2.93359 2.38282,2.93359 1.36805,0 2.64764,0.7455 3.00195,1.75 0.3395,0.9625 0.86818,2.28083 1.17578,2.92969 0.371,0.7826 -1.05927,1.3885 -4.25,1.80078 -2.64545,0.34183 -5.61668,1.06502 -6.60156,1.60547 -0.98487,0.54045 -2.20862,0.72274 -2.72071,0.40625 -1.29355,-0.79946 -5.98828,2.43291 -5.98828,4.12304 0,0.86749 -1.10439,1.38477 -2.95507,1.38477 -2.57617,0 -3.03601,0.44106 -3.59961,3.44531 -0.57533,3.06673 -1.03375,3.47913 -4.1543,3.75 -3.15163,0.27357 -3.65315,0.74135 -4.96094,4.62696 -1.16139,3.45061 -1.20405,4.62488 -0.2168,5.81445 1.06014,1.27738 0.84942,1.39286 -1.4707,0.81055 -5.13199,-1.28806 -6.1463,-1.07068 -6.0625,1.30273 0.0437,1.2375 -0.29383,2.25 -0.75,2.25 -0.45617,0 -0.83008,1.52439 -0.83008,3.38672 0,2.86801 0.51961,3.63298 3.40039,5 1.87062,0.88767 3.8456,1.61328 4.38672,1.61328 0.91735,0 4.21289,4.27516 4.21289,5.46484 0,0.29435 -0.77105,0.53516 -1.71289,0.53516 -0.94183,0 -2.62933,1.11209 -3.75,2.4707 -1.67846,2.03484 -2.31292,2.25514 -3.59961,1.25 -0.85909,-0.67111 -1.83845,-1.96168 -2.17773,-2.86719 -0.40538,-1.08191 -2.35697,-1.88542 -5.68945,-2.34374 -4.77156,-0.65627 -5.07032,-0.86904 -5.07032,-3.60352 0,-2.85421 -2.16305,-4.0682 -3.47265,-1.94922 -0.32507,0.52598 -1.20675,0.7203 -1.95899,0.43164 -0.75225,-0.28866 -3.6636,0.1572 -6.46875,0.99024 -2.80514,0.83303 -5.09961,1.11974 -5.09961,0.63867 0,-0.48107 -0.70797,-1.58103 -1.57226,-2.44531 -1.76209,-1.7621 -9.42774,-2.18152 -9.42774,-0.51563 0,0.5923 -0.97691,0.37255 -2.22265,-0.5 -1.32255,-0.92635 -4.33661,-1.55664 -7.44336,-1.55664 -4.18528,0 -5.51498,0.42005 -6.70508,2.11914 l -1.48437,2.12109 -2.97657,-2.12109 c -1.63709,-1.16571 -3.45567,-2.11914 -4.04101,-2.11914 -0.58533,0 -0.79275,-0.70756 -0.46094,-1.57227 0.33182,-0.8647 -0.35717,-2.87096 -1.53125,-4.45898 -1.17408,-1.58803 -2.13477,-3.51987 -2.13477,-4.29297 0,-0.7731 -0.90349,-2.55507 -2.00781,-3.95898 -1.10432,-1.40392 -2.28679,-4.58269 -2.62695,-7.06446 -0.66711,-4.86706 -5.17404,-10.50329 -11.11914,-13.90429 -3.25413,-1.86158 -6.2461,-1.45045 -6.2461,0.85937 0,0.76615 -0.88106,1.39258 -1.95898,1.39258 -1.42106,0 -2.29057,-1.10277 -3.16211,-4.01172 -1.55677,-5.19606 -3.37909,-6.78158 -5.94727,-5.17773 -1.04788,0.65441 -2.56401,1.18945 -3.36914,1.18945 -0.80513,0 -1.89678,0.77585 -2.42773,1.72461 -0.53095,0.94876 -1.99168,1.7363 -3.24609,1.75 -1.69163,0.0185 -2.86242,1.18777 -4.53321,4.52539 -1.23897,2.475 -2.59746,5.85 -3.01758,7.5 l -0.76367,3 -0.34765,-3.75 c -0.19107,-2.0625 -0.79248,-3.75 -1.33789,-3.75 -0.54541,0 -1.46388,-1.35 -2.03907,-3 -0.66771,-1.91538 -1.7328,-3 -2.94726,-3 -1.04619,0 -1.90235,-0.61929 -1.90235,-1.37695 0,-0.75765 -0.6954,-1.95512 -1.54492,-2.66016 -1.30547,-1.08345 -2.15684,-0.68443 -5.5,2.58008 -2.17548,2.12431 -3.95508,4.40574 -3.95508,5.06836 0,0.66262 -1.17755,3.47518 -2.61718,6.25 l -2.61719,5.04492 -6.39063,-0.20313 c -6.93584,-0.22014 -8.04191,-1.19507 -6.83007,-6.02343 0.39987,-1.59321 -0.0113,-3.46107 -1.13868,-5.18164 -2.19982,-3.35736 -2.47783,-7.65476 -0.58789,-9.07618 1.11516,-0.8387 1.18753,-1.54094 0.32618,-3.15039 -0.86552,-1.61723 -0.79927,-2.18995 0.29882,-2.61132 2.29575,-0.88097 4.98841,-7.43411 3.69532,-8.99219 -0.83671,-1.00817 -0.25172,-2.12468 2.48046,-4.74219 1.96598,-1.88347 3.98831,-4.48592 4.49414,-5.7832 0.692,-1.77471 1.23788,-2.09567 2.20508,-1.29297 0.707,0.58674 2.1992,0.82732 3.31641,0.53516 1.75206,-0.45817 2.04499,-1.37921 2.12109,-6.70704 0.0485,-3.39732 -0.40789,-7.19864 -1.01367,-8.44726 -0.81722,-1.68446 -0.79727,-2.57577 0.0781,-3.45117 2.11678,-2.11678 1.35533,-6.98566 -1.57032,-10.04297 l -2.75,-2.875 3.26954,-2.67969 c 1.79843,-1.47453 3.93594,-3.96955 4.75,-5.54492 1.69535,-3.28085 1.95549,-8.2251 0.48046,-9.13672 -0.55,-0.33992 -1,-2.17226 -1,-4.07227 0,-1.9 -0.39698,-4.23636 -0.88281,-5.1914 -0.48583,-0.95504 -1.45719,-2.96374 -2.1582,-4.46485 -0.70102,-1.50111 -2.77498,-3.75111 -4.60938,-5 -1.8344,-1.24889 -3.33779,-2.67078 -3.34179,-3.16015 -0.004,-0.48936 -0.75404,-1.43667 -1.66602,-2.10352 -1.53303,-1.12099 -1.51417,-1.40919 0.25,-3.82812 1.72954,-2.37145 4.39735,-3.25826 8.23828,-2.73633 0.73174,0.0994 2.46555,-0.5606 3.85156,-1.46875 1.95706,-1.28231 2.42473,-2.29298 2.09766,-4.52149 -0.61996,-4.22403 2.83483,-8.10405 7.5957,-8.53125 2.58741,-0.23217 4.40029,-1.13765 5.77149,-2.88086 1.0994,-1.39766 2.34119,-2.54101 2.75976,-2.54101 z"
id="path4862"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="occitanie"
onmouseover="get_region_infos(this)"
inkscape:label="occitanie">
<path
style="fill:#f2f2f2"
d="m 413.38153,451.80122 c 2.02771,0.11515 4.68118,1.51244 7.47852,4.25781 4.06826,3.9927 4.23462,4.05206 7.05468,2.59375 1.58832,-0.82135 4.4294,-1.64797 6.31445,-1.83789 3.18157,-0.32054 3.47838,-0.10396 4.13086,3.01563 0.3866,1.84833 1.37916,4.03541 2.20508,4.86133 1.14258,1.14258 1.2822,2.2532 0.58593,4.64062 -0.55704,1.90988 -0.55218,3.91935 0.0117,5.13672 0.50953,1.1 1.17872,2.7875 1.48633,3.75 0.69401,2.17153 3.25309,2.26059 5.32813,0.18555 1.10585,-1.10584 1.87652,-1.25238 2.6289,-0.5 1.59121,1.59121 7.40163,1.28293 8.875,-0.47071 0.70919,-0.84409 1.76689,-2.08159 2.34961,-2.75 1.5067,-1.72826 4.43945,-7.80183 4.43945,-9.19336 0,-0.64463 1.06576,-2.17397 2.36914,-3.39843 l 2.3711,-2.22657 0.57031,2.18164 c 0.37507,1.43426 1.08878,1.98346 2.08399,1.60157 1.533,-0.58827 4.24869,4.10885 6.25585,10.82031 1.45014,4.84893 4.40509,3.97008 6.72461,-2 1.06844,-2.75 2.39797,-6.15962 2.95313,-7.57813 0.75524,-1.92976 1.56555,-2.47423 3.21875,-2.1582 1.40024,0.26767 2.71254,-0.28573 3.58203,-1.51172 0.75461,-1.064 2.31909,-2.43697 3.47656,-3.05078 1.91025,-1.013 2.20997,-0.7617 3.25391,2.72266 1.58657,5.29549 3.1963,6.4321 7.44922,5.25781 7.28573,-2.01168 12.41537,1.58493 14.71484,10.31836 0.72406,2.75 2.13978,6.0731 3.14649,7.38477 1.00672,1.31166 1.83007,3.17042 1.83007,4.1289 0,0.95849 0.675,2.30164 1.5,2.98633 0.86141,0.7149 1.5,2.89629 1.5,5.12305 0,3.2805 0.32492,3.87695 2.11328,3.87695 1.16261,0 3.90823,1.00951 6.10157,2.24219 l 3.98828,2.24023 2.25781,-2.83203 c 2.15909,-2.70776 2.28196,-2.73915 2.80469,-0.74023 0.66247,2.53331 4.23397,2.80669 5.56641,0.42578 0.84835,-1.51594 1.17977,-1.47008 3.69921,0.51172 3.4404,2.70621 5.46875,6.50451 5.46875,10.24414 0,1.95 0.79703,3.38417 2.5,4.5 3.5983,2.35769 3.08853,5.38524 -1.5,8.9082 -3.22071,2.47279 -3.91492,3.62515 -3.95312,6.55859 -0.0561,4.31468 -1.72269,6.69234 -4.99219,7.1211 -1.7629,0.23118 -3.1266,1.64661 -4.88476,5.07031 -1.59023,3.09667 -3.0889,4.75 -4.30469,4.75 -1.02571,0 -1.86524,0.675 -1.86524,1.5 0,0.825 -0.65154,1.50001 -1.44922,1.50001 -0.79766,0 -1.89325,0.7875 -2.43359,1.75 -1.07078,1.90735 -0.91237,2.10694 -2.58594,-3.25001 -0.6063,-1.94069 -6.68558,-1.98889 -10.37304,-0.082 -1.50833,0.77999 -4.96486,3.255 -7.68164,5.50001 -2.71677,2.24501 -5.42203,4.08203 -6.01172,4.08203 -0.58969,0 -2.59907,1.575 -4.46485,3.5 -2.31622,2.38973 -4.29778,3.5 -6.24609,3.5 -6.17467,0 -14.04275,6.94159 -18.13477,16 -2.31936,5.13429 -2.47095,6.47707 -2.30078,20.19336 0.17157,13.82929 0.31395,14.81663 2.43164,16.78906 2.53041,2.35685 3.09946,3.96825 0.69727,1.97461 -2.13212,-1.7695 -9.44698,-1.62175 -13.00977,0.26367 -1.61504,0.85468 -4.175,2.04433 -5.6875,2.64453 -1.5125,0.6002 -2.74995,1.66399 -2.75195,2.36328 -0.003,1.49241 -6.78824,1.9224 -7.67578,0.48633 -0.31964,-0.51719 -2.5205,-1.80033 -4.89258,-2.84961 -5.08664,-2.25006 -11.37584,-1.68697 -14.03906,1.25586 -2.27284,2.51146 -4.17897,2.37568 -4.57031,-0.32617 -0.29596,-2.04338 -4.01337,-4.56147 -9.1836,-6.2207 -1.54307,-0.49521 -1.64426,-0.85804 -0.59764,-2.11914 2.41811,-2.91366 -0.46184,-5.91479 -7.08789,-7.38477 -3.25412,-0.72191 -6.83475,-1.07227 -7.95508,-0.7793 -1.52701,0.39932 -2.41925,-0.20951 -3.56836,-2.43164 -1.41227,-2.73102 -1.90292,-2.94092 -6.23047,-2.6621 -3.81036,0.24549 -5.02349,-0.0993 -6.42773,-1.83008 -1.10276,-1.35922 -3.46193,-2.39146 -6.5,-2.84375 -2.62293,-0.39048 -5.21954,-1.07478 -5.76954,-1.51953 -1.69157,-1.36788 -9.19725,-3.05763 -10.81836,-2.43555 -0.84976,0.32608 -1.84194,2.4465 -2.22851,4.75976 -0.38342,2.29441 -1.20602,4.50217 -1.82617,4.90625 -1.65222,1.07656 -6.46196,0.92508 -8.70508,-0.27539 -1.19981,-0.64212 -2.56684,-0.69672 -3.56055,-0.14062 -1.03759,0.58067 -2.55698,0.43149 -4.25976,-0.41797 -2.21185,-1.10343 -3.30202,-1.0877 -6.625,0.0957 -5.79979,2.06545 -7.16499,1.84608 -9.68361,-1.56054 -1.24641,-1.68585 -3.76178,-3.77615 -5.59179,-4.64454 -3.17086,-1.50467 -3.29809,-1.77268 -2.6875,-5.68554 0.39924,-2.55845 1.55474,-4.87295 3.06445,-6.14258 1.33256,-1.12067 2.42187,-2.7743 2.42187,-3.67383 0,-0.89953 1.25809,-2.90613 2.79493,-4.46094 3.09782,-3.13402 5.7214,-8.68201 4.80665,-10.16211 -0.32481,-0.52555 0.10306,-1.22142 0.95117,-1.54687 1.77762,-0.68214 1.30192,-5.42185 -1.2168,-12.11914 -2.00573,-5.33328 -3.95652,-7.33887 -7.85548,-8.07032 -2.70828,-0.50812 -3.1589,-0.96649 -2.71875,-2.76953 0.29009,-1.18837 0.87736,-2.61371 1.30469,-3.16797 0.42732,-0.55426 0.92474,-3.70426 1.10547,-7 0.29498,-5.379 0.58111,-6.06485 2.79687,-6.71289 1.60674,-0.46992 3.29234,-0.18336 4.83009,0.82421 3.01274,1.97402 5.20117,1.14195 5.20117,-1.97851 0,-1.94043 0.40593,-2.33176 1.98828,-1.91797 1.24063,0.32443 2.21125,-0.0658 2.58399,-1.03711 0.45176,-1.17727 1.16571,-1.33863 2.92969,-0.66797 1.72444,0.65563 4.06598,0.19828 8.98632,-1.7539 5.45947,-2.16608 6.99671,-2.42487 8.56836,-1.44336 2.97594,1.8585 4.2288,1.46634 7.37305,-2.30469 1.63256,-1.958 3.84143,-3.5 5.01367,-3.5 1.68003,0 2.43382,-1.12372 3.80469,-5.67188 1.25277,-4.15631 1.41904,-6.02446 0.61914,-6.98828 -1.15463,-1.39125 -0.43503,-1.89484 3.63281,-2.53906 1.45935,-0.23112 2.0867,-1.2273 2.32227,-3.68555 0.17757,-1.85293 -0.15993,-3.85133 -0.75,-4.4414 -1.64901,-1.64901 -1.27484,-4.49606 0.73242,-5.57032 0.99296,-0.5314 2.67141,-2.57222 3.72852,-4.53515 1.05711,-1.96293 2.41079,-3.56836 3.00781,-3.56836 1.4689,0 6.45898,-5.29969 6.45898,-6.85938 0,-0.68724 1.33344,-2.67445 2.96289,-4.41796 2.52312,-2.69971 2.88906,-3.75643 2.4668,-7.11719 -0.49642,-3.95103 1.07458,-5.92149 3.68164,-5.77344 z"
id="path4858"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="paca"
onmouseover="get_region_infos(this)"
inkscape:label="paca">
<path
style="fill:#f2f2f2"
d="m 656.39688,447.52299 c 1.19535,-0.10882 1.90529,0.68228 2.87696,3.00782 0.78769,1.88519 2.07301,3.42773 2.85742,3.42773 0.92356,0 1.53536,1.31124 1.73633,3.71875 0.24628,2.95008 1.02213,4.19444 3.7539,6.0293 1.89349,1.27181 4.14349,2.24787 5,2.16796 2.90443,-0.27112 4.17744,0.0809 3.60938,1 -0.31139,0.50385 -0.12831,2.0713 0.4082,3.48243 0.80715,2.12296 0.63648,2.7475 -0.99219,3.61914 -1.12301,0.60101 -1.96875,2.0899 -1.96875,3.46679 0,1.32731 -1.125,3.62768 -2.5,5.11133 -2.84227,3.06686 -2.96384,3.68527 -1.3125,6.72071 0.65355,1.20134 1.06426,3.70781 0.91211,5.57031 -0.15215,1.8625 0.10602,3.6625 0.57227,4 0.46625,0.3375 2.0439,2.46259 3.50781,4.72265 1.89168,2.92047 3.57808,4.29258 5.82617,4.74219 1.73973,0.34795 4.43131,1.53614 5.98242,2.64063 1.55112,1.10449 3.31963,2.00781 3.92969,2.00781 0.61006,0 1.96734,0.53672 3.01563,1.19141 1.47383,0.92042 3.07502,0.92042 7.0625,0 6.86439,-1.58449 7.76557,-1.51425 8.45508,0.6582 0.6724,2.11855 -0.92638,5.56733 -4.24805,9.16406 -1.26303,1.36762 -2.99347,3.24088 -3.8457,4.16211 -1.04231,1.12669 -1.34144,2.61773 -0.91602,4.55469 0.68277,3.10863 0.27218,3.40517 -12.67773,9.1914 -4.91771,4.51052 -5.03561,4.59518 -13.19141,9.6504 -0.86429,0.86427 -1.57227,2.42348 -1.57227,3.46484 0,2.23122 -2.82318,3.96289 -6.45898,3.96289 -1.76063,0 -2.87041,0.72079 -3.46484,2.25 -0.48103,1.2375 -2.26926,3.5721 -3.97461,5.1875 -3.55965,3.37189 -3.99408,5.5625 -1.10157,5.5625 1.14933,0 2,0.6676 2,1.56836 0,1.0695 -0.58635,1.38079 -1.84765,0.98047 -1.01667,-0.32268 -3.15417,0.0935 -4.75,0.92578 -1.59583,0.83223 -3.63414,1.51653 -4.5293,1.51953 -0.89515,0.003 -2.13503,0.61913 -2.75587,1.36719 -0.64369,0.77561 -2.20439,1.15355 -3.63086,0.88086 -1.37582,-0.263 -3.8334,0.0739 -5.46094,0.74804 -2.32698,0.96382 -4.03925,0.96713 -8.01367,0.0137 -3.76575,-0.90336 -5.40123,-0.92423 -6.41601,-0.082 -1.03955,0.86275 -1.50046,0.76789 -1.94727,-0.39648 -0.32197,-0.83903 -1.27492,-1.52539 -2.11719,-1.52539 -0.84226,0 -2.4539,-0.92265 -3.58203,-2.05078 -1.27612,-1.27612 -2.75589,-1.82719 -3.91601,-1.45899 -1.02558,0.32551 -2.15407,0.12315 -2.50782,-0.44922 -0.35375,-0.57238 -2.41644,-1.04101 -4.58398,-1.04101 -3.80253,0 -3.94141,-0.11625 -3.94141,-3.34375 0,-4.67208 -3.0721,-7.39945 -6.55078,-5.81445 -1.39864,0.63726 -4.26761,1.1582 -6.375,1.1582 -3.31021,0 -4.00028,-0.40581 -5.06836,-2.98438 -0.88172,-2.12866 -2.25964,-3.26798 -4.80468,-3.9707 -4.22385,-1.16626 -6.20118,-0.007 -6.20118,3.63477 0,2.24634 -0.32937,2.41256 -4.25,2.1289 -3.67085,-0.2656 -4.29855,-0.64926 -4.60156,-2.80859 -0.47503,-3.38519 -1.69204,-3.96648 -8.33984,-3.98438 -6.77099,-0.0182 -8.01521,-1.21491 -3.4961,-3.35937 4.71727,-2.23849 7.25879,-5.26297 5.84961,-6.96094 -1.71527,-2.06677 0.52227,-3.62119 4.32617,-3.0039 l 3.25391,0.52929 0.70313,-5.62109 c 0.82918,-6.63655 1.36426,-6.36654 6.95617,-14.37316 0,0 1.21267,-7.12447 -2.61438,-12.89051 0.3048,-1.59448 -0.32674,-3.57413 -1.75781,-5.50977 -1.53936,-2.08208 -1.91257,-3.34329 -1.19922,-4.05664 1.65191,-1.65191 4.16992,-0.0573 4.16992,2.64063 0,3.0308 1.33666,3.98472 3.70899,2.64843 6.84915,-3.85798 13.29101,-4.34603 13.29101,-1.00781 0,1.76233 3.09128,3.36913 5.56446,2.89258 3.01922,-0.58176 5.43636,0.22049 5.44336,1.80664 0.0131,2.92908 8.00035,5.66383 9.49218,3.25 0.33992,-0.55 2.16606,-1 4.0586,-1 h 3.4414 v -5.5 c 0,-3.025 -0.45,-5.5 -1,-5.5 -0.55,0 -1,-0.84139 -1,-1.87109 0,-1.40641 -0.98162,-2.03031 -3.94336,-2.50391 -4.23519,-0.67724 -6.10394,-2.3586 -4.03906,-3.63477 0.70058,-0.433 1.0046,-1.48881 0.67578,-2.3457 -0.49154,-1.28094 -0.17044,-1.39593 1.80078,-0.64648 1.82752,0.69483 2.94452,0.46165 4.70118,-0.97852 2.00643,-1.64492 2.13943,-2.15857 1.03125,-3.97656 -0.88562,-1.4529 -0.97236,-2.64955 -0.28516,-3.9336 0.54322,-1.01502 0.81887,-2.01869 0.61133,-2.22851 -0.20755,-0.20981 0.92078,-0.42853 2.50781,-0.48633 3.71208,-0.13523 5.93945,-2.01711 5.93945,-5.01758 0,-1.97882 0.50678,-2.37695 3.02149,-2.37695 2.24221,0 3.31177,-0.63677 4.14648,-2.46875 0.61863,-1.35776 1.50795,-2.23103 1.97657,-1.94141 0.4686,0.28962 1.85283,-0.17438 3.07617,-1.03125 1.39079,-0.97415 4.38938,-1.55859 8.00195,-1.55859 h 5.77735 v -3.94141 c 0,-2.16754 -0.45001,-4.21867 -1.00001,-4.55859 -0.55,-0.33992 -1,-1.49105 -1,-2.55859 0,-1.42495 -0.69352,-1.94141 -2.60742,-1.94141 -1.9664,0 -2.45784,-0.38892 -2,-1.58203 0.33385,-0.86998 0.60742,-1.76998 0.60742,-2 0,-1.04667 2.98628,-0.27122 3.70118,0.96094 0.43983,0.75807 2.2918,1.69979 4.11719,2.09375 2.80879,0.60619 3.40065,0.40925 3.84375,-1.28516 0.28796,-1.10117 1.41787,-2.23544 2.51172,-2.52149 0.19277,-0.0504 0.37416,-0.086 0.54492,-0.10156 z"
id="path4860"
inkscape:connector-curvature="0" />
</g>
<g
inkscape:groupmode="layer"
id="corse"
onmouseover="get_region_infos(this)"
inkscape:label="corse">
<path
style="fill:#f2f2f2"
d="m 793.12521,588.33102 1.11328,2.70117 c 1.34138,3.25602 1.60092,9.62275 0.65235,15.98242 -0.56135,3.76353 -0.30334,5.33514 1.30859,8 1.62655,2.68901 2.13626,5.90039 2.69727,16.97071 l 0.6914,13.65234 -3.74609,5.33008 c -3.45433,4.91451 -3.76172,5.91962 -3.9375,12.875 -0.22815,9.02708 -0.94879,11.64096 -3.59766,13.05859 -1.19752,0.64089 -1.91002,1.93858 -1.7832,3.24805 0.20077,2.07306 -0.1975,3.62291 -2.10351,8.18164 -0.45991,1.1 -0.98049,2.49461 -1.15821,3.09961 -0.17772,0.60499 -0.88915,0.90549 -1.58008,0.66601 -0.69098,-0.23948 -1.0057,-0.84199 -0.69921,-1.33789 0.74514,-1.20568 -3.13735,-5.29844 -4.32813,-4.5625 -1.28312,0.79301 -11.21894,-4.26307 -11.21094,-5.70507 0.003,-0.6383 1.35348,-1.92637 3,-2.86329 1.64653,-0.93692 2.99414,-2.3305 2.99414,-3.09765 0,-1.31188 -7.5069,-5.16918 -9.34765,-4.80274 -0.46661,0.0929 0.0959,-1.03083 1.25,-2.49804 2.50926,-3.19 2.8111,-8.91091 0.51758,-9.79102 -0.86871,-0.33335 -2.78121,-0.37741 -4.25,-0.0996 -1.46884,0.27782 -2.10743,0.24014 -1.41993,-0.084 0.6875,-0.32412 1.25,-1.17269 1.25,-1.88477 0,-0.71208 1.00781,-1.96489 2.24024,-2.7832 2.09709,-1.39241 2.14548,-1.66494 0.75781,-4.25781 -0.8155,-1.52378 -2.72331,-3.20363 -4.24023,-3.73243 -1.92579,-0.67133 -2.75782,-1.65023 -2.75782,-3.24609 2.23728,-2.77617 2.21735,-2.80287 3.50388,-6.51762 -1.79003,-2.44802 -2.87333,-6.64591 -1.00391,-7.36328 0.825,-0.31658 1.5,-1.74619 1.5,-3.17773 0,-2.63383 2.00671,-5.46094 3.87696,-5.46094 0.56095,0 2.23314,-1.125 3.71679,-2.5 1.48365,-1.375 3.51205,-2.5 4.50586,-2.5 2.98379,0 6.69925,-2.11957 7.22266,-4.12109 0.60105,-2.29842 4.88279,-2.54168 6.67773,-0.37891 3.40584,4.10379 7.49173,-0.96516 6.62696,-8.22266 -0.31304,-2.62719 -0.20247,-6.57734 0.24609,-8.77734 z"
id="path3779"
inkscape:connector-curvature="0" />
</g>
</svg>
<div>
<p id="max_temp">40°C</p>
<div id="temp_indicator"></div>
<p id="min_temp">-10°C</p>
</div>
<div id="meteo_box">
<p id="city"></p>
<p id="temp"></p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment