Skip to content

Instantly share code, notes, and snippets.

@chrisgemignani
Created July 14, 2011 23:36
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save chrisgemignani/1083726 to your computer and use it in GitHub Desktop.
Save chrisgemignani/1083726 to your computer and use it in GitHub Desktop.
Simple Raphael Maps using D3 Projections
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Simple Raphael Maps Using D3 Projections</title>
<script type="text/javascript" charset="utf-8" src="raphael-min.js"></script>
<script type="text/javascript" charset="utf-8" src="geo-projection.js"></script>
<script type="text/javascript" charset="utf-8" src="us.svg.js"></script>
<script type="text/javascript" charset="utf-8" src="world.svg.js"></script>
<style type="text/css" media="screen">
body {
background-color: white;
}
</style>
</head>
<body>
<h1>I'm a US map using an Albers USA projection</h1>
<div id="map">
</div>
<h1>I'm a World map using a mercator projection</h1>
<div id="worldmap">
</div>
<script type="text/javascript" charset="utf-8">
// This scale determines the size of the map
// The maps are in a native 950x500px size.
var scale = .45;
//------------------------------
// Create the US map
//------------------------------
var projection = geo.albersUsa();
var paper = Raphael("map", 950*scale, 500*scale);
// Add all the states
// Their position is hardcoded
for (k in usMap)
{
fill = (k == 'Virginia') ? '#FF0099' : '#CCC';
paper.path(usMap[k])
.attr({id: k, fill: fill, stroke: "white", "stroke-width": 0.5})
.scale(scale,scale,0,0);
}
// Call out the ClientLogin Google API to get values
values = [
{'City': 'San Francisco', lon: 37.6, lat: -122.3, people: 150},
{'City': 'New York', lon: 40.7, lat: -74.0, people: 60},
{'City': 'Honolulu', lon: 21.3, lat: -157.9, people: 40},
]
// Add the points
for (i=0; i<values.length; i++)
{
v = values[i];
xy = projection([v.lat, v.lon]);
paper.circle(xy[0], xy[1], Math.sqrt(v.people))
.attr({stroke: "white", "stroke-width": 0.5, fill: "#f60", opacity: 0.75})
.scale(scale,scale,0,0);
}
//------------------------------
// Create the World map
//------------------------------
var worldProjection = geo.mercator();
var worldPaper = Raphael("worldmap", 950*scale, 500*scale);
// Add all the countries
// Their position is hardcoded
for (k in worldMap)
{
// Highlight Germany
fill = (k == 'DE') ? '#FF0099' : '#CCC';
worldPaper.path(worldMap[k])
.attr({id: k, fill: fill, stroke: "white", "stroke-width": 0.5})
.scale(scale,scale,0,0);
}
// Add the points
for (i=0; i<values.length; i++)
{
v = values[i];
xy = worldProjection([v.lat, v.lon]);
worldPaper.circle(xy[0], xy[1], Math.sqrt(v.people))
.attr({stroke: "white", "stroke-width": 0.25, fill: "#f60", opacity: 0.75})
.scale(scale,scale,0,0);
}
</script>
</body>
</html>
(function(){geo = {};
// This geographic projection library is
// derived from D3 library by Mike Bostock
// https://github.com/mbostock/d3/
// which is licensed under a BSD license.
// mercator with custom default scaling to match world.svg.js
geo.mercator = function() {
var scale = 1000,
translate = [465, 310];
function mercator(coordinates) {
var x = (coordinates[0]) / 360,
y = (-180 / Math.PI * Math.log(Math.tan(Math.PI / 4 + coordinates[1] * Math.PI / 360))) / 360;
return [
scale * x + translate[0],
scale * Math.max(-.5, Math.min(.5, y)) + translate[1]
];
}
mercator.scale = function(x) {
if (!arguments.length) return scale;
scale = +x;
return mercator;
};
mercator.translate = function(x) {
if (!arguments.length) return translate;
translate = [+x[0], +x[1]];
return mercator;
};
return mercator;
};
// Derived from Tom Carden's Albers implementation for Protovis.
// http://gist.github.com/476238
// http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html
geo.albers = function() {
var origin = [-98, 38],
parallels = [29.5, 45.5],
scale = 1000,
translate = [480, 250],
lng0, // d3_radians * origin[0]
n,
C,
p0;
function albers(coordinates) {
var t = n * (d3_radians * coordinates[0] - lng0),
p = Math.sqrt(C - 2 * n * Math.sin(d3_radians * coordinates[1])) / n;
return [
scale * p * Math.sin(t) + translate[0],
scale * (p * Math.cos(t) - p0) + translate[1]
];
}
function reload() {
var phi1 = d3_radians * parallels[0],
phi2 = d3_radians * parallels[1],
lat0 = d3_radians * origin[1],
s = Math.sin(phi1),
c = Math.cos(phi1);
lng0 = d3_radians * origin[0];
n = .5 * (s + Math.sin(phi2));
C = c * c + 2 * n * s;
p0 = Math.sqrt(C - 2 * n * Math.sin(lat0)) / n;
return albers;
}
albers.origin = function(x) {
if (!arguments.length) return origin;
origin = [+x[0], +x[1]];
return reload();
};
albers.parallels = function(x) {
if (!arguments.length) return parallels;
parallels = [+x[0], +x[1]];
return reload();
};
albers.scale = function(x) {
if (!arguments.length) return scale;
scale = +x;
return albers;
};
albers.translate = function(x) {
if (!arguments.length) return translate;
translate = [+x[0], +x[1]];
return albers;
};
return reload();
};
// A composite projection for the United States, 960x500. The set of standard
// parallels for each region comes from USGS, which is published here:
// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers
// TODO allow the composite projection to be rescaled?
geo.albersUsa = function() {
var lower48 = geo.albers();
var alaska = geo.albers()
.origin([-160, 60])
.parallels([55, 65]);
var hawaii = geo.albers()
.origin([-160, 20])
.parallels([8, 18]);
var puertoRico = geo.albers()
.origin([-60, 10])
.parallels([8, 18]);
function albersUsa(coordinates) {
var lon = coordinates[0],
lat = coordinates[1];
return (lat < 25
? (lon < -100 ? hawaii : puertoRico)
: (lat > 50 ? alaska : lower48))(coordinates);
}
albersUsa.scale = function(x) {
if (!arguments.length) return lower48.scale();
lower48.scale(x);
alaska.scale(x * .6);
hawaii.scale(x);
puertoRico.scale(x * 1.5);
return albersUsa.translate(lower48.translate());
};
albersUsa.translate = function(x) {
if (!arguments.length) return lower48.translate();
var dz = lower48.scale() / 1000,
dx = x[0],
dy = x[1];
lower48.translate(x);
alaska.translate([dx - 400 * dz, dy + 170 * dz]);
hawaii.translate([dx - 190 * dz, dy + 200 * dz]);
puertoRico.translate([dx + 580 * dz, dy + 430 * dz]);
return albersUsa;
};
return albersUsa.scale(lower48.scale());
};
var d3_radians = Math.PI / 180;
})();
/*
* Raphael 1.5.2 - JavaScript Vector Library
*
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://raphaeljs.com/license.html) license.
*/
(function(){function a(){if(a.is(arguments[0],G)){var b=arguments[0],d=bV[m](a,b.splice(0,3+a.is(b[0],E))),e=d.set();for(var g=0,h=b[w];g<h;g++){var i=b[g]||{};c[f](i.type)&&e[L](d[i.type]().attr(i))}return e}return bV[m](a,arguments)}a.version="1.5.2";var b=/[, ]+/,c={circle:1,rect:1,path:1,ellipse:1,text:1,image:1},d=/\{(\d+)\}/g,e="prototype",f="hasOwnProperty",g=document,h=window,i={was:Object[e][f].call(h,"Raphael"),is:h.Raphael},j=function(){this.customAttributes={}},k,l="appendChild",m="apply",n="concat",o="createTouch"in g,p="",q=" ",r=String,s="split",t="click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend orientationchange touchcancel gesturestart gesturechange gestureend"[s](q),u={mousedown:"touchstart",mousemove:"touchmove",mouseup:"touchend"},v="join",w="length",x=r[e].toLowerCase,y=Math,z=y.max,A=y.min,B=y.abs,C=y.pow,D=y.PI,E="number",F="string",G="array",H="toString",I="fill",J=Object[e][H],K={},L="push",M=/^url\(['"]?([^\)]+?)['"]?\)$/i,N=/^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i,O={"NaN":1,Infinity:1,"-Infinity":1},P=/^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,Q=y.round,R="setAttribute",S=parseFloat,T=parseInt,U=" progid:DXImageTransform.Microsoft",V=r[e].toUpperCase,W={blur:0,"clip-rect":"0 0 1e9 1e9",cursor:"default",cx:0,cy:0,fill:"#fff","fill-opacity":1,font:"10px \"Arial\"","font-family":"\"Arial\"","font-size":"10","font-style":"normal","font-weight":400,gradient:0,height:0,href:"http://raphaeljs.com/",opacity:1,path:"M0,0",r:0,rotation:0,rx:0,ry:0,scale:"1 1",src:"",stroke:"#000","stroke-dasharray":"","stroke-linecap":"butt","stroke-linejoin":"butt","stroke-miterlimit":0,"stroke-opacity":1,"stroke-width":1,target:"_blank","text-anchor":"middle",title:"Raphael",translation:"0 0",width:0,x:0,y:0},X={along:"along",blur:E,"clip-rect":"csv",cx:E,cy:E,fill:"colour","fill-opacity":E,"font-size":E,height:E,opacity:E,path:"path",r:E,rotation:"csv",rx:E,ry:E,scale:"csv",stroke:"colour","stroke-opacity":E,"stroke-width":E,translation:"csv",width:E,x:E,y:E},Y="replace",Z=/^(from|to|\d+%?)$/,$=/\s*,\s*/,_={hs:1,rg:1},ba=/,?([achlmqrstvxz]),?/gi,bb=/([achlmqstvz])[\s,]*((-?\d*\.?\d*(?:e[-+]?\d+)?\s*,?\s*)+)/ig,bc=/(-?\d*\.?\d*(?:e[-+]?\d+)?)\s*,?\s*/ig,bd=/^r(?:\(([^,]+?)\s*,\s*([^\)]+?)\))?/,be=function(a,b){return a.key-b.key};a.type=h.SVGAngle||g.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")?"SVG":"VML";if(a.type=="VML"){var bf=g.createElement("div"),bg;bf.innerHTML="<v:shape adj=\"1\"/>";bg=bf.firstChild;bg.style.behavior="url(#default#VML)";if(!(bg&&typeof bg.adj=="object"))return a.type=null;bf=null}a.svg=!(a.vml=a.type=="VML");j[e]=a[e];k=j[e];a._id=0;a._oid=0;a.fn={};a.is=function(a,b){b=x.call(b);if(b=="finite")return!O[f](+a);return b=="null"&&a===null||b==typeof a||b=="object"&&a===Object(a)||b=="array"&&Array.isArray&&Array.isArray(a)||J.call(a).slice(8,-1).toLowerCase()==b};a.angle=function(b,c,d,e,f,g){{if(f==null){var h=b-d,i=c-e;if(!h&&!i)return 0;return((h<0)*180+y.atan(-i/-h)*180/D+360)%360}return a.angle(b,c,f,g)-a.angle(d,e,f,g)}};a.rad=function(a){return a%360*D/180};a.deg=function(a){return a*180/D%360};a.snapTo=function(b,c,d){d=a.is(d,"finite")?d:10;if(a.is(b,G)){var e=b.length;while(e--)if(B(b[e]-c)<=d)return b[e]}else{b=+b;var f=c%b;if(f<d)return c-f;if(f>b-d)return c-f+b}return c};function bh(){var a=[],b=0;for(;b<32;b++)a[b]=(~(~(y.random()*16)))[H](16);a[12]=4;a[16]=(a[16]&3|8)[H](16);return"r-"+a[v]("")}a.setWindow=function(a){h=a;g=h.document};var bi=function(b){if(a.vml){var c=/^\s+|\s+$/g,d;try{var e=new ActiveXObject("htmlfile");e.write("<body>");e.close();d=e.body}catch(a){d=createPopup().document.body}var f=d.createTextRange();bi=bm(function(a){try{d.style.color=r(a)[Y](c,p);var b=f.queryCommandValue("ForeColor");b=(b&255)<<16|b&65280|(b&16711680)>>>16;return"#"+("000000"+b[H](16)).slice(-6)}catch(a){return"none"}})}else{var h=g.createElement("i");h.title="Raphaël Colour Picker";h.style.display="none";g.body[l](h);bi=bm(function(a){h.style.color=a;return g.defaultView.getComputedStyle(h,p).getPropertyValue("color")})}return bi(b)},bj=function(){return"hsb("+[this.h,this.s,this.b]+")"},bk=function(){return"hsl("+[this.h,this.s,this.l]+")"},bl=function(){return this.hex};a.hsb2rgb=function(b,c,d,e){if(a.is(b,"object")&&"h"in b&&"s"in b&&"b"in b){d=b.b;c=b.s;b=b.h;e=b.o}return a.hsl2rgb(b,c,d/2,e)};a.hsl2rgb=function(b,c,d,e){if(a.is(b,"object")&&"h"in b&&"s"in b&&"l"in b){d=b.l;c=b.s;b=b.h}if(b>1||c>1||d>1){b/=360;c/=100;d/=100}var f={},g=["r","g","b"],h,i,j,k,l,m;if(c){d<0.5?h=d*(1+c):h=d+c-d*c;i=2*d-h;for(var n=0;n<3;n++){j=b+1/3*-(n-1);j<0&&j++;j>1&&j--;j*6<1?f[g[n]]=i+(h-i)*6*j:j*2<1?f[g[n]]=h:j*3<2?f[g[n]]=i+(h-i)*(2/3-j)*6:f[g[n]]=i}}else f={r:d,g:d,b:d};f.r*=255;f.g*=255;f.b*=255;f.hex="#"+(16777216|f.b|f.g<<8|f.r<<16).toString(16).slice(1);a.is(e,"finite")&&(f.opacity=e);f.toString=bl;return f};a.rgb2hsb=function(b,c,d){if(c==null&&a.is(b,"object")&&"r"in b&&"g"in b&&"b"in b){d=b.b;c=b.g;b=b.r}if(c==null&&a.is(b,F)){var e=a.getRGB(b);b=e.r;c=e.g;d=e.b}if(b>1||c>1||d>1){b/=255;c/=255;d/=255}var f=z(b,c,d),g=A(b,c,d),h,i,j=f;{if(g==f)return{h:0,s:0,b:f,toString:bj};var k=f-g;i=k/f;b==f?h=(c-d)/k:c==f?h=2+(d-b)/k:h=4+(b-c)/k;h/=6;h<0&&h++;h>1&&h--}return{h:h,s:i,b:j,toString:bj}};a.rgb2hsl=function(b,c,d){if(c==null&&a.is(b,"object")&&"r"in b&&"g"in b&&"b"in b){d=b.b;c=b.g;b=b.r}if(c==null&&a.is(b,F)){var e=a.getRGB(b);b=e.r;c=e.g;d=e.b}if(b>1||c>1||d>1){b/=255;c/=255;d/=255}var f=z(b,c,d),g=A(b,c,d),h,i,j=(f+g)/2,k;if(g==f)k={h:0,s:0,l:j};else{var l=f-g;i=j<0.5?l/(f+g):l/(2-f-g);b==f?h=(c-d)/l:c==f?h=2+(d-b)/l:h=4+(b-c)/l;h/=6;h<0&&h++;h>1&&h--;k={h:h,s:i,l:j}}k.toString=bk;return k};a._path2string=function(){return this.join(",")[Y](ba,"$1")};function bm(a,b,c){function d(){var g=Array[e].slice.call(arguments,0),h=g[v]("►"),i=d.cache=d.cache||{},j=d.count=d.count||[];if(i[f](h))return c?c(i[h]):i[h];j[w]>=1000&&delete i[j.shift()];j[L](h);i[h]=a[m](b,g);return c?c(i[h]):i[h]}return d}a.getRGB=bm(function(b){if(!b||!(!((b=r(b)).indexOf("-")+1)))return{r:-1,g:-1,b:-1,hex:"none",error:1};if(b=="none")return{r:-1,g:-1,b:-1,hex:"none"};!(_[f](b.toLowerCase().substring(0,2))||b.charAt()=="#")&&(b=bi(b));var c,d,e,g,h,i,j,k=b.match(N);if(k){if(k[2]){g=T(k[2].substring(5),16);e=T(k[2].substring(3,5),16);d=T(k[2].substring(1,3),16)}if(k[3]){g=T((i=k[3].charAt(3))+i,16);e=T((i=k[3].charAt(2))+i,16);d=T((i=k[3].charAt(1))+i,16)}if(k[4]){j=k[4][s]($);d=S(j[0]);j[0].slice(-1)=="%"&&(d*=2.55);e=S(j[1]);j[1].slice(-1)=="%"&&(e*=2.55);g=S(j[2]);j[2].slice(-1)=="%"&&(g*=2.55);k[1].toLowerCase().slice(0,4)=="rgba"&&(h=S(j[3]));j[3]&&j[3].slice(-1)=="%"&&(h/=100)}if(k[5]){j=k[5][s]($);d=S(j[0]);j[0].slice(-1)=="%"&&(d*=2.55);e=S(j[1]);j[1].slice(-1)=="%"&&(e*=2.55);g=S(j[2]);j[2].slice(-1)=="%"&&(g*=2.55);(j[0].slice(-3)=="deg"||j[0].slice(-1)=="°")&&(d/=360);k[1].toLowerCase().slice(0,4)=="hsba"&&(h=S(j[3]));j[3]&&j[3].slice(-1)=="%"&&(h/=100);return a.hsb2rgb(d,e,g,h)}if(k[6]){j=k[6][s]($);d=S(j[0]);j[0].slice(-1)=="%"&&(d*=2.55);e=S(j[1]);j[1].slice(-1)=="%"&&(e*=2.55);g=S(j[2]);j[2].slice(-1)=="%"&&(g*=2.55);(j[0].slice(-3)=="deg"||j[0].slice(-1)=="°")&&(d/=360);k[1].toLowerCase().slice(0,4)=="hsla"&&(h=S(j[3]));j[3]&&j[3].slice(-1)=="%"&&(h/=100);return a.hsl2rgb(d,e,g,h)}k={r:d,g:e,b:g};k.hex="#"+(16777216|g|e<<8|d<<16).toString(16).slice(1);a.is(h,"finite")&&(k.opacity=h);return k}return{r:-1,g:-1,b:-1,hex:"none",error:1}},a);a.getColor=function(a){var b=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||0.75},c=this.hsb2rgb(b.h,b.s,b.b);b.h+=0.075;if(b.h>1){b.h=0;b.s-=0.2;b.s<=0&&(this.getColor.start={h:0,s:1,b:b.b})}return c.hex};a.getColor.reset=function(){delete this.start};a.parsePathString=bm(function(b){if(!b)return null;var c={a:7,c:6,h:1,l:2,m:2,q:4,s:4,t:2,v:1,z:0},d=[];a.is(b,G)&&a.is(b[0],G)&&(d=bo(b));d[w]||r(b)[Y](bb,function(a,b,e){var f=[],g=x.call(b);e[Y](bc,function(a,b){b&&f[L](+b)});if(g=="m"&&f[w]>2){d[L]([b][n](f.splice(0,2)));g="l";b=b=="m"?"l":"L"}while(f[w]>=c[g]){d[L]([b][n](f.splice(0,c[g])));if(!c[g])break}});d[H]=a._path2string;return d});a.findDotsAtSegment=function(a,b,c,d,e,f,g,h,i){var j=1-i,k=C(j,3)*a+C(j,2)*3*i*c+j*3*i*i*e+C(i,3)*g,l=C(j,3)*b+C(j,2)*3*i*d+j*3*i*i*f+C(i,3)*h,m=a+2*i*(c-a)+i*i*(e-2*c+a),n=b+2*i*(d-b)+i*i*(f-2*d+b),o=c+2*i*(e-c)+i*i*(g-2*e+c),p=d+2*i*(f-d)+i*i*(h-2*f+d),q=(1-i)*a+i*c,r=(1-i)*b+i*d,s=(1-i)*e+i*g,t=(1-i)*f+i*h,u=90-y.atan((m-o)/(n-p))*180/D;(m>o||n<p)&&(u+=180);return{x:k,y:l,m:{x:m,y:n},n:{x:o,y:p},start:{x:q,y:r},end:{x:s,y:t},alpha:u}};var bn=bm(function(a){if(!a)return{x:0,y:0,width:0,height:0};a=bw(a);var b=0,c=0,d=[],e=[],f;for(var g=0,h=a[w];g<h;g++){f=a[g];if(f[0]=="M"){b=f[1];c=f[2];d[L](b);e[L](c)}else{var i=bv(b,c,f[1],f[2],f[3],f[4],f[5],f[6]);d=d[n](i.min.x,i.max.x);e=e[n](i.min.y,i.max.y);b=f[5];c=f[6]}}var j=A[m](0,d),k=A[m](0,e);return{x:j,y:k,width:z[m](0,d)-j,height:z[m](0,e)-k}}),bo=function(b){var c=[];if(!a.is(b,G)||!a.is(b&&b[0],G))b=a.parsePathString(b);for(var d=0,e=b[w];d<e;d++){c[d]=[];for(var f=0,g=b[d][w];f<g;f++)c[d][f]=b[d][f]}c[H]=a._path2string;return c},bp=bm(function(b){if(!a.is(b,G)||!a.is(b&&b[0],G))b=a.parsePathString(b);var c=[],d=0,e=0,f=0,g=0,h=0;if(b[0][0]=="M"){d=b[0][1];e=b[0][2];f=d;g=e;h++;c[L](["M",d,e])}for(var i=h,j=b[w];i<j;i++){var k=c[i]=[],l=b[i];if(l[0]!=x.call(l[0])){k[0]=x.call(l[0]);switch(k[0]){case"a":k[1]=l[1];k[2]=l[2];k[3]=l[3];k[4]=l[4];k[5]=l[5];k[6]=+(l[6]-d).toFixed(3);k[7]=+(l[7]-e).toFixed(3);break;case"v":k[1]=+(l[1]-e).toFixed(3);break;case"m":f=l[1];g=l[2];default:for(var m=1,n=l[w];m<n;m++)k[m]=+(l[m]-(m%2?d:e)).toFixed(3)}}else{k=c[i]=[];if(l[0]=="m"){f=l[1]+d;g=l[2]+e}for(var o=0,p=l[w];o<p;o++)c[i][o]=l[o]}var q=c[i][w];switch(c[i][0]){case"z":d=f;e=g;break;case"h":d+=+c[i][q-1];break;case"v":e+=+c[i][q-1];break;default:d+=+c[i][q-2];e+=+c[i][q-1]}}c[H]=a._path2string;return c},0,bo),bq=bm(function(b){if(!a.is(b,G)||!a.is(b&&b[0],G))b=a.parsePathString(b);var c=[],d=0,e=0,f=0,g=0,h=0;if(b[0][0]=="M"){d=+b[0][1];e=+b[0][2];f=d;g=e;h++;c[0]=["M",d,e]}for(var i=h,j=b[w];i<j;i++){var k=c[i]=[],l=b[i];if(l[0]!=V.call(l[0])){k[0]=V.call(l[0]);switch(k[0]){case"A":k[1]=l[1];k[2]=l[2];k[3]=l[3];k[4]=l[4];k[5]=l[5];k[6]=+(l[6]+d);k[7]=+(l[7]+e);break;case"V":k[1]=+l[1]+e;break;case"H":k[1]=+l[1]+d;break;case"M":f=+l[1]+d;g=+l[2]+e;default:for(var m=1,n=l[w];m<n;m++)k[m]=+l[m]+(m%2?d:e)}}else for(var o=0,p=l[w];o<p;o++)c[i][o]=l[o];switch(k[0]){case"Z":d=f;e=g;break;case"H":d=k[1];break;case"V":e=k[1];break;case"M":f=c[i][c[i][w]-2];g=c[i][c[i][w]-1];default:d=c[i][c[i][w]-2];e=c[i][c[i][w]-1]}}c[H]=a._path2string;return c},null,bo),br=function(a,b,c,d){return[a,b,c,d,c,d]},bs=function(a,b,c,d,e,f){var g=1/3,h=2/3;return[g*a+h*c,g*b+h*d,g*e+h*c,g*f+h*d,e,f]},bt=function(a,b,c,d,e,f,g,h,i,j){var k=D*120/180,l=D/180*(+e||0),m=[],o,p=bm(function(a,b,c){var d=a*y.cos(c)-b*y.sin(c),e=a*y.sin(c)+b*y.cos(c);return{x:d,y:e}});if(j){G=j[0];H=j[1];E=j[2];F=j[3]}else{o=p(a,b,-l);a=o.x;b=o.y;o=p(h,i,-l);h=o.x;i=o.y;var q=y.cos(D/180*e),r=y.sin(D/180*e),t=(a-h)/2,u=(b-i)/2,x=t*t/(c*c)+u*u/(d*d);if(x>1){x=y.sqrt(x);c=x*c;d=x*d}var z=c*c,A=d*d,C=(f==g?-1:1)*y.sqrt(B((z*A-z*u*u-A*t*t)/(z*u*u+A*t*t))),E=C*c*u/d+(a+h)/2,F=C*-d*t/c+(b+i)/2,G=y.asin(((b-F)/d).toFixed(9)),H=y.asin(((i-F)/d).toFixed(9));G=a<E?D-G:G;H=h<E?D-H:H;G<0&&(G=D*2+G);H<0&&(H=D*2+H);g&&G>H&&(G=G-D*2);!g&&H>G&&(H=H-D*2)}var I=H-G;if(B(I)>k){var J=H,K=h,L=i;H=G+k*(g&&H>G?1:-1);h=E+c*y.cos(H);i=F+d*y.sin(H);m=bt(h,i,c,d,e,0,g,K,L,[H,J,E,F])}I=H-G;var M=y.cos(G),N=y.sin(G),O=y.cos(H),P=y.sin(H),Q=y.tan(I/4),R=4/3*c*Q,S=4/3*d*Q,T=[a,b],U=[a+R*N,b-S*M],V=[h+R*P,i-S*O],W=[h,i];U[0]=2*T[0]-U[0];U[1]=2*T[1]-U[1];{if(j)return[U,V,W][n](m);m=[U,V,W][n](m)[v]()[s](",");var X=[];for(var Y=0,Z=m[w];Y<Z;Y++)X[Y]=Y%2?p(m[Y-1],m[Y],l).y:p(m[Y],m[Y+1],l).x;return X}},bu=function(a,b,c,d,e,f,g,h,i){var j=1-i;return{x:C(j,3)*a+C(j,2)*3*i*c+j*3*i*i*e+C(i,3)*g,y:C(j,3)*b+C(j,2)*3*i*d+j*3*i*i*f+C(i,3)*h}},bv=bm(function(a,b,c,d,e,f,g,h){var i=e-2*c+a-(g-2*e+c),j=2*(c-a)-2*(e-c),k=a-c,l=(-j+y.sqrt(j*j-4*i*k))/2/i,n=(-j-y.sqrt(j*j-4*i*k))/2/i,o=[b,h],p=[a,g],q;B(l)>"1e12"&&(l=0.5);B(n)>"1e12"&&(n=0.5);if(l>0&&l<1){q=bu(a,b,c,d,e,f,g,h,l);p[L](q.x);o[L](q.y)}if(n>0&&n<1){q=bu(a,b,c,d,e,f,g,h,n);p[L](q.x);o[L](q.y)}i=f-2*d+b-(h-2*f+d);j=2*(d-b)-2*(f-d);k=b-d;l=(-j+y.sqrt(j*j-4*i*k))/2/i;n=(-j-y.sqrt(j*j-4*i*k))/2/i;B(l)>"1e12"&&(l=0.5);B(n)>"1e12"&&(n=0.5);if(l>0&&l<1){q=bu(a,b,c,d,e,f,g,h,l);p[L](q.x);o[L](q.y)}if(n>0&&n<1){q=bu(a,b,c,d,e,f,g,h,n);p[L](q.x);o[L](q.y)}return{min:{x:A[m](0,p),y:A[m](0,o)},max:{x:z[m](0,p),y:z[m](0,o)}}}),bw=bm(function(a,b){var c=bq(a),d=b&&bq(b),e={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g=function(a,b){var c,d;if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];!(a[0]in{T:1,Q:1})&&(b.qx=b.qy=null);switch(a[0]){case"M":b.X=a[1];b.Y=a[2];break;case"A":a=["C"][n](bt[m](0,[b.x,b.y][n](a.slice(1))));break;case"S":c=b.x+(b.x-(b.bx||b.x));d=b.y+(b.y-(b.by||b.y));a=["C",c,d][n](a.slice(1));break;case"T":b.qx=b.x+(b.x-(b.qx||b.x));b.qy=b.y+(b.y-(b.qy||b.y));a=["C"][n](bs(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case"Q":b.qx=a[1];b.qy=a[2];a=["C"][n](bs(b.x,b.y,a[1],a[2],a[3],a[4]));break;case"L":a=["C"][n](br(b.x,b.y,a[1],a[2]));break;case"H":a=["C"][n](br(b.x,b.y,a[1],b.y));break;case"V":a=["C"][n](br(b.x,b.y,b.x,a[1]));break;case"Z":a=["C"][n](br(b.x,b.y,b.X,b.Y));break}return a},h=function(a,b){if(a[b][w]>7){a[b].shift();var e=a[b];while(e[w])a.splice(b++,0,["C"][n](e.splice(0,6)));a.splice(b,1);k=z(c[w],d&&d[w]||0)}},i=function(a,b,e,f,g){if(a&&b&&a[g][0]=="M"&&b[g][0]!="M"){b.splice(g,0,["M",f.x,f.y]);e.bx=0;e.by=0;e.x=a[g][1];e.y=a[g][2];k=z(c[w],d&&d[w]||0)}};for(var j=0,k=z(c[w],d&&d[w]||0);j<k;j++){c[j]=g(c[j],e);h(c,j);d&&(d[j]=g(d[j],f));d&&h(d,j);i(c,d,e,f,j);i(d,c,f,e,j);var l=c[j],o=d&&d[j],p=l[w],q=d&&o[w];e.x=l[p-2];e.y=l[p-1];e.bx=S(l[p-4])||e.x;e.by=S(l[p-3])||e.y;f.bx=d&&(S(o[q-4])||f.x);f.by=d&&(S(o[q-3])||f.y);f.x=d&&o[q-2];f.y=d&&o[q-1]}return d?[c,d]:c},null,bo),bx=bm(function(b){var c=[];for(var d=0,e=b[w];d<e;d++){var f={},g=b[d].match(/^([^:]*):?([\d\.]*)/);f.color=a.getRGB(g[1]);if(f.color.error)return null;f.color=f.color.hex;g[2]&&(f.offset=g[2]+"%");c[L](f)}for(d=1,e=c[w]-1;d<e;d++){if(!c[d].offset){var h=S(c[d-1].offset||0),i=0;for(var j=d+1;j<e;j++){if(c[j].offset){i=c[j].offset;break}}if(!i){i=100;j=e}i=S(i);var k=(i-h)/(j-d+1);for(;d<j;d++){h+=k;c[d].offset=h+"%"}}}return c}),by=function(b,c,d,e){var f;if(a.is(b,F)||a.is(b,"object")){f=a.is(b,F)?g.getElementById(b):b;if(f.tagName)return c==null?{container:f,width:f.style.pixelWidth||f.offsetWidth,height:f.style.pixelHeight||f.offsetHeight}:{container:f,width:c,height:d}}else return{container:1,x:b,y:c,width:d,height:e}},bz=function(a,b){var c=this;for(var d in b){if(b[f](d)&&!(d in a))switch(typeof b[d]){case"function":(function(b){a[d]=a===c?b:function(){return b[m](c,arguments)}})(b[d]);break;case"object":a[d]=a[d]||{};bz.call(this,a[d],b[d]);break;default:a[d]=b[d];break}}},bA=function(a,b){a==b.top&&(b.top=a.prev);a==b.bottom&&(b.bottom=a.next);a.next&&(a.next.prev=a.prev);a.prev&&(a.prev.next=a.next)},bB=function(a,b){if(b.top===a)return;bA(a,b);a.next=null;a.prev=b.top;b.top.next=a;b.top=a},bC=function(a,b){if(b.bottom===a)return;bA(a,b);a.next=b.bottom;a.prev=null;b.bottom.prev=a;b.bottom=a},bD=function(a,b,c){bA(a,c);b==c.top&&(c.top=a);b.next&&(b.next.prev=a);a.next=b.next;a.prev=b;b.next=a},bE=function(a,b,c){bA(a,c);b==c.bottom&&(c.bottom=a);b.prev&&(b.prev.next=a);a.prev=b.prev;b.prev=a;a.next=b},bF=function(a){return function(){throw new Error("Raphaël: you are calling to method “"+a+"” of removed object")}};a.pathToRelative=bp;if(a.svg){k.svgns="http://www.w3.org/2000/svg";k.xlink="http://www.w3.org/1999/xlink";Q=function(a){return+a+(~(~a)===a)*0.5};var bG=function(a,b){if(b)for(var c in b)b[f](c)&&a[R](c,r(b[c]));else{a=g.createElementNS(k.svgns,a);a.style.webkitTapHighlightColor="rgba(0,0,0,0)";return a}};a[H]=function(){return"Your browser supports SVG.\nYou are running Raphaël "+this.version};var bH=function(a,b){var c=bG("path");b.canvas&&b.canvas[l](c);var d=new bN(c,b);d.type="path";bK(d,{fill:"none",stroke:"#000",path:a});return d},bI=function(a,b,c){var d="linear",e=0.5,f=0.5,h=a.style;b=r(b)[Y](bd,function(a,b,c){d="radial";if(b&&c){e=S(b);f=S(c);var g=(f>0.5)*2-1;C(e-0.5,2)+C(f-0.5,2)>0.25&&(f=y.sqrt(0.25-C(e-0.5,2))*g+0.5)&&f!=0.5&&(f=f.toFixed(5)-0.00001*g)}return p});b=b[s](/\s*\-\s*/);if(d=="linear"){var i=b.shift();i=-S(i);if(isNaN(i))return null;var j=[0,0,y.cos(i*D/180),y.sin(i*D/180)],k=1/(z(B(j[2]),B(j[3]))||1);j[2]*=k;j[3]*=k;if(j[2]<0){j[0]=-j[2];j[2]=0}if(j[3]<0){j[1]=-j[3];j[3]=0}}var m=bx(b);if(!m)return null;var n=a.getAttribute(I);n=n.match(/^url\(#(.*)\)$/);n&&c.defs.removeChild(g.getElementById(n[1]));var o=bG(d+"Gradient");o.id=bh();bG(o,d=="radial"?{fx:e,fy:f}:{x1:j[0],y1:j[1],x2:j[2],y2:j[3]});c.defs[l](o);for(var q=0,t=m[w];q<t;q++){var u=bG("stop");bG(u,{offset:m[q].offset?m[q].offset:q?"100%":"0%","stop-color":m[q].color||"#fff"});o[l](u)}bG(a,{fill:"url(#"+o.id+")",opacity:1,"fill-opacity":1});h.fill=p;h.opacity=1;h.fillOpacity=1;return 1},bJ=function(b){var c=b.getBBox();bG(b.pattern,{patternTransform:a.format("translate({0},{1})",c.x,c.y)})},bK=function(c,d){var e={"":[0],none:[0],"-":[3,1],".":[1,1],"-.":[3,1,1,1],"-..":[3,1,1,1,1,1],". ":[1,3],"- ":[4,3],"--":[8,3],"- .":[4,3,1,3],"--.":[8,3,1,3],"--..":[8,3,1,3,1,3]},h=c.node,i=c.attrs,j=c.rotate(),k=function(a,b){b=e[x.call(b)];if(b){var c=a.attrs["stroke-width"]||"1",f=({round:c,square:c,butt:0})[a.attrs["stroke-linecap"]||d["stroke-linecap"]]||0,g=[],i=b[w];while(i--)g[i]=b[i]*c+(i%2?1:-1)*f;bG(h,{"stroke-dasharray":g[v](",")})}};d[f]("rotation")&&(j=d.rotation);var m=r(j)[s](b);if(m.length-1){m[1]=+m[1];m[2]=+m[2]}else m=null;S(j)&&c.rotate(0,true);for(var n in d){if(d[f](n)){if(!W[f](n))continue;var o=d[n];i[n]=o;switch(n){case"blur":c.blur(o);break;case"rotation":c.rotate(o,true);break;case"href":case"title":case"target":var t=h.parentNode;if(x.call(t.tagName)!="a"){var u=bG("a");t.insertBefore(u,h);u[l](h);t=u}n=="target"&&o=="blank"?t.setAttributeNS(c.paper.xlink,"show","new"):t.setAttributeNS(c.paper.xlink,n,o);break;case"cursor":h.style.cursor=o;break;case"clip-rect":var y=r(o)[s](b);if(y[w]==4){c.clip&&c.clip.parentNode.parentNode.removeChild(c.clip.parentNode);var z=bG("clipPath"),A=bG("rect");z.id=bh();bG(A,{x:y[0],y:y[1],width:y[2],height:y[3]});z[l](A);c.paper.defs[l](z);bG(h,{"clip-path":"url(#"+z.id+")"});c.clip=A}if(!o){var B=g.getElementById(h.getAttribute("clip-path")[Y](/(^url\(#|\)$)/g,p));B&&B.parentNode.removeChild(B);bG(h,{"clip-path":p});delete c.clip}break;case"path":c.type=="path"&&bG(h,{d:o?i.path=bq(o):"M0,0"});break;case"width":h[R](n,o);if(i.fx){n="x";o=i.x}else break;case"x":i.fx&&(o=-i.x-(i.width||0));case"rx":if(n=="rx"&&c.type=="rect")break;case"cx":m&&(n=="x"||n=="cx")&&(m[1]+=o-i[n]);h[R](n,o);c.pattern&&bJ(c);break;case"height":h[R](n,o);if(i.fy){n="y";o=i.y}else break;case"y":i.fy&&(o=-i.y-(i.height||0));case"ry":if(n=="ry"&&c.type=="rect")break;case"cy":m&&(n=="y"||n=="cy")&&(m[2]+=o-i[n]);h[R](n,o);c.pattern&&bJ(c);break;case"r":c.type=="rect"?bG(h,{rx:o,ry:o}):h[R](n,o);break;case"src":c.type=="image"&&h.setAttributeNS(c.paper.xlink,"href",o);break;case"stroke-width":h.style.strokeWidth=o;h[R](n,o);i["stroke-dasharray"]&&k(c,i["stroke-dasharray"]);break;case"stroke-dasharray":k(c,o);break;case"translation":var C=r(o)[s](b);C[0]=+C[0]||0;C[1]=+C[1]||0;if(m){m[1]+=C[0];m[2]+=C[1]}cz.call(c,C[0],C[1]);break;case"scale":C=r(o)[s](b);c.scale(+C[0]||1,+C[1]||+C[0]||1,isNaN(S(C[2]))?null:+C[2],isNaN(S(C[3]))?null:+C[3]);break;case I:var D=r(o).match(M);if(D){z=bG("pattern");var E=bG("image");z.id=bh();bG(z,{x:0,y:0,patternUnits:"userSpaceOnUse",height:1,width:1});bG(E,{x:0,y:0});E.setAttributeNS(c.paper.xlink,"href",D[1]);z[l](E);var F=g.createElement("img");F.style.cssText="position:absolute;left:-9999em;top-9999em";F.onload=function(){bG(z,{width:this.offsetWidth,height:this.offsetHeight});bG(E,{width:this.offsetWidth,height:this.offsetHeight});g.body.removeChild(this);c.paper.safari()};g.body[l](F);F.src=D[1];c.paper.defs[l](z);h.style.fill="url(#"+z.id+")";bG(h,{fill:"url(#"+z.id+")"});c.pattern=z;c.pattern&&bJ(c);break}var G=a.getRGB(o);if(G.error)if((({circle:1,ellipse:1})[f](c.type)||r(o).charAt()!="r")&&bI(h,o,c.paper)){i.gradient=o;i.fill="none";break}else{delete d.gradient;delete i.gradient;!a.is(i.opacity,"undefined")&&a.is(d.opacity,"undefined")&&bG(h,{opacity:i.opacity});!a.is(i["fill-opacity"],"undefined")&&a.is(d["fill-opacity"],"undefined")&&bG(h,{"fill-opacity":i["fill-opacity"]})}G[f]("opacity")&&bG(h,{"fill-opacity":G.opacity>1?G.opacity/100:G.opacity});case"stroke":G=a.getRGB(o);h[R](n,G.hex);n=="stroke"&&G[f]("opacity")&&bG(h,{"stroke-opacity":G.opacity>1?G.opacity/100:G.opacity});break;case"gradient":(({circle:1,ellipse:1})[f](c.type)||r(o).charAt()!="r")&&bI(h,o,c.paper);break;case"opacity":i.gradient&&!i[f]("stroke-opacity")&&bG(h,{"stroke-opacity":o>1?o/100:o});case"fill-opacity":if(i.gradient){var H=g.getElementById(h.getAttribute(I)[Y](/^url\(#|\)$/g,p));if(H){var J=H.getElementsByTagName("stop");J[J[w]-1][R]("stop-opacity",o)}break}default:n=="font-size"&&(o=T(o,10)+"px");var K=n[Y](/(\-.)/g,function(a){return V.call(a.substring(1))});h.style[K]=o;h[R](n,o);break}}}bM(c,d);m?c.rotate(m.join(q)):S(j)&&c.rotate(j,true)},bL=1.2,bM=function(b,c){if(b.type!="text"||!(c[f]("text")||c[f]("font")||c[f]("font-size")||c[f]("x")||c[f]("y")))return;var d=b.attrs,e=b.node,h=e.firstChild?T(g.defaultView.getComputedStyle(e.firstChild,p).getPropertyValue("font-size"),10):10;if(c[f]("text")){d.text=c.text;while(e.firstChild)e.removeChild(e.firstChild);var i=r(c.text)[s]("\n");for(var j=0,k=i[w];j<k;j++)if(i[j]){var m=bG("tspan");j&&bG(m,{dy:h*bL,x:d.x});m[l](g.createTextNode(i[j]));e[l](m)}}else{i=e.getElementsByTagName("tspan");for(j=0,k=i[w];j<k;j++)j&&bG(i[j],{dy:h*bL,x:d.x})}bG(e,{y:d.y});var n=b.getBBox(),o=d.y-(n.y+n.height/2);o&&a.is(o,"finite")&&bG(e,{y:d.y+o})},bN=function(b,c){var d=0,e=0;this[0]=b;this.id=a._oid++;this.node=b;b.raphael=this;this.paper=c;this.attrs=this.attrs||{};this.transformations=[];this._={tx:0,ty:0,rt:{deg:0,cx:0,cy:0},sx:1,sy:1};!c.bottom&&(c.bottom=this);this.prev=c.top;c.top&&(c.top.next=this);c.top=this;this.next=null},bO=bN[e];bN[e].rotate=function(c,d,e){if(this.removed)return this;if(c==null){if(this._.rt.cx)return[this._.rt.deg,this._.rt.cx,this._.rt.cy][v](q);return this._.rt.deg}var f=this.getBBox();c=r(c)[s](b);if(c[w]-1){d=S(c[1]);e=S(c[2])}c=S(c[0]);d!=null&&d!==false?this._.rt.deg=c:this._.rt.deg+=c;e==null&&(d=null);this._.rt.cx=d;this._.rt.cy=e;d=d==null?f.x+f.width/2:d;e=e==null?f.y+f.height/2:e;if(this._.rt.deg){this.transformations[0]=a.format("rotate({0} {1} {2})",this._.rt.deg,d,e);this.clip&&bG(this.clip,{transform:a.format("rotate({0} {1} {2})",-this._.rt.deg,d,e)})}else{this.transformations[0]=p;this.clip&&bG(this.clip,{transform:p})}bG(this.node,{transform:this.transformations[v](q)});return this};bN[e].hide=function(){!this.removed&&(this.node.style.display="none");return this};bN[e].show=function(){!this.removed&&(this.node.style.display="");return this};bN[e].remove=function(){if(this.removed)return;bA(this,this.paper);this.node.parentNode.removeChild(this.node);for(var a in this)delete this[a];this.removed=true};bN[e].getBBox=function(){if(this.removed)return this;if(this.type=="path")return bn(this.attrs.path);if(this.node.style.display=="none"){this.show();var a=true}var b={};try{b=this.node.getBBox()}catch(a){}finally{b=b||{}}if(this.type=="text"){b={x:b.x,y:Infinity,width:0,height:0};for(var c=0,d=this.node.getNumberOfChars();c<d;c++){var e=this.node.getExtentOfChar(c);e.y<b.y&&(b.y=e.y);e.y+e.height-b.y>b.height&&(b.height=e.y+e.height-b.y);e.x+e.width-b.x>b.width&&(b.width=e.x+e.width-b.x)}}a&&this.hide();return b};bN[e].attr=function(b,c){if(this.removed)return this;if(b==null){var d={};for(var e in this.attrs)this.attrs[f](e)&&(d[e]=this.attrs[e]);this._.rt.deg&&(d.rotation=this.rotate());(this._.sx!=1||this._.sy!=1)&&(d.scale=this.scale());d.gradient&&d.fill=="none"&&(d.fill=d.gradient)&&delete d.gradient;return d}if(c==null&&a.is(b,F)){if(b=="translation")return cz.call(this);if(b=="rotation")return this.rotate();if(b=="scale")return this.scale();if(b==I&&this.attrs.fill=="none"&&this.attrs.gradient)return this.attrs.gradient;return this.attrs[b]}if(c==null&&a.is(b,G)){var g={};for(var h=0,i=b.length;h<i;h++)g[b[h]]=this.attr(b[h]);return g}if(c!=null){var j={};j[b]=c}else b!=null&&a.is(b,"object")&&(j=b);for(var k in this.paper.customAttributes)if(this.paper.customAttributes[f](k)&&j[f](k)&&a.is(this.paper.customAttributes[k],"function")){var l=this.paper.customAttributes[k].apply(this,[][n](j[k]));this.attrs[k]=j[k];for(var m in l)l[f](m)&&(j[m]=l[m])}bK(this,j);return this};bN[e].toFront=function(){if(this.removed)return this;this.node.parentNode[l](this.node);var a=this.paper;a.top!=this&&bB(this,a);return this};bN[e].toBack=function(){if(this.removed)return this;if(this.node.parentNode.firstChild!=this.node){this.node.parentNode.insertBefore(this.node,this.node.parentNode.firstChild);bC(this,this.paper);var a=this.paper}return this};bN[e].insertAfter=function(a){if(this.removed)return this;var b=a.node||a[a.length-1].node;b.nextSibling?b.parentNode.insertBefore(this.node,b.nextSibling):b.parentNode[l](this.node);bD(this,a,this.paper);return this};bN[e].insertBefore=function(a){if(this.removed)return this;var b=a.node||a[0].node;b.parentNode.insertBefore(this.node,b);bE(this,a,this.paper);return this};bN[e].blur=function(a){var b=this;if(+a!==0){var c=bG("filter"),d=bG("feGaussianBlur");b.attrs.blur=a;c.id=bh();bG(d,{stdDeviation:+a||1.5});c.appendChild(d);b.paper.defs.appendChild(c);b._blur=c;bG(b.node,{filter:"url(#"+c.id+")"})}else{if(b._blur){b._blur.parentNode.removeChild(b._blur);delete b._blur;delete b.attrs.blur}b.node.removeAttribute("filter")}};var bP=function(a,b,c,d){var e=bG("circle");a.canvas&&a.canvas[l](e);var f=new bN(e,a);f.attrs={cx:b,cy:c,r:d,fill:"none",stroke:"#000"};f.type="circle";bG(e,f.attrs);return f},bQ=function(a,b,c,d,e,f){var g=bG("rect");a.canvas&&a.canvas[l](g);var h=new bN(g,a);h.attrs={x:b,y:c,width:d,height:e,r:f||0,rx:f||0,ry:f||0,fill:"none",stroke:"#000"};h.type="rect";bG(g,h.attrs);return h},bR=function(a,b,c,d,e){var f=bG("ellipse");a.canvas&&a.canvas[l](f);var g=new bN(f,a);g.attrs={cx:b,cy:c,rx:d,ry:e,fill:"none",stroke:"#000"};g.type="ellipse";bG(f,g.attrs);return g},bS=function(a,b,c,d,e,f){var g=bG("image");bG(g,{x:c,y:d,width:e,height:f,preserveAspectRatio:"none"});g.setAttributeNS(a.xlink,"href",b);a.canvas&&a.canvas[l](g);var h=new bN(g,a);h.attrs={x:c,y:d,width:e,height:f,src:b};h.type="image";return h},bT=function(a,b,c,d){var e=bG("text");bG(e,{x:b,y:c,"text-anchor":"middle"});a.canvas&&a.canvas[l](e);var f=new bN(e,a);f.attrs={x:b,y:c,"text-anchor":"middle",text:d,font:W.font,stroke:"none",fill:"#000"};f.type="text";bK(f,f.attrs);return f},bU=function(a,b){this.width=a||this.width;this.height=b||this.height;this.canvas[R]("width",this.width);this.canvas[R]("height",this.height);return this},bV=function(){var b=by[m](0,arguments),c=b&&b.container,d=b.x,e=b.y,f=b.width,h=b.height;if(!c)throw new Error("SVG container not found.");var i=bG("svg");d=d||0;e=e||0;f=f||512;h=h||342;bG(i,{xmlns:"http://www.w3.org/2000/svg",version:1.1,width:f,height:h});if(c==1){i.style.cssText="position:absolute;left:"+d+"px;top:"+e+"px";g.body[l](i)}else c.firstChild?c.insertBefore(i,c.firstChild):c[l](i);c=new j;c.width=f;c.height=h;c.canvas=i;bz.call(c,c,a.fn);c.clear();return c};k.clear=function(){var a=this.canvas;while(a.firstChild)a.removeChild(a.firstChild);this.bottom=this.top=null;(this.desc=bG("desc"))[l](g.createTextNode("Created with Raphaël"));a[l](this.desc);a[l](this.defs=bG("defs"))};k.remove=function(){this.canvas.parentNode&&this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]=bF(a)}}if(a.vml){var bW={M:"m",L:"l",C:"c",Z:"x",m:"t",l:"r",c:"v",z:"x"},bX=/([clmz]),?([^clmz]*)/gi,bY=/ progid:\S+Blur\([^\)]+\)/g,bZ=/-?[^,\s-]+/g,b$=1000+q+1000,b_=10,ca={path:1,rect:1},cb=function(a){var b=/[ahqstv]/ig,c=bq;r(a).match(b)&&(c=bw);b=/[clmz]/g;if(c==bq&&!r(a).match(b)){var d=r(a)[Y](bX,function(a,b,c){var d=[],e=x.call(b)=="m",f=bW[b];c[Y](bZ,function(a){if(e&&d[w]==2){f+=d+bW[b=="m"?"l":"L"];d=[]}d[L](Q(a*b_))});return f+d});return d}var e=c(a),f,g;d=[];for(var h=0,i=e[w];h<i;h++){f=e[h];g=x.call(e[h][0]);g=="z"&&(g="x");for(var j=1,k=f[w];j<k;j++)g+=Q(f[j]*b_)+(j!=k-1?",":p);d[L](g)}return d[v](q)};a[H]=function(){return"Your browser doesn’t support SVG. Falling down to VML.\nYou are running Raphaël "+this.version};bH=function(a,b){var c=cd("group");c.style.cssText="position:absolute;left:0;top:0;width:"+b.width+"px;height:"+b.height+"px";c.coordsize=b.coordsize;c.coordorigin=b.coordorigin;var d=cd("shape"),e=d.style;e.width=b.width+"px";e.height=b.height+"px";d.coordsize=b$;d.coordorigin=b.coordorigin;c[l](d);var f=new bN(d,c,b),g={fill:"none",stroke:"#000"};a&&(g.path=a);f.type="path";f.path=[];f.Path=p;bK(f,g);b.canvas[l](c);return f};bK=function(c,d){c.attrs=c.attrs||{};var e=c.node,h=c.attrs,i=e.style,j,k=(d.x!=h.x||d.y!=h.y||d.width!=h.width||d.height!=h.height||d.r!=h.r)&&c.type=="rect",m=c;for(var n in d)d[f](n)&&(h[n]=d[n]);if(k){h.path=cc(h.x,h.y,h.width,h.height,h.r);c.X=h.x;c.Y=h.y;c.W=h.width;c.H=h.height}d.href&&(e.href=d.href);d.title&&(e.title=d.title);d.target&&(e.target=d.target);d.cursor&&(i.cursor=d.cursor);"blur"in d&&c.blur(d.blur);if(d.path&&c.type=="path"||k)e.path=cb(h.path);d.rotation!=null&&c.rotate(d.rotation,true);if(d.translation){j=r(d.translation)[s](b);cz.call(c,j[0],j[1]);if(c._.rt.cx!=null){c._.rt.cx+=+j[0];c._.rt.cy+=+j[1];c.setBox(c.attrs,j[0],j[1])}}if(d.scale){j=r(d.scale)[s](b);c.scale(+j[0]||1,+j[1]||+j[0]||1,+j[2]||null,+j[3]||null)}if("clip-rect"in d){var o=r(d["clip-rect"])[s](b);if(o[w]==4){o[2]=+o[2]+ +o[0];o[3]=+o[3]+ +o[1];var q=e.clipRect||g.createElement("div"),t=q.style,u=e.parentNode;t.clip=a.format("rect({1}px {2}px {3}px {0}px)",o);if(!e.clipRect){t.position="absolute";t.top=0;t.left=0;t.width=c.paper.width+"px";t.height=c.paper.height+"px";u.parentNode.insertBefore(q,u);q[l](u);e.clipRect=q}}d["clip-rect"]||e.clipRect&&(e.clipRect.style.clip=p)}c.type=="image"&&d.src&&(e.src=d.src);if(c.type=="image"&&d.opacity){e.filterOpacity=U+".Alpha(opacity="+d.opacity*100+")";i.filter=(e.filterMatrix||p)+(e.filterOpacity||p)}d.font&&(i.font=d.font);d["font-family"]&&(i.fontFamily="\""+d["font-family"][s](",")[0][Y](/^['"]+|['"]+$/g,p)+"\"");d["font-size"]&&(i.fontSize=d["font-size"]);d["font-weight"]&&(i.fontWeight=d["font-weight"]);d["font-style"]&&(i.fontStyle=d["font-style"]);if(d.opacity!=null||d["stroke-width"]!=null||d.fill!=null||d.stroke!=null||d["stroke-width"]!=null||d["stroke-opacity"]!=null||d["fill-opacity"]!=null||d["stroke-dasharray"]!=null||d["stroke-miterlimit"]!=null||d["stroke-linejoin"]!=null||d["stroke-linecap"]!=null){e=c.shape||e;var v=e.getElementsByTagName(I)&&e.getElementsByTagName(I)[0],x=false;!v&&(x=v=cd(I));if("fill-opacity"in d||"opacity"in d){var y=((+h["fill-opacity"]+1||2)-1)*((+h.opacity+1||2)-1)*((+a.getRGB(d.fill).o+1||2)-1);y=A(z(y,0),1);v.opacity=y}d.fill&&(v.on=true);if(v.on==null||d.fill=="none")v.on=false;if(v.on&&d.fill){var B=d.fill.match(M);if(B){v.src=B[1];v.type="tile"}else{v.color=a.getRGB(d.fill).hex;v.src=p;v.type="solid";if(a.getRGB(d.fill).error&&(m.type in{circle:1,ellipse:1}||r(d.fill).charAt()!="r")&&bI(m,d.fill)){h.fill="none";h.gradient=d.fill}}}x&&e[l](v);var C=e.getElementsByTagName("stroke")&&e.getElementsByTagName("stroke")[0],D=false;!C&&(D=C=cd("stroke"));if(d.stroke&&d.stroke!="none"||d["stroke-width"]||d["stroke-opacity"]!=null||d["stroke-dasharray"]||d["stroke-miterlimit"]||d["stroke-linejoin"]||d["stroke-linecap"])C.on=true;(d.stroke=="none"||C.on==null||d.stroke==0||d["stroke-width"]==0)&&(C.on=false);var E=a.getRGB(d.stroke);C.on&&d.stroke&&(C.color=E.hex);y=((+h["stroke-opacity"]+1||2)-1)*((+h.opacity+1||2)-1)*((+E.o+1||2)-1);var F=(S(d["stroke-width"])||1)*0.75;y=A(z(y,0),1);d["stroke-width"]==null&&(F=h["stroke-width"]);d["stroke-width"]&&(C.weight=F);F&&F<1&&(y*=F)&&(C.weight=1);C.opacity=y;d["stroke-linejoin"]&&(C.joinstyle=d["stroke-linejoin"]||"miter");C.miterlimit=d["stroke-miterlimit"]||8;d["stroke-linecap"]&&(C.endcap=d["stroke-linecap"]=="butt"?"flat":d["stroke-linecap"]=="square"?"square":"round");if(d["stroke-dasharray"]){var G={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"};C.dashstyle=G[f](d["stroke-dasharray"])?G[d["stroke-dasharray"]]:p}D&&e[l](C)}if(m.type=="text"){i=m.paper.span.style;h.font&&(i.font=h.font);h["font-family"]&&(i.fontFamily=h["font-family"]);h["font-size"]&&(i.fontSize=h["font-size"]);h["font-weight"]&&(i.fontWeight=h["font-weight"]);h["font-style"]&&(i.fontStyle=h["font-style"]);m.node.string&&(m.paper.span.innerHTML=r(m.node.string)[Y](/</g,"&#60;")[Y](/&/g,"&#38;")[Y](/\n/g,"<br>"));m.W=h.w=m.paper.span.offsetWidth;m.H=h.h=m.paper.span.offsetHeight;m.X=h.x;m.Y=h.y+Q(m.H/2);switch(h["text-anchor"]){case"start":m.node.style["v-text-align"]="left";m.bbx=Q(m.W/2);break;case"end":m.node.style["v-text-align"]="right";m.bbx=-Q(m.W/2);break;default:m.node.style["v-text-align"]="center";break}}};bI=function(a,b){a.attrs=a.attrs||{};var c=a.attrs,d,e="linear",f=".5 .5";a.attrs.gradient=b;b=r(b)[Y](bd,function(a,b,c){e="radial";if(b&&c){b=S(b);c=S(c);C(b-0.5,2)+C(c-0.5,2)>0.25&&(c=y.sqrt(0.25-C(b-0.5,2))*((c>0.5)*2-1)+0.5);f=b+q+c}return p});b=b[s](/\s*\-\s*/);if(e=="linear"){var g=b.shift();g=-S(g);if(isNaN(g))return null}var h=bx(b);if(!h)return null;a=a.shape||a.node;d=a.getElementsByTagName(I)[0]||cd(I);!d.parentNode&&a.appendChild(d);if(h[w]){d.on=true;d.method="none";d.color=h[0].color;d.color2=h[h[w]-1].color;var i=[];for(var j=0,k=h[w];j<k;j++)h[j].offset&&i[L](h[j].offset+q+h[j].color);d.colors&&(d.colors.value=i[w]?i[v]():"0% "+d.color);if(e=="radial"){d.type="gradientradial";d.focus="100%";d.focussize=f;d.focusposition=f}else{d.type="gradient";d.angle=(270-g)%360}}return 1};bN=function(b,c,d){var e=0,f=0,g=0,h=1;this[0]=b;this.id=a._oid++;this.node=b;b.raphael=this;this.X=0;this.Y=0;this.attrs={};this.Group=c;this.paper=d;this._={tx:0,ty:0,rt:{deg:0},sx:1,sy:1};!d.bottom&&(d.bottom=this);this.prev=d.top;d.top&&(d.top.next=this);d.top=this;this.next=null};bO=bN[e];bO.rotate=function(a,c,d){if(this.removed)return this;if(a==null){if(this._.rt.cx)return[this._.rt.deg,this._.rt.cx,this._.rt.cy][v](q);return this._.rt.deg}a=r(a)[s](b);if(a[w]-1){c=S(a[1]);d=S(a[2])}a=S(a[0]);c!=null?this._.rt.deg=a:this._.rt.deg+=a;d==null&&(c=null);this._.rt.cx=c;this._.rt.cy=d;this.setBox(this.attrs,c,d);this.Group.style.rotation=this._.rt.deg;return this};bO.setBox=function(a,b,c){if(this.removed)return this;var d=this.Group.style,e=this.shape&&this.shape.style||this.node.style;a=a||{};for(var g in a)a[f](g)&&(this.attrs[g]=a[g]);b=b||this._.rt.cx;c=c||this._.rt.cy;var h=this.attrs,i,j,k,l;switch(this.type){case"circle":i=h.cx-h.r;j=h.cy-h.r;k=l=h.r*2;break;case"ellipse":i=h.cx-h.rx;j=h.cy-h.ry;k=h.rx*2;l=h.ry*2;break;case"image":i=+h.x;j=+h.y;k=h.width||0;l=h.height||0;break;case"text":this.textpath.v=["m",Q(h.x),", ",Q(h.y-2),"l",Q(h.x)+1,", ",Q(h.y-2)][v](p);i=h.x-Q(this.W/2);j=h.y-this.H/2;k=this.W;l=this.H;break;case"rect":case"path":if(this.attrs.path){var m=bn(this.attrs.path);i=m.x;j=m.y;k=m.width;l=m.height}else{i=0;j=0;k=this.paper.width;l=this.paper.height}break;default:i=0;j=0;k=this.paper.width;l=this.paper.height;break}b=b==null?i+k/2:b;c=c==null?j+l/2:c;var n=b-this.paper.width/2,o=c-this.paper.height/2,q;d.left!=(q=n+"px")&&(d.left=q);d.top!=(q=o+"px")&&(d.top=q);this.X=ca[f](this.type)?-n:i;this.Y=ca[f](this.type)?-o:j;this.W=k;this.H=l;if(ca[f](this.type)){e.left!=(q=-n*b_+"px")&&(e.left=q);e.top!=(q=-o*b_+"px")&&(e.top=q)}else if(this.type=="text"){e.left!=(q=-n+"px")&&(e.left=q);e.top!=(q=-o+"px")&&(e.top=q)}else{d.width!=(q=this.paper.width+"px")&&(d.width=q);d.height!=(q=this.paper.height+"px")&&(d.height=q);e.left!=(q=i-n+"px")&&(e.left=q);e.top!=(q=j-o+"px")&&(e.top=q);e.width!=(q=k+"px")&&(e.width=q);e.height!=(q=l+"px")&&(e.height=q)}};bO.hide=function(){!this.removed&&(this.Group.style.display="none");return this};bO.show=function(){!this.removed&&(this.Group.style.display="block");return this};bO.getBBox=function(){if(this.removed)return this;if(ca[f](this.type))return bn(this.attrs.path);return{x:this.X+(this.bbx||0),y:this.Y,width:this.W,height:this.H}};bO.remove=function(){if(this.removed)return;bA(this,this.paper);this.node.parentNode.removeChild(this.node);this.Group.parentNode.removeChild(this.Group);this.shape&&this.shape.parentNode.removeChild(this.shape);for(var a in this)delete this[a];this.removed=true};bO.attr=function(b,c){if(this.removed)return this;if(b==null){var d={};for(var e in this.attrs)this.attrs[f](e)&&(d[e]=this.attrs[e]);this._.rt.deg&&(d.rotation=this.rotate());(this._.sx!=1||this._.sy!=1)&&(d.scale=this.scale());d.gradient&&d.fill=="none"&&(d.fill=d.gradient)&&delete d.gradient;return d}if(c==null&&a.is(b,"string")){if(b=="translation")return cz.call(this);if(b=="rotation")return this.rotate();if(b=="scale")return this.scale();if(b==I&&this.attrs.fill=="none"&&this.attrs.gradient)return this.attrs.gradient;return this.attrs[b]}if(this.attrs&&c==null&&a.is(b,G)){var g,h={};for(e=0,g=b[w];e<g;e++)h[b[e]]=this.attr(b[e]);return h}var i;if(c!=null){i={};i[b]=c}c==null&&a.is(b,"object")&&(i=b);if(i){for(var j in this.paper.customAttributes)if(this.paper.customAttributes[f](j)&&i[f](j)&&a.is(this.paper.customAttributes[j],"function")){var k=this.paper.customAttributes[j].apply(this,[][n](i[j]));this.attrs[j]=i[j];for(var l in k)k[f](l)&&(i[l]=k[l])}i.text&&this.type=="text"&&(this.node.string=i.text);bK(this,i);i.gradient&&(({circle:1,ellipse:1})[f](this.type)||r(i.gradient).charAt()!="r")&&bI(this,i.gradient);(!ca[f](this.type)||this._.rt.deg)&&this.setBox(this.attrs)}return this};bO.toFront=function(){!this.removed&&this.Group.parentNode[l](this.Group);this.paper.top!=this&&bB(this,this.paper);return this};bO.toBack=function(){if(this.removed)return this;if(this.Group.parentNode.firstChild!=this.Group){this.Group.parentNode.insertBefore(this.Group,this.Group.parentNode.firstChild);bC(this,this.paper)}return this};bO.insertAfter=function(a){if(this.removed)return this;a.constructor==cC&&(a=a[a.length-1]);a.Group.nextSibling?a.Group.parentNode.insertBefore(this.Group,a.Group.nextSibling):a.Group.parentNode[l](this.Group);bD(this,a,this.paper);return this};bO.insertBefore=function(a){if(this.removed)return this;a.constructor==cC&&(a=a[0]);a.Group.parentNode.insertBefore(this.Group,a.Group);bE(this,a,this.paper);return this};bO.blur=function(b){var c=this.node.runtimeStyle,d=c.filter;d=d.replace(bY,p);if(+b!==0){this.attrs.blur=b;c.filter=d+q+U+".Blur(pixelradius="+(+b||1.5)+")";c.margin=a.format("-{0}px 0 0 -{0}px",Q(+b||1.5))}else{c.filter=d;c.margin=0;delete this.attrs.blur}};bP=function(a,b,c,d){var e=cd("group"),f=cd("oval"),g=f.style;e.style.cssText="position:absolute;left:0;top:0;width:"+a.width+"px;height:"+a.height+"px";e.coordsize=b$;e.coordorigin=a.coordorigin;e[l](f);var h=new bN(f,e,a);h.type="circle";bK(h,{stroke:"#000",fill:"none"});h.attrs.cx=b;h.attrs.cy=c;h.attrs.r=d;h.setBox({x:b-d,y:c-d,width:d*2,height:d*2});a.canvas[l](e);return h};function cc(b,c,d,e,f){return f?a.format("M{0},{1}l{2},0a{3},{3},0,0,1,{3},{3}l0,{5}a{3},{3},0,0,1,{4},{3}l{6},0a{3},{3},0,0,1,{4},{4}l0,{7}a{3},{3},0,0,1,{3},{4}z",b+f,c,d-f*2,f,-f,e-f*2,f*2-d,f*2-e):a.format("M{0},{1}l{2},0,0,{3},{4},0z",b,c,d,e,-d)}bQ=function(a,b,c,d,e,f){var g=cc(b,c,d,e,f),h=a.path(g),i=h.attrs;h.X=i.x=b;h.Y=i.y=c;h.W=i.width=d;h.H=i.height=e;i.r=f;i.path=g;h.type="rect";return h};bR=function(a,b,c,d,e){var f=cd("group"),g=cd("oval"),h=g.style;f.style.cssText="position:absolute;left:0;top:0;width:"+a.width+"px;height:"+a.height+"px";f.coordsize=b$;f.coordorigin=a.coordorigin;f[l](g);var i=new bN(g,f,a);i.type="ellipse";bK(i,{stroke:"#000"});i.attrs.cx=b;i.attrs.cy=c;i.attrs.rx=d;i.attrs.ry=e;i.setBox({x:b-d,y:c-e,width:d*2,height:e*2});a.canvas[l](f);return i};bS=function(a,b,c,d,e,f){var g=cd("group"),h=cd("image");g.style.cssText="position:absolute;left:0;top:0;width:"+a.width+"px;height:"+a.height+"px";g.coordsize=b$;g.coordorigin=a.coordorigin;h.src=b;g[l](h);var i=new bN(h,g,a);i.type="image";i.attrs.src=b;i.attrs.x=c;i.attrs.y=d;i.attrs.w=e;i.attrs.h=f;i.setBox({x:c,y:d,width:e,height:f});a.canvas[l](g);return i};bT=function(b,c,d,e){var f=cd("group"),g=cd("shape"),h=g.style,i=cd("path"),j=i.style,k=cd("textpath");f.style.cssText="position:absolute;left:0;top:0;width:"+b.width+"px;height:"+b.height+"px";f.coordsize=b$;f.coordorigin=b.coordorigin;i.v=a.format("m{0},{1}l{2},{1}",Q(c*10),Q(d*10),Q(c*10)+1);i.textpathok=true;h.width=b.width;h.height=b.height;k.string=r(e);k.on=true;g[l](k);g[l](i);f[l](g);var m=new bN(k,f,b);m.shape=g;m.textpath=i;m.type="text";m.attrs.text=e;m.attrs.x=c;m.attrs.y=d;m.attrs.w=1;m.attrs.h=1;bK(m,{font:W.font,stroke:"none",fill:"#000"});m.setBox();b.canvas[l](f);return m};bU=function(a,b){var c=this.canvas.style;a==+a&&(a+="px");b==+b&&(b+="px");c.width=a;c.height=b;c.clip="rect(0 "+a+" "+b+" 0)";return this};var cd;g.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)");try{!g.namespaces.rvml&&g.namespaces.add("rvml","urn:schemas-microsoft-com:vml");cd=function(a){return g.createElement("<rvml:"+a+" class=\"rvml\">")}}catch(a){cd=function(a){return g.createElement("<"+a+" xmlns=\"urn:schemas-microsoft.com:vml\" class=\"rvml\">")}}bV=function(){var b=by[m](0,arguments),c=b.container,d=b.height,e,f=b.width,h=b.x,i=b.y;if(!c)throw new Error("VML container not found.");var k=new j,n=k.canvas=g.createElement("div"),o=n.style;h=h||0;i=i||0;f=f||512;d=d||342;f==+f&&(f+="px");d==+d&&(d+="px");k.width=1000;k.height=1000;k.coordsize=b_*1000+q+b_*1000;k.coordorigin="0 0";k.span=g.createElement("span");k.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";n[l](k.span);o.cssText=a.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",f,d);if(c==1){g.body[l](n);o.left=h+"px";o.top=i+"px";o.position="absolute"}else c.firstChild?c.insertBefore(n,c.firstChild):c[l](n);bz.call(k,k,a.fn);return k};k.clear=function(){this.canvas.innerHTML=p;this.span=g.createElement("span");this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";this.canvas[l](this.span);this.bottom=this.top=null};k.remove=function(){this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]=bF(a);return true}}var ce=navigator.userAgent.match(/Version\\x2f(.*?)\s/);navigator.vendor=="Apple Computer, Inc."&&(ce&&ce[1]<4||navigator.platform.slice(0,2)=="iP")?k.safari=function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});h.setTimeout(function(){a.remove()})}:k.safari=function(){};var cf=function(){this.returnValue=false},cg=function(){return this.originalEvent.preventDefault()},ch=function(){this.cancelBubble=true},ci=function(){return this.originalEvent.stopPropagation()},cj=(function(){{if(g.addEventListener)return function(a,b,c,d){var e=o&&u[b]?u[b]:b,g=function(e){if(o&&u[f](b))for(var g=0,h=e.targetTouches&&e.targetTouches.length;g<h;g++){if(e.targetTouches[g].target==a){var i=e;e=e.targetTouches[g];e.originalEvent=i;e.preventDefault=cg;e.stopPropagation=ci;break}}return c.call(d,e)};a.addEventListener(e,g,false);return function(){a.removeEventListener(e,g,false);return true}};if(g.attachEvent)return function(a,b,c,d){var e=function(a){a=a||h.event;a.preventDefault=a.preventDefault||cf;a.stopPropagation=a.stopPropagation||ch;return c.call(d,a)};a.attachEvent("on"+b,e);var f=function(){a.detachEvent("on"+b,e);return true};return f}}})(),ck=[],cl=function(a){var b=a.clientX,c=a.clientY,d=g.documentElement.scrollTop||g.body.scrollTop,e=g.documentElement.scrollLeft||g.body.scrollLeft,f,h=ck.length;while(h--){f=ck[h];if(o){var i=a.touches.length,j;while(i--){j=a.touches[i];if(j.identifier==f.el._drag.id){b=j.clientX;c=j.clientY;(a.originalEvent?a.originalEvent:a).preventDefault();break}}}else a.preventDefault();b+=e;c+=d;f.move&&f.move.call(f.move_scope||f.el,b-f.el._drag.x,c-f.el._drag.y,b,c,a)}},cm=function(b){a.unmousemove(cl).unmouseup(cm);var c=ck.length,d;while(c--){d=ck[c];d.el._drag={};d.end&&d.end.call(d.end_scope||d.start_scope||d.move_scope||d.el,b)}ck=[]};for(var cn=t[w];cn--;)(function(b){a[b]=bN[e][b]=function(c,d){if(a.is(c,"function")){this.events=this.events||[];this.events.push({name:b,f:c,unbind:cj(this.shape||this.node||g,b,c,d||this)})}return this};a["un"+b]=bN[e]["un"+b]=function(a){var c=this.events,d=c[w];while(d--)if(c[d].name==b&&c[d].f==a){c[d].unbind();c.splice(d,1);!c.length&&delete this.events;return this}return this}})(t[cn]);bO.hover=function(a,b,c,d){return this.mouseover(a,c).mouseout(b,d||c)};bO.unhover=function(a,b){return this.unmouseover(a).unmouseout(b)};bO.drag=function(b,c,d,e,f,h){this._drag={};this.mousedown(function(i){(i.originalEvent||i).preventDefault();var j=g.documentElement.scrollTop||g.body.scrollTop,k=g.documentElement.scrollLeft||g.body.scrollLeft;this._drag.x=i.clientX+k;this._drag.y=i.clientY+j;this._drag.id=i.identifier;c&&c.call(f||e||this,i.clientX+k,i.clientY+j,i);!ck.length&&a.mousemove(cl).mouseup(cm);ck.push({el:this,move:b,end:d,move_scope:e,start_scope:f,end_scope:h})});return this};bO.undrag=function(b,c,d){var e=ck.length;while(e--)ck[e].el==this&&(ck[e].move==b&&ck[e].end==d)&&ck.splice(e++,1);!ck.length&&a.unmousemove(cl).unmouseup(cm)};k.circle=function(a,b,c){return bP(this,a||0,b||0,c||0)};k.rect=function(a,b,c,d,e){return bQ(this,a||0,b||0,c||0,d||0,e||0)};k.ellipse=function(a,b,c,d){return bR(this,a||0,b||0,c||0,d||0)};k.path=function(b){b&&!a.is(b,F)&&!a.is(b[0],G)&&(b+=p);return bH(a.format[m](a,arguments),this)};k.image=function(a,b,c,d,e){return bS(this,a||"about:blank",b||0,c||0,d||0,e||0)};k.text=function(a,b,c){return bT(this,a||0,b||0,r(c))};k.set=function(a){arguments[w]>1&&(a=Array[e].splice.call(arguments,0,arguments[w]));return new cC(a)};k.setSize=bU;k.top=k.bottom=null;k.raphael=a;function co(){return this.x+q+this.y}bO.resetScale=function(){if(this.removed)return this;this._.sx=1;this._.sy=1;this.attrs.scale="1 1"};bO.scale=function(a,b,c,d){if(this.removed)return this;if(a==null&&b==null)return{x:this._.sx,y:this._.sy,toString:co};b=b||a;!(+b)&&(b=a);var e,f,g,h,i=this.attrs;if(a!=0){var j=this.getBBox(),k=j.x+j.width/2,l=j.y+j.height/2,m=B(a/this._.sx),o=B(b/this._.sy);c=+c||c==0?c:k;d=+d||d==0?d:l;var r=this._.sx>0,s=this._.sy>0,t=~(~(a/B(a))),u=~(~(b/B(b))),x=m*t,y=o*u,z=this.node.style,A=c+B(k-c)*x*(k>c==r?1:-1),C=d+B(l-d)*y*(l>d==s?1:-1),D=a*t>b*u?o:m;switch(this.type){case"rect":case"image":var E=i.width*m,F=i.height*o;this.attr({height:F,r:i.r*D,width:E,x:A-E/2,y:C-F/2});break;case"circle":case"ellipse":this.attr({rx:i.rx*m,ry:i.ry*o,r:i.r*D,cx:A,cy:C});break;case"text":this.attr({x:A,y:C});break;case"path":var G=bp(i.path),H=true,I=r?x:m,J=s?y:o;for(var K=0,L=G[w];K<L;K++){var M=G[K],N=V.call(M[0]);{if(N=="M"&&H)continue;H=false}if(N=="A"){M[G[K][w]-2]*=I;M[G[K][w]-1]*=J;M[1]*=m;M[2]*=o;M[5]=+(t+u?!(!(+M[5])):!(+M[5]))}else if(N=="H")for(var O=1,P=M[w];O<P;O++)M[O]*=I;else if(N=="V")for(O=1,P=M[w];O<P;O++)M[O]*=J;else for(O=1,P=M[w];O<P;O++)M[O]*=O%2?I:J}var Q=bn(G);e=A-Q.x-Q.width/2;f=C-Q.y-Q.height/2;G[0][1]+=e;G[0][2]+=f;this.attr({path:G});break}if(this.type in{text:1,image:1}&&(t!=1||u!=1))if(this.transformations){this.transformations[2]="scale("[n](t,",",u,")");this.node[R]("transform",this.transformations[v](q));e=t==-1?-i.x-(E||0):i.x;f=u==-1?-i.y-(F||0):i.y;this.attr({x:e,y:f});i.fx=t-1;i.fy=u-1}else{this.node.filterMatrix=U+".Matrix(M11="[n](t,", M12=0, M21=0, M22=",u,", Dx=0, Dy=0, sizingmethod='auto expand', filtertype='bilinear')");z.filter=(this.node.filterMatrix||p)+(this.node.filterOpacity||p)}else if(this.transformations){this.transformations[2]=p;this.node[R]("transform",this.transformations[v](q));i.fx=0;i.fy=0}else{this.node.filterMatrix=p;z.filter=(this.node.filterMatrix||p)+(this.node.filterOpacity||p)}i.scale=[a,b,c,d][v](q);this._.sx=a;this._.sy=b}return this};bO.clone=function(){if(this.removed)return null;var a=this.attr();delete a.scale;delete a.translation;return this.paper[this.type]().attr(a)};var cp={},cq=function(b,c,d,e,f,g,h,i,j){var k=0,l=100,m=[b,c,d,e,f,g,h,i].join(),n=cp[m],o,p;!n&&(cp[m]=n={data:[]});n.timer&&clearTimeout(n.timer);n.timer=setTimeout(function(){delete cp[m]},2000);if(j!=null){var q=cq(b,c,d,e,f,g,h,i);l=~(~q)*10}for(var r=0;r<l+1;r++){if(n.data[j]>r)p=n.data[r*l];else{p=a.findDotsAtSegment(b,c,d,e,f,g,h,i,r/l);n.data[r]=p}r&&(k+=C(C(o.x-p.x,2)+C(o.y-p.y,2),0.5));if(j!=null&&k>=j)return p;o=p}if(j==null)return k},cr=function(b,c){return function(d,e,f){d=bw(d);var g,h,i,j,k="",l={},m,n=0;for(var o=0,p=d.length;o<p;o++){i=d[o];if(i[0]=="M"){g=+i[1];h=+i[2]}else{j=cq(g,h,i[1],i[2],i[3],i[4],i[5],i[6]);if(n+j>e){if(c&&!l.start){m=cq(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n);k+=["C",m.start.x,m.start.y,m.m.x,m.m.y,m.x,m.y];if(f)return k;l.start=k;k=["M",m.x,m.y+"C",m.n.x,m.n.y,m.end.x,m.end.y,i[5],i[6]][v]();n+=j;g=+i[5];h=+i[6];continue}if(!b&&!c){m=cq(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n);return{x:m.x,y:m.y,alpha:m.alpha}}}n+=j;g=+i[5];h=+i[6]}k+=i}l.end=k;m=b?n:c?l:a.findDotsAtSegment(g,h,i[1],i[2],i[3],i[4],i[5],i[6],1);m.alpha&&(m={x:m.x,y:m.y,alpha:m.alpha});return m}},cs=cr(1),ct=cr(),cu=cr(0,1);bO.getTotalLength=function(){if(this.type!="path")return;if(this.node.getTotalLength)return this.node.getTotalLength();return cs(this.attrs.path)};bO.getPointAtLength=function(a){if(this.type!="path")return;return ct(this.attrs.path,a)};bO.getSubpath=function(a,b){if(this.type!="path")return;if(B(this.getTotalLength()-b)<"1e-6")return cu(this.attrs.path,a).end;var c=cu(this.attrs.path,b,1);return a?cu(c,a).end:c};a.easing_formulas={linear:function(a){return a},"<":function(a){return C(a,3)},">":function(a){return C(a-1,3)+1},"<>":function(a){a=a*2;if(a<1)return C(a,3)/2;a-=2;return(C(a,3)+2)/2},backIn:function(a){var b=1.70158;return a*a*((b+1)*a-b)},backOut:function(a){a=a-1;var b=1.70158;return a*a*((b+1)*a+b)+1},elastic:function(a){if(a==0||a==1)return a;var b=0.3,c=b/4;return C(2,-10*a)*y.sin((a-c)*(2*D)/b)+1},bounce:function(a){var b=7.5625,c=2.75,d;if(a<1/c)d=b*a*a;else if(a<2/c){a-=1.5/c;d=b*a*a+0.75}else if(a<2.5/c){a-=2.25/c;d=b*a*a+0.9375}else{a-=2.625/c;d=b*a*a+0.984375}return d}};var cv=[],cw=function(){var b=+(new Date);for(var c=0;c<cv[w];c++){var d=cv[c];if(d.stop||d.el.removed)continue;var e=b-d.start,g=d.ms,h=d.easing,i=d.from,j=d.diff,k=d.to,l=d.t,m=d.el,n={},o;if(e<g){var r=h(e/g);for(var s in i)if(i[f](s)){switch(X[s]){case"along":o=r*g*j[s];k.back&&(o=k.len-o);var t=ct(k[s],o);m.translate(j.sx-j.x||0,j.sy-j.y||0);j.x=t.x;j.y=t.y;m.translate(t.x-j.sx,t.y-j.sy);k.rot&&m.rotate(j.r+t.alpha,t.x,t.y);break;case E:o=+i[s]+r*g*j[s];break;case"colour":o="rgb("+[cy(Q(i[s].r+r*g*j[s].r)),cy(Q(i[s].g+r*g*j[s].g)),cy(Q(i[s].b+r*g*j[s].b))][v](",")+")";break;case"path":o=[];for(var u=0,x=i[s][w];u<x;u++){o[u]=[i[s][u][0]];for(var y=1,z=i[s][u][w];y<z;y++)o[u][y]=+i[s][u][y]+r*g*j[s][u][y];o[u]=o[u][v](q)}o=o[v](q);break;case"csv":switch(s){case"translation":var A=r*g*j[s][0]-l.x,B=r*g*j[s][1]-l.y;l.x+=A;l.y+=B;o=A+q+B;break;case"rotation":o=+i[s][0]+r*g*j[s][0];i[s][1]&&(o+=","+i[s][1]+","+i[s][2]);break;case"scale":o=[+i[s][0]+r*g*j[s][0],+i[s][1]+r*g*j[s][1],2 in k[s]?k[s][2]:p,3 in k[s]?k[s][3]:p][v](q);break;case"clip-rect":o=[];u=4;while(u--)o[u]=+i[s][u]+r*g*j[s][u];break}break;default:var C=[].concat(i[s]);o=[];u=m.paper.customAttributes[s].length;while(u--)o[u]=+C[u]+r*g*j[s][u];break}n[s]=o}m.attr(n);m._run&&m._run.call(m)}else{if(k.along){t=ct(k.along,k.len*!k.back);m.translate(j.sx-(j.x||0)+t.x-j.sx,j.sy-(j.y||0)+t.y-j.sy);k.rot&&m.rotate(j.r+t.alpha,t.x,t.y)}(l.x||l.y)&&m.translate(-l.x,-l.y);k.scale&&(k.scale+=p);m.attr(k);cv.splice(c--,1)}}a.svg&&m&&m.paper&&m.paper.safari();cv[w]&&setTimeout(cw)},cx=function(b,c,d,e,f){var g=d-e;c.timeouts.push(setTimeout(function(){a.is(f,"function")&&f.call(c);c.animate(b,g,b.easing)},e))},cy=function(a){return z(A(a,255),0)},cz=function(a,b){if(a==null)return{x:this._.tx,y:this._.ty,toString:co};this._.tx+=+a;this._.ty+=+b;switch(this.type){case"circle":case"ellipse":this.attr({cx:+a+this.attrs.cx,cy:+b+this.attrs.cy});break;case"rect":case"image":case"text":this.attr({x:+a+this.attrs.x,y:+b+this.attrs.y});break;case"path":var c=bp(this.attrs.path);c[0][1]+=+a;c[0][2]+=+b;this.attr({path:c});break}return this};bO.animateWith=function(a,b,c,d,e){for(var f=0,g=cv.length;f<g;f++)cv[f].el.id==a.id&&(b.start=cv[f].start);return this.animate(b,c,d,e)};bO.animateAlong=cA();bO.animateAlongBack=cA(1);function cA(b){return function(c,d,e,f){var g={back:b};a.is(e,"function")?f=e:g.rot=e;c&&c.constructor==bN&&(c=c.attrs.path);c&&(g.along=c);return this.animate(g,d,f)}}function cB(a,b,c,d,e,f){var g=3*b,h=3*(d-b)-g,i=1-g-h,j=3*c,k=3*(e-c)-j,l=1-j-k;function m(a){return((i*a+h)*a+g)*a}function n(a,b){var c=o(a,b);return((l*c+k)*c+j)*c}function o(a,b){var c,d,e,f,j,k;for(e=a,k=0;k<8;k++){f=m(e)-a;if(B(f)<b)return e;j=(3*i*e+2*h)*e+g;if(B(j)<0.000001)break;e=e-f/j}c=0;d=1;e=a;if(e<c)return c;if(e>d)return d;while(c<d){f=m(e);if(B(f-a)<b)return e;a>f?c=e:d=e;e=(d-c)/2+c}return e}return n(a,1/(200*f))}bO.onAnimation=function(a){this._run=a||0;return this};bO.animate=function(c,d,e,g){var h=this;h.timeouts=h.timeouts||[];if(a.is(e,"function")||!e)g=e||null;if(h.removed){g&&g.call(h);return h}var i={},j={},k=false,l={};for(var m in c)if(c[f](m)){if(X[f](m)||h.paper.customAttributes[f](m)){k=true;i[m]=h.attr(m);i[m]==null&&(i[m]=W[m]);j[m]=c[m];switch(X[m]){case"along":var n=cs(c[m]),o=ct(c[m],n*!(!c.back)),p=h.getBBox();l[m]=n/d;l.tx=p.x;l.ty=p.y;l.sx=o.x;l.sy=o.y;j.rot=c.rot;j.back=c.back;j.len=n;c.rot&&(l.r=S(h.rotate())||0);break;case E:l[m]=(j[m]-i[m])/d;break;case"colour":i[m]=a.getRGB(i[m]);var q=a.getRGB(j[m]);l[m]={r:(q.r-i[m].r)/d,g:(q.g-i[m].g)/d,b:(q.b-i[m].b)/d};break;case"path":var t=bw(i[m],j[m]);i[m]=t[0];var u=t[1];l[m]=[];for(var v=0,x=i[m][w];v<x;v++){l[m][v]=[0];for(var y=1,z=i[m][v][w];y<z;y++)l[m][v][y]=(u[v][y]-i[m][v][y])/d}break;case"csv":var A=r(c[m])[s](b),B=r(i[m])[s](b);switch(m){case"translation":i[m]=[0,0];l[m]=[A[0]/d,A[1]/d];break;case"rotation":i[m]=B[1]==A[1]&&B[2]==A[2]?B:[0,A[1],A[2]];l[m]=[(A[0]-i[m][0])/d,0,0];break;case"scale":c[m]=A;i[m]=r(i[m])[s](b);l[m]=[(A[0]-i[m][0])/d,(A[1]-i[m][1])/d,0,0];break;case"clip-rect":i[m]=r(i[m])[s](b);l[m]=[];v=4;while(v--)l[m][v]=(A[v]-i[m][v])/d;break}j[m]=A;break;default:A=[].concat(c[m]);B=[].concat(i[m]);l[m]=[];v=h.paper.customAttributes[m][w];while(v--)l[m][v]=((A[v]||0)-(B[v]||0))/d;break}}}if(k){var G=a.easing_formulas[e];if(!G){G=r(e).match(P);if(G&&G[w]==5){var H=G;G=function(a){return cB(a,+H[1],+H[2],+H[3],+H[4],d)}}else G=function(a){return a}}cv.push({start:c.start||+(new Date),ms:d,easing:G,from:i,diff:l,to:j,el:h,t:{x:0,y:0}});a.is(g,"function")&&(h._ac=setTimeout(function(){g.call(h)},d));cv[w]==1&&setTimeout(cw)}else{var C=[],D;for(var F in c)if(c[f](F)&&Z.test(F)){m={value:c[F]};F=="from"&&(F=0);F=="to"&&(F=100);m.key=T(F,10);C.push(m)}C.sort(be);C[0].key&&C.unshift({key:0,value:h.attrs});for(v=0,x=C[w];v<x;v++)cx(C[v].value,h,d/100*C[v].key,d/100*(C[v-1]&&C[v-1].key||0),C[v-1]&&C[v-1].value.callback);D=C[C[w]-1].value.callback;D&&h.timeouts.push(setTimeout(function(){D.call(h)},d))}return this};bO.stop=function(){for(var a=0;a<cv.length;a++)cv[a].el.id==this.id&&cv.splice(a--,1);for(a=0,ii=this.timeouts&&this.timeouts.length;a<ii;a++)clearTimeout(this.timeouts[a]);this.timeouts=[];clearTimeout(this._ac);delete this._ac;return this};bO.translate=function(a,b){return this.attr({translation:a+" "+b})};bO[H]=function(){return"Raphaël’s object"};a.ae=cv;var cC=function(a){this.items=[];this[w]=0;this.type="set";if(a)for(var b=0,c=a[w];b<c;b++){if(a[b]&&(a[b].constructor==bN||a[b].constructor==cC)){this[this.items[w]]=this.items[this.items[w]]=a[b];this[w]++}}};cC[e][L]=function(){var a,b;for(var c=0,d=arguments[w];c<d;c++){a=arguments[c];if(a&&(a.constructor==bN||a.constructor==cC)){b=this.items[w];this[b]=this.items[b]=a;this[w]++}}return this};cC[e].pop=function(){delete this[this[w]--];return this.items.pop()};for(var cD in bO)bO[f](cD)&&(cC[e][cD]=(function(a){return function(){for(var b=0,c=this.items[w];b<c;b++)this.items[b][a][m](this.items[b],arguments);return this}})(cD));cC[e].attr=function(b,c){if(b&&a.is(b,G)&&a.is(b[0],"object"))for(var d=0,e=b[w];d<e;d++)this.items[d].attr(b[d]);else for(var f=0,g=this.items[w];f<g;f++)this.items[f].attr(b,c);return this};cC[e].animate=function(b,c,d,e){(a.is(d,"function")||!d)&&(e=d||null);var f=this.items[w],g=f,h,i=this,j;e&&(j=function(){!(--f)&&e.call(i)});d=a.is(d,F)?d:j;h=this.items[--g].animate(b,c,d,j);while(g--)this.items[g]&&!this.items[g].removed&&this.items[g].animateWith(h,b,c,d,j);return this};cC[e].insertAfter=function(a){var b=this.items[w];while(b--)this.items[b].insertAfter(a);return this};cC[e].getBBox=function(){var a=[],b=[],c=[],d=[];for(var e=this.items[w];e--;){var f=this.items[e].getBBox();a[L](f.x);b[L](f.y);c[L](f.x+f.width);d[L](f.y+f.height)}a=A[m](0,a);b=A[m](0,b);return{x:a,y:b,width:z[m](0,c)-a,height:z[m](0,d)-b}};cC[e].clone=function(a){a=new cC;for(var b=0,c=this.items[w];b<c;b++)a[L](this.items[b].clone());return a};a.registerFont=function(a){if(!a.face)return a;this.fonts=this.fonts||{};var b={w:a.w,face:{},glyphs:{}},c=a.face["font-family"];for(var d in a.face)a.face[f](d)&&(b.face[d]=a.face[d]);this.fonts[c]?this.fonts[c][L](b):this.fonts[c]=[b];if(!a.svg){b.face["units-per-em"]=T(a.face["units-per-em"],10);for(var e in a.glyphs)if(a.glyphs[f](e)){var g=a.glyphs[e];b.glyphs[e]={w:g.w,k:{},d:g.d&&"M"+g.d[Y](/[mlcxtrv]/g,function(a){return({l:"L",c:"C",x:"z",t:"m",r:"l",v:"c"})[a]||"M"})+"z"};if(g.k)for(var h in g.k)g[f](h)&&(b.glyphs[e].k[h]=g.k[h])}}return a};k.getFont=function(b,c,d,e){e=e||"normal";d=d||"normal";c=+c||({normal:400,bold:700,lighter:300,bolder:800})[c]||400;if(!a.fonts)return;var g=a.fonts[b];if(!g){var h=new RegExp("(^|\\s)"+b[Y](/[^\w\d\s+!~.:_-]/g,p)+"(\\s|$)","i");for(var i in a.fonts)if(a.fonts[f](i)){if(h.test(i)){g=a.fonts[i];break}}}var j;if(g)for(var k=0,l=g[w];k<l;k++){j=g[k];if(j.face["font-weight"]==c&&(j.face["font-style"]==d||!j.face["font-style"])&&j.face["font-stretch"]==e)break}return j};k.print=function(c,d,e,f,g,h,i){h=h||"middle";i=z(A(i||0,1),-1);var j=this.set(),k=r(e)[s](p),l=0,m=p,n;a.is(f,e)&&(f=this.getFont(f));if(f){n=(g||16)/f.face["units-per-em"];var o=f.face.bbox.split(b),q=+o[0],t=+o[1]+(h=="baseline"?o[3]-o[1]+ +f.face.descent:(o[3]-o[1])/2);for(var u=0,v=k[w];u<v;u++){var x=u&&f.glyphs[k[u-1]]||{},y=f.glyphs[k[u]];l+=u?(x.w||f.w)+(x.k&&x.k[k[u]]||0)+f.w*i:0;y&&y.d&&j[L](this.path(y.d).attr({fill:"#000",stroke:"none",translation:[l,0]}))}j.scale(n,n,q,t).translate(c-q,d-t)}return j};a.format=function(b,c){var e=a.is(c,G)?[0][n](c):arguments;b&&a.is(b,F)&&e[w]-1&&(b=b[Y](d,function(a,b){return e[++b]==null?p:e[b]}));return b||p};a.ninja=function(){i.was?h.Raphael=i.is:delete Raphael;return a};a.el=bO;a.st=cC[e];i.was?h.Raphael=a:Raphael=a})()
// SVG paths for a US map derived from data
// derived in the D3 library by Mike Bostock
// https://github.com/mbostock/d3/
// which is licensed under a BSD license.
var usMap = {
"Alabama": "M630.52,294.39L655.22,291.68L659.67,306.35L666.17,327.91L668.49,332.54L670.46,335.09L670.06,336.89L671.88,337.70L669.71,340.23L670.09,342.41L669.21,345.54L671.37,350.57L670.95,355.28L673.21,359.81L665.94,360.89L634.80,364.66L634.56,367.00L638.27,369.96L638.02,372.88L639.32,374.18L637.40,377.00L635.41,377.79L631.34,375.34L630.47,371.10L629.28,370.74L628.23,374.13L628.07,377.32L624.13,376.86L620.31,350.36L620.26,316.82L620.30,297.44L618.64,295.77L630.52,294.39Z",
"Alaska": "M244.90,435.44L244.37,433.79L245.96,434.20L246.52,435.90L245.02,436.33ZM242.33,433.08L243.86,433.77L244.05,435.70L243.34,435.33ZM231.90,426.07L233.09,425.31L233.80,425.43L234.25,426.93L233.25,427.74L231.84,427.29ZM228.97,428.32L231.41,427.66L232.79,429.25L236.00,430.30L237.35,431.22L237.87,432.24L238.52,432.20L239.22,433.53L240.77,434.47L241.43,435.62L241.89,434.98L242.58,435.80L244.37,439.46L244.35,440.47L242.74,441.00L241.48,439.30L241.01,439.70L239.27,438.77L239.15,439.39L238.01,439.32L238.77,440.67L239.49,439.92L240.29,440.20L240.87,442.26L239.71,442.52L237.04,440.73L236.04,439.66L235.57,438.30L234.35,438.94L233.93,437.94L234.84,437.43L235.42,436.12L234.32,434.72L233.06,434.88L231.81,432.42L230.86,431.32L230.47,432.55L229.57,431.24L230.08,430.22L228.74,428.85ZM231.41,436.32L232.73,436.52L233.11,435.42L233.98,435.49L233.84,437.23L232.49,437.30ZM224.97,423.39L223.82,422.74L224.42,421.75L227.64,421.46L228.88,420.86L230.54,422.28L232.82,423.04L233.13,424.22L232.52,425.18L231.21,425.43L230.67,426.48L229.32,426.55L228.22,427.51L227.00,425.34L226.50,423.81L225.52,424.15ZM225.66,428.20L224.62,427.75L223.19,426.48L222.60,425.29L223.00,424.44L223.91,424.76L223.64,423.69L226.44,424.58L227.36,426.19L226.72,426.71L227.04,428.81L227.79,429.12L228.07,431.62L227.04,431.48L227.49,432.91L226.68,432.44L225.24,429.86ZM223.65,431.25L223.92,432.44L222.92,432.09L219.21,428.56L217.45,427.76L217.50,426.58L216.04,424.30L213.89,422.85L214.55,420.38L215.50,420.94L216.98,421.10L218.14,420.76L218.79,422.30L221.91,426.93ZM215.67,412.52L217.71,412.57L218.67,412.05L218.92,412.82L221.47,414.88L220.28,414.87L220.40,415.88L222.07,416.81L223.43,419.11L222.58,420.21L222.55,421.21L221.46,423.71L220.89,423.87L219.91,422.10L219.83,420.83L218.99,419.24L217.55,417.47L217.24,416.35L215.80,413.89L214.68,413.04L213.72,411.19ZM213.14,423.57L213.89,423.28L215.35,424.75L215.48,426.12L214.39,426.85L213.83,424.85ZM207.70,415.79L209.27,415.26L209.96,414.01L211.87,414.63L211.58,416.22L212.05,416.60L212.22,414.87L214.18,414.66L215.59,415.34L215.79,417.49L216.30,417.47L217.92,419.80L216.70,420.71L213.34,419.61L214.25,421.73L213.78,422.90L212.68,422.88L211.60,421.76L210.16,421.25L208.63,419.67L207.26,419.20L206.74,417.62L207.25,416.81L206.97,415.38ZM146.56,411.39L144.91,414.41L144.93,415.46L143.31,416.47L143.38,414.81L144.95,412.82L145.77,410.78ZM143.36,407.96L143.49,410.16L143.18,412.51L142.04,411.96L142.41,409.26ZM123.77,308.94L124.23,309.31L126.16,309.40L127.07,308.93L128.41,308.66L129.95,308.74L130.75,308.34L131.77,308.98L133.49,309.58L135.59,309.33L136.02,308.64L137.29,307.99L137.70,307.13L139.13,306.66L139.24,307.16L140.03,306.66L142.02,306.96L143.57,307.88L144.88,308.17L145.28,308.64L146.36,308.46L147.61,309.10L147.98,309.64L148.44,308.98L149.29,309.14L176.85,402.84L179.41,402.98L179.44,402.01L182.24,402.54L183.17,400.49L186.11,399.37L186.44,402.23L187.50,402.91L189.50,403.23L190.36,404.52L197.25,408.00L199.22,411.03L199.81,409.78L201.45,407.42L202.67,406.91L202.81,405.51L202.09,403.75L202.96,403.42L202.60,401.78L204.00,400.82L205.77,398.60L208.90,400.04L209.23,401.51L210.32,402.69L211.73,402.51L214.17,403.94L214.30,404.57L215.49,405.39L218.07,405.82L223.78,409.97L224.92,411.24L226.61,412.26L229.61,414.85L232.42,416.94L232.34,418.36L234.17,418.04L234.52,419.90L236.17,419.98L237.22,421.84L238.52,421.12L242.01,421.92L243.79,421.53L245.07,422.07L245.99,421.95L246.67,422.77L248.49,422.22L249.56,423.10L249.80,425.60L250.77,427.30L252.93,429.82L252.69,430.83L252.66,434.10L251.66,436.92L250.66,436.19L250.08,436.84L248.65,435.10L248.41,434.20L247.36,433.49L248.12,431.87L247.59,431.67L246.96,433.55L245.89,433.03L245.33,433.86L242.13,432.79L241.85,430.15L240.79,431.57L241.25,432.75L239.73,432.36L239.00,431.36L239.23,429.82L238.46,428.72L237.84,430.18L235.84,428.49L235.38,429.20L234.19,427.59L234.70,425.98L235.69,425.55L234.77,424.26L234.48,422.19L233.69,422.60L231.33,421.75L229.34,420.35L226.01,420.15L224.43,416.26L223.36,416.15L222.89,414.47L221.81,414.42L219.61,412.84L218.79,411.87L216.38,412.42L212.75,410.52L209.05,404.18L209.17,405.93L209.93,407.24L211.97,409.53L211.89,410.05L213.42,411.99L213.85,413.49L212.75,413.55L211.34,412.25L210.20,412.38L208.91,413.36L208.06,411.04L206.44,409.44L205.85,410.33L201.91,409.46L201.85,410.15L203.83,410.16L205.80,411.28L206.34,411.13L207.00,412.36L208.26,413.61L206.82,415.13L205.57,414.98L206.04,416.34L204.31,415.81L203.59,415.21L202.74,415.52L199.71,414.40L197.39,413.25L196.87,412.28L195.40,411.08L192.41,410.87L190.59,410.20L187.64,409.71L185.57,408.97L185.28,407.56L185.89,407.85L186.16,406.79L184.98,404.99L185.32,403.68L184.83,403.29L184.26,405.76L182.11,407.94L178.87,408.37L175.90,407.85L175.51,406.89L174.36,407.46L172.86,407.10L169.79,407.22L168.10,407.61L164.46,409.15L163.20,409.88L161.13,408.84L158.84,408.68L157.97,407.94L157.37,406.48L155.94,406.93L155.75,408.39L152.75,407.17L152.17,406.47L149.81,408.50L148.87,410.52L147.98,408.99L148.35,407.98L149.17,408.04L151.45,406.33L150.93,405.50L149.85,406.20L149.13,405.11L148.01,405.17L146.31,402.40L146.05,403.22L144.60,403.91L144.04,403.61L143.70,404.67L141.73,404.70L141.85,405.79L140.61,406.31L139.93,406.02L140.02,404.02L139.49,404.17L138.98,406.37L140.31,406.83L140.68,408.28L141.72,409.73L141.59,411.51L140.51,411.12L140.38,412.02L141.39,412.19L142.34,414.36L141.04,415.06L140.20,414.75L139.10,415.58L138.39,415.18L136.79,415.50L136.71,414.64L136.04,415.34L135.79,416.49L134.96,415.63L134.33,417.13L134.80,417.70L133.73,418.68L132.66,418.96L132.40,420.11L131.37,421.25L130.52,421.03L129.79,422.29L129.07,422.34L127.89,424.88L126.29,425.27L125.67,424.60L124.85,425.98L122.69,425.26L122.94,423.44L124.19,422.64L125.07,422.65L125.24,421.93L126.60,420.35L126.51,419.20L124.68,421.01L122.88,420.31L122.60,419.71L123.12,416.97L124.32,414.90L124.35,413.33L124.73,412.99L124.68,411.32L123.72,409.58L125.37,408.67L128.30,405.58L129.25,406.49L130.31,406.62L131.65,405.31L129.76,404.14L128.95,403.16L127.66,403.46L126.66,403.08L126.45,403.58L125.00,404.53L124.49,406.06L122.97,406.60L121.55,408.47L121.52,409.57L120.34,410.30L120.21,411.53L119.40,412.38L119.22,414.54L117.63,416.11L118.60,417.11L118.07,418.79L116.45,419.25L116.52,421.33L115.05,422.23L114.47,421.42L113.85,423.10L112.94,423.25L113.22,424.38L111.23,425.25L111.10,428.44L113.48,428.40L115.44,429.08L116.07,430.05L115.47,431.79L114.30,432.95L113.12,433.11L113.08,434.04L112.34,434.46L112.80,435.57L112.15,437.36L110.54,439.12L109.55,439.20L108.63,439.85L107.68,439.81L107.00,440.49L107.28,441.34L105.95,441.89L105.76,443.18L104.76,442.44L103.89,444.97L102.13,444.91L102.33,446.22L101.27,445.94L100.56,446.55L100.66,448.33L99.63,451.15L97.75,451.59L96.24,452.92L96.02,453.62L94.98,452.69L93.38,455.39L92.89,454.66L91.95,454.92L91.78,456.42L90.81,457.03L89.64,456.83L88.75,458.34L90.39,458.76L88.71,462.14L83.66,463.31L82.26,466.25L81.90,465.62L82.09,463.78L81.09,463.50L79.83,464.19L79.64,464.93L77.66,466.13L76.81,467.50L76.56,466.52L76.03,467.67L74.87,466.91L72.66,468.65L71.04,468.56L71.29,467.19L70.61,465.85L69.94,466.93L69.97,468.08L67.68,471.51L66.96,470.63L66.69,471.94L65.18,471.66L65.03,469.59L64.13,469.09L63.78,469.82L64.56,470.77L64.11,472.19L62.86,472.89L62.01,471.24L60.90,471.07L60.67,471.69L61.75,472.66L59.63,474.05L61.00,474.52L61.00,475.21L59.87,474.64L58.24,475.93L55.22,475.70L53.67,476.52L53.49,477.20L51.71,477.88L50.46,477.51L50.17,475.53L51.48,474.99L52.60,472.71L53.85,472.74L56.64,471.36L58.81,471.43L59.56,472.96L60.24,471.90L60.17,470.64L61.44,470.12L62.78,470.18L64.69,467.51L66.75,465.11L69.39,463.01L72.43,462.10L73.67,462.58L74.90,461.97L75.21,462.89L74.52,463.92L75.25,464.73L75.49,463.47L77.01,463.37L77.42,464.18L78.35,464.47L78.39,463.49L76.85,462.62L76.73,462.05L77.77,459.36L79.14,457.81L80.97,456.32L83.86,454.98L85.94,453.05L86.96,453.73L87.77,453.42L87.40,452.22L87.62,451.07L89.15,448.62L91.27,447.01L92.92,444.88L92.79,443.74L93.85,435.52L95.85,433.25L95.53,431.54L90.65,434.19L89.06,433.95L88.65,432.92L87.75,432.48L87.43,431.34L86.64,431.87L86.17,433.66L87.08,435.89L86.05,436.89L85.11,436.56L83.29,433.01L82.06,431.24L81.44,431.24L81.03,432.56L80.50,432.80L79.70,431.70L78.73,431.53L78.29,429.74L75.39,431.73L72.76,433.13L72.54,433.93L70.45,435.09L69.47,433.97L70.43,432.73L70.18,429.73L69.60,426.54L70.97,425.25L69.95,422.58L69.05,421.05L68.37,418.84L67.30,417.88L66.94,419.77L65.58,420.12L63.38,421.23L60.77,421.62L59.37,421.42L58.21,420.72L58.17,419.04L57.18,418.46L55.72,416.05L54.40,415.49L53.02,412.84L54.17,411.78L54.56,409.67L53.72,410.07L53.71,408.74L54.18,407.68L53.24,406.62L53.05,407.65L51.84,407.14L51.83,405.35L50.89,405.04L50.48,403.79L50.64,402.30L49.63,402.90L49.60,401.45L50.79,401.22L49.99,399.53L51.67,399.56L51.84,397.61L52.35,396.33L55.73,392.39L56.46,391.17L56.89,391.43L56.76,389.64L58.12,386.68L59.18,385.54L61.04,385.14L62.42,385.74L64.31,387.68L65.62,387.51L67.47,385.81L69.40,383.18L70.32,382.92L70.53,383.62L72.73,383.68L74.68,383.14L76.45,380.35L76.46,379.66L75.64,377.01L75.56,375.46L74.28,373.77L73.81,372.32L75.13,372.75L76.41,371.56L76.49,370.42L74.92,368.27L73.69,369.91L72.57,369.60L71.50,370.49L70.29,370.68L69.97,371.30L68.56,372.17L68.08,373.70L67.36,374.30L67.12,372.46L66.30,372.02L65.64,373.42L65.33,372.72L63.83,371.61L60.66,371.47L58.32,372.46L57.44,372.57L55.65,371.74L52.23,370.63L51.39,369.92L51.07,368.85L51.53,367.45L50.41,366.13L50.78,364.85L51.62,364.24L51.54,362.56L50.33,362.44L49.38,361.88L47.47,361.32L46.55,360.35L45.09,359.31L45.08,358.21L47.66,357.08L50.95,355.02L53.20,353.80L54.33,354.71L55.54,354.99L55.92,353.88L55.19,353.64L55.21,352.67L58.26,351.31L61.62,350.35L63.38,350.35L64.32,350.81L63.71,352.49L63.83,353.70L63.41,354.53L63.96,355.94L65.13,355.78L66.59,356.08L68.30,355.87L68.77,356.40L69.89,356.56L70.88,356.08L72.15,356.69L73.44,354.43L74.32,354.34L74.92,354.81L75.24,353.50L73.57,352.83L71.94,353.31L72.15,351.60L70.95,349.73L69.61,349.11L69.26,347.44L70.34,347.08L71.64,348.78L71.35,350.08L71.98,351.13L73.40,352.37L73.77,351.12L72.17,349.42L72.95,346.47L72.40,345.95L70.79,346.52L69.15,346.29L68.92,345.77L68.07,346.25L64.70,344.82L64.71,343.51L63.86,340.54L63.11,339.41L61.88,338.42L59.46,335.73L58.35,334.67L57.18,334.34L55.58,332.48L53.97,331.36L53.92,331.01L55.24,330.62L55.97,329.10L56.30,325.94L59.66,326.46L63.80,326.02L64.89,325.52L66.66,324.03L68.37,321.68L68.80,319.26L69.56,317.20L70.99,315.51L71.62,314.24L73.34,312.21L73.58,312.78L74.96,312.98L76.99,311.94L78.25,310.83L81.23,307.35L82.35,307.17L82.47,307.68L83.60,307.27L84.72,307.36L86.90,306.86L89.00,305.27L90.97,302.04L91.78,301.33L91.96,301.88L95.27,302.98L95.59,303.85L94.54,305.10L94.03,305.19L94.15,306.75L95.77,306.14L95.80,305.30L96.49,304.46L96.77,304.89L97.19,303.06L98.93,304.56L98.77,305.81L99.81,306.06L100.47,306.73L101.24,305.48L102.79,305.28L103.63,304.80L105.92,304.95L107.12,305.26L106.84,307.73L109.04,308.09L109.27,308.68L111.48,309.47L111.43,308.97L112.83,308.10L114.27,307.95L114.37,308.50L115.22,308.43L115.97,307.52L117.38,307.19L118.43,307.36L119.94,307.96L120.55,307.69L121.66,308.69L122.11,308.15L123.02,308.33ZM118.95,438.66L118.97,439.12L117.00,438.64L118.07,435.81L119.27,435.45L119.84,432.90L121.00,434.97L121.69,434.13L123.32,435.16L123.52,436.82L121.36,437.30L120.48,438.15ZM113.81,444.32L115.27,442.79L113.81,442.64L113.67,441.44L114.78,440.53L115.68,441.02L115.92,442.21L116.33,441.36L116.18,439.58L117.29,440.28L117.35,439.12L118.33,439.71L119.42,439.60L120.19,438.88L121.70,439.81L122.05,442.84L123.79,442.40L122.86,444.54L120.63,443.98L121.57,445.20L121.08,446.36L119.92,445.96L120.11,448.03L118.47,448.78L118.00,449.69L116.86,448.99L115.96,451.28L115.10,451.59L114.26,452.65L113.70,450.33L112.51,451.70L112.38,450.97L111.14,450.32L110.87,448.21L109.66,447.44L110.10,444.92L112.20,443.19L113.59,443.18ZM111.41,454.39L110.38,456.61L109.98,456.29ZM105.56,461.97L106.50,462.02L106.32,464.22L104.76,464.03L104.45,463.30ZM80.65,469.52L80.29,471.76L78.44,473.59L79.34,470.79L79.96,471.07ZM76.90,468.71L78.01,468.72L77.97,469.86L76.85,471.12L75.87,470.25L75.24,471.04L74.91,469.09L75.24,468.46ZM66.44,472.45L66.54,473.37L65.83,473.92L65.33,472.93ZM68.79,381.60L68.06,382.61L67.87,381.68ZM62.93,477.48L64.21,477.93L64.05,478.79L63.01,478.69ZM46.09,478.43L46.43,479.66L45.45,480.10L45.22,478.81ZM44.80,479.81L42.82,480.79L42.49,479.95L43.39,479.00ZM47.21,414.64L48.43,414.36L48.61,415.12L49.67,415.05L50.63,415.82L50.57,418.82L49.94,419.75L48.55,420.21L48.17,421.21L46.30,419.88L45.38,419.85L43.57,418.15L42.89,418.08L41.85,417.10L41.61,415.68L42.21,415.40L44.09,415.95L45.11,414.96L46.07,414.94L46.57,414.24ZM40.77,480.94L41.70,481.83L39.46,483.57L39.46,483.92L42.20,482.74L42.16,483.54L41.02,484.41L39.26,484.88L39.00,485.83L37.05,486.67L35.45,486.55L34.28,487.40L32.21,488.03L31.25,487.00L33.46,486.16L34.08,486.40L35.75,485.66L35.49,484.60L36.48,483.61L37.75,484.26L37.95,483.59L36.56,483.22L35.86,482.40L36.67,481.21L39.13,480.72L39.49,482.20ZM24.81,488.09L27.45,486.42L27.70,485.59L28.73,484.74L30.21,484.46L30.90,485.06L31.01,486.45L28.17,487.61L26.46,489.58L25.19,490.16ZM18.43,489.97L18.55,491.03L16.93,490.84L16.86,490.14ZM22.82,444.81L21.90,445.66L21.90,444.67ZM12.34,491.11L12.59,492.13L11.31,492.62L11.30,491.58ZM25.93,376.15L29.30,378.31L31.62,377.35L32.55,377.61L33.29,378.48L33.33,379.77L35.07,380.72L35.57,381.43L37.94,382.06L39.33,382.71L38.33,384.14L37.20,383.64L35.91,383.75L35.17,384.34L34.36,385.79L33.67,384.24L32.77,383.11L31.81,382.85L31.52,381.70L29.41,379.96L28.34,379.72L26.46,380.63L25.31,379.78L25.00,378.44ZM0.68,492.31L0.56,493.51L-0.69,493.50L-0.25,492.54ZM-7.34,493.27L-6.60,493.89L-4.23,494.32L-4.19,494.67L-7.11,494.61ZM-11.44,491.00L-11.25,489.99L-10.27,489.79L-9.22,491.07L-9.90,491.92L-10.65,491.70L-10.64,492.81L-11.87,492.66L-14.68,493.20L-16.06,492.54L-15.46,491.85L-13.93,492.32ZM-25.97,492.14L-24.79,492.26L-25.11,493.53L-26.52,493.00L-28.71,494.03L-28.88,491.87L-28.11,492.01L-27.62,490.54L-26.68,490.73L-26.96,491.83ZM-30.03,490.09L-29.48,490.77L-30.41,492.35L-31.51,492.59L-31.26,491.53ZM-36.18,488.71L-35.13,489.06L-34.51,490.54L-35.93,491.68ZM-320.71,199.01L-321.01,200.34L-322.03,200.74L-323.39,198.50L-322.24,196.40L-321.47,196.17Z",
"Arizona": "M327.90,258.77L316.26,357.76L286.40,353.95L270.15,345.00L235.11,325.20L237.15,321.56L240.10,321.40L241.15,320.02L240.93,316.66L238.98,316.22L239.19,309.61L242.51,307.66L243.35,305.17L243.52,300.99L245.76,298.26L248.20,297.51L250.29,295.52L247.94,292.57L246.81,287.68L245.01,284.43L245.40,282.24L246.66,280.02L246.92,276.74L246.37,273.21L247.34,262.90L252.51,263.12L253.80,265.50L255.18,265.64L257.11,262.94L259.50,248.95L307.95,256.19L327.90,258.77Z",
"Arkansas": "M528.99,275.49L588.94,271.99L590.43,275.26L588.48,277.55L586.53,281.00L595.54,280.24L595.37,283.55L593.38,284.69L593.15,287.42L590.78,290.52L591.36,294.73L590.23,297.92L588.87,298.52L589.85,299.98L587.71,301.51L586.94,304.57L585.52,305.46L586.03,308.90L583.53,310.06L583.69,311.20L580.94,314.31L581.94,316.17L579.56,319.14L577.66,324.69L580.36,326.81L579.20,328.34L580.25,331.93L579.32,334.41L543.83,336.22L537.55,336.49L537.16,327.17L535.07,326.48L532.26,327.46L530.70,325.88L530.33,294.94L527.01,275.56L528.99,275.49Z",
"California": "M158.86,136.57L169.52,139.31L186.19,143.86L199.15,146.99L192.23,176.65L187.05,198.32L200.48,217.63L213.48,236.32L223.96,251.34L231.63,262.36L245.40,282.24L245.01,284.43L246.81,287.68L247.94,292.57L250.29,295.52L248.20,297.51L245.76,298.26L243.52,300.99L243.35,305.17L242.51,307.66L239.19,309.61L238.98,316.22L240.93,316.66L241.15,320.02L240.10,321.40L237.15,321.56L217.81,319.65L202.04,318.09L200.77,315.48L201.43,311.88L201.21,307.42L199.81,303.98L196.26,298.91L191.44,293.85L190.14,294.65L188.12,293.52L188.80,291.90L187.10,287.88L183.63,287.90L178.38,284.05L178.00,281.79L174.69,278.37L170.25,277.43L166.86,275.44L162.11,274.80L160.23,271.97L161.92,267.32L161.27,266.37L162.61,263.12L159.62,259.71L160.32,256.21L159.02,255.69L157.52,252.14L156.11,251.09L155.91,249.05L152.48,240.72L150.56,238.04L151.47,232.40L152.38,233.13L154.17,230.10L153.03,226.62L150.59,226.39L148.22,222.88L147.69,220.45L148.45,218.45L147.64,215.34L148.82,210.86L151.28,211.51L151.91,204.99L150.66,205.36L149.63,208.38L146.86,208.34L144.38,205.18L144.95,201.04L143.80,197.33L141.69,194.65L140.87,192.03L138.24,186.60L139.24,185.47L139.05,179.31L140.70,176.36L140.90,171.31L138.92,165.75L136.45,162.24L136.70,159.00L141.98,152.48L143.31,150.15L143.24,148.03L145.84,143.26L146.13,138.34L145.08,136.84L146.67,133.29L158.86,136.57Z",
"Colorado": "M350.65,190.32L379.14,193.07L400.98,194.56L427.06,195.95L426.30,213.58L424.19,266.52L410.98,265.80L392.56,264.79L357.74,262.00L350.15,261.17L327.90,258.77L330.28,238.35L330.28,236.40L332.09,221.55L335.99,188.80L350.65,190.32Z",
"Connecticut": "M797.41,136.97L813.05,132.96L813.13,133.24L815.96,143.25L815.66,145.04L814.48,145.07L809.35,147.90L802.72,149.31L800.52,152.40L797.68,153.95L794.60,156.85L793.19,155.13L795.81,152.45L794.55,151.29L791.98,138.22L797.41,136.97Z",
"Delaware": "M777.23,182.71L776.53,185.07L775.45,186.52L776.39,189.17L778.92,191.24L780.44,195.34L784.31,199.07L785.64,198.94L787.67,204.70L779.12,206.58L772.76,185.28L774.50,182.88L777.23,182.71Z",
"District of Columbia": "M759.38,201.54L761.42,202.86L760.09,205.04L758.54,202.82L759.38,201.54Z",
"Florida": "M665.94,360.89L673.21,359.81L675.94,364.56L696.39,362.73L715.56,361.00L716.91,364.57L718.68,364.17L718.74,360.57L717.63,357.45L718.77,355.89L722.41,356.73L726.56,356.68L728.77,363.98L732.12,372.03L738.44,382.26L747.28,392.77L746.44,393.80L747.78,399.17L751.75,404.73L758.51,416.13L760.17,419.77L760.83,423.71L761.81,438.09L760.41,438.64L759.69,443.30L760.47,444.60L758.06,448.32L756.71,447.80L754.03,449.64L749.17,451.29L747.39,449.79L747.61,447.06L742.75,440.14L739.76,439.23L737.55,440.67L734.94,436.79L733.84,433.43L729.95,430.14L728.76,427.75L728.65,424.01L726.76,423.66L727.55,425.74L726.03,426.57L719.59,418.10L717.27,416.07L720.76,408.46L717.81,409.33L716.15,411.82L713.59,408.76L714.74,398.92L713.97,391.03L711.84,389.44L710.85,386.98L707.88,386.88L703.84,383.26L700.86,381.99L700.30,379.46L698.27,378.81L696.28,376.21L689.99,373.28L685.13,374.86L685.76,377.48L684.05,377.24L678.27,381.34L671.71,383.01L671.62,381.09L669.76,379.03L661.31,374.92L655.47,373.43L650.42,373.47L646.30,374.34L637.40,377.00L639.32,374.18L638.02,372.88L638.27,369.96L634.56,367.00L634.80,364.66L665.94,360.89Z",
"Georgia": "M690.22,286.32L687.80,290.51L687.85,292.35L693.14,295.33L694.56,294.81L697.34,298.26L698.13,300.19L700.97,303.43L704.59,305.08L707.00,307.99L711.32,310.29L711.50,312.31L714.56,315.10L718.86,317.09L720.31,319.77L721.12,323.43L723.30,324.31L726.42,328.54L727.03,331.46L730.63,332.37L728.11,338.87L728.02,342.01L726.97,344.93L727.30,347.69L725.91,349.21L726.56,356.68L722.41,356.73L718.77,355.89L717.63,357.45L718.74,360.57L718.68,364.17L716.91,364.57L715.56,361.00L696.39,362.73L675.94,364.56L673.21,359.81L670.95,355.28L671.37,350.57L669.21,345.54L670.09,342.41L669.71,340.23L671.88,337.70L670.06,336.89L670.46,335.09L668.49,332.54L666.17,327.91L659.67,306.35L655.22,291.68L673.28,289.09L683.12,287.72L690.22,286.32Z",
"Hawaii": "M362.17,467.69L358.07,466.23L357.41,464.71L357.89,460.79L354.89,454.17L357.12,451.94L358.69,448.87L357.49,446.89L357.81,444.79L362.45,447.18L367.62,448.90L370.82,451.51L370.87,453.79L375.64,457.42L372.80,460.53L367.68,462.05L364.10,464.41ZM345.93,431.74L347.85,434.09L350.26,433.01L355.60,435.69L354.83,438.17L349.45,439.49L348.36,439.03L348.05,435.99L345.26,435.36L344.16,433.67ZM339.43,428.69L337.83,430.51L334.06,430.55L335.21,428.55ZM323.48,420.40L325.31,424.47L324.43,426.85L320.94,427.25L318.57,422.43L320.63,422.32ZM298.66,411.34L300.54,411.52L301.44,413.32L300.91,415.88L299.03,417.49L293.84,415.51L294.46,412.67Z",
"Idaho": "M272.01,37.68L268.67,55.06L271.51,60.52L270.69,65.20L272.55,67.67L274.78,68.86L274.81,70.13L278.36,75.51L278.54,77.48L281.33,79.81L281.26,80.96L284.71,81.47L281.91,87.56L280.87,91.54L281.66,94.39L279.16,95.89L279.70,97.83L278.78,99.61L281.04,101.85L284.42,100.01L285.92,98.32L287.81,100.39L287.24,101.74L287.88,105.24L289.29,109.07L290.55,110.54L289.94,113.83L291.12,115.48L293.63,116.08L294.34,121.92L295.60,123.09L297.14,121.68L300.95,122.37L304.01,121.28L305.56,122.39L308.56,122.06L309.03,123.09L311.61,122.79L314.95,119.59L316.47,122.90L318.44,125.01L312.50,168.03L298.24,166.07L274.35,162.25L236.58,155.10L242.97,123.63L245.72,118.31L245.00,116.70L242.72,115.94L242.33,113.42L246.04,107.82L247.41,107.51L249.18,105.23L249.30,103.59L251.11,101.81L252.43,98.95L255.93,94.38L255.41,91.84L252.84,90.07L251.79,86.84L252.33,83.83L251.38,80.52L251.86,79.16L256.41,56.40L260.79,35.47L272.01,37.68Z",
"Illinois": "M573.99,166.95L597.60,165.18L610.14,163.90L610.08,167.29L612.46,171.00L615.20,177.19L619.70,218.50L618.59,221.83L620.68,225.39L621.24,228.43L619.83,231.11L619.64,233.46L617.61,237.47L616.09,237.92L616.70,240.09L615.75,241.06L615.37,245.28L615.94,246.38L614.41,249.07L616.00,252.01L610.56,254.21L610.22,256.09L611.73,258.27L610.14,259.88L604.85,257.69L603.29,258.03L601.47,261.30L602.24,262.20L600.04,262.21L596.51,257.49L597.53,256.23L596.10,252.97L595.86,250.28L591.13,246.91L589.68,247.43L588.00,245.24L583.70,242.01L583.54,239.22L585.46,234.51L584.96,232.90L586.11,230.68L584.10,229.58L581.10,229.05L579.69,230.81L578.58,229.83L577.25,224.12L572.52,220.70L568.12,216.47L566.08,211.20L565.69,207.65L566.67,205.07L566.67,201.88L570.19,199.69L570.35,196.98L571.94,195.12L571.92,192.03L569.61,189.69L570.23,186.55L575.20,185.30L579.06,182.78L579.27,180.05L580.87,178.76L581.08,175.36L580.55,173.19L577.53,171.69L577.04,169.90L573.99,166.95Z",
"Indiana": "M634.79,173.99L649.94,171.97L650.10,173.11L653.08,193.91L656.26,218.31L655.35,219.21L657.11,223.84L654.79,224.26L652.52,226.23L648.98,225.92L649.58,229.35L647.49,231.08L646.90,233.40L644.65,234.57L643.96,239.13L642.56,240.48L639.32,239.23L638.55,237.28L635.86,239.85L636.32,241.74L633.36,242.78L632.26,241.16L629.06,243.28L628.15,245.23L624.44,243.03L622.72,243.81L621.40,242.69L620.42,244.06L617.03,244.62L615.94,246.38L615.37,245.28L615.75,241.06L616.70,240.09L616.09,237.92L617.61,237.47L619.64,233.46L619.83,231.11L621.24,228.43L620.68,225.39L618.59,221.83L619.70,218.50L615.20,177.19L616.60,178.20L620.54,177.75L624.11,175.30L634.79,173.99Z",
"Iowa": "M563.49,150.28L565.42,150.15L565.74,152.72L567.73,154.31L566.36,156.53L567.06,160.43L568.24,163.14L572.92,164.82L573.99,166.95L577.04,169.90L577.53,171.69L580.55,173.19L581.08,175.36L580.87,178.76L579.27,180.05L579.06,182.78L575.20,185.30L570.23,186.55L569.61,189.69L571.92,192.03L571.94,195.12L570.35,196.98L570.19,199.69L566.67,201.88L566.67,205.07L565.19,204.59L562.29,201.21L560.93,201.39L542.28,202.95L524.24,203.91L509.34,204.06L507.78,201.78L508.39,197.24L507.02,193.31L506.99,188.88L504.69,187.39L504.29,184.99L505.02,182.85L504.11,179.79L502.33,178.67L499.87,170.82L497.44,167.01L498.51,164.40L498.88,160.93L499.83,159.66L498.21,157.96L498.58,154.88L497.86,153.45L499.51,153.04L563.49,150.28Z",
"Kansas": "M428.26,213.66L515.68,214.22L517.03,215.82L521.36,217.04L518.53,222.24L520.27,223.93L522.53,228.00L525.42,228.77L526.70,266.78L451.18,267.30L424.19,266.52L426.30,213.58L428.26,213.66Z",
"Kentucky": "M669.28,222.37L672.63,224.31L674.56,222.74L679.81,223.30L681.00,221.35L682.80,220.47L683.86,223.34L685.47,223.56L687.69,225.65L688.18,230.95L690.34,234.02L692.91,236.23L693.90,238.12L696.83,239.69L698.65,239.67L694.25,245.21L689.68,248.60L689.90,249.93L688.07,251.40L688.16,252.95L685.65,254.04L685.05,256.08L678.08,259.70L677.90,260.02L666.14,261.56L655.82,262.40L653.14,262.96L637.82,264.21L620.51,266.57L617.40,266.12L617.96,269.27L600.75,270.77L599.10,271.11L599.66,268.83L601.77,269.41L602.24,262.20L601.47,261.30L603.29,258.03L604.85,257.69L610.14,259.88L611.73,258.27L610.22,256.09L610.56,254.21L616.00,252.01L614.41,249.07L615.94,246.38L617.03,244.62L620.42,244.06L621.40,242.69L622.72,243.81L624.44,243.03L628.15,245.23L629.06,243.28L632.26,241.16L633.36,242.78L636.32,241.74L635.86,239.85L638.55,237.28L639.32,239.23L642.56,240.48L643.96,239.13L644.65,234.57L646.90,233.40L647.49,231.08L649.58,229.35L648.98,225.92L652.52,226.23L654.79,224.26L657.11,223.84L655.35,219.21L656.26,218.31L661.36,217.58L664.58,220.82L665.02,222.32L669.28,222.37Z",
"Louisiana": "M543.83,336.22L579.32,334.41L580.81,336.32L579.83,337.17L579.93,340.73L582.25,342.77L582.95,347.93L581.48,352.08L578.19,354.82L577.58,358.81L576.10,358.52L576.29,364.96L574.52,365.27L575.81,368.64L574.83,369.96L602.93,367.79L601.96,373.65L604.75,377.25L605.57,380.07L607.54,381.72L603.31,384.49L603.12,386.24L606.85,387.06L608.17,384.16L611.55,386.64L611.51,388.85L609.78,389.97L606.31,389.41L606.87,391.00L605.93,393.58L609.02,395.51L613.73,395.75L615.63,398.16L617.00,398.42L614.86,401.59L612.14,401.27L609.62,398.43L603.91,397.30L603.66,394.35L601.00,395.53L601.37,398.00L600.32,400.38L598.35,400.93L596.64,398.48L593.14,398.66L592.10,401.43L589.83,402.37L587.21,400.94L585.19,400.89L582.97,396.74L579.43,395.08L578.13,395.45L576.55,391.92L572.61,392.66L572.39,390.47L568.63,392.81L569.23,394.40L566.33,396.11L561.64,395.62L556.12,393.53L552.26,392.67L544.09,393.92L543.05,394.64L541.65,392.98L544.93,386.61L543.62,383.31L544.61,381.44L544.01,379.07L545.40,377.19L546.75,372.62L546.33,368.89L541.94,361.98L541.69,358.15L538.30,354.45L537.55,336.49L543.83,336.22Z",
"Maine": "M821.45,111.61L819.63,110.84L819.34,109.12L816.85,107.75L809.61,85.88L805.86,75.21L810.28,71.42L809.09,70.47L810.26,67.34L811.89,65.56L811.20,64.66L812.59,62.55L811.14,59.80L810.96,55.07L812.29,53.08L811.58,48.22L816.47,32.77L818.69,32.68L819.79,35.72L821.62,36.34L824.72,33.36L827.02,32.62L828.25,30.92L832.26,32.51L834.84,34.07L841.07,52.59L842.28,57.12L846.67,56.97L846.73,59.07L848.35,60.54L848.07,62.45L850.58,64.44L852.56,63.17L856.66,68.35L855.11,71.81L853.36,71.28L852.81,73.49L850.98,73.59L851.30,75.20L849.05,75.74L846.72,80.44L845.08,78.25L843.79,78.47L845.23,80.92L842.92,83.08L841.59,81.19L840.64,82.70L837.59,83.68L836.74,81.23L835.10,82.35L835.97,83.99L835.43,88.18L836.07,89.08L834.48,91.79L832.02,91.75L831.37,94.27L829.61,95.11L828.63,97.31L826.68,97.51L825.60,95.83L823.79,99.59L825.06,101.21L823.28,102.45L823.61,104.05L821.94,106.65L821.45,111.61Z",
"Maryland": "M777.22,216.26L776.93,216.33L776.56,216.41ZM724.79,195.72L772.76,185.28L779.12,206.58L787.67,204.70L786.84,212.56L784.88,213.33L781.50,215.24L778.85,216.66L778.25,213.83L776.90,212.96L778.13,211.38L775.44,209.04L775.08,210.41L772.26,210.78L770.60,207.89L771.47,207.69L770.60,203.63L771.09,201.83L768.67,196.65L769.35,193.12L771.43,192.04L771.01,188.66L769.47,189.43L769.79,191.13L766.87,194.09L766.33,196.30L767.26,201.33L766.51,203.98L768.00,207.80L770.36,210.13L770.62,212.25L772.19,214.06L771.93,215.61L768.26,213.58L763.61,213.25L761.71,210.91L759.59,212.97L758.19,211.10L759.55,208.03L760.09,205.04L761.42,202.86L759.38,201.54L758.54,202.82L756.46,201.60L753.54,201.35L752.98,198.81L751.24,197.71L749.17,197.86L746.63,193.37L744.42,193.85L741.87,192.72L740.94,194.29L738.78,194.65L738.67,196.64L734.55,196.21L732.50,199.29L730.66,199.07L728.67,202.52L726.40,204.64Z",
"Massachusetts": "M819.69,115.23L820.97,115.16L822.31,117.97L822.48,120.53L821.18,123.31L821.87,125.92L824.67,125.50L827.08,127.70L827.44,129.90L828.96,130.05L829.67,131.95L833.63,132.58L837.15,129.80L836.97,132.37L831.67,136.18L829.52,136.92L827.76,135.73L825.86,136.79L826.14,138.01L824.04,139.43L822.20,136.65L821.70,136.20L820.06,135.37L818.23,131.58L816.40,132.11L813.13,133.24L813.05,132.96L797.41,136.97L791.98,138.22L791.54,137.64L791.56,125.69L801.61,123.27L816.01,119.81L816.90,117.85L819.69,115.23Z",
"Michigan": "M667.31,169.90L650.10,173.11L649.94,171.97L634.79,173.99L624.11,175.30L626.43,172.69L627.71,168.56L629.02,165.98L629.79,162.49L629.89,157.63L628.97,152.51L624.02,142.86L624.72,138.91L623.35,134.44L625.62,129.42L625.74,125.45L625.08,123.41L626.99,122.30L626.90,119.41L629.95,118.25L631.95,114.81L632.57,121.10L633.89,121.22L635.08,117.87L634.44,112.55L635.26,111.09L638.47,109.78L636.90,106.23L638.66,102.81L641.34,102.24L644.67,103.80L647.69,103.65L649.50,105.89L651.79,105.75L655.91,107.45L657.22,107.15L659.85,110.52L658.49,112.76L660.49,115.07L661.55,117.91L661.82,124.46L659.57,126.46L659.47,129.87L656.66,131.46L655.63,135.69L656.47,137.12L659.68,138.09L661.66,135.55L663.68,130.67L667.68,128.29L669.99,129.28L671.67,131.54L674.14,138.52L674.94,142.09L677.03,146.23L676.75,152.71L674.84,153.99L674.40,151.73L673.13,152.62L672.38,158.10L670.13,160.50L669.99,164.61L667.30,168.44ZM631.84,104.21L632.32,106.27L630.78,106.86L631.05,103.84ZM607.87,118.29L605.80,116.69L606.66,114.09L603.75,114.02L604.63,111.52L604.44,108.47L601.69,106.65L600.07,104.61L594.73,103.43L593.20,104.15L587.80,102.09L575.08,99.67L573.52,96.83L571.20,95.97L575.71,93.78L577.63,91.52L582.79,90.20L585.95,87.33L587.50,87.09L588.63,85.16L592.09,82.25L593.75,79.88L596.39,78.18L599.17,79.13L595.05,84.91L594.13,86.82L594.52,90.03L596.55,87.34L600.70,87.29L604.08,88.64L607.48,93.06L609.15,93.73L612.08,92.63L612.92,93.59L616.01,93.80L621.94,89.04L625.22,88.24L629.68,87.85L632.50,86.13L634.77,85.73L635.89,90.48L638.33,90.81L640.58,89.73L641.72,90.72L643.09,89.08L646.48,88.11L647.44,94.13L649.39,96.45L651.85,96.76L651.86,95.02L654.16,94.67L655.68,96.27L654.83,97.75L648.08,97.61L645.03,98.82L641.31,97.23L640.59,99.26L641.28,100.81L639.70,100.64L637.14,98.59L633.06,97.70L631.07,97.86L629.46,100.39L626.36,101.36L622.87,101.32L621.60,102.44L621.50,104.38L617.92,106.45L617.85,104.15L616.14,103.87L615.76,106.32L612.98,106.74L611.84,107.93L610.44,112.23L607.55,117.84ZM588.14,69.95L585.39,72.40L583.88,72.83L583.84,71.02L590.82,66.25L589.69,69.22Z",
"Minnesota": "M551.84,94.97L550.88,94.26L548.54,95.84L549.15,106.12L548.49,107.21L545.12,108.84L542.53,112.71L542.46,115.20L543.87,115.32L545.53,117.43L544.27,120.18L544.71,123.12L544.18,129.58L547.61,132.55L550.21,132.69L551.61,134.52L555.54,136.20L556.30,138.46L560.04,141.19L562.07,141.72L564.73,145.38L564.59,148.18L565.42,150.15L563.49,150.28L499.51,153.04L499.00,121.60L496.15,119.64L493.96,116.32L497.25,112.55L497.49,110.54L496.92,103.58L495.44,101.79L494.40,97.99L494.54,93.33L494.07,92.57L493.54,81.46L491.15,75.60L490.22,72.29L489.77,65.29L490.51,62.92L488.94,57.45L513.00,56.99L512.80,50.39L515.08,50.51L516.64,51.78L518.46,60.69L519.71,61.69L523.55,61.83L524.03,62.66L528.51,62.85L529.10,64.72L532.92,64.07L532.88,63.31L535.83,62.22L538.47,62.46L541.54,63.72L542.47,65.47L544.19,65.18L546.02,68.96L546.69,67.31L549.59,66.37L550.20,67.95L553.74,68.86L553.84,70.37L555.66,71.48L559.15,70.57L561.14,68.72L563.95,67.47L565.17,69.94L567.12,69.22L569.54,69.60L572.27,68.99L575.60,70.90L578.58,70.26L578.41,71.23L574.67,73.74L569.33,75.89L565.92,77.97L561.13,82.80L559.11,85.71L555.93,89.07L550.84,93.60L551.84,94.97Z",
"Mississippi": "M614.85,296.16L618.64,295.77L620.30,297.44L620.26,316.82L620.31,350.36L624.13,376.86L622.57,377.79L618.93,377.77L617.34,376.77L613.81,377.87L608.99,380.34L607.54,381.72L605.57,380.07L604.75,377.25L601.96,373.65L602.93,367.79L574.83,369.96L575.81,368.64L574.52,365.27L576.29,364.96L576.10,358.52L577.58,358.81L578.19,354.82L581.48,352.08L582.95,347.93L582.25,342.77L579.93,340.73L579.83,337.17L580.81,336.32L579.32,334.41L580.25,331.93L579.20,328.34L580.36,326.81L577.66,324.69L579.56,319.14L581.94,316.17L580.94,314.31L583.69,311.20L583.53,310.06L586.03,308.90L585.52,305.46L586.94,304.57L587.71,301.51L589.85,299.98L588.87,298.52L614.85,296.16Z",
"Missouri": "M560.93,201.39L562.29,201.21L565.19,204.59L566.67,205.07L565.69,207.65L566.08,211.20L568.12,216.47L572.52,220.70L577.25,224.12L578.58,229.83L579.69,230.81L581.10,229.05L584.10,229.58L586.11,230.68L584.96,232.90L585.46,234.51L583.54,239.22L583.70,242.01L588.00,245.24L589.68,247.43L591.13,246.91L595.86,250.28L596.10,252.97L597.53,256.23L596.51,257.49L600.04,262.21L602.24,262.20L601.77,269.41L599.66,268.83L599.10,271.11L598.19,271.19L597.43,271.26L597.89,275.58L595.54,280.24L586.53,281.00L588.48,277.55L590.43,275.26L588.94,271.99L528.99,275.49L527.01,275.56L526.70,266.78L525.42,228.77L522.53,228.00L520.27,223.93L518.53,222.24L521.36,217.04L517.03,215.82L515.68,214.22L512.29,209.68L509.34,204.06L524.24,203.91L542.28,202.95L560.93,201.39Z",
"Montana": "M409.93,55.26L408.74,74.91L406.56,108.15L405.57,124.66L405.37,124.64L382.56,122.87L343.74,118.97L319.63,115.90L318.44,125.01L316.47,122.90L314.95,119.59L311.61,122.79L309.03,123.09L308.56,122.06L305.56,122.39L304.01,121.28L300.95,122.37L297.14,121.68L295.60,123.09L294.34,121.92L293.63,116.08L291.12,115.48L289.94,113.83L290.55,110.54L289.29,109.07L287.88,105.24L287.24,101.74L287.81,100.39L285.92,98.32L284.42,100.01L281.04,101.85L278.78,99.61L279.70,97.83L279.16,95.89L281.66,94.39L280.87,91.54L281.91,87.56L284.71,81.47L281.26,80.96L281.33,79.81L278.54,77.48L278.36,75.51L274.81,70.13L274.78,68.86L272.55,67.67L270.69,65.20L271.51,60.52L268.67,55.06L272.01,37.68L323.97,46.48L347.53,49.50L409.93,55.26Z",
"Nebraska": "M412.45,160.05L433.97,161.16L473.66,162.02L474.07,162.89L480.61,166.08L482.14,164.34L483.95,164.72L489.95,164.69L496.68,167.88L497.55,170.37L499.87,170.82L502.33,178.67L504.11,179.79L505.02,182.85L504.29,184.99L504.69,187.39L506.99,188.88L507.02,193.31L508.39,197.24L507.78,201.78L509.34,204.06L512.29,209.68L515.68,214.22L428.26,213.66L426.30,213.58L427.06,195.95L400.98,194.56L403.22,159.50L412.45,160.05Z",
"Nevada": "M236.58,155.10L274.35,162.25L259.50,248.95L257.11,262.94L255.18,265.64L253.80,265.50L252.51,263.12L247.34,262.90L246.37,273.21L246.92,276.74L246.66,280.02L245.40,282.24L231.63,262.36L223.96,251.34L213.48,236.32L200.48,217.63L187.05,198.32L192.23,176.65L199.15,146.99L215.50,150.82L236.58,155.10Z",
"New Hampshire": "M805.86,75.21L809.61,85.88L816.85,107.75L819.34,109.12L819.63,110.84L821.45,111.61L820.97,115.16L819.69,115.23L816.90,117.85L816.01,119.81L801.61,123.27L800.17,122.27L799.62,119.73L800.44,118.50L799.64,116.13L798.61,108.74L799.81,104.83L799.81,100.74L800.48,99.06L799.25,94.92L802.80,92.23L803.95,88.81L802.05,86.36L802.89,83.14L802.29,81.52L802.73,76.71L805.58,76.39L805.86,75.21Z",
"New Jersey": "M786.59,156.14L791.44,157.48L791.19,162.82L789.39,164.48L788.94,167.38L792.77,167.79L793.55,169.68L794.37,179.23L792.08,187.09L789.94,189.71L788.67,194.61L786.76,192.10L782.64,191.63L777.10,189.00L776.21,186.53L776.04,186.18L776.53,185.07L777.23,182.71L780.35,180.46L780.24,179.10L783.49,175.32L783.75,173.66L779.24,171.10L778.57,168.98L776.83,168.81L776.21,166.88L777.42,163.41L775.94,161.88L778.26,157.54L778.49,155.50L779.84,153.87L786.59,156.14Z",
"New Mexico": "M350.15,261.17L357.74,262.00L392.56,264.79L410.98,265.80L410.52,274.57L409.99,274.54L407.59,318.25L406.33,336.02L405.39,353.58L353.25,349.82L352.69,351.51L354.20,353.67L329.49,351.22L328.63,359.14L316.26,357.76L327.90,258.77L350.15,261.17Z",
"New York": "M780.43,87.55L781.49,91.03L781.67,94.35L783.60,97.11L784.13,100.44L783.65,104.24L785.94,108.59L785.65,110.16L788.32,112.43L791.03,124.24L791.56,125.69L791.54,137.64L791.98,138.22L794.55,151.29L795.81,152.45L793.19,155.13L794.60,156.85L800.37,156.83L801.21,155.51L805.84,154.26L808.03,153.06L811.15,149.30L811.96,151.17L814.19,151.45L810.27,155.24L801.50,161.61L797.59,163.45L794.83,163.97L793.03,165.33L791.19,162.82L791.44,157.48L786.59,156.14L779.84,153.87L778.98,152.79L777.03,153.18L774.04,150.84L773.69,148.25L771.70,146.66L770.76,146.99L768.82,144.98L713.42,157.08L712.58,152.74L712.52,152.45L719.26,146.02L720.01,143.42L722.15,141.31L720.60,138.59L719.46,138.23L717.76,133.67L724.61,130.21L731.06,128.94L733.73,128.86L736.91,130.14L738.50,129.00L743.87,127.90L746.83,125.95L749.55,122.07L751.75,121.47L750.73,116.78L751.23,113.80L748.06,112.57L748.16,110.28L752.33,106.25L753.52,103.31L757.96,96.23L762.69,92.01L770.92,90.42L780.43,87.55Z",
"North Carolina": "M715.09,254.23L724.50,252.78L735.20,250.82L784.59,239.90L787.78,246.39L783.83,246.63L783.50,247.60L779.13,249.71L778.67,250.80L775.67,251.79L776.10,252.97L779.64,251.27L780.34,251.90L784.25,250.10L785.97,251.38L788.28,250.14L790.16,254.05L789.80,256.22L788.20,256.80L785.74,261.83L781.19,263.09L781.10,266.18L783.74,268.64L785.46,268.83L783.61,274.30L780.97,274.32L776.67,275.78L773.86,277.50L769.77,281.85L766.89,287.01L766.06,292.91L762.87,292.30L758.02,294.50L738.82,281.27L723.09,283.95L722.95,281.92L720.28,279.37L719.01,280.67L718.61,278.88L701.29,281.01L697.58,282.31L694.86,284.41L690.22,286.32L683.12,287.72L673.28,289.09L673.07,284.93L675.77,284.14L676.42,281.12L679.46,278.03L683.26,277.36L686.27,274.16L689.69,272.64L692.09,268.25L693.80,266.80L694.46,268.45L699.34,264.22L701.94,264.47L703.13,260.94L705.53,259.64L705.43,255.45L715.09,254.23Z",
"North Dakota": "M488.94,57.45L490.51,62.92L489.77,65.29L490.22,72.29L491.15,75.60L493.54,81.46L494.07,92.57L494.54,93.33L494.40,97.99L495.44,101.79L496.92,103.58L497.49,110.54L406.56,108.15L408.74,74.91L409.93,55.26L488.94,57.45Z",
"Ohio": "M703.93,159.28L708.25,182.49L706.51,183.79L707.78,185.51L708.20,188.18L707.19,192.68L707.14,199.27L703.05,205.79L701.53,206.84L699.89,205.96L698.81,208.69L697.27,208.86L696.18,212.48L696.89,214.41L695.79,216.27L693.38,213.94L691.61,218.54L692.71,221.10L691.27,222.32L691.14,224.69L687.69,225.65L685.47,223.56L683.86,223.34L682.80,220.47L681.00,221.35L679.81,223.30L674.56,222.74L672.63,224.31L669.28,222.37L665.02,222.32L664.58,220.82L661.36,217.58L656.26,218.31L653.08,193.91L650.10,173.11L667.31,169.90L672.65,171.50L674.56,172.66L675.61,171.13L678.86,173.43L680.76,174.00L686.34,170.72L689.92,170.60L693.13,166.71L698.08,162.60L703.93,159.28L703.93,159.28Z",
"Oklahoma": "M451.18,267.30L526.70,266.78L527.01,275.56L530.33,294.94L530.70,325.88L525.11,324.15L523.62,322.17L519.87,320.55L518.97,322.12L515.27,322.12L514.46,321.18L511.11,323.00L509.67,322.07L506.62,322.99L503.83,325.74L502.70,324.22L499.68,323.02L496.53,323.06L495.48,321.05L491.90,325.03L490.70,322.83L489.05,323.51L487.78,322.08L484.39,320.74L481.87,323.06L480.77,320.65L478.72,320.36L477.55,318.44L474.80,317.66L472.99,319.29L471.82,317.84L468.99,318.01L465.86,316.44L462.96,316.60L461.99,313.21L457.45,312.95L455.72,313.50L452.58,310.07L451.48,310.24L452.20,276.10L427.02,275.33L410.52,274.57L410.98,265.80L424.19,266.52L451.18,267.30Z",
"Oregon": "M178.27,66.22L179.40,66.33L181.43,68.75L181.98,71.08L181.21,76.31L186.80,79.76L192.67,78.41L195.98,78.96L199.50,80.83L199.62,82.04L206.70,81.22L208.05,82.43L211.67,82.81L214.99,81.83L220.53,81.55L225.35,82.26L227.23,81.50L251.79,86.84L252.84,90.07L255.41,91.84L255.93,94.38L252.43,98.95L251.11,101.81L249.30,103.59L249.18,105.23L247.41,107.51L246.04,107.82L242.33,113.42L242.72,115.94L245.00,116.70L245.72,118.31L242.97,123.63L236.58,155.10L215.50,150.82L199.15,146.99L186.19,143.86L169.52,139.31L158.86,136.57L146.67,133.29L145.46,130.84L146.07,125.11L147.36,121.38L146.53,117.94L148.52,115.51L150.68,111.23L153.84,106.93L155.84,102.91L161.19,88.98L161.54,86.98L164.47,81.05L167.34,72.52L168.04,67.56L169.42,64.87L174.77,63.68L176.28,66.17L178.27,66.22Z",
"Pennsylvania": "M712.58,152.74L713.42,157.08L768.82,144.98L770.76,146.99L771.70,146.66L773.69,148.25L774.04,150.84L777.03,153.18L778.98,152.79L779.84,153.87L778.49,155.50L778.26,157.54L775.94,161.88L777.42,163.41L776.21,166.88L776.83,168.81L778.57,168.98L779.24,171.10L783.75,173.66L783.49,175.32L780.24,179.10L780.35,180.46L777.23,182.71L774.50,182.88L772.76,185.28L724.79,195.72L711.19,198.32L708.25,182.49L703.93,159.28L703.93,159.28L706.11,157.89L712.52,152.45L712.58,152.74Z",
"Rhode Island": "M822.20,136.65L824.04,139.43L821.69,140.51ZM816.40,132.11L818.23,131.58L820.06,135.37L821.70,136.20L820.12,136.35L819.54,139.22L820.14,142.86L815.66,145.04L815.96,143.25L813.13,133.24Z",
"South Carolina": "M694.86,284.41L697.58,282.31L701.29,281.01L718.61,278.88L719.01,280.67L720.28,279.37L722.95,281.92L723.09,283.95L738.82,281.27L758.02,294.50L755.72,295.86L753.21,299.32L751.08,304.37L751.26,308.06L749.40,311.38L746.20,312.01L745.90,314.22L742.97,317.15L741.56,319.96L738.77,321.57L736.03,324.82L735.95,326.11L733.21,328.09L730.63,332.37L727.03,331.46L726.42,328.54L723.30,324.31L721.12,323.43L720.31,319.77L718.86,317.09L714.56,315.10L711.50,312.31L711.32,310.29L707.00,307.99L704.59,305.08L700.97,303.43L698.13,300.19L697.34,298.26L694.56,294.81L693.14,295.33L687.85,292.35L687.80,290.51L690.22,286.32L694.86,284.41Z",
"South Dakota": "M406.56,108.15L497.49,110.54L497.25,112.55L493.96,116.32L496.15,119.64L499.00,121.60L499.51,153.04L497.86,153.45L498.58,154.88L498.21,157.96L499.83,159.66L498.88,160.93L498.51,164.40L497.44,167.01L499.87,170.82L497.55,170.37L496.68,167.88L489.95,164.69L483.95,164.72L482.14,164.34L480.61,166.08L474.07,162.89L473.66,162.02L433.97,161.16L412.45,160.05L403.22,159.50L405.37,124.64L405.57,124.66L406.56,108.15Z",
"Tennessee": "M617.96,269.27L617.40,266.12L620.51,266.57L637.82,264.21L653.14,262.96L655.82,262.40L666.14,261.56L677.90,260.02L678.08,259.70L705.43,255.45L705.53,259.64L703.13,260.94L701.94,264.47L699.34,264.22L694.46,268.45L693.80,266.80L692.09,268.25L689.69,272.64L686.27,274.16L683.26,277.36L679.46,278.03L676.42,281.12L675.77,284.14L673.07,284.93L673.28,289.09L655.22,291.68L630.52,294.39L618.64,295.77L614.85,296.16L588.87,298.52L590.23,297.92L591.36,294.73L590.78,290.52L593.15,287.42L593.38,284.69L595.37,283.55L595.54,280.24L597.89,275.58L597.43,271.26L598.19,271.19L599.10,271.11L600.75,270.77L617.96,269.27Z",
"Texas": "M427.02,275.33L452.20,276.10L451.48,310.24L452.58,310.07L455.72,313.50L457.45,312.95L461.99,313.21L462.96,316.60L465.86,316.44L468.99,318.01L471.82,317.84L472.99,319.29L474.80,317.66L477.55,318.44L478.72,320.36L480.77,320.65L481.87,323.06L484.39,320.74L487.78,322.08L489.05,323.51L490.70,322.83L491.90,325.03L495.48,321.05L496.53,323.06L499.68,323.02L502.70,324.22L503.83,325.74L506.62,322.99L509.67,322.07L511.11,323.00L514.46,321.18L515.27,322.12L518.97,322.12L519.87,320.55L523.62,322.17L525.11,324.15L530.70,325.88L532.26,327.46L535.07,326.48L537.16,327.17L537.55,336.49L538.30,354.45L541.69,358.15L541.94,361.98L546.33,368.89L546.75,372.62L545.40,377.19L544.01,379.07L544.61,381.44L543.62,383.31L544.93,386.61L541.65,392.98L543.05,394.64L540.56,394.84L532.77,397.54L529.90,396.30L529.30,393.45L527.38,395.53L525.95,395.09L525.28,397.60L526.90,398.60L527.25,401.84L524.52,405.37L520.05,409.80L510.93,414.60L509.98,413.86L507.23,415.06L507.13,414.01L503.36,414.84L501.56,412.67L500.48,413.17L504.58,417.59L501.66,419.06L498.86,418.24L498.48,421.39L495.05,424.67L491.54,430.70L489.28,437.00L487.58,436.53L487.16,438.82L488.95,438.24L488.12,442.80L486.92,443.00L486.85,445.56L488.32,446.98L488.78,452.20L490.51,453.99L490.97,457.30L492.38,460.23L487.53,462.06L485.53,459.80L481.80,458.95L476.86,459.14L472.63,456.28L469.43,455.98L467.03,453.68L463.76,452.89L461.54,450.69L460.15,445.45L457.36,442.27L457.74,439.62L456.50,436.75L456.97,434.28L455.06,431.49L453.45,431.18L450.86,428.65L450.07,425.49L447.85,422.59L444.61,420.13L443.14,414.85L441.66,413.38L439.76,409.13L439.19,405.67L437.34,403.13L434.16,400.84L433.46,399.29L430.51,397.85L428.32,393.94L421.72,392.83L417.74,392.85L414.40,391.37L413.58,393.15L409.90,393.55L406.98,397.04L405.02,402.78L404.10,402.82L401.83,406.15L399.32,406.10L395.71,403.22L386.56,398.35L384.89,395.94L381.38,393.50L379.16,388.36L379.32,383.86L377.03,380.05L376.68,376.86L375.19,374.73L369.62,371.33L366.84,367.07L364.44,365.43L362.04,361.77L358.47,359.63L356.29,354.82L354.20,353.67L352.69,351.51L353.25,349.82L405.39,353.58L406.33,336.02L407.59,318.25L409.99,274.54L410.52,274.57L427.02,275.33Z",
"Utah": "M298.24,166.07L312.50,168.03L310.09,185.49L335.99,188.80L332.09,221.55L330.28,236.40L330.28,238.35L327.90,258.77L307.95,256.19L259.50,248.95L274.35,162.25L298.24,166.07Z",
"Vermont": "M802.29,81.52L802.89,83.14L802.05,86.36L803.95,88.81L802.80,92.23L799.25,94.92L800.48,99.06L799.81,100.74L799.81,104.83L798.61,108.74L799.64,116.13L800.44,118.50L799.62,119.73L800.17,122.27L801.61,123.27L791.56,125.69L791.03,124.24L788.32,112.43L785.65,110.16L785.94,108.59L783.65,104.24L784.13,100.44L783.60,97.11L781.67,94.35L781.49,91.03L780.43,87.55L792.79,84.39L802.29,81.52Z",
"Virginia": "M784.88,213.33L786.84,212.56L785.81,215.89L784.24,217.36L784.10,221.57L782.84,228.61L780.88,230.47L779.59,228.29L779.52,222.76L781.50,215.24ZM776.93,216.33L777.22,216.26L776.56,216.41ZM740.42,197.16L748.45,201.47L749.17,197.86L751.24,197.71L752.98,198.81L753.54,201.35L756.46,201.60L758.54,202.82L760.09,205.04L759.55,208.03L758.13,209.14L757.66,211.81L758.64,213.47L762.06,212.12L763.33,214.70L768.23,214.78L770.03,216.64L774.28,218.13L773.72,223.32L776.13,226.72L774.71,228.94L774.99,231.15L776.99,232.07L775.63,234.57L772.20,232.48L771.75,233.58L774.64,234.99L781.38,233.92L784.59,239.90L735.20,250.82L724.50,252.78L715.09,254.23L705.43,255.45L678.08,259.70L685.05,256.08L685.65,254.04L688.16,252.95L688.07,251.40L689.90,249.93L689.68,248.60L694.25,245.21L698.65,239.67L698.67,241.14L701.03,243.77L703.58,244.80L705.27,244.41L707.47,241.67L709.64,243.15L712.96,241.57L718.49,237.12L719.20,238.07L721.28,236.11L720.76,232.96L721.71,229.93L723.72,226.90L724.14,223.57L726.14,219.84L726.38,215.66L729.10,217.59L731.43,217.91L732.53,216.22L734.12,209.50L736.09,210.67L740.77,202.41Z",
"Washington": "M260.79,35.47L256.41,56.40L251.86,79.16L251.38,80.52L252.33,83.83L251.79,86.84L227.23,81.50L225.35,82.26L220.53,81.55L214.99,81.83L211.67,82.81L208.05,82.43L206.70,81.22L199.62,82.04L199.50,80.83L195.98,78.96L192.67,78.41L186.80,79.76L181.21,76.31L181.98,71.08L181.43,68.75L179.40,66.33L178.27,66.22L176.28,66.17L174.77,63.68L172.84,62.46L170.84,62.99L169.02,60.89L170.11,58.72L171.97,57.96L170.60,53.81L171.58,44.30L170.98,42.85L171.55,36.10L170.02,33.00L170.51,27.81L172.69,24.89L174.52,27.09L178.57,30.50L181.76,31.29L184.69,32.98L187.90,32.97L188.93,34.82L191.63,35.45L192.53,39.61L193.97,39.70L192.92,44.72L192.55,49.44L193.81,49.27L193.69,45.12L194.99,41.44L197.87,38.07L196.78,36.12L197.38,33.34L197.06,30.03L198.19,27.98L198.12,25.22L196.43,24.39L195.28,22.03L196.20,20.32ZM193.56,31.94L195.25,31.61L194.10,34.93L192.64,33.17ZM191.32,26.44L193.15,24.59L194.10,27.68L193.00,29.83L190.57,28.50Z",
"West Virginia": "M708.25,182.49L711.19,198.32L724.79,195.72L726.40,204.64L728.67,202.52L730.66,199.07L732.50,199.29L734.55,196.21L738.67,196.64L738.78,194.65L740.94,194.29L741.87,192.72L744.42,193.85L746.63,193.37L749.17,197.86L748.45,201.47L740.42,197.16L740.77,202.41L736.09,210.67L734.12,209.50L732.53,216.22L731.43,217.91L729.10,217.59L726.38,215.66L726.14,219.84L724.14,223.57L723.72,226.90L721.71,229.93L720.76,232.96L721.28,236.11L719.20,238.07L718.49,237.12L712.96,241.57L709.64,243.15L707.47,241.67L705.27,244.41L703.58,244.80L701.03,243.77L698.67,241.14L698.65,239.67L696.83,239.69L693.90,238.12L692.91,236.23L690.34,234.02L688.18,230.95L687.69,225.65L691.14,224.69L691.27,222.32L692.71,221.10L691.61,218.54L693.38,213.94L695.79,216.27L696.89,214.41L696.18,212.48L697.27,208.86L698.81,208.69L699.89,205.96L701.53,206.84L703.05,205.79L707.14,199.27L707.19,192.68L708.20,188.18L707.78,185.51L706.51,183.79L708.25,182.49Z",
"Wisconsin": "M571.20,95.97L573.52,96.83L575.08,99.67L587.80,102.09L593.20,104.15L594.73,103.43L600.07,104.61L601.69,106.65L604.44,108.47L604.63,111.52L603.75,114.02L606.66,114.09L605.80,116.69L607.87,118.29L607.63,120.43L605.32,121.07L603.73,125.28L603.28,128.12L604.75,128.45L606.44,126.44L608.09,122.79L610.50,121.17L612.02,116.57L614.45,115.33L614.51,117.63L613.01,119.93L610.39,127.55L609.89,131.65L610.27,134.51L609.08,135.60L608.35,139.64L609.12,142.93L608.27,145.25L607.34,150.85L608.14,155.12L610.08,158.78L610.14,163.90L597.60,165.18L573.99,166.95L572.92,164.82L568.24,163.14L567.06,160.43L566.36,156.53L567.73,154.31L565.74,152.72L565.42,150.15L564.59,148.18L564.73,145.38L562.07,141.72L560.04,141.19L556.30,138.46L555.54,136.20L551.61,134.52L550.21,132.69L547.61,132.55L544.18,129.58L544.71,123.12L544.27,120.18L545.53,117.43L543.87,115.32L542.46,115.20L542.53,112.71L545.12,108.84L548.49,107.21L549.15,106.12L548.54,95.84L550.88,94.26L551.84,94.97L554.55,94.98L562.67,91.46L565.63,89.62L566.77,90.77L565.30,93.18L569.46,95.82L571.20,95.97Z",
"Wyoming": "M343.74,118.97L382.56,122.87L405.37,124.64L403.22,159.50L400.98,194.56L379.14,193.07L350.65,190.32L335.99,188.80L310.09,185.49L312.50,168.03L318.44,125.01L319.63,115.90L343.74,118.97Z",
"Puerto Rico": "M899.45,468.34L891.42,467.56L887.55,469.47L886.08,468.28L880.48,468.55L882.01,462.43L879.28,457.91L883.75,454.02L887.13,454.83L900.73,455.18L914.85,456.96L919.98,458.79L920.02,463.09L917.43,463.47L914.74,467.85L904.73,469.91L899.45,468.34Z"
}
// SVG paths for a World map derived from data
// derived in the D3 library by Mike Bostock
// https://github.com/mbostock/d3/
// which is licensed under a BSD license.
var worldMap = {
"AQ": "M10.2,676.7L11.9,671.5L17.0,673.7L19.8,678.0L21.9,683.1L22.7,689.8L17.4,691.9L13.7,686.6L12.1,681.4L12.0,680.6L10.2,676.7L10.2,676.7ZM111.4,616.9L113.4,614.8L116.2,617.1L120.4,621.0L118.8,620.6L115.2,619.6L111.4,616.9L111.4,616.9ZM124.3,618.8L124.9,615.6L128.3,617.3L131.8,618.8L135.2,617.1L133.6,620.6L131.0,623.2L127.1,622.4L124.3,618.8L124.3,618.8ZM180.7,602.3L182.4,600.7L186.0,601.9L190.0,602.6L193.0,603.9L196.1,602.8L197.7,608.0L195.6,607.3L192.2,607.6L188.8,607.3L185.0,607.8L182.2,606.0L180.7,602.3L180.7,602.3ZM259.2,597.4L261.1,596.4L264.3,596.8L265.1,592.4L265.3,589.3L265.2,582.8L266.8,579.1L269.4,577.9L270.8,580.8L271.5,583.7L272.7,587.4L273.6,590.9L274.4,594.7L274.7,598.6L274.2,602.1L273.5,605.5L270.2,606.7L267.1,608.5L263.4,608.3L264.8,604.8L261.5,606.0L258.4,607.3L256.3,604.6L256.2,600.9L259.2,597.4L259.2,597.4ZM279.1,698.7L285.4,699.4L291.4,701.0L293.4,694.4L294.9,688.9L297.8,695.3L297.0,703.5L296.1,711.2L290.3,708.8L284.1,709.8L280.6,704.2L280.6,703.5L279.1,698.7L279.1,698.7ZM328.3,669.1L329.7,669.1L333.8,666.3L338.0,669.1L341.5,675.0L342.7,683.7L343.0,690.1L343.1,698.1L338.8,703.2L334.3,707.5L329.1,711.5L323.2,715.0L316.7,713.9L313.0,708.2L313.5,701.3L319.4,696.9L321.8,691.6L323.6,685.1L324.8,679.7L326.5,674.7L328.3,669.1L328.3,669.1ZM927.7,655.7L932.6,658.9L935.6,660.0L935.9,663.2L932.3,665.8L928.6,667.2L926.5,663.2L926.5,658.8L927.7,655.7L927.7,655.7ZM965,810L-35,810L-35,799.4L-34.8,799.7L-32.3,783.0L-27.3,791.8L-23.9,781.4L-19.1,790.6L-15.2,780.9L-7.0,776.2L-4.4,782.4L-3.1,785.7L1.0,795.2L8.9,802.8L15.1,810L25.9,810L33.9,810L45.7,810L52.4,810L59.7,810L67.4,809.6L68.0,795.2L57.1,794.0L48.1,787.3L45.8,776.7L38.3,771.2L38.8,760.2L39.8,750.8L40.9,742.7L40.3,734.2L35.7,728.8L33.6,722.1L29.3,716.4L36.0,717.4L42.5,714.6L46.5,720.6L51.4,715.3L56.0,708.8L58.2,703.2L57.3,696.5L53.7,692.2L49.6,687.7L43.9,686.9L38.9,684.8L33.5,683.4L31.7,678.0L28.1,673.6L25.9,668.8L25.0,654.3L26.4,655.5L28.9,659.4L33.5,658.2L37.9,656.5L40.2,661.9L44.6,660.7L48.3,657.9L51.8,654.5L54.9,650.5L59.1,649.3L59.0,645.0L58.0,640.7L58.8,636.8L62.4,634.9L64.1,638.5L68.3,636.4L71.5,633.6L75.5,633.4L79.2,632.3L83.0,629.8L86.0,627.6L89.4,625.3L91.5,625.9L93.4,626.7L97.6,625.3L101.3,627.2L105.1,626.9L108.7,625.5L112.5,626.5L116.6,627.6L120.5,627.2L124.5,627.4L128.6,627.6L132.4,627.2L135.3,624.1L138.6,622.5L142.1,624.7L145.4,622.9L148.4,619.4L150.2,622.5L151.2,626.1L153.0,629.6L155.9,626.5L159.2,630.4L163.0,631.7L166.2,634.6L170.1,634.0L173.6,632.1L177.8,632.5L181.6,634.0L185.4,635.9L186.8,631.3L185.1,627.8L183.7,624.1L180.1,623.3L178.5,619.6L177.9,615.9L176.9,608.9L179.1,610.2L182.7,610.7L186.3,610.2L189.6,611.6L192.4,614.4L193.6,617.9L197.3,618.4L200.9,617.1L204.7,615.2L208.2,614.1L211.0,616.3L214.7,615.6L217.1,608.3L219.3,612.6L222.5,614.2L226.0,613.3L228.3,617.1L232.0,617.5L235.3,618.6L238.6,620.8L240.8,617.1L241.9,613.7L244.7,617.5L248.5,616.5L251.3,618.6L253.2,621.9L256.9,621.0L259.8,618.8L262.6,616.3L266.0,615.0L269.9,613.9L273.5,612.6L276.2,610.5L277.8,607.6L278.5,603.7L278.1,600.0L277.3,596.6L276.3,593.2L275.4,589.9L274.7,587.0L274.5,583.9L274.8,580.8L276.1,577.9L277.2,574.7L277.7,571.8L277.1,568.6L276.8,565.7L278.1,562.5L279.7,560.4L281.5,557.8L283.4,555.7L285.6,553.7L286.7,550.8L288.2,549.0L289.9,547.4L292.6,547.0L294.4,545.0L296.3,543.7L298.6,543.0L300.6,541.4L302.2,539.4L304.4,538.7L306.0,540.3L305.0,542.4L302.1,544.2L300.9,545.6L298.9,544.6L296.6,545.2L294.7,546.7L292.7,548.4L291.3,550.3L290.9,552.9L291.1,555.4L292.4,557.7L290.5,559.3L287.9,559.9L286.4,562.2L284.7,564.4L283.0,567.6L282.5,570.3L283.5,573.4L285.0,575.7L287.3,577.6L289.4,580.0L290.5,583.1L291.1,586.1L292.0,589.3L293.3,592.1L294.1,595.2L294.5,603.3L295.3,606.7L295.5,610.3L296.4,614.1L296.0,619.2L294.5,623.3L292.8,626.7L289.1,628.2L287.9,631.9L286.2,635.5L282.0,639.6L278.3,641.4L274.8,643.8L271.1,646.3L268.8,651.2L264.4,651.7L259.5,651.2L255.1,652.1L250.4,652.1L251.3,657.0L255.5,659.2L258.6,662.7L260.3,667.3L257.2,671.5L252.5,670.2L248.5,673.6L248.3,679.4L248.2,685.1L251.5,690.1L252.1,695.9L255.6,701.9L261.5,704.5L266.5,709.1L270.5,714.6L275.5,720.3L282.4,723.2L289.2,728.4L294.0,734.2L299.1,741.0L301.9,751.2L303.2,759.7L306.6,751.6L311.2,745.2L316.0,738.6L321.8,733.4L326.7,728.0L333.6,727.7L340.4,730.3L346.0,735.0L347.8,726.5L351.7,721.0L358.7,720.6L364.2,716.7L369.4,712.9L375.2,710.5L381.3,707.5L385.6,703.2L383.7,697.5L382.5,691.9L382.5,686.3L377.1,686.9L371.4,689.2L366.0,689.2L365.2,683.7L365.6,673.1L366.8,670.2L370.8,667.0L375.5,663.9L378.8,660.2L382.2,656.5L384.7,651.7L388.5,649.6L392.3,647.9L394.2,647.0L398.5,646.6L402.6,645.0L406.0,642.7L409.4,640.1L412.4,637.4L416.3,634.0L418.7,630.4L421.3,627.4L422.2,623.3L419.2,621.0L420.2,616.9L422.0,613.9L424.9,612.0L428.0,609.8L430.8,606.9L433.0,603.3L434.3,599.1L436.4,596.8L439.7,597.3L441.0,600.2L444.3,600.5L444.5,597.3L445.9,593.9L448.9,594.7L449.6,597.9L452.9,598.5L456.5,596.9L460.0,595.9L463.1,596.4L464.3,600.0L467.4,597.1L470.2,595.6L473.3,594.4L476.4,593.2L479.3,591.3L482.4,589.9L484.8,588.2L486.5,585.3L488.5,587.4L491.4,586.2L493.4,590.1L495.0,593.1L498.2,591.4L499.4,588.2L502.2,585.9L505.9,586.4L507.0,589.5L509.3,586.4L512.2,585.4L515.5,585.1L518.4,585.3L521.5,586.2L524.5,586.7L525.8,589.5L527.6,591.9L530.7,590.4L534.0,590.1L537.1,590.1L540.2,589.9L543.0,588.8L545.9,587.8L548.4,585.6L551.0,584.2L553.8,583.4L555.9,581.2L557.5,576.9L559.0,574.4L561.9,575.6L563.0,578.3L565.4,580.1L568.3,579.5L570.2,582.3L572.3,584.3L575.1,582.5L576.1,579.1L578.6,577.7L581.5,575.1L584.2,574.1L587.5,572.6L589.7,571.0L591.9,569.3L594.1,567.7L596.7,568.6L599.2,566.0L601.0,564.0L603.6,564.2L605.9,562.5L606.5,560.0L608.8,558.1L611.1,556.8L613.9,555.7L616.4,555.2L618.9,555.6L621.5,556.2L623.7,558.1L624.0,561.1L626.4,563.5L628.1,565.4L631.4,566.3L633.3,568.3L635.6,570.3L638.2,570.7L640.5,569.3L642.9,566.3L645.5,567.8L648.2,568.7L650.8,569.6L653.5,570.1L656.3,570.1L658.6,578.0L658.5,580.0L658.2,583.6L655.5,585.6L653.3,588.6L653.7,591.9L656.8,591.7L656.4,595.1L655.0,598.3L653.7,601.9L655.8,604.7L659.0,605.6L662.2,604.0L663.8,600.5L664.7,597.3L666.2,594.6L668.0,592.1L668.7,589.1L670.1,585.1L671.9,584.3L675.0,584.0L677.8,583.1L680.6,581.8L682.0,578.8L682.8,575.9L684.7,573.1L687.4,571.2L689.8,569.7L691.3,567.3L692.9,566.0L694.9,564.9L697.7,565.6L700.2,564.9L702.9,564.0L705.9,564.4L707.9,562.5L709.4,557.8L710.4,559.7L711.7,563.1L714.0,564.4L716.7,565.0L719.4,564.2L722.2,564.7L724.8,564.9L726.5,564.2L728.9,564.6L731.0,566.1L733.5,565.2L736.5,565.2L739.1,564.2L741.9,565.2L743.8,562.8L745.2,560.4L747.1,558.5L750.6,553.5L752.4,554.4L754.5,556.2L756.4,558.7L759.9,562.9L762.6,563.1L765.2,563.1L768.2,562.2L771.2,561.3L773.4,559.3L775.3,557.3L778.5,557.0L780.5,555.6L782.7,556.9L784.1,559.1L786.1,561.3L789.1,561.0L791.0,562.8L794.3,564.6L797.8,565.3L800.7,564.7L802.9,562.5L804.7,560.3L807.2,559.7L809.7,560.7L812.6,561.4L815.2,560.3L817.7,560.3L820.2,561.0L822.7,561.7L825.2,560.4L828.2,559.3L831.1,559.1L834.2,559.1L836.8,558.4L839.3,557.8L840.0,554.5L840.1,551.7L841.9,553.6L842.4,556.6L843.3,559.5L844.4,561.8L846.8,563.1L849.9,562.6L853.6,562.5L856.1,562.1L859.7,562.1L862.3,561.9L866.0,562.2L869.1,562.8L871.0,565.0L870.5,567.7L872.3,569.9L875.3,571.6L878.4,573.5L882.0,574.8L885.7,576.0L888.6,577.2L891.7,577.4L893.5,574.8L896.0,576.9L898.1,579.4L900.5,581.2L903.9,582.0L907.1,582.9L908.5,586.1L911.6,588.0L913.8,590.9L916.9,592.2L920.1,592.1L923.1,592.6L926.4,592.4L929.7,593.1L932.8,594.2L935.7,596.2L938.6,597.9L940.5,600.5L940.2,604.0L938.7,607.2L937.5,611.4L936.5,614.8L935.2,618.8L931.5,620.4L929.9,623.9L926.3,626.1L925.1,630.2L923.2,634.2L921.2,637.6L920.0,642.3L919.3,646.6L919.0,651.9L919.1,656.5L920.7,661.4L921.3,666.2L922.6,671.0L927.7,672.8L928.8,678.8L923.8,681.1L919.6,684.2L914.3,684.8L912.0,693.4L911.5,700.9L910.3,707.1L908.8,713.6L912.5,719.6L913.9,727.3L916.3,734.6L919.7,741.4L923.5,748.2L927.7,755.2L934.1,762.5L935.5,774.7L943.5,780.4L946.1,790.6L953.8,783.5L957.0,787.9L960.2,792.3L965,799.4L965,810L965,810Z",
"AF": "M673.1,198.3L672.1,199.1L666.5,199.8L662.8,202.2L664.0,204.6L662.4,209.2L659.1,209.3L660.3,211.7L658.0,212.7L657.5,216.2L650.3,218.6L649.0,223.0L638.5,224.4L634.0,223.0L636.8,219.2L634,217.7L633.2,212.5L634.2,211.0L633.0,208.9L635.2,204.0L639.2,205.2L640.3,203.1L644.1,201.7L645,198.8L649.8,197.9L653.2,198.5L657.5,198.8L662.1,194.0L663.8,196.0L664.1,200.3L668.6,197.6Z",
"AL": "M519,184.8L518.8,181.7L519.5,178.8L520.7,179.1L522.1,181.6L522.8,185.2L523.2,185.4L520.5,189.7L518.5,187.0Z",
"DZ": "M473.2,199.9L488.9,199.4L487.7,200.8L487.9,207.3L485.8,209.8L490.1,215.7L491.5,221.8L492.6,229.4L492.4,233.5L491.1,234.6L493.4,239.4L497.1,240.3L498.3,242.7L481.1,254.9L476.8,255.7L474.2,256.2L473.9,253.8L470,252.3L451.6,238.2L446.5,234.7L440.9,231.1L440.9,229.9L440.9,226.6L454.9,219.4L454.3,217.0L461.7,215.7L460.1,206.9L458.8,205.7L467.6,201.1Z",
"WS": "M-9,350.1L-9.5,350.2L-8.7,350.0ZM-5.6,350.0L-5.8,350.0L-5.9,349.9Z",
"AD": "M469.9,179.0L469.7,179.3L469.0,178.9Z",
"AO": "M503.8,326.2L511.0,326.4L513.9,332.5L518.8,332.2L519.2,329.4L525.5,330.2L526.8,341.3L531.6,340.3L531.7,346.4L526.1,346.4L526.1,355.5L530.2,359.7L529.6,359.8L522.9,360.9L516.2,359.0L503.8,359.1L501.5,357.7L497.6,358.6L499.7,347.6L503.3,342.9L501.0,335.3L502.1,333.3L499,326.9L501.6,326.3ZM501.3,322.9L498.9,326.0L498.4,323.9L500.5,322.2L501.3,322.8Z",
"AG": "M293.6,262.0L293.0,261.7L293.3,261.6ZM293.5,260.2L293.1,260.3L293.1,260.0Z",
"AZ": "M590.2,189.4L592.2,190.2L593.2,192.7L590,190.6L589.4,189.9L589.3,189.6ZM591.4,186.3L591.4,186.1L591.5,186.2ZM594.3,181.7L597.6,184.1L599.9,181.8L604.9,187.6L602.4,188.0L600.8,194.1L598.3,192.7L599.3,190.7L598.2,189.5L594.2,192.6L594.2,190.1L591.6,188.6L592.7,187.7L590.4,184.1L590.0,183.8L594.2,184.7L594.0,181.5Z",
"AR": "M275.3,484.2L274.6,485.3L277.8,489.0L284.0,492.0L280.4,493.9L274.3,492.6L274.3,482.5ZM282.3,373.0L283.9,372.9L285.5,373.3L286.3,375.2L287.3,372.6L291,373.3L295.5,378.1L304.5,382.3L305.0,383.4L302.2,388.9L310.1,389.3L313.0,386.1L313.3,383.5L315.3,383.8L315.5,388.3L310.0,391.7L304.9,398.0L304.4,399.8L303.3,405.3L303.4,407.3L302.6,407.5L302.4,408.9L302.5,412.3L306.1,414.9L305.6,417.1L307.6,420.4L303.0,426.0L291.7,427.1L292.7,429.1L291.6,434.7L284.0,434.5L284.4,439.1L285.9,440.4L287.9,439.1L288.3,441.1L284.5,441.3L286.3,442.5L283.5,445.0L282.7,450.3L279.0,451.2L277.2,454.2L279.3,458.2L282.2,459.0L281,461.8L282.2,462.2L277.2,466.7L276.3,470.8L273.3,470.8L275.0,471.5L272.1,475.5L273.4,477.7L271.6,478.0L273.3,477.9L274.8,481.4L265.2,479.6L263.8,477.4L264.1,473.6L261.7,474.1L260.6,468.8L263.4,465.7L264,460.1L265.9,456.9L265.6,452.8L266.9,451.4L264.7,449.3L267.4,448.4L265.3,447.8L264.6,439.8L265.7,439.1L265.8,429.9L268.2,426.2L267.2,420.2L269.3,417.7L268.9,414.7L271.0,411.3L269.0,401.2L271.0,398.0L271.5,392.3L275.3,387.6L274.5,381.0L277.9,378.7L278.3,375.1L281.0,372.0Z",
"AU": "M868.0,434.4L872.1,435.7L876.7,434.5L876.1,443.4L874.2,441.9L873.1,444.9L870.6,444.4L866.8,435.8L866.9,434.1ZM860.8,340.3L864.3,350.4L866.4,349.7L868.6,352.0L871.3,363.4L878.2,367.3L880.7,374.1L883.4,373.6L884.0,377.2L890.5,384.6L890.0,388.5L891.7,393.1L890.1,400.7L882.1,417.1L881.5,422.5L875.4,424.2L871.1,426.7L871.6,428.3L869.0,425.0L867.5,426.0L867.5,423.8L863.7,427.3L858.2,425.7L853.3,421.8L853.3,419.2L851.3,416.2L852.9,418.1L851.3,416.0L852.1,415.1L848.5,416.0L849.7,414.0L848.6,411.0L847.6,414.3L845.0,414.7L846.7,413.6L848.1,409.0L847.6,405.6L842.6,413.9L840.3,412.5L841.4,412.6L837.7,405.5L829.3,402.1L814.9,404.7L810.2,407.1L808.1,410.2L798.3,410.2L792.5,414.3L784.4,411.4L784.4,408.9L786.4,408.0L786.5,403.4L784.1,394.8L779.5,385.5L781.2,386.4L780.1,383.4L782.2,385.7L779.9,380.0L781.7,372.2L782.0,374.2L789.1,368.6L801.1,365.5L804.8,361.1L804.3,358.6L806.4,356.2L808.2,359.6L808.3,357.9L809.2,358.5L808.2,355.5L808.6,355.4L809.1,356.1L809.3,355.7L810.1,356.2L811.9,356.2L810.5,355.9L810.6,355.3L811.0,355.3L811.4,354.4L810.5,354.6L810.6,353.5L812.7,353.6L811.7,352.6L813.4,352.5L812.6,351.4L813.9,349.9L814,351.1L815.1,350.7L815.0,349.0L815.8,349.9L817.3,348.5L818.9,349.1L821.0,351.2L820.5,353.5L822.0,351.4L825.3,352.7L825.9,351.4L824.3,350.2L827.7,344.7L833.7,343.9L831.6,341.1L840.6,344.4L842.5,342.8L841.8,344.1L842.8,344.9L844.3,343.3L845.5,344.6L844.0,347.1L842.5,347.2L841.2,351.9L851.8,358.9L855.2,359.7L857.8,355.2L858.2,346.3L859.2,346.0L858.3,345.1Z",
"AT": "M503.4,154.3L505.8,155.1L506.7,153.3L512.0,155.0L512.6,157.5L510.6,158.8L510.8,161.6L509.7,162.2L503.1,163.6L498.6,161.7L494.0,162.2L491.6,161.4L491.4,160.6L491.5,159.5L501.1,159.8L500.4,157.1Z",
"BS": "M262.1,249.8L260.3,250.4L262.1,249.3ZM249.0,241.2L249.2,240.3L249.5,242.0ZM247.8,237.6L249.1,239.7L248.2,240.4L247.1,239.4ZM248.5,232.8L246.3,233.6L245.6,232.9ZM249.0,232.3L250.9,233.5L250.5,235.5L250.6,233.4Z",
"BH": "M605.3,234.4L605.4,235.7L605.1,235.2Z",
"BD": "M717.1,247.1L716.6,244.9L717.4,245.9ZM710.6,233.4L714.2,234.6L714.5,237.3L721.6,238.1L718.2,242.3L719.4,244.5L721.3,242.1L722.2,247.3L721.2,250.1L721.4,251.0L719.7,245.8L717.3,245.2L716.6,242.5L715.7,247.7L715.0,247.7L715.1,246.8L714.8,247.3L715,245.8L713.8,248.2L713.9,246.3L712.9,248.4L712.3,246.9L711.5,240.6L709.5,239.2L712.2,237.3L709.7,235.6ZM715.6,246.7L715.1,247.3L715.6,246.9Z",
"AM": "M590.4,184.1L592.7,187.7L591.6,188.6L594.2,190.1L594.2,192.6L593.2,192.7L592.2,190.2L590.2,189.4L589.3,189.6L586.2,188.1L585.7,184.5L590.0,183.8ZM591.5,186.2L591.4,186.1L591.4,186.3Z",
"BB": "M299.6,273.4L299.3,272.6L299.9,273.1Z",
"BE": "M476.9,143.6L476.8,143.0L479,142.6L481.6,145.8L482.0,148.5L481.7,148.3L481.1,151.0L478.4,148.4L476.5,149.2L472.0,144.3L474.3,143.1L476.7,143.2Z",
"BM": "M285.0,215.2L284.8,215.2L285.3,214.8Z",
"BT": "M716.3,228.7L719.6,229.6L720.7,232.4L714,232.9L712,231.0L713.8,228.4Z",
"BO": "M283.9,372.9L282.3,373.0L281.0,372.0L278.3,375.1L276.4,375.1L274,367.9L274.8,365.0L272,359.7L271.9,359.4L273.8,356.0L272.1,353.9L274.2,345.0L271.7,340.6L274.5,341.0L279.9,337.6L283.3,337.0L284.4,343.6L297.0,348.7L297.8,355.7L302.9,355.8L302.7,358.6L305.2,361.4L303.4,367.2L300.8,364.8L293.5,365.6L291,373.3L287.3,372.6L286.3,375.2L285.5,373.3Z",
"BA": "M514.0,177.8L513.8,177.6L509.8,172.8L508.8,169.0L517.8,170.2L519.5,173.4L518.4,175.5L516.2,179.0Z",
"BW": "M539.8,377.9L535.8,383.8L528.9,382.6L525.1,387.5L522.3,387.4L522.8,384.4L520.5,381.0L520.5,372.7L523.3,372.6L523.3,361.7L529.7,360.8L530.6,362.2L535.1,360.2L537.6,365.3L541.9,368.2L542.8,371.3L546.5,373.2Z",
"BV": "M474.3,491.1L474.3,490.8L474.6,490.8Z",
"BR": "M320.8,314.1L320.8,313.2L321.5,313.0L321.6,312.0L322.7,311.4L322.5,312.8ZM326.9,310.6L330.6,310.8L329.9,312.9L328.4,314.4L324.5,315.0L324.2,310.7ZM298.0,295.4L297.9,297.4L299.5,299.1L298.3,302.5L299.3,305.1L301.6,306.6L308.1,304.6L309.7,304.7L309.5,302.9L313.3,303.5L318.0,303.8L321.4,298.7L321.8,297.7L323.0,299.1L324.2,303.9L326.3,305.2L326.3,306.7L322.6,310.3L321.3,312.0L321.3,312.8L320.7,313.2L320.7,313.7L318.5,314.4L319.9,314.6L323.7,312.5L324.2,314.9L322.3,314.5L322.0,316.3L322.4,314.8L323.7,316.9L324.2,315.0L328.0,314.7L327.5,317.1L329.7,314.0L331.1,314.0L330.2,314.0L331,312.4L333.2,311.6L339.0,313.6L339.0,314.8L340.3,313.9L341.7,316.5L340.5,319.1L342.6,316.6L341.8,317.8L344.5,316.5L350.4,318.3L353.8,317.9L361.7,323.6L366.6,324.4L368.3,331.2L366.9,335.6L361.8,340.0L359.3,345.3L358.0,346.4L356.9,345.5L356.3,359.9L351.1,372.6L348.2,375.4L345.3,374.6L340.9,375.8L341.1,376.7L336.1,378.3L331.0,383.1L329.6,383.0L330.6,383.5L329.4,385.0L330.3,388.5L329.5,392.7L320.3,404.4L324.5,398.9L322.5,397.4L322.5,400.0L316.7,409.6L316.3,407.6L317.5,406.3L315.3,403.8L310.6,400.1L309.4,400.9L307.1,397.7L304.9,398.0L310.0,391.7L315.5,388.3L315.3,383.8L313.3,383.5L314.0,380.7L313.8,378.4L311.0,378.5L309.8,373.5L303.9,372.9L303.4,367.2L305.2,361.4L302.7,358.6L302.9,355.8L297.8,355.7L297.0,348.7L284.4,343.6L283.3,337.0L279.9,337.6L274.5,341.0L271.7,340.6L268.8,340.7L269.1,336.3L264.6,337.9L263.9,336.4L261.6,336.2L262.3,335.0L259.4,331.0L261.8,327.9L262.6,324.2L268.4,321.5L270.6,321.7L272.2,313.7L270.4,308.3L273,308.1L271,307.0L270.9,305.2L276.3,305.1L277.7,304.0L279.2,306.6L283,308.1L288.9,304.0L287.0,303.1L285,298.1L290.3,300.1L290.6,298.7L295.5,297.4L296.3,295.5Z",
"BZ": "M219.5,257.7L219.7,257.7L219.9,262.1L218.0,265.2L217.1,265.2L217.3,259.6Z",
"IO": "M666.3,330.5L666,330.2L666.2,330.1Z",
"SB": "M913.7,338.7L916.0,340.2L913,338.8ZM909.2,336.3L911.7,337.5L908.9,337.3L908.3,336.0ZM912.1,334.6L913.2,336.9L911.0,333.2ZM902.8,332.9L903.3,334.0L901.6,332.9ZM909.0,333.2L909.1,333.8L905.2,331.0ZM902.3,330.3L900.9,330.1L899.5,328.4Z",
"VG": "M286.0,257.8L286.0,257.6L286.3,257.6Z",
"BN": "M785.0,296.6L785.3,298.0L784.5,296.5L784.8,296.3ZM784.3,296.4L784.5,296.3L783.4,298.8L781.9,297.2Z",
"BG": "M542.4,178.0L541.2,179.4L542.8,181.2L541.0,181.1L538.2,182.2L538.0,182.2L535.2,184.0L528.7,183.6L527.1,180.0L528.8,176.7L527.1,174.2L528,172.7L532.1,174.8L540.1,173.0L544.3,174.5Z",
"MM": "M736.6,227.8L739.1,230.3L739.3,233.1L739.1,235.5L735.9,239.0L735.9,241.4L739.6,240.8L739.8,243.7L741.5,244.5L740.4,246.8L742.6,247.1L743.3,249.0L745.9,248.6L743.0,252.2L743,252.2L737.3,253.8L736.5,257.4L735.4,257.5L739.8,263.8L737.7,267.6L740.4,271.4L741.8,276.9L739.2,281.0L738.7,282.1L739.6,277.2L736.6,268.1L736.5,263.3L735.5,263.5L734.1,260.7L733.8,262.9L732.3,262.6L730.0,265.7L729.8,264.5L728.4,265.6L728.8,264.2L727.9,265.3L727.8,263.9L726.8,265.0L727.8,260.4L726.0,254.8L725.3,253.4L723.6,253.7L723.5,251.6L722.9,252.9L721.2,250.1L722.2,247.3L723.8,246.5L724.2,241.0L726.5,241.7L729.2,233.2L732.1,231.2L734.8,231.7L734.1,230.1L735.4,228.2Z",
"BI": "M546.1,320.4L545.6,317.6L547.9,317.6L548.1,316.4L549.9,316.6L550.6,319.0L546.7,322.3Z",
"BY": "M538.9,123.0L543.2,120.6L550.9,123.3L550.5,127.3L555.9,133.6L551.8,135.6L553.2,139.8L550.9,139.9L549.8,143.6L536.6,140.5L530.5,142.4L530.6,139.9L529.3,139.0L531.5,136.9L530.2,131.3L536.6,130.3L536.6,126.9L539.5,124.9Z",
"KH": "M763.5,269.4L763.7,275.4L759.0,277.3L760,279.9L756.9,279.3L755.1,280.8L752.8,280.6L752.6,278.8L751.4,279.5L750.8,277.4L749.3,271.9L751.6,269.7L757.2,269.7L759.6,270.9L759.4,269.6L763.7,268.6Z",
"CM": "M505.5,274.3L508.5,282.1L503.7,283.0L507.2,286.3L508.0,289.0L505.0,293.1L505.9,297.1L510.0,303.8L509.6,305.4L501.9,303.9L499.7,303.6L496.5,303.9L492.8,303.9L492.2,303.4L492,299.2L489.9,298.6L488.8,296.6L492.2,291.0L494.5,290.3L496.5,292.0L497.9,290.2L503.3,279.0L505.6,277.6L504.0,273.3L505.2,273.5Z",
"CA": "M111.5,146.3L116.5,147.7L122.5,155.9L117.4,154.5L118.3,152.4L116.4,153.7L115.2,151.5L113.4,151.8L114.7,150.6L109.7,148.6L111.0,146.5L108.2,145.7ZM315.6,155.5L317.8,155.1L315.1,156.8L316.2,159.5L318.2,157.1L317.0,159.2L318.8,159.5L317.5,163.1L316.0,163.1L316.1,161.0L314.4,162.4L315.3,160.0L314.4,158.1L310.3,162.2L309.5,161.9L312.3,158.5L310.5,160.0L308.9,159.6L310.0,157.7L307.1,159.5L299.9,158.0L302.7,155.5L300.3,155.6L302.7,152.8L304.2,153.5L303.2,151.7L304.7,151.4L305.6,146.1L309.7,141.9L311.0,142.2L309.1,143.1L310.1,144.4L307.0,151.1L309.0,148.4L310.8,149.1L309.0,151.5L311.8,151.0L311.1,153.2L315.6,151.7L316.4,152.4L314.7,154.2ZM315.6,155.5L314.7,155.8L314.6,156.1ZM227.5,64.9L229.1,68.8L230.4,67.1L237.8,73.4L237.2,76.7L242.3,78.1L239.7,80.1L234.2,75.4L228.1,82.1L226.8,78.4L222.8,79.2L225.5,76.0L225.8,66.7ZM198.6,56.9L200.5,56.7L199.1,51.3L199.8,48.8L205.1,44.8L204.8,41.9L202.1,43.5L203.0,39.3L205.6,38.8L196.8,32.7L198.9,29.3L196.6,27.2L196.9,23.0L202.1,17.9L200.5,17.2L204.6,18.8L206.7,22.5L206.5,26.7L210.8,32.4L206.8,36.4L214.1,38.2L210.9,38.9L213.7,42.7L214.2,47.5L216.9,39.7L220.4,43.1L221.1,46.8L219.5,49.6L221.9,55.7L224.6,54.0L227.0,43.8L230.1,41.5L227.5,39.6L227.3,34.9L236.5,36.6L233.8,37.4L239.0,40.3L237.0,42.7L239.2,44.5L235.4,45.5L239.3,53.1L238.6,56.5L233.3,61.1L231.8,57.4L230.9,58.5L230.6,56.7L229.1,56.1L229.8,56.7L228.2,57.4L230,56.9L232.5,62.2L223.9,59.8L226.3,62.3L222.2,68.1L211.0,63.8L223.5,69.3L220.2,75.8L214.6,75.8L215.5,77.0L214.2,76.6L214.4,79.1L208.1,77.8L213.2,82.5L208.2,83.9L209.7,85.3L204.9,89.2L206,90.2L203.9,92.1L201.6,102.3L203.2,107.0L202.8,110.0L203.5,107.1L206.2,107.2L208.2,114.6L207,116.8L212.7,115.0L226.9,123.2L228.5,124.6L227.7,126.3L236.3,125.5L236.3,135.6L238.4,138.3L237.5,139.4L241.5,142.7L239.9,144.6L242.4,143.4L244.6,146.0L243.4,143.9L244.6,141.8L245.9,144.0L245.4,141.3L246.9,138.2L245.4,130.2L243.4,127.9L249.0,124.8L252.4,119.7L251.5,112.6L246.7,107.8L248.9,102.0L250.2,102.8L249.9,100.8L251.7,99.5L249.4,100.0L249.9,97.3L248.8,96.8L249.6,95.6L247.8,95.9L249.8,91.6L247.8,87.2L249.6,85.5L257.8,88.3L260.3,86.0L264.9,90.8L264.1,91.4L266.1,91.2L265.3,92.2L266.6,93.9L271.8,94.3L271.6,100.0L267.9,100.0L271.6,101.3L271.2,104.1L272.6,104.6L270.1,107.0L271.0,108.0L275.1,107.0L275.1,110.5L272.3,112.3L275,110.9L276.1,108.1L275.7,110.8L276.8,108.7L276.9,111.6L280.5,106.6L281.5,109.5L281.6,106.4L283.5,105.6L282.8,103.2L284.5,103.8L282.9,101.9L285.9,98.8L284.9,100.4L286.7,100.2L288,103.1L287.0,103.8L289,104.7L287.1,105.7L290.4,107.5L288.3,109.6L291.2,108.6L289.0,111.2L291.5,110.2L290.9,111.5L293.1,113.1L291.2,113.7L294.5,115.9L293.6,118.2L291.1,117.4L296.4,123.4L297.4,122.4L296.4,126.3L298.9,124.6L299.9,125.6L298.5,127.5L300.6,125.1L300.0,126.3L305.6,128.3L297.9,133.2L295.9,132.0L298.0,133.4L297.1,134.5L304.4,130.7L303.3,129.9L305.6,130.3L305.7,133.7L308.1,132.1L309.9,134.1L308.9,135.6L310.1,137.5L308.0,137.6L310.4,138.3L308.8,138.3L310.2,139.9L306.8,142.9L302.1,143.5L298.3,148.0L280.3,148.0L277.8,152.0L273.1,154.3L266.9,162.7L275.5,154.9L284.4,152.4L286.6,153.8L285.6,153.9L286.5,155.5L279.3,157.6L285,158.4L283.4,161.3L285,161.4L285.8,164.7L291.5,167.3L293,166.2L295.6,168.5L286.6,171.3L283.1,175.6L281.1,174.1L282.1,171.3L281.1,171.9L285.8,168.3L286.7,169.8L289,168.3L284.6,168.4L286.4,166.5L285.1,165.4L285.0,167.3L278.3,169.0L276.6,166.9L276.6,161.4L272.6,159.8L268.1,168.7L256.6,169.7L251.6,175.0L246.3,175.0L245.0,175.6L245.5,178.1L235.2,182.4L233.9,181.0L236.8,175.1L235.7,168.3L231.3,163.6L219.5,156.3L211.0,157.4L202.1,154.6L200.8,151.8L200.6,153.4L124,153.4L122.7,152.8L123.7,151.5L122.6,151.9L122.8,150.4L120.6,151.2L121.8,150.4L121.0,148.4L120.6,150.0L118.4,149.1L119.5,146.9L117.5,147.7L118.3,145.1L115.8,147.2L114.2,146.4L116.0,145.8L116.0,144.3L114.6,146.1L113.4,145.4L114.4,144.9L111.7,145.0L112.1,145.5L110.7,144.7L113.1,143.9L110.0,144.0L113.2,141.7L109.7,141.7L111.7,138.9L113.1,140.4L112.9,138.6L111.6,138.5L112.1,136.4L108.3,139.0L109.0,136.3L106.7,133.1L109.8,134.6L107.1,132.8L107.7,130.9L105.9,133.9L103.7,131.6L105.3,129.9L102.5,129.3L103.9,129.5L102.8,127.9L104.1,128.1L103.4,127.0L105.3,124.0L103.5,126.2L103.4,125.8L104.0,124.9L103.6,123.5L103.5,122.7L103.8,121.8L98.8,118.3L94.3,108.7L88.6,101.5L83.1,106.3L78.6,98.4L73.3,98.6L73.3,36.6L91.9,44.1L91.2,41.0L95.8,36.6L105.5,32.8L94.1,43.0L95.7,44.1L94.5,43.0L110.7,32.0L109.4,28.9L116.5,39.3L118.2,36.1L117.2,33.8L119.3,32.5L119.1,35.9L120.4,36.2L119.3,38.8L127,35.4L148.1,45.7L144.0,49.9L145.2,50.7L159.2,49.2L164.9,54.4L163.2,55.5L167.0,61.1L165.6,57.1L167.5,57.8L165.3,48.7L169.3,48.1L169.2,46.7L171.2,46.1L171.5,44.5L169.0,45.4L169.0,47.1L165.3,47.3L166.1,48.0L162.7,47.3L169.9,42.1L171.9,43.8L171.8,46.2L174.4,47.5L174.7,49.0L180.9,51.3L191.8,50.7L191.0,48.7L194.1,52.2L195.2,50.8L190.8,46.5L198.3,47.4L197.0,53.1L200.1,56.3ZM198.6,56.9L197.0,56.1L199.3,58.8ZM205.2,77.7L208.0,77.8L204.5,75.4ZM268.3,156.0L271.0,156.9L267.6,155.7ZM148.3,9.3L146.6,11.2L151.0,7.3L156.0,10.1L154.8,14.1L160.0,12.8L157.3,7.7L160.3,8.2L163.2,11.7L165.4,20.2L167.0,17.6L164.1,6.0L168.4,4.7L172.4,9.8L175.1,20.5L174.4,24.8L184.4,32.4L184.8,35.4L177.5,36.2L178.8,37.8L178.3,40.8L180.8,37.8L182.3,40.3L179.1,43.2L172.9,42.5L168.8,37.8L161.9,43.9L150.3,45.9L149.6,40.3L141.3,38.5L138.7,33.8L155.3,31.0L138.4,28.8L136.0,25.5L145.3,20.9L136.9,22.2L138.0,19.6L134.0,18.7L139.0,8.2L146.7,3.8ZM261.2,46.8L257.1,41.1L252.0,44.0L255.0,40.0L250.5,36.6L251.1,34.2L249.3,35.8L249.2,32.2L245.5,28.1L243.9,30.5L246.1,34.6L237.8,32.8L240.1,36.1L236.9,32.9L234.4,31.3L238.0,34.3L237.9,34.8L237.1,34.8L236.8,35.5L234.2,33.7L226.6,33.8L224.5,31.9L225.0,29.4L220.7,31.8L216.2,24.7L223.3,25.5L215.4,22.6L214.8,17.1L219.4,2.4L228.6,-0.2L224.0,10.1L225.4,12.9L224.9,16.6L229.3,23.1L223.8,25.5L229.4,26.1L229.9,19.6L225.9,16.6L231.2,16.5L226.9,8.5L231.8,9.8L227.6,6.3L232.6,7.6L228.3,5.2L238.4,0.4L242.0,10.0L238.9,14.5L241.3,12.1L240.0,17.7L243.6,15.5L242.3,13.8L243.3,12.1L245.5,14.2L245,17.0L248.9,18.5L245.9,14.6L251.1,15.5L246.7,12.7L249.4,9.8L256.1,12.2L256.8,14.4L252.9,17.7L259.1,16.9L255.5,19.5L257.6,19.7L256.4,23.9L260.1,18.6L258.7,23.7L260.5,20.4L261.1,22.1L259.7,24.9L262.0,23.1L261.1,25.6L263.5,19.7L267.4,23.2L263.4,28.7L268.8,25.0L265.5,30.2L267.3,29.4L266.2,33.6L270.8,26.4L269.1,29.8L275.2,29.1L269.2,35.0L276.6,31.6L278.5,35.9L270.4,37.4L279.4,39.0L273.2,38.9L275.8,40.0L273.2,41.9L275.6,40.5L276.9,41.5L274.5,42.0L276.7,43.4L272.2,42.8L276,44.1L273.6,44.8L274.8,44.7L274.1,45.0L277.5,45.2L277.1,46.4L279.6,46.0L276.4,47.3L278.2,46.6L278.8,46.9L277.2,48.1L278.8,47.1L279.5,47.5L279.0,49.2L281.1,49.1L279.6,50.2L280.6,50.6L281.9,48.1L281.6,52.0L285.2,49.3L283.8,51.8L285.8,50.7L287.5,54.3L285,53.9L287.3,54.6L285.3,56.5L289.6,54.2L287.8,57.9L292.5,56.2L294.8,59.1L290.2,61.2L292.9,63.4L290.0,62.5L291.8,64.8L288,65.7L289.1,66.3L288.4,70.9L283.0,65.3L286.2,61.1L281.8,63.8L283.1,60.8L281.4,62.7L278.7,59.1L276.8,59.6L278.1,61.6L276.1,60.0L278.3,64.1L273.7,62.2L285.3,76.5L284.4,77.8L285.7,81.3L283.6,77.8L285.4,83.5L283.7,82.9L283.9,85.5L279.8,80.6L280.1,82.9L276.3,78.2L276.9,80.6L273.3,78.2L281.6,87.5L281.4,89.7L266.6,82.6L264.5,80.1L267.1,79.2L264.1,78.7L261.1,74.9L261.3,72.4L259.2,74.5L257.6,70.8L256.6,71.5L257.5,74.3L254.3,72.7L252.0,75.5L247.8,73.0L249.9,67.1L254.5,68.7L255.6,72.1L256.1,69.5L254.0,68.1L260.8,67.1L258.1,62.5L264.2,54.7ZM261.2,46.8L261.6,46.4L261.3,46.3ZM187.7,-1.1L195.6,0.2L191.5,8.7L196.8,10.2L197.5,12.9L195.9,16.3L196.9,17.5L192.0,17.6L192.6,20.8L190.7,23.1L179.6,10.1L181.2,6.6L186.0,9.9L187.1,8.1L185.6,5.8L187.8,5.4L182.7,2.7L186.0,3.5L184.1,0.3ZM207.6,-3.3L214.4,-1.2L209.1,9.9L203.0,9.7L205.3,12.5L203.7,16.9L200.5,16.8L201.8,15.3L199.2,9.2L199.2,0.4ZM131.2,-5.0L138.8,-4.6L144.6,2.8L134.0,10.9L130.9,14.3L130.1,20.9L123.9,24.7L115,16.9L121.1,0.0L118.4,-5.7ZM202.8,-19.1L205.3,-15.5L205.3,-9.5L196.6,-12.5ZM191.6,-31.6L194.1,-25.9L192.9,-20.8L194.7,-17.0L192.3,-16.2L193.9,-14.2L186.8,-12.5L185.0,-16.5L190.1,-20.5L179.2,-19.4L183.9,-21.2L181.9,-24.7L183.3,-26.6L181.1,-26.5L181.9,-28.9L187.5,-22.5L188.7,-23.4L186.8,-25.2L188.8,-25.6L184.5,-29.6ZM163.1,-33.3L164.7,-27.0L163.8,-24.3L166.0,-23.6L164.9,-21.2L169.6,-24.3L172.2,-19.7L170.5,-13.2L151.8,-6.3L147.0,-9.1L156.9,-15.1L138.1,-15.4L145.5,-20.2L139.3,-19.2L146.0,-22.4L140.7,-22.8L146.5,-25.6L142.9,-27.1L145.8,-29.8L152.6,-25.8L155.9,-18.3L162.5,-17.9L159.2,-22.5L161.3,-25.0L158.3,-28.3ZM199.2,-36.4L206.1,-32.5L205.1,-28.3L211.0,-31.9L216.9,-27.2L210.5,-26.8L217.9,-17.3L238.5,-21.6L243.9,-17.6L241.5,-13.1L244.6,-11.5L237.7,-7.0L233.0,-11.6L233.1,-8.2L230.8,-7.4L219.1,-7.4L219.0,-11.7L210.7,-8.9L208.0,-14.9L209.1,-22.1L206.4,-27.9L200.0,-26.4L201.6,-27.5L195.6,-32.4ZM141.8,-42.5L144.4,-39.5L142,-37.9L143.0,-31.9L139.7,-27.2L137.0,-28.5L137.6,-33.4L134.5,-29.7L135.6,-27.7L134.2,-24.7L132.6,-27.2L133.1,-23.4L132.0,-22.1L123.2,-24.7L134.0,-39.8ZM196.1,-57.8L201.4,-49.8L195.2,-45.8L193.3,-48.9L195.9,-50.2L191.6,-55.3ZM177.2,-67.3L187.3,-58.6L190.1,-49.3L187.4,-45.6L174.8,-52.1L173.1,-55.2L178,-58.6L171.5,-64.8ZM207.4,-100.1L218.3,-79.8L221.4,-84.4L220.3,-79.6L223.4,-76.1L222.0,-70.3L229.1,-66.4L221.6,-57.4L220.5,-59.7L221.3,-63.6L220.1,-62.3L220.8,-56.0L218.3,-56.9L218.2,-50.5L215.0,-56.9L216.5,-50.6L209.2,-51.3L206.6,-54.9L210.4,-56.0L203.0,-62.3L214,-66.1L200.8,-66.4L198.9,-68.8L203.1,-73.9L198.7,-72.2L196.1,-79.1L202.8,-77.4L201.8,-79.0L203.6,-80.6L196.4,-83.2L204.4,-86.4L199.6,-91.4L206.4,-97.4L203.1,-100.9ZM270.2,-137.2L280.8,-133.1L274.3,-126.4L285.1,-132.4L295.3,-119.9L286.2,-108.1L272.5,-107.9L279.9,-103.9L269.9,-97.6L286,-103.3L272.1,-83.9L268.2,-86.9L270.1,-80.8L263.8,-81.1L269.1,-79.0L266.5,-76.1L267.2,-74.2L248.1,-67.6L258.2,-63.3L245.8,-63.3L257.4,-58.3L251.9,-55.5L256.5,-52.7L251.3,-51.2L255.0,-50.0L254.1,-48.0L247.6,-48.5L249.1,-43.4L246.4,-39.7L237.4,-44.3L239.5,-39.9L236.7,-39.3L237.6,-37.6L248.9,-33.1L239.8,-25.2L240.6,-28.6L235.1,-33.4L236.8,-28.9L215.8,-30.4L224.0,-37.8L220.3,-46.1L230.3,-39.3L229.9,-40.5L233.1,-40.0L232.1,-41.4L236.3,-49.4L231.9,-41.8L229.4,-42.2L230.4,-44.8L229.0,-43.2L227.9,-44.9L228.7,-46.2L227.7,-46.1L230.7,-47.2L226.9,-47.6L231.3,-50.8L228.9,-51.2L229.8,-56.6L227.5,-49.8L221.8,-50.4L223.7,-58.6L236.2,-56.3L233.7,-60.0L238.6,-63.2L229.5,-62.9L233.4,-63.2L224.7,-73.9L228.1,-76.4L224.6,-82.6L243.0,-72.2L233.8,-82.9L248.2,-87.1L242.8,-87.8L252.5,-92.2L245.7,-92.4L251.8,-102.5L240.2,-88.6L228.6,-86.1L224.0,-87.6L236.2,-97.8L221.6,-88.1L216.4,-92.9L229.6,-99.6L215.5,-94.7L214.0,-97.6L222.6,-103.5L209.5,-106.7L220.3,-115.4L230,-111.2L223.6,-117.4L228.7,-123.2L244.9,-109.8L235.1,-121.5L241.1,-124.7L238.6,-130.6L246.9,-127.5L241.5,-132.2L243.3,-133.8L254.1,-125.6L253.2,-122.4L255.5,-126.0L250.0,-134.4L263.2,-127.7L260.4,-133.1Z",
"CV": "M397.3,268.3L396.8,268.0L397.2,267.7ZM399.8,267.9L399.2,268.0L398.9,267.1ZM401.9,264.8L401.2,264.7L401.6,264.2ZM398.2,263.2L397.4,263.5L397.1,263.1ZM394.7,262.3L394.6,261.7L395.6,261.7Z",
"KY": "M239.7,255.3L238.8,255.3L239.3,255.1Z",
"CF": "M517.9,286.0L517.7,285.0L521.5,284.5L525.3,280.2L528.5,279.4L530.7,282.4L530.3,285.7L535.1,288.1L541.2,296.0L536.9,295.5L528.6,296.5L527.1,298.5L522.1,297.7L518.9,295.7L516.5,297.9L516.7,300.3L511.2,300.1L510.0,303.8L505.9,297.1L505.0,293.1L508.0,289.0L516.6,287.5Z",
"LK": "M687.9,282.7L689.5,284.1L690.3,286.3L691,286.3L692.4,289.6L691.8,292.0L688.8,293.5L687.3,292.6L686.3,287.4L687.3,283.2L688.9,283.6L687.0,282.8Z",
"TD": "M505.2,273.5L504.0,273.3L502.8,271.5L502.4,269.4L508.0,262.3L509.4,252.2L507.2,248.8L506.6,244.3L509.4,242.9L531.6,254.7L531.6,265.8L528.7,266.2L525.6,274.1L527.4,274.6L528.5,279.4L525.3,280.2L521.5,284.5L517.7,285.0L517.9,286.0L516.6,287.5L508.0,289.0L507.2,286.3L503.7,283.0L508.5,282.1L505.5,274.3Z",
"CL": "M275,493.5L273.1,493.9L275.5,495.0L274.0,495.0L275.6,495.6L275.9,497.1L275.0,496.0L273.5,495.9L273.9,495.5L273.5,495.3L273.8,494.6L272.1,494.4L272.8,496.1L270.4,494.4ZM276.7,493.3L278.7,494.3L275.1,493.4ZM267.0,489.2L267.4,490.7L265.8,489.6ZM265.9,488.6L265.4,490.5L264.2,488.6ZM269.3,488.2L269.5,489.1L268.6,488.5L269.1,490.0L268.1,489.1L269.0,486.8ZM262.4,486.2L264.6,487.9L262.5,489.5L262.9,488.1L260.5,487.7ZM258.4,484.0L257.3,483.1L261.9,485.8ZM268,492.3L268.4,492.1L268.1,492.2L268,492.3L265,491.1L270.1,491.5L268.1,489.5L270.1,490.9L270.3,490.1L271.1,491.5L270.9,490.2L272.6,491.0L272.2,492.2L272.8,491.6L272.8,491.1L273.3,490.9L270.4,489.3L270.0,488.0L272.3,485.8L269.3,485.9L270.2,483.7L269.3,483.1L274.3,482.5L274.3,492.6ZM258.7,476.3L258.5,474.8L258.9,476.1ZM258.3,474.6L258.3,475.6L256.7,475.0ZM257.5,474.7L256.8,474.0L257.3,473.9ZM258.4,472.9L258.9,474.5L257.5,472.9ZM256.5,471.5L255.3,472.4L255.5,471.0ZM255.8,467.0L254.8,467.5L255.6,466.5ZM257.7,464.3L258.3,469.6L257.3,471.1L257.6,468.1L256.6,470.4L255.3,467.9L256.8,468.0L256.5,465.7L257.7,465.3L256.5,464.4L257.3,462.8ZM256,463.5L256.0,465.3L255.0,462.7ZM256.8,463.0L256.5,464.2L255.9,462.6ZM258.1,453.3L258.3,452.0L258.8,452.8ZM260.4,453.2L260.0,452.9L260.2,452.0ZM259.3,451.9L259.9,452.1L259.0,452.5ZM259.5,451.3L260.0,451.6L258.9,451.2ZM259.8,450.2L260.1,451.3L258.7,450.9ZM258.8,449.4L258.3,448.8L259.8,449.0ZM263,448.5L262.2,448.7L262.6,449.0L261.6,450.0L261.0,449.5L261.6,449.4L261.1,449.4L260.9,448.8L261.5,448.0ZM259.7,438.1L261.1,439.7L259.9,440.6L260.8,442.9L259.8,444.0L258.3,443.4ZM272,359.7L274.8,365.0L274,367.9L276.4,375.1L278.3,375.1L277.9,378.7L274.5,381.0L275.3,387.6L271.5,392.3L271.0,398.0L269.0,401.2L271.0,411.3L268.9,414.7L269.3,417.7L267.2,420.2L268.2,426.2L265.8,429.9L265.7,439.1L264.6,439.8L265.3,447.8L267.4,448.4L264.7,449.3L266.9,451.4L265.6,452.8L265.9,456.9L264,460.1L263.4,465.7L260.6,468.8L261.7,474.1L264.1,473.6L263.8,477.4L265.2,479.6L274.8,481.4L268.3,483.0L267,488.3L263.7,486.1L265.5,486.6L267.3,483.3L263.4,484.5L264.4,485.0L263.1,485.7L263.8,486.7L261.6,485.3L266.4,482.5L262.7,482.1L262.2,484.5L260.9,484.2L262.5,482.0L260.3,483.0L260.1,479.8L261.3,480.6L262.2,480.0L262.6,480.8L262.8,479.9L262.3,480.0L263.0,479.5L262.5,481.7L263.6,478.7L261.5,477.2L263.4,478.6L261.4,477.9L262.4,479.0L261.5,480.0L261.1,478.1L261.4,480.4L260.6,479.9L260.4,478.8L261.1,479.7L260.9,478.2L259.6,477.9L259.7,476.8L260.5,477.9L260.2,475.9L258.7,474.9L260.7,473.9L260.2,473.2L260.6,472.5L259.3,474.4L258.6,472.9L259.7,473.2L257.5,471.7L259.8,472.1L258.5,469.2L260.2,469.8L259.1,468.6L259.9,466.7L258.4,468.4L259.3,464.0L257.6,462.4L261.6,462.3L260.2,460.4L259.6,461.7L257.3,461.2L259.3,460.8L257.9,460.0L259.6,458.4L258.6,457.4L256.6,457.2L256.8,456.0L255.5,457.9L254.6,457.1L258.4,453.4L259.0,453.4L259.5,454.5L259.2,454.9L258.5,455.2L258.0,454.9L258.5,455.3L259.3,455.0L259.4,455.4L259.8,455.6L259.3,455.1L259.7,454.7L260.1,455.2L260.0,455.4L259.9,455.8L259.4,456.4L259.6,456.6L259.8,456.6L261.7,452.9L260.5,453.3L260.7,452.0L262.6,451.9L261.1,450.1L261.8,450.0L262.8,449.2L263.3,448.2L261.4,446.9L263.5,440.8L262.6,439.8L263.8,440.4L262.6,438.4L264.1,436.6L260.1,437.8L260.8,436.9L259.4,434.9L261.6,429.2L260.4,421.5L261.6,421.2L266.5,406.0L266.3,394.1L269.3,382.8L268.8,377.1L270.4,370.9L269.4,361.8L271.9,359.4ZM259.2,454.2L259,454.7L259.2,454.6Z",
"CN": "M772.5,253.1L773.4,254.3L770.6,258.0L766.9,257.6L766.7,255.4L768.5,253.5ZM807.7,133.2L815.2,136.8L819.2,150.0L827.9,154.0L828.8,158.8L839.2,156.4L834.7,169.2L831.2,168.3L828.7,170.3L829.7,175.9L827.2,178.5L827.7,179.6L825.8,177.4L825.3,179.5L820.7,181.2L821,183.5L817.5,181.9L810.4,188.2L801.5,193.1L803.1,190.9L801.7,190.2L804.7,186.7L801.6,185.2L795.3,191.7L792.0,191.8L791.8,194.3L795.1,195.1L796.1,198.7L800.3,196.2L805.4,197.8L805.2,199.6L798.5,201.9L796.0,206.5L799.0,208.4L800.6,213.9L803.6,216.9L797.3,215.2L803.5,219.4L798.7,221.9L804.2,222.9L802.3,224.1L803.8,223.8L802.2,225.2L802.8,226.6L801.5,226.2L802.7,228.0L799.9,228.6L800.6,229.3L798.6,233.1L797.0,232.8L798.1,234.0L795.8,234.7L797.5,235.1L797.3,237.1L796.4,236.3L794.5,239.6L792.1,239.8L793.1,240.5L788.6,243.0L788.5,244.5L782.2,245.6L781.7,245.7L780.2,244.1L780.4,246.6L780.3,246.7L779.3,245.6L779.9,246.7L778.7,247.7L771.6,249.1L771.3,252.5L770.3,252.6L769.3,248.1L768.1,249.1L766.3,247.5L764.9,248.7L761.3,247.2L761.4,244.7L758.2,244.1L757.6,243.3L753.7,245.8L749.6,245.0L748.7,246.1L747.1,246.6L747.7,249.8L745.9,248.6L743.3,249.0L742.6,247.1L740.4,246.8L741.5,244.5L739.8,243.7L739.6,240.8L735.9,241.4L735.9,239.0L739.1,235.5L739.3,233.1L739.1,230.3L736.6,227.8L735.4,228.2L732.7,227.8L733.3,226.4L731.8,224.2L729.9,225.6L727.9,224.7L722.0,229.3L719.6,229.6L716.3,228.7L713.8,228.4L712,231.0L711.7,228.8L709.8,229.3L703.9,229.3L693.0,221.4L690.0,221.9L683.8,218.3L682.7,214.2L685.9,213.6L681.8,204.5L681.1,204.3L676.5,203.3L675.7,200.4L672.8,199.1L672.1,199.1L673.1,198.3L672.9,194.0L670.0,193.5L669.6,190.5L672.9,186.6L677.0,187.3L678.5,184.8L681.8,184.7L687.8,180.4L688.2,177.3L689.5,176.8L688.6,170.7L686.8,170.1L694.3,169.2L693.6,167.4L695.6,160.8L702.5,161.4L703.2,155.9L707.6,153.0L709,152.7L711.2,156.8L715.1,158.0L717.8,163.3L717.5,168.7L730.0,172.4L732.7,178.4L745.1,178.6L756.6,182.7L763.5,179.4L771.7,178.2L776,174.8L774.5,172.1L776.0,169.3L780.6,170.7L791.1,163.4L798.0,163.0L794.2,157.6L791.0,159.0L786.0,157.9L789.1,149.8L792.4,151.2L796.1,149.0L800.5,139.8L798.4,136.8L800.7,134.4Z",
"TW": "M803.1,237.8L803.4,239.8L800.3,247.5L798.6,242.4L801.1,238.2Z",
"CX": "M758.6,339.3L758.4,339.1L758.7,338.9Z",
"CC": "M734.0,344.1L733.9,344.0L733.9,343.9Z",
"CO": "M266.2,275.1L266.8,276.8L265.0,277.3L263.6,278.9L261.1,284.4L262.8,284.6L265,290.4L270.2,290.5L272.6,293.0L277.6,292.7L276.5,297.3L278.0,300.5L276.5,302.1L278.3,303.3L279.2,306.6L277.7,304.0L276.3,305.1L270.9,305.2L271,307.0L273,308.1L270.4,308.3L272.2,313.7L270.6,321.7L268.5,320.5L269.7,316.9L265.8,315.9L262.5,316.9L260.6,313.8L255.8,310.3L250.0,308.9L246.6,306.5L246.0,305.9L246.7,303.2L249.0,302.7L251.0,299.1L249.9,298.7L250.1,291.7L248.6,289.8L250.5,287.8L250.0,285.8L251.7,287.9L251.3,286.1L254.9,283.6L255.9,279.8L257.0,278.8L258.3,279.9L259,278.3L261.4,278.4Z",
"KM": "M588.5,343.8L588.6,344.6L587.8,344.0ZM585.7,343.4L585.0,342.8L585.2,341.8Z",
"YT": "M590.5,345.9L590.2,346.3L590.2,345.4Z",
"CG": "M500.5,322.2L498.4,323.9L495.9,320.9L498.1,320.1L497.1,316.4L499.6,316.4L500.1,315.0L501.1,316.5L503.2,315.8L504.1,316.9L505.0,315.2L505.3,311.6L503.4,310.5L505.2,307.4L504.4,306.1L501.6,306.6L501.9,303.9L509.6,305.4L510.0,303.8L511.2,300.1L516.7,300.3L514.1,311.5L510,316.0L509.1,320.9L505.7,323.6L505,321.8L502.2,323.5L501.3,322.8Z",
"CD": "M536.9,295.5L541.2,296.0L543.7,298.0L547.3,297.0L550.7,300.2L550.3,303.1L551.9,304.1L548.2,307.6L547.2,313.8L545.6,317.6L546.1,320.4L546.7,322.3L547.0,327.5L550.4,332.8L545.2,333.6L543.8,335.8L544.7,339.7L543.7,342.3L545.6,344.6L547.8,344.0L547.7,347.7L545.6,347.5L540.5,342.3L539.6,343.4L537.2,343.2L535.3,341.2L532.9,342.0L531.6,340.3L526.8,341.3L525.5,330.2L519.2,329.4L518.8,332.2L513.9,332.5L511.0,326.4L503.8,326.2L501.6,326.3L498.9,326.0L501.3,322.9L501.3,322.8L502.2,323.5L505,321.8L505.7,323.6L509.1,320.9L510,316.0L514.1,311.5L516.7,300.3L516.5,297.9L518.9,295.7L522.1,297.7L527.1,298.5L528.6,296.5Z",
"CK": "M26.4,372.4L26.2,372.3L26.3,372.3ZM21.2,370.4L21.0,370.2L21.2,370.2ZM28,367.2L27.9,367.1L28.0,367.1Z",
"CR": "M228.6,279.2L232.6,279.4L235.6,283.3L234.6,283.5L234.7,287.6L229.6,282.1L228.2,281.5L228.5,283.2L227.0,282.3L226.9,279.0Z",
"HR": "M513.0,177.4L514.0,177.8L516.2,179.0L516.3,179.5ZM511.8,176.4L510.5,176.1L511.5,176.0ZM505.1,170.0L505.2,171.2L504.6,170.0L505,170.0L504.7,169.0ZM506,169.9L505.0,169.4L505.3,168.7ZM511.0,163.8L511.1,163.8L514.0,166.4L517.2,166.1L518.9,168.8L517.8,170.2L508.8,169.0L509.8,172.8L513.8,177.6L511.8,175.9L509.4,175.5L505.2,168.5L504.6,168.4L504.3,169.8L503.6,170.6L502.7,167.8L507.1,168.0L508.4,164.8Z",
"CU": "M235.6,248.6L233.9,248.4L234.5,247.5ZM237.2,243.7L242.6,244.4L259.0,252.7L249.1,253.7L250.4,251.3L248.1,251.2L246.2,248.4L237.7,246.7L236.7,246.1L238.1,245.8L237.5,245.2L235.1,245.2L233.4,246.7L231.8,246.8L231.5,247.5L229.0,247.7L230.7,247.2L230.5,246.3L231.4,245.3Z",
"CY": "M558.4,204.9L561.0,203.7L556.7,207.5L554.6,205.9Z",
"CZ": "M505.8,155.1L503.4,154.3L498.5,147.7L506.1,145.3L510.3,146.2L511.2,148.6L514.2,147.7L517.3,151.2L512.0,155.0L506.7,153.3Z",
"BJ": "M471.8,292.3L469.5,292.6L468.8,283.6L467.1,281.0L467.5,279.2L471.6,276.7L472.8,275.2L475,277.3L475.7,280.4L472.7,284.7L472.5,292.2Z",
"DK": "M494.8,123.9L494.1,126.1L491.8,123.8ZM499.9,121.4L498.5,126.4L495.1,122.7ZM489.7,116.7L489.3,117.9L488.6,117.6ZM492.6,116.0L493.6,116.4L493.6,117.6L492.4,118.1L495.4,119.1L491.5,122.8L492.1,126.8L491.2,127.1L489.0,126.7L488.9,124.2L487.4,123.6L487.6,118.1L489.2,118.9L489.1,118.2L490.2,117.3L490.4,117.8L490.1,118.5L490.7,118.2L490.8,118.7L490.5,116.7ZM493.9,113.3L493.7,116.4L492.8,115.9L490.3,116.1L489.0,116.6L488.3,117.9L488.8,117.9L488.7,118.4L487.8,117.8L488.9,115.7L491.0,115.5L492.6,113.3L494.5,112.5Z",
"DM": "M294.5,267.2L294.3,266.0L294.8,266.5Z",
"DO": "M268.3,253.7L272.7,255.1L271.5,255.9L274.0,256.3L274.8,258.1L268.6,257.8L266.6,260.3L265.6,259.0L265.6,254.1Z",
"EC": "M211.6,310.0L212.7,312.0L211.1,312.8L212,311.6L210.5,310ZM246.6,306.5L250.0,308.9L255.8,310.3L254.9,310.3L256.0,312.6L255.1,314.2L247.3,319.5L246.3,322.7L245.4,323.9L243.7,322.3L241.4,322.3L241.8,319.3L243.4,315.5L242.0,317.6L240.3,316.4L240.2,312.8L242.0,311.7L242.6,307.6L246.0,305.9Z",
"SV": "M216.8,269.5L221.2,271.1L221.0,272.4L219.0,273.0L214.7,271.4L216.8,269.4Z",
"GQ": "M492.8,303.9L496.5,303.9L496.5,307.2L492.2,307.2L491,306.7L492.2,303.4Z",
"ET": "M566.5,269.9L568.5,269.4L569.3,270.4L570.3,268.1L571.8,269.5L576.7,269.4L582.7,275.0L581.0,279.2L584.2,279.2L584.0,281.4L587.2,284.8L598.3,287.7L589.8,296.3L586.3,296.4L581.4,298.9L578.2,298.0L574.7,300.5L564.8,297.1L561.3,291.4L556.6,287.9L557.3,286.4L559.7,286.0L560.2,280.5L561.8,280.0L562.5,276.9L565.3,274.4Z",
"ER": "M572.7,260.1L575.3,267.6L575.7,266.4L579.3,268.9L584.7,274.4L582.7,275.0L576.7,269.4L571.8,269.5L570.3,268.1L569.3,270.4L568.5,269.4L566.5,269.9L567.7,261.8L572.2,259.1Z",
"EE": "M528.8,108.0L529.8,108.8L526.0,111.6L525.6,108.5ZM528.1,105.8L529.0,106.7L526.2,106.1ZM536.6,102.4L542.8,103.2L541.1,106.8L542.2,111.8L541.0,113.5L535.2,110.7L532.5,111.8L533.2,109.4L530.9,109.2L530.1,104.7Z",
"FO": "M445.4,88.5L445,88.8L444.3,88.1ZM446.3,89.2L444.9,87.9L444.9,87.2ZM446.5,88.4L445.3,87.0L446.6,87.7Z",
"FK": "M300.5,477.0L297.3,480.4L295.6,479.9L297.8,478.6L296.5,476.8ZM301.9,476.7L304.6,478.2L299.1,480.2Z",
"GS": "M360.8,488.9L365.6,492.5L359.3,489.1Z",
"FJ": "M964.8,355.6L963.5,357.0L964.8,356.3L964.7,357.2L960.7,357.2ZM-34.9,355.5L-35,355.4L-34.8,355.4Z",
"FI": "M543.2,34.5L546.0,36.6L545.4,41.3L543.9,42.5L545.0,42.9L544.6,47.8L548.4,51.5L545.7,57.2L548.6,65.4L547.3,70.6L549.9,75.2L548.3,78.3L552.7,83.4L542.2,97.3L528.6,101.5L529.8,100.2L529.1,98.4L524.3,96.7L525.1,91.5L523.5,85.2L524.7,81.6L535.6,70.5L535.3,66.8L532.1,64.8L530.7,61.4L531.6,57.9L530.0,53.1L530.7,49.7L525.5,45.0L522.1,41.2L524.2,39.1L527.2,43.9L534.2,44.9L538.4,34.3Z",
"AX": "M520.7,98.4L520.3,100.1L519.5,98.9Z",
"FR": "M491.2,178.6L490.5,183.5L488.8,179.7L490.9,177.4ZM472.0,144.3L476.5,149.2L478.4,148.4L481.1,151.0L482.6,151.4L487.8,153.5L486.0,159.3L484.4,159.6L481.5,164.9L483.8,164.0L484.5,166.0L484.8,168.7L483.3,169.2L484.3,172.5L486.2,172.9L485.9,174.4L485.6,174.5L485.6,174.5L485.5,174.6L482.1,177.2L476,175.3L473.5,177.1L473.8,179.5L469.7,179.3L469.9,179.0L469.0,178.9L460.0,176.0L462.1,170.9L461.5,171.0L462,167.5L463.5,170.1L462.8,167.9L461.5,166.9L461.9,164.4L459.0,162.3L459.0,160.5L460.1,160.8L452.8,158.4L451.8,157.4L453.3,156.3L451.7,155.4L461.1,154.9L459.6,150.3L466.1,151.5L465.1,151.1L469.0,148.6L469.5,145.3Z",
"GF": "M316.4,294.5L319.7,296.2L320.4,297.9L320.9,297.0L321.4,298.7L318.0,303.8L313.3,303.5L315,300.4L313.6,296.7L314.5,295.1L315.1,294.0Z",
"PF": "M50.5,360.0L50.6,360.4L49.3,359.5ZM44.4,357.6L44.2,357.6L44.2,357.1ZM79,337.1L79.4,337.1L78.4,337.2ZM76.0,334.8L75.5,334.9L75.4,334.5Z",
"TF": "M656.6,465.7L658.2,467.8L661.0,467.6L658.8,468.2L660.1,469.5L656.1,469.6Z",
"DJ": "M584.0,277.5L585.1,277.9L584.2,279.2L581.0,279.2L582.7,275.0L584.7,274.4L585.5,276.2L583.0,277.6Z",
"GA": "M499.7,303.6L501.9,303.9L501.6,306.6L504.4,306.1L505.2,307.4L503.4,310.5L505.3,311.6L505.0,315.2L504.1,316.9L503.2,315.8L501.1,316.5L500.1,315.0L499.6,316.4L497.1,316.4L498.1,320.1L495.9,320.9L491.7,316.6L489.1,311.7L490.8,311.0L490.9,308.9L492.5,309.4L490.8,308.5L492.2,307.2L496.5,307.2L496.5,303.9Z",
"GE": "M580.4,179.6L576.1,176.0L584.0,176.7L586.9,179.0L589.8,178.3L594.0,181.5L594.2,184.7L590.0,183.8L585.7,184.5L583.9,182.7L580.3,183.0Z",
"GM": "M418.5,272.2L420,272.8L420.1,272.3L422.5,272.1L420.1,272.2L419.4,272.6L418.9,271.8L423.1,271.2L426.6,272.4L423.0,271.8L422.5,272.5L421.1,272.5L421.0,273.1L418.4,273.4Z",
"PS": "M560.3,218.5L560.1,218.6L560.0,218.3L560.8,217.4ZM563,214.3L563.7,214.8L563.5,217.7L561.8,218.0ZM562.9,216.7L562.9,216.7L562.9,216.7Z",
"DE": "M495.5,129.2L495.0,131.6L499.8,128.8L504.6,132.4L506.1,145.3L498.5,147.7L503.4,154.3L500.4,157.1L501.1,159.8L491.5,159.5L486.3,159.5L486.0,159.3L487.8,153.5L482.6,151.4L482.0,148.5L481.6,145.8L481.5,141.1L483.9,140.4L484.6,138.5L483.5,137.8L485.0,134.6L485.2,132.5L488.6,134.1L489.0,131.6L492.3,133.2L489.7,131.3L488.8,129.5L490.0,128.7L488,127.5L489.0,126.7L491.2,127.1Z",
"GH": "M466.7,293.7L466.8,294.0L465.7,293.9L462.7,295.5L460.5,296.0L459.2,296.8L456.8,295.8L455.9,291.5L458.0,287.1L457.5,283.5L457.1,279.2L464.5,278.8L467.0,286.8L466.4,290.6L468.3,293.0L466.9,294.0L466.7,293.4L466.4,293.1L466.1,293.0L466.0,293.1L465.7,293.0L465.5,293.0L466,293.2L466.1,293.1L466.3,293.1L466.6,293.4Z",
"GI": "M450.1,202.1L450.1,202.3L450.1,202.1Z",
"KI": "M952.7,315.3L952.6,315.0L952.7,315.2ZM951.2,314.3L951.1,314.2L951.2,313.9ZM947.2,309.6L947.2,309.4L947.3,309.3ZM945.6,307.1L945.7,307.3L945.5,307.7ZM945.5,305.2L945.3,304.6L945.6,304.9ZM945.1,301.4L944.9,301.6L944.8,301.6Z",
"GR": "M531.2,204.3L538.0,205.6L533.7,206.3L530.3,205.1ZM530.1,192.7L533.2,195.7L528.4,192.7ZM538.0,182.2L538.2,182.2L538.9,183.6L537.3,185.8L530.9,185.8L532.7,188.0L529.8,187.6L530.8,188.9L527.7,186.8L529.8,191.5L528.7,190.8L529.0,192.0L527.5,192.6L531.8,195.0L531.7,196.9L530.3,195.5L528.8,196.1L530.3,197.7L528.1,197.2L529.4,201.2L527.8,199.9L527.4,201.3L526.5,199.1L525.2,199.8L523.6,196.2L525.7,194.5L529.5,195.1L527.2,194.1L523.7,194.6L522.5,192.8L523.7,192.1L520.5,189.7L523.2,185.4L528.7,183.6L535.2,184.0Z",
"GL": "M318.6,34.4L321.0,36.7L316.1,39.9L314.2,38.6L316.8,37.1L312.2,36.2L313.9,36.3L312.3,35.0L314.3,34.5L312.6,33.1L313.8,31.2ZM399.4,9.0L404.0,13.0L401.7,12.7L403.5,14.2L402.3,15.4L397,9.0ZM375.2,-148.2L393.7,-141.4L366.0,-132.4L395.1,-138.4L396.2,-134.7L393.0,-129.7L405.8,-126.0L395.3,-116.4L377.1,-117.6L381.9,-115.2L373.0,-108.8L395,-113.2L388.2,-103.5L389.0,-101.4L403.8,-112.0L403.2,-103.1L396.9,-86.6L409.6,-107.1L408.5,-102.7L418.6,-112.0L431.2,-105.6L420.5,-89.8L405.9,-87.2L420.2,-85.9L407.9,-79.5L408.5,-73.9L416.5,-78.7L410.4,-72.3L409.8,-64.6L412,-65.4L406.1,-59.7L406.9,-57.0L403.7,-44.4L411.5,-45.3L412.3,-43.6L406.5,-42.5L413.8,-39.9L414.1,-33.3L401.8,-32.0L409.9,-26.4L403.9,-23.6L409.9,-22.7L411.2,-17.0L409.7,-14.3L403.1,-19.9L408,-14.2L402.6,-14.4L412.2,-7.2L402.5,-5.4L404.3,1.1L404.5,-2.9L408.6,-1.0L408.0,3.1L402.8,5.0L398.2,0.6L403.3,1.4L398.2,-0.3L397.0,2.2L393.6,-1.7L396.4,2.5L389.0,2.7L391.6,5.1L387.9,6.2L395.4,6.7L388.9,8.9L396,10.1L396.6,11.9L393.0,12.9L402.5,17.7L400.7,20.0L404.1,19.0L402.5,23.2L404.4,21.0L404.7,24.1L402.9,25.0L404.7,24.8L404.0,27.1L405.3,29.3L402.8,30.1L402.4,26.7L402.1,30.1L400.1,30.1L396.2,22.6L385.4,15.6L389.0,19.3L385.9,20.7L394.4,22.4L386.0,25.6L387.4,26.5L383.8,30.6L391.8,30.7L385.7,33.4L394.9,30.4L403.6,32.7L391.7,44.2L383.3,47.8L377.3,48.7L374.7,44.6L375.7,50.3L372.7,51.5L368.5,61.2L365.4,60.5L366.1,62.7L361.6,65.1L359.9,63.3L361.7,61.2L359.1,60.8L360.3,61.7L358.1,63.4L358.7,66.0L353.6,66.4L354.5,68.6L350.6,70.5L352.8,74.4L349.5,74.9L352.3,75.9L352.4,78.5L349.3,78.0L351.8,79.7L348.5,80.0L349.9,82.1L347.8,81.6L349,83.8L345.1,84.3L347.8,86.6L345.6,85.8L348,88.8L345.3,91.3L346.9,92.6L344.8,92.7L346.5,94.1L343.8,94.0L346.3,94.4L344.0,95.6L346.2,96.5L342.2,97.0L345.1,99.9L342.5,98.2L339.5,100.0L341.4,97.2L339.4,99.6L341.0,96.2L337.2,97.2L339.3,95.3L336.6,96.1L339.4,93.6L337.0,95.2L337.8,92.8L334.8,95.9L331,95.7L332.5,94.7L330.5,94.8L331.8,92.9L328.0,91.5L330,91.0L328.4,90.5L329.5,89.0L327.6,89.8L329.3,88.4L327.0,88.9L328.0,87.9L325.2,85.9L326.9,82.5L325.0,84.2L325.6,82.7L324.4,82.3L325.9,81.5L323.0,80.8L325.3,80.4L322.7,80.2L324.7,78.7L321.7,78.5L323.5,77.1L321.6,76.5L325.9,75.4L321.2,75.5L325.6,73.8L323.7,72.6L327.2,74.5L326.1,71.0L323.3,68.7L324.3,71.8L320.5,75.4L320.2,72.0L322.6,70.1L319.9,71.4L320.2,68.6L319,68.0L324.5,65.5L319.1,67.6L317.0,65.2L321.0,63.1L316.5,63.3L326.1,56.7L316.4,62.8L317.4,61.5L316.0,60.0L319.3,59.7L316.5,59.1L319.9,57.7L315.0,56.0L325.1,55.2L315.3,54.7L319.1,51.0L325.9,52.9L322.6,51.5L324.9,50.4L323.1,49.5L315.6,52.2L317.2,49.0L320.3,49.4L316.8,47.9L325.6,49.8L322.1,47.8L323.8,45.5L316.6,46.8L323.6,44.7L322.5,43.6L323.1,40.7L325.5,42.0L324.1,40.8L325.0,39.0L323,40.1L325.5,37.6L323.6,37.8L325.5,33.6L313.2,28.4L324.7,29.6L320.6,25.3L323.5,25.5L322.6,24.2L319.8,24.4L321.5,22.3L319,24.0L322.3,21.2L317.8,21.8L321.5,19.3L317.0,19.3L318.6,16.7L316.8,18.3L316.2,13.4L315.1,13.8L316.6,18.0L314.7,19.3L315.2,21.6L309.6,19.5L313.9,14.7L311.3,17.3L313.1,13.3L310.4,12.5L314.1,12.3L310.2,6.8L311.9,4.0L309.2,1.1L310.5,0.4L308.3,-3.0L309.0,-5.1L305.7,-3.4L308.9,-7.9L301.9,-16.5L303.3,-17.4L302.7,-20.6L295.8,-25.5L274.7,-24.8L271.5,-28.2L276.1,-31.7L266.7,-36.4L280.4,-37.3L273.0,-39.0L281.5,-41.8L272.6,-41.3L262.0,-50.6L281.7,-63.9L284.9,-70.3L284.2,-77.9L287.8,-80.1L277.5,-83.1L288.1,-97.0L290.5,-90.2L288.9,-97.4L295.3,-96.7L294.6,-101.1L296.1,-103.7L294.3,-108.4L296.0,-111.0L308.1,-100.5L299.8,-113.4L313.5,-120.9L316.2,-115.8L316.0,-103.9L318.0,-114.0L327.1,-106.3L323.1,-112.0L327.6,-112.0L323,-123.4L325.2,-124.1L341,-108.4L342.2,-110.0L340.1,-113.2L341.0,-119.0L347.5,-117.8L337.8,-129.3L354.5,-121.5L334.7,-133.8L344.4,-132.6L338.5,-137.4L346.3,-140.9L357.8,-128.8L356.2,-134.2L362.5,-138.1L357.0,-144.8Z",
"GD": "M293.4,276.4L293.8,275.7L293.8,276.2ZM294.3,275.1L294.1,275.1L294.3,274.9Z",
"GP": "M294.5,264.0L293.6,265.1L293.3,264.0Z",
"GU": "M866.9,272.9L866.8,272.3L867.4,271.7Z",
"GT": "M213.2,270.9L208.7,269.1L210.1,264.7L213.7,264.7L211,261.3L212.2,261.3L212.2,259.6L217.3,259.6L217.1,265.2L218.0,265.2L219.9,265.7L216.8,269.4L214.7,271.4Z",
"GN": "M427.2,282.8L423.2,279.3L424.1,277.8L426.9,277.2L426.9,274.4L433.4,275.2L435.4,276.7L439.5,275.0L441.3,277.8L440.8,279.3L441.9,279.2L442.8,281.6L443.7,286.6L442.2,286.3L442.9,287.6L441.4,288.9L438.6,289.4L438.6,286.7L436.4,286.3L435.2,286.8L435.6,284.7L433.8,282.0L430.3,282.3L428.0,284.8Z",
"GY": "M298.9,286.7L302.5,289.5L302.0,292.1L303.0,290.8L306.1,292.8L305.9,294.7L303.7,298.8L308.1,304.6L301.6,306.6L299.3,305.1L298.3,302.5L299.5,299.1L297.9,297.4L298.0,295.4L296.3,295.5L294.4,293.4L295.1,291.3L297.5,290.3L296.3,288.9L298.8,287.0L298.3,286.1Z",
"HT": "M263.1,253.5L265.6,254.1L265.6,259.0L258.1,258.1L258.6,257.1L264.0,257.6L263,254.9L260.9,254.1Z",
"HM": "M669.9,484.8L669.0,485.1L668.4,484.2Z",
"VA": "M499.5,181.5L499.5,181.5L499.6,181.5Z",
"HN": "M226.5,264.9L230.9,265.4L234.0,267.8L233.7,267.9L229.1,268.3L222.5,273.6L221.0,272.4L221.2,271.1L216.8,269.5L216.8,269.4L219.9,265.7Z",
"HK": "M782.3,246.7L782,246.4L782.2,246.4ZM781.3,246.7L781.1,246.6L781.8,246.3ZM782.2,245.9L781.7,245.7L782.2,245.6Z",
"HU": "M517.2,166.1L514.0,166.4L511.1,163.8L509.7,162.2L510.8,161.6L510.6,158.8L512.6,157.5L512.9,157.5L516.8,158.6L522.3,155.2L526.5,155.9L528.5,157.8L522.5,165.0L521.2,165.3Z",
"IS": "M423.1,62.5L425.1,65.0L424.5,66.9L427.1,66.8L426.0,68.9L427.5,69.7L423.5,75.0L413.0,80.5L406.5,77.0L401.9,77.8L405.2,72.5L398.1,70.9L404.3,70.0L402.3,69.1L404.7,67.2L396.8,66.9L400.4,65.3L398.6,64.4L400.5,64.6L398.8,63.4L399.8,62.1L402.7,64.5L401.2,60.3L405.5,63.3L404.5,65.1L406.4,69.1L408.9,62.6L410.9,65.3L412.8,62.2L414.8,65.9L414.1,62.3L418.9,62.9L419.0,60.0L424.1,60.9Z",
"IN": "M681.8,204.5L685.9,213.6L682.7,214.2L683.8,218.3L690.0,221.9L687.3,226.2L692.9,229.2L696.3,230.9L698.7,230.4L703.5,233.3L709.4,234.0L709.8,229.3L711.7,228.8L712,231.0L714,232.9L720.7,232.4L719.6,229.6L722.0,229.3L727.9,224.7L729.9,225.6L731.8,224.2L733.3,226.4L732.7,227.8L735.4,228.2L734.1,230.1L734.8,231.7L732.1,231.2L729.2,233.2L726.5,241.7L724.2,241.0L723.8,246.5L722.2,247.3L721.3,242.1L719.4,244.5L718.2,242.3L721.6,238.1L714.5,237.3L714.2,234.6L710.6,233.4L709.7,235.6L712.2,237.3L709.5,239.2L711.5,240.6L712.3,246.9L712.4,248.4L711.4,248.6L711.3,246.7L710.1,248.6L710,246.8L709.1,246.0L709.9,247.0L706.5,249.1L706.7,251.2L705.0,253.3L702.3,253.6L693.7,261.7L693.6,263.2L688,265.8L686.8,281.2L685.3,281.2L684.1,283.5L685.6,284.4L682.7,284.6L680.3,287.5L677.7,285.2L669.0,264.7L666.8,253.6L667.5,250.9L666.5,249.1L668.1,248.0L666.3,247.3L667.5,246.5L665.4,246.4L665.3,249.7L661.7,251.2L656.5,246.4L659.9,245.6L660.8,244.0L657.2,244.8L655.0,243.0L655.9,241.7L654.4,241.9L656.0,240.2L662.5,240.0L658.2,231.5L660.4,228.8L664.7,229.0L672.4,219.1L672.2,216.4L674.3,215.4L670.6,212.1L671.3,209.5L670.3,207.2L678.5,207.2L681.1,204.3Z",
"ID": "M798.4,336.1L800.3,338.4L795.3,336.6ZM812.6,335.3L812.5,336.3L810.6,338.3L808.0,338.8L809.5,336.0L810.3,336.3L810.6,335.6L812.0,334.9ZM788.7,334.4L786.7,334.4L788.3,332.8ZM811.0,332.6L812.6,333.2L810.4,333.5ZM793.6,333.3L795.5,333.1L796.0,334.3L789.3,335.1L790.3,333.3L792.6,334.4L793.5,333.9L792.0,332.7ZM806.6,332.7L806.1,333.9L803.2,334.7L797.7,334.3L799.7,333.0L804.6,334.0ZM785.8,332.7L784.8,334.6L782.9,332.5ZM817,331.3L814.3,332.3L814.9,331.3ZM851.0,331.0L849.5,333.3L847.3,333.5L848.7,330.9ZM830.9,330.0L829.1,332.2L829.5,330.8ZM781.6,329.1L780.2,330.1L778.0,329.6ZM759.8,326.7L765.8,327.4L767.0,328.9L771.6,329.4L773.1,327.8L777.6,329.2L778.4,331.1L782.9,331.7L782.6,333.7L783.3,334.4L765.4,331.6L757.3,328.9ZM838.8,325.1L839.2,326.6L838.0,326.7ZM807.2,323.0L805.6,325.8L806.3,322.4ZM817.7,318.7L818.4,320.0L816.9,320.6L815.0,319.3ZM825.5,318.1L827.7,318.6L828.4,320.7L821.0,318.5L820.3,319.8L821.0,317.9ZM764.5,317.0L765.7,317.6L765.1,319.0L763.9,318.9ZM836.0,317.0L835.8,316.7L836.1,316.8ZM838.8,316.8L838.6,316.6L838.8,316.3ZM838.2,316.0L838.1,315.8L838.3,315.5ZM826.6,315.7L825.3,315.2L827.0,314.6ZM812.2,314.7L813.1,315.2L810.3,315.2ZM843.5,314.6L845.2,315.0L841.1,314.4ZM759.6,314.9L761.4,318.6L757.0,315.7L758.2,314.2ZM820.2,313.9L820.9,314.6L818.8,314.5ZM834.7,311.5L837.5,312.3L837.6,316.4L840,319.2L847.9,314.0L856.6,317.2L856.6,335.4L853.8,332.8L854.3,331.9L850.8,333.1L851.3,331.0L850.1,330.0L851.7,329.9L849.8,329.2L851.6,329.4L848.5,325.0L837.8,321.0L836.2,319.7L836.7,318.2L834.1,321.3L833.9,319.1L831.5,317.7L835.1,316.7L836.3,317.5L837.0,315.8L832.5,316.3L828.7,313.8L832.4,311.0ZM828.5,310.0L829.6,311.0L826.6,310.5ZM735.9,306.0L736.6,308.4L734.7,306.1ZM812.6,306.0L810.1,308.9L799,309.0L798.5,311.6L800.1,313.8L802.8,312.2L807.9,312.3L801.9,315.0L806.3,322.2L802.6,323.2L800.4,317.2L798.8,318.2L799.6,325.6L796.8,325.4L796.9,319.8L795.3,319.9L794.8,317.6L797.9,312.3L797.2,310.0L798.4,308.0L800.9,306.2L809,307.6L812.1,305.3ZM820.2,304.9L819.9,307.7L822.5,305.6L821.1,307.8L823.0,309.4L820.2,309.1L821.6,312.4L819.6,310.6L818.8,307.0L820.6,303.8ZM787.3,298.1L791.6,298.4L792.3,299.7L790.0,300.0L793.0,303.5L792.4,304.7L795.5,307.2L792.4,306.8L791.7,312.1L789.2,312.8L787.8,314.9L788.8,316.1L787.1,319.9L783.6,321.6L783,319.7L779.0,318.3L775.8,319.9L775.4,317.6L771.2,318.2L770.7,313.6L768.5,312.3L767.3,307.7L769.5,304.2L772.1,307.6L775.6,307.2L777.4,305.6L783.2,306.0ZM730.9,294.4L735.8,295.3L742.7,302.7L745.3,304.9L745.7,303.6L750.9,308.0L749.8,309.5L753.1,309.2L752.1,311.9L754.9,312.8L756.3,315.9L755.3,317.6L756.2,316.3L758.3,316.6L759.6,318.4L758.6,326.4L757.4,325.1L757.0,326.1L755.3,325.3L755.4,326.5L747.3,319.0L743.5,312.2L740.3,309.2L739.3,305.1L730.3,296.9L729.5,294.5Z",
"IR": "M590,190.6L593.2,192.7L594.2,192.6L598.2,189.5L599.3,190.7L598.3,192.7L600.8,194.1L601.3,196.9L606.9,200.1L614.8,199.9L614.7,198.0L623.9,194.7L629.8,197.3L632.5,200.4L634.8,200.4L635.2,204.0L633.0,208.9L634.2,211.0L633.2,212.5L634,217.7L636.8,219.2L634.0,223.0L636.9,227.1L639.3,228.0L639.3,231.2L640.9,231.6L640.5,233.2L636.8,234.4L636.1,237.6L624.2,235.8L622.4,231.5L617.1,233.6L614.3,232.9L607.8,229.1L604.0,221.9L602.6,222.5L601.0,220.9L599.8,222.7L597.4,219.3L597.9,216.7L596.7,214.7L593.0,212.8L591.1,209.5L592.2,206.4L593.7,203.3L591.1,202.7L589.4,198.7L587.3,190.8L589.4,189.9Z",
"IQ": "M592.2,206.4L591.1,209.5L593.0,212.8L596.7,214.7L597.9,216.7L597.4,219.3L599.8,222.7L598.1,222.5L598.1,222.5L596.0,222.5L594.3,225.4L589.2,225.1L581.8,218.9L573.8,215.6L572.7,211.5L578.8,208.0L579.6,201.4L582.6,198.8L589.4,198.7L591.1,202.7L593.7,203.3Z",
"IE": "M444.4,126.5L442.3,128.9L447.5,130.6L448.3,135.9L447.3,139.5L439.3,142.6L436.2,141.3L437.8,139.6L435.9,139.5L440.5,137.2L437.3,137.7L440.1,134.5L436.7,133.8L438.4,131.7L436.9,129.9L441.4,129.8L442.2,128.0L440.5,127.7L441.8,125.7L445.7,125.1L444.8,125.9Z",
"IL": "M562.9,216.7L562.9,216.7L562.9,216.7ZM563.9,211.9L564.0,213.8L563.7,214.8L563,214.3L561.8,218.0L563.5,217.7L562.1,224.0L561.9,224.2L560.1,218.6L560.3,218.5L560.8,217.4L562.5,212.5Z",
"IT": "M508.1,195.2L506.8,200.4L499.5,196.4L502,194.9ZM491.4,184.3L491.5,191.6L488.3,192.3L487.7,185.2ZM498.6,161.7L503.1,163.6L502.1,164.5L503.1,167.3L499.1,167.8L499.3,172.6L502.8,175.3L505.9,180.8L509.8,181.5L509.2,183.1L516.4,188.0L515.9,189.3L511.9,186.9L510.8,189.4L512.6,192.3L509.6,196.0L508.4,195.6L510.0,192.5L508.5,188.4L495.8,179.7L493.0,173.5L489.3,171.9L485.9,174.4L486.2,172.9L484.3,172.5L483.3,169.2L484.8,168.7L484.5,166.0L486.8,166.0L488.4,163.9L490.1,166.4L490.7,163.7L493.1,164.8L494.0,162.2ZM499.6,174.0L499.7,173.6L499.5,173.7ZM499.5,181.5L499.6,181.5L499.5,181.5Z",
"CI": "M451.6,295.6L444.0,297.9L444.3,293.7L441.0,291.8L441.4,288.9L442.9,287.6L442.2,286.3L443.7,286.6L442.8,281.6L445.5,281.6L447.6,279.9L448.0,281.5L449.6,280.8L451.9,282.9L454.9,282.2L457.5,283.5L458.0,287.1L455.9,291.5L456.8,295.8Z",
"JM": "M250.7,259.5L247.3,258.1L251.2,258.0L253.2,259.4Z",
"JP": "M829.4,210.8L830.7,210.6L831.6,213.3L829.8,218.1L827.9,219.3L828.3,217.1L827.8,218.7L826.7,218.5L826.5,216.0L827.8,213.4L826.6,212.2L827.0,213.9L825.4,214.2L824.9,211.6L828.0,209.6ZM837.8,208.3L839.3,210.0L837.7,212.0L836.1,211.1L833.8,213.6L832.6,211.2L831.7,211.6L834.1,209.0ZM857.4,183.6L859.6,190.2L858.1,194.7L856.5,195.1L856.2,203.5L854.8,205.6L853.2,206.2L853.8,203.8L850.6,207.4L850.3,205.6L848.9,207.4L845.6,207.5L846.5,207.0L845.1,205.8L844.2,207.1L845.2,208.5L842.1,211.3L840.1,209.8L840.9,207.0L832.6,208.2L831.8,210.2L828.5,209.7L828.7,208.0L834.6,204.1L842.9,203.8L844.9,197.9L846.5,197.4L845.1,198.9L846.3,200.0L849.9,197.8L853.9,190.8L853.4,186.3L854.8,184.0L857.0,185.4L857.3,184.0L856,184.2ZM859.5,168.1L864.3,173.2L867.1,173.9L868.7,172.3L868.5,176.2L870.0,176.0L864.9,177.7L862.8,181.5L858.8,178.9L855.1,179.0L854.6,180.2L857.2,181.9L854.0,183.3L853.4,178.8L855.1,176.0L857.8,176.3L858.2,168.8Z",
"KZ": "M657.1,124.6L661.7,124.8L662.7,130.6L669.8,130.7L669,133.7L678.3,128.9L677.5,131.1L681.4,134.5L687.4,145.8L689.1,143.4L691.3,145.9L696.8,144.7L701.8,150.9L706.0,150.0L707.6,153.0L703.2,155.9L702.5,161.4L695.6,160.8L693.6,167.4L694.3,169.2L686.8,170.1L688.6,170.7L689.5,176.8L688.2,177.3L687.8,180.4L684.9,178.2L671.3,176.6L669.3,177.2L669.2,179.6L664.3,178.1L662.1,180.2L656.8,183.5L655.1,186.3L653.7,184.2L650.3,184.2L649.8,181.2L648.4,181.2L648.6,177.4L645.3,174.6L637.3,175.6L627.6,167.4L620.5,169.7L620.5,183.7L615.4,179.9L612.2,180.6L610.6,182.1L611.5,178.5L607.4,176.8L604.5,171.3L608.2,171.6L606.5,170.2L607.8,168.2L612.8,168.3L611.4,167.5L612.7,162.9L607.1,161.2L601.7,164.3L599.8,163.5L601.1,162.6L598.8,158.8L596.6,158.8L594.1,155.8L597,147.2L600.5,149.4L600.2,146.5L606.0,141.3L613.4,142.6L616.4,146.8L616.8,144.6L619.6,146.8L621.9,144.4L627.0,144.0L630.3,147.0L635.5,145.7L636.3,143.5L631.6,140.4L634.6,138.7L633.5,137.2L634.7,135.8L637.5,135.7L634.9,134.3L636.0,133.3L634.1,132.8L634.4,131.3L646.1,129.5Z",
"JO": "M562.1,224.6L562.1,224.0L563.5,217.7L563.7,214.8L564.0,213.8L567.3,215.0L572.7,211.5L573.8,215.6L567.8,217.6L570.5,220.9L569.1,222.5L565.1,225.1Z",
"KE": "M564.8,297.1L574.7,300.5L578.2,298.0L581.4,298.9L578.8,302.1L578.8,312.4L580.4,314.6L576.7,317.3L573.8,322.9L569.4,319.7L569.4,318.3L559.2,312.7L559.1,309.7L562.2,304.7L559.4,298.2L560.5,297.1Z",
"KP": "M827.8,179.6L828.0,180.1L825.2,182.5L825.3,185.5L819.1,189.5L818.8,191.4L821.5,193.4L816.9,196.3L813.8,195.6L813.1,196.8L811.2,195.3L814.0,193.4L812.6,192.8L813.4,190.0L811.1,190.0L810.4,188.2L817.5,181.9L821,183.5L820.7,181.2L825.3,179.5L825.8,177.4L827.7,179.6Z",
"KR": "M822.0,194.5L824.5,199.0L824.5,204.4L816.5,208.4L815.6,205.6L817.4,202.5L815.3,200.2L817.7,199.5L816.9,196.3L821.5,193.4Z",
"KW": "M598.1,222.5L598.1,222.5L598.8,224.0L597.5,224.5L599.5,227.1L594.3,225.4L596.0,222.5Z",
"KG": "M687.8,180.4L681.8,184.7L678.5,184.8L677.0,187.3L672.9,186.6L669.6,190.5L657.5,190.2L658.1,188.1L662.1,187.7L668.2,185.5L664.1,182.8L663.3,184.4L659.9,182.9L663,180.4L662.1,180.2L664.3,178.1L669.2,179.6L669.3,177.2L671.3,176.6L684.9,178.2Z",
"LA": "M763.7,268.6L759.4,269.6L759.6,270.9L757.2,269.7L758.4,265.9L755.9,263.4L755.8,260.6L752.2,257.8L750.2,259.6L748.5,258.5L745.3,260.4L746.3,254.5L744.1,254.6L744.3,252.8L743.0,252.2L745.9,248.6L747.7,249.8L747.1,246.6L748.7,246.1L751.0,248.1L751.5,250.7L755.6,251.3L754.9,251.9L756.6,253.2L753.5,255.3L757.1,257.2L761.3,263.6L763.5,264.7L762.7,265.6L764.1,267.0Z",
"LB": "M563.9,211.9L562.5,212.5L564.9,207.2L566.7,208.7Z",
"LS": "M541.5,398.7L540.0,396.2L544.3,392.9L546.7,395.1L546.0,397.1L543,399.5Z",
"LV": "M523.5,119.1L525.3,113.3L527.8,112.4L531.0,116.5L532.8,115.0L532.5,111.8L535.2,110.7L541.0,113.5L542.3,114.8L543.2,120.6L538.9,123.0L534.4,119.8L523.4,120.9Z",
"LR": "M434.9,292.1L433.0,290.7L436.4,286.3L438.6,286.7L438.6,289.4L441.4,288.9L441.0,291.8L444.3,293.7L444.0,297.9Z",
"LY": "M492.6,229.4L491.5,221.8L493.3,220.2L493.5,217.1L497.1,214.6L497.0,212.2L507.1,214.7L508.7,218.0L517.7,221.7L520.7,219.8L520.7,215.5L525.0,213.0L534.8,217.2L533.6,222.0L534.4,247.3L534.4,253.2L531.6,253.2L531.6,254.7L509.4,242.9L506.6,244.3L504.5,245.4L498.3,242.7L497.1,240.3L493.4,239.4L491.1,234.6L492.4,233.5Z",
"LI": "M491.4,160.6L491.6,161.4L491.3,161.4Z",
"LT": "M534.4,119.8L538.9,123.0L539.5,124.9L536.6,126.9L536.6,130.3L530.2,131.3L528.3,129.3L528.4,126.7L524.5,125.0L524.0,125.0L523.4,120.9Z",
"LU": "M481.7,148.3L482.0,148.5L482.6,151.4L481.1,151.0Z",
"MO": "M780.3,246.7L780.4,246.6L780.4,246.7Z",
"MG": "M602.1,343.8L605.0,353.8L604.3,354.9L602.8,353.7L603.3,357.4L595.9,381.5L590.5,383.5L587.2,381.7L585.1,373.5L588.5,366.6L587.0,359.3L588.5,355.5L594.1,354.9L593.7,353.9L596.1,353.4L596.8,351.2L596.7,352.4L598.3,351.4L598.0,348.1L600.3,347.6L600.3,344.8Z",
"MW": "M561.4,343.8L561.3,343.8L561.4,343.6L561.5,343.6ZM561.1,343.6L561.1,343.6L561.1,343.6ZM557.0,336.4L560.3,337.1L562.1,342.3L560.5,344.0L561.0,347.3L564.7,351.8L564.4,355.0L562.6,356.6L563.0,358.3L560.1,354.7L560.8,350.9L558.4,350.8L557.2,349.3L555.7,348.1L558.1,344.6L557.3,340.4L558.6,339.5L556.5,336.2Z",
"MY": "M744.5,292.0L745.9,294.3L748.6,292.6L752.2,296.4L752.3,301.8L754.6,306.1L753.7,305.4L752.5,306.4L746.3,302.1L743.1,292.1ZM789.4,291.6L790.5,290.5L792.0,292.2L791.3,293.5L792.8,293.1L792.6,294.1L796.3,295.1L793.1,296.4L794.3,297.9L791.6,298.4L787.3,298.1L783.2,306.0L777.4,305.6L775.6,307.2L772.1,307.6L769.5,304.2L774.3,306.2L773.3,305.6L774.5,302.5L778.9,301.2L781.9,297.2L783.4,298.8L784.5,296.3L784.5,296.5L785.3,298.0L785.0,296.6L784.8,296.3L789.3,290.4Z",
"MV": "M668.2,311.9L668.2,311.8L668.2,311.8ZM668.3,311.8L668.3,311.8L668.3,311.8ZM668.1,311.8L668.1,311.8L668.1,311.8ZM668.4,311.8L668.4,311.7L668.4,311.7ZM668.1,311.7L668.0,311.6L668.0,311.6ZM668.4,311.6L668.4,311.6L668.4,311.6Z",
"ML": "M441.3,277.8L439.5,275.0L435.4,276.7L433.4,275.2L431,268.5L433.0,265.9L434.7,267.5L439.0,265.8L449.7,266.4L446.7,238.2L451.6,238.2L470,252.3L473.9,253.8L474.2,256.2L476.8,255.7L476.8,257.2L476.6,263.8L474.7,266.8L465.6,268.0L462.9,267.6L458.1,269.8L455.4,273.0L454,272.1L452.7,275.5L450.3,276.8L449.6,280.8L448.0,281.5L447.6,279.9L445.5,281.6L442.8,281.6L441.9,279.2L440.8,279.3Z",
"MT": "M505.4,203.3L504.9,203.2L504.8,202.7ZM504.6,202.6L504.3,202.4L504.8,202.5Z",
"MQ": "M295.9,269.5L295.0,268.1L295.7,268.5Z",
"MR": "M446.5,234.7L451.6,238.2L446.7,238.2L449.7,266.4L439.0,265.8L434.7,267.5L433.0,265.9L431,268.5L425.1,263.1L419.7,263.4L419.0,264.7L420.4,259.9L419.1,255.1L420,252.6L418,249.8L417.6,251.0L417.9,249.3L421.2,249.3L428.8,249.3L428.5,244.6L431.6,242.9L431.6,235.1L440.9,235.1L440.9,231.1Z",
"MU": "M624.9,368.2L624.1,368.0L625.0,366.6Z",
"MX": "M150.9,216.1L156.5,218.2L169.4,216.9L177.8,225.7L180.8,222.9L183.3,223.3L188.5,230.2L189.7,233.8L195.1,235.2L193.0,245.5L198.5,256.7L202.5,258.7L209.4,257.0L210.8,257.8L213.7,253.3L214.0,250.2L223.2,248.5L223.9,249.8L221.2,254.2L222.1,254.5L220.9,258.6L220.4,256.6L219.7,257.7L219.5,257.7L217.3,259.6L212.2,259.6L212.2,261.3L211,261.3L213.7,264.7L210.1,264.7L208.7,269.1L207.3,267.3L204.0,264.7L202.8,264.1L203.7,264.8L201.8,264.3L202.2,264.0L201.6,264.2L201.5,263.7L197,266.0L193.3,265.0L173.3,255.2L171.4,252.1L172.6,251.5L171.8,250.9L172.8,249.0L171.0,245.3L164.8,238.0L161.9,236.6L162.6,235.7L161.1,235.9L161.9,234.2L157.9,230.9L158.0,229.3L153.4,225.8L150.8,218.6L145.4,216.1L146.8,222.5L155.1,232.9L157.6,240.2L161.0,242.9L159.4,244.6L153.6,238.9L152.7,234.3L145.5,229.8L148.3,229.8L147.4,229.3L148.1,227.2L143.6,223.3L139.6,214.3L146.3,213.7Z",
"MC": "M485.6,174.5L485.5,174.6L485.6,174.5Z",
"MN": "M717.8,163.3L715.1,158.0L711.2,156.8L709,152.7L721.4,145.6L735.3,150.3L738.0,147.8L736.7,144.7L739.8,139.6L748.9,143.3L749.2,146.6L750.8,147.7L761.2,147.6L766.5,152.0L772.7,152.7L782.5,147.9L789.1,149.8L786.0,157.9L791.0,159.0L794.2,157.6L798.0,163.0L791.1,163.4L780.6,170.7L776.0,169.3L774.5,172.1L776,174.8L771.7,178.2L763.5,179.4L756.6,182.7L745.1,178.6L732.7,178.4L730.0,172.4L717.5,168.7Z",
"MD": "M543.1,162.3L538.9,156.5L542.1,155.7L545.9,157.6L548.1,162.4L548.6,164.1L545.5,163.8L543.3,167.9Z",
"ME": "M516.2,179.0L518.4,175.5L521.5,177.8L520.7,179.1L519.5,178.8L518.8,181.7L516.3,179.5Z",
"MS": "M292.3,263.0L292.1,262.9L292.2,262.6Z",
"MA": "M439.8,213.6L446.0,209.3L448.5,203.4L450,202.9L452.7,205.5L456.6,204.6L458.8,205.7L460.1,206.9L461.7,215.7L454.3,217.0L454.9,219.4L440.9,226.6L440.9,229.9L428.4,229.9L436.8,224.3L438.2,222.0L437.7,217.8Z",
"MZ": "M577.5,340.8L577.7,353.5L573.5,357.9L567.3,360.4L565.6,363.4L561.9,366.3L561.1,365.5L563.7,373.3L563.6,379.0L556.1,383.6L556.3,387.4L554.2,387.4L553.8,384.7L553.9,380.1L551.9,373.9L555.2,370.6L556.7,366.5L555.8,363.5L556.6,358.7L556.6,357.0L549.5,355.0L549.5,353.9L548.9,352.0L557.2,349.3L558.4,350.8L560.8,350.9L560.1,354.7L563.0,358.3L562.6,356.6L564.4,355.0L564.7,351.8L561.0,347.3L560.5,344.0L562.1,342.3L569.0,342.8L577.3,339.2ZM561.1,343.6L561.1,343.6L561.1,343.6ZM561.4,343.6L561.3,343.8L561.4,343.8L561.5,343.6Z",
"OM": "M620.6,238.4L621.5,238.3L623.7,241.4L627.8,242.4L631.1,246.6L627.5,252.0L625.6,252.6L625.5,256.3L622.8,256.9L621.5,259.3L619,259.6L617.8,262.0L612.5,263.1L609.4,256.2L617.7,253.2L619.6,247.3L618.3,245.2ZM621.5,233.9L621.3,236.2L621.0,236.2L620.7,234.9Z",
"NA": "M529.6,359.8L530.2,359.7L534.3,359.5L535.1,360.2L530.6,362.2L529.7,360.8L523.3,361.7L523.3,372.6L520.5,372.7L520.5,381.0L520.5,392.3L515.5,393.9L513.3,393.3L512.3,391.1L510.8,392.9L507.4,388.9L505.3,374.3L497.7,361.0L497.6,358.6L501.5,357.7L503.8,359.1L516.2,359.0L522.9,360.9Z",
"NR": "M928.6,311.5L928.6,311.3L928.7,311.4Z",
"NP": "M692.9,229.2L687.3,226.2L690.0,221.9L693.0,221.4L703.9,229.3L709.8,229.3L709.4,234.0L703.5,233.3L698.7,230.4L696.3,230.9Z",
"NL": "M475.4,143.2L474.3,143.1L476.7,143.2ZM481,138.4L480.0,139.1L479.2,138.5L480.6,137.5L481.2,137.8ZM480.0,137.4L479.0,138.5L479,137.4ZM484.0,133.8L485.0,134.6L483.5,137.8L484.6,138.5L483.9,140.4L481.5,141.1L481.6,145.8L479,142.6L476.8,143.0L474.5,142.3L476.9,142.7L475.2,141.6L476.5,141.7L475.7,141.1L477.7,138.2L480.0,139.1L481.0,138.4L481.3,138.0L481.2,137.5L480.5,137.3L480.5,136.8L480.8,136.4L479.9,136.3L480.0,135.9L479.8,135.4L479.1,135.9L479.7,137.0L478.9,137.4L478.9,138.5L477.7,138.1L478.1,135.9Z",
"AN": "M275.5,275.7L275.4,276.3L274.9,275.6ZM273.4,275.8L272.8,275.3L274.0,276.3Z",
"AW": "M270.8,275.2L270.3,274.8L270.3,274.6Z",
"NC": "M921.4,367.6L928.9,373.6L924.0,371.3L920.5,366.9Z",
"VU": "M930.0,355.3L931.0,356.5L929.3,354.7ZM928.3,352.6L929.0,352.0L929.5,353.6L928.2,353.9L927.7,351.0Z",
"NZ": "M945.1,433.2L945.8,436.2L949.2,435.0L949.1,437.8L944.8,443.4L945.8,445.8L940.8,447.6L939.3,453.7L934.4,456.9L927.4,454.2L932.6,446.5L939.4,442.1L943.0,434.6ZM945.6,412.0L946.3,413.9L949.2,414.6L950.6,420.2L952.7,421.6L952.0,418.9L953.4,419.9L953.8,423.0L957.1,424.3L961.0,423.2L959.1,428.7L956.8,428.5L956.1,432.0L952,437.3L949.9,436.1L951.5,431.7L947.6,428.8L949.9,427.1L951.0,423.3L949.8,421.0L950.8,420.9L948.8,419.0L949.7,418.1L948.0,416.8L948.5,418.7L946.6,415.8L947.3,414.9L945.8,414.6L944.7,412.2Z",
"NI": "M233.7,267.9L234.0,267.8L232.1,276.7L232.6,279.4L228.6,279.2L226.9,279.0L221.4,273.8L222.5,273.6L229.1,268.3Z",
"NE": "M476.8,257.2L476.8,255.7L481.1,254.9L498.3,242.7L504.5,245.4L506.6,244.3L507.2,248.8L509.4,252.2L508.0,262.3L502.4,269.4L502.8,271.5L499.6,273.3L494.7,272.4L491.7,274.1L486.7,272.5L484.2,273.5L481.3,271.4L476.5,272.2L475,277.3L472.8,275.2L471.6,276.7L470.9,274.4L467.7,273.4L468.5,272.5L466.6,271.5L465.6,268.0L474.7,266.8L476.6,263.8Z",
"NG": "M481.3,271.4L484.2,273.5L486.7,272.5L491.7,274.1L494.7,272.4L499.6,273.3L502.8,271.5L504.0,273.3L505.6,277.6L503.3,279.0L497.9,290.2L496.5,292.0L494.5,290.3L492.2,291.0L488.8,296.6L484.3,296.8L484.4,297.8L483.8,296.7L484.0,297.9L481.9,298.1L480.1,296.3L480.6,294.5L479.6,294.8L480.2,294.3L477.5,292.4L472.5,292.2L472.7,284.7L475.7,280.4L475,277.3L476.5,272.2Z",
"NU": "M-6.9,364.2L-7.0,363.8L-6.7,363.6Z",
"NF": "M931.5,394.4L931.4,394.2L931.6,394.3Z",
"NO": "M503.8,47.5L504.2,47.5L502.3,48.7ZM506.7,46.6L504.4,48.1L507.1,45.9ZM507.7,42.8L506.8,45.0L504.9,44.1ZM509.4,43.6L508.7,45.3L511.0,44.4L506.6,47.4L508.4,42.1ZM514,37.6L515.1,38.3L514.6,39.8L515,40.2L511.6,41.2ZM517.4,36.2L515,37.0L516.9,34.7ZM530.5,29.0L529.5,31.5L528.4,30.4ZM530.1,27.3L528.2,29.5L525.9,28.4ZM479.8,91.3L478.7,90.8L483.7,89.7L479.3,89.5L479.3,87.6L482.6,88.5L481.4,87.6L482.5,86.7L483.1,88.3L482.7,86.7L483.6,86.2L484.0,86.4L484.4,87.4L484.2,88.2L484.5,88.4L485.6,87.5L484.3,87.0L484.2,86.7L484.3,86.7L483.8,86.0L482.3,86.2L483.4,85.9L482.3,85.5L487.6,84.8L484.5,83.1L488.7,85.0L486.8,82.8L488.6,83.8L487.6,82.1L491.8,79.0L493.5,81.3L492.9,80.3L495.3,80.1L496.9,76.5L496.4,75.9L494.3,77.9L495.7,77.7L495.3,78.3L492.9,79.8L492.1,78.8L493.0,78.2L491.5,78.2L500.9,68.1L499.0,68.7L500.1,64.0L501.6,64.5L500.1,63.0L504.3,61.3L501.1,62.2L502.6,61.4L501.0,59.9L503.1,59.3L501.7,58.6L503.8,58.1L502.6,57.0L508.7,55.3L504.8,54.9L509.1,52.5L506,50.7L509.3,47.4L510.0,50.1L510.8,50.8L510.0,49.3L510.8,49.6L510.4,49.0L511.4,48.7L509.7,47.2L511.6,48.3L510.3,46.5L513.1,48.0L513.7,45.4L510.7,45.4L514.1,44.4L512.8,43.6L514.4,43.5L513.4,42.4L515.4,40.5L515,39.5L515.7,37.8L519,39.9L517.6,36.9L519.8,35.3L519.6,38.3L521.3,34.0L520.4,39.7L524.1,33.6L526.3,35.8L525.5,33.5L526.3,32.9L524.1,31.7L529.7,34.2L533.6,28.6L532.3,27.3L533.3,25.8L536.9,26.4L534.6,29.6L535.0,33.0L538.8,25.9L538.6,30.8L540.0,29.9L541.8,24.5L544.3,25.7L541.8,28.7L543.6,27.9L542.3,29.8L543.7,29.6L542.8,33.3L545.6,26.5L551.3,31.4L544.4,32.9L547.4,34.0L546.9,36.5L550.6,35.4L545.4,41.3L546.0,36.6L543.2,34.5L538.4,34.3L534.2,44.9L527.2,43.9L524.2,39.1L522.1,41.2L520.8,41.4L521.5,43.3L520.3,46.7L515.2,45.4L514.6,49.6L511.4,50.0L507.9,61.6L505.2,62.6L505.2,68.1L502.9,72.9L504.2,73.6L503.8,76.5L498.7,79.3L498.6,90.5L500.7,92.6L498.9,94.7L499.6,99.7L497.8,101.2L496.7,105.9L495,104.8L494.2,101.0L493.4,105.6L491.5,105.2L487.8,110.5L483.3,110.8L480.1,107.2L483.3,105.6L481.3,105.4L482.9,102.8L479.3,103.1L484.7,97.6L480.9,100.4L480.9,98.2L479.2,98.4L480.8,96.5L478.6,95.9L483.3,93.8L484.7,95.5L486.0,91.9L480,94.3L478.7,93.2L480.6,92.6L478.7,92.3L481.1,92.1ZM479.8,91.3L479.8,91.3L479.6,91.3Z",
"MP": "M868.5,270.2L868.1,270.3L868.4,270.1ZM869.5,268.1L869.3,267.8L869.5,267.6ZM869.8,267.4L869.6,267.5L870.0,267.0ZM869.8,259.0L869.9,258.6L870.0,258.6ZM869.6,257.0L869.6,256.7L869.7,256.9Z",
"FM": "M917.8,295.3L917.5,295.2L917.8,295.0ZM904.7,291.0L904.2,290.7L904.7,290.7ZM848.9,283.4L848.5,283.7L848.6,283.2Z",
"MH": "M933.8,289.6L933.8,289.6L933.5,289.5ZM933.2,289.3L933.1,289.3L933.2,289.1ZM934.3,288.9L934.2,288.7L934.3,288.8Z",
"PW": "M838.7,289.4L838.5,289.2L838.9,288.4Z",
"PK": "M672.8,199.1L675.7,200.4L676.5,203.3L681.1,204.3L678.5,207.2L670.3,207.2L671.3,209.5L670.6,212.1L674.3,215.4L672.2,216.4L672.4,219.1L664.7,229.0L660.4,228.8L658.2,231.5L662.5,240.0L656.0,240.2L654.4,241.9L652.4,241.6L649.3,236.3L644.5,237.7L636.1,237.6L636.8,234.4L640.5,233.2L640.9,231.6L639.3,231.2L639.3,228.0L636.9,227.1L634.0,223.0L638.5,224.4L649.0,223.0L650.3,218.6L657.5,216.2L658.0,212.7L660.3,211.7L659.1,209.3L662.4,209.2L664.0,204.6L662.8,202.2L666.5,199.8L672.1,199.1Z",
"PA": "M244.2,283.2L250.0,285.8L250.5,287.8L248.6,289.8L247.1,287.5L247.9,286.5L248.9,287.2L245.6,284.5L241.4,287.1L242.8,289.0L241.5,289.8L237.9,287.2L234.7,287.6L234.6,283.5L235.6,283.3L236.5,284.8L239.4,285.5Z",
"PG": "M887.8,321.7L887.5,325.1L882.9,327.4L877,325.8L881.3,325.4L881.9,323.9L882.1,325.4L884.2,325.2L886.3,323.6L885.8,321.6ZM859.1,318.2L866.4,320.6L869.8,323.3L869.9,325.2L874.6,326.6L875.7,328.5L873.2,328.7L873.8,330.7L876.5,332.4L877.7,335.3L879.7,335.1L879.5,336.4L881.6,336.8L881.4,338.0L884.1,338.5L882.2,339.8L875.9,338.3L870.8,332.5L866.4,330.8L865.5,331.7L864.0,330.8L864.8,332.2L863.2,332.0L863.9,332.9L859.8,332.9L862.5,333.6L863.1,335.1L856.6,335.4L856.6,317.2Z",
"PY": "M314.0,380.7L313.3,383.5L313.0,386.1L310.1,389.3L302.2,388.9L305.0,383.4L304.5,382.3L295.5,378.1L291,373.3L293.5,365.6L300.8,364.8L303.4,367.2L303.9,372.9L309.8,373.5L311.0,378.5L313.8,378.4Z",
"PE": "M246.3,322.7L247.3,319.5L255.1,314.2L256.0,312.6L254.9,310.3L255.8,310.3L260.6,313.8L262.5,316.9L265.8,315.9L269.7,316.9L268.5,320.5L270.6,321.7L268.4,321.5L262.6,324.2L261.8,327.9L259.4,331.0L262.3,335.0L261.6,336.2L263.9,336.4L264.6,337.9L269.1,336.3L268.8,340.7L271.7,340.6L274.2,345.0L272.1,353.9L273.8,356.0L271.9,359.4L269.4,361.8L254.0,351.1L245.5,332.9L242.8,328.8L239.5,326.9L240.3,325.7L239.1,321.9L241.8,319.3L241.4,322.3L243.7,322.3L245.4,323.9Z",
"PH": "M815.1,284.2L816.6,289.7L815.5,292.5L814.0,289.8L813.3,294.5L812.9,293.0L809.9,292.7L810.1,289.4L808.5,288.2L806.1,289.7L805.6,288.3L803.6,290.5L804.5,287.8L807.7,285.6L808.9,286.3L808.5,287.8L811.4,286.3L811.6,284.8L813.6,284.8L813.4,282.6ZM810.7,281.9L810.4,283.1L808.8,282.8ZM808.2,279.8L806.6,284.8L805.1,282.1L806.5,279.5ZM809.5,278.9L809.5,281.0L807.5,283.7ZM796.9,278.2L797.5,280.6L790.5,286.7L796.4,280.4L796.1,279.3L796.8,280.0ZM811.2,278.4L812.3,278.6L812.2,281.9L810.2,277.7ZM804.5,276.9L807.0,277.5L807.0,278.7L803.7,280.8L803.4,277.1ZM810.7,274.9L813.0,275.1L814.3,279.2L811.7,277.9ZM808.5,275.4L809.6,277.2L808.1,275.8L807.1,276.6L807.3,274.6ZM800.3,272.2L802.5,273.1L801.7,275.7L799.1,272.3ZM801.8,257.4L804.5,257.6L805.3,261.7L802.1,266.8L803.1,270.2L804.5,271.0L805.8,269.7L806.9,271.6L807.6,270.4L809.2,271.3L808.1,271.9L810,273.4L809.6,274.8L805.4,270.8L805.5,273.1L803.1,270.8L800.1,271.3L801,268.8L798.5,268.4L797.7,264.0L799.5,264.5L799.9,257.7Z",
"PN": "M108.6,379.9L108.5,379.7L108.6,379.7Z",
"PL": "M517.3,151.2L514.2,147.7L511.2,148.6L510.3,146.2L506.1,145.3L504.6,132.4L514.7,127.1L520,128.9L528.3,129.3L530.2,131.3L531.5,136.9L529.3,139.0L530.6,139.9L530.5,142.4L531.9,146.6L527.6,153.0Z",
"PT": "M442.2,181.7L446.6,181.4L447.8,182.7L445.7,184.8L445.5,189.7L444.0,189.7L445.6,192.0L444.3,198.3L440.0,199.1L440.9,194.2L439.5,194.2L440.0,192.3L438.6,193.2L440.9,186.0L440.6,181.4Z",
"GW": "M424.6,274.4L426.9,274.4L426.9,277.2L424.1,277.8L423.2,279.3L421.9,278.2L423.2,277.5L421.7,277.2L423.3,276.5L420.6,277.1L421.3,276.4L419.8,276.6L420.2,275.4L418.5,275.5Z",
"TL": "M810.6,335.6L810.3,336.3L809.5,336.0ZM818.4,333.6L812.5,336.3L812.6,335.3L812.0,334.9Z",
"PR": "M278.8,257.6L282.7,258.4L278.3,259.3Z",
"QA": "M608.1,237.0L607.2,239.4L606.1,239.0L606.7,235.0L608.2,235.4Z",
"RE": "M619.7,369.6L619.6,370.7L618.3,369.7Z",
"RO": "M522.5,165.0L528.5,157.8L534.2,158.8L538.9,156.5L543.1,162.3L543.3,167.9L547.3,168.8L547.0,170.4L545.1,169.9L544.3,174.5L540.1,173.0L532.1,174.8L528,172.7L527.4,170.8L524.4,170.5L524.7,169.1L521.2,165.3Z",
"RU": "M864.0,152.1L862.2,152.8L860.9,157.6L862.4,162.5L863.5,162.4L863.5,165.4L861.4,162.7L859.6,166.2L859.0,154.4L860.1,144.2L858.4,138.8L858.8,134.0L861.6,132.4L860.5,129.9L861.3,129.0L863.0,135.1L862.8,142.4L867.0,154.9ZM864.0,152.1L862.9,151.8L863.1,152.1ZM524.5,125.0L528.4,126.7L528.3,129.3L520,128.9L521.6,127.8L520.1,128.0L520.4,126.4L523.1,124.8L522.0,126.4L523.5,126.8L524.0,125.0ZM-33.9,42.4L-22.3,51.4L-20.6,53.8L-21.1,58.9L-19.6,61.4L-17.6,60.4L-20.1,56.1L-17.4,55.6L-12.0,56.8L-6.3,63.0L-9,66.1L-11.5,64.6L-10.3,67.0L-15.0,65.7L-13.1,69.6L-16.1,71.6L-13.7,73.7L-16.0,75.1L-16.6,72.7L-22.3,71.6L-24.1,67.1L-31,66.7L-31.9,63.6L-30.8,60.7L-34.1,62.3L-33.1,66.6L-35,69.7L-35,41.8ZM618.6,4.3L622.1,6.1L619.5,7.8L621.2,7.8L618.9,9.5L620.4,10.5L618.1,12.6L619.3,14.9L618.3,17.3L625.1,27.7L613.5,27.0L615.6,24.3L607.8,19.0L612.8,10.7L610.5,10.1L613.2,8.6L612.6,5.9ZM851.6,-24.6L855.2,-19.7L858.3,-23.9L857.6,-25.8L868.8,-18.3L864.8,-13.0L861.9,-14.1L860.8,-16.6L860.8,-17.6L862.3,-20.0L860.6,-20.5L859.8,-16.8L861.1,-13.7L864.1,-12.0L851.3,-8.9L845.1,-16.5L846.6,-16.5L845.4,-19.2L847.6,-20.9L846.8,-23.2ZM654.6,-35.2L656.2,-30.1L635.2,-16.2L629.3,-6.7L626.6,-8.1L628.1,-5.0L624.0,-3.1L625.3,0.5L622.1,-1.0L625.0,1.0L622.5,0.9L624.0,2.7L622.6,5.0L620.3,3.2L615.6,4.4L618.2,0.5L613.9,0.0L620.1,-3.3L617.9,-4.9L623.2,-9.4L620.0,-10.5L622.4,-12.1L620,-14.3L626.1,-20.0ZM754.6,-44.3L760.2,-40.2L754.2,-36.8L763.6,-34.7L760.5,-29.7L773.6,-32.7L781.3,-22.0L780.3,-18.4L777.0,-22.0L780.8,-17.1L757.2,9.7L773.0,0.6L769.2,-0.0L771.1,-2.5L778.5,-1.9L780.2,4.3L780.2,7.8L779.1,8.8L779.3,10.1L780.3,10.9L781.7,11.2L779.8,10.3L779.5,9.9L779.3,9.0L780.3,7.8L780.4,5.1L781.7,4.2L780.2,2.6L794.5,1.9L795.5,2.7L793.8,5.1L797.8,8.0L816.0,13.5L818.3,22.1L818.6,17.6L817,13.1L819.6,13.5L829.2,27.7L833.6,17.2L836.3,21.7L842.3,19.9L847.9,24.5L848.5,20.5L853.6,21.3L852.0,17.1L854.4,14.9L851.3,14.6L856.7,11.3L855.9,8.5L872.9,13.5L866.0,15.1L873.1,13.9L867.6,17.0L868.6,19.7L873.7,13.8L879.4,14.7L881.8,17.7L878.3,19.6L888.7,26.8L906.8,26.5L909.5,30.4L908.6,35.1L912.2,37.0L913.3,41.8L911.8,45.4L913.8,42.4L913.4,38.6L920.5,35.6L931.0,35.5L932.4,39.8L938.9,43.5L940.0,41.4L937.5,36.9L938.5,32.7L954.1,34.6L965,41.8L965,69.7L960.8,72.9L956.3,69.7L954.7,69.9L957.5,71.3L949.5,72.2L958.0,71.8L963.7,85.2L962.3,87.2L956.6,83.7L957.4,85.5L944.7,92.2L937.9,100.8L935.0,96.9L926.5,101.3L927.0,97.6L922.8,101.6L919.5,100.1L918.3,105.6L914.8,110.8L915.9,112.8L918.3,112.0L917.0,114.5L918.7,120.3L916.0,119.3L914.1,123.8L915.3,127.4L909.4,130.4L909.6,135.3L905.0,135.6L904.6,140.5L900.1,145.3L897.0,124.8L898.1,118.0L901.0,114.2L900.4,112.5L904.5,111.0L914.7,98.0L919.6,95.5L920.9,87.2L925.1,86.2L918.5,85.7L917.6,90.0L918.5,90.9L909.8,97.1L910.5,94.5L908.8,95.1L908.9,93.2L910.4,89.2L902.4,90.1L893.4,101.0L893.0,103.3L896.0,103.9L894.8,105.1L885.3,106.7L884.6,105.2L888.0,104.6L880.5,101.6L878.6,104.5L859.8,105.4L840.4,126.9L845.0,127.9L844.8,132.1L847.6,129.5L846.4,133.2L849.8,131.1L849.5,133.3L850.1,129.6L853.1,129.6L857.8,134.4L855.8,135.2L858.0,139.3L855.1,146.0L855.8,148.7L854.3,155.7L840.3,175.5L834.8,178.6L831.1,176.1L828.0,180.1L827.8,179.6L827.7,179.6L827.2,178.5L829.7,175.9L828.7,170.3L831.2,168.3L834.7,169.2L839.2,156.4L828.8,158.8L827.9,154.0L819.2,150.0L815.2,136.8L807.7,133.2L800.7,134.4L798.4,136.8L800.5,139.8L796.1,149.0L792.4,151.2L789.1,149.8L782.5,147.9L772.7,152.7L766.5,152.0L761.2,147.6L750.8,147.7L749.2,146.6L748.9,143.3L739.8,139.6L736.7,144.7L738.0,147.8L735.3,150.3L721.4,145.6L709,152.7L707.6,153.0L706.0,150.0L701.8,150.9L696.8,144.7L691.3,145.9L689.1,143.4L687.4,145.8L681.4,134.5L677.5,131.1L678.3,128.9L669,133.7L669.8,130.7L662.7,130.6L661.7,124.8L657.1,124.6L646.1,129.5L634.4,131.3L634.1,132.8L636.0,133.3L634.9,134.3L637.5,135.7L634.7,135.8L633.5,137.2L634.6,138.7L631.6,140.4L636.3,143.5L635.5,145.7L630.3,147.0L627.0,144.0L621.9,144.4L619.6,146.8L616.8,144.6L616.4,146.8L613.4,142.6L606.0,141.3L600.2,146.5L600.5,149.4L597,147.2L594.1,155.8L596.6,158.8L598.8,158.8L601.1,162.6L599.8,163.5L601.7,164.3L600.3,166.4L596.6,166.7L594.6,171.6L596.6,175.5L597.5,174.1L596.8,177.3L599.9,181.8L597.6,184.1L594.3,181.7L594.0,181.5L589.8,178.3L586.9,179.0L584.0,176.7L576.1,176.0L566.6,169.0L569.8,168.5L570.3,165.6L572.1,165.4L569.8,163.0L574.1,161.4L571.2,161.2L572.9,158.1L575.5,158.1L575.1,155.0L576.3,153.9L575.2,153.3L576.5,150.8L570.6,149.5L569.0,147.2L563.9,147.5L563.2,144.6L560.5,143.6L559.7,141.8L560.6,141.1L557.8,138.6L553.2,139.8L551.8,135.6L555.9,133.6L550.5,127.3L550.9,123.3L543.2,120.6L542.3,114.8L541.0,113.5L542.2,111.8L541.1,106.8L542.8,103.2L549.0,100.5L544.4,98.2L544.6,96.2L542.2,97.3L552.7,83.4L548.3,78.3L549.9,75.2L547.3,70.6L548.6,65.4L545.7,57.2L548.4,51.5L544.6,47.8L545.0,42.9L543.9,42.5L545.4,41.3L550.6,35.4L556.9,35.8L553.9,36.6L558.1,38.4L556.7,42.1L558.6,39.1L564.9,40.4L578.8,51.3L579.5,57.7L572.2,63.1L553.4,55.5L561.8,64.2L560.5,67.7L561.6,73.1L568.9,77.9L570.5,74.6L566.2,70.6L567.8,68.8L571.6,71.1L570.6,72.5L577.5,73.2L575.4,66.5L582.1,59.9L587.6,64.4L588.6,57.2L586.5,54.2L587.9,47.3L585.3,44.1L594.2,48.2L594.7,50.7L589.7,53.9L593.8,58.4L597.5,56.6L598.3,51.8L601.3,52.0L599.9,49.8L610.1,46.9L611.4,45.7L610.8,44.8L611.2,44.4L610.2,44.7L614.3,41.9L616.5,41.8L613.8,42.5L615.0,42.8L614.8,46.3L612.8,47.3L617.1,48.1L628.6,41.7L630.0,43.6L629.0,46.1L631.2,46.5L634.1,42.5L632.0,37.2L634.0,34.9L643.1,37.4L655.1,47.6L657.2,42.0L650.5,37.2L652.0,27.5L650.0,25.0L655.1,18.3L657.5,7.9L663.7,8.3L667.3,10.2L667.4,14.1L664.4,21.4L667.3,26.5L666.1,31.5L666.5,41.8L669.5,45.8L663.3,56.7L663.7,59.0L656.5,57.9L665,62.0L672.6,51.5L671.4,46.4L672.3,43.5L677.7,41.9L679.7,45.4L679.1,50.9L684.5,52.4L680.1,51.0L682.1,47.3L680.6,42.4L669.8,40.4L669.2,35.7L671.4,28.2L667.8,21.8L673.2,15.7L672.8,9.0L675.3,11.6L674,22.2L678.6,24.8L684.7,25.4L676.3,17.3L681.9,17.7L679.9,15.8L683.1,13.0L696.2,19.2L693.5,23.2L693,29.1L693.7,32.1L693.2,29.0L695.8,26.4L694.5,32.4L695.8,33.2L697.6,30.0L695.9,23.4L697.3,20.1L689.2,11.8L689.5,7.7L687.8,5.8L688.6,1.9L706.9,-0.8L703.2,3.0L706.0,7.5L703.4,2.8L708.5,-1.1L703.7,-5.1L707.0,-6.0L703.3,-8.7L703.9,-10.6L706.4,-8.5L708.8,-12.9L706.6,-14.3L726.5,-23.1L722.9,-23.2L723.7,-24.9L740.7,-26.2L742.1,-24.1L740.2,-18.7L743.3,-14.5L740.4,-18.9L742.4,-24.8L739.4,-29.5L748.9,-28.2L745.1,-34.2ZM751.0,-67.3L749.4,-60.0L753.7,-64.3L757.8,-56.2L740.9,-48.8L747.2,-62.1L745.5,-63.3L747.0,-67.6ZM736.1,-80.4L737.3,-78.8L734.9,-73.0L742.8,-74.8L740.1,-66.7L742.6,-61.7L735.2,-60.3L722.9,-70.6Z",
"RW": "M548.1,316.4L547.9,317.6L545.6,317.6L547.2,313.8L549.6,312.9L550.8,315.7L549.9,316.6Z",
"BL": "M289.9,259.0L289.6,258.9L289.9,258.9Z",
"SH": "M449.2,355.0L448.9,355.0L449.1,354.7Z",
"KN": "M291.2,261.8L291.0,261.7L291.1,261.4ZM290.8,261.0L291.0,261.4L290.3,260.9Z",
"AI": "M289.5,258.6L290.0,258.3L290.0,258.4Z",
"LC": "M295.6,271.5L295.3,271.0L295.7,270.4Z",
"MF": "M289.9,258.9L289.9,258.9L289.6,258.9Z",
"PM": "M309.0,162.7L308.7,162.7L308.9,162.4ZM308.6,161.7L308.4,162.6L308.3,161.2Z",
"VC": "M295.0,273.2L294.7,272.9L295.0,272.4Z",
"SM": "M499.5,173.7L499.7,173.6L499.6,174.0Z",
"ST": "M483.1,309.9L482.9,309.2L483.5,308.8ZM485.6,305.6L485.3,305.5L485.5,305.2Z",
"SA": "M589.2,225.1L594.3,225.4L599.5,227.1L600.6,230.1L604.3,233.1L603.8,235.1L606.1,239.0L607.2,239.4L608.2,240.5L611.0,244.5L618.3,245.2L619.6,247.3L617.7,253.2L609.4,256.2L600.4,258.3L593.6,266.0L593.6,263.0L588.5,260.8L585.3,260.7L583.8,263.8L578.2,253.9L573.8,250.0L571.8,241.9L569,240.1L562.6,228.7L561.0,228.6L562.1,224.6L565.1,225.1L569.1,222.5L570.5,220.9L567.8,217.6L573.8,215.6L581.8,218.9Z",
"SN": "M417.3,268.9L416.2,268.5L419.0,264.7L419.7,263.4L425.1,263.1L431,268.5L433.4,275.2L426.9,274.4L424.6,274.4L418.5,275.5L422.2,274.0L418.4,274.8L418.4,273.4L421.0,273.1L421.1,272.5L422.5,272.5L423.0,271.8L426.6,272.4L423.1,271.2L418.9,271.8L419.5,270.2L418.3,270.6Z",
"RS": "M520.7,179.1L521.5,177.8L518.4,175.5L519.5,173.4L517.8,170.2L518.9,168.8L517.2,166.1L521.2,165.3L524.7,169.1L524.4,170.5L527.4,170.8L528,172.7L527.1,174.2L528.8,176.7L527.1,180.0L522.1,181.6Z",
"SC": "M619.2,323.2L618.8,322.8L619.0,322.6Z",
"SL": "M433.8,282.0L435.6,284.7L435.2,286.8L436.4,286.3L433.0,290.7L429,287.9L428.0,284.8L430.3,282.3Z",
"SG": "M753.8,306.1L752.8,306.3L753.0,306.0Z",
"SK": "M512.9,157.5L512.6,157.5L512.0,155.0L517.3,151.2L527.6,153.0L526.5,155.9L522.3,155.2L516.8,158.6Z",
"VN": "M758.2,244.1L761.4,244.7L761.3,247.2L764.9,248.7L761.2,250.2L758.3,256.2L767.3,266.6L769.0,273.8L768.5,276.7L765,280.1L762.9,281.0L761.5,280.1L760.6,281.2L761.6,281.8L760.2,281.3L761.1,282.6L759.7,281.4L760.9,283.2L758.9,282.0L759.9,283.8L756.7,286.0L756.9,282.2L755.1,280.8L756.9,279.3L760,279.9L759.0,277.3L763.7,275.4L763.5,269.4L763.7,268.6L764.1,267.0L762.7,265.6L763.5,264.7L761.3,263.6L757.1,257.2L753.5,255.3L756.6,253.2L754.9,251.9L755.6,251.3L751.5,250.7L751.0,248.1L748.7,246.1L749.6,245.0L753.7,245.8L757.6,243.3Z",
"SI": "M503.1,163.6L509.7,162.2L511.1,163.8L511.0,163.8L508.4,164.8L507.1,168.0L502.7,167.8L503.1,167.3L502.1,164.5Z",
"SO": "M584.2,279.2L585.1,277.9L588,280.8L589.7,280.8L606.0,276.4L607.4,276.8L606.6,280.8L607.8,280.8L606.3,281.1L606.2,283.6L598.1,297.5L585.8,308.1L580.4,314.6L578.8,312.4L578.8,302.1L581.4,298.9L586.3,296.4L589.8,296.3L598.3,287.7L587.2,284.8L584.0,281.4Z",
"ZA": "M548.0,373.2L551.9,373.9L553.9,380.1L553.8,384.7L552.0,384.0L550.8,385.7L551.5,388.5L553.8,388.9L554.2,387.4L556.3,387.4L554.9,392.7L542.5,407.3L536.3,410.6L527.6,410.5L520.5,413.2L517.1,410.8L516.1,411.5L514.5,406.6L515.8,405.9L515.7,403.5L510.8,392.9L512.3,391.1L513.3,393.3L515.5,393.9L520.5,392.3L520.5,381.0L522.8,384.4L522.3,387.4L525.1,387.5L528.9,382.6L535.8,383.8L539.8,377.9L546.5,373.2ZM544.3,392.9L540.0,396.2L541.5,398.7L543,399.5L546.0,397.1L546.7,395.1Z",
"ZW": "M556.6,358.7L555.8,363.5L556.7,366.5L555.2,370.6L551.9,373.9L548.0,373.2L546.5,373.2L542.8,371.3L541.9,368.2L537.6,365.3L535.1,360.2L540.1,360.7L545.3,354.9L549.5,353.9L549.5,355.0L556.6,357.0Z",
"ES": "M419.6,227.7L418.6,228.9L418.0,227.8ZM474.0,189.5L473.5,191.2L471.5,190.1ZM443.1,174.5L460.0,176.0L469.0,178.9L469.7,179.3L473.8,179.5L473.8,181.7L467.6,184.8L465.1,188.4L464.0,190.6L465.5,193.1L463,197.0L459.0,200.1L452.7,200.2L450.1,202.1L450.1,202.1L448.2,202.0L447.3,199.7L444.3,198.3L445.6,192.0L444.0,189.7L445.5,189.7L445.7,184.8L447.8,182.7L446.6,181.4L442.2,181.7L440.6,181.4L439.4,176.8Z",
"EH": "M421.2,249.3L417.9,249.3L417.6,251.0L418,247.5L419.1,246.3L419.5,245.6L419.7,244.6L420.1,244.3L420.0,244.0L420.3,243.3L421.1,241.9L421.1,241.5L420.5,242.2L421,241.5L421.7,241.1L422.8,239.8L423.2,239.6L423.6,239.1L424.7,234.6L427.3,232.9L428.4,229.9L440.9,229.9L440.9,231.1L440.9,235.1L431.6,235.1L431.6,242.9L428.5,244.6L428.8,249.3Z",
"SD": "M552.3,247.3L567.4,247.3L568.9,256.6L572.2,259.1L567.7,261.8L566.5,269.9L565.3,274.4L562.5,276.9L561.8,280.0L560.2,280.5L559.7,286.0L557.3,286.4L556.6,287.9L561.3,291.4L564.8,297.1L560.5,297.1L559.4,298.2L558.1,299.5L550.7,300.2L547.3,297.0L543.7,298.0L541.2,296.0L535.1,288.1L530.3,285.7L530.7,282.4L528.5,279.4L527.4,274.6L525.6,274.1L528.7,266.2L531.6,265.8L531.6,254.7L531.6,253.2L534.4,253.2L534.4,247.3Z",
"SR": "M311.8,293.8L314.9,293.8L314.5,295.1L313.6,296.7L315,300.4L313.3,303.5L309.5,302.9L309.7,304.7L308.1,304.6L303.7,298.8L305.9,294.7L306.7,293.3Z",
"SJ": "M529.8,-51.2L529.0,-48.8L534.1,-45.2L527.8,-38.8L528.2,-42.6L522.9,-41.4L525.1,-47.3L523.0,-50.0ZM524.7,-56.3L526.8,-52.0L520.8,-54.9ZM511.7,-75.6L515.2,-73.3L514,-67.9L516,-71.9L517.5,-64.8L524.8,-59.1L517.6,-54.8L518.0,-49.8L511.1,-30.4L508.0,-34.2L510.8,-35.7L503.6,-42.3L510.0,-41.1L505.9,-44.0L512.2,-47.6L503.7,-44.8L502.7,-49.2L513.0,-54.2L510.3,-54.6L511.7,-57.7L507.9,-54.6L507.7,-60.1L501.1,-51.2L499.3,-55.0L501.6,-55.9L496.4,-61.9L499.7,-61.1L497.6,-63.6L498.6,-66.9L496.2,-63.8L494.6,-70.5L503.3,-75.8L499.5,-71.0L504.0,-66.3L503.5,-70.5L505.5,-74.5L510.6,-61.0L508.4,-75.0ZM520.6,-85.2L526.7,-77.4L528.5,-85.7L529.8,-84.7L529.1,-79.6L534,-83.4L540.6,-76.1L530.3,-65.1L519.5,-71.4L526.9,-74.5L517.1,-73.3L514.3,-79.8Z",
"SZ": "M550.8,385.7L552.0,384.0L553.8,384.7L554.2,387.4L553.8,388.9L551.5,388.5Z",
"SE": "M525.5,45.0L530.7,49.7L530.0,53.1L531.6,57.9L530.7,61.4L532.1,64.8L525.4,65.4L526.6,66.5L524.0,67.9L525.0,69.3L523.4,71.4L524.9,73.8L522.7,77.5L515.5,84.2L514.1,82.9L515.1,85.3L513.1,86.0L514.0,87.5L512.6,95.0L518,101.7L514.8,104.0L513.8,101.4L514.2,103.4L509.5,103.2L513.2,104.5L516.8,104.1L509.9,107.8L512.0,108.6L510.5,108.7L511.7,110.1L510.6,111.7L511.3,113.9L509.0,120.9L505.8,120.5L504.4,124.3L501.0,124.3L499.5,119.8L500.8,118.1L497.5,112.7L497.7,109.5L496.1,109.0L495.8,105.8L496.7,105.9L497.8,101.2L499.6,99.7L498.9,94.7L500.7,92.6L498.6,90.5L498.7,79.3L503.8,76.5L504.2,73.6L502.9,72.9L505.2,68.1L505.2,62.6L507.9,61.6L511.4,50.0L514.6,49.6L515.2,45.4L520.3,46.7L521.5,43.3L520.8,41.4L522.1,41.2Z",
"CH": "M486.3,159.5L491.5,159.5L491.4,160.6L491.3,161.4L491.6,161.4L494.0,162.2L493.1,164.8L490.7,163.7L490.1,166.4L488.4,163.9L486.8,166.0L484.5,166.0L483.8,164.0L481.5,164.9L484.4,159.6L486.0,159.3ZM489.1,158.8L489.1,158.8L489.0,158.8Z",
"SY": "M582.6,198.8L579.6,201.4L578.8,208.0L572.7,211.5L567.3,215.0L564.0,213.8L563.9,211.9L566.7,208.7L564.9,207.2L564.7,202.9L566.9,201.8L566.8,199.8Z",
"TJ": "M673.1,198.3L668.6,197.6L664.1,200.3L663.8,196.0L662.1,194.0L657.5,198.8L653.2,198.5L654.9,195.0L652.3,190.4L655.3,190.2L656.6,188.2L655.5,187.9L660.6,184.7L661.6,185.9L660.5,187.1L662.1,187.7L658.1,188.1L657.5,190.2L669.6,190.5L670.0,193.5L672.9,194.0Z",
"TH": "M743,252.2L743.0,252.2L744.3,252.8L744.1,254.6L746.3,254.5L745.3,260.4L748.5,258.5L750.2,259.6L752.2,257.8L755.8,260.6L755.9,263.4L758.4,265.9L757.2,269.7L751.6,269.7L749.3,271.9L750.8,277.4L748.5,274.7L745.1,274.4L745.5,272.2L742.9,272.3L742.8,275.8L740.4,281.0L740.6,284.1L742.3,284.0L743.9,290.0L748.6,292.6L745.9,294.3L744.5,292.0L743.1,292.1L739.0,286.6L737.9,286.9L739.2,281.0L741.8,276.9L740.4,271.4L737.7,267.6L739.8,263.8L735.4,257.5L736.5,257.4L737.3,253.8Z",
"TG": "M468.8,283.6L469.5,292.6L468.3,293.0L466.4,290.6L467.0,286.8L464.5,278.8L467.5,279.2L467.1,281.0Z",
"TK": "M-12.3,335.6L-12.3,335.6L-12.3,335.5Z",
"TO": "M-21.5,370.2L-22.1,369.9L-21.2,370.1Z",
"TT": "M295.7,279.8L295.5,281.6L293,281.9L294.2,281.2L293.7,280.0ZM296.5,278.6L295.9,278.8L296.8,278.2Z",
"AE": "M621.0,236.2L621.3,236.2L621.5,238.3L620.6,238.4L618.3,245.2L611.0,244.5L608.2,240.5L615.3,240.8L620.7,234.9Z",
"TN": "M492.3,198.7L493.8,200.2L495.7,199.0L494.0,202.2L495.9,205.2L492.8,208.8L497.0,212.2L497.1,214.6L493.5,217.1L493.3,220.2L491.5,221.8L490.1,215.7L485.8,209.8L487.9,207.3L487.7,200.8L488.9,199.4Z",
"TR": "M562.5,181.3L571.5,185.2L576.5,185.2L580.3,183.0L583.9,182.7L585.7,184.5L586.2,188.1L589.3,189.6L589.4,189.9L587.3,190.8L589.4,198.7L582.6,198.8L566.8,199.8L566.9,201.8L564.7,202.9L565.0,199.4L556.1,202.5L551.2,199.7L547.4,202.2L544.0,199.6L541.0,200.3L543.6,199.0L540.6,199.3L541.6,198.4L540.5,198.0L540.7,195.8L538,194.8L538.2,193.3L540.4,194.1L539.2,193.4L539.8,190.2L537.4,190.4L539.1,187.1L548.1,185.9L546.0,184.0L551.7,184.5L557.5,181.1ZM541.0,181.1L542.8,181.2L545.6,184.7L541.4,184.9L537.7,188.3L539.5,186.4L537.3,185.8L538.9,183.6L538.2,182.2Z",
"TM": "M628.2,178.7L631.6,180.3L632.0,183.5L636.8,184.4L638.7,188.8L643.8,192.3L650.1,195.7L649.8,197.9L645,198.8L644.1,201.7L640.3,203.1L639.2,205.2L635.2,204.0L634.8,200.4L632.5,200.4L629.8,197.3L623.9,194.7L614.7,198.0L614.9,192.4L612.6,191.5L612.9,189.8L614.2,190.3L613.8,188.6L612.2,189.4L611.4,186.9L612,184.6L614.3,186.3L617.0,184.5L614.4,180.7L612.0,181.3L611.8,184.7L610.6,182.1L612.2,180.6L615.4,179.9L620.5,183.7L623.4,183.9L623.3,181.6Z",
"TC": "M265.9,247.8L265.9,248.1L265.4,247.7ZM265.3,247.7L264.9,247.5L265.2,247.5Z",
"TV": "M962.8,333.8L962.7,333.5L962.8,333.6Z",
"UG": "M559.4,298.2L562.2,304.7L559.1,309.7L559.2,312.7L553,312.7L549.6,312.9L547.2,313.8L548.2,307.6L551.9,304.1L550.3,303.1L550.7,300.2L558.1,299.5Z",
"UA": "M557.8,138.6L560.6,141.1L559.7,141.8L560.5,143.6L563.2,144.6L563.9,147.5L569.0,147.2L570.6,149.5L576.5,150.8L575.2,153.3L576.3,153.9L575.1,155.0L575.5,158.1L572.9,158.1L571.2,161.2L564.7,163.1L562.1,165.4L563.1,164.4L562.7,163.9L562.8,164.1L562.3,164.7L561.3,165.0L561,165.8L558.5,164.8L562.5,168.4L563.1,168.4L562.3,167.3L561.5,165.6L561.3,165.4L561.7,165.4L561.9,166.2L562.3,167.1L563.0,168.2L563.5,168.5L566.7,168.2L559.3,172.1L557.6,171.3L558.1,169.2L555.2,168.1L558.3,165.1L553.3,164.6L554.0,164.1L552.5,163.4L554.8,163.9L555.6,163.1L553.9,163.2L553.1,160.7L553.6,163.1L552.4,163.2L552.7,162.5L550.6,163.5L549.0,166.2L547.6,167.2L547.3,166.4L547.3,168.8L543.3,167.9L545.5,163.8L548.6,164.1L548.1,162.4L545.9,157.6L542.1,155.7L538.9,156.5L534.2,158.8L528.5,157.8L526.5,155.9L527.6,153.0L531.9,146.6L530.5,142.4L536.6,140.5L549.8,143.6L550.9,139.9L553.2,139.8Z",
"MK": "M522.8,185.2L522.1,181.6L527.1,180.0L528.7,183.6L523.2,185.4Z",
"EG": "M535.3,217.7L545.7,219.9L551.1,217.4L553.6,217.6L554.2,219.1L560.0,218.3L560.1,218.6L561.9,224.2L560.1,229.7L557.3,227.1L555.4,222.5L554.8,223.8L564.4,241.5L563.5,241.4L564.0,244.4L567.4,247.3L552.3,247.3L534.4,247.3L533.6,222.0L534.8,217.2Z",
"GB": "M447.3,125.1L449.9,128.8L447.5,130.6L442.3,128.9L444.4,126.5L444.8,125.9ZM448.9,118.8L447.3,119.8L447.4,118.3ZM447.9,113.4L449.2,115.3L446.1,114.0ZM447.7,109.2L445.2,112.1L445.4,109.9ZM456.6,107.8L452.6,113.4L460.0,113.9L455.8,119.5L457.8,120.0L454.6,121.2L460.4,123.4L461.3,127.4L464.8,130.5L465.3,133.1L463,132.4L465.6,133.8L465.0,136.3L469.6,136.9L469.4,139.9L466.0,142.7L468.9,143.9L449.2,148.9L453.2,143.9L456.5,143.8L458.3,141.3L455.6,143.0L450.4,141.5L453.5,138.8L453.5,136.1L451.7,136.7L453.3,134.7L457.5,134.1L456.3,133.1L457.1,130.0L454.9,128.6L456.5,126.3L451.2,127.9L450.6,126.2L452.1,123.9L451.3,122.8L451.4,121.6L452.5,121.7L451.5,120.8L450.2,122.1L451.0,120.2L448.9,124.8L450.7,117.2L447.6,117.8L450,115.7L448.8,112.1L450.8,111.9L449.8,110.7L451.1,107.9ZM457.2,106.1L456.1,106.3L455.6,105.2ZM461.3,97.6L461.4,101.2L460.3,98.8Z",
"GG": "M457.8,151.6L457.5,151.5L458.0,151.2Z",
"JE": "M459.4,152.5L458.8,152.6L458.7,152.3Z",
"IM": "M451.7,130.7L452.9,129.1L452.8,130.1Z",
"TZ": "M553,312.7L559.2,312.7L569.4,318.3L569.4,319.7L573.8,322.9L572.7,326.8L574.8,329.4L574.4,334.8L577.3,339.2L569.0,342.8L562.1,342.3L560.3,337.1L557.0,336.4L556.5,336.2L550.4,332.8L547.0,327.5L546.7,322.3L550.6,319.0L549.9,316.6L550.8,315.7L549.6,312.9Z",
"US": "M34.4,255.2L32.0,256.1L32.0,252.4L34,253.3ZM30.3,250.6L31.6,251.0L30.5,251.5ZM26.8,249.0L25.8,249.4L25.3,248.5ZM22.1,247.6L21.1,247.1L22.3,246.6ZM200.8,151.8L202.1,154.6L211.0,157.4L219.5,156.3L231.3,163.6L235.7,168.3L236.8,175.1L233.9,181.0L235.2,182.4L245.5,178.1L245.0,175.6L246.3,175.0L251.6,175.0L256.6,169.7L268.1,168.7L272.6,159.8L276.6,161.4L276.6,166.9L278.3,169.0L278.3,171.0L273.8,171.3L268.5,176.9L268.9,178.7L267.6,180.0L270.7,182.4L267.2,183.1L266.6,181.9L266.3,183.5L259.4,185.9L259.5,183.7L258.2,190.8L256.7,192.4L255.1,189.9L256.5,188.5L255.0,189.8L256.5,194.2L254,198.7L254.8,195.8L252.8,192.6L254.3,190.0L252.1,191.2L253.0,195.5L250.4,194.3L250.9,192.5L250.2,194.4L253.2,196.0L252.9,197.0L250.7,195.1L253.1,198.9L250.4,198.1L253.9,199.5L255.1,203.3L254.0,200.2L254.4,202.4L251.9,201.7L251.8,202.8L254.6,203.3L253.4,204.9L250.9,204.2L252.5,205.1L251.2,206.1L252.9,206.4L249.9,206.9L248.5,209.7L246.0,210.3L241.4,215.0L240.4,214.3L238.6,218.9L242.6,232.7L241.6,237.6L239.7,237.8L237.9,235.2L237.8,232.9L237.0,233.4L235.3,230.6L236.0,229.1L234.8,229.3L235.4,226.1L232.5,222.8L227.9,223.5L225.3,220.9L220.5,221.8L220.5,220.3L220.1,221.5L213.8,221.9L216.6,222.4L215.6,223.7L217.7,225.1L216.6,225.9L214.5,223.9L214.4,225.4L211.5,225.0L209.8,223.1L208.5,224.0L204.3,222.6L204.2,223.5L201.7,224.6L202.5,223.9L200.9,223.4L200.7,225.5L197.7,227.3L196.5,226.6L197.2,227.5L194.1,229.3L194.4,231.0L193.4,230.6L195.1,235.2L189.7,233.8L188.5,230.2L183.3,223.3L180.8,222.9L177.8,225.7L169.4,216.9L156.5,218.2L150.9,216.1L146.3,213.7L139.6,214.3L135.7,209.3L129.9,207.5L129.9,205.6L124.7,197.4L125.0,196.3L126.0,197.5L125.0,195.8L125.4,195.5L127.7,195.6L125.0,195.1L124.7,196.3L123.3,195.6L119.6,187.5L120.4,183.3L119.1,177.9L120.6,165.0L122.8,164.9L120.5,164.4L121.1,161.8L120.1,161.9L118.5,155.9L124.0,156.9L122.9,160.2L124.8,158.5L123.6,161.4L125.2,160.0L124,153.4L200.6,153.4ZM30.4,23.2L32.8,24.1L31.7,27.5L34.1,24.1L42.0,26.8L41.3,28.4L42.5,29.1L41.0,29.1L42.8,30.1L67,32.8L73.3,36.6L73.3,98.6L78.6,98.4L83.1,106.3L88.6,101.5L94.3,108.7L98.8,118.3L103.8,121.8L103.4,122.6L103.5,123.6L103.9,124.9L102.8,126.7L101.9,127.4L101.0,126.2L102.6,124.6L100.9,125.7L102.1,124.8L101.0,120.8L97.8,123.4L98.9,120.3L94.1,115.3L95.3,114.5L93.7,112.7L95.5,113.7L94,111.7L95.2,111.9L92.6,110.8L93.4,108.4L90.6,109.1L89.0,103.3L89.7,109.9L87.4,109.1L87.8,106.4L84.2,105.4L87.1,109.1L85.4,110.0L76.9,103.1L77.5,100.5L78.0,102.7L79.1,101.4L77.5,100.2L75,102.0L72.2,99.6L65.2,100.4L62.3,98.7L63.3,96.3L61.4,98.4L57.6,96.4L59.1,95.6L57.3,94.9L58.6,94.0L54.2,95.7L54.6,93.1L51.9,95.9L53.3,96.8L51.9,97.8L54.0,97.8L52.6,100.6L49.9,99.7L45.8,104.5L42.8,104.3L45.5,101.6L43.1,101.7L44.4,96.2L51.0,95.6L48.1,93.8L49.9,91.8L39.7,98.7L41.1,100.0L36.5,105.1L39.2,106.6L30.1,116.4L24.9,119.1L25.7,120.2L24.6,121.4L17.0,124.5L16.2,123.2L15.0,125.8L13.2,124.8L13.4,126.4L11.2,127.2L15.5,121.9L19.8,122.5L19.5,119.9L27.7,113.8L27.1,110.7L28.5,110.3L27.3,109.1L29.5,105.0L25.5,107.9L24.7,105.8L26.1,106.4L24.6,104.8L23.6,109.0L19.6,105.5L14.5,107.7L16.1,105.3L15.0,105.1L15.8,103.1L14.3,100.0L14.5,99.0L13.9,99.3L15.3,96.4L13.4,98.6L13.5,100.4L9.2,101.3L5.4,97.2L10.6,95.3L6.2,95.1L7.1,94.1L6.3,94.2L6.2,93.2L6.2,93.7L5.6,93.6L5.8,93.3L6.2,92.3L6.5,92.3L6.6,92.0L7.0,91.9L7.4,91.1L7.3,91.1L6.6,91.8L6.4,92.2L6.2,92.2L5.8,92.8L5.9,92.9L5.8,93.2L5.5,93.5L5.7,93.8L5.5,94.3L3.3,91.3L5.9,86.2L7.6,86.4L8.1,84.4L7.0,83.8L8.3,81.6L17.3,79.7L18.3,77.5L16.3,74.0L18.3,72.0L12.8,74.5L3.5,73.0L1.2,68.9L3.7,68.5L-2.0,65.7L8.4,59.4L10.4,59.6L8.9,62.1L10.3,63.0L17.7,62.1L15.2,61.6L13.2,57.4L14.0,56.8L16.1,60.4L19.9,60.7L16.3,59.8L15.2,58.4L16.3,56.7L14.0,55.4L10.1,55.7L9.1,52.1L1.5,46.6L3.2,42.6L10.4,40.8L15.1,31.2L20.7,28.9L21,31.5L22.5,29.4L20.2,28.6L21.4,27.1Z",
"VI": "M285.1,259.8L285.6,259.8L284.7,260.0Z",
"BF": "M457.1,279.2L457.5,283.5L454.9,282.2L451.9,282.9L449.6,280.8L450.3,276.8L452.7,275.5L454,272.1L455.4,273.0L458.1,269.8L462.9,267.6L465.6,268.0L466.6,271.5L468.5,272.5L467.7,273.4L470.9,274.4L471.6,276.7L467.5,279.2L464.5,278.8Z",
"UY": "M304.4,399.8L304.9,398.0L307.1,397.7L309.4,400.9L310.6,400.1L315.3,403.8L317.5,406.3L316.3,407.6L316.7,409.6L314.5,412.7L308.5,413.5L306.3,412.0L304.3,412.1L302.7,410.2L302.8,407.6L303.4,407.5L303.7,406.9L303.3,405.3Z",
"UZ": "M643.8,192.3L638.7,188.8L636.8,184.4L632.0,183.5L631.6,180.3L628.2,178.7L623.3,181.6L623.4,183.9L620.5,183.7L620.5,169.7L627.6,167.4L637.3,175.6L645.3,174.6L648.6,177.4L648.4,181.2L649.8,181.2L650.3,184.2L653.7,184.2L655.1,186.3L656.8,183.5L662.1,180.2L663,180.4L659.9,182.9L663.3,184.4L664.1,182.8L668.2,185.5L662.1,187.7L660.5,187.1L661.6,185.9L660.6,184.7L655.5,187.9L656.6,188.2L655.3,190.2L652.3,190.4L654.9,195.0L653.2,198.5L649.8,197.9L650.1,195.7Z",
"VE": "M271.1,277.2L274.9,278.7L275.6,280.6L281,280.2L284.2,281.9L288.0,280.6L286.5,280.2L293.1,280.0L290.2,280.5L291.0,281.7L289.9,281.7L295.9,283.6L293.8,286.1L298.3,286.1L298.8,287.0L296.3,288.9L297.5,290.3L295.1,291.3L294.4,293.4L296.3,295.5L295.5,297.4L290.6,298.7L290.3,300.1L285,298.1L287.0,303.1L288.9,304.0L283,308.1L279.2,306.6L278.3,303.3L276.5,302.1L278.0,300.5L276.5,297.3L277.6,292.7L272.6,293.0L270.2,290.5L265,290.4L262.8,284.6L261.1,284.4L263.6,278.9L265.0,277.3L266.8,276.8L265.0,277.6L266.1,280.0L264.6,282.6L266.0,284.7L267.6,283.9L266.3,279.3L271.1,278.0L269.8,277.4L270.4,275.8Z",
"WF": "M-29.5,350.1L-29.8,350.1L-29.9,349.9ZM-24.3,347.4L-24.3,347.0L-24.2,347.1Z",
"WS": "M-11.1,349.3L-12.9,348.9L-12.2,348.7ZM-13.5,347.8L-13.3,348.7L-14.9,347.9Z",
"YE": "M610.0,265.9L587.1,274.7L585.1,272.9L583.8,263.8L585.3,260.7L588.5,260.8L593.6,263.0L593.6,266.0L600.4,258.3L609.4,256.2L612.5,263.1L610.2,264.1Z",
"ZM": "M534.3,359.5L530.2,359.7L526.1,355.5L526.1,346.4L531.7,346.4L531.6,340.3L532.9,342.0L535.3,341.2L537.2,343.2L539.6,343.4L540.5,342.3L545.6,347.5L547.7,347.7L547.8,344.0L545.6,344.6L543.7,342.3L544.7,339.7L543.8,335.8L545.2,333.6L550.4,332.8L556.5,336.2L558.6,339.5L557.3,340.4L558.1,344.6L555.7,348.1L557.2,349.3L548.9,352.0L549.5,353.9L545.3,354.9L540.1,360.7L535.1,360.2Z"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment