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

1 line
31 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="__BIH__",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={type:"Topology",objects:{hkg:{type:"GeometryCollection",geometries:[{type:"Polygon",properties:{name:"Central and Western"},id:"HK.",arcs:[[0,1,2]]},{type:"Polygon",properties:{name:"Wan Chai"},id:"HK.",arcs:[[3,-1,4,5]]},{type:"Polygon",properties:{name:"Eastern"},id:"HK.",arcs:[[6,-6,7]]},{type:"MultiPolygon",properties:{name:"Southern"},id:"HK.",arcs:[[[8]],[[-4,-7,9,-2]]]},{type:"Polygon",properties:{name:"Yau Tsim Mong"},id:"HK.",arcs:[[10,11,12]]},{type:"Polygon",properties:{name:"Kowloon City"},id:"HK.",arcs:[[13,14,-13,15,16,17]]},{type:"MultiPolygon",properties:{name:"Sham Shui Po"},id:"HK.",arcs:[[[18,19]],[[-12,20,21,22,-16]]]},{type:"Polygon",properties:{name:"Wong Tai Sin"},id:"HK.",arcs:[[23,-18,24,25]]},{type:"Polygon",properties:{name:"Kwun Tong"},id:"HK.",arcs:[[26,27,-14,-24]]},{type:"MultiPolygon",properties:{name:"Sai Kung"},id:"HK.",arcs:[[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[-27,-26,36,37,38]]]},{type:"Polygon",properties:{name:"Sha Tin"},id:"HK.",arcs:[[39,-37,-25,-17,-23,40,41,42,43]]},{type:"MultiPolygon",properties:{name:"Kwai Tsing"},id:"HK.",arcs:[[[-20,44]],[[45]],[[-22,46,47,-41]]]},{type:"MultiPolygon",properties:{name:"Tsuen Wan"},id:"HK.",arcs:[[[48,49]],[[50]],[[-48,51,52,53,54,-42]]]},{type:"MultiPolygon",properties:{name:"Tuen Mun"},id:"HK.",arcs:[[[55]],[[-53,56,57]]]},{type:"Polygon",properties:{name:"Yuen Long"},id:"HK.",arcs:[[58,-54,-58,59,60]]},{type:"MultiPolygon",properties:{name:"North"},id:"HK.",arcs:[[[61]],[[62]],[[63]],[[64,-61,65]]]},{type:"MultiPolygon",properties:{name:"Tai Po"},id:"HK.",arcs:[[[-38,-40,66]],[[67]],[[-43,-55,-59,-65,68]]]},{type:"MultiPolygon",properties:{name:"Islands"},id:"HK.",arcs:[[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80,-49]],[[81]]]}]}},arcs:[[[5509,3048],[-54,-516]],[[5455,2532],[-214,-21],[-222,229],[-158,114],[-244,2]],[[4617,2856],[14,154],[38,38],[81,57],[144,96],[168,76],[182,-76],[120,-96],[145,-57]],[[5896,2560],[-262,-11],[-179,-17]],[[5509,3048],[221,0]],[[5730,3048],[126,-98],[144,-39],[-39,-152],[-65,-199]],[[6948,2304],[-346,207],[-497,57],[-209,-8]],[[5730,3048],[156,191],[144,114],[161,-88],[155,-64],[103,-153],[107,38],[130,-76],[131,-323],[131,-135],[0,-248]],[[5352,1885],[-70,-19],[-130,135],[-38,115],[0,17],[238,-75],[0,-173]],[[6948,2304],[-104,-171],[63,-229],[79,-208],[-79,-39],[119,-459],[-209,-57],[-54,96],[-129,153],[-2,257],[-53,283],[-115,128],[-98,-110],[98,-44],[0,-190],[-66,-18],[-117,-192],[117,-248],[-52,-172],[65,-173],[-198,-56],[-27,382],[55,57],[-47,118],[-176,-118],[-78,59],[78,131],[-117,95],[77,154],[-38,133],[-146,38],[19,208],[-213,-189],[-65,-133],[-40,0],[-38,133],[-27,173],[-148,113],[-272,18],[-116,77],[-68,192],[-24,113],[-80,191],[-105,56]],[[5690,3334],[-78,-57],[-77,133],[16,276],[-42,124],[-14,114],[-90,0],[0,172]],[[5405,4096],[265,19]],[[5670,4115],[-10,-212],[39,-248],[-9,-321]],[[6171,4396],[52,-265],[58,-321]],[[6281,3810],[52,-229],[-39,0],[-286,417],[-150,-232],[82,-166],[0,-75],[-130,75],[-34,-184],[-86,-82]],[[5670,4115],[16,321],[-105,210]],[[5581,4646],[262,78]],[[5843,4724],[131,-364],[197,36]],[[5066,3971],[35,-28],[66,19],[25,-76],[-91,-76],[-78,76]],[[5023,3886],[43,85]],[[5405,4096],[-123,153],[-109,85]],[[5173,4334],[44,166],[187,75]],[[5404,4575],[177,71]],[[6655,4360],[-484,36]],[[5843,4724],[629,189]],[[6472,4913],[183,-553]],[[6655,4360],[131,-324],[-92,-457],[119,-364]],[[6813,3215],[-76,-110],[-181,248],[-275,457]],[[7694,2439],[0,-154],[43,-133],[-56,-132],[-116,-116],[-52,134],[-64,20],[26,267],[0,-21],[219,135]],[[8600,2687],[-55,-135],[-38,98],[38,150],[55,-113]],[[7301,2971],[-129,-152],[13,229],[116,-77]],[[8940,3678],[-26,0],[-80,189],[40,135],[66,-173],[0,-151]],[[8639,3867],[-94,-75],[107,304],[50,0],[-63,-229]],[[8286,4190],[-197,-57],[-53,307],[120,76],[90,-57],[40,-269]],[[7694,5069],[0,-324],[-105,113],[-12,287],[0,95],[64,56],[53,-227]],[[8246,4592],[-354,0],[-39,78],[-12,323],[-26,152],[129,267],[92,0],[53,-419],[157,-211],[0,-190]],[[6472,4913],[248,533],[223,439]],[[6943,5885],[510,114],[301,248],[315,210],[248,-191],[288,-191],[236,210],[-26,515],[77,325]],[[8892,7125],[48,-153],[260,-19],[235,-76],[-39,-188],[65,-383],[-201,126],[-127,28],[-193,-515],[80,63],[167,-322],[80,-523],[-53,-18],[-14,121],[-157,11],[52,-208],[-65,-211],[-90,-113],[-157,-75],[-55,-326],[-89,172],[0,304],[-173,-150],[-49,169],[-105,173],[26,380],[-234,133],[-30,211],[-143,-138],[-168,-53],[-236,229],[-134,0],[-156,-306],[78,-362],[108,-210],[-56,-170],[-156,189],[-13,248],[-134,-94],[-48,-151],[172,-234],[113,-626],[78,-37],[236,-64],[14,-279],[65,0],[133,38],[130,-230],[-100,-160],[-134,-125],[-120,57],[-26,-19],[12,-134],[-2,-190],[176,76],[52,-191],[0,-172],[-108,-95],[-130,154],[-179,143],[25,218],[-108,401],[-143,151],[13,192],[13,151],[-182,155],[-68,-420],[26,-229],[-161,-234]],[[6948,6745],[8,-441],[-13,-419]],[[5404,4575],[-84,300],[-66,305]],[[5254,5180],[380,724],[-40,526]],[[5594,6430],[184,7],[394,165]],[[6172,6602],[109,-104],[-30,-192],[82,-94],[-92,-250],[105,41],[131,359],[181,237],[67,260],[94,4],[129,-118]],[[5023,3886],[-116,38],[-13,19],[89,96],[83,-68]],[[4488,4190],[-265,-94],[-37,420],[-130,249],[0,150],[104,78],[142,-78],[147,-57],[52,-151],[52,-172],[-65,-345]],[[5173,4334],[-126,98],[-232,152],[-13,-125],[-171,380],[-15,122]],[[4616,4961],[298,66],[137,82],[-72,318],[131,77],[144,-324]],[[3240,3947],[-584,-8]],[[2656,3939],[65,157],[299,324],[53,-171],[391,421],[92,-86],[93,-144],[-52,-191],[-26,-210],[-68,79],[-131,34],[-116,0],[-16,-205]],[[3765,4516],[-90,0],[-26,191],[52,113],[131,-75],[-52,-75],[-15,-154]],[[4616,4961],[-25,202],[-103,95],[-123,-167],[-309,72],[-14,-75],[-132,0],[-53,-95],[-156,57],[-130,-57],[-173,-97],[-325,-114]],[[3073,4782],[165,321],[-144,210],[236,248]],[[3330,5561],[615,305],[707,286],[380,133]],[[5032,6285],[274,133],[288,12]],[[782,5487],[-68,-229],[-64,343],[132,-114]],[[3073,4782],[-93,76],[0,135],[-274,0],[-113,124],[-155,66],[-99,304],[-65,19],[-38,173],[-105,-156],[172,-211],[-330,-54],[-170,-189],[-237,171],[-79,0],[-194,172],[65,286],[-129,264],[-228,247],[209,240],[356,30],[173,170]],[[1739,6649],[334,-250],[458,-305],[786,0],[13,-533]],[[5071,7657],[-236,-400],[197,-972]],[[1739,6649],[220,554],[393,229],[354,726],[105,0],[131,-60],[-16,-148],[-10,-175],[64,57],[198,74],[52,0],[26,97],[-14,133],[0,191],[196,135],[263,94],[64,95],[67,173],[130,57],[80,38],[118,78]],[[4160,8997],[99,-82],[92,-610],[92,-591],[484,77],[144,-134]],[[8048,8881],[-78,-131],[-207,-156],[-108,156],[82,74],[78,-38],[90,287],[143,-192]],[[9999,9509],[-182,0],[52,191],[39,-76],[91,-115]],[[7577,9814],[146,-151],[182,95],[131,-57],[-209,-95],[-90,0],[-56,0],[94,-308],[-198,136],[-50,153],[50,227]],[[8312,8729],[-309,-328],[-288,-191],[-249,76],[-392,-57],[-367,-19],[-157,210],[-222,19],[-249,-172],[-288,-210],[-92,58],[-196,-58],[-26,-190],[-406,-210]],[[4160,8997],[-49,157],[152,123],[285,0],[93,-136],[52,-31],[198,258],[156,30],[177,-30],[87,336],[135,212],[189,83],[165,-189],[282,0],[350,-27],[153,17],[81,9],[-125,-222],[-85,-137],[-123,-170],[-82,0],[-10,-264],[144,57],[13,93],[196,76],[66,97],[129,324],[66,19],[52,-76],[93,76],[51,-76],[-73,-205],[99,33],[108,-136],[-8,-166],[82,-70],[134,104],[30,-93],[0,-154],[-36,-197],[126,-12],[68,-146],[156,-102],[471,189],[104,78]],[[6948,6745],[263,0],[37,-127],[-37,-234],[90,-154],[66,249],[210,151],[-210,439],[210,228],[212,78],[-14,208],[385,367],[22,-118],[95,-27],[-95,-241],[179,-61],[39,-376],[-88,-155],[77,-206],[90,149],[81,-361],[79,19],[-12,423],[139,493],[134,-151],[-8,-213]],[[8859,7813],[-105,-211],[-102,363],[88,152],[81,-19],[38,-285]],[[8312,8729],[39,-135],[-315,-343],[-183,-229],[-198,-116],[-221,-131],[-197,-192],[-78,-170],[-173,-154],[-131,0],[-247,440],[-236,-59],[-91,78],[-40,-116],[27,-208],[78,-56],[26,-172],[-121,37],[-10,113],[-119,97],[-195,-38],[-66,-116],[-322,-90],[151,-119],[185,-173],[213,-194],[84,-81]],[[1107,94],[-104,0],[41,113],[185,76],[0,-189],[-122,0]],[[7159,190],[-133,-190],[-92,190],[92,227],[172,172],[51,-172],[0,-173],[-90,-54]],[[1229,589],[0,-56],[-122,56],[0,191],[122,-191]],[[6907,552],[-104,-39],[0,211],[0,18],[93,0],[90,38],[40,-113],[-78,-115],[-41,0]],[[2573,911],[-27,-131],[-78,38],[-116,131],[104,135],[66,0],[51,-173]],[[3100,1275],[78,-38],[130,0],[-52,-228],[-78,75],[-184,-173],[-14,154],[120,114],[0,96]],[[4699,1644],[139,-206],[119,66],[0,-151],[-119,-116],[209,20],[193,0],[83,-59],[-194,-183],[-67,-123],[105,-303],[-133,2],[-445,-41],[54,211],[0,743],[-165,-4],[35,157],[6,327],[111,-60],[69,-280]],[[3450,2116],[-78,0],[-116,209],[-183,133],[53,19],[312,0],[12,-361]],[[3532,2496],[-82,0],[40,132],[81,0],[26,-19],[-65,-113]],[[3962,3067],[-64,0],[0,134],[38,0],[41,-38],[-15,-96]],[[3412,3334],[-40,-133],[78,0],[0,-96],[-142,-57],[0,229],[12,0],[92,57]],[[3240,3947],[-14,-175],[-284,57],[0,-324],[158,94],[-76,-314],[22,-598],[-247,0],[-148,78],[200,-383],[-249,-266],[378,-345],[-248,-267],[-306,-193],[-22,173],[0,536],[-194,0],[-159,0],[-234,0],[-289,-324],[-116,0],[-54,-117],[170,-56],[0,-150],[-156,-141],[-216,-24],[-204,276],[-26,173],[-144,-59],[-172,-169],[-244,-285],[-213,-105],[-122,190],[-21,319],[-10,261],[31,136],[168,0],[0,242],[127,46],[0,153],[-103,110],[0,1],[8,8],[147,155],[119,135],[11,42],[154,38],[120,173],[144,326],[315,0],[171,-21],[116,-171],[172,95],[390,304],[249,-76],[117,268],[146,37],[54,129]],[[1765,4096],[-52,-229],[-56,-75],[-39,-230],[-38,-188],[-26,0],[0,207],[-105,248],[0,38],[0,19],[105,57],[52,153],[51,-94],[108,94]]],transform:{scale:[5960882548253481e-20,4094191979197885e-20],translate:[113.83733157600014,22.154567776000064]}},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})}();