(function(a){var b={set:{colors:1,values:1,backgroundColor:1,scaleColors:1,normalizeFunction:1,focus:1},get:{selectedRegions:1,selectedMarkers:1,mapObject:1,regionName:1}};a.fn.vectorMap=function(d){var f,c,e,f=this.children(".jvectormap-container").data("mapObject");if(d==="addMap"){jvm.WorldMap.maps[arguments[1]]=arguments[2]}else{if((d==="set"||d==="get")&&b[d][arguments[1]]){c=arguments[1].charAt(0).toUpperCase()+arguments[1].substr(1);return f[d+c].apply(f,Array.prototype.slice.call(arguments,2))}else{d=d||{};d.container=this;f=new jvm.WorldMap(d)}}return this}})(jQuery);var jvm={inherits:function(c,b){function a(){}a.prototype=b.prototype;c.prototype=new a();c.prototype.constructor=c;c.parentClass=b},mixin:function(b,a){var c;for(c in a.prototype){if(a.prototype.hasOwnProperty(c)){b.prototype[c]=a.prototype[c]}}},min:function(a){var c=Number.MAX_VALUE,b;if(a instanceof Array){for(b=0;b<a.length;b++){if(a[b]<c){c=a[b]}}}else{for(b in a){if(a[b]<c){c=a[b]}}}return c},max:function(b){var a=Number.MIN_VALUE,c;if(b instanceof Array){for(c=0;c<b.length;c++){if(b[c]>a){a=b[c]}}}else{for(c in b){if(b[c]>a){a=b[c]}}}return a},keys:function(a){var c=[],b;for(b in a){c.push(b)}return c},values:function(b){var a=[],d,c;for(c=0;c<arguments.length;c++){b=arguments[c];for(d in b){a.push(b[d])}}return a}};jvm.$=jQuery;jvm.AbstractElement=function(b,a){this.node=this.createElement(b);this.name=b;this.properties={};if(a){this.set(a)}};jvm.AbstractElement.prototype.set=function(c,b){var a;if(typeof c==="object"){for(a in c){this.properties[a]=c[a];this.applyAttr(a,c[a])}}else{this.properties[c]=b;this.applyAttr(c,b)}};jvm.AbstractElement.prototype.get=function(a){return this.properties[a]};jvm.AbstractElement.prototype.applyAttr=function(b,a){this.node.setAttribute(b,a)};jvm.AbstractElement.prototype.remove=function(){jvm.$(this.node).remove()};jvm.AbstractCanvasElement=function(b,c,a){this.container=b;this.setSize(c,a);this.rootElement=new jvm[this.classPrefix+"GroupElement"]();this.node.appendChild(this.rootElement.node);this.container.appendChild(this.node)};jvm.AbstractCanvasElement.prototype.add=function(a,b){b=b||this.rootElement;b.add(a);a.canvas=this};jvm.AbstractCanvasElement.prototype.addPath=function(a,c,d){var b=new jvm[this.classPrefix+"PathElement"](a,c);this.add(b,d);return b};jvm.AbstractCanvasElement.prototype.addCircle=function(a,c,d){var b=new jvm[this.classPrefix+"CircleElement"](a,c);this.add(b,d);return b};jvm.AbstractCanvasElement.prototype.addGroup=function(b){var a=new jvm[this.classPrefix+"GroupElement"]();if(b){b.node.appendChild(a.node)}else{this.node.appendChild(a.node)}a.canvas=this;return a};jvm.AbstractShapeElement=function(b,a,c){this.style=c||{};this.style.current={};this.isHovered=false;this.isSelected=false;this.updateStyle()};jvm.AbstractShapeElement.prototype.setHovered=function(a){if(this.isHovered!==a){this.isHovered=a;this.updateStyle()}};jvm.AbstractShapeElement.prototype.setSelected=function(a){if(this.isSelected!==a){this.isSelected=a;this.updateStyle();jvm.$(this.node).trigger("selected",[a])}};jvm.AbstractShapeElement.prototype.setStyle=function(c,b){var a={};if(typeof c==="object"){a=c}else{a[c]=b}jvm.$.extend(this.style.current,a);this.updateStyle()};jvm.AbstractShapeElement.prototype.updateStyle=function(){var a={};jvm.$.extend(a,this.style.initial||{});jvm.$.extend(a,this.style.current||{});if(this.isHovered){jvm.$.extend(a,this.style.hover||{})}if(this.isSelected){jvm.$.extend(a,this.style.selected||{});if(this.isHovered){jvm.$.extend(a,this.style.selectedHover||{})}}this.set(a)};jvm.SVGElement=function(b,a){jvm.SVGElement.parentClass.apply(this,arguments)};jvm.inherits(jvm.SVGElement,jvm.AbstractElement);jvm.SVGElement.svgns="http://www.w3.org/2000/svg";jvm.SVGElement.prototype.createElement=function(a){return document.createElementNS(jvm.SVGElement.svgns,a)};jvm.SVGElement.prototype.addClass=function(a){this.node.setAttribute("class",a)};jvm.SVGElement.prototype.getElementCtr=function(a){return jvm["SVG"+a]};jvm.SVGElement.prototype.getBBox=function(){return this.node.getBBox()};jvm.SVGGroupElement=function(){jvm.SVGGroupElement.parentClass.call(this,"g")};jvm.inherits(jvm.SVGGroupElement,jvm.SVGElement);jvm.SVGGroupElement.prototype.add=function(a){this.node.appendChild(a.node)};jvm.SVGCanvasElement=function(b,c,a){this.classPrefix="SVG";jvm.SVGCanvasElement.parentClass.call(this,"svg");jvm.AbstractCanvasElement.apply(this,arguments)};jvm.inherits(jvm.SVGCanvasElement,jvm.SVGElement);jvm.mixin(jvm.SVGCanvasElement,jvm.AbstractCanvasElement);jvm.SVGCanvasElement.prototype.setSize=function(b,a){this.width=b;this.height=a;this.node.setAttribute("width",b);this.node.setAttribute("height",a)};jvm.SVGCanvasElement.prototype.applyTransformParams=function(c,b,a){this.scale=c;this.transX=b;this.transY=a;this.rootElement.node.setAttribute("transform","scale("+c+") translate("+b+", "+a+")")};jvm.SVGShapeElement=function(b,a,c){jvm.SVGShapeElement.parentClass.call(this,b,a);jvm.AbstractShapeElement.apply(this,arguments)};jvm.inherits(jvm.SVGShapeElement,jvm.SVGElement);jvm.mixin(jvm.SVGShapeElement,jvm.AbstractShapeElement);jvm.SVGPathElement=function(a,b){jvm.SVGPathElement.parentClass.call(this,"path",a,b);this.node.setAttribute("fill-rule","evenodd")};jvm.inherits(jvm.SVGPathElement,jvm.SVGShapeElement);jvm.SVGCircleElement=function(a,b){jvm.SVGCircleElement.parentClass.call(this,"circle",a,b)};jvm.inherits(jvm.SVGCircleElement,jvm.SVGShapeElement);jvm.VMLElement=function(b,a){if(!jvm.VMLElement.VMLInitialized){jvm.VMLElement.initializeVML()}jvm.VMLElement.parentClass.apply(this,arguments)};jvm.inherits(jvm.VMLElement,jvm.AbstractElement);jvm.VMLElement.VMLInitialized=false;jvm.VMLElement.initializeVML=function(){try{if(!document.namespaces.rvml){document.namespaces.add("rvml","urn:schemas-microsoft-com:vml")}jvm.VMLElement.prototype.createElement=function(b){return document.createElement("<rvml:"+b+' class="rvml">')}}catch(a){jvm.VMLElement.prototype.createElement=function(b){return document.createElement("<"+b+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}document.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)");jvm.VMLElement.VMLInitialized=true};jvm.VMLElement.prototype.getElementCtr=function(a){return jvm["VML"+a]};jvm.VMLElement.prototype.addClass=function(a){jvm.$(this.node).addClass(a)};jvm.VMLElement.prototype.applyAttr=function(a,b){this.node[a]=b};jvm.VMLElement.prototype.getBBox=function(){var a=jvm.$(this.node);return{x:a.position().left/this.canvas.scale,y:a.position().top/this.canvas.scale,width:a.width()/this.canvas.scale,height:a.height()/this.canvas.scale}};jvm.VMLGroupElement=function(){jvm.VMLGroupElement.parentClass.call(this,"group");this.node.style.left="0px";this.node.style.top="0px";this.node.coordorigin="0 0"};jvm.inherits(jvm.VMLGroupElement,jvm.VMLElement);jvm.VMLGroupElement.prototype.add=function(a){this.node.appendChild(a.node)};jvm.VMLCanvasElement=function(b,c,a){this.classPrefix="VML";jvm.VMLCanvasElement.parentClass.call(this,"group");jvm.AbstractCanvasElement.apply(this,arguments);this.node.style.position="absolute"};jvm.inherits(jvm.VMLCanvasElement,jvm.VMLElement);jvm.mixin(jvm.VMLCanvasElement,jvm.AbstractCanvasElement);jvm.VMLCanvasElement.prototype.setSize=function(e,b){var f,a,d,c;this.width=e;this.height=b;this.node.style.width=e+"px";this.node.style.height=b+"px";this.node.coordsize=e+" "+b;this.node.coordorigin="0 0";if(this.rootElement){f=this.rootElement.node.getElementsByTagName("shape");for(d=0,c=f.length;d<c;d++){f[d].coordsize=e+" "+b;f[d].style.width=e+"px";f[d].style.height=b+"px"}a=this.node.getElementsByTagName("group");for(d=0,c=a.length;d<c;d++){a[d].coordsize=e+" "+b;a[d].style.width=e+"px";a[d].style.height=b+"px"}}};jvm.VMLCanvasElement.prototype.applyTransformParams=function(c,b,a){this.scale=c;this.transX=b;this.transY=a;this.rootElement.node.coordorigin=(this.width-b-this.width/100)+","+(this.height-a-this.height/100);this.rootElement.node.coordsize=this.width/c+","+this.height/c};jvm.VMLShapeElement=function(b,a){jvm.VMLShapeElement.parentClass.call(this,b,a);this.fillElement=new jvm.VMLElement("fill");this.strokeElement=new jvm.VMLElement("stroke");this.node.appendChild(this.fillElement.node);this.node.appendChild(this.strokeElement.node);this.node.stroked=false;jvm.AbstractShapeElement.apply(this,arguments)};jvm.inherits(jvm.VMLShapeElement,jvm.VMLElement);jvm.mixin(jvm.VMLShapeElement,jvm.AbstractShapeElement);jvm.VMLShapeElement.prototype.applyAttr=function(a,b){switch(a){case"fill":this.node.fillcolor=b;break;case"fill-opacity":this.fillElement.node.opacity=Math.round(b*100)+"%";break;case"stroke":if(b==="none"){this.node.stroked=false}else{this.node.stroked=true}this.node.strokecolor=b;break;case"stroke-opacity":this.strokeElement.node.opacity=Math.round(b*100)+"%";break;case"stroke-width":if(parseInt(b,10)===0){this.node.stroked=false}else{this.node.stroked=true}this.node.strokeweight=b;break;case"d":this.node.path=jvm.VMLPathElement.pathSvgToVml(b);break;default:jvm.VMLShapeElement.parentClass.prototype.applyAttr.apply(this,arguments)}};jvm.VMLPathElement=function(a,b){var c=new jvm.VMLElement("skew");jvm.VMLPathElement.parentClass.call(this,"shape",a,b);this.node.coordorigin="0 0";c.node.on=true;c.node.matrix="0.01,0,0,0.01,0,0";c.node.offset="0,0";this.node.appendChild(c.node)};jvm.inherits(jvm.VMLPathElement,jvm.VMLShapeElement);jvm.VMLPathElement.prototype.applyAttr=function(a,b){if(a==="d"){this.node.path=jvm.VMLPathElement.pathSvgToVml(b)}else{jvm.VMLShapeElement.prototype.applyAttr.call(this,a,b)}};jvm.VMLPathElement.pathSvgToVml=function(e){var b="",a=0,f=0,d,c;e=e.replace(/(-?\d+)e(-?\d+)/g,"0");return e.replace(/([MmLlHhVvCcSs])\s*((?:-?\d*(?:\.\d+)?\s*,?\s*)+)/g,function(m,k,o,h){o=o.replace(/(\d)-/g,"$1,-").replace(/^\s+/g,"").replace(/\s+$/g,"").replace(/\s+/g,",").split(",");if(!o[0]){o.shift()}for(var j=0,g=o.length;j<g;j++){o[j]=Math.round(100*o[j])}switch(k){case"m":a+=o[0];f+=o[1];return"t"+o.join(",");break;case"M":a=o[0];f=o[1];return"m"+o.join(",");break;case"l":a+=o[0];f+=o[1];return"r"+o.join(",");break;case"L":a=o[0];f=o[1];return"l"+o.join(",");break;case"h":a+=o[0];return"r"+o[0]+",0";break;case"H":a=o[0];return"l"+a+","+f;break;case"v":f+=o[0];return"r0,"+o[0];break;case"V":f=o[0];return"l"+a+","+f;break;case"c":d=a+o[o.length-4];c=f+o[o.length-3];a+=o[o.length-2];f+=o[o.length-1];return"v"+o.join(",");break;case"C":d=o[o.length-4];c=o[o.length-3];a=o[o.length-2];f=o[o.length-1];return"c"+o.join(",");break;case"s":o.unshift(f-c);o.unshift(a-d);d=a+o[o.length-4];c=f+o[o.length-3];a+=o[o.length-2];f+=o[o.length-1];return"v"+o.join(",");break;case"S":o.unshift(f+f-c);o.unshift(a+a-d);d=o[o.length-4];c=o[o.length-3];a=o[o.length-2];f=o[o.length-1];return"c"+o.join(",");break}return""}).replace(/z/g,"e")};jvm.VMLCircleElement=function(a,b){jvm.VMLCircleElement.parentClass.call(this,"oval",a,b)};jvm.inherits(jvm.VMLCircleElement,jvm.VMLShapeElement);jvm.VMLCircleElement.prototype.applyAttr=function(a,b){switch(a){case"r":this.node.style.width=b*2+"px";this.node.style.height=b*2+"px";this.applyAttr("cx",this.get("cx")||0);this.applyAttr("cy",this.get("cy")||0);break;case"cx":if(!b){return}this.node.style.left=b-(this.get("r")||0)+"px";break;case"cy":if(!b){return}this.node.style.top=b-(this.get("r")||0)+"px";break;default:jvm.VMLCircleElement.parentClass.prototype.applyAttr.call(this,a,b)}};jvm.VectorCanvas=function(b,c,a){this.mode=window.SVGAngle?"svg":"vml";if(this.mode=="svg"){this.impl=new jvm.SVGCanvasElement(b,c,a)}else{this.impl=new jvm.VMLCanvasElement(b,c,a)}return this.impl};jvm.SimpleScale=function(a){this.scale=a};jvm.SimpleScale.prototype.getValue=function(a){return a};jvm.NumericScale=function(d,a,b,c){this.scale=[];a=a||"linear";if(d){this.setScale(d)}if(a){this.setNormalizeFunction(a)}if(b){this.setMin(b)}if(c){this.setMax(c)}};jvm.NumericScale.prototype={setMin:function(a){this.clearMinValue=a;if(typeof this.normalize==="function"){this.minValue=this.normalize(a)}else{this.minValue=a}},setMax:function(a){this.clearMaxValue=a;if(typeof this.normalize==="function"){this.maxValue=this.normalize(a)}else{this.maxValue=a}},setScale:function(b){var a;for(a=0;a<b.length;a++){this.scale[a]=[b[a]]}},setNormalizeFunction:function(a){if(a==="polynomial"){this.normalize=function(b){return Math.pow(b,0.2)}}else{if(a==="linear"){delete this.normalize}else{this.normalize=a}}this.setMin(this.clearMinValue);this.setMax(this.clearMaxValue)},getValue:function(d){var g=[],e=0,a,b=0,f;if(typeof this.normalize==="function"){d=this.normalize(d)}for(b=0;b<this.scale.length-1;b++){a=this.vectorLength(this.vectorSubtract(this.scale[b+1],this.scale[b]));g.push(a);e+=a}f=(this.maxValue-this.minValue)/e;for(b=0;b<g.length;b++){g[b]*=f}b=0;d-=this.minValue;while(d-g[b]>=0){d-=g[b];b++}if(b==this.scale.length-1){d=this.vectorToNum(this.scale[b])}else{d=(this.vectorToNum(this.vectorAdd(this.scale[b],this.vectorMult(this.vectorSubtract(this.scale[b+1],this.scale[b]),(d)/(g[b])))))}return d},vectorToNum:function(a){var b=0,c;for(c=0;c<a.length;c++){b+=Math.round(a[c])*Math.pow(256,a.length-c-1)}return b},vectorSubtract:function(d,c){var a=[],b;for(b=0;b<d.length;b++){a[b]=d[b]-c[b]}return a},vectorAdd:function(d,c){var a=[],b;for(b=0;b<d.length;b++){a[b]=d[b]+c[b]}return a},vectorMult:function(b,c){var a=[],d;for(d=0;d<b.length;d++){a[d]=b[d]*c}return a},vectorLength:function(b){var a=0,c;for(c=0;c<b.length;c++){a+=b[c]*b[c]}return Math.sqrt(a)}};jvm.OrdinalScale=function(a){this.scale=a};jvm.OrdinalScale.prototype.getValue=function(a){return this.scale[a]};jvm.ColorScale=function(a,b,c,d){jvm.ColorScale.parentClass.apply(this,arguments)};jvm.inherits(jvm.ColorScale,jvm.NumericScale);jvm.ColorScale.prototype.setScale=function(b){var a;for(a=0;a<b.length;a++){this.scale[a]=jvm.ColorScale.rgbToArray(b[a])}};jvm.ColorScale.prototype.getValue=function(a){return jvm.ColorScale.numToRgb(jvm.ColorScale.parentClass.prototype.getValue.call(this,a))};jvm.ColorScale.arrayToRgb=function(a){var b="#",e,c;for(c=0;c<a.length;c++){e=a[c].toString(16);b+=e.length==1?"0"+e:e}return b};jvm.ColorScale.numToRgb=function(a){a=a.toString(16);while(a.length<6){a="0"+a}return"#"+a};jvm.ColorScale.rgbToArray=function(a){a=a.substr(1);return[parseInt(a.substr(0,2),16),parseInt(a.substr(2,2),16),parseInt(a.substr(4,2),16)]};jvm.Proj={mill:function(b,a,d){return{x:(a-d)/360*jvm.WorldMap.circumference,y:-(180/Math.PI*(5/4)*Math.log(Math.tan(Math.PI/4+(4/5)*b*Math.PI/360)))/360*jvm.WorldMap.circumference}},merc:function(b,a,d){return{x:(a-d)/360*jvm.WorldMap.circumference,y:-(180/Math.PI*Math.log(Math.tan(Math.PI/4+b*Math.PI/360)))/360*jvm.WorldMap.circumference}},aea:function(m,o,l){var k=0,d=l/180*Math.PI,i=29.5/180*Math.PI,g=45.5/180*Math.PI,p=m/180*Math.PI,j=o/180*Math.PI,f=(Math.sin(i)+Math.sin(g))/2,b=Math.cos(i)*Math.cos(i)+2*f*Math.sin(i),e=f*(j-d),h=Math.sqrt(b-2*f*Math.sin(p))/f,a=Math.sqrt(b-2*f*Math.sin(k))/f;return{x:h*Math.sin(e)/(2*Math.PI)*jvm.WorldMap.circumference,y:-(a-h*Math.cos(e))/(2*Math.PI)*jvm.WorldMap.circumference}},lcc:function(h,i,g){var e=0,a=g/180*Math.PI,f=i/180*Math.PI,d=33/180*Math.PI,b=45/180*Math.PI,j=h/180*Math.PI;n=Math.log(Math.cos(d)*(1/Math.cos(b)))/Math.log(Math.tan(Math.PI/4+b/2)*(1/Math.tan(Math.PI/4+d/2))),F=(Math.cos(d)*Math.pow(Math.tan(Math.PI/4+d/2),n))/n,ro=F*Math.pow(1/Math.tan(Math.PI/4+j/2),n),ro0=F*Math.pow(1/Math.tan(Math.PI/4+e/2),n);return{x:ro*Math.sin(n*(f-a))/(2*Math.PI)*jvm.WorldMap.circumference,y:-(ro0-ro*Math.cos(n*(f-a)))/(2*Math.PI)*jvm.WorldMap.circumference}}};jvm.DataSeries=function(c,b){var a;c=c||{};c.attribute=c.attribute||"fill";this.elements=b;this.params=c;if(c.attributes){this.setAttributes(c.attributes)}if(jvm.$.isArray(c.scale)){a=(c.attribute==="fill"||c.attribute==="stroke")?jvm.ColorScale:jvm.NumericScale;this.scale=new a(c.scale,c.normalizeFunction,c.min,c.max)}else{if(c.scale){this.scale=new jvm.OrdinalScale(c.scale)}else{this.scale=new jvm.SimpleScale(c.scale)}}this.values=c.values||{};this.setValues(this.values)};jvm.DataSeries.prototype={setAttributes:function(c,a){var b=c,d;if(typeof c=="string"){if(this.elements[c]){this.elements[c].setStyle(this.params.attribute,a)}}else{for(d in b){if(this.elements[d]){this.elements[d].element.setStyle(this.params.attribute,b[d])}}}},setValues:function(b){var a=Number.MIN_VALUE,d=Number.MAX_VALUE,e,f,c={};if(!(this.scale instanceof jvm.OrdinalScale)&&!(this.scale instanceof jvm.SimpleScale)){if(!this.params.min||!this.params.max){for(f in b){e=parseFloat(b[f]);if(e>a){a=b[f]}if(e<d){d=e}}if(!this.params.min){this.scale.setMin(d)}if(!this.params.max){this.scale.setMax(a)}this.params.min=d;this.params.max=a}for(f in b){e=parseFloat(b[f]);if(!isNaN(e)){c[f]=this.scale.getValue(e)}else{c[f]=this.elements[f].element.style.initial[this.params.attribute]}}}else{for(f in b){if(b[f]){c[f]=this.scale.getValue(b[f])}else{c[f]=this.elements[f].element.style.initial[this.params.attribute]}}}this.setAttributes(c);jvm.$.extend(this.values,b)},clear:function(){var b,a={};for(b in this.values){a[b]=this.elements[b].element.style.initial[this.params.attribute]}this.setAttributes(a);this.values={}},setScale:function(a){this.scale.setScale(a);if(this.values){this.setValues(this.values)}},setNormalizeFunction:function(a){this.scale.setNormalizeFunction(a);if(this.values){this.setValues(this.values)}}};jvm.WorldMap=function(c){var b=this,a;this.params=jvm.$.extend(true,{},jvm.WorldMap.defaultParams,c);this.mapData=jvm.WorldMap.maps[this.params.map];this.markers={};this.regions={};this.regionsColors={};this.regionsData={};this.container=jvm.$("<div>").addClass("jvectormap-container "+this.params.containerclass);this.params.container.append(this.container);this.container.data("mapObject",this);this.defaultWidth=this.mapData.width;this.defaultHeight=this.mapData.height;this.onResize=function(){b.setSize()};jvm.$(window).resize(this.onResize);for(a in jvm.WorldMap.apiEvents){if(this.params[a]){this.container.bind(jvm.WorldMap.apiEvents[a]+".jvectormap",this.params[a])}}this.canvas=new jvm.VectorCanvas(this.container[0],this.width,this.height);if(("ontouchstart" in window)||(window.DocumentTouch&&document instanceof DocumentTouch)){if(this.params.bindTouchEvents){this.bindContainerTouchEvents()}}else{this.bindContainerEvents()}this.bindElementEvents();this.createLabel();this.bindZoomButtons();this.createRegions();this.createMarkers(this.params.markers||{});this.setSize();if(this.params.focusOn){if(typeof this.params.focusOn==="object"){this.setFocus.call(this,this.params.focusOn.scale,this.params.focusOn.x,this.params.focusOn.y)}else{this.setFocus.call(this,this.params.focusOn)}}if(this.params.selectedRegions){this.setSelectedRegions(this.params.selectedRegions)}if(this.params.selectedMarkers){this.setSelectedMarkers(this.params.selectedMarkers)}if(this.params.series){this.createSeries()}};jvm.WorldMap.prototype={transX:0,transY:0,scale:1,baseTransX:0,baseTransY:0,baseScale:1,width:0,height:0,resize:function(){var a=this.baseScale;if(this.width/this.height>this.defaultWidth/this.defaultHeight){this.baseScale=this.height/this.defaultHeight;this.baseTransX=Math.abs(this.width-this.defaultWidth*this.baseScale)/(2*this.baseScale)}else{this.baseScale=this.width/this.defaultWidth;this.baseTransY=Math.abs(this.height-this.defaultHeight*this.baseScale)/(2*this.baseScale)}this.scale*=this.baseScale/a;this.transX*=this.baseScale/a;this.transY*=this.baseScale/a},setSize:function(){this.width=this.container.width();this.height=this.width*this.params.AspectRatio;if(this.height>this.params.MaxHeight){this.height=this.params.MaxHeight}this.resize();this.canvas.setSize(this.width,this.height);this.applyTransform()},reset:function(){var b,a;for(b in this.series){for(a=0;a<this.series[b].length;a++){this.series[b][a].clear()}}this.scale=this.baseScale;this.transX=this.baseTransX;this.transY=this.baseTransY;this.applyTransform()},applyTransform:function(){var c,b,a,d;if(this.defaultWidth*this.scale<=this.width){c=(this.width-this.defaultWidth*this.scale)/(2*this.scale);a=(this.width-this.defaultWidth*this.scale)/(2*this.scale)}else{c=0;a=(this.width-this.defaultWidth*this.scale)/this.scale}if(this.defaultHeight*this.scale<=this.height){b=(this.height-this.defaultHeight*this.scale)/(2*this.scale);d=(this.height-this.defaultHeight*this.scale)/(2*this.scale)}else{b=0;d=(this.height-this.defaultHeight*this.scale)/this.scale}if(this.transY>b){this.transY=b}else{if(this.transY<d){this.transY=d}}if(this.transX>c){this.transX=c}else{if(this.transX<a){this.transX=a}}this.canvas.applyTransformParams(this.scale,this.transX,this.transY);if(this.markers){this.repositionMarkers()}},bindContainerEvents:function(){var b=false,c,a,d=this;this.container.mousemove(function(f){if(b){d.transX-=(c-f.pageX)/d.scale;d.transY-=(a-f.pageY)/d.scale;d.applyTransform();c=f.pageX;a=f.pageY}return false}).mousedown(function(f){b=true;c=f.pageX;a=f.pageY;return false});jvm.$("body").mouseup(function(){b=false});if(this.params.zoomOnScroll){this.container.mousewheel(function(h,l,f,e){var k=jvm.$(d.container).offset(),j=h.pageX-k.left,i=h.pageY-k.top,g=Math.pow(1.3,e);d.label.hide();d.setScale(d.scale*g,j,i);h.preventDefault()})}},bindContainerTouchEvents:function(){var g,f,d,h=this,b,a,e,c;jvm.$(this.container).bind("gesturestart",function(i){g=h.scale;f=h.transX;d=h.transY;return false});jvm.$(this.container).bind("gesturechange",function(j){var i=j.originalEvent.scale;h.setScale(g*i,e,c);h.label.hide();return false});jvm.$(this.container).bind("touchstart",function(j){var i=j.originalEvent.touches;if(i.length==2){if(i[0].pageX>i[1].pageX){e=i[1].pageX+(i[0].pageX-i[1].pageX)/2}else{e=i[0].pageX+(i[1].pageX-i[0].pageX)/2}if(i[0].pageY>i[1].pageY){c=i[1].pageY+(i[0].pageY-i[1].pageY)/2}else{c=i[0].pageY+(i[1].pageY-i[0].pageY)/2}}b=j.originalEvent.touches[0].pageX;a=j.originalEvent.touches[0].pageY});jvm.$(this.container).bind("touchmove",function(i){var j;if(h.scale!=h.baseScale){if(i.originalEvent.touches.length==1&&b&&a){j=i.originalEvent.touches[0];h.transX-=(b-j.pageX)/h.scale;h.transY-=(a-j.pageY)/h.scale;h.applyTransform();h.label.hide();b=j.pageX;a=j.pageY}else{b=false;a=false}return false}})},bindElementEvents:function(){var b=this,a;this.container.mousemove(function(){a=true});this.container.delegate("[class~='jvectormap-element']","mouseover mouseout",function(j){var i=this,f=jvm.$(this).attr("class").indexOf("jvectormap-region")===-1?"marker":"region",h=f=="region"?jvm.$(this).attr("data-code"):jvm.$(this).attr("data-index"),d=f=="region"?b.regions[h].element:b.markers[h].element,g=f=="region"?b.mapData.paths[h].name:(b.markers[h].config.name||""),c=jvm.$.Event(f+"LabelShow.jvectormap"),k=jvm.$.Event(f+"Over.jvectormap");if(j.type=="mouseover"){b.container.trigger(k,[h]);if(!k.isDefaultPrevented()){d.setHovered(true)}b.label.html(g);b.container.trigger(c,[b.label,h]);if(!c.isDefaultPrevented()){b.label.show();b.labelWidth=b.label.width();b.labelHeight=b.label.height()}}else{d.setHovered(false);b.label.hide();b.container.trigger(f+"Out.jvectormap",[h])}});this.container.delegate("[class~='jvectormap-element']","mousedown",function(c){a=false});this.container.delegate("[class~='jvectormap-element']","mouseup",function(i){var h=this,f=jvm.$(this).attr("class").indexOf("jvectormap-region")===-1?"marker":"region",g=f=="region"?jvm.$(this).attr("data-code"):jvm.$(this).attr("data-index"),c=jvm.$.Event(f+"Click.jvectormap"),d=f=="region"?b.regions[g].element:b.markers[g].element;if(!a){b.container.trigger(c,[g]);if((f==="region"&&b.params.regionsSelectable)||(f==="marker"&&b.params.markersSelectable)){if(!c.isDefaultPrevented()){if(b.params[f+"sSelectableOne"]){b.clearSelected(f+"s")}d.setSelected(!d.isSelected)}}}})},bindZoomButtons:function(){var a=this;jvm.$("<div/>").addClass("jvectormap-zoomin").text("+").appendTo(this.container);jvm.$("<div/>").addClass("jvectormap-zoomout").html("&#x2212;").appendTo(this.container);this.container.find(".jvectormap-zoomin").click(function(){a.setScale(a.scale*a.params.zoomStep,a.width/2,a.height/2)});this.container.find(".jvectormap-zoomout").click(function(){a.setScale(a.scale/a.params.zoomStep,a.width/2,a.height/2)})},createLabel:function(){var a=this;this.label=jvm.$("<div/>").addClass("jvectormap-label").appendTo(jvm.$("body"));this.container.mousemove(function(f){var b=parseInt(a.label.css("paddingTop").replace("px",""),10)*2+9;var d=f.pageX-b-a.labelWidth,c=f.pageY-b-a.labelHeight;if(d<5){d=f.pageX+b}if(c<5){c=f.pageY+b}if(a.label.is(":visible")){a.label.css({left:d,top:c})}})},setScale:function(e,b,f,a){var d,c=jvm.$.Event("zoom.jvectormap");if(e>this.params.zoomMax*this.baseScale){e=this.params.zoomMax*this.baseScale}else{if(e<this.params.zoomMin*this.baseScale){e=this.params.zoomMin*this.baseScale}}if(typeof b!="undefined"&&typeof f!="undefined"){d=e/this.scale;if(a){this.transX=b+this.defaultWidth*(this.width/(this.defaultWidth*e))/2;this.transY=f+this.defaultHeight*(this.height/(this.defaultHeight*e))/2}else{this.transX-=(d-1)/e*b;this.transY-=(d-1)/e*f}}this.scale=e;this.applyTransform();this.container.trigger(c,[e/this.baseScale])},setFocus:function(d,b,a){var c;if(typeof d==="string"&&this.regions[d]){c=this.regions[d].element.getBBox();this.setScale(Math.min(this.width/c.width,this.height/c.height),-(c.x+c.width/2),-(c.y+c.height/2),true)}else{d=d*this.baseScale;this.setScale(d,-b*this.defaultWidth,-a*this.defaultHeight,true)}},getSelected:function(c){var a,b=[];for(a in this[c]){if(this[c][a].element.isSelected){b.push(a)}}return b},getSelectedRegions:function(){return this.getSelected("regions")},getSelectedMarkers:function(){return this.getSelected("markers")},setSelected:function(b,c){var a;if(typeof c!="object"){c=[c]}if(jvm.$.isArray(c)){for(a=0;a<c.length;a++){this[b][c[a]].element.setSelected(true)}}else{for(a in c){this[b][a].element.setSelected(!!c[a])}}},setSelectedRegions:function(a){this.setSelected("regions",a)},setSelectedMarkers:function(a){this.setSelected("markers",a)},clearSelected:function(d){var a={},c=this.getSelected(d),b;for(b=0;b<c.length;b++){a[c[b]]=false}this.setSelected(d,a)},clearSelectedRegions:function(){this.clearSelected("regions")},clearSelectedMarkers:function(){this.clearSelected("markers")},getMapObject:function(){return this},getRegionName:function(a){return this.mapData.paths[a].name},createRegions:function(){var a,c,b=this;for(a in this.mapData.paths){c=this.canvas.addPath({d:this.mapData.paths[a].path,"data-code":a},jvm.$.extend(true,{},this.params.regionStyle));jvm.$(c.node).bind("selected",function(f,d){b.container.trigger("regionSelected.jvectormap",[jvm.$(this).attr("data-code"),d,b.getSelectedRegions()])});c.addClass("jvectormap-region jvectormap-element");this.regions[a]={element:c,config:this.mapData.paths[a]}}},createMarkers:function(g){var d,c,b,f,a,e=this;this.markersGroup=this.markersGroup||this.canvas.addGroup();if(jvm.$.isArray(g)){a=g.slice();g={};for(d=0;d<a.length;d++){g[d]=a[d]}}for(d in g){f=g[d] instanceof Array?{latLng:g[d]}:g[d];b=this.latLngToPoint.apply(this,f.latLng||[0,0]);c=this.canvas.addCircle({"data-index":d,cx:b.x,cy:b.y},jvm.$.extend(true,{},this.params.markerStyle,{initial:f.style||{}}),this.markersGroup);c.addClass("jvectormap-marker jvectormap-element");jvm.$(c.node).bind("selected",function(i,h){e.container.trigger("markerSelected.jvectormap",[jvm.$(this).attr("data-index"),h,e.getSelectedMarkers()])});if(this.markers[d]){this.removeMarkers([d])}this.markers[d]={element:c,config:f}}},repositionMarkers:function(){var b,a;for(b in this.markers){a=this.latLngToPoint.apply(this,this.markers[b].config.latLng);this.markers[b].element.setStyle({cx:a.x,cy:a.y})}},addMarker:function(e,a,d){var g={},f=[],b,c;g[e]=a;for(c=0;c<d.length;c++){b={};b[e]=d[c];f.push(b)}this.addMarkers(g,f)},addMarkers:function(c,b){var a;b=b||[];this.createMarkers(c);for(a=0;a<b.length;a++){this.series.markers[a].setValues(b[a]||{})}},removeMarkers:function(b){var a;for(a=0;a<b.length;a++){this.markers[b[a]].element.remove();delete this.markers[b[a]]}},removeAllMarkers:function(){var a,b=[];for(a in this.markers){b.push(a)}this.removeMarkers(b)},latLngToPoint:function(d,e){var g,b=jvm.WorldMap.maps[this.params.map].projection,c=b.centralMeridian,a=this.width-this.baseTransX*2*this.baseScale,i=this.height-this.baseTransY*2*this.baseScale,j,h,f=this.scale/this.baseScale;if(e<(-180+c)){e+=360}g=jvm.Proj[b.type](d,e,c);j=this.getInsetForPoint(g.x,g.y);if(j){h=j.bbox;g.x=(g.x-h[0].x)/(h[1].x-h[0].x)*j.width*this.scale;g.y=(g.y-h[0].y)/(h[1].y-h[0].y)*j.height*this.scale;return{x:g.x+this.transX*this.scale+j.left*this.scale,y:g.y+this.transY*this.scale+j.top*this.scale}}else{return{x:0,y:0}}},getInsetForPoint:function(a,e){var b=jvm.WorldMap.maps[this.params.map].insets,c,d;for(c=0;c<b.length;c++){d=b[c].bbox;if(a>d[0].x&&a<d[1].x&&e>d[0].y&&e<d[1].y){return b[c]}}},createSeries:function(){var b,a;this.series={markers:[],regions:[]};for(a in this.params.series){for(b=0;b<this.params.series[a].length;b++){this.series[a][b]=new jvm.DataSeries(this.params.series[a][b],this[a])}}},remove:function(){this.label.remove();this.container.remove();jvm.$(window).unbind("resize",this.onResize)}};jvm.WorldMap.maps={};jvm.WorldMap.circumference=6381372*Math.PI*2;jvm.WorldMap.defaultParams={map:"world_mill_en",backgroundColor:"#505050",zoomOnScroll:true,zoomMax:8,zoomMin:1,zoomStep:1.6,regionsSelectable:false,markersSelectable:false,bindTouchEvents:true,regionStyle:{initial:{fill:"white","fill-opacity":1,stroke:"none","stroke-width":0,"stroke-opacity":1},hover:{"fill-opacity":0.8},selected:{stroke:"black","stroke-width":2},selectedHover:{}},markerStyle:{initial:{fill:"grey",stroke:"#505050","fill-opacity":1,"stroke-width":1,"stroke-opacity":1,r:5},hover:{stroke:"black","stroke-width":2},selected:{fill:"blue"},selectedHover:{}}};jvm.WorldMap.apiEvents={onRegionLabelShow:"regionLabelShow",onRegionOver:"regionOver",onRegionOut:"regionOut",onRegionClick:"regionClick",onRegionSelected:"regionSelected",onMarkerLabelShow:"markerLabelShow",onMarkerOver:"markerOver",onMarkerOut:"markerOut",onMarkerClick:"markerClick",onMarkerSelected:"markerSelected",onZoom:"zoom"};

$.fn.vectorMap('addMap', 'in_mill_en',{"insets": [{"width": 500.0, "top": 0, "height": 518.6537485484766, "bbox": [{"y": -37.054483541000025, "x": 68.14340253989525}, {"y": -6.745550847993229, "x": 97.36225305223655}], "left": 0}], "paths": {"IN-AN": {"path": "M436.76,513.57l0.38,-2.12l2.62,-0.61l1.18,3.35l-0.47,3.22l-0.9,0.49l-2.81,-4.33ZM436.21,509.62l-0.07,-1.38l1.0,-0.52l0.43,0.63l-1.36,1.27ZM434.4,497.46l0.36,-0.15l0.12,0.58l-0.42,-0.31l-0.06,-0.11ZM433.3,494.53l0.55,-0.86l0.29,-0.06l-0.57,2.11l-0.28,-1.19ZM430.93,498.17l0.89,-0.97l1.1,1.69l-1.36,0.02l-0.63,-0.75ZM426.78,491.46l0.05,1.05l0.17,0.36l-0.33,-0.7l0.11,-0.71ZM426.74,426.47l-0.07,-0.16l-0.0,-0.18l0.03,-0.28l0.11,-0.31l-0.07,0.93ZM417.49,431.26l0.01,-0.01l0.03,-0.01l-0.02,0.04l-0.02,-0.02ZM417.62,431.14l0.37,-0.83l1.17,0.68l0.8,-5.56l2.14,-0.16l-1.27,-2.76l0.07,-3.97l1.04,-1.08l-0.76,-2.52l1.64,-3.24l0.21,-5.83l1.71,-3.35l1.28,-0.34l0.23,2.61l-1.57,0.97l1.69,1.43l-0.65,3.26l-1.7,-0.1l-1.07,2.73l1.48,0.95l0.48,5.73l-2.46,1.56l0.74,3.69l-2.13,2.15l-0.48,3.65l0.9,-0.74l0.12,0.93l-1.96,4.01l-2.01,-3.87ZM419.62,435.03l0.64,0.65l0.73,-0.97l-0.49,2.15l-0.88,-1.82ZM424.84,428.81l0.55,-0.4l0.37,1.0l-0.41,-0.14l-0.52,-0.46ZM420.67,476.67l0.74,-0.68l0.76,1.48l-1.24,0.11l-0.27,-0.91ZM420.04,414.06l0.2,-1.67l0.22,-0.25l-0.03,1.23l-0.39,0.69ZM418.74,439.23l0.68,-0.62l-0.08,-1.14l0.42,1.76l-1.03,-0.01ZM414.99,449.85l1.63,-1.76l1.0,0.44l0.53,2.7l-1.19,2.72l-1.64,-0.56l-0.32,-3.54ZM412.48,435.97l0.28,0.1l0.01,0.4l-0.24,-0.05l-0.05,-0.45Z", "name": "Andaman and Nicobar"}, "IN-BR": {"path": "M263.5,214.01l-0.06,-3.55l-2.85,-2.13l-0.03,-5.49l13.36,-8.89l2.18,1.64l0.93,-1.85l3.34,0.84l1.73,-1.73l-4.24,-2.94l-1.94,0.14l-4.55,-4.64l3.27,-0.87l0.15,-2.24l-4.37,-1.26l-0.17,-0.82l2.15,-0.48l0.74,-1.43l5.22,-0.42l-2.62,-1.96l-0.22,-2.16l-2.79,-0.66l-3.78,-8.33l2.65,-0.03l1.44,-1.25l3.08,2.36l4.96,0.83l1.19,1.91l-0.16,3.2l3.01,0.32l8.15,4.7l5.47,-1.96l1.42,0.8l0.24,2.51l2.24,1.59l3.08,-1.5l4.67,0.72l7.29,3.37l5.42,-2.71l1.13,2.78l3.74,1.15l1.85,-1.42l2.98,0.82l4.6,-1.42l2.5,1.58l1.54,-2.85l1.44,-0.15l1.28,1.63l0.48,1.36l-5.6,3.44l-3.23,4.03l4.39,4.22l0.35,2.69l-1.74,-0.62l-3.19,1.66l0.49,3.57l-4.45,-1.67l-2.02,2.37l-2.05,0.09l-0.69,1.95l-2.49,1.53l-1.25,6.67l-7.85,0.5l-2.29,3.68l-2.57,-1.51l0.25,-1.95l-2.82,-0.51l-1.46,-2.88l-2.33,0.73l-1.51,-1.23l-2.13,0.38l-1.15,3.4l-6.21,1.09l-2.94,2.23l-3.24,0.05l-1.96,-2.45l-5.33,3.32l-2.68,-2.24l-0.25,-1.59l-3.18,0.95l-1.74,-2.84l-1.95,1.6l-6.4,0.22Z", "name": "Bihar"}, "IN-MZ": {"path": "M413.13,226.48l0.9,-0.77l-0.17,-6.11l2.92,1.78l4.48,-5.87l1.26,1.9l3.28,0.35l-1.0,4.09l4.56,0.77l1.8,2.49l1.29,4.32l-0.98,8.79l-1.52,1.9l-2.45,-0.32l0.56,2.63l-1.8,3.38l1.76,7.31l-2.54,0.94l-0.8,3.39l-1.39,0.26l-3.28,-3.02l-1.7,2.84l-1.3,-11.9l-2.45,-4.48l-1.43,-14.67Z", "name": "Mizoram"}, "IN-DD": {"path": "M80.35,285.1l0.02,-0.33l0.22,-0.56l0.2,0.76l-0.45,0.13Z", "name": "Daman and Diu"}, "IN-DN": {"path": "M81.5,287.73l2.56,-1.24l0.74,0.77l-1.27,1.95l2.18,-0.07l-0.19,1.9l-2.34,-0.19l-1.67,-3.12Z", "name": "Dadra and Nagar Haveli"}, "IN-DL": {"path": "M149.04,145.05l1.87,-1.86l-0.08,-2.2l2.02,-0.85l1.99,0.16l2.19,3.84l-2.13,3.08l-3.16,-2.13l-2.7,-0.05Z", "name": "Delhi"}, "IN-NL": {"path": "M431.42,197.03l6.22,-5.33l-0.38,-1.04l1.59,-0.36l-0.16,2.06l3.09,-1.02l1.08,-5.17l4.31,-6.09l1.38,0.96l2.31,-3.13l4.86,-1.97l2.52,-2.74l4.95,-0.52l0.23,4.75l-3.44,3.64l0.12,3.97l1.77,3.2l-2.56,2.17l0.18,3.05l-3.85,3.97l-3.52,0.22l0.26,-3.4l-4.43,2.97l-8.94,-0.54l-0.97,1.03l0.89,0.75l-3.33,3.95l-2.22,-1.39l-0.17,-2.12l-1.79,-1.88Z", "name": "Nagaland"}, "IN-WB": {"path": "M302.84,232.47l2.99,-0.53l0.37,-1.53l1.35,0.49l0.04,1.44l2.75,0.68l2.4,-2.81l6.76,-1.95l1.16,-3.08l4.93,1.75l-0.11,-1.16l1.33,0.51l1.0,-1.61l-0.86,-1.75l3.65,0.41l0.73,-2.04l1.15,0.42l1.82,-1.48l-0.67,-1.17l1.87,-1.27l0.99,-4.15l1.88,-0.79l-0.95,-2.7l0.57,-2.9l-1.85,-3.71l1.2,-2.17l-1.45,-2.03l3.2,-1.87l2.16,0.37l-0.48,-3.34l-4.3,-3.77l3.03,-3.7l5.79,-3.81l-1.73,-3.49l-1.88,0.01l1.28,-3.67l-3.38,-5.86l0.45,-2.02l1.41,1.73l4.46,1.01l5.24,-1.51l2.6,1.2l0.34,2.44l1.12,-0.33l3.29,2.71l4.22,-0.53l4.1,1.15l0.55,1.26l3.93,-0.05l-0.22,5.26l-1.81,2.86l-2.19,0.02l-1.06,4.22l-6.66,-2.96l-0.45,-3.27l-2.62,-1.88l-1.5,1.4l2.39,1.99l-2.31,-0.74l-0.91,0.84l-7.74,-6.69l-1.26,3.08l2.56,0.28l0.49,1.14l-5.63,3.81l-1.58,4.2l1.0,2.44l2.29,-0.21l4.6,4.92l4.2,0.02l1.11,2.83l2.36,0.62l-1.17,1.66l-7.87,-0.33l-2.2,5.48l-1.81,-1.3l-1.66,0.52l-1.76,4.85l1.75,2.82l6.25,3.17l4.26,0.32l-1.03,2.15l0.63,3.78l-2.34,1.23l-0.63,3.84l3.83,2.93l-1.07,3.87l4.29,0.85l-1.96,3.64l1.83,2.35l-0.11,5.26l2.36,6.42l-0.26,3.54l-2.69,-0.26l3.09,5.73l-2.82,-0.62l-0.77,-2.01l-2.22,3.45l-0.28,-4.39l1.15,-2.97l-0.89,-1.04l0.88,-1.09l-1.56,0.52l0.39,1.29l-1.14,1.24l0.29,-4.51l-1.94,6.72l-0.37,-2.08l-1.04,0.61l-0.36,4.77l-3.42,-2.73l0.36,3.85l-1.72,-6.64l1.24,-1.86l-0.39,-1.79l-3.32,-1.38l-1.94,-3.23l0.54,3.25l3.6,2.63l-5.0,5.71l-6.34,2.24l-0.79,-2.55l-3.06,-0.93l-1.0,-2.25l-1.4,-0.43l-1.35,1.22l-0.74,-2.69l-4.82,-2.09l2.59,-1.84l-2.29,-2.86l0.31,-1.6l-5.79,-3.85l0.23,-2.32l1.57,-1.18l-5.81,-0.4l-2.91,-2.69l-1.93,-0.05l-0.84,-1.37l1.1,-2.59l-1.23,-0.93ZM349.16,261.28l1.15,0.64l-0.94,2.98l-0.64,-0.17l0.43,-3.46ZM348.68,264.8l-0.11,0.25l0.03,0.37l-0.15,-0.22l0.22,-0.41ZM354.1,263.43l0.1,0.27l-0.35,0.14l0.17,-0.15l0.08,-0.25ZM345.29,263.23l0.18,0.23l-0.15,0.47l-0.02,-0.09l-0.01,-0.62ZM355.1,265.38l-0.69,0.02l-0.04,-0.73l0.64,0.34l0.09,0.37ZM350.17,260.7l0.13,-0.71l0.62,-0.79l-0.35,1.63l-0.4,-0.12ZM341.96,263.71l-1.14,-0.4l1.26,-3.05l0.27,1.4l-0.39,2.06ZM341.31,259.79l0.09,-0.45l0.25,-0.49l0.0,0.53l-0.34,0.4Z", "name": "West Bengal"}, "IN-HR": {"path": "M108.67,123.96l1.19,-0.77l-0.53,-1.2l2.01,0.5l2.81,-1.23l2.96,1.9l1.51,-0.26l1.08,1.63l0.71,-0.64l-0.41,2.34l1.54,2.32l3.6,-4.25l4.2,0.67l1.59,-1.04l1.56,1.39l2.78,-0.16l3.23,-1.96l-0.72,-1.63l1.26,-2.46l2.42,-0.83l2.24,1.27l1.72,-1.13l-0.6,-2.07l2.44,-1.52l-0.19,-1.04l3.0,0.77l0.08,-4.17l-2.15,-5.17l1.8,0.41l3.91,3.41l-0.15,2.29l1.31,1.41l6.45,1.68l-6.09,6.57l-2.95,7.23l0.13,2.23l1.38,0.46l-0.24,5.02l1.47,3.42l-4.63,1.24l-0.06,2.4l-1.89,2.25l1.01,1.13l2.15,-0.64l3.18,2.12l2.24,-1.45l2.27,1.47l0.99,3.01l-0.99,3.18l1.01,1.53l-4.02,2.31l-4.11,0.07l-1.75,2.19l0.45,-7.57l-1.55,-1.78l-5.33,4.3l-1.52,-3.12l-2.8,-0.76l0.34,2.57l-3.03,0.09l0.84,3.82l-3.38,-0.39l-0.91,-1.27l1.76,-2.86l-1.49,-0.22l2.34,-1.13l-8.36,-8.04l-3.52,-10.53l-1.53,-0.84l-3.92,1.08l-4.29,-2.87l-3.65,1.23l-1.11,-1.64l1.23,-0.64l-0.08,-4.7l-2.37,0.01l0.17,-0.93Z", "name": "Haryana"}, "IN-HP": {"path": "M127.64,85.0l1.29,-1.64l-0.85,-0.98l5.17,-3.0l-0.97,-1.83l1.19,-1.78l-0.23,-2.4l-1.83,-2.53l2.41,0.49l6.81,-4.76l3.17,-0.87l3.47,0.63l5.68,4.16l4.58,1.45l6.23,-2.51l4.9,6.85l6.11,-2.65l-1.69,4.52l2.0,-0.3l1.14,4.74l4.78,4.34l-1.13,3.42l2.47,2.9l-1.98,1.56l1.06,1.31l-0.33,2.16l2.55,0.57l1.79,2.27l-11.39,-2.86l-6.44,2.09l-3.38,3.36l0.64,1.64l-1.5,1.78l1.86,4.53l-4.23,1.91l-2.81,-0.5l-3.86,-1.79l-0.09,-2.61l-4.05,-3.56l-4.78,-1.99l0.07,-3.46l-1.05,-1.06l-2.22,-0.46l-1.38,-2.13l-1.76,2.0l-1.34,-0.1l-5.05,-11.1l-5.0,-1.8Z", "name": "Himachal Pradesh"}, "IN-AS": {"path": "M368.45,186.24l2.93,-2.64l0.52,-6.4l4.36,-0.6l3.74,-2.47l4.04,1.99l11.81,0.1l2.47,-1.67l1.73,1.26l5.15,-1.03l0.93,0.94l0.62,-1.35l2.14,0.47l0.96,-1.13l10.37,-2.48l5.43,1.93l7.94,0.07l6.15,-2.63l0.32,-1.74l6.8,-5.62l-0.14,-1.95l4.84,0.73l13.28,-4.98l10.98,-1.66l-3.23,4.55l1.87,2.7l0.02,2.66l1.72,-0.63l0.36,0.98l-1.56,1.36l-6.8,0.3l-1.52,2.08l-6.89,3.62l-1.8,-0.36l-2.6,2.8l-4.77,1.91l-2.39,3.18l-1.4,-1.02l-4.51,6.39l-0.98,5.02l-2.31,0.8l0.08,-1.99l-2.18,0.42l0.18,1.22l-6.2,5.32l1.93,4.02l-4.3,8.48l-1.45,0.42l-1.34,6.4l-3.03,0.81l-1.65,-1.96l-4.69,6.03l-0.74,-1.82l-3.3,-0.21l0.64,-2.13l-1.72,-2.71l1.03,-5.65l4.18,0.54l0.44,-1.25l-1.62,-1.47l7.12,-3.95l-0.47,-2.15l-3.21,-2.26l1.32,-2.2l-1.51,0.34l-3.7,-3.06l-3.41,1.18l0.1,-4.47l1.44,-2.06l-6.07,0.67l-2.07,-0.83l-2.27,2.67l-1.37,-1.76l-2.21,2.96l-4.01,2.23l-0.2,-2.13l-2.87,0.17l-1.18,-1.68l-7.01,0.19l-2.91,-1.45l-4.52,0.99l-2.88,2.66l-0.7,2.05l1.06,1.87l-2.57,2.16l0.19,-8.71l-2.92,-3.35Z", "name": "Assam"}, "IN-UT": {"path": "M161.57,113.66l4.19,-1.8l-1.84,-4.6l1.39,-1.42l0.19,-2.82l2.13,-2.01l6.38,-2.15l11.2,2.94l0.76,-1.07l-1.84,-2.22l2.71,-2.02l5.75,7.0l2.99,1.45l4.59,-0.31l6.31,3.72l-1.03,0.83l0.59,2.25l6.96,1.69l6.73,3.94l-2.14,-0.03l-8.64,7.68l0.25,2.67l-2.93,3.24l0.87,3.32l-2.23,1.85l-1.72,3.42l0.6,1.91l-1.34,0.97l-2.6,-2.42l-6.31,0.36l-5.38,-4.44l-3.61,-0.04l-3.17,-2.74l2.21,-0.73l0.99,-1.72l-4.73,-1.97l-7.29,-7.13l-1.51,0.64l0.12,4.13l-3.09,-0.89l-2.16,1.02l-1.3,-4.93l3.34,-4.63l-6.38,-2.93Z", "name": "Uttarakhand"}, "IN-JH": {"path": "M269.68,230.5l-2.33,-0.54l-0.67,-3.28l-2.96,-2.71l-0.54,-2.19l-2.79,-0.98l1.89,-3.51l-0.47,-2.52l5.34,0.21l4.6,-2.15l1.71,2.8l2.96,-1.05l0.1,1.45l3.01,2.46l5.54,-3.29l1.66,2.39l3.32,0.24l3.43,-2.53l6.36,-1.19l1.14,-3.42l1.64,-0.19l1.46,1.24l2.93,0.05l0.68,2.07l2.68,0.39l-0.34,1.84l3.12,1.77l2.56,-3.77l5.01,0.5l0.81,-1.35l2.1,0.3l1.41,-6.91l2.37,-1.28l0.59,-1.93l2.04,-0.08l1.63,-2.26l4.07,1.48l1.71,5.21l-1.17,2.41l1.39,2.78l-2.35,0.07l0.75,1.77l-3.02,4.09l0.66,1.15l-2.84,0.85l-0.52,1.91l-3.84,-0.32l0.71,2.05l-0.62,1.1l-1.74,-0.28l0.39,1.05l-4.84,-1.76l-1.35,3.2l-6.61,1.85l-2.38,2.79l-3.86,-2.66l-0.72,1.62l-3.21,0.77l1.1,1.28l-1.04,2.52l1.08,1.91l2.01,0.02l3.06,2.75l4.76,0.05l-1.16,3.53l5.89,3.99l-0.43,1.42l2.15,2.71l-1.3,0.8l-6.45,-1.48l-5.83,-3.89l-1.9,1.12l0.82,5.45l-2.29,3.15l-0.62,-2.4l-2.05,0.87l-4.67,-1.46l-3.19,2.23l-3.52,-1.37l1.83,-3.46l-1.15,-3.19l-2.47,1.32l-6.77,0.02l-1.85,1.59l-3.75,-0.58l-3.22,-3.21l3.5,-2.07l2.82,-3.82l-1.19,-1.74l-2.92,0.04l-1.41,-2.43l-0.11,-3.86l-1.32,-0.1l0.76,-4.39l-1.76,0.97Z", "name": "Jharkhand"}, "IN-JK": {"path": "M75.74,15.07l8.54,-6.06l0.38,-2.67l5.61,-0.85l7.93,0.69l0.31,-1.52l-2.95,-1.59l5.35,1.33l10.68,-4.07l3.66,2.5l3.8,-1.47l4.16,1.3l1.52,3.33l4.96,-0.03l4.41,4.78l12.46,4.82l2.07,5.14l10.82,3.67l0.98,2.94l10.13,-1.07l10.78,-6.5l2.95,0.48l7.05,-1.51l1.83,2.12l3.17,0.55l0.69,2.85l2.94,1.63l1.36,-0.8l1.66,3.3l1.8,-0.22l1.41,-2.13l2.71,1.22l-1.86,2.43l-1.49,7.61l-2.19,3.51l-2.93,0.04l-2.85,2.39l0.26,1.71l-3.31,-0.11l0.4,3.82l-2.36,3.04l-7.87,0.21l-1.11,1.22l2.11,5.38l-2.16,0.7l0.51,3.67l3.06,3.13l4.87,0.83l-0.78,3.35l2.86,3.73l-3.39,3.9l-2.72,0.15l-1.02,1.95l-2.14,0.39l-2.68,-1.86l-1.14,-3.09l-7.09,2.84l1.59,-3.02l-0.42,-1.99l-6.14,2.63l-4.95,-6.88l-6.39,2.48l-4.35,-1.38l-5.72,-4.18l-3.75,-0.69l-4.42,1.49l-5.78,4.2l-2.5,-0.45l1.8,5.42l-7.03,5.24l-7.99,-2.77l-5.66,-0.07l-0.87,-1.7l0.58,-4.6l-1.91,1.46l-3.73,-0.24l-6.87,-4.29l-5.18,-1.51l-0.95,-4.46l0.99,-3.02l-0.98,-1.32l0.08,-4.72l-3.04,-7.89l0.59,-2.48l3.11,-0.57l1.46,-3.41l5.27,-2.0l1.9,-4.22l-6.93,-1.96l-0.47,-2.15l1.6,-1.54l-0.22,-1.44l-8.06,-1.5l-3.01,-2.01l0.49,-1.71l-1.21,-0.96l-5.23,0.59l-4.29,-0.99l1.08,-1.69l-0.63,-2.78Z", "name": "Jammu and Kashmir"}, "IN-UP": {"path": "M152.88,128.33l2.84,-7.0l7.02,-7.09l4.63,2.64l-3.39,4.48l1.55,5.34l2.53,-0.95l3.47,0.76l0.76,-4.71l7.2,7.07l4.6,1.89l-3.42,1.9l3.35,3.41l2.63,-0.55l5.38,3.13l1.45,2.04l6.12,-0.46l2.84,2.48l1.93,-1.41l6.77,4.3l1.01,-1.97l6.09,4.03l4.5,1.35l2.23,4.02l1.7,-0.56l7.85,5.29l3.02,-1.02l6.39,4.02l4.64,-0.33l1.41,3.46l6.48,0.87l2.62,1.94l1.82,-2.39l7.57,1.97l3.83,7.26l2.76,0.64l0.25,2.2l2.43,1.51l-4.76,-0.13l-0.91,1.51l-2.26,0.4l0.13,1.82l4.28,1.04l-0.07,1.63l-2.81,0.45l-0.49,1.11l4.48,4.67l4.94,1.41l1.03,1.6l-1.42,0.63l-2.54,-1.04l-1.31,2.03l-2.32,-1.61l-13.8,9.29l0.09,5.78l2.91,2.28l-0.02,3.31l-2.1,0.73l0.89,2.4l-0.68,1.49l-3.12,5.2l-1.92,0.73l-3.09,-0.29l-3.86,-3.92l1.49,-2.59l-0.52,-3.76l1.43,-0.58l-1.91,-2.62l-5.13,-0.05l-0.26,1.34l-1.32,0.1l-1.95,-3.53l-4.33,-0.48l-1.96,-2.67l-4.43,-0.92l-0.69,-1.95l-2.29,0.51l0.01,1.0l-3.15,-1.07l-1.14,3.67l-1.26,0.68l-5.36,-1.03l1.65,-3.36l-0.64,-0.82l-3.12,1.21l0.87,1.13l-2.51,-1.23l-2.03,0.8l0.51,1.5l-1.05,-0.79l-1.86,0.88l2.35,-2.77l-2.4,-3.99l-1.69,-0.17l-6.3,3.05l-0.39,1.78l-4.42,-0.77l-3.25,1.84l1.69,-3.51l-2.44,0.56l0.03,-2.05l-1.21,1.18l0.44,2.23l-4.2,-0.19l0.61,-1.22l-1.08,-0.62l-2.01,1.83l1.62,-4.0l-1.42,-2.2l-1.11,2.03l-0.58,-1.67l-1.27,0.35l-0.1,2.4l-2.45,-0.81l-1.31,2.54l3.62,7.38l0.07,3.54l2.32,0.2l1.87,3.33l-2.61,3.29l-5.35,-3.27l-2.13,1.79l-0.05,-1.64l-2.04,-1.79l0.59,-2.93l-1.57,-2.97l2.63,-2.13l0.74,-3.22l-1.96,-3.62l1.89,-2.45l6.56,-1.65l-0.21,-2.31l3.74,-5.54l-0.24,-2.67l2.03,-1.46l-0.12,-1.92l-2.33,-4.75l-9.9,-2.61l-2.38,0.59l0.87,-1.43l-1.55,-0.71l-2.85,0.95l-4.97,-0.69l-5.17,2.67l0.32,-1.28l5.2,-2.5l-3.74,-1.27l2.65,-2.05l-0.97,-2.22l-2.88,-1.31l-1.9,-3.55l-0.62,-3.08l4.21,-2.58l-1.0,-1.67l1.08,-3.47l-1.19,-3.18l-2.83,-2.27l0.58,-1.29l-2.12,-2.99l-1.22,-5.0l0.17,-5.15l-1.51,-2.36Z", "name": "Uttar Pradesh"}, "IN-SK": {"path": "M346.78,155.29l3.26,-1.87l3.45,1.74l0.61,2.4l-1.92,5.4l2.53,3.83l-2.67,2.42l-3.41,-0.48l-2.67,1.56l-4.42,-1.05l-1.19,-3.65l2.45,-6.69l-1.01,-2.63l4.99,-1.0Z", "name": "Sikkim"}, "IN-CT": {"path": "M207.73,313.51l1.43,-1.74l-1.32,-2.4l2.22,-4.5l2.6,-2.3l2.73,2.15l3.14,-3.76l-8.05,-7.36l1.77,-0.29l0.47,-2.26l-0.64,-1.8l-1.8,-0.21l0.16,-1.12l3.35,-1.51l0.24,-3.24l-0.33,-1.87l-2.05,0.14l1.33,-1.61l-0.39,-3.89l-1.96,-1.27l0.4,-2.19l3.73,-2.8l1.05,-7.5l1.42,-1.1l1.34,-4.73l1.7,0.36l2.77,-6.87l3.04,-0.46l1.13,1.03l3.92,-1.97l2.18,-1.97l0.32,-3.08l2.67,-1.76l0.13,-1.67l3.64,-1.89l0.53,-2.92l-1.2,-1.11l-6.3,-3.12l-2.15,0.99l-0.49,-0.94l1.59,-2.28l-1.02,-2.99l2.75,1.5l2.3,-0.77l10.17,1.11l4.69,-3.79l5.14,1.44l2.13,-0.78l1.91,-3.07l1.71,0.29l4.32,5.33l0.89,3.55l2.87,0.65l0.99,-1.35l-0.82,4.14l1.46,0.51l0.05,3.71l1.54,2.59l3.1,0.07l0.85,1.55l-6.16,5.02l-0.54,3.52l-6.86,4.31l-0.81,2.85l0.87,2.03l-1.59,0.74l-2.45,5.31l1.01,2.51l-1.75,-0.29l-2.2,4.0l-2.92,-1.0l-5.45,0.47l-3.4,5.15l-2.06,-0.21l1.18,14.0l4.83,1.31l0.2,2.26l-1.73,1.09l-0.03,-1.15l-1.91,-0.56l-2.96,0.76l-1.32,-2.43l-2.45,-1.5l-0.89,0.76l-1.43,-1.58l-2.48,2.53l0.28,1.42l3.41,2.25l-0.07,4.39l2.33,1.8l-0.39,3.02l1.4,4.88l-1.43,2.81l-3.94,2.03l0.56,1.38l-6.83,5.09l-2.68,7.7l-3.74,-0.52l-1.94,1.05l-1.25,-6.32l-1.53,0.14l-0.83,-1.33l-1.36,0.85l0.67,-1.23l-1.9,-3.52l-2.91,-2.67l-2.6,-0.12l-1.28,-1.89ZM211.08,295.03l-0.15,0.51l-0.66,-0.15l0.41,-0.14l0.4,-0.21Z", "name": "Chhattisgarh"}, "IN-CH": {"path": "M146.62,107.62l1.42,-0.18l0.13,1.29l-0.3,0.11l-1.25,-1.22Z", "name": "Chandigarh"}, "IN-GA": {"path": "M95.17,365.34l2.0,-0.83l2.36,2.59l4.45,-0.17l1.14,5.5l-1.05,0.61l0.85,1.16l-1.0,3.92l-2.12,0.85l-2.68,-3.13l0.73,-1.18l-1.24,-3.31l-1.35,-0.58l2.61,0.01l-2.77,-1.4l1.13,-1.18l-1.94,0.32l-0.28,-1.24l1.75,-1.2l-2.17,0.31l-0.41,-1.06Z", "name": "Goa"}, "IN-GJ": {"path": "M0.53,229.99l2.03,-0.82l-1.75,-2.16l1.45,-1.98l7.99,-1.05l0.27,-5.96l1.21,1.56l1.25,-1.38l1.01,1.08l10.24,-0.33l2.62,1.85l4.44,0.06l2.44,-2.4l7.49,-2.04l0.07,2.52l3.49,0.77l5.74,-3.16l-2.09,-3.15l1.74,-1.52l12.78,0.92l3.86,-1.23l6.07,3.14l0.81,1.57l1.58,-1.33l6.08,2.56l3.16,-2.53l0.04,1.68l1.97,0.38l-1.84,1.23l-0.08,2.54l2.71,2.61l1.75,-1.49l0.99,2.36l-1.09,2.79l2.54,1.61l0.01,1.68l1.87,-0.02l0.22,2.81l3.19,0.13l4.71,2.82l6.2,7.27l-1.64,3.3l-5.53,2.09l1.21,1.96l2.39,0.3l-3.16,0.97l1.16,6.18l-5.43,2.09l0.47,2.75l-1.48,1.16l1.5,2.15l7.87,-0.71l-4.31,0.97l-2.13,2.92l-1.83,0.07l-1.84,2.01l-2.65,-0.3l5.44,4.06l0.64,3.15l-3.34,3.42l-4.15,-2.67l-1.74,1.21l1.51,2.17l-1.65,2.81l0.35,3.05l-1.83,-0.2l-1.13,1.35l-0.6,-1.14l-1.62,0.64l1.34,-2.0l-1.38,-1.35l-3.13,1.62l0.86,2.08l-3.29,0.7l1.07,-4.12l1.75,-0.9l1.11,-6.36l-1.76,-2.84l0.77,-0.9l-1.45,-0.61l0.15,-1.97l-1.51,-0.04l0.08,-1.32l-2.18,-1.2l0.22,-1.82l2.28,-1.64l-2.54,0.65l3.63,-3.09l5.44,-2.41l-10.22,1.39l1.43,-3.9l2.04,-1.24l-3.49,0.96l0.17,-3.72l1.0,-0.79l2.5,0.7l3.04,-1.82l-9.02,-0.09l-0.37,-2.01l-1.29,1.83l-2.91,-0.32l2.54,1.44l-0.04,2.17l-2.04,1.5l-1.33,-0.48l-1.31,1.24l1.0,1.74l-1.63,-0.14l0.09,1.32l2.92,0.15l2.09,2.12l-3.28,7.46l-16.26,7.34l-6.74,0.8l-11.53,-7.28l-18.96,-19.46l1.23,-2.36l0.6,0.94l2.01,-0.39l-0.58,1.38l1.06,1.16l16.61,-4.95l3.48,-5.91l2.25,-1.39l-0.07,-2.46l-2.06,0.33l-0.21,2.38l-4.2,-0.9l-7.31,4.18l-2.11,-0.23l-6.5,-1.54l-11.04,-6.97l1.01,-1.0l-2.99,-2.08l0.93,-1.12l-1.32,-1.53l1.14,0.15l5.75,-5.02l-3.52,0.83l-5.15,4.15l-2.51,-0.17ZM4.83,231.53l0.07,0.19l-0.05,0.03l-0.05,-0.0l0.03,-0.22ZM67.71,259.32l0.54,-0.08l0.2,0.75l-0.35,-0.37l-0.38,-0.29ZM77.2,272.49l0.02,0.29l-0.3,0.15l-0.09,-0.12l0.37,-0.31ZM23.94,250.9l-0.04,-0.27l-0.14,-0.38l0.18,0.38l-0.0,0.27Z", "name": "Gujarat"}, "IN-RJ": {"path": "M62.78,212.21l-12.75,-0.95l-3.46,-7.91l-3.31,-3.99l-0.05,-4.81l-6.76,-0.48l-2.97,-3.85l1.24,-10.33l-1.9,-1.1l-4.78,-0.08l-4.99,-2.81l1.05,-5.86l13.67,-15.02l3.03,-0.09l2.92,4.63l2.28,0.79l6.86,-2.47l10.96,-1.84l0.89,-3.24l4.14,-3.75l3.44,-7.0l9.89,-4.84l5.2,-8.4l2.35,-6.68l6.19,-1.97l3.6,-2.51l-1.26,3.64l10.5,0.6l0.57,1.08l-1.52,1.87l2.49,0.18l0.09,4.4l-1.25,0.84l1.42,2.11l3.91,-1.15l4.23,2.86l3.99,-1.02l1.12,0.69l3.46,10.32l7.9,7.37l-1.96,1.35l1.07,0.95l-1.34,2.15l1.11,1.84l4.18,0.4l-0.66,-4.09l2.68,0.3l0.35,-1.83l1.45,-0.14l-0.17,1.64l2.35,1.66l4.7,-4.43l1.37,1.39l-0.79,7.9l3.51,-0.94l-0.48,-1.13l3.64,-0.01l1.0,4.33l5.32,5.79l-2.63,1.96l2.99,1.54l-4.44,1.92l-0.26,1.99l5.81,-2.5l4.89,1.12l1.79,-1.36l1.89,0.2l-2.35,1.97l-0.31,1.79l-2.96,0.33l-3.21,2.7l-10.13,4.61l-6.6,5.4l-3.24,1.24l-1.3,2.2l1.28,4.93l3.78,2.22l6.97,-0.08l2.95,-1.51l0.51,4.36l-9.23,2.37l0.59,2.07l-1.7,1.26l4.06,2.34l0.69,1.85l-2.1,1.11l-0.68,-1.17l-1.52,0.12l1.07,6.57l-3.0,-0.8l-0.21,-1.51l-2.66,1.69l-4.95,-1.24l-0.89,-1.19l-3.37,6.7l-4.37,0.8l-0.51,2.07l-1.35,-0.43l-1.75,-1.9l0.32,-1.33l3.54,0.68l1.6,-2.01l-1.07,-1.24l0.98,-2.01l-1.19,-2.3l2.37,-1.21l-1.08,-3.98l-1.39,-1.19l-5.15,1.32l-4.16,-0.44l0.24,-1.87l2.1,0.52l1.43,-1.05l-0.32,-0.59l-1.79,0.27l-0.63,-0.22l1.29,-0.25l-0.22,-2.45l-3.4,0.34l-0.78,2.56l-1.52,0.43l-3.17,-1.03l0.27,2.67l2.36,0.31l-1.48,1.46l-1.97,-1.69l-1.1,4.65l2.29,1.21l-1.97,2.86l2.45,0.82l1.59,3.2l-1.1,3.08l0.61,2.88l-1.38,2.57l-5.73,4.12l3.18,2.13l-3.78,1.62l-2.38,0.3l-6.19,-5.31l-5.64,-1.45l-0.2,-2.66l-1.91,-0.11l-0.01,-1.58l-2.41,-1.55l1.11,-2.43l-1.25,-2.92l-1.99,1.4l-2.3,-2.29l0.09,-1.99l1.91,-1.49l-2.14,-0.81l-0.11,-1.76l-2.01,0.26l-1.45,2.17l-6.07,-2.56l-1.43,1.37l-0.61,-1.49l-2.61,-0.98l1.21,-0.3l-0.35,-0.9l-4.71,-1.09l-4.05,1.24ZM140.11,152.01l-0.12,-0.06l-0.07,-0.06l0.14,0.05l0.05,0.07Z", "name": "Rajasthan"}, "IN-MP": {"path": "M104.86,258.34l-2.13,-0.15l-1.24,-5.61l2.49,-0.52l0.7,-1.26l-3.73,-1.53l5.82,-2.44l1.6,-3.27l-1.73,-1.19l-0.51,-2.36l6.6,-2.18l-3.3,-2.19l5.59,-3.93l1.56,-2.91l-0.61,-2.91l1.12,-3.2l-1.8,-3.58l-2.17,-0.42l1.88,-2.79l-2.31,-1.44l1.0,-3.79l2.3,1.61l1.28,-2.17l-2.5,-0.63l-0.26,-1.74l2.82,1.16l1.85,-0.64l0.65,-2.43l2.52,-0.17l0.17,1.58l-1.23,0.74l2.55,0.28l-1.68,0.44l-1.75,-0.87l0.05,3.29l4.55,0.53l5.07,-1.31l0.89,0.9l1.02,3.51l-1.76,-0.04l-0.63,1.4l1.19,2.29l-0.97,2.13l1.05,1.04l-1.15,1.48l-3.39,-0.68l-0.97,1.25l2.17,3.19l1.82,0.45l0.66,-2.08l4.4,-0.94l2.35,-3.09l0.13,-3.04l0.55,-0.4l0.6,1.11l5.14,1.29l2.52,-1.72l-0.2,1.21l1.93,1.3l2.0,-0.28l0.63,-1.23l-1.49,-5.55l1.68,1.36l2.67,-1.72l-0.88,-2.26l-3.88,-2.12l1.66,-0.81l-0.58,-2.11l9.02,-2.09l-0.25,-4.87l-1.66,-0.82l-1.76,1.72l-4.32,0.59l-4.54,-1.22l-2.05,-2.72l0.01,-4.26l10.13,-7.13l10.19,-4.65l3.12,-2.65l2.97,-0.31l0.51,-1.91l3.09,-1.04l10.69,2.53l2.14,5.84l-2.02,1.46l0.2,2.74l-3.61,5.25l0.2,2.4l-6.31,1.48l-2.23,2.79l1.92,3.76l-0.65,2.99l-2.72,2.51l1.59,3.06l-0.55,3.03l2.08,1.87l0.26,1.83l2.34,-1.71l5.6,3.26l3.01,-3.64l-1.81,-3.83l-2.51,-0.42l0.08,-3.26l-3.58,-7.22l1.2,-2.06l2.47,1.03l0.07,-2.62l1.81,1.35l0.64,-1.87l0.85,1.64l-1.64,3.4l0.58,1.17l2.11,-1.84l0.21,1.8l4.52,0.21l1.55,-1.99l-0.33,3.57l3.5,-1.83l4.27,0.8l1.34,-0.62l-0.42,-1.38l7.08,-2.87l2.24,3.65l-2.58,1.56l0.64,1.68l3.38,-0.12l0.77,-0.68l-0.89,-0.86l1.54,-0.64l2.57,1.13l-0.25,-1.28l2.18,-1.04l-1.46,3.91l5.87,1.36l1.82,-1.02l0.95,-3.41l2.86,1.1l1.87,-1.59l0.65,1.88l4.5,0.97l2.01,2.7l4.27,0.53l1.62,3.46l2.2,-0.01l0.39,-1.4l4.37,0.01l1.73,2.01l-1.37,0.42l0.47,3.92l-1.55,2.55l2.09,3.15l-2.5,2.53l-2.29,1.05l-9.6,-1.17l-2.18,0.78l-2.02,-1.49l-1.43,0.31l1.03,3.19l-1.58,2.14l0.64,1.56l2.45,-0.81l2.73,0.76l4.34,3.06l-0.52,2.57l-3.57,1.74l-0.1,1.63l-2.59,1.6l-0.41,3.24l-2.04,1.85l-3.56,1.85l-1.11,-1.01l-3.52,0.67l-2.84,6.91l-1.32,-0.66l-1.36,2.15l-3.41,10.97l-3.67,-1.11l0.03,-1.39l-3.74,-2.77l-3.35,1.49l-2.52,0.33l-1.62,-1.11l-3.29,0.94l-1.26,-2.09l-4.07,-0.91l-5.69,2.28l-0.42,1.23l-7.77,0.02l-1.53,-2.0l-7.71,3.84l-5.6,0.27l-2.24,-1.9l2.46,-0.53l-0.51,-2.99l-3.91,-1.26l-9.01,3.01l-3.18,4.44l-0.1,2.29l-5.64,2.23l-2.72,-1.12l-0.71,-3.89l-14.9,-0.59l-3.34,-2.9l-5.24,-0.67l-3.08,-1.75l-0.52,-3.77l-1.43,-1.46l-2.53,1.35Z", "name": "Madhya Pradesh"}, "IN-MH": {"path": "M77.42,294.44l1.89,-4.03l2.76,-0.37l0.92,1.41l2.64,0.22l2.05,-2.8l2.11,0.08l-0.18,-3.5l1.63,-2.74l-1.21,-2.02l0.68,-0.85l3.27,2.71l3.05,-1.04l1.93,-2.9l-0.59,-3.32l-5.06,-3.38l1.87,0.26l1.82,-1.96l1.97,-0.21l2.13,-2.91l4.57,-1.53l-0.71,-0.96l-7.71,1.09l-0.93,-1.36l1.44,-1.19l-0.71,-2.24l10.06,-3.38l1.61,4.86l1.78,1.33l6.93,1.48l2.18,2.46l3.01,0.84l13.13,0.22l0.33,3.57l3.25,1.46l6.06,-2.39l0.22,-2.43l2.96,-4.22l8.73,-2.93l3.38,0.99l0.37,2.38l-2.39,0.4l1.16,2.73l3.7,0.28l5.74,-1.03l5.58,-3.19l1.08,1.98l4.65,0.59l3.91,-0.69l0.32,-1.2l5.33,-2.2l3.76,0.78l1.6,2.21l3.3,-0.94l2.12,1.1l5.22,-1.76l3.45,2.52l0.04,1.5l4.6,0.98l-3.46,2.65l-0.69,2.41l0.54,1.66l1.49,0.44l0.28,3.72l-1.29,1.6l2.17,0.05l0.17,1.37l-0.12,2.95l-3.42,1.65l-0.1,1.76l1.94,0.31l0.39,1.26l-0.36,1.92l-1.77,0.3l0.91,1.06l-1.26,1.34l2.25,-0.31l2.78,3.62l3.26,2.01l-2.66,3.04l-2.6,-2.04l-1.8,1.2l-3.61,6.03l1.2,2.75l-1.41,1.88l-2.52,0.03l-2.57,-1.96l0.21,-3.63l-1.33,-0.34l1.35,-1.96l0.35,-4.38l-2.92,-2.96l-3.94,1.35l-6.76,-2.37l-3.31,1.27l-3.48,-3.46l-8.14,-1.77l1.26,3.0l-1.69,3.93l-1.54,0.71l-0.62,2.88l-3.98,-1.17l-1.32,0.72l-1.99,4.45l2.72,3.42l-5.97,5.65l-1.01,2.27l0.92,0.97l-1.56,0.51l-1.89,-2.8l-1.48,-0.04l-3.04,4.38l-3.22,0.72l-0.63,4.32l-1.9,-0.04l-1.27,3.17l-2.53,-1.07l-3.66,2.91l0.73,4.29l-6.97,0.42l-1.0,-1.44l-1.7,0.65l-2.79,-1.7l-1.4,1.79l1.45,6.76l-6.21,0.28l-1.56,1.56l-3.48,-1.47l-2.25,1.77l0.33,1.6l-2.98,0.88l-0.38,1.77l-1.52,0.82l-2.18,-1.58l-1.51,1.74l-1.93,0.1l-0.44,1.31l1.91,1.33l-0.23,2.17l2.48,0.77l-0.0,1.97l-1.46,0.67l0.82,0.97l-1.68,4.22l-2.23,-0.21l-3.39,2.64l-2.61,-2.86l-2.99,0.87l-3.27,-5.49l0.54,-2.25l-1.27,-0.6l-1.52,-4.66l0.98,-0.14l-1.03,-1.31l0.9,-0.39l-1.38,-2.18l-0.77,-9.48l-1.98,-4.34l1.04,-0.91l-1.18,-0.48l-1.97,-6.53l0.64,-0.91l-1.01,-0.18l-0.56,-2.57l1.75,0.89l0.28,-1.56l-3.07,-2.88l0.35,-1.42l1.76,0.9l-2.78,-4.38l1.07,-1.34l0.97,1.44l0.67,-1.47l-1.88,-1.64l2.65,-1.9l-1.18,-0.3l-0.49,-2.66l-2.86,3.58l0.61,-4.61l-0.82,-0.96l2.9,0.35l0.82,1.41l0.76,-0.67l-4.77,-2.66l-0.2,-1.38l2.21,-1.08l-2.81,-1.08l0.29,-3.25l-1.4,-1.08ZM82.39,322.05l-0.13,-0.03l0.05,-0.07l0.08,0.1Z", "name": "Maharashtra"}, "IN-TN": {"path": "M138.72,435.84l1.71,0.13l2.33,-2.13l1.35,1.46l4.31,0.13l1.88,-3.13l2.97,1.0l5.38,-0.72l1.52,-2.37l3.05,-0.75l1.74,-2.38l-0.53,-1.49l-4.6,-1.28l2.36,-2.41l0.02,-4.44l2.66,-0.81l0.66,-2.35l2.99,0.96l1.0,-0.73l6.5,3.65l2.8,-2.47l2.4,-4.8l7.4,0.24l4.49,-3.02l0.74,-1.98l5.32,1.98l-0.17,-1.3l3.31,-1.2l1.8,-2.55l4.23,1.63l-3.04,15.78l-3.61,4.36l-1.6,4.43l-3.12,-0.18l0.61,2.26l1.71,0.56l-0.93,4.11l1.18,3.05l-2.45,1.57l2.65,-0.46l0.3,5.65l-2.5,0.95l2.46,2.59l0.15,8.49l-4.43,-1.07l-5.22,1.6l-0.95,1.63l0.5,2.3l-4.82,6.15l-1.2,3.39l3.66,3.51l-2.66,-0.31l-10.07,3.44l-3.4,3.51l-2.08,8.66l-8.56,4.83l-3.83,-0.79l-2.94,-2.26l2.51,-4.29l-1.57,-2.0l1.13,-3.52l-1.49,-2.5l4.06,-7.96l-1.11,-2.22l-2.61,-0.2l1.53,-10.49l-1.56,-2.57l-4.05,2.11l-1.86,-1.34l-0.31,-5.35l1.16,-2.59l-3.64,-3.05l1.55,-1.48l-1.11,-3.28l-4.48,0.31l1.58,-2.24l-4.91,-2.42l-0.25,-1.55ZM196.1,457.66l0.01,0.02l-0.04,-0.01l0.03,-0.01ZM190.2,475.42l0.81,-0.43l0.31,-0.1l0.01,0.86l-1.13,-0.33Z", "name": "Tamil Nadu"}, "IN-PY": {"path": "M197.59,429.12l0.03,-0.04l0.16,0.21l-0.19,-0.17ZM197.81,429.32l2.0,0.79l-0.4,1.2l-1.29,-0.35l-0.31,-1.63ZM198.3,447.14l1.61,-0.72l0.04,2.3l-0.34,-0.94l-1.32,-0.64ZM121.43,428.25l0.01,-1.04l0.85,-0.02l-0.04,0.65l-0.82,0.41ZM122.88,426.66l0.07,-0.06l0.22,0.06l-0.04,0.04l-0.25,-0.04Z", "name": "Puducherry"}, "IN-AP": {"path": "M147.21,377.5l0.44,-1.34l4.75,1.41l1.62,-2.31l-0.38,-3.17l-2.15,-3.03l0.48,-2.51l1.32,-0.51l-0.85,-3.49l1.97,-1.4l4.74,0.25l0.95,-1.01l1.09,-6.08l-4.84,-1.68l3.12,-3.22l0.37,-6.71l-1.62,-3.18l5.35,-5.95l-4.63,-1.19l3.62,-5.25l-1.16,-2.52l0.43,-3.55l-1.27,-1.62l1.34,-2.56l1.79,-0.63l0.27,-1.79l3.49,-2.7l-2.72,-3.61l2.08,-4.33l4.77,0.91l0.94,-3.13l1.55,-0.73l1.78,-4.25l-1.37,-2.52l2.23,1.45l5.2,0.4l3.44,3.47l3.48,-1.25l6.88,2.38l3.48,-1.49l2.75,2.67l-0.43,4.17l-1.32,1.69l1.38,0.81l-0.35,3.73l3.03,2.25l3.49,-0.26l0.9,1.99l3.99,0.9l3.14,4.76l-0.53,1.54l1.83,-0.63l0.58,1.28l1.31,-0.24l1.5,6.46l2.2,-1.04l7.35,0.66l7.91,-4.19l3.57,0.77l1.65,-1.18l-0.43,-2.56l2.04,-5.19l3.09,4.96l2.96,-3.41l1.7,1.27l2.3,-0.46l1.13,-2.78l-0.99,-1.77l1.61,-1.94l4.56,-1.64l-1.46,-2.43l2.14,0.61l2.83,-2.74l2.04,3.27l1.04,-1.22l1.72,3.32l4.71,0.42l3.38,-0.78l2.19,-3.44l3.64,-1.53l0.6,0.67l-10.94,12.93l-11.35,6.55l-1.79,3.34l-1.69,0.12l0.68,0.95l-0.95,1.13l-14.67,8.22l-2.1,3.28l1.94,1.71l-0.46,2.5l-0.93,0.9l0.15,0.74l-9.59,4.43l-6.97,-0.9l-1.25,0.87l-1.69,5.94l-2.58,2.81l-1.51,-3.9l-1.23,4.45l-0.7,-1.9l-1.93,-0.44l-6.91,3.62l-3.97,10.63l2.36,9.26l-0.26,3.42l-2.19,2.58l1.39,-0.22l1.97,9.85l-1.24,-1.78l-1.12,0.52l-0.9,1.62l0.78,1.42l-1.1,-0.14l-1.25,2.78l-3.37,1.23l0.4,1.17l-5.22,-1.99l-0.98,2.08l-4.32,2.94l-7.44,-0.23l-1.54,1.25l-1.13,3.77l-3.49,2.12l-1.85,-1.74l0.12,-1.38l1.74,-1.02l2.02,0.79l-0.78,-1.49l2.64,-5.55l-3.73,-1.95l0.29,-3.76l-4.91,-1.36l-0.05,-3.18l-2.87,0.01l0.18,-2.01l-2.82,0.49l-1.89,2.83l-2.96,1.15l-1.65,-2.42l-4.15,-1.12l-1.17,1.13l0.56,1.36l-2.38,-0.08l0.89,-2.2l-2.41,-4.01l3.73,2.73l2.99,-0.11l1.9,2.1l-0.5,-4.4l2.0,-0.75l0.05,-1.88l-1.87,-1.16l-0.16,1.54l-3.92,-1.71l-1.19,1.93l-2.33,-0.39l-0.91,-1.66l1.2,-1.82l-1.87,-0.37l-1.33,-2.05l1.4,-5.36l-1.6,-1.11ZM241.14,347.68l-1.28,0.29l1.67,0.8l1.04,-0.77l-1.44,-0.32ZM170.35,400.03l-0.29,0.11l-0.07,-0.12l0.12,0.02l0.24,-0.01ZM204.99,403.4l0.13,0.04l0.32,0.03l-0.5,0.02l0.05,-0.09ZM205.95,403.55l0.66,0.02l0.06,0.04l-0.3,0.03l-0.43,-0.09ZM283.44,306.82l-0.05,-0.33l0.23,-0.01l-0.03,0.14l-0.14,0.2ZM218.16,363.29l0.61,0.35l0.7,0.57l-0.67,0.03l-0.64,-0.95Z", "name": "Andhra Pradesh & Telangana"}, "IN-TR": {"path": "M393.78,229.6l1.32,-4.51l2.43,-3.12l3.63,0.07l0.87,-1.61l1.68,0.6l0.11,-1.3l2.25,1.35l0.71,-3.23l3.2,-0.8l0.86,-2.59l1.07,0.65l-0.16,3.9l1.76,1.19l-0.08,5.4l-1.84,3.31l-0.86,-1.21l-2.13,1.54l-1.95,-1.23l0.28,3.93l-3.03,2.96l0.52,4.06l-1.38,1.39l-2.56,0.21l-2.61,-4.85l-0.79,3.31l-0.77,-4.75l-2.52,-4.67Z", "name": "Tripura"}, "IN-AR": {"path": "M404.16,164.61l-2.57,-2.04l0.63,-3.23l5.62,0.57l2.31,-1.45l2.4,-0.47l0.77,0.87l4.04,-1.28l2.88,-1.9l-0.18,-2.81l7.05,-3.96l2.16,-2.99l17.69,-6.75l1.64,-1.54l-1.0,-2.03l5.25,-2.91l2.77,2.54l8.75,1.98l0.57,-1.43l3.72,-0.07l0.69,-1.82l2.77,0.33l1.08,-2.12l5.76,-0.29l1.62,2.15l1.93,-0.58l-3.12,2.65l0.8,1.59l2.3,-1.09l3.81,4.73l0.31,1.39l-2.72,2.0l1.01,3.21l1.55,-2.68l2.05,-0.05l3.43,4.01l3.73,-0.19l3.42,2.48l-0.52,2.03l1.14,1.55l-0.42,1.53l-1.85,-0.11l-6.26,5.26l0.36,2.93l4.11,5.69l-3.99,-1.46l-2.82,-3.27l-9.74,1.76l-14.99,10.4l-1.18,-6.17l4.09,-1.7l1.8,-2.19l6.3,-0.07l2.01,-1.75l-0.52,-1.68l-1.49,0.35l-1.92,-4.76l3.17,-4.91l-11.66,1.57l-13.27,4.98l-4.82,-0.75l-0.19,2.18l-6.77,5.59l-0.34,1.74l-5.81,2.45l-7.78,-0.07l-5.49,-1.93l-10.25,2.48l-1.64,-2.89l1.71,-3.26l-1.59,-2.74l-4.29,0.39Z", "name": "Arunachal Pradesh"}, "IN-KA": {"path": "M102.19,366.07l1.43,-1.54l2.51,0.0l1.72,-4.08l-0.69,-1.37l1.39,-0.63l0.0,-2.31l-2.56,-1.06l0.61,-1.79l-1.67,-1.74l2.85,-2.01l1.87,1.6l2.05,-0.95l0.48,-1.85l2.9,-0.81l-0.07,-1.81l1.86,-1.45l3.28,1.46l1.62,-1.56l6.48,-0.38l0.42,-2.26l-1.61,-4.91l1.02,-1.32l2.36,1.72l1.72,-0.59l1.04,1.44l7.45,-0.55l-0.54,-4.44l3.31,-2.68l2.87,0.97l1.14,-3.09l2.04,-0.22l0.59,-4.26l3.16,-0.65l2.45,-2.2l0.59,-2.17l2.69,2.97l2.26,-0.28l-0.43,3.39l1.17,2.38l-3.63,5.52l4.55,1.12l-5.22,5.61l1.58,3.44l-0.43,6.75l-3.13,2.98l4.99,2.16l-1.02,1.14l-0.13,4.44l-5.28,0.37l-2.34,1.69l0.73,3.57l-1.95,2.81l2.82,6.27l-1.33,2.09l-4.9,-1.37l-0.81,2.01l1.76,1.09l-1.39,5.33l1.6,2.47l1.65,0.1l-1.26,1.55l1.12,2.21l2.93,0.43l1.02,-1.9l3.97,1.81l0.14,-1.62l1.18,0.65l0.09,1.4l-2.37,1.14l1.15,3.73l-1.39,-1.98l-3.08,0.07l-1.84,-0.94l-0.68,-1.9l-1.84,0.25l2.24,4.52l-0.56,2.93l3.02,-0.24l-0.11,-1.72l1.07,-0.35l3.18,0.79l0.99,2.44l1.01,0.01l3.2,-1.1l1.9,-2.97l2.25,-0.3l-0.29,2.07l2.71,-0.45l-0.16,3.4l5.1,1.22l0.26,4.55l3.09,0.61l-2.66,5.67l0.85,0.97l-1.81,-0.75l-1.9,1.18l-0.08,1.38l-6.55,-1.86l-1.62,2.78l-2.6,0.78l-0.1,4.61l-2.41,2.77l5.2,2.33l-1.73,2.32l-2.89,0.62l-1.31,2.26l-5.27,0.68l-1.78,-1.25l-1.7,0.55l-1.36,2.82l-3.93,-0.06l-0.8,-1.31l-2.08,0.45l-5.28,-3.02l-0.46,-1.76l-4.36,-0.04l-0.95,-1.75l-6.31,-3.87l-0.29,-2.87l-2.04,-1.21l0.17,-1.19l-6.9,-2.93l1.43,-1.37l-2.12,-0.15l-2.11,-8.62l-0.33,-4.08l1.07,-0.68l-1.57,-0.83l-2.53,-5.59l-1.06,-3.43l1.19,-0.49l-1.5,-0.75l-0.61,-2.36l0.76,-0.74l-1.54,-1.7l-0.53,0.88l0.62,-1.32l-1.2,-0.22l-0.38,-1.84l-2.39,-1.04l2.16,-1.16l-0.83,-0.86l1.4,-2.0l0.44,-2.81l-0.87,-0.83l1.07,-0.85l-1.17,-5.71l-2.36,-0.64ZM104.81,351.5l-0.15,0.0l-0.09,0.02l0.05,-0.17l0.19,0.14ZM103.51,378.94l-1.03,0.72l-0.24,0.04l0.67,-0.74l0.6,-0.02Z", "name": "Karnataka"}, "IN-PB": {"path": "M97.93,114.54l3.48,-2.69l4.46,-6.18l5.75,-3.22l-2.43,-1.84l1.89,-4.89l-2.1,-4.29l0.89,-1.77l4.63,-3.24l7.85,-2.16l1.39,-2.09l-0.55,-1.16l2.97,0.54l5.74,-3.51l0.72,1.16l-5.07,2.89l0.66,1.44l-1.22,1.79l5.18,1.89l5.13,11.18l2.03,0.16l1.28,-1.88l1.25,2.11l2.29,0.51l0.58,4.0l3.71,3.21l-2.33,1.53l2.69,1.39l0.89,2.49l-0.18,2.39l-2.31,-1.2l-0.59,1.53l-3.15,1.69l1.64,1.11l-1.66,1.57l-1.98,-1.74l-0.71,1.13l-2.99,-0.13l0.16,4.64l-2.88,1.7l-2.42,0.13l-1.65,-1.39l-1.71,1.04l-4.33,-0.66l-3.37,4.21l-0.85,-1.75l0.95,-1.32l-0.94,-1.54l-1.43,0.23l-0.21,-1.84l-1.78,0.9l-3.09,-1.94l-3.01,1.23l-12.68,-1.16l1.57,-3.03l-2.2,-3.15Z", "name": "Punjab"}, "IN-ML": {"path": "M384.53,190.04l6.02,0.38l0.96,1.82l2.69,-0.53l0.75,2.36l5.32,-2.72l1.11,-2.5l1.26,1.79l2.35,-2.69l1.88,0.86l5.6,-0.81l-1.53,1.46l-0.1,5.18l3.94,-1.14l3.5,3.01l1.29,-0.42l-1.61,1.89l3.54,2.51l0.16,1.68l-6.72,3.51l-6.12,-2.82l-6.79,0.98l-6.89,-1.33l-14.84,0.89l-9.21,-2.29l-0.12,-2.14l3.36,-2.7l-1.02,-1.9l0.54,-1.75l2.39,-2.42l4.36,-1.04l2.52,0.54l-0.06,1.26l1.46,-0.94Z", "name": "Meghalaya"}, "IN-MN": {"path": "M425.43,221.5l2.21,-11.63l1.38,-0.3l3.78,-7.82l3.11,1.23l3.55,-4.21l-0.67,-1.38l9.29,0.43l3.85,-2.69l-0.56,2.49l1.62,1.22l-1.34,3.97l2.42,1.34l0.25,1.59l-7.07,11.87l-2.89,8.19l-6.79,-2.79l-4.23,0.79l-1.86,-2.19l-1.47,1.03l-4.55,-1.14Z", "name": "Manipur"}, "IN-OR": {"path": "M226.99,329.12l2.54,-7.34l3.24,-1.5l3.69,-3.76l-0.66,-1.19l3.99,-1.99l1.52,-3.18l-1.03,-8.22l-2.36,-1.89l0.12,-4.27l-3.74,-3.22l1.88,-2.21l1.11,1.51l1.18,-0.71l2.17,1.37l1.58,2.62l2.98,-0.82l1.49,0.4l0.3,1.39l2.49,-1.4l-0.35,-3.16l-4.63,-1.07l-1.2,-13.37l1.96,0.32l3.22,-5.03l5.16,-0.42l3.12,0.98l2.4,-4.08l1.83,0.23l-0.84,-2.85l2.35,-5.05l1.69,-0.97l-0.87,-2.2l0.71,-2.48l6.79,-4.22l0.37,-2.57l5.5,3.61l3.6,-1.68l6.65,-0.0l2.51,-1.21l0.5,2.44l-1.87,4.13l4.22,1.35l3.24,-2.27l4.43,1.46l1.83,-0.77l-0.2,1.69l1.2,0.62l2.6,-2.21l-0.61,-6.71l1.55,-0.83l5.38,3.85l2.26,-0.07l8.03,4.32l1.1,2.97l2.12,-1.1l1.56,2.51l2.92,0.79l0.69,2.38l-5.96,1.73l-4.33,4.46l-0.41,3.1l2.06,4.68l-1.42,0.62l1.9,0.57l-0.84,0.5l0.93,0.79l-4.17,2.8l-0.58,2.21l0.89,0.25l-4.64,2.7l-1.84,3.14l-4.11,-2.31l0.19,1.39l3.19,1.78l-12.83,4.0l-0.1,-2.75l-2.53,-0.33l-3.84,2.83l-2.06,3.72l1.39,0.71l-6.45,5.8l-1.73,-0.51l-0.4,1.15l-3.48,1.08l-2.54,3.76l-6.97,0.05l-1.51,-3.14l-1.54,0.25l-1.91,-2.64l-1.75,1.97l-1.01,-0.96l-0.3,1.81l-2.65,-0.21l1.57,2.28l-4.39,1.5l-1.8,2.14l0.15,4.29l-1.97,0.42l-2.03,-1.23l-3.14,3.24l-1.47,-4.49l-1.45,-0.31l-2.39,5.61l0.43,2.55l-1.4,0.83l-3.38,-0.85l-7.93,4.19l-2.88,-0.1ZM298.34,296.51l-0.62,0.35l-0.03,0.01l0.46,-0.28l0.19,-0.08ZM297.25,297.03l-0.85,0.25l-0.11,-0.31l0.7,-0.22l0.25,0.27ZM292.21,299.97l0.67,-1.94l0.72,0.21l-0.07,1.01l-1.32,0.73ZM294.08,298.07l0.49,-0.42l0.52,0.01l-0.71,0.75l-0.3,-0.34Z", "name": "Odisha"}, "IN-KL": {"path": "M115.32,415.81l6.28,2.86l2.13,5.16l6.39,3.94l1.01,1.78l4.45,0.11l0.36,1.69l4.94,1.97l0.39,1.22l-2.95,0.8l-0.21,1.55l5.26,3.31l-1.46,2.32l4.16,-0.2l1.09,2.72l-1.2,0.07l-0.18,1.63l3.59,2.9l-1.17,2.44l0.36,5.65l2.29,1.7l3.92,-2.16l0.65,0.95l-0.96,11.65l2.83,0.56l0.89,1.6l-4.05,7.86l1.47,2.77l-1.12,3.62l1.55,1.83l-1.96,3.73l-2.38,-1.19l-7.19,-8.7l1.48,-2.3l-2.39,0.53l-3.51,-8.61l-0.66,-5.64l1.46,2.63l-0.6,2.68l3.01,-0.13l-1.49,-0.87l-0.33,-4.71l-3.67,-5.31l1.06,-1.43l-1.27,-0.64l-0.24,0.93l-7.16,-19.72l-7.11,-9.17l1.41,-0.07l-0.21,-1.15l-1.0,0.38l-0.73,-0.45l1.88,-2.59l-3.11,0.31l-0.48,1.39l-5.51,-12.19ZM138.89,464.2l-0.02,-0.15l0.09,0.14l-0.07,0.01Z", "name": "Kerala"}}, "height": 518.6537485484766, "projection": {"type": "mill", "centralMeridian": 0.0}, "width": 500.0});