PalletControl/static/plugins/datamaps/datamaps.bih.min.js

2 lines
36 KiB
JavaScript

!function(){function a(a,b,c){"undefined"==typeof c&&(c=b,optionsValues=void 0);var d="undefined"!=typeof a?a:b;if("undefined"==typeof d)return null;if("function"==typeof d){var e=[c];return c.geography&&(e=[c.geography,c.data]),d.apply(null,e)}return d}function b(a,b,c){return this.svg=n.select(a).append("svg").attr("width",c||a.offsetWidth).attr("data-width",c||a.offsetWidth).attr("class","datamap").attr("height",b||a.offsetHeight).style("overflow","hidden"),this.options.responsive&&(n.select(this.options.element).style({position:"relative","padding-bottom":100*this.options.aspectRatio+"%"}),n.select(this.options.element).select("svg").style({position:"absolute",width:"100%",height:"100%"}),n.select(this.options.element).select("svg").select("g").selectAll("path").style("vector-effect","non-scaling-stroke")),this.svg}function c(a,b){var c,d,e=b.width||a.offsetWidth,f=b.height||a.offsetHeight,g=this.svg;return b&&"undefined"==typeof b.scope&&(b.scope="world"),"usa"===b.scope?c=n.geo.albersUsa().scale(e).translate([e/2,f/2]):"world"===b.scope&&(c=n.geo[b.projection]().scale((e+1)/2/Math.PI).translate([e/2,f/("mercator"===b.projection?1.45:1.8)])),"orthographic"===b.projection&&(g.append("defs").append("path").datum({type:"Sphere"}).attr("id","sphere").attr("d",d),g.append("use").attr("class","stroke").attr("xlink:href","#sphere"),g.append("use").attr("class","fill").attr("xlink:href","#sphere"),c.scale(250).clipAngle(90).rotate(b.projectionConfig.rotation)),d=n.geo.path().projection(c),{path:d,projection:c}}function d(){n.select(".datamaps-style-block").empty()&&n.select("head").append("style").attr("class","datamaps-style-block").html('.datamap path.datamaps-graticule { fill: none; stroke: #777; stroke-width: 0.5px; stroke-opacity: .5; pointer-events: none; } .datamap .labels {pointer-events: none;} .datamap path {stroke: #FFFFFF; stroke-width: 1px;} .datamaps-legend dt, .datamaps-legend dd { float: left; margin: 0 3px 0 0;} .datamaps-legend dd {width: 20px; margin-right: 6px; border-radius: 3px;} .datamaps-legend {padding-bottom: 20px; z-index: 1001; position: absolute; left: 4px; font-size: 12px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;} .datamaps-hoverover {display: none; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .hoverinfo {padding: 4px; border-radius: 1px; background-color: #FFF; box-shadow: 1px 1px 5px #CCC; font-size: 12px; border: 1px solid #CCC; } .hoverinfo hr {border:1px dotted #CCC; }')}function e(b){var c=this.options.fills,d=this.options.data||{},e=this.options.geographyConfig,f=this.svg.select("g.datamaps-subunits");f.empty()&&(f=this.addLayer("datamaps-subunits",null,!0));var g=o.feature(b,b.objects[this.options.scope]).features;e.hideAntarctica&&(g=g.filter(function(a){return"ATA"!==a.id})),e.hideHawaiiAndAlaska&&(g=g.filter(function(a){return"HI"!==a.id&&"AK"!==a.id}));var h=f.selectAll("path.datamaps-subunit").data(g);h.enter().append("path").attr("d",this.path).attr("class",function(a){return"datamaps-subunit "+a.id}).attr("data-info",function(a){return JSON.stringify(d[a.id])}).style("fill",function(b){var e,f=d[b.id];return f&&f.fillKey&&(e=c[a(f.fillKey,{data:d[b.id],geography:b})]),"undefined"==typeof e&&(e=a(f&&f.fillColor,c.defaultFill,{data:d[b.id],geography:b})),e}).style("stroke-width",e.borderWidth).style("stroke",e.borderColor)}function f(){function b(){this.parentNode.appendChild(this)}var c=this.svg,d=this,e=this.options.geographyConfig;(e.highlightOnHover||e.popupOnHover)&&c.selectAll(".datamaps-subunit").on("mouseover",function(f){var g=n.select(this),h=d.options.data[f.id]||{};if(e.highlightOnHover){var i={fill:g.style("fill"),stroke:g.style("stroke"),"stroke-width":g.style("stroke-width"),"fill-opacity":g.style("fill-opacity")};g.style("fill",a(h.highlightFillColor,e.highlightFillColor,h)).style("stroke",a(h.highlightBorderColor,e.highlightBorderColor,h)).style("stroke-width",a(h.highlightBorderWidth,e.highlightBorderWidth,h)).style("fill-opacity",a(h.highlightFillOpacity,e.highlightFillOpacity,h)).attr("data-previousAttributes",JSON.stringify(i)),/((MSIE)|(Trident))/.test(navigator.userAgent)||b.call(this)}e.popupOnHover&&d.updatePopup(g,f,e,c)}).on("mouseout",function(){var a=n.select(this);if(e.highlightOnHover){var b=JSON.parse(a.attr("data-previousAttributes"));for(var c in b)a.style(c,b[c])}a.on("mousemove",null),n.selectAll(".datamaps-hoverover").style("display","none")})}function g(a,b,c){if(b=b||{},this.options.fills){var d="<dl>",e="";b.legendTitle&&(d="<h2>"+b.legendTitle+"</h2>"+d);for(var f in this.options.fills){if("defaultFill"===f){if(!b.defaultFillName)continue;e=b.defaultFillName}else e=b.labels&&b.labels[f]?b.labels[f]:f+": ";d+="<dt>"+e+"</dt>",d+='<dd style="background-color:'+this.options.fills[f]+'">&nbsp;</dd>'}d+="</dl>";n.select(this.options.element).append("div").attr("class","datamaps-legend").html(d)}}function h(a,b){var c=n.geo.graticule();this.svg.insert("path",".datamaps-subunits").datum(c).attr("class","datamaps-graticule").attr("d",this.path)}function i(b,c,d){var e=this;this.svg;if(!c||c&&!c.slice)throw"Datamaps Error - arcs must be an array";for(var f=0;f<c.length;f++)c[f]=l(c[f],c[f].options),delete c[f].options;"undefined"==typeof d&&(d=p.arcConfig);var g=b.selectAll("path.datamaps-arc").data(c,JSON.stringify),h=n.geo.path().projection(e.projection);g.enter().append("svg:path").attr("class","datamaps-arc").style("stroke-linecap","round").style("stroke",function(b){return a(b.strokeColor,d.strokeColor,b)}).style("fill","none").style("stroke-width",function(b){return a(b.strokeWidth,d.strokeWidth,b)}).attr("d",function(b){var c=e.latLngToXY(a(b.origin.latitude,b),a(b.origin.longitude,b)),f=e.latLngToXY(a(b.destination.latitude,b),a(b.destination.longitude,b)),g=[(c[0]+f[0])/2,(c[1]+f[1])/2];if(d.greatArc){var i=n.geo.greatArc().source(function(b){return[a(b.origin.longitude,b),a(b.origin.latitude,b)]}).target(function(b){return[a(b.destination.longitude,b),a(b.destination.latitude,b)]});return h(i(b))}var j=a(b.arcSharpness,d.arcSharpness,b);return"M"+c[0]+","+c[1]+"S"+(g[0]+50*j)+","+(g[1]-75*j)+","+f[0]+","+f[1]}).transition().delay(100).style("fill",function(b){var c=this.getTotalLength();return this.style.transition=this.style.WebkitTransition="none",this.style.strokeDasharray=c+" "+c,this.style.strokeDashoffset=c,this.getBoundingClientRect(),this.style.transition=this.style.WebkitTransition="stroke-dashoffset "+a(b.animationSpeed,d.animationSpeed,b)+"ms ease-out",this.style.strokeDashoffset="0","none"}),g.exit().transition().style("opacity",0).remove()}function j(a,b){var c=this;b=b||{};var d=this.projection([-67.707617,42.722131]);this.svg.selectAll(".datamaps-subunit").attr("data-foo",function(e){var f=c.path.centroid(e),g=7.5,h=5;["FL","KY","MI"].indexOf(e.id)>-1&&(g=-2.5),"NY"===e.id&&(g=-1),"MI"===e.id&&(h=18),"LA"===e.id&&(g=13);var i,j;i=f[0]-g,j=f[1]+h;var k=["VT","NH","MA","RI","CT","NJ","DE","MD","DC"].indexOf(e.id);if(k>-1){var l=d[1];i=d[0],j=l+k*(2+(b.fontSize||12)),a.append("line").attr("x1",i-3).attr("y1",j-5).attr("x2",f[0]).attr("y2",f[1]).style("stroke",b.labelColor||"#000").style("stroke-width",b.lineWidth||1)}return a.append("text").attr("x",i).attr("y",j).style("font-size",(b.fontSize||10)+"px").style("font-family",b.fontFamily||"Verdana").style("fill",b.labelColor||"#000").text(e.id),"bar"})}function k(b,c,d){function e(a){return"undefined"!=typeof a&&"undefined"!=typeof a.latitude&&"undefined"!=typeof a.longitude}var f=this,g=this.options.fills,h=this.options.filters,i=this.svg;if(!c||c&&!c.slice)throw"Datamaps Error - bubbles must be an array";var j=b.selectAll("circle.datamaps-bubble").data(c,d.key);j.enter().append("svg:circle").attr("class","datamaps-bubble").attr("cx",function(a){var b;return e(a)?b=f.latLngToXY(a.latitude,a.longitude):a.centered&&(b=f.path.centroid(i.select("path."+a.centered).data()[0])),b?b[0]:void 0}).attr("cy",function(a){var b;return e(a)?b=f.latLngToXY(a.latitude,a.longitude):a.centered&&(b=f.path.centroid(i.select("path."+a.centered).data()[0])),b?b[1]:void 0}).attr("r",function(b){return d.animate?0:a(b.radius,d.radius,b)}).attr("data-info",function(a){return JSON.stringify(a)}).attr("filter",function(b){var c=h[a(b.filterKey,d.filterKey,b)];return c?c:void 0}).style("stroke",function(b){return a(b.borderColor,d.borderColor,b)}).style("stroke-width",function(b){return a(b.borderWidth,d.borderWidth,b)}).style("fill-opacity",function(b){return a(b.fillOpacity,d.fillOpacity,b)}).style("fill",function(b){var c=g[a(b.fillKey,d.fillKey,b)];return c||g.defaultFill}).on("mouseover",function(b){var c=n.select(this);if(d.highlightOnHover){var e={fill:c.style("fill"),stroke:c.style("stroke"),"stroke-width":c.style("stroke-width"),"fill-opacity":c.style("fill-opacity")};c.style("fill",a(b.highlightFillColor,d.highlightFillColor,b)).style("stroke",a(b.highlightBorderColor,d.highlightBorderColor,b)).style("stroke-width",a(b.highlightBorderWidth,d.highlightBorderWidth,b)).style("fill-opacity",a(b.highlightFillOpacity,d.highlightFillOpacity,b)).attr("data-previousAttributes",JSON.stringify(e))}d.popupOnHover&&f.updatePopup(c,b,d,i)}).on("mouseout",function(a){var b=n.select(this);if(d.highlightOnHover){var c=JSON.parse(b.attr("data-previousAttributes"));for(var e in c)b.style(e,c[e])}n.selectAll(".datamaps-hoverover").style("display","none")}),j.transition().duration(400).attr("r",function(b){return a(b.radius,d.radius,b)}),j.exit().transition().delay(d.exitDelay).attr("r",0).remove()}function l(a){return Array.prototype.slice.call(arguments,1).forEach(function(b){if(b)for(var c in b)null==a[c]&&(a[c]=b[c])}),a}function m(a){if("undefined"==typeof n||"undefined"==typeof o)throw new Error("Include d3.js (v3.0.3 or greater) and topojson on this page before creating a new map");return this.options=l(a,p),this.options.geographyConfig=l(a.geographyConfig,p.geographyConfig),this.options.projectionConfig=l(a.projectionConfig,p.projectionConfig),this.options.bubblesConfig=l(a.bubblesConfig,p.bubblesConfig),this.options.arcConfig=l(a.arcConfig,p.arcConfig),n.select(this.options.element).select("svg").length>0&&b.call(this,this.options.element,this.options.height,this.options.width),this.addPlugin("bubbles",k),this.addPlugin("legend",g),this.addPlugin("arc",i),this.addPlugin("labels",j),this.addPlugin("graticule",h),this.options.disableDefaultStyles||d(),this.draw()}var n=window.d3,o=window.topojson,p={scope:"world",responsive:!1,aspectRatio:.5625,setProjection:c,projection:"equirectangular",dataType:"json",data:{},done:function(){},fills:{defaultFill:"#ABDDA4"},filters:{},geographyConfig:{dataUrl:null,hideAntarctica:!0,hideHawaiiAndAlaska:!1,borderWidth:1,borderColor:"#FDFDFD",popupTemplate:function(a,b){return'<div class="hoverinfo"><strong>'+a.properties.name+"</strong></div>"},popupOnHover:!0,highlightOnHover:!0,highlightFillColor:"#FC8D59",highlightBorderColor:"rgba(250, 15, 160, 0.2)",highlightBorderWidth:2},projectionConfig:{rotation:[97,0]},bubblesConfig:{borderWidth:2,borderColor:"#FFFFFF",popupOnHover:!0,radius:null,popupTemplate:function(a,b){return'<div class="hoverinfo"><strong>'+b.name+"</strong></div>"},fillOpacity:.75,animate:!0,highlightOnHover:!0,highlightFillColor:"#FC8D59",highlightBorderColor:"rgba(250, 15, 160, 0.2)",highlightBorderWidth:2,highlightFillOpacity:.85,exitDelay:100,key:JSON.stringify},arcConfig:{strokeColor:"#DD1C77",strokeWidth:1,arcSharpness:1,animationSpeed:600}};m.prototype.resize=function(){var a=this,b=a.options;if(b.responsive){var c=b.element.clientWidth,d=n.select(b.element).select("svg").attr("data-width");n.select(b.element).select("svg").selectAll("g").attr("transform","scale("+c/d+")")}},m.prototype.draw=function(){function a(a){b.options.dataUrl&&n[b.options.dataType](b.options.dataUrl,function(a){if("csv"===b.options.dataType&&a&&a.slice){for(var c={},d=0;d<a.length;d++)c[a[d].id]=a[d];a=c}Datamaps.prototype.updateChoropleth.call(b,a)}),e.call(b,a),f.call(b),(b.options.geographyConfig.popupOnHover||b.options.bubblesConfig.popupOnHover)&&(hoverover=n.select(b.options.element).append("div").attr("class","datamaps-hoverover").style("z-index",10001).style("position","absolute")),b.options.done(b)}var b=this,c=b.options,d=c.setProjection.apply(b,[c.element,c]);return this.path=d.path,this.projection=d.projection,c.geographyConfig.dataUrl?n.json(c.geographyConfig.dataUrl,function(c,d){if(c)throw new Error(c);b.customTopo=d,a(d)}):a(this[c.scope+"Topo"]||c.geographyConfig.dataJson),this},m.prototype.worldTopo="__WORLD__",m.prototype.abwTopo="__ABW__",m.prototype.afgTopo="__AFG__",m.prototype.agoTopo="__AGO__",m.prototype.aiaTopo="__AIA__",m.prototype.albTopo="__ALB__",m.prototype.aldTopo="__ALD__",m.prototype.andTopo="__AND__",m.prototype.areTopo="__ARE__",m.prototype.argTopo="__ARG__",m.prototype.armTopo="__ARM__",m.prototype.asmTopo="__ASM__",m.prototype.ataTopo="__ATA__",m.prototype.atcTopo="__ATC__",m.prototype.atfTopo="__ATF__",m.prototype.atgTopo="__ATG__",m.prototype.ausTopo="__AUS__",m.prototype.autTopo="__AUT__",m.prototype.azeTopo="__AZE__",m.prototype.bdiTopo="__BDI__",m.prototype.belTopo="__BEL__",m.prototype.benTopo="__BEN__",m.prototype.bfaTopo="__BFA__",m.prototype.bgdTopo="__BGD__",m.prototype.bgrTopo="__BGR__",m.prototype.bhrTopo="__BHR__",m.prototype.bhsTopo="__BHS__",m.prototype.bihTopo={type:"Topology",objects:{bih:{type:"GeometryCollection",geometries:[{type:"Polygon",properties:{name:"West Bosnia"},id:"BA.BF",arcs:[[0,1,2,3,4,5]]},{type:"Polygon",properties:{name:"Una-Sana"},id:"BA.BF",arcs:[[6,-5,7]]},{type:"Polygon",properties:{name:"Central Bosnia"},id:"BA.BF",arcs:[[8,9,10,-1,11]]},{type:"Polygon",properties:{name:"West Herzegovina"},id:"BA.BF",arcs:[[12,-3,13]]},{type:"Polygon",properties:{name:"Herzegovina-Neretva"},id:"BA.BF",arcs:[[14,15,16,17,-14,-2,-11]]},{type:"Polygon",properties:{name:"Tuzla"},id:"BA.BF",arcs:[[18,19,20,21,22]]},{type:"Polygon",properties:{name:"Zenica-Doboj"},id:"BA.BF",arcs:[[-22,23,24,25,-9,26,27]]},{type:"Polygon",properties:{name:"Sarajevo"},id:"BA.BF",arcs:[[28,29,30,31,-15,-10,-26]]},{type:"Polygon",properties:{name:"Bosnian Podrinje"},id:"BA.BF",arcs:[[32,-30,33]]},{type:"MultiPolygon",properties:{name:"Posavina"},id:"BA.SR",arcs:[[[34,35,36]],[[37,38]]]},{type:"Polygon",properties:{name:"Doboj"},id:"BA.",arcs:[[-38,39,-36,40,-23,-28,41,42]]},{type:"Polygon",properties:{name:"Banja Luka"},id:"BA.",arcs:[[-42,-27,-12,-6,-7,43]]},{type:"Polygon",properties:{name:"Brčko Distrikt"},id:"BA.",arcs:[[44,45,-19,-41,-35]]},{type:"Polygon",properties:{name:"Bijeljina"},id:"BA.",arcs:[[46,-20,-46,47]]},{type:"Polygon",properties:{name:"Vlasenica"},id:"BA.",arcs:[[48,49,50,-24,-21,-47]]},{type:"MultiPolygon",properties:{name:"Sarajevo-romanija"},id:"BA.",arcs:[[[-31,51]],[[-34,-29,-25,-51,52]]]},{type:"Polygon",properties:{name:"Foča"},id:"BA.",arcs:[[53,-16,-32,-52,-33,-53,-50,54]]},{type:"Polygon",properties:{name:"Trebinje"},id:"BA.",arcs:[[-54,55,-17]]}]}},arcs:[[[3927,5535],[16,-49],[44,-82],[48,-54],[17,-39],[3,-48],[31,-59],[6,-14],[24,-29],[14,-78],[27,-29],[44,-54],[44,-43],[64,-5],[72,-5],[71,-116],[14,-57]],[[4466,4774],[3,-11],[14,-54],[-1,0],[-74,29],[-48,29],[-64,-4],[-8,-19],[-16,-39],[-5,-72],[-2,-26],[0,-73],[0,-48],[27,-54],[0,-43],[0,-39],[28,0],[37,0],[71,-20],[41,-72],[78,-102],[34,-63],[30,-30],[38,-39],[0,-21]],[[4649,4003],[0,-37],[-11,-78],[-37,-48],[-34,-68],[-58,-20],[-88,-19],[-71,0],[-58,-10],[-84,-48],[-61,-39],[-92,-44],[-68,0],[-30,34],[-17,44],[-61,19],[-41,-34],[-115,-34],[-133,0],[-25,-10],[-116,-58]],[[3449,3553],[-81,77],[-125,151],[-405,431],[-285,236],[-37,61],[-21,78],[-10,61],[-19,54],[-106,101],[-83,120],[-126,134],[-72,111],[-28,43],[-40,48],[-45,36],[-112,43],[-21,43],[-12,54],[-33,56],[-26,11],[-66,-5],[-28,2],[-25,15],[-29,23],[-49,51],[-38,65],[-57,144],[-37,67],[-111,123],[-42,63],[-48,158],[-24,114],[-2,56],[7,40],[26,59],[9,31],[7,62],[-1,2]],[[1254,6572],[16,8],[28,13],[64,-9],[31,14],[17,34],[37,54],[61,5],[92,-5],[57,19],[89,10],[84,34],[126,29],[41,53],[57,112],[20,14]],[[2074,6957],[0,-1],[79,-68],[73,-74],[110,-94],[158,-110],[69,-58],[63,0],[40,-11],[29,-47],[33,-68],[48,-89],[91,-32],[48,-5],[59,-58],[102,-79],[132,-73],[121,-74],[77,-31],[41,-79],[58,-42],[59,-16],[15,-94],[3,-115],[0,-1],[37,-47],[70,-16],[238,-41],[0,1]],[[1614,9029],[9,-15],[14,-24],[-1,-29],[-15,-37],[-58,-26],[-121,-42],[-41,-68],[0,-63],[26,-58],[73,-89],[81,-26],[169,-16],[179,-11],[81,-10],[150,-11],[139,-21],[96,-21],[135,-36],[107,-69],[113,-115],[99,-142],[26,-94],[0,-147],[0,-63],[14,-42],[66,5],[22,-42],[11,-152],[0,-184],[-3,-210],[-26,-63],[-25,-73],[-22,-63],[-110,-5],[-143,-11],[-147,58],[-180,68],[-154,47],[-99,0],[-51,-5],[-11,-74],[22,-63],[35,-30]],[[1254,6572],[-7,34],[-27,28],[-54,36],[-46,12],[-29,1],[-9,-11],[1,28],[17,16],[22,14],[15,26],[-1,57],[-17,69],[-63,181],[-13,72],[-17,64],[-30,40],[-54,10],[-93,-43],[-53,7],[-53,58],[20,59],[42,56],[12,48],[21,11],[4,4],[-9,49],[-13,46],[-20,34],[-32,16],[-62,9],[-32,11],[-26,17],[-34,52],[-20,91],[-27,40],[-19,2],[-22,-13],[-21,-5],[-20,20],[-9,32],[-7,38],[-9,35],[-18,20],[-32,2],[-18,-22],[-13,-32],[-19,-23],[-22,-8],[-46,-4],[-25,-8],[-37,-6],[-23,24],[-16,38],[-20,33],[-60,43],[-15,19],[-64,109],[-29,64],[-3,61],[37,51],[53,16],[45,22],[12,64],[-24,70],[-41,66],[-35,74],[-9,92],[8,27],[12,38],[64,112],[10,65],[-31,112],[1,68],[60,158],[11,57],[-9,218],[2,28],[29,80],[27,25],[57,53],[138,23],[245,-7],[59,12],[28,-1],[31,-16],[22,-33],[-1,-32],[-10,-27],[-1,-17],[22,-16],[56,-13],[32,-25],[39,-66],[55,-143],[45,-60],[234,-237],[72,-46],[98,-44],[95,-21],[62,17],[14,52]],[[5167,6663],[23,-54],[27,-84],[50,-54],[53,-66],[9,-67],[-12,-155],[6,-191],[31,-89],[87,-84],[65,-66],[74,13],[43,-9],[0,-53],[22,-85],[16,-57],[49,-31],[44,0],[27,0],[32,-36],[12,-80],[19,-111],[40,0],[74,5],[22,-22],[6,-54],[-6,-35],[28,-40],[0,-36],[31,0],[21,0],[22,-26],[62,-107],[22,-53],[31,0],[30,7]],[[6227,4943],[22,-25],[22,-115],[3,-62],[-12,-36],[-34,-35],[-56,-23],[-81,-62],[-80,-31],[-99,-9],[-31,-40],[-13,-44],[1,-1]],[[5869,4460],[-72,-17],[-81,20],[-9,3],[-71,79],[-13,34],[-27,73],[-9,13],[-16,22],[-78,9],[-124,0],[-80,-22],[-46,-40],[-19,-17],[-99,-14],[-87,31],[-102,63],[-118,30],[-65,-13],[-53,-17],[-65,-9],[-71,44],[-53,31],[-45,11]],[[3927,5535],[25,88],[22,84],[15,105],[-26,142],[-135,178],[-63,100],[-43,120],[-41,126],[-11,163],[-11,220],[18,106],[63,15],[132,-5],[33,-32],[69,-26],[147,-8],[121,0],[92,-5],[80,-58],[66,-115],[52,-47],[43,-58],[92,-5],[161,0],[224,42],[110,-6],[5,4]],[[4822,1885],[-28,34],[-349,242],[-23,15],[-39,49],[-30,71],[-21,75],[-17,39],[-27,26],[-52,34],[-104,102],[-100,158],[-57,184],[48,308],[-41,95],[-79,55],[-248,41],[-149,87],[-57,53]],[[4649,4003],[13,4],[31,8],[56,-5],[5,0],[17,-30],[20,-33],[0,-68],[0,-34],[24,-34],[17,-29],[0,-73],[0,-59],[-7,-7],[-10,-12],[-38,0],[-54,0],[-30,0],[-19,-12],[-5,-2],[-4,-49],[0,-24],[36,-19],[2,-1],[15,1],[39,4],[38,-63],[47,-87],[58,-39],[13,-49],[27,-63],[7,0],[41,-29],[108,-19],[11,-63],[7,-50],[2,-19],[3,-71],[1,-12],[31,-77],[24,-51],[6,-12],[4,-12],[27,-80],[0,-73],[-1,0],[-7,0],[-145,9],[-72,12],[-53,8],[-58,24],[-61,5],[-28,-29],[-6,-63],[7,-23],[27,-84],[6,-2],[58,-13],[78,-92],[5,-14],[29,-93],[-27,-145],[-62,-157],[-80,-118]],[[5869,4460],[21,-34],[25,-105],[3,-11],[2,-8],[20,-93],[18,-50],[44,-44],[82,-19],[14,-3],[17,4],[60,13],[53,-8],[6,0],[18,-19],[65,-65],[1,-1],[37,-102],[2,-55],[1,-25],[28,-22],[71,-27],[56,-41],[9,-7],[9,-3],[25,-6],[30,-4],[7,-1],[13,49],[21,53],[49,-17],[1,0],[59,-27],[71,0],[24,-6],[1,0]],[[6832,3776],[-18,-19],[-3,-3],[-10,-94],[14,-142],[22,-120],[26,-121],[-11,-52],[-88,0]],[[6764,3225],[-253,25],[-224,-10],[-183,0],[-176,10],[-12,-52],[-6,-26],[62,-105],[11,-121],[8,-236],[7,-331],[-29,-42],[-41,-52],[-58,-32],[-41,-63],[-7,-57],[7,-42],[50,-5],[9,-1],[13,-5],[53,-21],[40,-42],[-4,-79],[-3,-60],[-26,-105],[-18,-22],[-26,-31],[-26,-57],[-3,-134],[0,-34],[1,-7],[25,-156],[40,-136],[45,-85],[2,-5],[2,-1],[75,-56],[162,-153],[58,-60],[73,-76],[23,-50],[10,-24],[1,0],[135,-152],[125,-126],[73,-78],[70,-22],[3,-80],[-12,-172]],[[6799,56],[-52,80],[-28,23],[-69,-5],[-140,50],[-84,49],[-448,318],[-139,94],[-60,53],[-110,132],[-62,50],[-90,27],[-28,19],[-80,132],[-6,42],[3,89],[-7,35],[-30,43],[-23,-1],[-21,-19],[-20,-12],[-54,10],[-108,45],[-56,12],[-57,-14],[-34,-39],[-33,-52],[-1,1],[-247,160],[45,-2],[69,-33],[44,-13],[-39,40],[-57,35],[138,30],[72,56],[-8,102],[-1,0],[0,1],[-79,194],[-77,97]],[[7768,8386],[37,-152],[14,-147],[19,-63],[73,-5]],[[7911,8019],[3,-63],[-18,-84],[-69,-47],[-74,-48],[-29,-42],[-4,-84],[26,-73],[99,-100],[139,-168],[40,-37],[52,0],[58,32],[74,131],[47,116],[33,57],[92,21],[92,-21],[18,-57],[3,-184]],[[8493,7368],[1,-32],[-8,-251],[-22,-53],[-66,-58],[-44,-18],[-73,-63],[-66,-42],[-103,-5],[-113,-32],[-33,-89],[-48,-68],[-77,-47],[-58,-11],[-23,-63],[19,-152],[40,-95],[37,-99],[26,-116],[-15,-126],[-55,-110],[-6,-6]],[[7806,5832],[-60,89],[-142,0],[-177,-9],[-53,22],[-24,76],[-72,0],[-55,13],[-13,18],[0,106],[-37,129],[-22,129],[-49,44],[-87,45],[-62,13],[-65,75],[-31,76],[0,66],[-19,71],[-37,27],[-127,-4],[-40,31],[-25,75],[0,76],[0,75],[-3,89],[-22,62],[0,53],[3,71],[0,47]],[[6587,7397],[1,0],[117,-5],[132,31],[15,84],[-15,95],[-70,83],[-113,37],[-107,37],[-128,47],[-106,47],[-114,48],[-106,57],[-40,48],[0,105],[18,63],[103,15],[109,11],[202,0],[103,26],[62,100],[55,163],[37,94],[66,47],[62,27],[161,-8],[88,-27],[0,-84],[0,-41],[0,-1],[29,-36],[70,-6],[62,16],[92,42],[143,-10],[154,-42],[99,-74]],[[7806,5832],[-34,-36],[-33,-68]],[[7739,5728],[-85,-79],[-113,-121],[-92,-57],[-94,-5]],[[7355,5466],[-15,29],[-62,13],[-43,31],[-25,49],[-40,62],[-41,36],[-52,9],[-44,0],[-52,0],[-9,-14],[-28,-35],[-35,-67],[-43,-35],[-50,0],[-65,0],[-30,-27],[-4,-53],[4,-120],[-31,-40],[-72,-40],[-102,-4],[-87,4],[-77,-26],[-19,-71],[0,-98],[-22,-35],[-37,-18],[-28,0],[-31,-31],[7,-36],[5,-6]],[[5167,6663],[83,65],[128,73],[106,63],[92,74],[62,73],[11,89],[0,89],[-14,100],[-63,63],[-88,89],[-54,106],[0,83],[44,105],[91,192]],[[5565,7927],[88,26],[132,-10],[106,-16],[88,-84],[85,-147],[87,-194],[1,0],[51,-89],[70,-11],[117,-5],[197,0]],[[7355,5466],[-27,-1],[-18,-76],[-77,-68],[-77,-63],[-26,-52],[-4,-90],[15,-131],[7,-110],[0,-116],[-22,-47],[-40,-37],[-77,-10],[-69,16],[-107,10],[-33,-21],[8,-73],[7,-84],[70,-126],[33,-63],[69,-6],[110,-5],[81,-42],[106,-47],[127,-98]],[[7411,4126],[-7,-9],[-31,-35],[-21,-53],[-8,-45],[1,-31]],[[7345,3953],[-87,40],[-84,42],[-62,63],[-73,52],[-52,0],[-77,0],[-29,-89],[-11,-152],[-18,-113]],[[6852,3796],[-20,-20]],[[8285,4339],[58,-63],[59,0],[84,-26],[44,-57],[30,-106],[-15,-52],[-81,-16],[-62,-68],[-84,-68],[-114,-53],[-84,-42],[-103,-15],[-135,-21],[-81,-22],[-172,27],[-114,58],[-165,136],[-5,2]],[[7411,4126],[9,-7],[62,-10],[95,-6],[48,47],[44,90],[26,120],[51,69],[114,15],[241,-5],[121,-21],[63,-79]],[[8009,8501],[-5,-13],[-13,-47],[-75,-67],[-63,0],[0,39],[8,74],[-12,50],[-27,23]],[[7822,8560],[-67,5],[-51,12],[-8,78],[-67,68],[-110,62],[-110,0],[-103,40],[-102,78],[-79,96],[-35,40],[-8,118],[4,44]],[[7086,9201],[23,-16],[67,-25],[62,-2],[-5,52],[-12,44],[1,25],[0,8],[37,16],[21,-2],[41,-10],[21,-1],[17,7],[36,22],[17,3],[19,-9],[12,-16],[17,-48],[15,-30],[18,-24],[20,-10],[25,13],[7,18],[6,22],[7,22],[13,14],[18,2],[15,-10],[13,-16],[95,-199],[31,-38],[30,-13],[72,-7],[17,-7],[11,-10],[7,-15],[7,-23],[2,-7],[0,-20],[1,-11],[6,-10],[13,-18],[4,-13],[-8,-36],[-56,-43],[-18,-36],[27,-105],[89,-96],[62,-42]],[[7009,9267],[-21,-48],[-16,-84],[-63,-34],[-87,-34],[-71,-28],[-19,-51],[-20,-45],[-12,-34],[-55,0],[-82,0],[-55,11],[-64,113],[-55,62],[-47,40],[-47,5],[-32,51],[-39,101],[-4,20],[0,2]],[[6220,9314],[25,-1],[55,12],[45,28],[17,39],[2,46],[6,46],[28,35],[63,14],[62,-25],[116,-85],[38,-17],[181,-16],[49,-22],[44,-38],[58,-63]],[[7009,9267],[37,-40],[40,-26]],[[7822,8560],[-54,-174]],[[5565,7927],[-183,-51],[-95,50],[-61,124],[-84,230],[-2,217],[28,125],[76,74],[1,182],[-53,165],[-7,177],[66,142]],[[5251,9362],[82,-106],[46,-43],[52,-21],[25,3],[76,32],[70,13],[22,13],[42,40],[156,190],[38,20],[40,0],[41,-22],[142,-130],[56,-27],[50,-10],[31,0]],[[1614,9029],[28,104],[52,99],[12,30],[5,43],[-5,24],[0,21],[19,34],[23,17],[68,21],[27,21],[35,55],[84,189],[121,84],[148,-6],[511,-154],[65,9],[32,29],[4,27],[-2,31],[15,44],[25,26],[29,12],[25,18],[15,41],[20,13],[27,31],[21,30],[7,17],[71,60],[21,-21],[21,-77],[3,-29],[-1,-32],[14,-20],[53,6],[-6,25],[-11,25],[38,-14],[31,-39],[27,-19],[25,47],[9,-28],[4,-22],[-2,-22],[-11,-31],[15,13],[41,27],[15,13],[50,-110],[110,-84],[67,-32],[160,-75],[27,16],[122,9],[11,17],[49,109],[100,-67],[48,-20],[84,-56],[24,-21],[35,-20],[47,5],[86,28],[5,12],[7,23],[11,15],[20,-13],[15,-25],[3,-21],[-8,-20],[-18,-23],[32,-11],[31,5],[61,33],[-24,-76],[-13,-24],[19,7],[129,17],[56,-6],[28,4],[53,34],[94,101],[56,30],[85,-5],[76,-44],[69,-69],[62,-82]],[[8009,8501],[42,-28],[80,-27],[218,6]],[[8349,8452],[1,-71],[-39,-29],[-58,-27],[-39,-63],[-33,-100],[-59,-45],[-127,-11],[-39,-28],[-45,-59]],[[8874,7261],[-29,61],[-55,74],[-81,58],[-41,12],[-63,-23],[-71,-51],[-41,-24]],[[8349,8452],[77,2],[28,8],[82,26],[53,8],[41,15],[230,170],[32,8],[16,-22],[10,-30],[13,-18],[25,0],[46,20],[25,5],[114,-25],[23,4],[21,11],[23,0],[51,-51],[26,-9],[26,3],[7,4],[0,4],[10,-12],[15,-17],[15,-15],[11,-21],[7,-30],[2,-38],[-9,-10],[-13,-3],[-11,-17],[-90,-443],[-27,-68],[-24,-38],[-52,-44],[-27,-30],[-20,-34],[-36,-110],[-121,-210],[-12,-12],[-27,-17],[-13,-16],[-5,-25],[2,-59],[-5,-26],[-14,-29]],[[8874,7261],[-17,-25],[-20,-17],[-91,-31],[-6,-58],[41,-163],[-5,-100],[-31,-54],[-35,-46],[-22,-77],[5,-70],[19,-73],[57,-126],[47,-58],[51,-24],[110,-25],[53,-27],[23,-8],[36,-2],[83,21],[29,-6],[43,-37],[45,-67],[31,-79],[6,-74],[16,-47],[48,-52],[112,-86],[27,-28],[18,-10],[15,4],[29,30],[16,1],[21,-29],[6,-66],[16,-23],[40,-38],[46,-70],[15,-23],[83,-50],[42,-53],[24,-20],[9,10],[16,22],[23,9],[32,-30],[19,-69],[-22,-60],[-43,-50],[-106,-82],[-60,-22],[-63,-6],[-146,15],[-136,-10],[-38,-12],[-37,-2],[-33,22],[-67,64],[-65,47],[-33,13],[-38,-2],[-53,-18],[-22,-20],[-14,-35],[1,-26],[12,-47],[-6,-26],[-29,-29],[30,-20]],[[9031,5111],[-41,-113]],[[8990,4998],[-126,150],[-124,134],[-312,178],[-249,164],[-218,59],[-222,45]],[[7345,3953],[-78,-72],[-99,-12],[-117,0],[-99,-95],[-100,22]],[[8990,4998],[-22,-59],[21,-193],[-10,-134],[52,-149],[-52,-89],[-115,15],[-83,59],[-187,45],[-176,-60],[-133,-94]],[[7553,2473],[-81,56],[-114,74],[-208,194],[-145,-30],[-104,74],[-83,-44],[-73,89],[41,164],[-22,175]],[[9031,5111],[88,-70],[78,-104],[137,-230],[262,-294],[52,-120],[61,-204],[4,-97],[-65,-67],[-11,-44],[-5,-53],[3,-51],[13,-39],[18,-18],[7,-17],[-5,-15],[-20,-13],[-97,40],[-31,-2],[-32,-81],[-22,-31],[-20,33],[-22,62],[-36,70],[-44,58],[-43,27],[-27,-9],[-60,-49],[-30,-17],[-30,-2],[-65,11],[-28,-8],[-36,-61],[-24,-82],[-30,-62],[-57,0],[-122,20],[-64,-8],[-69,-85],[-50,-21],[-55,-2],[-43,16],[-33,44],[-28,54],[-36,37],[-58,-6],[-38,-29],[-61,-71],[-47,-25],[-25,-18],[-15,-30],[2,-31],[24,-19],[40,-11],[18,-13],[34,-55],[-1,-24],[-11,-30],[0,-19],[56,15],[18,-14],[89,-122],[76,-221],[77,-154],[-18,-16],[-68,-4],[-29,-17],[-6,-8],[-14,-20],[-16,-32],[-20,-31],[-27,-25],[-7,18],[-2,4],[-52,70],[-23,42],[-6,30],[2,27],[-2,25],[-18,26],[-69,51],[-62,18],[-153,-15],[-47,-23],[9,-15],[15,-34],[8,-14],[-68,-23],[-327,-251],[-39,-60]],[[7553,2473],[62,-32],[-110,-163],[-42,-93],[-20,-111],[-2,-7],[2,-96],[46,-279],[-105,15],[-152,-2],[-143,-34],[-78,-78],[-49,-144],[1,-63],[26,-74],[61,-129],[14,-70],[-19,-36],[-32,-26],[-25,-41],[2,-64],[24,-88],[35,-88],[89,-153],[52,-57],[44,-60],[27,-101],[-2,-107],[-17,-45],[-11,-30],[-54,-56],[-27,-17],[-52,-32],[18,-36],[6,-33],[-10,-23],[-26,-4],[-29,20],[-30,3],[-29,-13],[-26,-26],[-42,16],[-92,11],[-37,26],[-2,3]]],transform:{scale:[.00039032011931192475,.00027255842454245295],translate:[15.716073852000108,42.559212138000106]}},m.prototype.bjnTopo="__BJN__",m.prototype.blmTopo="__BLM__",m.prototype.blrTopo="__BLR__",m.prototype.blzTopo="__BLZ__",m.prototype.bmuTopo="__BMU__",m.prototype.bolTopo="__BOL__",m.prototype.braTopo="__BRA__",m.prototype.brbTopo="__BRB__",m.prototype.brnTopo="__BRN__",m.prototype.btnTopo="__BTN__",m.prototype.norTopo="__NOR__",m.prototype.bwaTopo="__BWA__",m.prototype.cafTopo="__CAF__",m.prototype.canTopo="__CAN__",m.prototype.cheTopo="__CHE__",m.prototype.chlTopo="__CHL__",m.prototype.chnTopo="__CHN__",m.prototype.civTopo="__CIV__",m.prototype.clpTopo="__CLP__",m.prototype.cmrTopo="__CMR__",m.prototype.codTopo="__COD__",m.prototype.cogTopo="__COG__",m.prototype.cokTopo="__COK__",m.prototype.colTopo="__COL__",m.prototype.comTopo="__COM__",m.prototype.cpvTopo="__CPV__",m.prototype.criTopo="__CRI__",m.prototype.csiTopo="__CSI__",m.prototype.cubTopo="__CUB__",m.prototype.cuwTopo="__CUW__",m.prototype.cymTopo="__CYM__",m.prototype.cynTopo="__CYN__",m.prototype.cypTopo="__CYP__",m.prototype.czeTopo="__CZE__",m.prototype.deuTopo="__DEU__",m.prototype.djiTopo="__DJI__",m.prototype.dmaTopo="__DMA__",m.prototype.dnkTopo="__DNK__",m.prototype.domTopo="__DOM__",m.prototype.dzaTopo="__DZA__",m.prototype.ecuTopo="__ECU__",m.prototype.egyTopo="__EGY__",m.prototype.eriTopo="__ERI__",m.prototype.esbTopo="__ESB__",m.prototype.espTopo="__ESP__",m.prototype.estTopo="__EST__",m.prototype.ethTopo="__ETH__",m.prototype.finTopo="__FIN__",m.prototype.fjiTopo="__FJI__",m.prototype.flkTopo="__FLK__",m.prototype.fraTopo="__FRA__",m.prototype.froTopo="__FRO__",m.prototype.fsmTopo="__FSM__",m.prototype.gabTopo="__GAB__",m.prototype.psxTopo="__PSX__",m.prototype.gbrTopo="__GBR__",m.prototype.geoTopo="__GEO__",m.prototype.ggyTopo="__GGY__",m.prototype.ghaTopo="__GHA__",m.prototype.gibTopo="__GIB__",m.prototype.ginTopo="__GIN__",m.prototype.gmbTopo="__GMB__",m.prototype.gnbTopo="__GNB__",m.prototype.gnqTopo="__GNQ__",m.prototype.grcTopo="__GRC__",m.prototype.grdTopo="__GRD__",m.prototype.grlTopo="__GRL__",m.prototype.gtmTopo="__GTM__",m.prototype.gumTopo="__GUM__",m.prototype.guyTopo="__GUY__",m.prototype.hkgTopo="__HKG__",m.prototype.hmdTopo="__HMD__",m.prototype.hndTopo="__HND__",m.prototype.hrvTopo="__HRV__",m.prototype.htiTopo="__HTI__",m.prototype.hunTopo="__HUN__",m.prototype.idnTopo="__IDN__",m.prototype.imnTopo="__IMN__",m.prototype.indTopo="__IND__",m.prototype.ioaTopo="__IOA__",m.prototype.iotTopo="__IOT__",m.prototype.irlTopo="__IRL__",m.prototype.irnTopo="__IRN__",m.prototype.irqTopo="__IRQ__",m.prototype.islTopo="__ISL__",m.prototype.isrTopo="__ISR__",m.prototype.itaTopo="__ITA__",m.prototype.jamTopo="__JAM__",m.prototype.jeyTopo="__JEY__",m.prototype.jorTopo="__JOR__",m.prototype.jpnTopo="__JPN__",m.prototype.kabTopo="__KAB__",m.prototype.kasTopo="__KAS__",m.prototype.kazTopo="__KAZ__",m.prototype.kenTopo="__KEN__",m.prototype.kgzTopo="__KGZ__",m.prototype.khmTopo="__KHM__",m.prototype.kirTopo="__KIR__",m.prototype.knaTopo="__KNA__",m.prototype.korTopo="__KOR__",m.prototype.kosTopo="__KOS__",m.prototype.kwtTopo="__KWT__",m.prototype.laoTopo="__LAO__",m.prototype.lbnTopo="__LBN__",m.prototype.lbrTopo="__LBR__",m.prototype.lbyTopo="__LBY__",m.prototype.lcaTopo="__LCA__",m.prototype.lieTopo="__LIE__",m.prototype.lkaTopo="__LKA__",m.prototype.lsoTopo="__LSO__",m.prototype.ltuTopo="__LTU__",m.prototype.luxTopo="__LUX__",m.prototype.lvaTopo="__LVA__",m.prototype.macTopo="__MAC__",m.prototype.mafTopo="__MAF__",m.prototype.marTopo="__MAR__",m.prototype.mcoTopo="__MCO__",m.prototype.mdaTopo="__MDA__",m.prototype.mdgTopo="__MDG__",m.prototype.mdvTopo="__MDV__",m.prototype.mexTopo="__MEX__",m.prototype.mhlTopo="__MHL__",m.prototype.mkdTopo="__MKD__",m.prototype.mliTopo="__MLI__",m.prototype.mltTopo="__MLT__",m.prototype.mmrTopo="__MMR__",m.prototype.mneTopo="__MNE__",m.prototype.mngTopo="__MNG__",m.prototype.mnpTopo="__MNP__",m.prototype.mozTopo="__MOZ__",m.prototype.mrtTopo="__MRT__",m.prototype.msrTopo="__MSR__",m.prototype.musTopo="__MUS__",m.prototype.mwiTopo="__MWI__",m.prototype.mysTopo="__MYS__",
m.prototype.namTopo="__NAM__",m.prototype.nclTopo="__NCL__",m.prototype.nerTopo="__NER__",m.prototype.nfkTopo="__NFK__",m.prototype.ngaTopo="__NGA__",m.prototype.nicTopo="__NIC__",m.prototype.niuTopo="__NIU__",m.prototype.nldTopo="__NLD__",m.prototype.nplTopo="__NPL__",m.prototype.nruTopo="__NRU__",m.prototype.nulTopo="__NUL__",m.prototype.nzlTopo="__NZL__",m.prototype.omnTopo="__OMN__",m.prototype.pakTopo="__PAK__",m.prototype.panTopo="__PAN__",m.prototype.pcnTopo="__PCN__",m.prototype.perTopo="__PER__",m.prototype.pgaTopo="__PGA__",m.prototype.phlTopo="__PHL__",m.prototype.plwTopo="__PLW__",m.prototype.pngTopo="__PNG__",m.prototype.polTopo="__POL__",m.prototype.priTopo="__PRI__",m.prototype.prkTopo="__PRK__",m.prototype.prtTopo="__PRT__",m.prototype.pryTopo="__PRY__",m.prototype.pyfTopo="__PYF__",m.prototype.qatTopo="__QAT__",m.prototype.rouTopo="__ROU__",m.prototype.rusTopo="__RUS__",m.prototype.rwaTopo="__RWA__",m.prototype.sahTopo="__SAH__",m.prototype.sauTopo="__SAU__",m.prototype.scrTopo="__SCR__",m.prototype.sdnTopo="__SDN__",m.prototype.sdsTopo="__SDS__",m.prototype.senTopo="__SEN__",m.prototype.serTopo="__SER__",m.prototype.sgpTopo="__SGP__",m.prototype.sgsTopo="__SGS__",m.prototype.shnTopo="__SHN__",m.prototype.slbTopo="__SLB__",m.prototype.sleTopo="__SLE__",m.prototype.slvTopo="__SLV__",m.prototype.smrTopo="__SMR__",m.prototype.solTopo="__SOL__",m.prototype.somTopo="__SOM__",m.prototype.spmTopo="__SPM__",m.prototype.srbTopo="__SRB__",m.prototype.stpTopo="__STP__",m.prototype.surTopo="__SUR__",m.prototype.svkTopo="__SVK__",m.prototype.svnTopo="__SVN__",m.prototype.sweTopo="__SWE__",m.prototype.swzTopo="__SWZ__",m.prototype.sxmTopo="__SXM__",m.prototype.sycTopo="__SYC__",m.prototype.syrTopo="__SYR__",m.prototype.tcaTopo="__TCA__",m.prototype.tcdTopo="__TCD__",m.prototype.tgoTopo="__TGO__",m.prototype.thaTopo="__THA__",m.prototype.tjkTopo="__TJK__",m.prototype.tkmTopo="__TKM__",m.prototype.tlsTopo="__TLS__",m.prototype.tonTopo="__TON__",m.prototype.ttoTopo="__TTO__",m.prototype.tunTopo="__TUN__",m.prototype.turTopo="__TUR__",m.prototype.tuvTopo="__TUV__",m.prototype.twnTopo="__TWN__",m.prototype.tzaTopo="__TZA__",m.prototype.ugaTopo="__UGA__",m.prototype.ukrTopo="__UKR__",m.prototype.umiTopo="__UMI__",m.prototype.uryTopo="__URY__",m.prototype.usaTopo="__USA__",m.prototype.usgTopo="__USG__",m.prototype.uzbTopo="__UZB__",m.prototype.vatTopo="__VAT__",m.prototype.vctTopo="__VCT__",m.prototype.venTopo="__VEN__",m.prototype.vgbTopo="__VGB__",m.prototype.virTopo="__VIR__",m.prototype.vnmTopo="__VNM__",m.prototype.vutTopo="__VUT__",m.prototype.wlfTopo="__WLF__",m.prototype.wsbTopo="__WSB__",m.prototype.wsmTopo="__WSM__",m.prototype.yemTopo="__YEM__",m.prototype.zafTopo="__ZAF__",m.prototype.zmbTopo="__ZMB__",m.prototype.zweTopo="__ZWE__",m.prototype.latLngToXY=function(a,b){return this.projection([b,a])},m.prototype.addLayer=function(a,b,c){var d;return d=c?this.svg.insert("g",":first-child"):this.svg.append("g"),d.attr("id",b||"").attr("class",a||"")},m.prototype.updateChoropleth=function(a){var b=this.svg;for(var c in a)if(a.hasOwnProperty(c)){var d,e=a[c];if(!c)continue;if(d="string"==typeof e?e:"string"==typeof e.color?e.color:this.options.fills[e.fillKey],e===Object(e)){this.options.data[c]=l(e,this.options.data[c]||{});this.svg.select("."+c).attr("data-info",JSON.stringify(this.options.data[c]))}b.selectAll("."+c).transition().style("fill",d)}},m.prototype.updatePopup=function(a,b,c){var d=this;a.on("mousemove",null),a.on("mousemove",function(){var e=n.mouse(d.options.element);n.select(d.svg[0][0].parentNode).select(".datamaps-hoverover").style("top",e[1]+30+"px").html(function(){var d=JSON.parse(a.attr("data-info"));try{return c.popupTemplate(b,d)}catch(e){return""}}).style("left",e[0]+"px")}),n.select(d.svg[0][0].parentNode).select(".datamaps-hoverover").style("display","block")},m.prototype.addPlugin=function(a,b){var c=this;"undefined"==typeof m.prototype[a]&&(m.prototype[a]=function(d,e,f,g){var h;"undefined"==typeof g&&(g=!1),"function"==typeof e&&(f=e,e=void 0),e=l(e||{},c.options[a+"Config"]),!g&&this.options[a+"Layer"]?(h=this.options[a+"Layer"],e=e||this.options[a+"Options"]):(h=this.addLayer(a),this.options[a+"Layer"]=h,this.options[a+"Options"]=e),b.apply(this,[h,d,e]),f&&f(h)})},"object"==typeof exports?(n=require("d3"),o=require("topojson"),module.exports=m):"function"==typeof define&&define.amd?define("datamaps",["require","d3","topojson"],function(a){return n=a("d3"),o=a("topojson"),m}):window.Datamap=window.Datamaps=m,window.jQuery&&(window.jQuery.fn.datamaps=function(a,b){a=a||{},a.element=this[0];var c=new m(a);return"function"==typeof b&&b(c,a),this})}();