<!DOCTYPE html>
<html lang="en">

<head>
  <!-- India State Map  -->
  <title>India Map</title>

  <!--  Styles  -->
  <link type="text/css" rel="stylesheet" href="zcolorbrewer.css" />
  <style type="text/css">
    body {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    }

    svg {
      background: #f7f7f7;
    }

    #india {
      /*    fill: #00BCD4;
      opacity: .7; */
      stroke: #101010;
      stroke-width: .6;
    }

    div.tooltip {
      position: absolute;
      text-align: center;
      padding: 0.5em;
      font-size: 10px;
      color: #222;
      background: #FFF;
      border-radius: 2px;
      pointer-events: none;
      box-shadow: 0px 0px 2px 0px #a6a6a6;
    }

    .key path {
        display: none;
    }

    .key line {
        stroke: #000;
        shape-rendering: crispEdges;
    }

    .key text {
        font-size: 10px;
    }

    .key rect{
      stroke-width: .4;
    }

  </style>
</head>

<body>
  <div id="chart"></div>

  <script src="http://d3js.org/d3.v3.min.js"></script>
  <script src="http://d3js.org/topojson.v1.min.js"></script>

  <script type="text/javascript" src="d3.geo.min.js"></script>
  
  <script type="text/javascript">
    var w = 650;
    var h = 650;
    var proj = d3.geo.mercator();
    var path = d3.geo.path().projection(proj);
    var t = proj.translate(); // the projection's default translation
    var s = proj.scale() // the projection's default scale

    var buckets = 9,
      colors = ["#ffffd9", "#edf8b1", "#c7e9b4", "#7fcdbb", "#41b6c4", "#1d91c0", "#225ea8", "#253494", "#081d58"]; // alternatively colorbrewer.YlGnBu[9]

    var map = d3.select("#chart").append("svg:svg")
      .attr("width", w)
      .attr("height", h)
      //.call(d3.behavior.zoom().on("zoom", redraw))
      .call(initialize);

    var india = map.append("svg:g")
      .attr("id", "india");

    var div = d3.select("body").append("div")
      .attr("class", "tooltip")
      .style("opacity", 0);


    d3.json("states.json", function (json) {

      var maxTotal = d3.max(json.features, function (d) { return d.total });

      var colorScale = d3.scale.quantile()
        .domain(d3.range(buckets).map(function (d) { return (d / buckets) * maxTotal }))
        .range(colors);


      var y = d3.scale.sqrt()
        .domain([0, 10000])
        .range([0,300]);

      var yAxis = d3.svg.axis()
          .scale(y)
          .tickValues(colorScale.domain())
          .orient("right");


      india.selectAll("path")
        .data(json.features)
        .enter().append("path")
        .attr("d", path)
        .style("fill", colors[0])
        .style("opacity", 0.5)

        .on('click', function (d, i) {
          d3.select(this).transition().duration(300).style("opacity", 1);
          div.transition().duration(300)
            .style("opacity", 1)
          div.text(d.id + " : " + d.total)
            .style("left", (d3.event.pageX) + "px")
            .style("top", (d3.event.pageY - 30) + "px");
        })

        .on('mouseleave', function (d, i) {
          d3.select(this).transition().duration(300)
            .style("opacity", 0.5);
          div.transition().duration(300)
            .style("opacity", 0);
        })
        .on('mouseenter', function (d, i) {
          d3.select(this).transition().duration(300)
            .style("opacity", 0.5);
          div.transition().duration(300)
            .style("opacity", 0);

        });

      india.selectAll("path").transition().duration(1000)
        .style("fill", function (d) { return colorScale(d.total); });



      //Adding legend for our Choropleth

     
      var g = india.append("g")
                .attr("class", "key")
                .attr("transform", "translate(445, 305)")
                .call(yAxis);

            g.selectAll("rect")
                .data(colorScale.range().map(function(d, i) {
                    return {
                        y0: i ? y(colorScale.domain()[i - 1]) : y.range()[0],
                        y1: i < colorScale.domain().length ? y(colorScale.domain()[i]) : y.range()[1],
                        z: d
                    };
                }))
                .enter().append("rect")
                    .attr("width", 7)
                    .attr("y", function(d) { return d.y0; })
                    .attr("height", function(d) { return d.y1 - d.y0; })
                    .style("fill", function(d) { return d.z; });


    });

    function initialize() {
      proj.scale(6700);
      proj.translate([-1240, 720]);
    }


  </script>
</body>

</html>
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": {}, "id":"Andhra Pradesh", "total":"2324", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.149167, 13.618300 ], [ 80.142031, 13.544708 ], [ 80.126421, 13.584849 ], [ 80.158087, 13.591093 ], [ 80.120622, 13.605812 ], [ 80.149167, 13.618300 ] ] ], [ [ [ 82.258801, 16.689980 ], [ 82.285562, 16.697563 ], [ 82.368074, 16.723877 ], [ 82.311876, 16.602562 ], [ 82.258801, 16.689980 ] ] ], [ [ [ 82.299388, 16.714511 ], [ 82.293590, 16.743056 ], [ 82.211078, 16.727891 ], [ 82.221782, 16.750192 ], [ 82.174505, 16.725215 ], [ 82.257463, 16.689980 ], [ 82.292252, 16.608806 ], [ 82.259693, 16.586952 ], [ 82.299388, 16.591858 ], [ 82.267721, 16.564205 ], [ 82.309646, 16.567773 ], [ 81.720465, 16.309979 ], [ 81.364994, 16.359932 ], [ 81.345816, 16.330495 ], [ 81.392647, 16.342092 ], [ 81.231191, 16.235049 ], [ 81.145557, 15.973686 ], [ 81.004171, 15.840329 ], [ 81.006401, 15.757817 ], [ 80.943067, 15.719460 ], [ 80.822198, 15.712769 ], [ 80.780719, 15.780563 ], [ 80.813278, 15.739530 ], [ 80.805250, 15.842559 ], [ 80.686611, 15.882700 ], [ 80.431046, 15.805540 ], [ 80.270482, 15.673074 ], [ 80.200904, 15.465233 ], [ 80.080035, 15.315819 ], [ 80.047923, 15.077203 ], [ 80.088956, 14.811380 ], [ 80.059519, 14.819855 ], [ 80.199120, 14.587037 ], [ 80.121960, 14.114711 ], [ 80.245060, 13.819451 ], [ 80.236139, 13.639708 ], [ 80.315083, 13.433651 ], [ 80.146937, 13.724451 ], [ 80.138463, 13.612948 ], [ 80.106796, 13.709286 ], [ 80.051045, 13.587971 ], [ 80.115270, 13.507689 ], [ 80.236585, 13.488064 ], [ 80.268252, 13.417149 ], [ 80.312853, 13.427853 ], [ 80.311961, 13.369425 ], [ 80.241045, 13.470224 ], [ 80.076021, 13.526867 ], [ 79.989495, 13.526867 ], [ 80.035880, 13.484496 ], [ 79.961842, 13.451492 ], [ 79.925715, 13.335975 ], [ 79.721442, 13.272195 ], [ 79.784776, 13.223580 ], [ 79.744189, 13.195035 ], [ 79.688883, 13.207523 ], [ 79.668367, 13.282007 ], [ 79.580057, 13.245434 ], [ 79.535901, 13.310998 ], [ 79.428859, 13.323486 ], [ 79.374445, 13.302970 ], [ 79.424845, 13.281561 ], [ 79.423953, 13.187453 ], [ 79.347685, 13.162922 ], [ 79.307990, 13.096912 ], [ 79.267403, 13.141068 ], [ 79.218341, 13.135715 ], [ 79.152778, 13.007264 ], [ 79.068927, 13.013954 ], [ 78.979725, 13.076396 ], [ 78.914162, 13.067922 ], [ 78.893645, 13.034917 ], [ 78.924420, 13.018860 ], [ 78.882049, 13.019753 ], [ 78.876251, 13.086208 ], [ 78.702306, 13.056325 ], [ 78.693832, 13.004588 ], [ 78.651015, 13.017968 ], [ 78.613550, 12.978719 ], [ 78.646555, 12.918954 ], [ 78.545756, 12.744117 ], [ 78.547540, 12.685690 ], [ 78.484207, 12.734751 ], [ 78.509629, 12.698624 ], [ 78.454770, 12.612098 ], [ 78.368244, 12.611652 ], [ 78.264323, 12.691934 ], [ 78.189839, 12.681230 ], [ 78.220614, 12.752592 ], [ 78.241130, 12.847592 ], [ 78.303126, 12.847146 ], [ 78.345497, 12.927874 ], [ 78.436037, 12.900667 ], [ 78.454324, 12.852944 ], [ 78.422657, 12.968461 ], [ 78.457892, 12.963109 ], [ 78.451648, 13.031349 ], [ 78.568949, 13.156678 ], [ 78.540850, 13.187453 ], [ 78.577423, 13.261937 ], [ 78.555568, 13.299402 ], [ 78.520779, 13.255693 ], [ 78.471718, 13.307876 ], [ 78.366906, 13.319918 ], [ 78.397234, 13.332407 ], [ 78.355309, 13.355153 ], [ 78.390544, 13.578159 ], [ 78.227750, 13.587079 ], [ 78.183149, 13.556304 ], [ 78.193853, 13.616070 ], [ 78.155942, 13.648629 ], [ 78.080566, 13.635248 ], [ 78.058266, 13.666915 ], [ 78.105543, 13.684310 ], [ 78.113571, 13.840860 ], [ 78.041317, 13.886799 ], [ 78.037749, 13.852902 ], [ 77.985120, 13.861822 ], [ 77.944533, 13.819897 ], [ 77.966387, 13.950578 ], [ 77.911528, 13.897057 ], [ 77.818311, 13.934968 ], [ 77.827678, 13.860484 ], [ 77.713053, 13.790460 ], [ 77.708593, 13.732925 ], [ 77.649273, 13.775742 ], [ 77.621174, 13.727573 ], [ 77.519484, 13.743629 ], [ 77.521714, 13.687878 ], [ 77.487371, 13.706610 ], [ 77.476667, 13.677619 ], [ 77.445000, 13.695906 ], [ 77.457488, 13.797150 ], [ 77.408873, 13.799380 ], [ 77.424483, 13.835061 ], [ 77.250539, 13.839521 ], [ 77.234037, 13.894827 ], [ 77.178731, 13.860038 ], [ 77.176947, 13.917573 ], [ 77.162675, 13.856916 ], [ 77.123872, 13.849334 ], [ 77.166689, 13.754779 ], [ 77.060092, 13.738723 ], [ 77.026195, 13.771282 ], [ 76.994082, 13.741399 ], [ 76.968214, 13.814545 ], [ 77.036007, 13.925602 ], [ 76.931195, 14.022832 ], [ 76.974904, 14.065203 ], [ 76.891500, 14.158866 ], [ 76.941453, 14.189194 ], [ 77.019951, 14.172692 ], [ 77.023519, 14.053161 ], [ 77.121196, 14.042011 ], [ 77.147510, 13.991611 ], [ 77.313427, 14.024616 ], [ 77.353568, 13.982245 ], [ 77.348215, 13.896611 ], [ 77.397277, 13.880555 ], [ 77.430728, 13.968865 ], [ 77.375868, 13.969311 ], [ 77.383450, 14.007222 ], [ 77.326361, 14.022832 ], [ 77.395493, 14.103560 ], [ 77.344647, 14.095978 ], [ 77.347769, 14.124523 ], [ 77.409765, 14.169570 ], [ 77.500305, 14.150837 ], [ 77.499413, 14.260556 ], [ 77.385680, 14.324782 ], [ 77.415563, 14.211941 ], [ 77.383896, 14.191871 ], [ 77.359366, 14.269476 ], [ 77.279530, 14.276167 ], [ 77.281314, 14.331026 ], [ 77.151970, 14.337716 ], [ 77.105139, 14.213279 ], [ 76.943683, 14.236472 ], [ 76.949927, 14.294007 ], [ 76.879011, 14.346190 ], [ 76.883026, 14.390346 ], [ 76.941453, 14.399712 ], [ 76.973566, 14.478210 ], [ 76.870091, 14.468398 ], [ 76.760372, 14.602201 ], [ 76.780443, 14.779268 ], [ 76.848683, 14.804244 ], [ 76.865631, 14.937602 ], [ 76.864293, 14.963916 ], [ 76.763941, 14.969714 ], [ 76.774199, 15.071405 ], [ 77.078825, 15.000043 ], [ 77.163121, 15.161499 ], [ 77.120750, 15.221265 ], [ 77.164013, 15.259176 ], [ 77.109599, 15.327416 ], [ 77.061430, 15.322063 ], [ 76.970444, 15.491102 ], [ 77.026641, 15.500022 ], [ 77.029317, 15.633825 ], [ 77.116290, 15.624905 ], [ 77.124764, 15.659248 ], [ 77.047158, 15.724812 ], [ 77.064106, 15.823380 ], [ 77.022181, 15.831854 ], [ 77.076595, 15.909906 ], [ 77.180515, 15.950047 ], [ 77.509672, 15.921057 ], [ 77.487371, 16.249767 ], [ 77.592184, 16.289908 ], [ 77.591738, 16.337631 ], [ 77.342863, 16.379556 ], [ 77.235375, 16.467867 ], [ 77.366502, 16.483923 ], [ 77.415117, 16.517820 ], [ 77.391479, 16.565097 ], [ 77.464178, 16.584276 ], [ 77.469531, 16.646717 ], [ 77.416455, 16.662774 ], [ 77.465070, 16.678384 ], [ 77.466855, 16.711835 ], [ 77.423591, 16.714511 ], [ 77.437418, 16.783197 ], [ 77.471315, 16.779183 ], [ 77.453474, 16.908972 ], [ 77.499413, 17.007541 ], [ 77.462840, 17.103879 ], [ 77.359812, 17.161414 ], [ 77.380328, 17.219842 ], [ 77.454366, 17.276039 ], [ 77.451690, 17.370594 ], [ 77.527958, 17.371932 ], [ 77.510118, 17.427237 ], [ 77.610470, 17.444186 ], [ 77.652841, 17.503059 ], [ 77.684062, 17.472730 ], [ 77.685400, 17.505735 ], [ 77.591738, 17.532496 ], [ 77.589954, 17.562825 ], [ 77.527512, 17.573083 ], [ 77.501643, 17.540970 ], [ 77.440094, 17.581557 ], [ 77.450352, 17.691276 ], [ 77.561855, 17.747027 ], [ 77.511010, 17.801441 ], [ 77.653287, 17.969141 ], [ 77.545799, 18.053883 ], [ 77.600658, 18.099376 ], [ 77.564531, 18.200621 ], [ 77.602888, 18.277781 ], [ 77.549813, 18.291161 ], [ 77.566761, 18.317922 ], [ 77.519484, 18.349143 ], [ 77.555165, 18.417829 ], [ 77.525728, 18.427195 ], [ 77.585048, 18.445481 ], [ 77.546245, 18.463322 ], [ 77.601104, 18.474026 ], [ 77.597090, 18.547618 ], [ 77.736691, 18.554754 ], [ 77.732677, 18.676069 ], [ 77.757654, 18.707290 ], [ 77.786645, 18.684097 ], [ 77.837490, 18.807643 ], [ 77.942749, 18.822361 ], [ 77.757208, 19.028418 ], [ 77.802701, 19.102010 ], [ 77.848194, 19.089968 ], [ 77.846410, 19.197011 ], [ 77.905730, 19.267034 ], [ 77.860683, 19.302269 ], [ 77.948993, 19.341072 ], [ 78.051129, 19.241612 ], [ 78.170215, 19.236260 ], [ 78.182257, 19.411988 ], [ 78.308924, 19.456589 ], [ 78.279041, 19.558280 ], [ 78.311154, 19.604219 ], [ 78.269675, 19.663093 ], [ 78.345497, 19.713492 ], [ 78.367798, 19.781286 ], [ 78.294206, 19.849525 ], [ 78.319628, 19.915535 ], [ 78.494019, 19.793328 ], [ 78.603738, 19.817412 ], [ 78.845476, 19.758539 ], [ 78.858856, 19.656402 ], [ 78.969021, 19.649266 ], [ 78.954749, 19.552036 ], [ 79.102824, 19.527951 ], [ 79.177754, 19.460603 ], [ 79.222801, 19.467740 ], [ 79.243764, 19.612693 ], [ 79.470338, 19.497622 ], [ 79.542592, 19.548468 ], [ 79.597897, 19.503866 ], [ 79.639822, 19.574782 ], [ 79.785222, 19.593515 ], [ 79.972993, 19.400838 ], [ 79.920363, 19.226447 ], [ 79.943110, 19.170696 ], [ 79.857922, 19.104240 ], [ 79.859706, 19.034662 ], [ 79.934636, 19.021728 ], [ 79.939096, 18.858934 ], [ 79.894049, 18.830835 ], [ 80.110810, 18.676069 ], [ 80.267360, 18.717994 ], [ 80.341844, 18.586421 ], [ 80.483676, 18.627900 ], [ 80.632644, 18.518627 ], [ 80.726752, 18.408908 ], [ 80.788302, 18.254142 ], [ 80.733442, 18.218908 ], [ 80.734780, 18.171630 ], [ 80.798114, 18.166278 ], [ 80.829781, 18.234072 ], [ 80.867692, 18.207311 ], [ 80.861893, 18.132827 ], [ 80.973842, 18.168062 ], [ 80.943959, 18.081090 ], [ 81.032270, 17.789845 ], [ 81.159383, 17.852732 ], [ 81.385065, 17.806793 ], [ 81.611193, 17.815267 ], [ 81.662930, 17.876817 ], [ 81.703071, 17.861206 ], [ 82.024645, 18.057897 ], [ 82.113401, 18.057897 ], [ 82.267275, 17.986536 ], [ 82.258355, 18.034705 ], [ 82.329717, 18.040503 ], [ 82.333285, 18.142194 ], [ 82.364506, 18.135057 ], [ 82.306078, 18.195715 ], [ 82.393051, 18.306326 ], [ 82.334623, 18.317030 ], [ 82.384576, 18.369213 ], [ 82.361384, 18.409800 ], [ 82.474225, 18.536914 ], [ 82.553615, 18.437453 ], [ 82.535328, 18.389730 ], [ 82.600446, 18.368767 ], [ 82.580821, 18.270199 ], [ 82.626761, 18.228720 ], [ 82.658873, 18.286701 ], [ 82.767254, 18.331302 ], [ 82.799367, 18.439237 ], [ 82.884555, 18.412923 ], [ 82.902842, 18.355833 ], [ 83.053593, 18.375458 ], [ 83.059838, 18.428533 ], [ 83.015236, 18.444589 ], [ 83.089274, 18.537806 ], [ 83.032631, 18.548064 ], [ 83.054039, 18.586421 ], [ 83.008100, 18.588205 ], [ 83.009884, 18.636374 ], [ 83.132984, 18.772408 ], [ 83.205237, 18.715764 ], [ 83.219510, 18.765718 ], [ 83.396130, 18.830835 ], [ 83.411295, 18.859380 ], [ 83.346623, 18.926728 ], [ 83.380074, 18.923160 ], [ 83.345731, 18.957056 ], [ 83.329229, 18.916915 ], [ 83.305144, 18.989615 ], [ 83.409065, 18.996305 ], [ 83.455450, 18.945460 ], [ 83.459464, 19.069451 ], [ 83.505403, 19.064991 ], [ 83.495591, 19.011024 ], [ 83.531272, 19.005226 ], [ 83.623150, 19.153747 ], [ 83.745803, 18.918253 ], [ 83.780146, 18.907549 ], [ 83.739559, 18.978465 ], [ 83.788174, 19.007902 ], [ 83.870240, 18.818347 ], [ 84.027236, 18.802290 ], [ 84.081650, 18.744755 ], [ 84.332308, 18.792032 ], [ 84.335876, 18.866516 ], [ 84.362191, 18.850906 ], [ 84.365313, 18.896399 ], [ 84.429539, 18.913793 ], [ 84.415266, 19.013700 ], [ 84.471464, 18.981141 ], [ 84.566018, 19.064991 ], [ 84.587873, 19.012808 ], [ 84.654328, 19.052503 ], [ 84.591887, 19.123865 ], [ 84.702052, 19.151071 ], [ 84.719000, 19.095766 ], [ 84.730150, 19.089522 ], [ 84.760925, 19.071235 ], [ 84.356393, 18.556984 ], [ 84.125805, 18.351373 ], [ 84.124467, 18.309448 ], [ 83.572751, 18.018202 ], [ 83.529488, 17.949517 ], [ 83.457234, 17.920526 ], [ 83.344393, 17.724727 ], [ 83.306482, 17.688154 ], [ 83.263665, 17.710901 ], [ 83.295332, 17.675220 ], [ 83.213266, 17.590923 ], [ 82.607582, 17.296110 ], [ 82.368520, 17.118597 ], [ 82.248989, 16.930381 ], [ 82.311876, 16.840286 ], [ 82.354248, 16.851437 ], [ 82.359154, 16.944207 ], [ 82.324365, 16.988808 ], [ 82.357816, 16.963831 ], [ 82.343097, 16.737704 ], [ 82.299388, 16.714511 ] ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Arunachal Pradesh", "total":"742", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.237733, 26.686434 ], [ 95.216325, 26.735496 ], [ 95.244869, 26.787233 ], [ 95.184658, 26.864839 ], [ 95.233719, 26.890707 ], [ 95.214541, 26.937093 ], [ 95.195362, 27.042797 ], [ 95.248438, 27.030309 ], [ 95.457617, 27.135568 ], [ 95.459847, 27.213620 ], [ 95.516044, 27.268479 ], [ 95.590082, 27.229676 ], [ 95.806398, 27.291672 ], [ 95.893816, 27.263127 ], [ 96.018253, 27.367940 ], [ 95.977666, 27.435287 ], [ 95.917009, 27.443316 ], [ 95.892924, 27.405851 ], [ 95.888464, 27.444208 ], [ 95.849215, 27.430381 ], [ 95.881328, 27.553034 ], [ 95.797924, 27.607894 ], [ 95.758675, 27.726533 ], [ 95.952244, 27.941956 ], [ 95.977666, 27.968717 ], [ 95.606585, 27.957567 ], [ 95.516044, 27.881745 ], [ 95.384471, 27.842050 ], [ 95.316677, 27.871041 ], [ 94.860854, 27.739467 ], [ 94.459889, 27.557495 ], [ 94.430899, 27.602988 ], [ 94.276133, 27.593175 ], [ 94.252048, 27.640899 ], [ 94.211015, 27.611016 ], [ 94.259184, 27.522706 ], [ 94.157048, 27.478105 ], [ 93.956342, 27.294794 ], [ 93.798454, 27.137352 ], [ 93.835027, 27.074910 ], [ 93.675801, 26.970990 ], [ 93.019273, 26.917022 ], [ 92.872535, 27.007562 ], [ 92.658895, 27.038337 ], [ 92.645515, 26.987492 ], [ 92.585303, 26.962069 ], [ 92.108071, 26.893830 ], [ 92.103165, 27.007562 ], [ 92.033587, 27.064652 ], [ 92.023329, 27.162328 ], [ 92.069714, 27.223432 ], [ 92.039385, 27.266695 ], [ 92.120560, 27.287658 ], [ 92.059010, 27.327353 ], [ 92.018869, 27.479889 ], [ 91.647341, 27.484795 ], [ 91.557693, 27.633316 ], [ 91.639759, 27.765336 ], [ 91.543867, 27.855430 ], [ 91.824408, 27.810383 ], [ 91.860535, 27.736791 ], [ 91.918962, 27.714937 ], [ 92.210208, 27.858998 ], [ 92.264175, 27.858106 ], [ 92.315913, 27.778270 ], [ 92.501453, 27.841604 ], [ 92.560773, 27.821087 ], [ 92.739623, 27.989234 ], [ 92.662909, 28.062825 ], [ 92.686994, 28.125713 ], [ 92.964413, 28.261747 ], [ 93.000540, 28.230972 ], [ 93.023733, 28.303226 ], [ 93.219086, 28.333554 ], [ 93.231574, 28.400902 ], [ 93.182513, 28.440151 ], [ 93.275729, 28.504823 ], [ 93.336833, 28.639964 ], [ 93.445659, 28.676091 ], [ 93.474204, 28.653791 ], [ 93.491153, 28.684119 ], [ 93.775262, 28.668509 ], [ 93.843948, 28.707312 ], [ 93.926014, 28.671631 ], [ 94.001390, 28.775552 ], [ 93.994699, 28.841561 ], [ 94.155264, 28.954848 ], [ 94.214583, 29.084192 ], [ 94.431345, 29.226915 ], [ 94.558012, 29.228699 ], [ 94.628036, 29.348676 ], [ 94.777449, 29.241188 ], [ 94.797966, 29.164474 ], [ 94.872004, 29.184098 ], [ 95.022756, 29.130577 ], [ 94.997333, 29.172948 ], [ 95.121770, 29.116304 ], [ 95.250668, 29.110060 ], [ 95.266724, 29.057431 ], [ 95.447359, 29.036022 ], [ 95.496420, 29.140389 ], [ 95.546819, 29.128793 ], [ 95.537899, 29.213981 ], [ 95.585622, 29.217995 ], [ 95.598557, 29.261704 ], [ 95.637806, 29.249662 ], [ 95.777407, 29.356259 ], [ 95.957150, 29.382573 ], [ 96.087385, 29.461517 ], [ 96.243489, 29.234943 ], [ 96.363020, 29.285789 ], [ 96.392903, 29.256352 ], [ 96.346518, 29.171164 ], [ 96.114592, 29.077501 ], [ 96.185062, 28.988299 ], [ 96.145367, 28.937454 ], [ 96.166329, 28.905787 ], [ 96.346518, 29.032454 ], [ 96.525368, 29.079285 ], [ 96.477199, 28.994097 ], [ 96.615909, 28.778674 ], [ 96.586026, 28.721584 ], [ 96.472739, 28.688133 ], [ 96.494147, 28.638180 ], [ 96.325555, 28.533814 ], [ 96.372832, 28.486982 ], [ 96.263560, 28.413390 ], [ 96.371048, 28.394212 ], [ 96.399593, 28.344705 ], [ 96.458467, 28.419189 ], [ 96.664524, 28.465574 ], [ 96.774243, 28.374141 ], [ 96.898680, 28.385738 ], [ 96.996356, 28.316160 ], [ 97.092695, 28.369681 ], [ 97.400443, 28.200643 ], [ 97.330865, 28.163178 ], [ 97.307672, 28.077098 ], [ 97.415161, 28.024022 ], [ 97.378142, 27.986112 ], [ 97.388846, 27.896463 ], [ 97.321053, 27.889327 ], [ 97.308564, 27.929914 ], [ 97.256381, 27.909398 ], [ 96.897788, 27.620828 ], [ 96.937483, 27.529842 ], [ 96.912060, 27.462494 ], [ 97.171639, 27.136906 ], [ 97.146216, 27.103009 ], [ 97.071732, 27.109253 ], [ 96.875487, 27.193549 ], [ 96.885299, 27.268033 ], [ 96.802341, 27.354559 ], [ 96.712693, 27.380874 ], [ 96.612340, 27.369278 ], [ 96.522246, 27.293902 ], [ 96.234123, 27.284982 ], [ 96.036540, 27.196225 ], [ 95.936187, 27.053056 ], [ 95.807736, 27.020497 ], [ 95.731022, 26.887585 ], [ 95.673486, 26.910332 ], [ 95.611491, 26.821130 ], [ 95.532993, 26.831388 ], [ 95.429072, 26.700261 ], [ 95.302405, 26.656105 ], [ 95.237733, 26.686434 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Assam", "total":"1211", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.952244, 27.941956 ], [ 95.758675, 27.726533 ], [ 95.797924, 27.607894 ], [ 95.881328, 27.553034 ], [ 95.849215, 27.430381 ], [ 95.888464, 27.444208 ], [ 95.892924, 27.405851 ], [ 95.917009, 27.443316 ], [ 95.977666, 27.435287 ], [ 96.018253, 27.367940 ], [ 95.893816, 27.263127 ], [ 95.806398, 27.291672 ], [ 95.590082, 27.229676 ], [ 95.516044, 27.268479 ], [ 95.459847, 27.213620 ], [ 95.457617, 27.135568 ], [ 95.248438, 27.030309 ], [ 95.195362, 27.042797 ], [ 95.021418, 26.925496 ], [ 94.886276, 26.932633 ], [ 94.802426, 26.805965 ], [ 94.686463, 26.732373 ], [ 94.603951, 26.739064 ], [ 94.574514, 26.690894 ], [ 94.545078, 26.710965 ], [ 94.467918, 26.669932 ], [ 94.407706, 26.614180 ], [ 94.399232, 26.532114 ], [ 94.316720, 26.462983 ], [ 94.276579, 26.558875 ], [ 94.186484, 26.460306 ], [ 94.175334, 26.344343 ], [ 94.107986, 26.326503 ], [ 94.004958, 26.173075 ], [ 93.955004, 26.007159 ], [ 93.979535, 25.919741 ], [ 93.795778, 25.814482 ], [ 93.773032, 25.966126 ], [ 93.687844, 25.909482 ], [ 93.705684, 25.848825 ], [ 93.331927, 25.546875 ], [ 93.461716, 25.434480 ], [ 93.474204, 25.309151 ], [ 93.388570, 25.245817 ], [ 93.335941, 25.095958 ], [ 93.248968, 25.018798 ], [ 93.262349, 24.951450 ], [ 93.197231, 24.811402 ], [ 93.109813, 24.809618 ], [ 93.075916, 24.710604 ], [ 93.104907, 24.675369 ], [ 93.075470, 24.596425 ], [ 93.107137, 24.583490 ], [ 93.061198, 24.575016 ], [ 93.039343, 24.411330 ], [ 93.000540, 24.403302 ], [ 92.832840, 24.376541 ], [ 92.800727, 24.418912 ], [ 92.765046, 24.521049 ], [ 92.690562, 24.354687 ], [ 92.624106, 24.332832 ], [ 92.611618, 24.253442 ], [ 92.550515, 24.245860 ], [ 92.529552, 24.174944 ], [ 92.465772, 24.134803 ], [ 92.422509, 24.252996 ], [ 92.296734, 24.251658 ], [ 92.212884, 24.249428 ], [ 92.272649, 24.379217 ], [ 92.231170, 24.504100 ], [ 92.298072, 24.736472 ], [ 92.240537, 24.899267 ], [ 92.298518, 24.920229 ], [ 92.391288, 24.849759 ], [ 92.491641, 24.873844 ], [ 92.489411, 24.954572 ], [ 92.428307, 24.972412 ], [ 92.426077, 25.031732 ], [ 92.463096, 25.037084 ], [ 92.484505, 25.108000 ], [ 92.542932, 25.099526 ], [ 92.524646, 25.140113 ], [ 92.621430, 25.117812 ], [ 92.666923, 25.177132 ], [ 92.803403, 25.217273 ], [ 92.764600, 25.249385 ], [ 92.784224, 25.332344 ], [ 92.567463, 25.467485 ], [ 92.660679, 25.585232 ], [ 92.572369, 25.560255 ], [ 92.557651, 25.611993 ], [ 92.501899, 25.623143 ], [ 92.385044, 25.753378 ], [ 92.160701, 25.671758 ], [ 92.153118, 25.812698 ], [ 92.225372, 25.907252 ], [ 92.163823, 25.911712 ], [ 92.156240, 25.944717 ], [ 92.301640, 26.076291 ], [ 92.178095, 26.079413 ], [ 91.922084, 25.999577 ], [ 91.853845, 26.104835 ], [ 91.819502, 26.118662 ], [ 91.731192, 26.059342 ], [ 91.720041, 25.954084 ], [ 91.669196, 25.905468 ], [ 91.611214, 25.939811 ], [ 91.632177, 26.022323 ], [ 91.575980, 26.033028 ], [ 91.474735, 25.871125 ], [ 91.525580, 25.872909 ], [ 91.333349, 25.839013 ], [ 91.224077, 25.723496 ], [ 91.179921, 25.776125 ], [ 91.196424, 25.859083 ], [ 91.000625, 25.822064 ], [ 91.029170, 25.888074 ], [ 90.967620, 25.887182 ], [ 90.942643, 25.947393 ], [ 90.919005, 25.913496 ], [ 90.809732, 25.952299 ], [ 90.778065, 25.908144 ], [ 90.740600, 25.915281 ], [ 90.747290, 25.957206 ], [ 90.686187, 25.950961 ], [ 90.624637, 25.898778 ], [ 90.629097, 25.937581 ], [ 90.582266, 25.959882 ], [ 90.512688, 25.896102 ], [ 90.534543, 25.958098 ], [ 90.477453, 26.015187 ], [ 90.182640, 25.944271 ], [ 90.118860, 25.961220 ], [ 89.944470, 25.824294 ], [ 89.955174, 25.774341 ], [ 89.892732, 25.735092 ], [ 90.017170, 25.602181 ], [ 89.869986, 25.544199 ], [ 89.885150, 25.629833 ], [ 89.814680, 25.817158 ], [ 89.890502, 25.940257 ], [ 89.828061, 25.943379 ], [ 89.875338, 25.975938 ], [ 89.839657, 26.010281 ], [ 89.823155, 25.984858 ], [ 89.812896, 26.041948 ], [ 89.791488, 26.017863 ], [ 89.797732, 26.086103 ], [ 89.718788, 26.165939 ], [ 89.717896, 26.305541 ], [ 89.758483, 26.289484 ], [ 89.782122, 26.353264 ], [ 89.857498, 26.384485 ], [ 89.827169, 26.396527 ], [ 89.870432, 26.459860 ], [ 89.857052, 26.703829 ], [ 89.862404, 26.736834 ], [ 90.146067, 26.754674 ], [ 90.188884, 26.770730 ], [ 90.214753, 26.853689 ], [ 90.301725, 26.848336 ], [ 90.409660, 26.901858 ], [ 90.559966, 26.801059 ], [ 90.712055, 26.767608 ], [ 91.054146, 26.779651 ], [ 91.096517, 26.819792 ], [ 91.336471, 26.779651 ], [ 91.408279, 26.835402 ], [ 91.492575, 26.789909 ], [ 91.687036, 26.805073 ], [ 91.857859, 26.913900 ], [ 92.045630, 26.847444 ], [ 92.108071, 26.893830 ], [ 92.585303, 26.962069 ], [ 92.645515, 26.987492 ], [ 92.658895, 27.038337 ], [ 92.872535, 27.007562 ], [ 93.019273, 26.917022 ], [ 93.675801, 26.970990 ], [ 93.835027, 27.074910 ], [ 93.798454, 27.137352 ], [ 93.956342, 27.294794 ], [ 94.157048, 27.478105 ], [ 94.259184, 27.522706 ], [ 94.211015, 27.611016 ], [ 94.252048, 27.640899 ], [ 94.276133, 27.593175 ], [ 94.430899, 27.602988 ], [ 94.459889, 27.557495 ], [ 94.860854, 27.739467 ], [ 95.316677, 27.871041 ], [ 95.384471, 27.842050 ], [ 95.516044, 27.881745 ], [ 95.606585, 27.957567 ], [ 95.977666, 27.968717 ], [ 95.952244, 27.941956 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Bihar", "total":"6484", "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.105565, 26.539250 ], [ 88.145260, 26.511152 ], [ 88.231340, 26.552185 ], [ 88.179157, 26.490635 ], [ 88.267913, 26.421949 ], [ 88.237584, 26.375564 ], [ 88.291998, 26.353710 ], [ 88.069884, 26.175751 ], [ 87.964179, 26.152113 ], [ 87.968193, 26.081197 ], [ 87.912888, 26.091009 ], [ 87.841972, 26.044624 ], [ 87.803615, 25.912158 ], [ 87.822794, 25.871571 ], [ 87.911104, 25.851947 ], [ 87.898615, 25.769881 ], [ 88.048475, 25.690491 ], [ 88.020823, 25.587016 ], [ 88.073006, 25.504058 ], [ 88.027513, 25.486218 ], [ 87.926268, 25.536171 ], [ 87.863381, 25.465255 ], [ 87.781314, 25.444738 ], [ 87.783991, 25.332344 ], [ 87.856690, 25.277930 ], [ 87.836620, 25.199432 ], [ 87.787559, 25.220395 ], [ 87.707723, 25.256522 ], [ 87.684084, 25.310043 ], [ 87.599788, 25.314503 ], [ 87.580163, 25.348400 ], [ 87.539576, 25.281498 ], [ 87.490069, 25.305137 ], [ 87.467768, 25.193188 ], [ 87.323261, 25.223071 ], [ 87.291148, 25.089267 ], [ 87.250561, 25.105770 ], [ 87.176523, 25.063845 ], [ 87.144410, 25.017906 ], [ 87.151100, 24.858233 ], [ 87.077508, 24.818092 ], [ 87.050302, 24.606683 ], [ 86.929879, 24.642810 ], [ 86.911146, 24.538889 ], [ 86.800089, 24.564758 ], [ 86.777343, 24.619617 ], [ 86.668516, 24.560744 ], [ 86.602952, 24.604899 ], [ 86.505722, 24.517481 ], [ 86.452200, 24.368513 ], [ 86.279148, 24.462175 ], [ 86.322857, 24.583936 ], [ 86.133302, 24.603561 ], [ 86.124382, 24.705252 ], [ 86.039194, 24.741378 ], [ 86.050790, 24.779735 ], [ 85.950438, 24.732012 ], [ 85.877738, 24.800252 ], [ 85.736798, 24.822553 ], [ 85.696657, 24.713280 ], [ 85.649380, 24.686965 ], [ 85.664544, 24.582152 ], [ 85.576680, 24.603115 ], [ 85.518253, 24.524617 ], [ 85.486586, 24.550932 ], [ 85.282313, 24.526847 ], [ 85.281866, 24.497410 ], [ 85.150739, 24.463067 ], [ 85.169472, 24.429616 ], [ 85.089636, 24.379217 ], [ 85.076255, 24.439875 ], [ 84.897851, 24.372081 ], [ 84.880010, 24.462621 ], [ 84.834517, 24.452363 ], [ 84.832733, 24.511683 ], [ 84.795268, 24.529523 ], [ 84.678859, 24.456377 ], [ 84.658343, 24.393936 ], [ 84.572262, 24.412222 ], [ 84.521417, 24.376095 ], [ 84.493318, 24.286893 ], [ 84.293059, 24.451025 ], [ 84.326510, 24.502762 ], [ 84.293059, 24.566096 ], [ 84.256932, 24.530861 ], [ 84.188247, 24.555392 ], [ 84.179326, 24.510345 ], [ 84.145875, 24.540227 ], [ 84.109748, 24.481354 ], [ 84.046861, 24.612481 ], [ 83.992001, 24.637904 ], [ 83.933128, 24.551824 ], [ 83.868010, 24.533091 ], [ 83.716812, 24.504992 ], [ 83.498267, 24.526847 ], [ 83.541530, 24.626308 ], [ 83.497375, 24.651730 ], [ 83.479980, 24.737810 ], [ 83.386764, 24.784196 ], [ 83.318078, 25.017460 ], [ 83.349745, 25.198986 ], [ 83.694512, 25.396123 ], [ 83.761860, 25.388095 ], [ 83.838574, 25.436710 ], [ 83.810029, 25.465701 ], [ 83.917072, 25.558471 ], [ 84.076298, 25.637415 ], [ 84.094584, 25.720374 ], [ 84.148105, 25.731078 ], [ 84.202965, 25.669528 ], [ 84.285477, 25.661500 ], [ 84.331416, 25.744458 ], [ 84.488412, 25.678002 ], [ 84.535689, 25.726618 ], [ 84.552192, 25.684247 ], [ 84.555760, 25.736430 ], [ 84.630690, 25.728402 ], [ 84.600361, 25.760515 ], [ 84.620432, 25.793965 ], [ 84.526769, 25.834552 ], [ 84.528553, 25.877816 ], [ 84.423295, 25.892534 ], [ 84.351487, 25.959436 ], [ 84.166392, 25.991548 ], [ 84.018316, 26.144976 ], [ 84.011626, 26.240869 ], [ 84.159256, 26.245775 ], [ 84.171298, 26.373780 ], [ 84.071838, 26.384485 ], [ 84.011180, 26.448264 ], [ 83.902353, 26.450048 ], [ 83.902353, 26.518288 ], [ 84.047753, 26.543711 ], [ 84.081650, 26.642725 ], [ 84.272097, 26.599462 ], [ 84.414374, 26.627115 ], [ 84.402332, 26.671270 ], [ 84.325618, 26.684204 ], [ 84.297965, 26.753336 ], [ 84.234186, 26.739510 ], [ 84.240876, 26.862609 ], [ 84.169068, 26.834510 ], [ 84.140969, 26.887585 ], [ 84.052213, 26.891600 ], [ 84.040617, 27.044581 ], [ 83.990663, 27.068666 ], [ 84.020546, 27.095427 ], [ 83.939372, 27.093197 ], [ 83.978621, 27.200239 ], [ 83.897893, 27.259559 ], [ 83.916626, 27.325123 ], [ 83.828761, 27.322893 ], [ 83.856414, 27.348315 ], [ 83.840804, 27.449560 ], [ 84.019654, 27.439302 ], [ 84.100828, 27.524490 ], [ 84.208317, 27.442424 ], [ 84.244890, 27.452682 ], [ 84.284139, 27.387564 ], [ 84.611957, 27.341625 ], [ 84.681535, 27.226108 ], [ 84.636488, 27.049042 ], [ 84.952264, 26.965191 ], [ 84.962076, 26.922374 ], [ 85.049495, 26.886693 ], [ 85.024964, 26.855027 ], [ 85.186420, 26.871083 ], [ 85.171256, 26.811317 ], [ 85.204261, 26.760472 ], [ 85.327806, 26.743078 ], [ 85.628417, 26.873759 ], [ 85.717620, 26.818454 ], [ 85.728770, 26.651645 ], [ 85.843841, 26.609720 ], [ 85.843841, 26.569579 ], [ 86.021799, 26.667702 ], [ 86.213584, 26.590988 ], [ 86.337576, 26.617748 ], [ 86.727389, 26.425072 ], [ 86.760840, 26.458522 ], [ 86.889292, 26.462091 ], [ 87.064574, 26.586974 ], [ 87.085091, 26.452724 ], [ 87.150208, 26.406339 ], [ 87.254575, 26.410799 ], [ 87.259481, 26.374226 ], [ 87.333965, 26.348804 ], [ 87.362956, 26.407677 ], [ 87.455726, 26.440236 ], [ 87.602464, 26.381362 ], [ 87.672042, 26.435776 ], [ 87.759906, 26.409461 ], [ 87.782206, 26.467889 ], [ 87.843756, 26.435776 ], [ 87.884343, 26.486175 ], [ 88.024391, 26.355494 ], [ 88.091738, 26.434438 ], [ 88.105565, 26.539250 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Chhattisgarh", "total":"7645", "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.002706, 22.520688 ], [ 83.975945, 22.502401 ], [ 84.041509, 22.464044 ], [ 84.004044, 22.367706 ], [ 83.860874, 22.343621 ], [ 83.752939, 22.242823 ], [ 83.645897, 22.224536 ], [ 83.559370, 22.103667 ], [ 83.600403, 22.065310 ], [ 83.538408, 22.055498 ], [ 83.535286, 21.963619 ], [ 83.600403, 21.910990 ], [ 83.584347, 21.843642 ], [ 83.467046, 21.782539 ], [ 83.483994, 21.741506 ], [ 83.419769, 21.675050 ], [ 83.484440, 21.625543 ], [ 83.452774, 21.605026 ], [ 83.441177, 21.649181 ], [ 83.380520, 21.612608 ], [ 83.334581, 21.495753 ], [ 83.402820, 21.348570 ], [ 83.269909, 21.374884 ], [ 83.274369, 21.285682 ], [ 83.218172, 21.260259 ], [ 83.190073, 21.135376 ], [ 83.120049, 21.101033 ], [ 82.955917, 21.175517 ], [ 82.636127, 21.149649 ], [ 82.622300, 21.036362 ], [ 82.485821, 20.903450 ], [ 82.459060, 20.824060 ], [ 82.346665, 20.883826 ], [ 82.368074, 20.624247 ], [ 82.323919, 20.553777 ], [ 82.429177, 20.425772 ], [ 82.393943, 20.335678 ], [ 82.429177, 20.283048 ], [ 82.378778, 20.144785 ], [ 82.390821, 20.059597 ], [ 82.598216, 19.985559 ], [ 82.707489, 19.990019 ], [ 82.702582, 19.831239 ], [ 82.585281, 19.771027 ], [ 82.593310, 19.864690 ], [ 82.442558, 19.903047 ], [ 82.339529, 19.829901 ], [ 82.230702, 19.998047 ], [ 82.178519, 19.977977 ], [ 82.058096, 20.049784 ], [ 82.024199, 20.010089 ], [ 81.941241, 20.102414 ], [ 81.866757, 20.035958 ], [ 81.849809, 19.907953 ], [ 81.960419, 19.854877 ], [ 81.980044, 19.796004 ], [ 82.059880, 19.783070 ], [ 82.022415, 19.501636 ], [ 82.091993, 19.509665 ], [ 82.119200, 19.424030 ], [ 82.182979, 19.417786 ], [ 82.140608, 19.362035 ], [ 82.182979, 19.319664 ], [ 82.151758, 19.265250 ], [ 82.159787, 19.126541 ], [ 82.211970, 19.090414 ], [ 82.239623, 18.910671 ], [ 82.172721, 18.895507 ], [ 82.161125, 18.791140 ], [ 82.081289, 18.755905 ], [ 82.078613, 18.712196 ], [ 81.967556, 18.690788 ], [ 81.947485, 18.628792 ], [ 81.885490, 18.650201 ], [ 81.947039, 18.559214 ], [ 81.857837, 18.513275 ], [ 81.744996, 18.345129 ], [ 81.658024, 18.339331 ], [ 81.527788, 18.259049 ], [ 81.477389, 17.970033 ], [ 81.437248, 17.875925 ], [ 81.393985, 17.885291 ], [ 81.385065, 17.806793 ], [ 81.159383, 17.852732 ], [ 81.032270, 17.789845 ], [ 80.943959, 18.081090 ], [ 80.973842, 18.168062 ], [ 80.861893, 18.132827 ], [ 80.867692, 18.207311 ], [ 80.829781, 18.234072 ], [ 80.798114, 18.166278 ], [ 80.734780, 18.171630 ], [ 80.733442, 18.218908 ], [ 80.788302, 18.254142 ], [ 80.726752, 18.408908 ], [ 80.632644, 18.518627 ], [ 80.483676, 18.627900 ], [ 80.341844, 18.586421 ], [ 80.267360, 18.717994 ], [ 80.241938, 18.759919 ], [ 80.348534, 18.824145 ], [ 80.267806, 18.928958 ], [ 80.267806, 18.987385 ], [ 80.383323, 19.238936 ], [ 80.567972, 19.400838 ], [ 80.610343, 19.307175 ], [ 80.671893, 19.326354 ], [ 80.688395, 19.283537 ], [ 80.749052, 19.286659 ], [ 80.844945, 19.360697 ], [ 80.787855, 19.426706 ], [ 80.892222, 19.465509 ], [ 80.827551, 19.562740 ], [ 80.656728, 19.612247 ], [ 80.665648, 19.692083 ], [ 80.539873, 19.774595 ], [ 80.542549, 19.819197 ], [ 80.468957, 19.824549 ], [ 80.477878, 19.772365 ], [ 80.394919, 19.794666 ], [ 80.497502, 19.868704 ], [ 80.406516, 19.932483 ], [ 80.520249, 19.930699 ], [ 80.546117, 20.065841 ], [ 80.497948, 20.138987 ], [ 80.394027, 20.143893 ], [ 80.414098, 20.190278 ], [ 80.382877, 20.241569 ], [ 80.617925, 20.333894 ], [ 80.585812, 20.395443 ], [ 80.622385, 20.603731 ], [ 80.511774, 20.584998 ], [ 80.481446, 20.617111 ], [ 80.580014, 20.683567 ], [ 80.541657, 20.933779 ], [ 80.455577, 20.931995 ], [ 80.433276, 21.097019 ], [ 80.457361, 21.172841 ], [ 80.635320, 21.250001 ], [ 80.656728, 21.330729 ], [ 80.730320, 21.472115 ], [ 80.718724, 21.712069 ], [ 80.742808, 21.758008 ], [ 80.811048, 21.747304 ], [ 80.831565, 21.804839 ], [ 80.818630, 21.956929 ], [ 80.910955, 22.119277 ], [ 80.999265, 22.061296 ], [ 80.970720, 22.114817 ], [ 81.015767, 22.132658 ], [ 81.019335, 22.228996 ], [ 81.113890, 22.294560 ], [ 81.109876, 22.441298 ], [ 81.179900, 22.490359 ], [ 81.218257, 22.451556 ], [ 81.275346, 22.499279 ], [ 81.303891, 22.481885 ], [ 81.323069, 22.524256 ], [ 81.378821, 22.505523 ], [ 81.396661, 22.441298 ], [ 81.518868, 22.539866 ], [ 81.615653, 22.538974 ], [ 81.656686, 22.632190 ], [ 81.762836, 22.663411 ], [ 81.769527, 22.873483 ], [ 81.940349, 22.956887 ], [ 81.938119, 23.077756 ], [ 82.116077, 23.103625 ], [ 82.150866, 23.141536 ], [ 82.185655, 23.325292 ], [ 82.098683, 23.397546 ], [ 82.045608, 23.377922 ], [ 82.016171, 23.423415 ], [ 81.976030, 23.413156 ], [ 81.916264, 23.532242 ], [ 81.827062, 23.511279 ], [ 81.736076, 23.567476 ], [ 81.607178, 23.506819 ], [ 81.569713, 23.588439 ], [ 81.687461, 23.721350 ], [ 81.598258, 23.853816 ], [ 81.610301, 23.906891 ], [ 81.661592, 23.925624 ], [ 81.782461, 23.811891 ], [ 81.916264, 23.872994 ], [ 82.045608, 23.820811 ], [ 82.203942, 23.852924 ], [ 82.226242, 23.806985 ], [ 82.516150, 23.784238 ], [ 82.544694, 23.794050 ], [ 82.527300, 23.823933 ], [ 82.652183, 23.856492 ], [ 82.656643, 23.907783 ], [ 82.807841, 23.963089 ], [ 82.938969, 23.875670 ], [ 83.086598, 23.878346 ], [ 83.189627, 23.921163 ], [ 83.323430, 24.101352 ], [ 83.506741, 24.028206 ], [ 83.561154, 23.862736 ], [ 83.695404, 23.820811 ], [ 83.729301, 23.754801 ], [ 83.714582, 23.682547 ], [ 83.774794, 23.599589 ], [ 83.935358, 23.563016 ], [ 83.938034, 23.622336 ], [ 84.007166, 23.632148 ], [ 84.022776, 23.544284 ], [ 83.965687, 23.381044 ], [ 84.006720, 23.352945 ], [ 84.043293, 23.373907 ], [ 84.070053, 23.330198 ], [ 84.033481, 23.138413 ], [ 84.129373, 23.081324 ], [ 84.148105, 22.964023 ], [ 84.190031, 23.023789 ], [ 84.217237, 22.976511 ], [ 84.370665, 22.975173 ], [ 84.388952, 22.938600 ], [ 84.369773, 22.864562 ], [ 84.225265, 22.735219 ], [ 84.220805, 22.668763 ], [ 84.080312, 22.636651 ], [ 84.004936, 22.569749 ], [ 84.002706, 22.520688 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Delhi", "total":"6234", "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.186759, 28.866984 ], [ 77.217534, 28.835317 ], [ 77.197018, 28.795176 ], [ 77.323685, 28.715786 ], [ 77.336173, 28.608743 ], [ 77.293802, 28.566818 ], [ 77.337957, 28.508837 ], [ 77.242511, 28.484752 ], [ 77.240727, 28.429001 ], [ 77.165797, 28.408484 ], [ 77.072580, 28.520433 ], [ 77.006125, 28.542734 ], [ 77.005679, 28.514635 ], [ 76.879457, 28.508837 ], [ 76.837532, 28.557006 ], [ 76.878119, 28.637734 ], [ 76.933871, 28.637734 ], [ 76.942345, 28.820599 ], [ 77.075702, 28.884378 ], [ 77.139036, 28.841561 ], [ 77.186759, 28.866984 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Goa", "total":"855", "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.126229, 15.650328 ], [ 74.190009, 15.681103 ], [ 74.255126, 15.654342 ], [ 74.287239, 15.525891 ], [ 74.256464, 15.489318 ], [ 74.341653, 15.293073 ], [ 74.257356, 15.257838 ], [ 74.322028, 15.184246 ], [ 74.270291, 14.966592 ], [ 74.097238, 14.895677 ], [ 74.042825, 14.918423 ], [ 74.049961, 14.988001 ], [ 73.911698, 15.083893 ], [ 73.948270, 15.145889 ], [ 73.894749, 15.331876 ], [ 73.782800, 15.410374 ], [ 73.896979, 15.414834 ], [ 73.787706, 15.461665 ], [ 73.805547, 15.494670 ], [ 73.764514, 15.494670 ], [ 73.731063, 15.590562 ], [ 73.754702, 15.617323 ], [ 73.680218, 15.724366 ], [ 73.833200, 15.737746 ], [ 73.865312, 15.797512 ], [ 73.882261, 15.749342 ], [ 73.945148, 15.741314 ], [ 73.998670, 15.611079 ], [ 74.126229, 15.650328 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Gujarat", "total":"8976", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 72.676692, 21.155893 ], [ 72.710589, 21.140728 ], [ 72.689180, 21.089883 ], [ 72.676692, 21.155893 ] ] ], [ [ [ 69.627758, 22.459584 ], [ 69.636678, 22.406509 ], [ 69.588063, 22.437284 ], [ 69.627758, 22.459584 ] ] ], [ [ [ 69.918557, 22.553246 ], [ 69.941750, 22.518012 ], [ 69.862360, 22.526932 ], [ 69.918557, 22.553246 ] ] ], [ [ [ 70.009098, 22.593388 ], [ 70.026938, 22.567965 ], [ 69.957806, 22.549678 ], [ 70.009098, 22.593388 ] ] ], [ [ [ 68.558223, 23.313696 ], [ 68.614866, 23.271325 ], [ 68.540828, 23.265527 ], [ 68.558223, 23.313696 ] ] ], [ [ [ 68.473034, 23.480504 ], [ 68.484631, 23.403344 ], [ 68.474372, 23.459988 ], [ 68.421297, 23.420293 ], [ 68.473034, 23.480504 ] ] ], [ [ [ 68.358409, 23.805201 ], [ 68.426203, 23.794942 ], [ 68.390522, 23.654449 ], [ 68.389630, 23.686115 ], [ 68.314700, 23.583087 ], [ 68.274113, 23.592007 ], [ 68.306672, 23.630810 ], [ 68.196953, 23.596913 ], [ 68.204535, 23.647758 ], [ 68.312024, 23.649989 ], [ 68.231296, 23.642852 ], [ 68.333879, 23.711092 ], [ 68.358409, 23.805201 ] ] ], [ [ [ 68.308010, 23.823933 ], [ 68.324513, 23.734285 ], [ 68.285710, 23.754801 ], [ 68.274113, 23.701280 ], [ 68.267423, 23.772196 ], [ 68.308010, 23.823933 ] ] ], [ [ [ 68.496673, 23.831069 ], [ 68.516743, 23.754801 ], [ 68.487753, 23.736961 ], [ 68.465452, 23.775318 ], [ 68.476602, 23.740529 ], [ 68.437353, 23.739191 ], [ 68.448058, 23.806539 ], [ 68.496673, 23.831069 ] ] ], [ [ [ 68.395874, 23.878346 ], [ 68.426649, 23.810553 ], [ 68.405241, 23.793158 ], [ 68.379372, 23.838205 ], [ 68.401673, 23.790482 ], [ 68.330311, 23.787360 ], [ 68.395874, 23.878346 ] ] ], [ [ [ 68.449396, 23.938558 ], [ 68.442260, 23.870318 ], [ 68.422189, 23.894849 ], [ 68.349935, 23.846234 ], [ 68.353057, 23.900647 ], [ 68.449396, 23.938558 ] ] ], [ [ [ 68.535476, 23.946140 ], [ 68.588551, 23.916703 ], [ 68.517189, 23.856492 ], [ 68.485969, 23.889943 ], [ 68.525664, 23.892619 ], [ 68.535476, 23.946140 ] ] ], [ [ [ 68.481955, 23.992525 ], [ 68.518528, 23.924286 ], [ 68.443598, 23.848464 ], [ 68.462776, 23.931868 ], [ 68.427987, 23.938112 ], [ 68.481955, 23.992525 ] ] ], [ [ [ 68.430217, 23.995201 ], [ 68.412823, 23.927408 ], [ 68.345029, 23.901093 ], [ 68.337447, 23.819473 ], [ 68.265639, 23.792712 ], [ 68.266977, 23.691914 ], [ 68.237986, 23.681209 ], [ 68.192493, 23.731163 ], [ 68.234418, 23.774872 ], [ 68.213010, 23.834637 ], [ 68.287494, 23.839097 ], [ 68.248691, 23.853816 ], [ 68.317822, 23.879238 ], [ 68.258949, 23.875224 ], [ 68.277235, 23.914919 ], [ 68.430217, 23.995201 ] ] ], [ [ [ 74.322920, 23.062592 ], [ 74.362169, 22.933248 ], [ 74.400526, 22.899351 ], [ 74.451371, 22.923882 ], [ 74.479024, 22.858764 ], [ 74.384024, 22.643787 ], [ 74.265385, 22.644679 ], [ 74.153436, 22.517566 ], [ 74.066909, 22.551016 ], [ 74.034797, 22.508199 ], [ 74.085196, 22.508645 ], [ 74.123107, 22.420781 ], [ 74.190901, 22.477871 ], [ 74.294375, 22.394466 ], [ 74.206957, 22.367706 ], [ 74.190901, 22.321767 ], [ 74.071816, 22.360124 ], [ 74.075830, 22.221860 ], [ 74.122661, 22.212940 ], [ 74.130243, 22.097869 ], [ 74.180642, 22.086719 ], [ 74.097684, 22.015357 ], [ 74.153882, 21.986366 ], [ 74.145854, 21.954253 ], [ 73.810453, 21.823126 ], [ 73.898317, 21.667468 ], [ 73.787706, 21.625097 ], [ 73.860852, 21.495753 ], [ 74.025430, 21.552843 ], [ 74.181980, 21.561763 ], [ 74.205173, 21.529204 ], [ 74.309986, 21.567115 ], [ 74.327826, 21.495753 ], [ 74.111065, 21.448030 ], [ 74.067356, 21.481927 ], [ 74.048623, 21.419485 ], [ 73.952731, 21.402537 ], [ 73.948270, 21.297724 ], [ 73.832307, 21.267396 ], [ 73.822495, 21.171949 ], [ 73.636508, 21.132700 ], [ 73.588339, 21.167935 ], [ 73.660147, 21.108169 ], [ 73.752471, 21.113968 ], [ 73.774772, 21.010493 ], [ 73.906345, 20.983286 ], [ 73.949608, 20.742440 ], [ 73.822495, 20.693825 ], [ 73.838106, 20.615773 ], [ 73.670851, 20.562252 ], [ 73.607518, 20.636289 ], [ 73.538386, 20.673754 ], [ 73.498245, 20.653238 ], [ 73.482635, 20.717017 ], [ 73.453644, 20.710327 ], [ 73.402798, 20.642534 ], [ 73.500921, 20.540397 ], [ 73.391202, 20.390091 ], [ 73.430005, 20.206334 ], [ 73.311366, 20.207226 ], [ 73.289066, 20.149691 ], [ 73.216366, 20.122038 ], [ 73.196295, 20.155935 ], [ 73.229300, 20.184480 ], [ 73.180239, 20.208564 ], [ 73.128055, 20.157273 ], [ 73.072304, 20.163517 ], [ 73.076764, 20.229973 ], [ 73.179347, 20.289739 ], [ 73.112891, 20.304903 ], [ 73.107539, 20.360654 ], [ 73.044205, 20.291077 ], [ 73.019675, 20.317391 ], [ 72.983994, 20.271898 ], [ 72.924674, 20.278588 ], [ 72.970613, 20.212133 ], [ 72.874721, 20.225959 ], [ 72.835472, 20.144785 ], [ 72.737795, 20.136757 ], [ 72.755636, 20.291969 ], [ 72.821646, 20.370913 ], [ 72.845284, 20.407040 ], [ 72.875613, 20.381171 ], [ 72.837256, 20.422204 ], [ 72.860003, 20.470819 ], [ 72.897468, 20.587228 ], [ 72.851082, 20.742886 ], [ 72.889439, 20.748238 ], [ 72.834580, 20.781689 ], [ 72.793547, 20.944929 ], [ 72.776598, 20.915047 ], [ 72.752068, 20.946713 ], [ 72.723077, 21.048850 ], [ 72.770354, 21.066690 ], [ 72.704345, 21.074719 ], [ 72.720847, 21.143404 ], [ 72.666880, 21.155447 ], [ 72.627185, 21.076057 ], [ 72.618264, 21.222794 ], [ 72.653053, 21.226809 ], [ 72.587490, 21.275870 ], [ 72.696762, 21.464533 ], [ 72.645025, 21.433758 ], [ 72.674016, 21.520284 ], [ 72.742702, 21.545707 ], [ 72.625847, 21.492185 ], [ 72.597302, 21.552397 ], [ 72.628077, 21.616623 ], [ 72.835026, 21.667914 ], [ 72.537536, 21.664346 ], [ 72.507208, 21.701365 ], [ 72.569649, 21.824464 ], [ 72.517466, 21.857469 ], [ 72.502301, 21.955145 ], [ 72.583030, 22.201789 ], [ 72.647255, 22.216954 ], [ 72.753852, 22.173245 ], [ 72.808711, 22.245945 ], [ 72.877843, 22.223644 ], [ 72.919768, 22.269583 ], [ 72.866693, 22.242823 ], [ 72.843946, 22.282518 ], [ 72.752068, 22.230780 ], [ 72.635213, 22.284748 ], [ 72.541104, 22.243269 ], [ 72.542442, 22.281180 ], [ 72.485799, 22.197329 ], [ 72.492935, 22.248175 ], [ 72.388569, 22.310616 ], [ 72.412653, 22.356109 ], [ 72.381432, 22.385546 ], [ 72.416667, 22.227212 ], [ 72.399719, 22.199113 ], [ 72.356456, 22.271367 ], [ 72.391691, 22.167893 ], [ 72.357794, 22.192869 ], [ 72.343521, 22.125076 ], [ 72.294460, 22.202235 ], [ 72.323897, 22.129982 ], [ 72.278404, 21.931953 ], [ 72.241385, 22.049700 ], [ 72.298028, 22.063526 ], [ 72.300258, 22.108573 ], [ 72.265469, 22.105451 ], [ 72.232465, 22.017587 ], [ 72.172253, 22.041671 ], [ 72.231127, 22.007775 ], [ 72.220868, 21.956037 ], [ 72.146384, 21.983690 ], [ 72.252981, 21.897164 ], [ 72.265915, 21.741952 ], [ 72.182957, 21.823572 ], [ 72.241385, 21.787445 ], [ 72.306056, 21.628665 ], [ 72.223098, 21.438664 ], [ 72.108919, 21.283006 ], [ 72.075915, 21.302184 ], [ 72.113826, 21.196480 ], [ 72.007675, 21.132700 ], [ 72.010797, 21.185775 ], [ 71.976900, 21.121104 ], [ 71.819904, 21.072043 ], [ 71.806970, 21.037700 ], [ 71.514832, 20.948051 ], [ 71.439456, 20.869107 ], [ 71.377907, 20.874014 ], [ 71.149103, 20.757159 ], [ 70.962670, 20.729506 ], [ 70.892200, 20.708097 ], [ 70.888632, 20.708989 ], [ 70.873914, 20.709881 ], [ 70.919853, 20.743332 ], [ 70.854289, 20.753590 ], [ 70.896214, 20.824952 ], [ 70.816824, 20.851267 ], [ 70.900228, 20.885610 ], [ 70.886848, 20.945375 ], [ 70.741448, 20.989976 ], [ 70.673655, 20.763403 ], [ 70.439053, 20.852605 ], [ 70.099638, 21.104601 ], [ 69.778064, 21.457842 ], [ 69.805270, 21.463641 ], [ 69.712946, 21.528312 ], [ 69.764237, 21.578712 ], [ 69.737477, 21.650519 ], [ 69.675481, 21.638923 ], [ 69.696890, 21.592984 ], [ 69.632664, 21.642937 ], [ 69.723650, 21.572467 ], [ 69.710716, 21.539463 ], [ 69.587617, 21.621083 ], [ 69.055079, 22.128644 ], [ 68.935994, 22.310170 ], [ 68.984609, 22.414091 ], [ 69.067568, 22.480101 ], [ 69.043929, 22.432823 ], [ 69.069352, 22.395804 ], [ 69.194235, 22.423903 ], [ 69.158108, 22.312846 ], [ 69.232592, 22.257987 ], [ 69.334282, 22.330241 ], [ 69.488602, 22.337823 ], [ 69.523837, 22.385546 ], [ 69.498415, 22.435499 ], [ 69.591185, 22.361016 ], [ 69.575575, 22.319090 ], [ 69.699120, 22.395804 ], [ 69.671913, 22.450664 ], [ 69.728110, 22.473856 ], [ 69.797688, 22.399819 ], [ 69.834261, 22.500617 ], [ 69.869942, 22.446650 ], [ 69.976093, 22.542988 ], [ 70.162972, 22.551462 ], [ 70.493466, 23.075080 ], [ 70.401142, 23.030479 ], [ 70.386869, 22.948413 ], [ 70.347620, 22.930572 ], [ 70.197760, 22.998366 ], [ 70.220061, 22.956441 ], [ 70.123277, 22.960901 ], [ 70.153159, 23.029587 ], [ 70.126399, 22.946629 ], [ 70.091164, 22.952427 ], [ 70.132197, 22.924774 ], [ 69.798580, 22.850736 ], [ 69.704918, 22.728083 ], [ 69.633556, 22.795431 ], [ 69.641138, 22.766440 ], [ 69.600551, 22.758858 ], [ 69.197357, 22.838248 ], [ 68.759374, 23.080432 ], [ 68.591227, 23.214235 ], [ 68.671955, 23.269987 ], [ 68.630030, 23.295855 ], [ 68.725031, 23.295855 ], [ 68.758036, 23.330198 ], [ 68.652331, 23.302992 ], [ 68.605946, 23.381044 ], [ 68.558669, 23.387288 ], [ 68.491767, 23.501021 ], [ 68.489091, 23.635270 ], [ 68.761158, 23.874778 ], [ 68.603716, 23.850248 ], [ 68.525218, 23.758815 ], [ 68.514959, 23.824825 ], [ 68.663035, 23.917149 ], [ 68.558669, 23.923840 ], [ 68.546626, 23.963089 ], [ 68.749115, 23.962197 ], [ 68.772754, 24.294029 ], [ 68.826275, 24.308301 ], [ 68.847684, 24.208395 ], [ 68.887379, 24.195907 ], [ 68.947144, 24.276635 ], [ 69.000666, 24.225789 ], [ 69.092990, 24.269052 ], [ 69.199587, 24.235156 ], [ 69.310198, 24.276635 ], [ 69.600551, 24.277973 ], [ 69.724542, 24.174944 ], [ 70.000623, 24.166470 ], [ 70.119262, 24.290907 ], [ 70.575086, 24.420250 ], [ 70.611659, 24.400626 ], [ 70.571964, 24.344428 ], [ 70.574194, 24.252550 ], [ 70.805674, 24.222667 ], [ 70.893984, 24.257010 ], [ 70.885064, 24.290907 ], [ 70.959548, 24.346212 ], [ 71.046966, 24.347550 ], [ 71.131708, 24.401964 ], [ 71.007717, 24.442105 ], [ 70.998351, 24.541119 ], [ 71.020652, 24.630322 ], [ 71.107178, 24.680721 ], [ 71.297625, 24.607575 ], [ 71.351146, 24.653068 ], [ 71.383259, 24.621847 ], [ 71.488518, 24.674031 ], [ 71.616523, 24.670463 ], [ 71.661570, 24.633444 ], [ 71.798941, 24.670463 ], [ 71.858261, 24.604007 ], [ 71.876547, 24.675369 ], [ 71.944341, 24.626754 ], [ 72.052276, 24.705698 ], [ 72.165563, 24.614711 ], [ 72.353780, 24.618279 ], [ 72.251197, 24.580368 ], [ 72.442536, 24.504100 ], [ 72.464836, 24.407316 ], [ 72.507654, 24.409992 ], [ 72.544673, 24.506776 ], [ 72.697208, 24.457269 ], [ 72.732443, 24.361377 ], [ 72.868031, 24.365837 ], [ 72.923782, 24.326142 ], [ 72.991576, 24.364053 ], [ 72.963477, 24.383677 ], [ 73.000496, 24.470650 ], [ 73.094605, 24.494734 ], [ 73.084792, 24.394382 ], [ 73.169981, 24.350672 ], [ 73.231530, 24.364499 ], [ 73.180685, 24.301611 ], [ 73.145004, 24.307855 ], [ 73.082562, 24.185202 ], [ 73.223948, 24.098230 ], [ 73.198971, 24.051399 ], [ 73.245802, 24.010812 ], [ 73.373362, 24.128113 ], [ 73.424653, 23.930976 ], [ 73.362211, 23.861844 ], [ 73.362657, 23.787360 ], [ 73.508503, 23.703510 ], [ 73.513409, 23.616984 ], [ 73.577189, 23.655341 ], [ 73.660593, 23.622782 ], [ 73.632940, 23.452405 ], [ 73.704302, 23.455974 ], [ 73.726157, 23.412710 ], [ 73.764514, 23.458650 ], [ 73.832307, 23.446607 ], [ 73.894303, 23.337335 ], [ 73.971017, 23.377030 ], [ 74.044609, 23.296301 ], [ 74.133811, 23.269541 ], [ 74.127121, 23.179000 ], [ 74.182872, 23.152240 ], [ 74.246206, 23.188367 ], [ 74.322920, 23.062592 ] ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Haryana", "total":"7674", "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.574789, 30.384315 ], [ 77.570329, 30.311169 ], [ 77.423591, 30.168445 ], [ 77.414225, 30.107342 ], [ 77.270609, 30.048468 ], [ 77.117182, 29.771049 ], [ 77.143496, 29.705932 ], [ 77.085069, 29.533771 ], [ 77.139482, 29.441893 ], [ 77.119858, 29.349568 ], [ 77.153754, 29.335296 ], [ 77.122088, 29.105600 ], [ 77.213966, 29.006140 ], [ 77.190327, 28.955740 ], [ 77.221102, 28.904003 ], [ 77.186759, 28.866984 ], [ 77.139036, 28.841561 ], [ 77.075702, 28.884378 ], [ 76.942345, 28.820599 ], [ 76.933871, 28.637734 ], [ 76.878119, 28.637734 ], [ 76.837532, 28.557006 ], [ 76.879457, 28.508837 ], [ 77.005679, 28.514635 ], [ 77.006125, 28.542734 ], [ 77.072580, 28.520433 ], [ 77.165797, 28.408484 ], [ 77.240727, 28.429001 ], [ 77.242511, 28.484752 ], [ 77.337957, 28.508837 ], [ 77.474437, 28.413390 ], [ 77.494061, 28.358085 ], [ 77.463732, 28.338015 ], [ 77.495845, 28.307240 ], [ 77.467301, 28.269775 ], [ 77.541338, 28.247920 ], [ 77.519038, 28.201981 ], [ 77.489155, 28.211793 ], [ 77.542230, 28.181465 ], [ 77.469085, 28.086018 ], [ 77.537324, 27.957567 ], [ 77.275962, 27.806369 ], [ 77.231806, 27.785852 ], [ 77.193896, 27.821979 ], [ 77.168919, 27.784960 ], [ 77.150632, 27.815735 ], [ 77.126548, 27.776486 ], [ 77.038238, 27.820195 ], [ 77.020843, 27.778270 ], [ 77.079271, 27.738575 ], [ 76.993636, 27.741697 ], [ 76.970444, 27.656955 ], [ 76.902650, 27.658739 ], [ 76.883918, 27.730993 ], [ 76.961970, 28.144000 ], [ 76.850467, 28.226512 ], [ 76.801405, 28.211793 ], [ 76.791593, 28.157380 ], [ 76.651100, 28.096722 ], [ 76.660020, 28.019116 ], [ 76.538259, 27.970501 ], [ 76.538705, 28.039187 ], [ 76.453517, 28.049891 ], [ 76.497672, 28.064610 ], [ 76.448610, 28.093154 ], [ 76.497672, 28.106535 ], [ 76.470911, 28.154704 ], [ 76.376803, 28.138201 ], [ 76.279126, 28.178788 ], [ 76.355394, 28.128389 ], [ 76.297413, 28.101182 ], [ 76.354502, 28.074422 ], [ 76.341122, 28.036065 ], [ 76.177436, 28.059257 ], [ 76.214008, 28.031605 ], [ 76.155135, 27.999046 ], [ 76.223375, 27.840712 ], [ 76.172975, 27.807261 ], [ 76.088233, 27.868364 ], [ 75.962904, 27.864796 ], [ 75.977176, 27.909398 ], [ 75.923655, 27.933036 ], [ 75.963350, 27.937050 ], [ 75.970040, 28.031159 ], [ 76.035604, 28.073976 ], [ 75.984759, 28.050783 ], [ 75.936143, 28.093600 ], [ 76.027576, 28.172544 ], [ 76.092693, 28.155150 ], [ 75.922317, 28.368789 ], [ 75.770227, 28.407592 ], [ 75.778255, 28.457546 ], [ 75.629287, 28.545856 ], [ 75.618137, 28.602053 ], [ 75.555696, 28.614542 ], [ 75.466939, 28.926304 ], [ 75.511094, 29.011046 ], [ 75.434826, 29.016398 ], [ 75.361235, 29.142619 ], [ 75.400484, 29.189004 ], [ 75.395577, 29.262150 ], [ 75.314849, 29.235835 ], [ 75.319310, 29.293371 ], [ 75.223417, 29.234943 ], [ 75.180154, 29.268840 ], [ 75.078017, 29.232267 ], [ 75.040106, 29.287127 ], [ 74.953134, 29.281775 ], [ 74.927266, 29.364733 ], [ 74.841185, 29.403982 ], [ 74.756443, 29.355813 ], [ 74.650292, 29.372315 ], [ 74.641818, 29.331282 ], [ 74.595879, 29.328160 ], [ 74.528977, 29.449475 ], [ 74.578931, 29.458841 ], [ 74.614612, 29.527081 ], [ 74.566442, 29.563654 ], [ 74.605245, 29.752763 ], [ 74.471888, 29.743842 ], [ 74.465198, 29.787552 ], [ 74.553508, 29.865604 ], [ 74.504893, 29.907975 ], [ 74.519165, 29.943210 ], [ 74.647170, 29.904853 ], [ 74.690879, 29.969078 ], [ 74.801044, 29.992717 ], [ 74.915669, 29.949008 ], [ 74.989707, 29.856237 ], [ 75.084708, 29.915111 ], [ 75.090060, 29.806730 ], [ 75.153839, 29.780861 ], [ 75.182384, 29.838843 ], [ 75.230999, 29.751871 ], [ 75.157853, 29.662668 ], [ 75.221187, 29.606471 ], [ 75.223417, 29.546259 ], [ 75.296117, 29.568114 ], [ 75.317525, 29.670697 ], [ 75.350530, 29.659100 ], [ 75.335366, 29.693889 ], [ 75.444193, 29.808068 ], [ 75.568630, 29.742504 ], [ 75.625273, 29.773279 ], [ 75.697527, 29.754993 ], [ 75.706001, 29.808514 ], [ 75.771565, 29.825463 ], [ 75.879500, 29.746965 ], [ 76.035604, 29.746519 ], [ 76.077529, 29.805838 ], [ 76.242107, 29.869172 ], [ 76.166285, 29.928491 ], [ 76.203750, 29.944102 ], [ 76.190816, 30.016355 ], [ 76.255041, 30.104666 ], [ 76.190816, 30.134995 ], [ 76.203750, 30.159079 ], [ 76.322835, 30.108234 ], [ 76.348704, 30.127858 ], [ 76.325957, 30.149267 ], [ 76.390183, 30.127412 ], [ 76.410253, 30.202342 ], [ 76.452179, 30.100652 ], [ 76.601146, 30.080135 ], [ 76.639057, 30.205910 ], [ 76.584198, 30.256310 ], [ 76.532461, 30.227319 ], [ 76.547625, 30.264784 ], [ 76.715325, 30.333024 ], [ 76.738518, 30.359784 ], [ 76.700161, 30.393681 ], [ 76.757696, 30.438728 ], [ 76.832626, 30.433822 ], [ 76.880349, 30.359784 ], [ 76.927181, 30.388775 ], [ 76.888824, 30.440958 ], [ 76.913354, 30.599738 ], [ 76.819692, 30.685819 ], [ 76.828166, 30.763871 ], [ 76.846899, 30.792415 ], [ 76.769739, 30.906594 ], [ 76.810326, 30.930233 ], [ 76.852251, 30.870467 ], [ 76.902204, 30.897228 ], [ 76.953941, 30.811148 ], [ 76.998097, 30.814270 ], [ 77.013261, 30.742016 ], [ 77.077041, 30.744692 ], [ 77.151970, 30.690725 ], [ 77.157323, 30.599738 ], [ 77.111383, 30.567180 ], [ 77.202816, 30.480207 ], [ 77.345985, 30.461921 ], [ 77.400399, 30.418658 ], [ 77.450352, 30.465043 ], [ 77.416455, 30.408400 ], [ 77.509672, 30.448987 ], [ 77.574789, 30.384315 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Himachal Pradesh", "total":"3454", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.907025, 31.259389 ], [ 78.996674, 31.115328 ], [ 78.871344, 31.107299 ], [ 78.795076, 31.204976 ], [ 78.647893, 31.194718 ], [ 78.595263, 31.236197 ], [ 78.469934, 31.203638 ], [ 78.356201, 31.291056 ], [ 78.014111, 31.155023 ], [ 77.887443, 31.154577 ], [ 77.800471, 31.062252 ], [ 77.816973, 30.953425 ], [ 77.734461, 30.959670 ], [ 77.745612, 30.922205 ], [ 77.795565, 30.923989 ], [ 77.789321, 30.858425 ], [ 77.744720, 30.881172 ], [ 77.688076, 30.768777 ], [ 77.779062, 30.663964 ], [ 77.782185, 30.619363 ], [ 77.729555, 30.598400 ], [ 77.810729, 30.533283 ], [ 77.563193, 30.404385 ], [ 77.574789, 30.384315 ], [ 77.509672, 30.448987 ], [ 77.416455, 30.408400 ], [ 77.450352, 30.465043 ], [ 77.400399, 30.418658 ], [ 77.345985, 30.461921 ], [ 77.202816, 30.480207 ], [ 77.111383, 30.567180 ], [ 77.157323, 30.599738 ], [ 77.151970, 30.690725 ], [ 77.077041, 30.744692 ], [ 77.013261, 30.742016 ], [ 76.998097, 30.814270 ], [ 76.953941, 30.811148 ], [ 76.902204, 30.897228 ], [ 76.852251, 30.870467 ], [ 76.810326, 30.930233 ], [ 76.769739, 30.906594 ], [ 76.610067, 31.004271 ], [ 76.625677, 31.110421 ], [ 76.589104, 31.127816 ], [ 76.590442, 31.182675 ], [ 76.626123, 31.227276 ], [ 76.580630, 31.216572 ], [ 76.601592, 31.250915 ], [ 76.570372, 31.280352 ], [ 76.535137, 31.255375 ], [ 76.466897, 31.310235 ], [ 76.431216, 31.283028 ], [ 76.448164, 31.305774 ], [ 76.362976, 31.441362 ], [ 76.296075, 31.319155 ], [ 76.172975, 31.306666 ], [ 76.135064, 31.361972 ], [ 76.153351, 31.414155 ], [ 75.921871, 31.817350 ], [ 75.971378, 31.814673 ], [ 75.894664, 31.949815 ], [ 75.578888, 32.081834 ], [ 75.661846, 32.164792 ], [ 75.620367, 32.185309 ], [ 75.622597, 32.234816 ], [ 75.932129, 32.416789 ], [ 75.868796, 32.488597 ], [ 75.872364, 32.576015 ], [ 75.923655, 32.643809 ], [ 75.912505, 32.757096 ], [ 75.794758, 32.870383 ], [ 75.808138, 32.929702 ], [ 75.945956, 32.885101 ], [ 76.093585, 33.004632 ], [ 76.237201, 33.032731 ], [ 76.391521, 33.186605 ], [ 76.547625, 33.209351 ], [ 76.627015, 33.162520 ], [ 76.730044, 33.179468 ], [ 76.778213, 33.255736 ], [ 76.828166, 33.246370 ], [ 76.803636, 33.155830 ], [ 76.877227, 33.114351 ], [ 76.917368, 33.033623 ], [ 77.136360, 32.980547 ], [ 77.146172, 32.914092 ], [ 77.173825, 32.931040 ], [ 77.327699, 32.819983 ], [ 77.387464, 32.885547 ], [ 77.455258, 32.861908 ], [ 77.665330, 32.985899 ], [ 77.712607, 32.971627 ], [ 77.790213, 32.905617 ], [ 77.761222, 32.865030 ], [ 77.915096, 32.766016 ], [ 77.903054, 32.693316 ], [ 77.982444, 32.586719 ], [ 78.371366, 32.762002 ], [ 78.388760, 32.623292 ], [ 78.296436, 32.577353 ], [ 78.278595, 32.507775 ], [ 78.310262, 32.476108 ], [ 78.382516, 32.529630 ], [ 78.410615, 32.511789 ], [ 78.518549, 32.418573 ], [ 78.439159, 32.246413 ], [ 78.593033, 32.218760 ], [ 78.597493, 32.121975 ], [ 78.770992, 31.999768 ], [ 78.691156, 31.793265 ], [ 78.734419, 31.692020 ], [ 78.779466, 31.689790 ], [ 78.831203, 31.615306 ], [ 78.706766, 31.518522 ], [ 78.795523, 31.452958 ], [ 78.776344, 31.401221 ], [ 78.907025, 31.259389 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Jammu and Kashmir", "total":"4534", "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.410615, 32.511789 ], [ 78.382516, 32.529630 ], [ 78.310262, 32.476108 ], [ 78.278595, 32.507775 ], [ 78.296436, 32.577353 ], [ 78.388760, 32.623292 ], [ 78.371366, 32.762002 ], [ 77.982444, 32.586719 ], [ 77.903054, 32.693316 ], [ 77.915096, 32.766016 ], [ 77.761222, 32.865030 ], [ 77.790213, 32.905617 ], [ 77.712607, 32.971627 ], [ 77.665330, 32.985899 ], [ 77.455258, 32.861908 ], [ 77.387464, 32.885547 ], [ 77.327699, 32.819983 ], [ 77.173825, 32.931040 ], [ 77.146172, 32.914092 ], [ 77.136360, 32.980547 ], [ 76.917368, 33.033623 ], [ 76.877227, 33.114351 ], [ 76.803636, 33.155830 ], [ 76.828166, 33.246370 ], [ 76.778213, 33.255736 ], [ 76.730044, 33.179468 ], [ 76.627015, 33.162520 ], [ 76.547625, 33.209351 ], [ 76.391521, 33.186605 ], [ 76.237201, 33.032731 ], [ 76.093585, 33.004632 ], [ 75.945956, 32.885101 ], [ 75.808138, 32.929702 ], [ 75.794758, 32.870383 ], [ 75.912505, 32.757096 ], [ 75.923655, 32.643809 ], [ 75.872364, 32.576015 ], [ 75.711354, 32.418127 ], [ 75.529381, 32.348995 ], [ 75.501282, 32.275849 ], [ 75.472291, 32.340075 ], [ 75.322432, 32.337399 ], [ 75.036538, 32.492165 ], [ 74.979449, 32.447564 ], [ 74.835387, 32.496179 ], [ 74.698462, 32.485029 ], [ 74.642264, 32.611250 ], [ 74.697124, 32.839608 ], [ 74.641818, 32.823105 ], [ 74.614165, 32.757542 ], [ 74.531653, 32.740593 ], [ 74.466090, 32.781180 ], [ 74.413906, 32.903833 ], [ 74.318014, 32.919890 ], [ 74.349681, 33.016228 ], [ 74.205173, 33.043435 ], [ 74.111511, 33.164304 ], [ 74.014280, 33.198201 ], [ 74.020524, 33.258858 ], [ 74.103036, 33.270455 ], [ 74.170830, 33.346723 ], [ 74.186887, 33.455549 ], [ 74.095900, 33.570174 ], [ 74.028553, 33.574635 ], [ 73.956299, 33.720480 ], [ 74.065571, 33.819941 ], [ 74.219891, 33.867218 ], [ 74.262709, 33.974261 ], [ 74.214539, 34.038486 ], [ 73.883153, 34.050083 ], [ 73.976369, 34.264614 ], [ 73.899209, 34.359615 ], [ 73.763176, 34.359615 ], [ 73.777002, 34.416258 ], [ 73.948270, 34.573254 ], [ 73.941580, 34.677175 ], [ 74.012942, 34.709734 ], [ 74.141839, 34.691001 ], [ 74.307310, 34.800274 ], [ 74.375549, 34.803396 ], [ 74.580269, 34.769945 ], [ 74.702922, 34.693231 ], [ 75.018698, 34.641494 ], [ 75.249732, 34.647292 ], [ 75.377737, 34.552292 ], [ 75.749265, 34.515719 ], [ 76.036496, 34.670485 ], [ 76.157811, 34.643278 ], [ 76.474479, 34.794476 ], [ 76.681874, 34.759687 ], [ 76.743424, 34.839969 ], [ 76.749222, 34.926495 ], [ 76.870091, 34.972434 ], [ 76.997650, 34.938983 ], [ 77.018167, 35.038444 ], [ 77.156877, 35.054500 ], [ 77.824110, 35.501404 ], [ 77.903054, 35.427812 ], [ 77.990472, 35.487131 ], [ 78.110003, 35.476873 ], [ 77.997162, 35.393915 ], [ 77.991810, 35.348422 ], [ 78.042655, 35.202130 ], [ 78.124275, 35.135228 ], [ 78.082796, 35.082599 ], [ 78.247820, 34.695015 ], [ 78.398572, 34.648630 ], [ 78.425333, 34.603583 ], [ 78.569395, 34.612057 ], [ 78.981509, 34.332854 ], [ 78.956087, 34.217783 ], [ 78.706320, 34.072383 ], [ 78.770546, 34.019754 ], [ 78.711672, 33.922523 ], [ 78.783926, 33.770434 ], [ 78.710780, 33.654917 ], [ 78.823175, 33.483648 ], [ 79.066697, 33.295877 ], [ 79.075172, 33.228530 ], [ 79.409680, 33.178576 ], [ 79.352591, 32.979209 ], [ 79.448483, 32.889115 ], [ 79.564446, 32.670569 ], [ 79.545268, 32.607236 ], [ 79.448037, 32.586273 ], [ 79.312004, 32.487259 ], [ 79.203177, 32.510897 ], [ 79.126463, 32.464512 ], [ 79.104608, 32.371742 ], [ 78.977049, 32.342751 ], [ 78.781250, 32.475216 ], [ 78.746015, 32.695992 ], [ 78.625592, 32.607236 ], [ 78.452540, 32.579583 ], [ 78.410615, 32.511789 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Jharkhand", "total":"4654", "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.599788, 25.314503 ], [ 87.684084, 25.310043 ], [ 87.707723, 25.256522 ], [ 87.787559, 25.220395 ], [ 87.776408, 25.091051 ], [ 87.876761, 25.028164 ], [ 87.973545, 24.896590 ], [ 87.888803, 24.852881 ], [ 87.854460, 24.764125 ], [ 87.817887, 24.765909 ], [ 87.900846, 24.721754 ], [ 87.913334, 24.658420 ], [ 87.872747, 24.610697 ], [ 87.909766, 24.593749 ], [ 87.848216, 24.550932 ], [ 87.769272, 24.581706 ], [ 87.806291, 24.545133 ], [ 87.795141, 24.491166 ], [ 87.822794, 24.494288 ], [ 87.784883, 24.414452 ], [ 87.809859, 24.406424 ], [ 87.756338, 24.303395 ], [ 87.635915, 24.242738 ], [ 87.689436, 24.149967 ], [ 87.569459, 24.155765 ], [ 87.607816, 24.129005 ], [ 87.576149, 24.085296 ], [ 87.493637, 24.115178 ], [ 87.510586, 24.039803 ], [ 87.433872, 24.008136 ], [ 87.457956, 23.981375 ], [ 87.238073, 24.041141 ], [ 87.294716, 23.898417 ], [ 87.270631, 23.872994 ], [ 87.248331, 23.906891 ], [ 87.242533, 23.826163 ], [ 87.131030, 23.866750 ], [ 87.166265, 23.819473 ], [ 87.124340, 23.794942 ], [ 86.895090, 23.880130 ], [ 86.882155, 23.814567 ], [ 86.871005, 23.844004 ], [ 86.792953, 23.831515 ], [ 86.819714, 23.761045 ], [ 86.792061, 23.687454 ], [ 86.439712, 23.629472 ], [ 86.358092, 23.542946 ], [ 86.371918, 23.482734 ], [ 86.300111, 23.419847 ], [ 86.243021, 23.419401 ], [ 86.238561, 23.469800 ], [ 86.145345, 23.472922 ], [ 86.144899, 23.567922 ], [ 86.046776, 23.583979 ], [ 86.010649, 23.551866 ], [ 86.047222, 23.493439 ], [ 85.943747, 23.454636 ], [ 85.866141, 23.470246 ], [ 85.895578, 23.370785 ], [ 85.826446, 23.263297 ], [ 85.831353, 23.195057 ], [ 85.915203, 23.129493 ], [ 86.036964, 23.143766 ], [ 86.212692, 22.991676 ], [ 86.540065, 22.987216 ], [ 86.518210, 22.944398 ], [ 86.433022, 22.923436 ], [ 86.462905, 22.896675 ], [ 86.416074, 22.776698 ], [ 86.506614, 22.701322 ], [ 86.539173, 22.720501 ], [ 86.617671, 22.673224 ], [ 86.651568, 22.575993 ], [ 86.759948, 22.572425 ], [ 86.798751, 22.498833 ], [ 86.745230, 22.475640 ], [ 86.762178, 22.425241 ], [ 86.843798, 22.396250 ], [ 86.829080, 22.324443 ], [ 86.886170, 22.294114 ], [ 86.885724, 22.252189 ], [ 86.790277, 22.262893 ], [ 86.800089, 22.213832 ], [ 86.722929, 22.215170 ], [ 86.499924, 22.340945 ], [ 86.433468, 22.301696 ], [ 86.280040, 22.445312 ], [ 86.111894, 22.482777 ], [ 86.078443, 22.530500 ], [ 86.038302, 22.563505 ], [ 85.958020, 22.476087 ], [ 86.021353, 22.381978 ], [ 85.992809, 22.338269 ], [ 86.043208, 22.306156 ], [ 85.969616, 22.243269 ], [ 86.026706, 22.185287 ], [ 85.902714, 21.966741 ], [ 85.760883, 21.989934 ], [ 85.788089, 22.077352 ], [ 85.830907, 22.076906 ], [ 85.801916, 22.110803 ], [ 85.681493, 22.048808 ], [ 85.644474, 22.090287 ], [ 85.590952, 22.074230 ], [ 85.363041, 22.154512 ], [ 85.231021, 22.000192 ], [ 85.095434, 22.099653 ], [ 84.987499, 22.076906 ], [ 85.070457, 22.272259 ], [ 85.114612, 22.290546 ], [ 85.062429, 22.478317 ], [ 84.893837, 22.418105 ], [ 84.807756, 22.446650 ], [ 84.743977, 22.414537 ], [ 84.526769, 22.419889 ], [ 84.425971, 22.348973 ], [ 84.289045, 22.337377 ], [ 84.152566, 22.400711 ], [ 84.134725, 22.470734 ], [ 84.002706, 22.520688 ], [ 84.004936, 22.569749 ], [ 84.080312, 22.636651 ], [ 84.220805, 22.668763 ], [ 84.225265, 22.735219 ], [ 84.369773, 22.864562 ], [ 84.388952, 22.938600 ], [ 84.370665, 22.975173 ], [ 84.217237, 22.976511 ], [ 84.190031, 23.023789 ], [ 84.148105, 22.964023 ], [ 84.129373, 23.081324 ], [ 84.033481, 23.138413 ], [ 84.070053, 23.330198 ], [ 84.043293, 23.373907 ], [ 84.006720, 23.352945 ], [ 83.965687, 23.381044 ], [ 84.022776, 23.544284 ], [ 84.007166, 23.632148 ], [ 83.938034, 23.622336 ], [ 83.935358, 23.563016 ], [ 83.774794, 23.599589 ], [ 83.714582, 23.682547 ], [ 83.729301, 23.754801 ], [ 83.695404, 23.820811 ], [ 83.561154, 23.862736 ], [ 83.506741, 24.028206 ], [ 83.323430, 24.101352 ], [ 83.401928, 24.265930 ], [ 83.376060, 24.314546 ], [ 83.451436, 24.364945 ], [ 83.400144, 24.408654 ], [ 83.393008, 24.500978 ], [ 83.498267, 24.526847 ], [ 83.716812, 24.504992 ], [ 83.868010, 24.533091 ], [ 83.933128, 24.551824 ], [ 83.992001, 24.637904 ], [ 84.046861, 24.612481 ], [ 84.109748, 24.481354 ], [ 84.145875, 24.540227 ], [ 84.179326, 24.510345 ], [ 84.188247, 24.555392 ], [ 84.256932, 24.530861 ], [ 84.293059, 24.566096 ], [ 84.326510, 24.502762 ], [ 84.293059, 24.451025 ], [ 84.493318, 24.286893 ], [ 84.521417, 24.376095 ], [ 84.572262, 24.412222 ], [ 84.658343, 24.393936 ], [ 84.678859, 24.456377 ], [ 84.795268, 24.529523 ], [ 84.832733, 24.511683 ], [ 84.834517, 24.452363 ], [ 84.880010, 24.462621 ], [ 84.897851, 24.372081 ], [ 85.076255, 24.439875 ], [ 85.089636, 24.379217 ], [ 85.169472, 24.429616 ], [ 85.150739, 24.463067 ], [ 85.281866, 24.497410 ], [ 85.282313, 24.526847 ], [ 85.486586, 24.550932 ], [ 85.518253, 24.524617 ], [ 85.576680, 24.603115 ], [ 85.664544, 24.582152 ], [ 85.649380, 24.686965 ], [ 85.696657, 24.713280 ], [ 85.736798, 24.822553 ], [ 85.877738, 24.800252 ], [ 85.950438, 24.732012 ], [ 86.050790, 24.779735 ], [ 86.039194, 24.741378 ], [ 86.124382, 24.705252 ], [ 86.133302, 24.603561 ], [ 86.322857, 24.583936 ], [ 86.279148, 24.462175 ], [ 86.452200, 24.368513 ], [ 86.505722, 24.517481 ], [ 86.602952, 24.604899 ], [ 86.668516, 24.560744 ], [ 86.777343, 24.619617 ], [ 86.800089, 24.564758 ], [ 86.911146, 24.538889 ], [ 86.929879, 24.642810 ], [ 87.050302, 24.606683 ], [ 87.077508, 24.818092 ], [ 87.151100, 24.858233 ], [ 87.144410, 25.017906 ], [ 87.176523, 25.063845 ], [ 87.250561, 25.105770 ], [ 87.291148, 25.089267 ], [ 87.323261, 25.223071 ], [ 87.467768, 25.193188 ], [ 87.490069, 25.305137 ], [ 87.539576, 25.281498 ], [ 87.580163, 25.348400 ], [ 87.599788, 25.314503 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Karnataka", "total":"3452", "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.549813, 18.291161 ], [ 77.602888, 18.277781 ], [ 77.564531, 18.200621 ], [ 77.600658, 18.099376 ], [ 77.545799, 18.053883 ], [ 77.653287, 17.969141 ], [ 77.511010, 17.801441 ], [ 77.561855, 17.747027 ], [ 77.450352, 17.691276 ], [ 77.440094, 17.581557 ], [ 77.501643, 17.540970 ], [ 77.527512, 17.573083 ], [ 77.589954, 17.562825 ], [ 77.591738, 17.532496 ], [ 77.685400, 17.505735 ], [ 77.684062, 17.472730 ], [ 77.652841, 17.503059 ], [ 77.610470, 17.444186 ], [ 77.510118, 17.427237 ], [ 77.527958, 17.371932 ], [ 77.451690, 17.370594 ], [ 77.454366, 17.276039 ], [ 77.380328, 17.219842 ], [ 77.359812, 17.161414 ], [ 77.462840, 17.103879 ], [ 77.499413, 17.007541 ], [ 77.453474, 16.908972 ], [ 77.471315, 16.779183 ], [ 77.437418, 16.783197 ], [ 77.423591, 16.714511 ], [ 77.466855, 16.711835 ], [ 77.465070, 16.678384 ], [ 77.416455, 16.662774 ], [ 77.469531, 16.646717 ], [ 77.464178, 16.584276 ], [ 77.391479, 16.565097 ], [ 77.415117, 16.517820 ], [ 77.366502, 16.483923 ], [ 77.235375, 16.467867 ], [ 77.342863, 16.379556 ], [ 77.591738, 16.337631 ], [ 77.592184, 16.289908 ], [ 77.487371, 16.249767 ], [ 77.509672, 15.921057 ], [ 77.180515, 15.950047 ], [ 77.076595, 15.909906 ], [ 77.022181, 15.831854 ], [ 77.064106, 15.823380 ], [ 77.047158, 15.724812 ], [ 77.124764, 15.659248 ], [ 77.116290, 15.624905 ], [ 77.029317, 15.633825 ], [ 77.026641, 15.500022 ], [ 76.970444, 15.491102 ], [ 77.061430, 15.322063 ], [ 77.109599, 15.327416 ], [ 77.164013, 15.259176 ], [ 77.120750, 15.221265 ], [ 77.163121, 15.161499 ], [ 77.078825, 15.000043 ], [ 76.774199, 15.071405 ], [ 76.763941, 14.969714 ], [ 76.864293, 14.963916 ], [ 76.865631, 14.937602 ], [ 76.848683, 14.804244 ], [ 76.780443, 14.779268 ], [ 76.760372, 14.602201 ], [ 76.870091, 14.468398 ], [ 76.973566, 14.478210 ], [ 76.941453, 14.399712 ], [ 76.883026, 14.390346 ], [ 76.879011, 14.346190 ], [ 76.949927, 14.294007 ], [ 76.943683, 14.236472 ], [ 77.105139, 14.213279 ], [ 77.151970, 14.337716 ], [ 77.281314, 14.331026 ], [ 77.279530, 14.276167 ], [ 77.359366, 14.269476 ], [ 77.383896, 14.191871 ], [ 77.415563, 14.211941 ], [ 77.385680, 14.324782 ], [ 77.499413, 14.260556 ], [ 77.500305, 14.150837 ], [ 77.409765, 14.169570 ], [ 77.347769, 14.124523 ], [ 77.344647, 14.095978 ], [ 77.395493, 14.103560 ], [ 77.326361, 14.022832 ], [ 77.383450, 14.007222 ], [ 77.375868, 13.969311 ], [ 77.430728, 13.968865 ], [ 77.397277, 13.880555 ], [ 77.348215, 13.896611 ], [ 77.353568, 13.982245 ], [ 77.313427, 14.024616 ], [ 77.147510, 13.991611 ], [ 77.121196, 14.042011 ], [ 77.023519, 14.053161 ], [ 77.019951, 14.172692 ], [ 76.941453, 14.189194 ], [ 76.891500, 14.158866 ], [ 76.974904, 14.065203 ], [ 76.931195, 14.022832 ], [ 77.036007, 13.925602 ], [ 76.968214, 13.814545 ], [ 76.994082, 13.741399 ], [ 77.026195, 13.771282 ], [ 77.060092, 13.738723 ], [ 77.166689, 13.754779 ], [ 77.123872, 13.849334 ], [ 77.162675, 13.856916 ], [ 77.176947, 13.917573 ], [ 77.178731, 13.860038 ], [ 77.234037, 13.894827 ], [ 77.250539, 13.839521 ], [ 77.424483, 13.835061 ], [ 77.408873, 13.799380 ], [ 77.457488, 13.797150 ], [ 77.445000, 13.695906 ], [ 77.476667, 13.677619 ], [ 77.487371, 13.706610 ], [ 77.521714, 13.687878 ], [ 77.519484, 13.743629 ], [ 77.621174, 13.727573 ], [ 77.649273, 13.775742 ], [ 77.708593, 13.732925 ], [ 77.713053, 13.790460 ], [ 77.827678, 13.860484 ], [ 77.818311, 13.934968 ], [ 77.911528, 13.897057 ], [ 77.966387, 13.950578 ], [ 77.944533, 13.819897 ], [ 77.985120, 13.861822 ], [ 78.037749, 13.852902 ], [ 78.041317, 13.886799 ], [ 78.113571, 13.840860 ], [ 78.105543, 13.684310 ], [ 78.058266, 13.666915 ], [ 78.080566, 13.635248 ], [ 78.155942, 13.648629 ], [ 78.193853, 13.616070 ], [ 78.183149, 13.556304 ], [ 78.227750, 13.587079 ], [ 78.390544, 13.578159 ], [ 78.355309, 13.355153 ], [ 78.397234, 13.332407 ], [ 78.366906, 13.319918 ], [ 78.471718, 13.307876 ], [ 78.520779, 13.255693 ], [ 78.555568, 13.299402 ], [ 78.577423, 13.261937 ], [ 78.540850, 13.187453 ], [ 78.568949, 13.156678 ], [ 78.451648, 13.031349 ], [ 78.457892, 12.963109 ], [ 78.422657, 12.968461 ], [ 78.454324, 12.852944 ], [ 78.436037, 12.900667 ], [ 78.345497, 12.927874 ], [ 78.303126, 12.847146 ], [ 78.241130, 12.847592 ], [ 78.220614, 12.752592 ], [ 78.120707, 12.769986 ], [ 78.046669, 12.842240 ], [ 78.015003, 12.845808 ], [ 78.001622, 12.795409 ], [ 77.945425, 12.849376 ], [ 77.924908, 12.813695 ], [ 77.917772, 12.878367 ], [ 77.784861, 12.833766 ], [ 77.799579, 12.786935 ], [ 77.731339, 12.663835 ], [ 77.590400, 12.657591 ], [ 77.569883, 12.558131 ], [ 77.606456, 12.499703 ], [ 77.575235, 12.468482 ], [ 77.625189, 12.477403 ], [ 77.620282, 12.408271 ], [ 77.542676, 12.283834 ], [ 77.469977, 12.261979 ], [ 77.465516, 12.202214 ], [ 77.719297, 12.171439 ], [ 77.768358, 12.105429 ], [ 77.664884, 11.939513 ], [ 77.484249, 11.932377 ], [ 77.419131, 11.750850 ], [ 77.241619, 11.802587 ], [ 77.102909, 11.763338 ], [ 77.109153, 11.712939 ], [ 77.004341, 11.803033 ], [ 76.959740, 11.765122 ], [ 76.899528, 11.783409 ], [ 76.828612, 11.644253 ], [ 76.837086, 11.574676 ], [ 76.560113, 11.609910 ], [ 76.504362, 11.698221 ], [ 76.423634, 11.659418 ], [ 76.407577, 11.753526 ], [ 76.334878, 11.730780 ], [ 76.271990, 11.803479 ], [ 76.218469, 11.799911 ], [ 76.184126, 11.863691 ], [ 76.107858, 11.851203 ], [ 76.107858, 11.970734 ], [ 75.998139, 11.923456 ], [ 75.876824, 11.940851 ], [ 75.795204, 12.074208 ], [ 75.717152, 12.062166 ], [ 75.576658, 12.150922 ], [ 75.482550, 12.286064 ], [ 75.419216, 12.286510 ], [ 75.421446, 12.366792 ], [ 75.365695, 12.406933 ], [ 75.366587, 12.451534 ], [ 75.422338, 12.460008 ], [ 75.414310, 12.496581 ], [ 75.336704, 12.457778 ], [ 75.271140, 12.553671 ], [ 75.327784, 12.585337 ], [ 75.276938, 12.611652 ], [ 75.222971, 12.562591 ], [ 75.201563, 12.625032 ], [ 75.143135, 12.633507 ], [ 75.150717, 12.676324 ], [ 75.086046, 12.697732 ], [ 75.047689, 12.660267 ], [ 75.049473, 12.714681 ], [ 74.984801, 12.729845 ], [ 74.995951, 12.787827 ], [ 74.867054, 12.754376 ], [ 74.690433, 13.348463 ], [ 74.729236, 13.277101 ], [ 74.606583, 13.866728 ], [ 74.633344, 13.848888 ], [ 74.501325, 14.022832 ], [ 74.353695, 14.502740 ], [ 74.393390, 14.531285 ], [ 74.371535, 14.573656 ], [ 74.354141, 14.542881 ], [ 74.335408, 14.564736 ], [ 74.355925, 14.521919 ], [ 74.309540, 14.520581 ], [ 74.266723, 14.715042 ], [ 74.095454, 14.798892 ], [ 74.131135, 14.846169 ], [ 74.097238, 14.895677 ], [ 74.270291, 14.966592 ], [ 74.322028, 15.184246 ], [ 74.257356, 15.257838 ], [ 74.341653, 15.293073 ], [ 74.256464, 15.489318 ], [ 74.287239, 15.525891 ], [ 74.255126, 15.654342 ], [ 74.190009, 15.681103 ], [ 74.126229, 15.650328 ], [ 74.096346, 15.670844 ], [ 74.133811, 15.678427 ], [ 74.130689, 15.718122 ], [ 74.227474, 15.785469 ], [ 74.250220, 15.741314 ], [ 74.364845, 15.773873 ], [ 74.389376, 15.844343 ], [ 74.344329, 15.851925 ], [ 74.374211, 15.891620 ], [ 74.411676, 15.852371 ], [ 74.392052, 15.900986 ], [ 74.470104, 16.040588 ], [ 74.367967, 16.053076 ], [ 74.434423, 16.110612 ], [ 74.489282, 16.087419 ], [ 74.512921, 16.188218 ], [ 74.421043, 16.280542 ], [ 74.333624, 16.268054 ], [ 74.325596, 16.379110 ], [ 74.361723, 16.364838 ], [ 74.369305, 16.394275 ], [ 74.296159, 16.458947 ], [ 74.299727, 16.502656 ], [ 74.253342, 16.495073 ], [ 74.285901, 16.503548 ], [ 74.276535, 16.544581 ], [ 74.314000, 16.502210 ], [ 74.329610, 16.553501 ], [ 74.389822, 16.528078 ], [ 74.403648, 16.578478 ], [ 74.472334, 16.604792 ], [ 74.477240, 16.660990 ], [ 74.498203, 16.626647 ], [ 74.551278, 16.633337 ], [ 74.574024, 16.552163 ], [ 74.690433, 16.604346 ], [ 74.660551, 16.637797 ], [ 74.698016, 16.715403 ], [ 74.923697, 16.769816 ], [ 74.912101, 16.855897 ], [ 74.967407, 16.905404 ], [ 74.938416, 16.941085 ], [ 75.090506, 16.948667 ], [ 75.215835, 16.840286 ], [ 75.282737, 16.874183 ], [ 75.288535, 16.954911 ], [ 75.467831, 16.985240 ], [ 75.492362, 16.942869 ], [ 75.570414, 16.963831 ], [ 75.575766, 17.007987 ], [ 75.674781, 16.960263 ], [ 75.672105, 17.035639 ], [ 75.643560, 17.036531 ], [ 75.678349, 17.094067 ], [ 75.627949, 17.170335 ], [ 75.660062, 17.261321 ], [ 75.578442, 17.383082 ], [ 75.615907, 17.392002 ], [ 75.635532, 17.477637 ], [ 75.802340, 17.370148 ], [ 75.824640, 17.422777 ], [ 75.862105, 17.385758 ], [ 75.887082, 17.417425 ], [ 75.931237, 17.324209 ], [ 76.054336, 17.354091 ], [ 76.078867, 17.330007 ], [ 76.121238, 17.366134 ], [ 76.175651, 17.297002 ], [ 76.172529, 17.348739 ], [ 76.244337, 17.374608 ], [ 76.276004, 17.330453 ], [ 76.343798, 17.350077 ], [ 76.381709, 17.311720 ], [ 76.408023, 17.369256 ], [ 76.362084, 17.375054 ], [ 76.373235, 17.434373 ], [ 76.333539, 17.432143 ], [ 76.375019, 17.493693 ], [ 76.343352, 17.494139 ], [ 76.366098, 17.522238 ], [ 76.331755, 17.594938 ], [ 76.489197, 17.660501 ], [ 76.523540, 17.759070 ], [ 76.573494, 17.759962 ], [ 76.573048, 17.701980 ], [ 76.614527, 17.768436 ], [ 76.690349, 17.680126 ], [ 76.715771, 17.781816 ], [ 76.788025, 17.826418 ], [ 76.737626, 17.857192 ], [ 76.740748, 17.898225 ], [ 76.802744, 17.868343 ], [ 76.916476, 17.915174 ], [ 76.917814, 18.033367 ], [ 76.954833, 18.039611 ], [ 76.968214, 18.097146 ], [ 76.922721, 18.116325 ], [ 76.953941, 18.185011 ], [ 77.108707, 18.152898 ], [ 77.095327, 18.195269 ], [ 77.206384, 18.277781 ], [ 77.240281, 18.408462 ], [ 77.317441, 18.453956 ], [ 77.369624, 18.447711 ], [ 77.369624, 18.400880 ], [ 77.410211, 18.388392 ], [ 77.358920, 18.310786 ], [ 77.436526, 18.306326 ], [ 77.465516, 18.259941 ], [ 77.509672, 18.306772 ], [ 77.549813, 18.291161 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Kerala", "total":"3745", "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.995951, 12.787827 ], [ 74.984801, 12.729845 ], [ 75.049473, 12.714681 ], [ 75.047689, 12.660267 ], [ 75.086046, 12.697732 ], [ 75.150717, 12.676324 ], [ 75.143135, 12.633507 ], [ 75.201563, 12.625032 ], [ 75.222971, 12.562591 ], [ 75.276938, 12.611652 ], [ 75.327784, 12.585337 ], [ 75.271140, 12.553671 ], [ 75.336704, 12.457778 ], [ 75.414310, 12.496581 ], [ 75.422338, 12.460008 ], [ 75.366587, 12.451534 ], [ 75.365695, 12.406933 ], [ 75.421446, 12.366792 ], [ 75.419216, 12.286510 ], [ 75.482550, 12.286064 ], [ 75.576658, 12.150922 ], [ 75.717152, 12.062166 ], [ 75.795204, 12.074208 ], [ 75.876824, 11.940851 ], [ 75.998139, 11.923456 ], [ 76.107858, 11.970734 ], [ 76.107858, 11.851203 ], [ 76.184126, 11.863691 ], [ 76.218469, 11.799911 ], [ 76.271990, 11.803479 ], [ 76.334878, 11.730780 ], [ 76.407577, 11.753526 ], [ 76.423634, 11.659418 ], [ 76.424972, 11.623291 ], [ 76.350042, 11.582704 ], [ 76.225605, 11.564417 ], [ 76.239877, 11.459605 ], [ 76.410253, 11.433736 ], [ 76.538259, 11.351670 ], [ 76.540043, 11.292350 ], [ 76.446380, 11.230355 ], [ 76.452625, 11.180401 ], [ 76.623001, 11.185754 ], [ 76.697039, 11.231247 ], [ 76.725584, 11.208946 ], [ 76.691241, 11.144721 ], [ 76.738518, 11.121082 ], [ 76.737180, 11.047490 ], [ 76.792485, 11.042584 ], [ 76.706405, 11.031434 ], [ 76.649316, 10.923945 ], [ 76.817462, 10.861949 ], [ 76.897298, 10.770963 ], [ 76.855373, 10.675071 ], [ 76.872767, 10.629577 ], [ 76.804974, 10.626455 ], [ 76.819692, 10.295069 ], [ 76.970890, 10.208543 ], [ 77.163121, 10.346360 ], [ 77.221994, 10.340116 ], [ 77.246525, 10.220585 ], [ 77.280422, 10.207205 ], [ 77.259905, 10.118894 ], [ 77.188097, 10.095702 ], [ 77.261243, 9.963682 ], [ 77.204600, 9.894105 ], [ 77.234037, 9.788400 ], [ 77.151970, 9.605981 ], [ 77.254999, 9.564948 ], [ 77.304506, 9.593047 ], [ 77.324577, 9.563164 ], [ 77.341079, 9.594831 ], [ 77.350446, 9.526145 ], [ 77.396385, 9.496708 ], [ 77.267041, 9.291097 ], [ 77.251877, 9.143021 ], [ 77.132346, 9.011894 ], [ 77.241619, 8.864710 ], [ 77.214858, 8.775954 ], [ 77.155539, 8.737597 ], [ 77.265257, 8.537338 ], [ 77.186313, 8.493183 ], [ 77.209506, 8.437877 ], [ 77.135022, 8.378558 ], [ 77.159553, 8.312548 ], [ 77.090867, 8.297384 ], [ 76.974904, 8.385248 ], [ 76.546287, 8.902175 ], [ 76.463329, 9.134101 ], [ 76.490536, 9.170228 ], [ 76.470911, 9.142575 ], [ 76.422742, 9.245604 ], [ 76.461099, 9.139453 ], [ 76.338000, 9.415980 ], [ 76.237201, 9.965466 ], [ 76.295629, 9.917743 ], [ 76.296521, 9.892766 ], [ 76.257272, 9.915513 ], [ 76.284478, 9.832555 ], [ 76.295629, 9.889644 ], [ 76.319267, 9.876264 ], [ 76.347812, 9.711686 ], [ 76.320605, 9.871358 ], [ 76.370558, 9.820067 ], [ 76.360746, 9.700536 ], [ 76.398657, 9.674221 ], [ 76.357178, 9.525253 ], [ 76.480277, 9.511427 ], [ 76.502132, 9.531051 ], [ 76.416052, 9.565840 ], [ 76.377249, 9.864668 ], [ 76.340230, 9.919527 ], [ 76.318821, 9.888752 ], [ 76.249689, 10.029692 ], [ 76.264408, 10.079199 ], [ 76.205534, 10.146993 ], [ 76.223821, 9.977063 ], [ 76.165839, 10.174646 ], [ 76.202858, 10.138965 ], [ 76.191708, 10.194270 ], [ 76.160041, 10.188472 ], [ 76.033820, 10.525657 ], [ 76.067717, 10.544389 ], [ 76.041402, 10.575610 ], [ 76.036050, 10.510046 ], [ 75.910275, 10.792372 ], [ 75.825086, 11.122866 ], [ 75.858537, 11.138476 ], [ 75.801894, 11.158101 ], [ 75.829101, 11.180847 ], [ 75.801894, 11.162561 ], [ 75.682809, 11.448008 ], [ 75.617245, 11.476999 ], [ 75.542315, 11.681718 ], [ 75.472291, 11.763784 ], [ 75.507526, 11.761108 ], [ 75.474968, 11.766460 ], [ 75.499944, 11.798127 ], [ 75.459803, 11.765568 ], [ 75.460249, 11.807493 ], [ 75.454005, 11.778503 ], [ 75.317972, 11.905616 ], [ 75.303253, 11.947095 ], [ 75.400038, 11.917658 ], [ 75.265788, 12.005969 ], [ 75.333136, 12.009983 ], [ 75.299239, 12.015781 ], [ 75.339380, 12.047448 ], [ 75.311727, 12.049232 ], [ 75.309051, 12.102753 ], [ 75.402268, 12.133974 ], [ 75.374615, 12.149138 ], [ 75.222971, 12.104983 ], [ 75.230553, 12.024255 ], [ 75.201563, 12.005523 ], [ 75.178370, 12.078668 ], [ 75.220295, 12.070194 ], [ 75.172572, 12.085805 ], [ 75.192196, 12.132636 ], [ 75.181938, 12.095171 ], [ 74.867054, 12.754376 ], [ 74.995951, 12.787827 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Madhya Pradesh", "total":"7654", "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.807841, 23.963089 ], [ 82.656643, 23.907783 ], [ 82.652183, 23.856492 ], [ 82.527300, 23.823933 ], [ 82.544694, 23.794050 ], [ 82.516150, 23.784238 ], [ 82.226242, 23.806985 ], [ 82.203942, 23.852924 ], [ 82.045608, 23.820811 ], [ 81.916264, 23.872994 ], [ 81.782461, 23.811891 ], [ 81.661592, 23.925624 ], [ 81.610301, 23.906891 ], [ 81.598258, 23.853816 ], [ 81.687461, 23.721350 ], [ 81.569713, 23.588439 ], [ 81.607178, 23.506819 ], [ 81.736076, 23.567476 ], [ 81.827062, 23.511279 ], [ 81.916264, 23.532242 ], [ 81.976030, 23.413156 ], [ 82.016171, 23.423415 ], [ 82.045608, 23.377922 ], [ 82.098683, 23.397546 ], [ 82.185655, 23.325292 ], [ 82.150866, 23.141536 ], [ 82.116077, 23.103625 ], [ 81.938119, 23.077756 ], [ 81.940349, 22.956887 ], [ 81.769527, 22.873483 ], [ 81.762836, 22.663411 ], [ 81.656686, 22.632190 ], [ 81.615653, 22.538974 ], [ 81.518868, 22.539866 ], [ 81.396661, 22.441298 ], [ 81.378821, 22.505523 ], [ 81.323069, 22.524256 ], [ 81.303891, 22.481885 ], [ 81.275346, 22.499279 ], [ 81.218257, 22.451556 ], [ 81.179900, 22.490359 ], [ 81.109876, 22.441298 ], [ 81.113890, 22.294560 ], [ 81.019335, 22.228996 ], [ 81.015767, 22.132658 ], [ 80.970720, 22.114817 ], [ 80.999265, 22.061296 ], [ 80.910955, 22.119277 ], [ 80.818630, 21.956929 ], [ 80.831565, 21.804839 ], [ 80.811048, 21.747304 ], [ 80.742808, 21.758008 ], [ 80.718724, 21.712069 ], [ 80.730320, 21.472115 ], [ 80.656728, 21.330729 ], [ 80.592949, 21.324931 ], [ 80.485460, 21.397631 ], [ 80.403394, 21.376668 ], [ 80.370835, 21.521176 ], [ 80.260224, 21.620191 ], [ 80.188416, 21.634017 ], [ 80.063533, 21.554627 ], [ 79.936420, 21.556857 ], [ 79.915903, 21.524298 ], [ 79.732592, 21.602350 ], [ 79.536793, 21.544369 ], [ 79.488624, 21.674158 ], [ 79.228600, 21.724111 ], [ 79.219679, 21.650965 ], [ 79.147872, 21.660332 ], [ 79.088106, 21.599228 ], [ 78.913270, 21.592538 ], [ 78.932002, 21.487279 ], [ 78.772330, 21.467209 ], [ 78.746461, 21.493969 ], [ 78.724161, 21.464533 ], [ 78.508737, 21.528312 ], [ 78.430239, 21.501552 ], [ 78.422657, 21.601904 ], [ 78.379394, 21.618853 ], [ 78.361107, 21.578266 ], [ 78.266107, 21.594322 ], [ 78.180919, 21.558641 ], [ 78.169322, 21.498429 ], [ 77.938735, 21.386927 ], [ 77.799579, 21.412349 ], [ 77.734015, 21.364626 ], [ 77.691198, 21.397185 ], [ 77.584602, 21.364626 ], [ 77.486925, 21.377560 ], [ 77.416901, 21.533218 ], [ 77.606902, 21.542585 ], [ 77.571221, 21.562655 ], [ 77.542230, 21.700919 ], [ 77.475329, 21.771388 ], [ 77.286220, 21.762914 ], [ 77.283098, 21.724111 ], [ 77.207276, 21.694228 ], [ 77.171595, 21.727233 ], [ 77.072134, 21.722773 ], [ 76.901312, 21.601012 ], [ 76.795161, 21.597444 ], [ 76.763048, 21.522514 ], [ 76.784011, 21.466317 ], [ 76.624339, 21.335189 ], [ 76.660912, 21.282560 ], [ 76.623447, 21.192466 ], [ 76.487413, 21.196034 ], [ 76.452625, 21.114860 ], [ 76.376357, 21.077395 ], [ 76.172529, 21.084531 ], [ 76.114102, 21.164813 ], [ 76.172529, 21.188452 ], [ 76.098491, 21.373992 ], [ 75.301915, 21.389157 ], [ 75.123065, 21.453382 ], [ 75.057947, 21.564885 ], [ 74.901843, 21.630449 ], [ 74.793016, 21.610378 ], [ 74.590527, 21.664346 ], [ 74.511583, 21.725003 ], [ 74.527639, 21.908760 ], [ 74.448695, 21.971202 ], [ 74.435761, 22.030967 ], [ 74.289915, 21.935967 ], [ 74.145854, 21.954253 ], [ 74.153882, 21.986366 ], [ 74.097684, 22.015357 ], [ 74.180642, 22.086719 ], [ 74.130243, 22.097869 ], [ 74.122661, 22.212940 ], [ 74.075830, 22.221860 ], [ 74.071816, 22.360124 ], [ 74.190901, 22.321767 ], [ 74.206957, 22.367706 ], [ 74.294375, 22.394466 ], [ 74.190901, 22.477871 ], [ 74.123107, 22.420781 ], [ 74.085196, 22.508645 ], [ 74.034797, 22.508199 ], [ 74.066909, 22.551016 ], [ 74.153436, 22.517566 ], [ 74.265385, 22.644679 ], [ 74.384024, 22.643787 ], [ 74.479024, 22.858764 ], [ 74.451371, 22.923882 ], [ 74.400526, 22.899351 ], [ 74.362169, 22.933248 ], [ 74.322920, 23.062592 ], [ 74.391160, 23.112099 ], [ 74.512475, 23.088906 ], [ 74.669025, 23.201301 ], [ 74.745739, 23.212005 ], [ 74.694894, 23.223156 ], [ 74.722100, 23.242334 ], [ 74.701138, 23.272217 ], [ 74.553508, 23.282475 ], [ 74.518273, 23.328860 ], [ 74.613273, 23.461326 ], [ 74.939754, 23.630364 ], [ 74.907641, 23.682993 ], [ 74.940646, 23.734731 ], [ 74.905857, 23.873886 ], [ 74.992829, 24.029544 ], [ 74.881326, 24.213301 ], [ 74.894261, 24.261470 ], [ 74.752875, 24.282879 ], [ 74.858134, 24.467527 ], [ 74.711842, 24.510791 ], [ 74.817101, 24.671801 ], [ 74.775176, 24.687857 ], [ 74.799260, 24.795792 ], [ 74.892923, 24.655298 ], [ 74.942876, 24.660204 ], [ 75.020036, 24.752975 ], [ 75.007102, 24.796238 ], [ 74.848768, 24.792670 ], [ 74.846537, 24.974196 ], [ 74.920129, 24.891684 ], [ 75.043228, 24.859125 ], [ 75.119050, 24.889008 ], [ 75.159191, 25.045558 ], [ 75.345624, 25.042882 ], [ 75.313957, 24.900605 ], [ 75.276046, 24.976873 ], [ 75.292995, 24.923351 ], [ 75.261328, 24.889454 ], [ 75.424122, 24.892576 ], [ 75.416986, 24.864032 ], [ 75.305929, 24.813186 ], [ 75.208253, 24.909971 ], [ 75.251962, 24.837271 ], [ 75.185506, 24.768139 ], [ 75.216727, 24.722200 ], [ 75.451775, 24.693209 ], [ 75.582010, 24.722646 ], [ 75.613231, 24.688303 ], [ 75.759523, 24.765017 ], [ 75.838913, 24.729782 ], [ 75.828209, 24.613373 ], [ 75.917411, 24.571448 ], [ 75.908937, 24.455931 ], [ 75.847387, 24.418912 ], [ 75.791190, 24.475110 ], [ 75.726964, 24.405086 ], [ 75.826871, 24.246306 ], [ 75.773349, 24.220883 ], [ 75.743466, 24.139709 ], [ 75.835791, 24.111164 ], [ 75.833561, 24.075483 ], [ 75.700203, 23.968887 ], [ 75.668982, 24.033558 ], [ 75.583794, 23.992079 ], [ 75.514217, 24.048723 ], [ 75.456681, 23.920717 ], [ 75.560602, 23.860060 ], [ 75.582456, 23.800294 ], [ 75.652034, 23.802078 ], [ 75.684593, 23.760599 ], [ 75.729194, 23.858276 ], [ 75.702433, 23.904215 ], [ 75.776917, 23.853816 ], [ 75.975838, 23.932760 ], [ 75.960228, 24.025530 ], [ 76.134618, 24.095108 ], [ 76.121238, 24.196353 ], [ 76.185464, 24.331494 ], [ 76.215346, 24.216869 ], [ 76.326849, 24.253442 ], [ 76.414268, 24.207503 ], [ 76.470019, 24.231587 ], [ 76.531569, 24.163348 ], [ 76.579738, 24.180742 ], [ 76.588212, 24.249428 ], [ 76.693025, 24.285109 ], [ 76.674292, 24.193230 ], [ 76.701053, 24.171376 ], [ 76.755020, 24.172268 ], [ 76.800959, 24.120531 ], [ 76.899974, 24.131235 ], [ 76.944575, 24.206165 ], [ 76.840208, 24.338630 ], [ 76.851359, 24.469312 ], [ 76.814786, 24.534429 ], [ 76.912908, 24.543349 ], [ 76.914692, 24.487598 ], [ 76.965538, 24.460837 ], [ 77.064552, 24.570110 ], [ 77.026641, 24.711050 ], [ 76.951711, 24.765463 ], [ 76.847345, 24.750299 ], [ 76.801405, 24.819876 ], [ 76.949035, 24.872952 ], [ 76.854481, 25.010323 ], [ 76.993636, 25.079901 ], [ 77.114505, 25.069197 ], [ 77.169365, 25.113798 ], [ 77.262135, 25.119150 ], [ 77.302722, 25.083915 ], [ 77.398615, 25.113352 ], [ 77.390587, 25.188282 ], [ 77.417793, 25.193188 ], [ 77.349553, 25.271686 ], [ 77.371854, 25.320301 ], [ 77.336619, 25.325653 ], [ 77.361150, 25.413072 ], [ 77.283098, 25.423776 ], [ 77.205046, 25.311381 ], [ 77.075256, 25.339480 ], [ 76.941899, 25.275254 ], [ 76.893284, 25.322531 ], [ 76.770185, 25.312273 ], [ 76.602484, 25.388987 ], [ 76.564127, 25.442508 ], [ 76.482507, 25.718143 ], [ 76.530677, 25.733754 ], [ 76.529339, 25.797980 ], [ 76.592672, 25.874247 ], [ 76.806312, 25.953191 ], [ 76.887932, 26.093239 ], [ 77.123872, 26.237747 ], [ 77.203262, 26.237301 ], [ 77.334835, 26.357278 ], [ 77.432512, 26.364860 ], [ 77.427605, 26.406785 ], [ 77.523052, 26.414813 ], [ 77.812959, 26.554861 ], [ 77.894579, 26.662350 ], [ 77.992256, 26.702491 ], [ 78.085918, 26.682866 ], [ 78.099745, 26.797045 ], [ 78.176013, 26.791693 ], [ 78.160848, 26.826928 ], [ 78.209910, 26.836294 ], [ 78.260755, 26.821130 ], [ 78.282163, 26.863947 ], [ 78.351295, 26.874205 ], [ 78.389652, 26.824698 ], [ 78.565827, 26.757796 ], [ 78.715240, 26.800167 ], [ 78.865100, 26.704721 ], [ 78.948058, 26.696693 ], [ 78.937800, 26.662796 ], [ 78.993106, 26.684650 ], [ 78.979725, 26.574039 ], [ 79.060899, 26.503124 ], [ 79.048411, 26.455846 ], [ 79.126909, 26.444696 ], [ 79.076956, 26.362630 ], [ 79.133599, 26.344790 ], [ 79.083646, 26.272536 ], [ 79.036815, 26.267184 ], [ 79.056885, 26.232841 ], [ 78.977495, 26.195376 ], [ 79.000688, 26.154789 ], [ 78.942706, 26.139178 ], [ 79.003364, 26.081643 ], [ 78.846814, 25.860421 ], [ 78.861978, 25.799318 ], [ 78.811133, 25.830092 ], [ 78.820499, 25.799318 ], [ 78.746907, 25.748918 ], [ 78.811133, 25.674434 ], [ 78.805335, 25.624481 ], [ 78.648785, 25.565608 ], [ 78.429347, 25.563824 ], [ 78.420873, 25.477743 ], [ 78.347727, 25.454997 ], [ 78.295544, 25.374715 ], [ 78.442727, 25.128962 ], [ 78.327657, 25.088821 ], [ 78.327657, 24.999619 ], [ 78.163970, 24.856895 ], [ 78.268337, 24.666895 ], [ 78.258971, 24.558068 ], [ 78.219722, 24.522833 ], [ 78.361107, 24.385907 ], [ 78.325872, 24.329710 ], [ 78.379840, 24.275743 ], [ 78.505169, 24.393936 ], [ 78.669301, 24.244968 ], [ 78.760288, 24.258348 ], [ 78.791508, 24.180296 ], [ 78.878927, 24.223113 ], [ 78.966791, 24.353795 ], [ 78.984185, 24.441213 ], [ 78.908809, 24.466635 ], [ 78.913716, 24.500978 ], [ 78.966345, 24.496964 ], [ 78.881603, 24.639688 ], [ 78.749583, 24.604899 ], [ 78.780358, 24.814970 ], [ 78.622024, 24.964830 ], [ 78.642095, 25.061615 ], [ 78.597047, 25.097742 ], [ 78.568503, 25.258752 ], [ 78.427563, 25.288634 ], [ 78.525240, 25.306475 ], [ 78.525240, 25.363118 ], [ 78.576085, 25.351968 ], [ 78.560920, 25.395677 ], [ 78.652799, 25.443846 ], [ 78.701414, 25.428682 ], [ 78.657705, 25.388095 ], [ 78.764302, 25.358212 ], [ 78.743339, 25.412626 ], [ 78.812917, 25.430466 ], [ 78.754935, 25.434034 ], [ 78.731743, 25.500490 ], [ 78.829865, 25.465701 ], [ 78.834325, 25.432250 ], [ 78.857072, 25.467039 ], [ 78.828527, 25.509856 ], [ 78.930664, 25.559809 ], [ 78.903011, 25.446969 ], [ 78.960101, 25.438940 ], [ 78.978387, 25.376053 ], [ 78.928434, 25.351968 ], [ 78.892307, 25.375161 ], [ 78.949396, 25.400137 ], [ 78.874913, 25.387649 ], [ 78.783034, 25.297555 ], [ 78.841908, 25.229315 ], [ 78.876697, 25.344386 ], [ 78.952965, 25.349738 ], [ 78.969913, 25.285066 ], [ 78.875805, 25.255630 ], [ 78.871790, 25.165981 ], [ 78.948504, 25.220395 ], [ 78.995782, 25.195864 ], [ 78.971251, 25.244925 ], [ 79.005148, 25.277038 ], [ 79.056439, 25.225747 ], [ 79.021650, 25.143235 ], [ 79.084092, 25.192742 ], [ 79.129139, 25.110676 ], [ 79.184890, 25.151263 ], [ 79.238412, 25.116474 ], [ 79.235736, 25.161075 ], [ 79.260266, 25.122272 ], [ 79.303083, 25.133423 ], [ 79.273647, 25.248047 ], [ 79.346793, 25.214151 ], [ 79.340102, 25.272578 ], [ 79.259374, 25.271240 ], [ 79.294609, 25.340372 ], [ 79.345901, 25.333236 ], [ 79.353037, 25.265442 ], [ 79.367309, 25.294433 ], [ 79.415478, 25.259198 ], [ 79.490408, 25.270348 ], [ 79.383812, 25.170441 ], [ 79.398976, 25.113352 ], [ 79.468554, 25.134315 ], [ 79.489962, 25.082577 ], [ 79.565338, 25.177578 ], [ 79.597897, 25.131638 ], [ 79.745527, 25.143681 ], [ 79.855692, 25.098634 ], [ 79.847217, 25.240019 ], [ 79.996631, 25.268564 ], [ 80.020716, 25.343048 ], [ 80.123298, 25.338588 ], [ 80.193768, 25.416194 ], [ 80.255764, 25.428682 ], [ 80.310623, 25.387203 ], [ 80.303933, 25.289080 ], [ 80.398934, 25.243141 ], [ 80.423910, 25.174010 ], [ 80.351210, 25.145019 ], [ 80.278510, 25.021474 ], [ 80.381985, 25.009877 ], [ 80.365929, 25.057601 ], [ 80.440859, 25.082131 ], [ 80.494380, 25.045112 ], [ 80.476094, 25.102202 ], [ 80.606775, 25.072319 ], [ 80.594733, 25.155277 ], [ 80.632198, 25.123164 ], [ 80.601423, 25.104432 ], [ 80.679475, 25.081685 ], [ 80.673677, 25.054032 ], [ 80.775813, 25.061615 ], [ 80.699545, 25.136991 ], [ 80.799452, 25.146357 ], [ 80.827551, 25.110230 ], [ 80.836471, 25.192742 ], [ 80.877950, 25.195418 ], [ 80.904710, 25.160183 ], [ 80.802128, 24.944314 ], [ 81.076425, 24.952342 ], [ 81.132622, 24.892130 ], [ 81.161613, 24.958586 ], [ 81.212458, 24.934501 ], [ 81.201754, 24.995605 ], [ 81.261520, 25.068305 ], [ 81.269102, 25.167765 ], [ 81.306567, 25.165981 ], [ 81.314595, 25.116474 ], [ 81.329759, 25.172672 ], [ 81.430112, 25.133423 ], [ 81.400675, 25.107554 ], [ 81.483633, 25.074995 ], [ 81.507718, 25.106662 ], [ 81.472929, 25.136991 ], [ 81.566591, 25.195864 ], [ 81.618775, 25.159737 ], [ 81.604502, 25.060723 ], [ 81.658470, 25.079901 ], [ 81.789151, 25.010323 ], [ 81.898424, 25.009431 ], [ 81.896640, 24.892576 ], [ 81.959081, 24.830581 ], [ 82.005021, 24.850651 ], [ 82.112063, 24.792224 ], [ 82.195914, 24.824337 ], [ 82.172721, 24.739594 ], [ 82.213754, 24.728444 ], [ 82.199482, 24.752083 ], [ 82.243637, 24.775721 ], [ 82.229810, 24.669571 ], [ 82.296266, 24.670017 ], [ 82.294036, 24.613819 ], [ 82.409107, 24.597763 ], [ 82.401525, 24.683843 ], [ 82.432300, 24.706144 ], [ 82.529084, 24.652176 ], [ 82.657981, 24.700345 ], [ 82.695000, 24.644148 ], [ 82.762794, 24.645486 ], [ 82.800705, 24.552716 ], [ 82.712395, 24.556284 ], [ 82.736479, 24.499640 ], [ 82.707043, 24.385015 ], [ 82.760564, 24.372973 ], [ 82.764132, 24.292245 ], [ 82.720423, 24.138817 ], [ 82.657535, 24.134803 ], [ 82.766362, 24.077713 ], [ 82.741831, 24.021516 ], [ 82.797137, 24.005014 ], [ 82.807841, 23.963089 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Maharashtra", "total":"6485", "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.435761, 22.030967 ], [ 74.448695, 21.971202 ], [ 74.527639, 21.908760 ], [ 74.511583, 21.725003 ], [ 74.590527, 21.664346 ], [ 74.793016, 21.610378 ], [ 74.901843, 21.630449 ], [ 75.057947, 21.564885 ], [ 75.123065, 21.453382 ], [ 75.301915, 21.389157 ], [ 76.098491, 21.373992 ], [ 76.172529, 21.188452 ], [ 76.114102, 21.164813 ], [ 76.172529, 21.084531 ], [ 76.376357, 21.077395 ], [ 76.452625, 21.114860 ], [ 76.487413, 21.196034 ], [ 76.623447, 21.192466 ], [ 76.660912, 21.282560 ], [ 76.624339, 21.335189 ], [ 76.784011, 21.466317 ], [ 76.763048, 21.522514 ], [ 76.795161, 21.597444 ], [ 76.901312, 21.601012 ], [ 77.072134, 21.722773 ], [ 77.171595, 21.727233 ], [ 77.207276, 21.694228 ], [ 77.283098, 21.724111 ], [ 77.286220, 21.762914 ], [ 77.475329, 21.771388 ], [ 77.542230, 21.700919 ], [ 77.571221, 21.562655 ], [ 77.606902, 21.542585 ], [ 77.416901, 21.533218 ], [ 77.486925, 21.377560 ], [ 77.584602, 21.364626 ], [ 77.691198, 21.397185 ], [ 77.734015, 21.364626 ], [ 77.799579, 21.412349 ], [ 77.938735, 21.386927 ], [ 78.169322, 21.498429 ], [ 78.180919, 21.558641 ], [ 78.266107, 21.594322 ], [ 78.361107, 21.578266 ], [ 78.379394, 21.618853 ], [ 78.422657, 21.601904 ], [ 78.430239, 21.501552 ], [ 78.508737, 21.528312 ], [ 78.724161, 21.464533 ], [ 78.746461, 21.493969 ], [ 78.772330, 21.467209 ], [ 78.932002, 21.487279 ], [ 78.913270, 21.592538 ], [ 79.088106, 21.599228 ], [ 79.147872, 21.660332 ], [ 79.219679, 21.650965 ], [ 79.228600, 21.724111 ], [ 79.488624, 21.674158 ], [ 79.536793, 21.544369 ], [ 79.732592, 21.602350 ], [ 79.915903, 21.524298 ], [ 79.936420, 21.556857 ], [ 80.063533, 21.554627 ], [ 80.188416, 21.634017 ], [ 80.260224, 21.620191 ], [ 80.370835, 21.521176 ], [ 80.403394, 21.376668 ], [ 80.485460, 21.397631 ], [ 80.592949, 21.324931 ], [ 80.656728, 21.330729 ], [ 80.635320, 21.250001 ], [ 80.457361, 21.172841 ], [ 80.433276, 21.097019 ], [ 80.455577, 20.931995 ], [ 80.541657, 20.933779 ], [ 80.580014, 20.683567 ], [ 80.481446, 20.617111 ], [ 80.511774, 20.584998 ], [ 80.622385, 20.603731 ], [ 80.585812, 20.395443 ], [ 80.617925, 20.333894 ], [ 80.382877, 20.241569 ], [ 80.414098, 20.190278 ], [ 80.394027, 20.143893 ], [ 80.497948, 20.138987 ], [ 80.546117, 20.065841 ], [ 80.520249, 19.930699 ], [ 80.406516, 19.932483 ], [ 80.497502, 19.868704 ], [ 80.394919, 19.794666 ], [ 80.477878, 19.772365 ], [ 80.468957, 19.824549 ], [ 80.542549, 19.819197 ], [ 80.539873, 19.774595 ], [ 80.665648, 19.692083 ], [ 80.656728, 19.612247 ], [ 80.827551, 19.562740 ], [ 80.892222, 19.465509 ], [ 80.787855, 19.426706 ], [ 80.844945, 19.360697 ], [ 80.749052, 19.286659 ], [ 80.688395, 19.283537 ], [ 80.671893, 19.326354 ], [ 80.610343, 19.307175 ], [ 80.567972, 19.400838 ], [ 80.383323, 19.238936 ], [ 80.267806, 18.987385 ], [ 80.267806, 18.928958 ], [ 80.348534, 18.824145 ], [ 80.241938, 18.759919 ], [ 80.267360, 18.717994 ], [ 80.110810, 18.676069 ], [ 79.894049, 18.830835 ], [ 79.939096, 18.858934 ], [ 79.934636, 19.021728 ], [ 79.859706, 19.034662 ], [ 79.857922, 19.104240 ], [ 79.943110, 19.170696 ], [ 79.920363, 19.226447 ], [ 79.972993, 19.400838 ], [ 79.785222, 19.593515 ], [ 79.639822, 19.574782 ], [ 79.597897, 19.503866 ], [ 79.542592, 19.548468 ], [ 79.470338, 19.497622 ], [ 79.243764, 19.612693 ], [ 79.222801, 19.467740 ], [ 79.177754, 19.460603 ], [ 79.102824, 19.527951 ], [ 78.954749, 19.552036 ], [ 78.969021, 19.649266 ], [ 78.858856, 19.656402 ], [ 78.845476, 19.758539 ], [ 78.603738, 19.817412 ], [ 78.494019, 19.793328 ], [ 78.319628, 19.915535 ], [ 78.294206, 19.849525 ], [ 78.367798, 19.781286 ], [ 78.345497, 19.713492 ], [ 78.269675, 19.663093 ], [ 78.311154, 19.604219 ], [ 78.279041, 19.558280 ], [ 78.308924, 19.456589 ], [ 78.182257, 19.411988 ], [ 78.170215, 19.236260 ], [ 78.051129, 19.241612 ], [ 77.948993, 19.341072 ], [ 77.860683, 19.302269 ], [ 77.905730, 19.267034 ], [ 77.846410, 19.197011 ], [ 77.848194, 19.089968 ], [ 77.802701, 19.102010 ], [ 77.757208, 19.028418 ], [ 77.942749, 18.822361 ], [ 77.837490, 18.807643 ], [ 77.786645, 18.684097 ], [ 77.757654, 18.707290 ], [ 77.732677, 18.676069 ], [ 77.736691, 18.554754 ], [ 77.597090, 18.547618 ], [ 77.601104, 18.474026 ], [ 77.546245, 18.463322 ], [ 77.585048, 18.445481 ], [ 77.525728, 18.427195 ], [ 77.555165, 18.417829 ], [ 77.519484, 18.349143 ], [ 77.566761, 18.317922 ], [ 77.549813, 18.291161 ], [ 77.509672, 18.306772 ], [ 77.465516, 18.259941 ], [ 77.436526, 18.306326 ], [ 77.358920, 18.310786 ], [ 77.410211, 18.388392 ], [ 77.369624, 18.400880 ], [ 77.369624, 18.447711 ], [ 77.317441, 18.453956 ], [ 77.240281, 18.408462 ], [ 77.206384, 18.277781 ], [ 77.095327, 18.195269 ], [ 77.108707, 18.152898 ], [ 76.953941, 18.185011 ], [ 76.922721, 18.116325 ], [ 76.968214, 18.097146 ], [ 76.954833, 18.039611 ], [ 76.917814, 18.033367 ], [ 76.916476, 17.915174 ], [ 76.802744, 17.868343 ], [ 76.740748, 17.898225 ], [ 76.737626, 17.857192 ], [ 76.788025, 17.826418 ], [ 76.715771, 17.781816 ], [ 76.690349, 17.680126 ], [ 76.614527, 17.768436 ], [ 76.573048, 17.701980 ], [ 76.573494, 17.759962 ], [ 76.523540, 17.759070 ], [ 76.489197, 17.660501 ], [ 76.331755, 17.594938 ], [ 76.366098, 17.522238 ], [ 76.343352, 17.494139 ], [ 76.375019, 17.493693 ], [ 76.333539, 17.432143 ], [ 76.373235, 17.434373 ], [ 76.362084, 17.375054 ], [ 76.408023, 17.369256 ], [ 76.381709, 17.311720 ], [ 76.343798, 17.350077 ], [ 76.276004, 17.330453 ], [ 76.244337, 17.374608 ], [ 76.172529, 17.348739 ], [ 76.175651, 17.297002 ], [ 76.121238, 17.366134 ], [ 76.078867, 17.330007 ], [ 76.054336, 17.354091 ], [ 75.931237, 17.324209 ], [ 75.887082, 17.417425 ], [ 75.862105, 17.385758 ], [ 75.824640, 17.422777 ], [ 75.802340, 17.370148 ], [ 75.635532, 17.477637 ], [ 75.615907, 17.392002 ], [ 75.578442, 17.383082 ], [ 75.660062, 17.261321 ], [ 75.627949, 17.170335 ], [ 75.678349, 17.094067 ], [ 75.643560, 17.036531 ], [ 75.672105, 17.035639 ], [ 75.674781, 16.960263 ], [ 75.575766, 17.007987 ], [ 75.570414, 16.963831 ], [ 75.492362, 16.942869 ], [ 75.467831, 16.985240 ], [ 75.288535, 16.954911 ], [ 75.282737, 16.874183 ], [ 75.215835, 16.840286 ], [ 75.090506, 16.948667 ], [ 74.938416, 16.941085 ], [ 74.967407, 16.905404 ], [ 74.912101, 16.855897 ], [ 74.923697, 16.769816 ], [ 74.698016, 16.715403 ], [ 74.660551, 16.637797 ], [ 74.690433, 16.604346 ], [ 74.574024, 16.552163 ], [ 74.551278, 16.633337 ], [ 74.498203, 16.626647 ], [ 74.477240, 16.660990 ], [ 74.472334, 16.604792 ], [ 74.403648, 16.578478 ], [ 74.389822, 16.528078 ], [ 74.329610, 16.553501 ], [ 74.314000, 16.502210 ], [ 74.276535, 16.544581 ], [ 74.285901, 16.503548 ], [ 74.253342, 16.495073 ], [ 74.299727, 16.502656 ], [ 74.296159, 16.458947 ], [ 74.369305, 16.394275 ], [ 74.361723, 16.364838 ], [ 74.325596, 16.379110 ], [ 74.333624, 16.268054 ], [ 74.421043, 16.280542 ], [ 74.512921, 16.188218 ], [ 74.489282, 16.087419 ], [ 74.434423, 16.110612 ], [ 74.367967, 16.053076 ], [ 74.470104, 16.040588 ], [ 74.392052, 15.900986 ], [ 74.411676, 15.852371 ], [ 74.374211, 15.891620 ], [ 74.344329, 15.851925 ], [ 74.389376, 15.844343 ], [ 74.364845, 15.773873 ], [ 74.250220, 15.741314 ], [ 74.227474, 15.785469 ], [ 74.130689, 15.718122 ], [ 74.133811, 15.678427 ], [ 74.096346, 15.670844 ], [ 74.126229, 15.650328 ], [ 73.998670, 15.611079 ], [ 73.945148, 15.741314 ], [ 73.882261, 15.749342 ], [ 73.865312, 15.797512 ], [ 73.833200, 15.737746 ], [ 73.680218, 15.724366 ], [ 73.590569, 15.912583 ], [ 73.509841, 15.937559 ], [ 73.454982, 16.055306 ], [ 73.447400, 16.224791 ], [ 73.430005, 16.198922 ], [ 73.410827, 16.273406 ], [ 73.435803, 16.286340 ], [ 73.385404, 16.336739 ], [ 73.411273, 16.362162 ], [ 73.368010, 16.363500 ], [ 73.405475, 16.404979 ], [ 73.365334, 16.397843 ], [ 73.316272, 16.513360 ], [ 73.318056, 16.556623 ], [ 73.348831, 16.504440 ], [ 73.390310, 16.514252 ], [ 73.345709, 16.556623 ], [ 73.393878, 16.552609 ], [ 73.316718, 16.600778 ], [ 73.352845, 16.596318 ], [ 73.305568, 16.729229 ], [ 73.333221, 16.816648 ], [ 73.295310, 16.816648 ], [ 73.285497, 16.880873 ], [ 73.313596, 16.888902 ], [ 73.277023, 16.892024 ], [ 73.294418, 16.986132 ], [ 73.254277, 17.027165 ], [ 73.289512, 17.006649 ], [ 73.284159, 17.040099 ], [ 73.319840, 17.038315 ], [ 73.278361, 17.040545 ], [ 73.297986, 17.078456 ], [ 73.189159, 17.297894 ], [ 73.244018, 17.307260 ], [ 73.167304, 17.404937 ], [ 73.205661, 17.438834 ], [ 73.136976, 17.556135 ], [ 73.168643, 17.582449 ], [ 73.087468, 17.838906 ], [ 73.132516, 17.829986 ], [ 73.050003, 17.906700 ], [ 73.092375, 17.940596 ], [ 73.029487, 17.944165 ], [ 73.002280, 18.021325 ], [ 73.045543, 18.041395 ], [ 72.989792, 18.055221 ], [ 72.987562, 18.195269 ], [ 72.930918, 18.220246 ], [ 72.935379, 18.281349 ], [ 72.964369, 18.280011 ], [ 72.981318, 18.242100 ], [ 73.069182, 18.222030 ], [ 73.088360, 18.151560 ], [ 73.042867, 18.296960 ], [ 73.086130, 18.288039 ], [ 73.087914, 18.326842 ], [ 73.027703, 18.264401 ], [ 72.913970, 18.354941 ], [ 72.895238, 18.472688 ], [ 72.928688, 18.541820 ], [ 72.855096, 18.697032 ], [ 72.869369, 18.804521 ], [ 72.982656, 18.809427 ], [ 72.988900, 18.866070 ], [ 72.926458, 18.850906 ], [ 72.907726, 18.902197 ], [ 72.957679, 18.908441 ], [ 72.955895, 18.974005 ], [ 73.032163, 18.999428 ], [ 72.963031, 19.058301 ], [ 72.909510, 18.991399 ], [ 72.862233, 19.002996 ], [ 72.807819, 18.891047 ], [ 72.829674, 19.182292 ], [ 72.793547, 19.129663 ], [ 72.780167, 19.166236 ], [ 72.839486, 19.267480 ], [ 72.782397, 19.192996 ], [ 72.798899, 19.331260 ], [ 72.744486, 19.462833 ], [ 72.786411, 19.526167 ], [ 72.765002, 19.504312 ], [ 72.718171, 19.538655 ], [ 72.737795, 19.597975 ], [ 72.693640, 19.729102 ], [ 72.719509, 19.754971 ], [ 72.693640, 19.735792 ], [ 72.695870, 19.804924 ], [ 72.650823, 19.839713 ], [ 72.690072, 19.958352 ], [ 72.754744, 19.927577 ], [ 72.707467, 20.070301 ], [ 72.737795, 20.136757 ], [ 72.835472, 20.144785 ], [ 72.874721, 20.225959 ], [ 72.970613, 20.212133 ], [ 72.973290, 20.130958 ], [ 73.017445, 20.134973 ], [ 73.052680, 20.067625 ], [ 73.060708, 20.098846 ], [ 73.186037, 20.052906 ], [ 73.216366, 20.122038 ], [ 73.289066, 20.149691 ], [ 73.311366, 20.207226 ], [ 73.430005, 20.206334 ], [ 73.391202, 20.390091 ], [ 73.500921, 20.540397 ], [ 73.402798, 20.642534 ], [ 73.453644, 20.710327 ], [ 73.482635, 20.717017 ], [ 73.498245, 20.653238 ], [ 73.538386, 20.673754 ], [ 73.607518, 20.636289 ], [ 73.670851, 20.562252 ], [ 73.838106, 20.615773 ], [ 73.822495, 20.693825 ], [ 73.949608, 20.742440 ], [ 73.906345, 20.983286 ], [ 73.774772, 21.010493 ], [ 73.752471, 21.113968 ], [ 73.660147, 21.108169 ], [ 73.588339, 21.167935 ], [ 73.636508, 21.132700 ], [ 73.822495, 21.171949 ], [ 73.832307, 21.267396 ], [ 73.948270, 21.297724 ], [ 73.952731, 21.402537 ], [ 74.048623, 21.419485 ], [ 74.067356, 21.481927 ], [ 74.111065, 21.448030 ], [ 74.327826, 21.495753 ], [ 74.309986, 21.567115 ], [ 74.205173, 21.529204 ], [ 74.181980, 21.561763 ], [ 74.025430, 21.552843 ], [ 73.860852, 21.495753 ], [ 73.787706, 21.625097 ], [ 73.898317, 21.667468 ], [ 73.810453, 21.823126 ], [ 74.145854, 21.954253 ], [ 74.289915, 21.935967 ], [ 74.435761, 22.030967 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Manipur", "total":"6980", "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.337279, 24.053183 ], [ 93.255213, 24.023746 ], [ 93.248076, 24.085296 ], [ 93.216856, 24.050061 ], [ 93.147724, 24.087972 ], [ 93.100893, 24.045155 ], [ 93.079484, 24.103136 ], [ 92.976455, 24.114732 ], [ 93.043357, 24.343536 ], [ 93.000540, 24.403302 ], [ 93.039343, 24.411330 ], [ 93.061198, 24.575016 ], [ 93.107137, 24.583490 ], [ 93.075470, 24.596425 ], [ 93.104907, 24.675369 ], [ 93.075916, 24.710604 ], [ 93.109813, 24.809618 ], [ 93.197231, 24.811402 ], [ 93.262349, 24.951450 ], [ 93.248968, 25.018798 ], [ 93.335941, 25.095958 ], [ 93.388570, 25.245817 ], [ 93.474204, 25.309151 ], [ 93.504979, 25.244033 ], [ 93.554932, 25.250724 ], [ 93.608008, 25.202108 ], [ 93.692750, 25.361780 ], [ 93.809159, 25.465701 ], [ 93.770802, 25.540185 ], [ 93.965263, 25.556687 ], [ 94.014770, 25.595936 ], [ 94.091930, 25.532603 ], [ 94.194959, 25.552227 ], [ 94.215029, 25.500044 ], [ 94.313598, 25.494692 ], [ 94.420194, 25.542861 ], [ 94.430007, 25.592814 ], [ 94.505383, 25.616899 ], [ 94.573176, 25.697627 ], [ 94.595031, 25.643660 ], [ 94.557566, 25.512978 ], [ 94.682449, 25.459903 ], [ 94.585219, 25.215935 ], [ 94.745783, 25.136545 ], [ 94.719022, 24.942530 ], [ 94.637848, 24.842177 ], [ 94.610641, 24.722200 ], [ 94.550876, 24.716402 ], [ 94.531697, 24.632552 ], [ 94.403246, 24.487598 ], [ 94.383175, 24.379217 ], [ 94.326532, 24.339076 ], [ 94.161508, 23.852924 ], [ 94.122705, 23.842665 ], [ 94.095944, 23.893511 ], [ 93.953666, 23.950154 ], [ 93.815849, 23.929638 ], [ 93.756975, 24.009474 ], [ 93.620496, 24.014380 ], [ 93.603547, 23.969779 ], [ 93.563406, 23.989403 ], [ 93.515237, 23.947032 ], [ 93.415331, 24.079052 ], [ 93.347091, 24.112948 ], [ 93.337279, 24.053183 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Meghalaya", "total":"8740", "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.853845, 26.104835 ], [ 91.922084, 25.999577 ], [ 92.178095, 26.079413 ], [ 92.301640, 26.076291 ], [ 92.156240, 25.944717 ], [ 92.163823, 25.911712 ], [ 92.225372, 25.907252 ], [ 92.153118, 25.812698 ], [ 92.160701, 25.671758 ], [ 92.385044, 25.753378 ], [ 92.501899, 25.623143 ], [ 92.557651, 25.611993 ], [ 92.572369, 25.560255 ], [ 92.660679, 25.585232 ], [ 92.567463, 25.467485 ], [ 92.784224, 25.332344 ], [ 92.764600, 25.249385 ], [ 92.803403, 25.217273 ], [ 92.666923, 25.177132 ], [ 92.621430, 25.117812 ], [ 92.524646, 25.140113 ], [ 92.542932, 25.099526 ], [ 92.484505, 25.108000 ], [ 92.463096, 25.037084 ], [ 92.426077, 25.031732 ], [ 92.067038, 25.190066 ], [ 91.753046, 25.179808 ], [ 91.644665, 25.122718 ], [ 91.617459, 25.175794 ], [ 91.474289, 25.133869 ], [ 91.273584, 25.204338 ], [ 90.866821, 25.156169 ], [ 90.785201, 25.183822 ], [ 90.739262, 25.154385 ], [ 90.672806, 25.166427 ], [ 90.671022, 25.197202 ], [ 90.452477, 25.144573 ], [ 90.115292, 25.227085 ], [ 89.971231, 25.302907 ], [ 89.834305, 25.295771 ], [ 89.855268, 25.475959 ], [ 89.871324, 25.537509 ], [ 89.874000, 25.541969 ], [ 89.869986, 25.544199 ], [ 90.017170, 25.602181 ], [ 89.892732, 25.735092 ], [ 89.955174, 25.774341 ], [ 89.944470, 25.824294 ], [ 90.118860, 25.961220 ], [ 90.182640, 25.944271 ], [ 90.477453, 26.015187 ], [ 90.534543, 25.958098 ], [ 90.512688, 25.896102 ], [ 90.582266, 25.959882 ], [ 90.629097, 25.937581 ], [ 90.624637, 25.898778 ], [ 90.686187, 25.950961 ], [ 90.747290, 25.957206 ], [ 90.740600, 25.915281 ], [ 90.778065, 25.908144 ], [ 90.809732, 25.952299 ], [ 90.919005, 25.913496 ], [ 90.942643, 25.947393 ], [ 90.967620, 25.887182 ], [ 91.029170, 25.888074 ], [ 91.000625, 25.822064 ], [ 91.196424, 25.859083 ], [ 91.179921, 25.776125 ], [ 91.224077, 25.723496 ], [ 91.333349, 25.839013 ], [ 91.525580, 25.872909 ], [ 91.474735, 25.871125 ], [ 91.575980, 26.033028 ], [ 91.632177, 26.022323 ], [ 91.611214, 25.939811 ], [ 91.669196, 25.905468 ], [ 91.720041, 25.954084 ], [ 91.731192, 26.059342 ], [ 91.819502, 26.118662 ], [ 91.853845, 26.104835 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Mizoram", "total":"5387", "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.800727, 24.418912 ], [ 92.832840, 24.376541 ], [ 93.000540, 24.403302 ], [ 93.043357, 24.343536 ], [ 92.976455, 24.114732 ], [ 93.079484, 24.103136 ], [ 93.100893, 24.045155 ], [ 93.147724, 24.087972 ], [ 93.216856, 24.050061 ], [ 93.248076, 24.085296 ], [ 93.255213, 24.023746 ], [ 93.337279, 24.053183 ], [ 93.334603, 23.986727 ], [ 93.398828, 23.930084 ], [ 93.444767, 23.682547 ], [ 93.414439, 23.388180 ], [ 93.365823, 23.354283 ], [ 93.393476, 23.138413 ], [ 93.297584, 23.005948 ], [ 93.194555, 23.060361 ], [ 93.133005, 23.047427 ], [ 93.168240, 22.918976 ], [ 93.099109, 22.810595 ], [ 93.091972, 22.709350 ], [ 93.144156, 22.598740 ], [ 93.111597, 22.531838 ], [ 93.190987, 22.427471 ], [ 93.208381, 22.261109 ], [ 93.147278, 22.246391 ], [ 93.154414, 22.178151 ], [ 93.046479, 22.197775 ], [ 93.065658, 22.101883 ], [ 93.013474, 22.102329 ], [ 93.009460, 21.984136 ], [ 92.955939, 22.030075 ], [ 92.910892, 21.946225 ], [ 92.867629, 22.065310 ], [ 92.717769, 22.152728 ], [ 92.684318, 22.018033 ], [ 92.609834, 21.977000 ], [ 92.570585, 22.129090 ], [ 92.609834, 22.121507 ], [ 92.613848, 22.172799 ], [ 92.531782, 22.656275 ], [ 92.447486, 22.893553 ], [ 92.375232, 22.935032 ], [ 92.360960, 23.237428 ], [ 92.408683, 23.245902 ], [ 92.268635, 23.728487 ], [ 92.259269, 23.815013 ], [ 92.331077, 23.911797 ], [ 92.336875, 24.146845 ], [ 92.296734, 24.251658 ], [ 92.422509, 24.252996 ], [ 92.465772, 24.134803 ], [ 92.529552, 24.174944 ], [ 92.550515, 24.245860 ], [ 92.611618, 24.253442 ], [ 92.624106, 24.332832 ], [ 92.690562, 24.354687 ], [ 92.765046, 24.521049 ], [ 92.800727, 24.418912 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Nagaland", "total":"2945", "geometry": { "type": "Polygon", "coordinates": [ [ [ 95.214541, 26.937093 ], [ 95.233719, 26.890707 ], [ 95.184658, 26.864839 ], [ 95.244869, 26.787233 ], [ 95.216325, 26.735496 ], [ 95.237733, 26.686434 ], [ 95.154775, 26.619533 ], [ 95.067357, 26.461644 ], [ 95.135597, 26.388053 ], [ 95.120432, 26.109741 ], [ 95.185550, 26.080305 ], [ 95.021864, 25.909928 ], [ 95.052639, 25.762745 ], [ 94.937568, 25.669082 ], [ 94.905009, 25.566946 ], [ 94.682449, 25.459903 ], [ 94.557566, 25.512978 ], [ 94.595031, 25.643660 ], [ 94.573176, 25.697627 ], [ 94.505383, 25.616899 ], [ 94.430007, 25.592814 ], [ 94.420194, 25.542861 ], [ 94.313598, 25.494692 ], [ 94.215029, 25.500044 ], [ 94.194959, 25.552227 ], [ 94.091930, 25.532603 ], [ 94.014770, 25.595936 ], [ 93.965263, 25.556687 ], [ 93.770802, 25.540185 ], [ 93.809159, 25.465701 ], [ 93.692750, 25.361780 ], [ 93.608008, 25.202108 ], [ 93.554932, 25.250724 ], [ 93.504979, 25.244033 ], [ 93.474204, 25.309151 ], [ 93.461716, 25.434480 ], [ 93.331927, 25.546875 ], [ 93.705684, 25.848825 ], [ 93.687844, 25.909482 ], [ 93.773032, 25.966126 ], [ 93.795778, 25.814482 ], [ 93.979535, 25.919741 ], [ 93.955004, 26.007159 ], [ 94.004958, 26.173075 ], [ 94.107986, 26.326503 ], [ 94.175334, 26.344343 ], [ 94.186484, 26.460306 ], [ 94.276579, 26.558875 ], [ 94.316720, 26.462983 ], [ 94.399232, 26.532114 ], [ 94.407706, 26.614180 ], [ 94.467918, 26.669932 ], [ 94.545078, 26.710965 ], [ 94.574514, 26.690894 ], [ 94.603951, 26.739064 ], [ 94.686463, 26.732373 ], [ 94.802426, 26.805965 ], [ 94.886276, 26.932633 ], [ 95.021418, 26.925496 ], [ 95.195362, 27.042797 ], [ 95.214541, 26.937093 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Orissa", "total":"4094", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 84.760925, 19.071235 ], [ 84.730150, 19.089522 ], [ 84.783226, 19.110930 ], [ 84.760925, 19.071235 ] ] ], [ [ [ 86.270228, 20.058259 ], [ 86.308139, 20.034620 ], [ 86.245251, 20.029268 ], [ 86.270228, 20.058259 ] ] ], [ [ [ 86.870559, 20.771877 ], [ 86.991874, 20.770985 ], [ 87.001240, 20.715679 ], [ 86.858963, 20.664834 ], [ 86.878141, 20.733074 ], [ 86.853611, 20.656806 ], [ 86.803657, 20.676430 ], [ 86.819268, 20.639412 ], [ 86.773775, 20.646548 ], [ 86.829972, 20.759835 ], [ 86.870559, 20.771877 ] ] ], [ [ [ 86.078443, 22.530500 ], [ 86.111894, 22.482777 ], [ 86.280040, 22.445312 ], [ 86.433468, 22.301696 ], [ 86.499924, 22.340945 ], [ 86.722929, 22.215170 ], [ 86.715347, 22.143362 ], [ 86.790277, 22.154066 ], [ 86.832202, 22.095193 ], [ 87.017743, 22.041225 ], [ 86.998118, 21.907422 ], [ 87.030231, 21.865497 ], [ 87.094457, 21.860145 ], [ 87.093565, 21.907868 ], [ 87.158237, 21.930615 ], [ 87.167603, 21.973432 ], [ 87.234950, 21.954253 ], [ 87.262603, 21.813760 ], [ 87.443684, 21.760684 ], [ 87.482041, 21.608594 ], [ 87.379904, 21.545707 ], [ 87.106945, 21.517608 ], [ 86.892414, 21.316457 ], [ 86.823282, 21.138498 ], [ 86.970466, 20.823168 ], [ 86.957531, 20.784811 ], [ 86.827742, 20.771877 ], [ 86.755488, 20.613543 ], [ 86.820606, 20.639412 ], [ 86.802319, 20.675092 ], [ 86.845137, 20.651008 ], [ 86.933893, 20.710773 ], [ 87.045396, 20.709435 ], [ 86.784479, 20.535937 ], [ 86.734080, 20.479293 ], [ 86.729620, 20.404809 ], [ 86.779573, 20.391875 ], [ 86.780911, 20.345936 ], [ 86.679666, 20.258072 ], [ 86.459783, 20.162179 ], [ 86.491003, 20.157719 ], [ 86.471379, 20.097508 ], [ 86.558797, 20.200536 ], [ 86.411613, 20.055583 ], [ 86.388867, 19.977085 ], [ 86.290298, 20.060935 ], [ 86.247927, 20.053353 ], [ 86.236777, 20.027038 ], [ 86.294758, 20.024362 ], [ 86.341144, 19.972178 ], [ 86.317505, 19.948986 ], [ 86.364336, 19.953892 ], [ 85.904944, 19.832131 ], [ 85.385341, 19.606003 ], [ 84.905879, 19.269710 ], [ 84.782334, 19.113160 ], [ 84.725244, 19.096658 ], [ 84.750221, 19.136353 ], [ 84.722568, 19.139921 ], [ 84.719000, 19.095766 ], [ 84.702052, 19.151071 ], [ 84.591887, 19.123865 ], [ 84.654328, 19.052503 ], [ 84.587873, 19.012808 ], [ 84.566018, 19.064991 ], [ 84.471464, 18.981141 ], [ 84.415266, 19.013700 ], [ 84.429539, 18.913793 ], [ 84.365313, 18.896399 ], [ 84.362191, 18.850906 ], [ 84.335876, 18.866516 ], [ 84.332308, 18.792032 ], [ 84.081650, 18.744755 ], [ 84.027236, 18.802290 ], [ 83.870240, 18.818347 ], [ 83.788174, 19.007902 ], [ 83.739559, 18.978465 ], [ 83.780146, 18.907549 ], [ 83.745803, 18.918253 ], [ 83.623150, 19.153747 ], [ 83.531272, 19.005226 ], [ 83.495591, 19.011024 ], [ 83.505403, 19.064991 ], [ 83.459464, 19.069451 ], [ 83.455450, 18.945460 ], [ 83.409065, 18.996305 ], [ 83.305144, 18.989615 ], [ 83.329229, 18.916915 ], [ 83.345731, 18.957056 ], [ 83.380074, 18.923160 ], [ 83.346623, 18.926728 ], [ 83.411295, 18.859380 ], [ 83.396130, 18.830835 ], [ 83.219510, 18.765718 ], [ 83.205237, 18.715764 ], [ 83.132984, 18.772408 ], [ 83.009884, 18.636374 ], [ 83.008100, 18.588205 ], [ 83.054039, 18.586421 ], [ 83.032631, 18.548064 ], [ 83.089274, 18.537806 ], [ 83.015236, 18.444589 ], [ 83.059838, 18.428533 ], [ 83.053593, 18.375458 ], [ 82.902842, 18.355833 ], [ 82.884555, 18.412923 ], [ 82.799367, 18.439237 ], [ 82.767254, 18.331302 ], [ 82.658873, 18.286701 ], [ 82.626761, 18.228720 ], [ 82.580821, 18.270199 ], [ 82.600446, 18.368767 ], [ 82.535328, 18.389730 ], [ 82.553615, 18.437453 ], [ 82.474225, 18.536914 ], [ 82.361384, 18.409800 ], [ 82.384576, 18.369213 ], [ 82.334623, 18.317030 ], [ 82.393051, 18.306326 ], [ 82.306078, 18.195715 ], [ 82.364506, 18.135057 ], [ 82.333285, 18.142194 ], [ 82.329717, 18.040503 ], [ 82.258355, 18.034705 ], [ 82.267275, 17.986536 ], [ 82.113401, 18.057897 ], [ 82.024645, 18.057897 ], [ 81.703071, 17.861206 ], [ 81.662930, 17.876817 ], [ 81.611193, 17.815267 ], [ 81.385065, 17.806793 ], [ 81.393985, 17.885291 ], [ 81.437248, 17.875925 ], [ 81.477389, 17.970033 ], [ 81.527788, 18.259049 ], [ 81.658024, 18.339331 ], [ 81.744996, 18.345129 ], [ 81.857837, 18.513275 ], [ 81.947039, 18.559214 ], [ 81.885490, 18.650201 ], [ 81.947485, 18.628792 ], [ 81.967556, 18.690788 ], [ 82.078613, 18.712196 ], [ 82.081289, 18.755905 ], [ 82.161125, 18.791140 ], [ 82.172721, 18.895507 ], [ 82.239623, 18.910671 ], [ 82.211970, 19.090414 ], [ 82.159787, 19.126541 ], [ 82.151758, 19.265250 ], [ 82.182979, 19.319664 ], [ 82.140608, 19.362035 ], [ 82.182979, 19.417786 ], [ 82.119200, 19.424030 ], [ 82.091993, 19.509665 ], [ 82.022415, 19.501636 ], [ 82.059880, 19.783070 ], [ 81.980044, 19.796004 ], [ 81.960419, 19.854877 ], [ 81.849809, 19.907953 ], [ 81.866757, 20.035958 ], [ 81.941241, 20.102414 ], [ 82.024199, 20.010089 ], [ 82.058096, 20.049784 ], [ 82.178519, 19.977977 ], [ 82.230702, 19.998047 ], [ 82.339529, 19.829901 ], [ 82.442558, 19.903047 ], [ 82.593310, 19.864690 ], [ 82.585281, 19.771027 ], [ 82.702582, 19.831239 ], [ 82.707489, 19.990019 ], [ 82.598216, 19.985559 ], [ 82.390821, 20.059597 ], [ 82.378778, 20.144785 ], [ 82.429177, 20.283048 ], [ 82.393943, 20.335678 ], [ 82.429177, 20.425772 ], [ 82.323919, 20.553777 ], [ 82.368074, 20.624247 ], [ 82.346665, 20.883826 ], [ 82.459060, 20.824060 ], [ 82.485821, 20.903450 ], [ 82.622300, 21.036362 ], [ 82.636127, 21.149649 ], [ 82.955917, 21.175517 ], [ 83.120049, 21.101033 ], [ 83.190073, 21.135376 ], [ 83.218172, 21.260259 ], [ 83.274369, 21.285682 ], [ 83.269909, 21.374884 ], [ 83.402820, 21.348570 ], [ 83.334581, 21.495753 ], [ 83.380520, 21.612608 ], [ 83.441177, 21.649181 ], [ 83.452774, 21.605026 ], [ 83.484440, 21.625543 ], [ 83.419769, 21.675050 ], [ 83.483994, 21.741506 ], [ 83.467046, 21.782539 ], [ 83.584347, 21.843642 ], [ 83.600403, 21.910990 ], [ 83.535286, 21.963619 ], [ 83.538408, 22.055498 ], [ 83.600403, 22.065310 ], [ 83.559370, 22.103667 ], [ 83.645897, 22.224536 ], [ 83.752939, 22.242823 ], [ 83.860874, 22.343621 ], [ 84.004044, 22.367706 ], [ 84.041509, 22.464044 ], [ 83.975945, 22.502401 ], [ 84.002706, 22.520688 ], [ 84.134725, 22.470734 ], [ 84.152566, 22.400711 ], [ 84.289045, 22.337377 ], [ 84.425971, 22.348973 ], [ 84.526769, 22.419889 ], [ 84.743977, 22.414537 ], [ 84.807756, 22.446650 ], [ 84.893837, 22.418105 ], [ 85.062429, 22.478317 ], [ 85.114612, 22.290546 ], [ 85.070457, 22.272259 ], [ 84.987499, 22.076906 ], [ 85.095434, 22.099653 ], [ 85.231021, 22.000192 ], [ 85.363041, 22.154512 ], [ 85.590952, 22.074230 ], [ 85.644474, 22.090287 ], [ 85.681493, 22.048808 ], [ 85.801916, 22.110803 ], [ 85.830907, 22.076906 ], [ 85.788089, 22.077352 ], [ 85.760883, 21.989934 ], [ 85.902714, 21.966741 ], [ 86.026706, 22.185287 ], [ 85.969616, 22.243269 ], [ 86.043208, 22.306156 ], [ 85.992809, 22.338269 ], [ 86.021353, 22.381978 ], [ 85.958020, 22.476087 ], [ 86.038302, 22.563505 ], [ 86.078443, 22.530500 ] ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Punjab", "total":"234", "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.868796, 32.488597 ], [ 75.932129, 32.416789 ], [ 75.622597, 32.234816 ], [ 75.620367, 32.185309 ], [ 75.661846, 32.164792 ], [ 75.578888, 32.081834 ], [ 75.894664, 31.949815 ], [ 75.971378, 31.814673 ], [ 75.921871, 31.817350 ], [ 76.153351, 31.414155 ], [ 76.135064, 31.361972 ], [ 76.172975, 31.306666 ], [ 76.296075, 31.319155 ], [ 76.362976, 31.441362 ], [ 76.448164, 31.305774 ], [ 76.431216, 31.283028 ], [ 76.466897, 31.310235 ], [ 76.535137, 31.255375 ], [ 76.570372, 31.280352 ], [ 76.601592, 31.250915 ], [ 76.580630, 31.216572 ], [ 76.626123, 31.227276 ], [ 76.590442, 31.182675 ], [ 76.589104, 31.127816 ], [ 76.625677, 31.110421 ], [ 76.610067, 31.004271 ], [ 76.769739, 30.906594 ], [ 76.846899, 30.792415 ], [ 76.828166, 30.763871 ], [ 76.759480, 30.799105 ], [ 76.690795, 30.760303 ], [ 76.726476, 30.696077 ], [ 76.819692, 30.685819 ], [ 76.913354, 30.599738 ], [ 76.888824, 30.440958 ], [ 76.927181, 30.388775 ], [ 76.880349, 30.359784 ], [ 76.832626, 30.433822 ], [ 76.757696, 30.438728 ], [ 76.700161, 30.393681 ], [ 76.738518, 30.359784 ], [ 76.715325, 30.333024 ], [ 76.547625, 30.264784 ], [ 76.532461, 30.227319 ], [ 76.584198, 30.256310 ], [ 76.639057, 30.205910 ], [ 76.601146, 30.080135 ], [ 76.452179, 30.100652 ], [ 76.410253, 30.202342 ], [ 76.390183, 30.127412 ], [ 76.325957, 30.149267 ], [ 76.348704, 30.127858 ], [ 76.322835, 30.108234 ], [ 76.203750, 30.159079 ], [ 76.190816, 30.134995 ], [ 76.255041, 30.104666 ], [ 76.190816, 30.016355 ], [ 76.203750, 29.944102 ], [ 76.166285, 29.928491 ], [ 76.242107, 29.869172 ], [ 76.077529, 29.805838 ], [ 76.035604, 29.746519 ], [ 75.879500, 29.746965 ], [ 75.771565, 29.825463 ], [ 75.706001, 29.808514 ], [ 75.697527, 29.754993 ], [ 75.625273, 29.773279 ], [ 75.568630, 29.742504 ], [ 75.444193, 29.808068 ], [ 75.335366, 29.693889 ], [ 75.350530, 29.659100 ], [ 75.317525, 29.670697 ], [ 75.296117, 29.568114 ], [ 75.223417, 29.546259 ], [ 75.221187, 29.606471 ], [ 75.157853, 29.662668 ], [ 75.230999, 29.751871 ], [ 75.182384, 29.838843 ], [ 75.153839, 29.780861 ], [ 75.090060, 29.806730 ], [ 75.084708, 29.915111 ], [ 74.989707, 29.856237 ], [ 74.915669, 29.949008 ], [ 74.801044, 29.992717 ], [ 74.690879, 29.969078 ], [ 74.647170, 29.904853 ], [ 74.519165, 29.943210 ], [ 73.889397, 29.977552 ], [ 73.898317, 30.053820 ], [ 73.966557, 30.121168 ], [ 73.966111, 30.195206 ], [ 73.957637, 30.261662 ], [ 73.871110, 30.368704 ], [ 73.935336, 30.462813 ], [ 74.033905, 30.536405 ], [ 74.077614, 30.529269 ], [ 74.090994, 30.612673 ], [ 74.281887, 30.730420 ], [ 74.262262, 30.767885 ], [ 74.316230, 30.847721 ], [ 74.363061, 30.845937 ], [ 74.365737, 30.885186 ], [ 74.537898, 30.993566 ], [ 74.558414, 31.067604 ], [ 74.622640, 31.047088 ], [ 74.694448, 31.095257 ], [ 74.621302, 31.137182 ], [ 74.551724, 31.085445 ], [ 74.504447, 31.138520 ], [ 74.511137, 31.272324 ], [ 74.642264, 31.460094 ], [ 74.565996, 31.501573 ], [ 74.600785, 31.568029 ], [ 74.517381, 31.722795 ], [ 74.556184, 31.828946 ], [ 74.709166, 31.957843 ], [ 74.809072, 31.955167 ], [ 74.872406, 32.050614 ], [ 75.004871, 32.028759 ], [ 75.116374, 32.082726 ], [ 75.164544, 32.068008 ], [ 75.195318, 32.116623 ], [ 75.239027, 32.087186 ], [ 75.314403, 32.158994 ], [ 75.314403, 32.214746 ], [ 75.363019, 32.234816 ], [ 75.322432, 32.337399 ], [ 75.472291, 32.340075 ], [ 75.501282, 32.275849 ], [ 75.529381, 32.348995 ], [ 75.711354, 32.418127 ], [ 75.872364, 32.576015 ], [ 75.868796, 32.488597 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Rajasthan", "total":"3442", "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.889397, 29.977552 ], [ 74.519165, 29.943210 ], [ 74.504893, 29.907975 ], [ 74.553508, 29.865604 ], [ 74.465198, 29.787552 ], [ 74.471888, 29.743842 ], [ 74.605245, 29.752763 ], [ 74.566442, 29.563654 ], [ 74.614612, 29.527081 ], [ 74.578931, 29.458841 ], [ 74.528977, 29.449475 ], [ 74.595879, 29.328160 ], [ 74.641818, 29.331282 ], [ 74.650292, 29.372315 ], [ 74.756443, 29.355813 ], [ 74.841185, 29.403982 ], [ 74.927266, 29.364733 ], [ 74.953134, 29.281775 ], [ 75.040106, 29.287127 ], [ 75.078017, 29.232267 ], [ 75.180154, 29.268840 ], [ 75.223417, 29.234943 ], [ 75.319310, 29.293371 ], [ 75.314849, 29.235835 ], [ 75.395577, 29.262150 ], [ 75.400484, 29.189004 ], [ 75.361235, 29.142619 ], [ 75.434826, 29.016398 ], [ 75.511094, 29.011046 ], [ 75.466939, 28.926304 ], [ 75.555696, 28.614542 ], [ 75.618137, 28.602053 ], [ 75.629287, 28.545856 ], [ 75.778255, 28.457546 ], [ 75.770227, 28.407592 ], [ 75.922317, 28.368789 ], [ 76.092693, 28.155150 ], [ 76.027576, 28.172544 ], [ 75.936143, 28.093600 ], [ 75.984759, 28.050783 ], [ 76.035604, 28.073976 ], [ 75.970040, 28.031159 ], [ 75.963350, 27.937050 ], [ 75.923655, 27.933036 ], [ 75.977176, 27.909398 ], [ 75.962904, 27.864796 ], [ 76.088233, 27.868364 ], [ 76.172975, 27.807261 ], [ 76.223375, 27.840712 ], [ 76.155135, 27.999046 ], [ 76.214008, 28.031605 ], [ 76.177436, 28.059257 ], [ 76.341122, 28.036065 ], [ 76.354502, 28.074422 ], [ 76.297413, 28.101182 ], [ 76.355394, 28.128389 ], [ 76.279126, 28.178788 ], [ 76.376803, 28.138201 ], [ 76.470911, 28.154704 ], [ 76.497672, 28.106535 ], [ 76.448610, 28.093154 ], [ 76.497672, 28.064610 ], [ 76.453517, 28.049891 ], [ 76.538705, 28.039187 ], [ 76.538259, 27.970501 ], [ 76.660020, 28.019116 ], [ 76.651100, 28.096722 ], [ 76.791593, 28.157380 ], [ 76.801405, 28.211793 ], [ 76.850467, 28.226512 ], [ 76.961970, 28.144000 ], [ 76.883918, 27.730993 ], [ 76.902650, 27.658739 ], [ 76.970444, 27.656955 ], [ 76.993636, 27.741697 ], [ 77.079271, 27.738575 ], [ 77.020843, 27.778270 ], [ 77.038238, 27.820195 ], [ 77.126548, 27.776486 ], [ 77.150632, 27.815735 ], [ 77.168919, 27.784960 ], [ 77.193896, 27.821979 ], [ 77.231806, 27.785852 ], [ 77.275962, 27.806369 ], [ 77.336619, 27.696204 ], [ 77.311197, 27.611908 ], [ 77.350000, 27.593621 ], [ 77.335281, 27.529842 ], [ 77.429390, 27.462048 ], [ 77.432066, 27.399160 ], [ 77.574343, 27.326907 ], [ 77.614038, 27.343409 ], [ 77.591738, 27.300592 ], [ 77.672912, 27.200239 ], [ 77.498521, 27.094981 ], [ 77.627419, 27.015591 ], [ 77.673358, 27.051718 ], [ 77.703687, 27.000426 ], [ 77.754978, 27.022727 ], [ 77.422253, 26.867069 ], [ 77.448122, 26.746646 ], [ 77.493169, 26.767162 ], [ 77.498075, 26.847890 ], [ 77.604672, 26.832726 ], [ 77.715729, 26.881341 ], [ 77.753194, 26.937539 ], [ 77.890119, 26.889369 ], [ 77.899932, 26.924604 ], [ 78.006528, 26.910778 ], [ 78.022139, 26.860825 ], [ 78.042209, 26.915238 ], [ 78.101529, 26.904980 ], [ 78.111341, 26.953149 ], [ 78.215708, 26.954041 ], [ 78.262093, 26.923712 ], [ 78.191177, 26.888477 ], [ 78.209910, 26.836294 ], [ 78.160848, 26.826928 ], [ 78.176013, 26.791693 ], [ 78.099745, 26.797045 ], [ 78.085918, 26.682866 ], [ 77.992256, 26.702491 ], [ 77.894579, 26.662350 ], [ 77.812959, 26.554861 ], [ 77.523052, 26.414813 ], [ 77.427605, 26.406785 ], [ 77.432512, 26.364860 ], [ 77.334835, 26.357278 ], [ 77.203262, 26.237301 ], [ 77.123872, 26.237747 ], [ 76.887932, 26.093239 ], [ 76.806312, 25.953191 ], [ 76.592672, 25.874247 ], [ 76.529339, 25.797980 ], [ 76.530677, 25.733754 ], [ 76.482507, 25.718143 ], [ 76.564127, 25.442508 ], [ 76.602484, 25.388987 ], [ 76.770185, 25.312273 ], [ 76.893284, 25.322531 ], [ 76.941899, 25.275254 ], [ 77.075256, 25.339480 ], [ 77.205046, 25.311381 ], [ 77.283098, 25.423776 ], [ 77.361150, 25.413072 ], [ 77.336619, 25.325653 ], [ 77.371854, 25.320301 ], [ 77.349553, 25.271686 ], [ 77.417793, 25.193188 ], [ 77.390587, 25.188282 ], [ 77.398615, 25.113352 ], [ 77.302722, 25.083915 ], [ 77.262135, 25.119150 ], [ 77.169365, 25.113798 ], [ 77.114505, 25.069197 ], [ 76.993636, 25.079901 ], [ 76.854481, 25.010323 ], [ 76.949035, 24.872952 ], [ 76.801405, 24.819876 ], [ 76.847345, 24.750299 ], [ 76.951711, 24.765463 ], [ 77.026641, 24.711050 ], [ 77.064552, 24.570110 ], [ 76.965538, 24.460837 ], [ 76.914692, 24.487598 ], [ 76.912908, 24.543349 ], [ 76.814786, 24.534429 ], [ 76.851359, 24.469312 ], [ 76.840208, 24.338630 ], [ 76.944575, 24.206165 ], [ 76.899974, 24.131235 ], [ 76.800959, 24.120531 ], [ 76.755020, 24.172268 ], [ 76.701053, 24.171376 ], [ 76.674292, 24.193230 ], [ 76.693025, 24.285109 ], [ 76.588212, 24.249428 ], [ 76.579738, 24.180742 ], [ 76.531569, 24.163348 ], [ 76.470019, 24.231587 ], [ 76.414268, 24.207503 ], [ 76.326849, 24.253442 ], [ 76.215346, 24.216869 ], [ 76.185464, 24.331494 ], [ 76.121238, 24.196353 ], [ 76.134618, 24.095108 ], [ 75.960228, 24.025530 ], [ 75.975838, 23.932760 ], [ 75.776917, 23.853816 ], [ 75.702433, 23.904215 ], [ 75.729194, 23.858276 ], [ 75.684593, 23.760599 ], [ 75.652034, 23.802078 ], [ 75.582456, 23.800294 ], [ 75.560602, 23.860060 ], [ 75.456681, 23.920717 ], [ 75.514217, 24.048723 ], [ 75.583794, 23.992079 ], [ 75.668982, 24.033558 ], [ 75.700203, 23.968887 ], [ 75.833561, 24.075483 ], [ 75.835791, 24.111164 ], [ 75.743466, 24.139709 ], [ 75.773349, 24.220883 ], [ 75.826871, 24.246306 ], [ 75.726964, 24.405086 ], [ 75.791190, 24.475110 ], [ 75.847387, 24.418912 ], [ 75.908937, 24.455931 ], [ 75.917411, 24.571448 ], [ 75.828209, 24.613373 ], [ 75.838913, 24.729782 ], [ 75.759523, 24.765017 ], [ 75.613231, 24.688303 ], [ 75.582010, 24.722646 ], [ 75.451775, 24.693209 ], [ 75.216727, 24.722200 ], [ 75.185506, 24.768139 ], [ 75.251962, 24.837271 ], [ 75.208253, 24.909971 ], [ 75.305929, 24.813186 ], [ 75.416986, 24.864032 ], [ 75.424122, 24.892576 ], [ 75.261328, 24.889454 ], [ 75.292995, 24.923351 ], [ 75.276046, 24.976873 ], [ 75.313957, 24.900605 ], [ 75.345624, 25.042882 ], [ 75.159191, 25.045558 ], [ 75.119050, 24.889008 ], [ 75.043228, 24.859125 ], [ 74.920129, 24.891684 ], [ 74.846537, 24.974196 ], [ 74.848768, 24.792670 ], [ 75.007102, 24.796238 ], [ 75.020036, 24.752975 ], [ 74.942876, 24.660204 ], [ 74.892923, 24.655298 ], [ 74.799260, 24.795792 ], [ 74.775176, 24.687857 ], [ 74.817101, 24.671801 ], [ 74.711842, 24.510791 ], [ 74.858134, 24.467527 ], [ 74.752875, 24.282879 ], [ 74.894261, 24.261470 ], [ 74.881326, 24.213301 ], [ 74.992829, 24.029544 ], [ 74.905857, 23.873886 ], [ 74.940646, 23.734731 ], [ 74.907641, 23.682993 ], [ 74.939754, 23.630364 ], [ 74.613273, 23.461326 ], [ 74.518273, 23.328860 ], [ 74.553508, 23.282475 ], [ 74.701138, 23.272217 ], [ 74.722100, 23.242334 ], [ 74.694894, 23.223156 ], [ 74.745739, 23.212005 ], [ 74.669025, 23.201301 ], [ 74.512475, 23.088906 ], [ 74.391160, 23.112099 ], [ 74.322920, 23.062592 ], [ 74.246206, 23.188367 ], [ 74.182872, 23.152240 ], [ 74.127121, 23.179000 ], [ 74.133811, 23.269541 ], [ 74.044609, 23.296301 ], [ 73.971017, 23.377030 ], [ 73.894303, 23.337335 ], [ 73.832307, 23.446607 ], [ 73.764514, 23.458650 ], [ 73.726157, 23.412710 ], [ 73.704302, 23.455974 ], [ 73.632940, 23.452405 ], [ 73.660593, 23.622782 ], [ 73.577189, 23.655341 ], [ 73.513409, 23.616984 ], [ 73.508503, 23.703510 ], [ 73.362657, 23.787360 ], [ 73.362211, 23.861844 ], [ 73.424653, 23.930976 ], [ 73.373362, 24.128113 ], [ 73.245802, 24.010812 ], [ 73.198971, 24.051399 ], [ 73.223948, 24.098230 ], [ 73.082562, 24.185202 ], [ 73.145004, 24.307855 ], [ 73.180685, 24.301611 ], [ 73.231530, 24.364499 ], [ 73.169981, 24.350672 ], [ 73.084792, 24.394382 ], [ 73.094605, 24.494734 ], [ 73.000496, 24.470650 ], [ 72.963477, 24.383677 ], [ 72.991576, 24.364053 ], [ 72.923782, 24.326142 ], [ 72.868031, 24.365837 ], [ 72.732443, 24.361377 ], [ 72.697208, 24.457269 ], [ 72.544673, 24.506776 ], [ 72.507654, 24.409992 ], [ 72.464836, 24.407316 ], [ 72.442536, 24.504100 ], [ 72.251197, 24.580368 ], [ 72.353780, 24.618279 ], [ 72.165563, 24.614711 ], [ 72.052276, 24.705698 ], [ 71.944341, 24.626754 ], [ 71.876547, 24.675369 ], [ 71.858261, 24.604007 ], [ 71.798941, 24.670463 ], [ 71.661570, 24.633444 ], [ 71.616523, 24.670463 ], [ 71.488518, 24.674031 ], [ 71.383259, 24.621847 ], [ 71.351146, 24.653068 ], [ 71.297625, 24.607575 ], [ 71.107178, 24.680721 ], [ 70.945276, 24.934501 ], [ 70.894430, 25.144127 ], [ 70.674101, 25.389433 ], [ 70.666072, 25.697181 ], [ 70.399804, 25.663730 ], [ 70.279827, 25.701195 ], [ 70.096070, 25.944271 ], [ 70.082690, 26.074061 ], [ 70.172784, 26.244883 ], [ 70.167878, 26.550847 ], [ 70.066187, 26.599462 ], [ 69.815529, 26.592326 ], [ 69.507781, 26.748430 ], [ 69.483696, 26.806411 ], [ 69.513133, 27.016929 ], [ 69.578251, 27.165451 ], [ 70.016234, 27.556157 ], [ 70.157173, 27.834022 ], [ 70.366353, 28.008412 ], [ 70.562598, 28.020008 ], [ 70.672317, 27.914304 ], [ 70.757505, 27.717167 ], [ 70.884172, 27.698434 ], [ 71.273094, 27.842050 ], [ 71.658448, 27.868811 ], [ 71.897510, 27.957567 ], [ 71.933191, 28.127051 ], [ 72.184295, 28.358085 ], [ 72.302042, 28.664941 ], [ 72.384554, 28.763955 ], [ 72.941623, 29.027102 ], [ 73.271225, 29.556964 ], [ 73.391202, 29.937857 ], [ 73.787260, 30.066309 ], [ 73.966111, 30.195206 ], [ 73.966557, 30.121168 ], [ 73.898317, 30.053820 ], [ 73.889397, 29.977552 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Sikkim", "total":"5343", "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.751835, 27.148056 ], [ 88.559158, 27.188643 ], [ 88.432045, 27.081600 ], [ 88.304486, 27.128432 ], [ 88.152396, 27.111929 ], [ 88.083264, 27.165004 ], [ 88.058288, 27.214066 ], [ 88.009226, 27.216742 ], [ 88.056950, 27.338503 ], [ 88.039109, 27.493715 ], [ 88.190307, 27.788528 ], [ 88.193875, 27.850970 ], [ 88.125635, 27.873717 ], [ 88.123851, 27.950877 ], [ 88.389674, 27.978083 ], [ 88.483336, 28.045431 ], [ 88.539088, 28.038741 ], [ 88.621154, 28.131065 ], [ 88.666647, 28.073976 ], [ 88.750943, 28.073530 ], [ 88.833009, 28.011534 ], [ 88.885639, 27.861228 ], [ 88.846390, 27.668997 ], [ 88.767000, 27.565077 ], [ 88.809371, 27.405405 ], [ 88.922212, 27.326461 ], [ 88.899019, 27.275169 ], [ 88.800897, 27.247517 ], [ 88.751835, 27.148056 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Tamil Nadu", "total":"4545", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 79.312450, 9.328562 ], [ 79.325830, 9.261660 ], [ 79.440009, 9.158186 ], [ 79.298623, 9.246942 ], [ 79.214773, 9.254078 ], [ 79.220571, 9.291989 ], [ 79.312450, 9.328562 ] ] ], [ [ [ 80.076021, 13.526867 ], [ 80.241045, 13.470224 ], [ 80.311961, 13.369425 ], [ 80.312853, 13.427853 ], [ 80.344966, 13.273087 ], [ 80.157195, 12.469820 ], [ 80.050599, 12.325759 ], [ 80.058181, 12.367238 ], [ 80.017148, 12.340477 ], [ 80.063087, 12.351181 ], [ 79.944448, 12.220054 ], [ 80.006890, 12.254397 ], [ 79.837851, 11.940405 ], [ 79.799940, 11.964490 ], [ 79.737053, 11.906954 ], [ 79.715644, 11.967612 ], [ 79.749541, 11.986344 ], [ 79.705832, 11.977424 ], [ 79.679071, 12.019349 ], [ 79.644282, 11.992588 ], [ 79.699142, 11.972072 ], [ 79.678179, 11.936391 ], [ 79.725010, 11.891344 ], [ 79.682639, 11.904724 ], [ 79.659001, 11.865475 ], [ 79.727686, 11.832470 ], [ 79.749987, 11.860569 ], [ 79.800386, 11.808386 ], [ 79.757123, 11.563971 ], [ 79.837851, 11.357022 ], [ 79.846325, 11.244181 ], [ 79.804400, 11.236153 ], [ 79.847663, 11.242843 ], [ 79.854354, 10.976128 ], [ 79.737053, 10.989063 ], [ 79.745527, 10.943123 ], [ 79.702710, 10.945799 ], [ 79.742851, 10.882020 ], [ 79.808860, 10.867301 ], [ 79.813321, 10.814226 ], [ 79.851232, 10.813780 ], [ 79.879330, 10.296407 ], [ 79.742851, 10.274998 ], [ 79.778532, 10.302205 ], [ 79.636700, 10.318261 ], [ 79.630010, 10.363309 ], [ 79.613507, 10.317369 ], [ 79.551066, 10.312463 ], [ 79.738837, 10.277228 ], [ 79.526535, 10.305327 ], [ 79.588531, 10.332534 ], [ 79.545268, 10.347698 ], [ 79.525643, 10.318261 ], [ 79.456065, 10.341900 ], [ 79.512263, 10.308895 ], [ 79.385596, 10.316923 ], [ 79.295055, 10.260726 ], [ 79.229046, 10.144317 ], [ 79.267403, 10.037720 ], [ 78.934678, 9.607765 ], [ 78.898105, 9.480206 ], [ 78.939138, 9.406168 ], [ 79.064467, 9.300017 ], [ 79.190243, 9.281731 ], [ 78.832541, 9.268797 ], [ 78.718363, 9.190299 ], [ 78.657705, 9.192529 ], [ 78.657259, 9.157740 ], [ 78.488667, 9.150157 ], [ 78.260755, 9.018584 ], [ 78.168876, 8.882105 ], [ 78.157280, 8.771494 ], [ 78.198313, 8.788888 ], [ 78.229980, 8.748747 ], [ 78.170661, 8.745179 ], [ 78.104651, 8.651517 ], [ 78.130519, 8.497197 ], [ 78.067186, 8.370530 ], [ 77.804039, 8.248322 ], [ 77.746058, 8.176961 ], [ 77.575681, 8.135482 ], [ 77.551151, 8.076608 ], [ 77.316103, 8.120763 ], [ 77.090867, 8.297384 ], [ 77.159553, 8.312548 ], [ 77.135022, 8.378558 ], [ 77.209506, 8.437877 ], [ 77.186313, 8.493183 ], [ 77.265257, 8.537338 ], [ 77.155539, 8.737597 ], [ 77.214858, 8.775954 ], [ 77.241619, 8.864710 ], [ 77.132346, 9.011894 ], [ 77.251877, 9.143021 ], [ 77.267041, 9.291097 ], [ 77.396385, 9.496708 ], [ 77.350446, 9.526145 ], [ 77.341079, 9.594831 ], [ 77.324577, 9.563164 ], [ 77.304506, 9.593047 ], [ 77.254999, 9.564948 ], [ 77.151970, 9.605981 ], [ 77.234037, 9.788400 ], [ 77.204600, 9.894105 ], [ 77.261243, 9.963682 ], [ 77.188097, 10.095702 ], [ 77.259905, 10.118894 ], [ 77.280422, 10.207205 ], [ 77.246525, 10.220585 ], [ 77.221994, 10.340116 ], [ 77.163121, 10.346360 ], [ 76.970890, 10.208543 ], [ 76.819692, 10.295069 ], [ 76.804974, 10.626455 ], [ 76.872767, 10.629577 ], [ 76.855373, 10.675071 ], [ 76.897298, 10.770963 ], [ 76.817462, 10.861949 ], [ 76.649316, 10.923945 ], [ 76.706405, 11.031434 ], [ 76.792485, 11.042584 ], [ 76.737180, 11.047490 ], [ 76.738518, 11.121082 ], [ 76.691241, 11.144721 ], [ 76.725584, 11.208946 ], [ 76.697039, 11.231247 ], [ 76.623001, 11.185754 ], [ 76.452625, 11.180401 ], [ 76.446380, 11.230355 ], [ 76.540043, 11.292350 ], [ 76.538259, 11.351670 ], [ 76.410253, 11.433736 ], [ 76.239877, 11.459605 ], [ 76.225605, 11.564417 ], [ 76.350042, 11.582704 ], [ 76.424972, 11.623291 ], [ 76.423634, 11.659418 ], [ 76.504362, 11.698221 ], [ 76.560113, 11.609910 ], [ 76.837086, 11.574676 ], [ 76.828612, 11.644253 ], [ 76.899528, 11.783409 ], [ 76.959740, 11.765122 ], [ 77.004341, 11.803033 ], [ 77.109153, 11.712939 ], [ 77.102909, 11.763338 ], [ 77.241619, 11.802587 ], [ 77.419131, 11.750850 ], [ 77.484249, 11.932377 ], [ 77.664884, 11.939513 ], [ 77.768358, 12.105429 ], [ 77.719297, 12.171439 ], [ 77.465516, 12.202214 ], [ 77.469977, 12.261979 ], [ 77.542676, 12.283834 ], [ 77.620282, 12.408271 ], [ 77.625189, 12.477403 ], [ 77.575235, 12.468482 ], [ 77.606456, 12.499703 ], [ 77.569883, 12.558131 ], [ 77.590400, 12.657591 ], [ 77.731339, 12.663835 ], [ 77.799579, 12.786935 ], [ 77.784861, 12.833766 ], [ 77.917772, 12.878367 ], [ 77.924908, 12.813695 ], [ 77.945425, 12.849376 ], [ 78.001622, 12.795409 ], [ 78.015003, 12.845808 ], [ 78.046669, 12.842240 ], [ 78.120707, 12.769986 ], [ 78.220614, 12.752592 ], [ 78.189839, 12.681230 ], [ 78.264323, 12.691934 ], [ 78.368244, 12.611652 ], [ 78.454770, 12.612098 ], [ 78.509629, 12.698624 ], [ 78.484207, 12.734751 ], [ 78.547540, 12.685690 ], [ 78.545756, 12.744117 ], [ 78.646555, 12.918954 ], [ 78.613550, 12.978719 ], [ 78.651015, 13.017968 ], [ 78.693832, 13.004588 ], [ 78.702306, 13.056325 ], [ 78.876251, 13.086208 ], [ 78.882049, 13.019753 ], [ 78.924420, 13.018860 ], [ 78.893645, 13.034917 ], [ 78.914162, 13.067922 ], [ 78.979725, 13.076396 ], [ 79.068927, 13.013954 ], [ 79.152778, 13.007264 ], [ 79.218341, 13.135715 ], [ 79.267403, 13.141068 ], [ 79.307990, 13.096912 ], [ 79.347685, 13.162922 ], [ 79.423953, 13.187453 ], [ 79.424845, 13.281561 ], [ 79.374445, 13.302970 ], [ 79.428859, 13.323486 ], [ 79.535901, 13.310998 ], [ 79.580057, 13.245434 ], [ 79.668367, 13.282007 ], [ 79.688883, 13.207523 ], [ 79.744189, 13.195035 ], [ 79.784776, 13.223580 ], [ 79.721442, 13.272195 ], [ 79.925715, 13.335975 ], [ 79.961842, 13.451492 ], [ 80.035880, 13.484496 ], [ 79.989495, 13.526867 ], [ 80.076021, 13.526867 ] ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Tripura", "total":"9765", "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.231170, 24.504100 ], [ 92.272649, 24.379217 ], [ 92.212884, 24.249428 ], [ 92.296734, 24.251658 ], [ 92.336875, 24.146845 ], [ 92.331077, 23.911797 ], [ 92.259269, 23.815013 ], [ 92.268635, 23.728487 ], [ 92.224034, 23.657125 ], [ 92.162931, 23.739637 ], [ 92.070606, 23.644636 ], [ 91.962225, 23.727595 ], [ 91.975160, 23.482288 ], [ 91.847155, 23.400222 ], [ 91.770887, 23.263743 ], [ 91.835558, 23.093812 ], [ 91.618797, 22.943952 ], [ 91.548773, 22.994798 ], [ 91.510862, 23.182123 ], [ 91.418984, 23.280245 ], [ 91.388655, 23.179447 ], [ 91.422106, 23.059469 ], [ 91.356096, 23.095150 ], [ 91.297222, 23.320832 ], [ 91.325767, 23.362311 ], [ 91.296776, 23.354283 ], [ 91.253959, 23.489870 ], [ 91.166541, 23.598697 ], [ 91.161189, 23.670505 ], [ 91.199100, 23.646866 ], [ 91.210250, 23.687454 ], [ 91.154499, 23.709754 ], [ 91.172339, 23.752125 ], [ 91.226753, 23.745435 ], [ 91.257527, 23.839543 ], [ 91.235227, 23.928746 ], [ 91.276260, 23.926070 ], [ 91.306589, 23.998769 ], [ 91.378397, 23.976915 ], [ 91.377951, 24.109380 ], [ 91.596050, 24.080390 ], [ 91.640205, 24.108488 ], [ 91.667412, 24.230249 ], [ 91.692389, 24.159334 ], [ 91.761074, 24.141493 ], [ 91.743680, 24.247198 ], [ 91.815488, 24.208841 ], [ 91.847601, 24.228465 ], [ 91.902460, 24.137925 ], [ 91.941709, 24.267714 ], [ 91.920300, 24.335954 ], [ 91.957319, 24.356471 ], [ 91.995230, 24.321236 ], [ 91.974268, 24.388583 ], [ 92.123682, 24.387245 ], [ 92.172743, 24.430955 ], [ 92.164269, 24.529077 ], [ 92.231170, 24.504100 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Uttar Pradesh", "total":"5274", "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.856414, 27.348315 ], [ 83.828761, 27.322893 ], [ 83.916626, 27.325123 ], [ 83.897893, 27.259559 ], [ 83.978621, 27.200239 ], [ 83.939372, 27.093197 ], [ 84.020546, 27.095427 ], [ 83.990663, 27.068666 ], [ 84.040617, 27.044581 ], [ 84.052213, 26.891600 ], [ 84.140969, 26.887585 ], [ 84.169068, 26.834510 ], [ 84.240876, 26.862609 ], [ 84.234186, 26.739510 ], [ 84.297965, 26.753336 ], [ 84.325618, 26.684204 ], [ 84.402332, 26.671270 ], [ 84.414374, 26.627115 ], [ 84.272097, 26.599462 ], [ 84.081650, 26.642725 ], [ 84.047753, 26.543711 ], [ 83.902353, 26.518288 ], [ 83.902353, 26.450048 ], [ 84.011180, 26.448264 ], [ 84.071838, 26.384485 ], [ 84.171298, 26.373780 ], [ 84.159256, 26.245775 ], [ 84.011626, 26.240869 ], [ 84.018316, 26.144976 ], [ 84.166392, 25.991548 ], [ 84.351487, 25.959436 ], [ 84.423295, 25.892534 ], [ 84.528553, 25.877816 ], [ 84.526769, 25.834552 ], [ 84.620432, 25.793965 ], [ 84.600361, 25.760515 ], [ 84.630690, 25.728402 ], [ 84.555760, 25.736430 ], [ 84.552192, 25.684247 ], [ 84.535689, 25.726618 ], [ 84.488412, 25.678002 ], [ 84.331416, 25.744458 ], [ 84.285477, 25.661500 ], [ 84.202965, 25.669528 ], [ 84.148105, 25.731078 ], [ 84.094584, 25.720374 ], [ 84.076298, 25.637415 ], [ 83.917072, 25.558471 ], [ 83.810029, 25.465701 ], [ 83.838574, 25.436710 ], [ 83.761860, 25.388095 ], [ 83.694512, 25.396123 ], [ 83.349745, 25.198986 ], [ 83.318078, 25.017460 ], [ 83.386764, 24.784196 ], [ 83.479980, 24.737810 ], [ 83.497375, 24.651730 ], [ 83.541530, 24.626308 ], [ 83.498267, 24.526847 ], [ 83.393008, 24.500978 ], [ 83.400144, 24.408654 ], [ 83.451436, 24.364945 ], [ 83.376060, 24.314546 ], [ 83.401928, 24.265930 ], [ 83.323430, 24.101352 ], [ 83.189627, 23.921163 ], [ 83.086598, 23.878346 ], [ 82.938969, 23.875670 ], [ 82.807841, 23.963089 ], [ 82.797137, 24.005014 ], [ 82.741831, 24.021516 ], [ 82.766362, 24.077713 ], [ 82.657535, 24.134803 ], [ 82.720423, 24.138817 ], [ 82.764132, 24.292245 ], [ 82.760564, 24.372973 ], [ 82.707043, 24.385015 ], [ 82.736479, 24.499640 ], [ 82.712395, 24.556284 ], [ 82.800705, 24.552716 ], [ 82.762794, 24.645486 ], [ 82.695000, 24.644148 ], [ 82.657981, 24.700345 ], [ 82.529084, 24.652176 ], [ 82.432300, 24.706144 ], [ 82.401525, 24.683843 ], [ 82.409107, 24.597763 ], [ 82.294036, 24.613819 ], [ 82.296266, 24.670017 ], [ 82.229810, 24.669571 ], [ 82.243637, 24.775721 ], [ 82.199482, 24.752083 ], [ 82.213754, 24.728444 ], [ 82.172721, 24.739594 ], [ 82.195914, 24.824337 ], [ 82.112063, 24.792224 ], [ 82.005021, 24.850651 ], [ 81.959081, 24.830581 ], [ 81.896640, 24.892576 ], [ 81.898424, 25.009431 ], [ 81.789151, 25.010323 ], [ 81.658470, 25.079901 ], [ 81.604502, 25.060723 ], [ 81.618775, 25.159737 ], [ 81.566591, 25.195864 ], [ 81.472929, 25.136991 ], [ 81.507718, 25.106662 ], [ 81.483633, 25.074995 ], [ 81.400675, 25.107554 ], [ 81.430112, 25.133423 ], [ 81.329759, 25.172672 ], [ 81.314595, 25.116474 ], [ 81.306567, 25.165981 ], [ 81.269102, 25.167765 ], [ 81.261520, 25.068305 ], [ 81.201754, 24.995605 ], [ 81.212458, 24.934501 ], [ 81.161613, 24.958586 ], [ 81.132622, 24.892130 ], [ 81.076425, 24.952342 ], [ 80.802128, 24.944314 ], [ 80.904710, 25.160183 ], [ 80.877950, 25.195418 ], [ 80.836471, 25.192742 ], [ 80.827551, 25.110230 ], [ 80.799452, 25.146357 ], [ 80.699545, 25.136991 ], [ 80.775813, 25.061615 ], [ 80.673677, 25.054032 ], [ 80.679475, 25.081685 ], [ 80.601423, 25.104432 ], [ 80.632198, 25.123164 ], [ 80.594733, 25.155277 ], [ 80.606775, 25.072319 ], [ 80.476094, 25.102202 ], [ 80.494380, 25.045112 ], [ 80.440859, 25.082131 ], [ 80.365929, 25.057601 ], [ 80.381985, 25.009877 ], [ 80.278510, 25.021474 ], [ 80.351210, 25.145019 ], [ 80.423910, 25.174010 ], [ 80.398934, 25.243141 ], [ 80.303933, 25.289080 ], [ 80.310623, 25.387203 ], [ 80.255764, 25.428682 ], [ 80.193768, 25.416194 ], [ 80.123298, 25.338588 ], [ 80.020716, 25.343048 ], [ 79.996631, 25.268564 ], [ 79.847217, 25.240019 ], [ 79.855692, 25.098634 ], [ 79.745527, 25.143681 ], [ 79.597897, 25.131638 ], [ 79.565338, 25.177578 ], [ 79.489962, 25.082577 ], [ 79.468554, 25.134315 ], [ 79.398976, 25.113352 ], [ 79.383812, 25.170441 ], [ 79.490408, 25.270348 ], [ 79.415478, 25.259198 ], [ 79.367309, 25.294433 ], [ 79.353037, 25.265442 ], [ 79.345901, 25.333236 ], [ 79.294609, 25.340372 ], [ 79.259374, 25.271240 ], [ 79.340102, 25.272578 ], [ 79.346793, 25.214151 ], [ 79.273647, 25.248047 ], [ 79.303083, 25.133423 ], [ 79.260266, 25.122272 ], [ 79.235736, 25.161075 ], [ 79.238412, 25.116474 ], [ 79.184890, 25.151263 ], [ 79.129139, 25.110676 ], [ 79.084092, 25.192742 ], [ 79.021650, 25.143235 ], [ 79.056439, 25.225747 ], [ 79.005148, 25.277038 ], [ 78.971251, 25.244925 ], [ 78.995782, 25.195864 ], [ 78.948504, 25.220395 ], [ 78.871790, 25.165981 ], [ 78.875805, 25.255630 ], [ 78.969913, 25.285066 ], [ 78.952965, 25.349738 ], [ 78.876697, 25.344386 ], [ 78.841908, 25.229315 ], [ 78.783034, 25.297555 ], [ 78.874913, 25.387649 ], [ 78.949396, 25.400137 ], [ 78.892307, 25.375161 ], [ 78.928434, 25.351968 ], [ 78.978387, 25.376053 ], [ 78.960101, 25.438940 ], [ 78.903011, 25.446969 ], [ 78.930664, 25.559809 ], [ 78.828527, 25.509856 ], [ 78.857072, 25.467039 ], [ 78.834325, 25.432250 ], [ 78.829865, 25.465701 ], [ 78.731743, 25.500490 ], [ 78.754935, 25.434034 ], [ 78.812917, 25.430466 ], [ 78.743339, 25.412626 ], [ 78.764302, 25.358212 ], [ 78.657705, 25.388095 ], [ 78.701414, 25.428682 ], [ 78.652799, 25.443846 ], [ 78.560920, 25.395677 ], [ 78.576085, 25.351968 ], [ 78.525240, 25.363118 ], [ 78.525240, 25.306475 ], [ 78.427563, 25.288634 ], [ 78.568503, 25.258752 ], [ 78.597047, 25.097742 ], [ 78.642095, 25.061615 ], [ 78.622024, 24.964830 ], [ 78.780358, 24.814970 ], [ 78.749583, 24.604899 ], [ 78.881603, 24.639688 ], [ 78.966345, 24.496964 ], [ 78.913716, 24.500978 ], [ 78.908809, 24.466635 ], [ 78.984185, 24.441213 ], [ 78.966791, 24.353795 ], [ 78.878927, 24.223113 ], [ 78.791508, 24.180296 ], [ 78.760288, 24.258348 ], [ 78.669301, 24.244968 ], [ 78.505169, 24.393936 ], [ 78.379840, 24.275743 ], [ 78.325872, 24.329710 ], [ 78.361107, 24.385907 ], [ 78.219722, 24.522833 ], [ 78.258971, 24.558068 ], [ 78.268337, 24.666895 ], [ 78.163970, 24.856895 ], [ 78.327657, 24.999619 ], [ 78.327657, 25.088821 ], [ 78.442727, 25.128962 ], [ 78.295544, 25.374715 ], [ 78.347727, 25.454997 ], [ 78.420873, 25.477743 ], [ 78.429347, 25.563824 ], [ 78.648785, 25.565608 ], [ 78.805335, 25.624481 ], [ 78.811133, 25.674434 ], [ 78.746907, 25.748918 ], [ 78.820499, 25.799318 ], [ 78.811133, 25.830092 ], [ 78.861978, 25.799318 ], [ 78.846814, 25.860421 ], [ 79.003364, 26.081643 ], [ 78.942706, 26.139178 ], [ 79.000688, 26.154789 ], [ 78.977495, 26.195376 ], [ 79.056885, 26.232841 ], [ 79.036815, 26.267184 ], [ 79.083646, 26.272536 ], [ 79.133599, 26.344790 ], [ 79.076956, 26.362630 ], [ 79.126909, 26.444696 ], [ 79.048411, 26.455846 ], [ 79.060899, 26.503124 ], [ 78.979725, 26.574039 ], [ 78.993106, 26.684650 ], [ 78.937800, 26.662796 ], [ 78.948058, 26.696693 ], [ 78.865100, 26.704721 ], [ 78.715240, 26.800167 ], [ 78.565827, 26.757796 ], [ 78.389652, 26.824698 ], [ 78.351295, 26.874205 ], [ 78.282163, 26.863947 ], [ 78.260755, 26.821130 ], [ 78.209910, 26.836294 ], [ 78.191177, 26.888477 ], [ 78.262093, 26.923712 ], [ 78.215708, 26.954041 ], [ 78.111341, 26.953149 ], [ 78.101529, 26.904980 ], [ 78.042209, 26.915238 ], [ 78.022139, 26.860825 ], [ 78.006528, 26.910778 ], [ 77.899932, 26.924604 ], [ 77.890119, 26.889369 ], [ 77.753194, 26.937539 ], [ 77.715729, 26.881341 ], [ 77.604672, 26.832726 ], [ 77.498075, 26.847890 ], [ 77.493169, 26.767162 ], [ 77.448122, 26.746646 ], [ 77.422253, 26.867069 ], [ 77.754978, 27.022727 ], [ 77.703687, 27.000426 ], [ 77.673358, 27.051718 ], [ 77.627419, 27.015591 ], [ 77.498521, 27.094981 ], [ 77.672912, 27.200239 ], [ 77.591738, 27.300592 ], [ 77.614038, 27.343409 ], [ 77.574343, 27.326907 ], [ 77.432066, 27.399160 ], [ 77.429390, 27.462048 ], [ 77.335281, 27.529842 ], [ 77.350000, 27.593621 ], [ 77.311197, 27.611908 ], [ 77.336619, 27.696204 ], [ 77.275962, 27.806369 ], [ 77.537324, 27.957567 ], [ 77.469085, 28.086018 ], [ 77.542230, 28.181465 ], [ 77.489155, 28.211793 ], [ 77.519038, 28.201981 ], [ 77.541338, 28.247920 ], [ 77.467301, 28.269775 ], [ 77.495845, 28.307240 ], [ 77.463732, 28.338015 ], [ 77.494061, 28.358085 ], [ 77.474437, 28.413390 ], [ 77.337957, 28.508837 ], [ 77.293802, 28.566818 ], [ 77.336173, 28.608743 ], [ 77.323685, 28.715786 ], [ 77.197018, 28.795176 ], [ 77.217534, 28.835317 ], [ 77.186759, 28.866984 ], [ 77.221102, 28.904003 ], [ 77.190327, 28.955740 ], [ 77.213966, 29.006140 ], [ 77.122088, 29.105600 ], [ 77.153754, 29.335296 ], [ 77.119858, 29.349568 ], [ 77.139482, 29.441893 ], [ 77.085069, 29.533771 ], [ 77.143496, 29.705932 ], [ 77.117182, 29.771049 ], [ 77.270609, 30.048468 ], [ 77.414225, 30.107342 ], [ 77.423591, 30.168445 ], [ 77.570329, 30.311169 ], [ 77.574789, 30.384315 ], [ 77.563193, 30.404385 ], [ 77.634109, 30.411076 ], [ 77.710823, 30.338822 ], [ 77.931598, 30.246943 ], [ 77.838382, 30.112248 ], [ 77.786645, 30.099760 ], [ 77.701903, 29.871848 ], [ 77.792443, 29.681847 ], [ 77.952115, 29.705486 ], [ 77.976646, 29.614053 ], [ 77.947209, 29.590415 ], [ 77.983782, 29.588185 ], [ 77.988242, 29.545813 ], [ 78.331671, 29.796026 ], [ 78.412399, 29.772387 ], [ 78.487775, 29.741166 ], [ 78.527470, 29.624311 ], [ 78.605076, 29.561870 ], [ 78.785710, 29.476236 ], [ 78.923082, 29.456165 ], [ 78.870006, 29.392385 ], [ 78.808903, 29.383019 ], [ 78.788832, 29.329498 ], [ 78.757612, 29.349568 ], [ 78.713902, 29.317456 ], [ 78.852612, 29.261258 ], [ 78.900335, 29.150647 ], [ 78.962331, 29.166704 ], [ 79.017190, 29.117642 ], [ 79.027002, 29.172056 ], [ 79.130923, 29.129239 ], [ 79.158130, 29.023088 ], [ 79.204069, 29.028886 ], [ 79.299069, 28.953064 ], [ 79.359727, 28.970459 ], [ 79.411018, 28.855834 ], [ 79.536347, 28.892407 ], [ 79.551066, 28.846022 ], [ 79.666137, 28.848252 ], [ 79.774518, 28.891961 ], [ 79.808414, 28.862970 ], [ 79.783438, 28.805434 ], [ 79.853908, 28.844237 ], [ 79.875762, 28.818369 ], [ 79.840527, 28.808557 ], [ 79.901185, 28.802312 ], [ 79.922593, 28.732735 ], [ 79.967640, 28.715786 ], [ 80.033650, 28.761279 ], [ 80.058627, 28.835317 ], [ 80.250412, 28.759495 ], [ 80.357454, 28.641302 ], [ 80.426586, 28.643086 ], [ 80.503300, 28.565926 ], [ 80.497056, 28.671631 ], [ 80.554146, 28.695270 ], [ 80.775367, 28.530245 ], [ 80.897128, 28.500809 ], [ 80.894006, 28.464682 ], [ 81.203538, 28.363437 ], [ 81.309243, 28.207333 ], [ 81.308351, 28.140877 ], [ 81.417624, 28.176558 ], [ 81.470699, 28.086464 ], [ 81.879691, 27.862566 ], [ 81.918940, 27.861228 ], [ 81.966218, 27.930360 ], [ 82.062556, 27.929022 ], [ 82.447910, 27.680594 ], [ 82.703029, 27.732777 ], [ 82.731127, 27.504865 ], [ 83.173571, 27.456696 ], [ 83.301576, 27.332705 ], [ 83.380966, 27.376414 ], [ 83.393008, 27.481673 ], [ 83.603080, 27.472306 ], [ 83.856414, 27.348315 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"Uttaranchal", "total":"5284", "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.058627, 28.835317 ], [ 80.033650, 28.761279 ], [ 79.967640, 28.715786 ], [ 79.922593, 28.732735 ], [ 79.901185, 28.802312 ], [ 79.840527, 28.808557 ], [ 79.875762, 28.818369 ], [ 79.853908, 28.844237 ], [ 79.783438, 28.805434 ], [ 79.808414, 28.862970 ], [ 79.774518, 28.891961 ], [ 79.666137, 28.848252 ], [ 79.551066, 28.846022 ], [ 79.536347, 28.892407 ], [ 79.411018, 28.855834 ], [ 79.359727, 28.970459 ], [ 79.299069, 28.953064 ], [ 79.204069, 29.028886 ], [ 79.158130, 29.023088 ], [ 79.130923, 29.129239 ], [ 79.027002, 29.172056 ], [ 79.017190, 29.117642 ], [ 78.962331, 29.166704 ], [ 78.900335, 29.150647 ], [ 78.852612, 29.261258 ], [ 78.713902, 29.317456 ], [ 78.757612, 29.349568 ], [ 78.788832, 29.329498 ], [ 78.808903, 29.383019 ], [ 78.870006, 29.392385 ], [ 78.923082, 29.456165 ], [ 78.785710, 29.476236 ], [ 78.605076, 29.561870 ], [ 78.527470, 29.624311 ], [ 78.487775, 29.741166 ], [ 78.412399, 29.772387 ], [ 78.331671, 29.796026 ], [ 77.988242, 29.545813 ], [ 77.983782, 29.588185 ], [ 77.947209, 29.590415 ], [ 77.976646, 29.614053 ], [ 77.952115, 29.705486 ], [ 77.792443, 29.681847 ], [ 77.701903, 29.871848 ], [ 77.786645, 30.099760 ], [ 77.838382, 30.112248 ], [ 77.931598, 30.246943 ], [ 77.710823, 30.338822 ], [ 77.634109, 30.411076 ], [ 77.563193, 30.404385 ], [ 77.810729, 30.533283 ], [ 77.729555, 30.598400 ], [ 77.782185, 30.619363 ], [ 77.779062, 30.663964 ], [ 77.688076, 30.768777 ], [ 77.744720, 30.881172 ], [ 77.789321, 30.858425 ], [ 77.795565, 30.923989 ], [ 77.745612, 30.922205 ], [ 77.734461, 30.959670 ], [ 77.816973, 30.953425 ], [ 77.800471, 31.062252 ], [ 77.887443, 31.154577 ], [ 78.014111, 31.155023 ], [ 78.356201, 31.291056 ], [ 78.469934, 31.203638 ], [ 78.595263, 31.236197 ], [ 78.647893, 31.194718 ], [ 78.795076, 31.204976 ], [ 78.871344, 31.107299 ], [ 78.996674, 31.115328 ], [ 78.907025, 31.259389 ], [ 78.925312, 31.331643 ], [ 78.989537, 31.361972 ], [ 79.047965, 31.470353 ], [ 79.128693, 31.438686 ], [ 79.248224, 31.296408 ], [ 79.233952, 31.254037 ], [ 79.299515, 31.149224 ], [ 79.382028, 31.118450 ], [ 79.413248, 31.037722 ], [ 79.501113, 31.039060 ], [ 79.587193, 30.943167 ], [ 79.741959, 31.006947 ], [ 79.854800, 30.978848 ], [ 79.915011, 30.892322 ], [ 80.043908, 30.844153 ], [ 80.103228, 30.779481 ], [ 80.157195, 30.812932 ], [ 80.223651, 30.764317 ], [ 80.180388, 30.669762 ], [ 80.215623, 30.579222 ], [ 80.526493, 30.454339 ], [ 80.584028, 30.487344 ], [ 80.811494, 30.320089 ], [ 81.019781, 30.252742 ], [ 81.028702, 30.204126 ], [ 80.922551, 30.182272 ], [ 80.888654, 30.221521 ], [ 80.860555, 30.136333 ], [ 80.730320, 30.007881 ], [ 80.586704, 29.959266 ], [ 80.482784, 29.801824 ], [ 80.424802, 29.811190 ], [ 80.360577, 29.754993 ], [ 80.400718, 29.603795 ], [ 80.290107, 29.456165 ], [ 80.233463, 29.446799 ], [ 80.303933, 29.328606 ], [ 80.289661, 29.204169 ], [ 80.241492, 29.225131 ], [ 80.261116, 29.150201 ], [ 80.136679, 29.105600 ], [ 80.128651, 29.012384 ], [ 80.054613, 28.924966 ], [ 80.058627, 28.835317 ] ] ] } }
,
{ "type": "Feature", "properties": {}, "id":"West Bengal", "total":"7365", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.497609, 21.599674 ], [ 88.531506, 21.542585 ], [ 88.481552, 21.554627 ], [ 88.497609, 21.599674 ] ] ], [ [ [ 88.834793, 21.607256 ], [ 88.903479, 21.555965 ], [ 88.842822, 21.553735 ], [ 88.834793, 21.607256 ] ] ], [ [ [ 88.728643, 21.637139 ], [ 88.735779, 21.571575 ], [ 88.707234, 21.594322 ], [ 88.728643, 21.637139 ] ] ], [ [ [ 88.537304, 21.638477 ], [ 88.587703, 21.601904 ], [ 88.549792, 21.563547 ], [ 88.556482, 21.604580 ], [ 88.510097, 21.602350 ], [ 88.537304, 21.638477 ] ] ], [ [ [ 88.771906, 21.653195 ], [ 88.798220, 21.591646 ], [ 88.751835, 21.576481 ], [ 88.729535, 21.639815 ], [ 88.771906, 21.653195 ] ] ], [ [ [ 88.965921, 21.641599 ], [ 88.992681, 21.616623 ], [ 88.956109, 21.617515 ], [ 88.955217, 21.677280 ], [ 88.965921, 21.641599 ] ] ], [ [ [ 88.576999, 21.691552 ], [ 88.602421, 21.620637 ], [ 88.553806, 21.639369 ], [ 88.576999, 21.691552 ] ] ], [ [ [ 88.984653, 21.705825 ], [ 89.028808, 21.605026 ], [ 88.964137, 21.645613 ], [ 88.950756, 21.700919 ], [ 88.984653, 21.705825 ] ] ], [ [ [ 88.806695, 21.706717 ], [ 88.796882, 21.655426 ], [ 88.730427, 21.684862 ], [ 88.806695, 21.706717 ] ] ], [ [ [ 88.311176, 21.706271 ], [ 88.358007, 21.647397 ], [ 88.315190, 21.608148 ], [ 88.311176, 21.706271 ] ] ], [ [ [ 88.453900, 21.709393 ], [ 88.442303, 21.614838 ], [ 88.418665, 21.682632 ], [ 88.453900, 21.709393 ] ] ], [ [ [ 88.696976, 21.712961 ], [ 88.751389, 21.648735 ], [ 88.722845, 21.638477 ], [ 88.696976, 21.712961 ] ] ], [ [ [ 88.204579, 21.720989 ], [ 88.212161, 21.601458 ], [ 88.181387, 21.686200 ], [ 88.204579, 21.720989 ] ] ], [ [ [ 89.059137, 21.721881 ], [ 89.094818, 21.643829 ], [ 89.051555, 21.617515 ], [ 89.009630, 21.704933 ], [ 89.059137, 21.721881 ] ] ], [ [ [ 88.977963, 21.726787 ], [ 89.020334, 21.713407 ], [ 89.007846, 21.652303 ], [ 88.977963, 21.726787 ] ] ], [ [ [ 88.545778, 21.736154 ], [ 88.590825, 21.690660 ], [ 88.543102, 21.724111 ], [ 88.574323, 21.694228 ], [ 88.551130, 21.636693 ], [ 88.517233, 21.710731 ], [ 88.545778, 21.736154 ] ] ], [ [ [ 88.882963, 21.745074 ], [ 88.940498, 21.695121 ], [ 88.920874, 21.632233 ], [ 88.873150, 21.694228 ], [ 88.882963, 21.745074 ] ] ], [ [ [ 88.412421, 21.731247 ], [ 88.432045, 21.627327 ], [ 88.398594, 21.595660 ], [ 88.403946, 21.715191 ], [ 88.368711, 21.727233 ], [ 88.395026, 21.754886 ], [ 88.412421, 21.731247 ] ] ], [ [ [ 88.221082, 21.762022 ], [ 88.271927, 21.754440 ], [ 88.310284, 21.676388 ], [ 88.291552, 21.563101 ], [ 88.216176, 21.616176 ], [ 88.221082, 21.762022 ] ] ], [ [ [ 88.927118, 21.762022 ], [ 88.987329, 21.744628 ], [ 88.983315, 21.705825 ], [ 88.922658, 21.719651 ], [ 88.927118, 21.762022 ] ] ], [ [ [ 88.365589, 21.764252 ], [ 88.398148, 21.713407 ], [ 88.360683, 21.686200 ], [ 88.337491, 21.710731 ], [ 88.365589, 21.764252 ] ] ], [ [ [ 89.005170, 21.765144 ], [ 89.059137, 21.725895 ], [ 89.017212, 21.717867 ], [ 89.005170, 21.765144 ] ] ], [ [ [ 88.831671, 21.766036 ], [ 88.865122, 21.758454 ], [ 88.845944, 21.620191 ], [ 88.808925, 21.638923 ], [ 88.815169, 21.709839 ], [ 88.762540, 21.701365 ], [ 88.831671, 21.766036 ] ] ], [ [ [ 88.582351, 21.777633 ], [ 88.616248, 21.727679 ], [ 88.579675, 21.725895 ], [ 88.582351, 21.777633 ] ] ], [ [ [ 88.999818, 21.785661 ], [ 89.004278, 21.716083 ], [ 88.951202, 21.757562 ], [ 88.999818, 21.785661 ] ] ], [ [ [ 88.458806, 21.788783 ], [ 88.432937, 21.704487 ], [ 88.423571, 21.767820 ], [ 88.458806, 21.788783 ] ] ], [ [ [ 88.716154, 21.807515 ], [ 88.776812, 21.720989 ], [ 88.735779, 21.719205 ], [ 88.748267, 21.658548 ], [ 88.695192, 21.743736 ], [ 88.716154, 21.807515 ] ] ], [ [ [ 88.544440, 21.810191 ], [ 88.572539, 21.735708 ], [ 88.519463, 21.719205 ], [ 88.535074, 21.791905 ], [ 88.504299, 21.770942 ], [ 88.544440, 21.810191 ] ] ], [ [ [ 88.421787, 21.811083 ], [ 88.422679, 21.719651 ], [ 88.382538, 21.778971 ], [ 88.421787, 21.811083 ] ] ], [ [ [ 88.787516, 21.745074 ], [ 88.756741, 21.733478 ], [ 88.749605, 21.769604 ], [ 88.782164, 21.825356 ], [ 88.787516, 21.745074 ] ] ], [ [ [ 88.915967, 21.825802 ], [ 88.897681, 21.751764 ], [ 88.882963, 21.807961 ], [ 88.915967, 21.825802 ] ] ], [ [ [ 88.484674, 21.834722 ], [ 88.496271, 21.807961 ], [ 88.453008, 21.805731 ], [ 88.484674, 21.834722 ] ] ], [ [ [ 88.941390, 21.847210 ], [ 88.976625, 21.820450 ], [ 88.914183, 21.755778 ], [ 88.941390, 21.847210 ] ] ], [ [ [ 88.592163, 21.849886 ], [ 88.614018, 21.798149 ], [ 88.576107, 21.816882 ], [ 88.592163, 21.849886 ] ] ], [ [ [ 88.331247, 21.860591 ], [ 88.379862, 21.787445 ], [ 88.316974, 21.708947 ], [ 88.310730, 21.795473 ], [ 88.259885, 21.804393 ], [ 88.331247, 21.860591 ] ] ], [ [ [ 88.856202, 21.865497 ], [ 88.913291, 21.727679 ], [ 88.834793, 21.781647 ], [ 88.856202, 21.865497 ] ] ], [ [ [ 88.136786, 21.874863 ], [ 88.170682, 21.742398 ], [ 88.154626, 21.650073 ], [ 88.109133, 21.625989 ], [ 88.036879, 21.675050 ], [ 88.136786, 21.874863 ] ] ], [ [ [ 88.789300, 21.878431 ], [ 88.829887, 21.862375 ], [ 88.795098, 21.791459 ], [ 88.765662, 21.828924 ], [ 88.789300, 21.878431 ] ] ], [ [ [ 88.978855, 21.893596 ], [ 89.030146, 21.834722 ], [ 88.970381, 21.774957 ], [ 88.942728, 21.786553 ], [ 88.976625, 21.805285 ], [ 88.950310, 21.838290 ], [ 88.978855, 21.893596 ] ] ], [ [ [ 88.621600, 21.897610 ], [ 88.653713, 21.867727 ], [ 88.638994, 21.784769 ], [ 88.594839, 21.854347 ], [ 88.621600, 21.897610 ] ] ], [ [ [ 88.816953, 21.901178 ], [ 88.829441, 21.864605 ], [ 88.800451, 21.870403 ], [ 88.816953, 21.901178 ] ] ], [ [ [ 88.562280, 21.897610 ], [ 88.551130, 21.817328 ], [ 88.530614, 21.848994 ], [ 88.562280, 21.897610 ] ] ], [ [ [ 88.446317, 21.904746 ], [ 88.490027, 21.856577 ], [ 88.461482, 21.789675 ], [ 88.401716, 21.798149 ], [ 88.392350, 21.832492 ], [ 88.446317, 21.904746 ] ] ], [ [ [ 88.717938, 21.907422 ], [ 88.780380, 21.859253 ], [ 88.757633, 21.781201 ], [ 88.696530, 21.837844 ], [ 88.717938, 21.907422 ] ] ], [ [ [ 88.639886, 21.921694 ], [ 88.667539, 21.911882 ], [ 88.634534, 21.870403 ], [ 88.639886, 21.921694 ] ] ], [ [ [ 88.836577, 21.917680 ], [ 88.915075, 21.928384 ], [ 88.976625, 21.867281 ], [ 88.943174, 21.884675 ], [ 88.947188, 21.840520 ], [ 88.907047, 21.878877 ], [ 88.939160, 21.849886 ], [ 88.887869, 21.812422 ], [ 88.836577, 21.917680 ] ] ], [ [ [ 88.723737, 21.931953 ], [ 88.799559, 21.919910 ], [ 88.808033, 21.884229 ], [ 88.775920, 21.869511 ], [ 88.723737, 21.931953 ] ] ], [ [ [ 88.745591, 21.979676 ], [ 88.799559, 21.925708 ], [ 88.733549, 21.924816 ], [ 88.745591, 21.979676 ] ] ], [ [ [ 88.659957, 22.019371 ], [ 88.715708, 22.000638 ], [ 88.678243, 21.942657 ], [ 88.628736, 21.957821 ], [ 88.659957, 22.019371 ] ] ], [ [ [ 88.141246, 22.026507 ], [ 88.047137, 21.911882 ], [ 88.073452, 21.995286 ], [ 88.141246, 22.026507 ] ] ], [ [ [ 88.812939, 22.019371 ], [ 88.902587, 22.011789 ], [ 88.907493, 21.929723 ], [ 88.752281, 21.956037 ], [ 88.753173, 21.985474 ], [ 88.800451, 21.970310 ], [ 88.761648, 22.014911 ], [ 88.812939, 22.019371 ] ] ], [ [ [ 88.763878, 22.051484 ], [ 88.791084, 22.029183 ], [ 88.761648, 22.021601 ], [ 88.763878, 22.051484 ] ] ], [ [ [ 88.902587, 22.045239 ], [ 88.891883, 22.014911 ], [ 88.852188, 22.041225 ], [ 88.902587, 22.045239 ] ] ], [ [ [ 89.016320, 22.051038 ], [ 89.073410, 22.004206 ], [ 89.059583, 21.931953 ], [ 88.999372, 21.949347 ], [ 89.032376, 22.001976 ], [ 88.974395, 21.993502 ], [ 88.985099, 22.055052 ], [ 89.016320, 22.051038 ] ] ], [ [ [ 88.812047, 22.060850 ], [ 88.832117, 22.026953 ], [ 88.780380, 22.037657 ], [ 88.812047, 22.060850 ] ] ], [ [ [ 88.870474, 22.079136 ], [ 88.890099, 22.047916 ], [ 88.836131, 22.025615 ], [ 88.820075, 22.063972 ], [ 88.870474, 22.079136 ] ] ], [ [ [ 88.803573, 22.085381 ], [ 88.836131, 22.066202 ], [ 88.748267, 22.057282 ], [ 88.783948, 22.106789 ], [ 88.803573, 22.085381 ] ] ], [ [ [ 88.817845, 22.122845 ], [ 88.867352, 22.082704 ], [ 88.805803, 22.084934 ], [ 88.817845, 22.122845 ] ] ], [ [ [ 88.865122, 22.167001 ], [ 88.915967, 22.090287 ], [ 88.830779, 22.126860 ], [ 88.865122, 22.167001 ] ] ], [ [ [ 88.949864, 22.189301 ], [ 88.985099, 22.127306 ], [ 88.923996, 22.024277 ], [ 88.946296, 22.000192 ], [ 88.934700, 22.055052 ], [ 88.963691, 22.056836 ], [ 89.012752, 21.902070 ], [ 88.976179, 21.946225 ], [ 88.936038, 21.936413 ], [ 88.912845, 21.994394 ], [ 88.901249, 22.065310 ], [ 88.940498, 22.128198 ], [ 88.894113, 22.169677 ], [ 88.949864, 22.189301 ] ] ], [ [ [ 89.002048, 22.199113 ], [ 89.050663, 22.130428 ], [ 89.014536, 22.113925 ], [ 89.038175, 22.053268 ], [ 89.023456, 22.078690 ], [ 88.977963, 22.039887 ], [ 88.972611, 22.193315 ], [ 89.002048, 22.199113 ] ] ], [ [ [ 88.695192, 22.208480 ], [ 88.789300, 22.169231 ], [ 88.683150, 22.080920 ], [ 88.735779, 22.031413 ], [ 88.721061, 22.005098 ], [ 88.663971, 22.023831 ], [ 88.634088, 22.106343 ], [ 88.695192, 22.208480 ] ] ], [ [ [ 88.844606, 22.189301 ], [ 88.855756, 22.144254 ], [ 88.704558, 22.064864 ], [ 88.749159, 22.134888 ], [ 88.838362, 22.167001 ], [ 88.828103, 22.208034 ], [ 88.844606, 22.189301 ] ] ], [ [ [ 88.932470, 22.224982 ], [ 88.961461, 22.197329 ], [ 88.931578, 22.176813 ], [ 88.932470, 22.224982 ] ] ], [ [ [ 88.812493, 22.283410 ], [ 88.833901, 22.167001 ], [ 88.747375, 22.198667 ], [ 88.812493, 22.283410 ] ] ], [ [ [ 88.849958, 22.362800 ], [ 88.936930, 22.299020 ], [ 88.953878, 22.225428 ], [ 88.913737, 22.220076 ], [ 88.843268, 22.289654 ], [ 88.887423, 22.265123 ], [ 88.918644, 22.165217 ], [ 88.841038, 22.214278 ], [ 88.875826, 22.252635 ], [ 88.839254, 22.215616 ], [ 88.881179, 22.200005 ], [ 88.800451, 22.225874 ], [ 88.829441, 22.253527 ], [ 88.804019, 22.329795 ], [ 88.849958, 22.362800 ] ] ], [ [ [ 88.984653, 22.382424 ], [ 88.983761, 22.325335 ], [ 89.023456, 22.297682 ], [ 88.994019, 22.286086 ], [ 89.068503, 22.147376 ], [ 89.096156, 22.154958 ], [ 89.062259, 22.128644 ], [ 88.947188, 22.255757 ], [ 88.967259, 22.407847 ], [ 88.984653, 22.382424 ] ] ], [ [ [ 88.897681, 22.548786 ], [ 88.898127, 22.366814 ], [ 88.843714, 22.506861 ], [ 88.897681, 22.548786 ] ] ], [ [ [ 88.919982, 22.565289 ], [ 88.960123, 22.548786 ], [ 88.998480, 22.430147 ], [ 88.957893, 22.364584 ], [ 88.939606, 22.418997 ], [ 88.941836, 22.309724 ], [ 88.896343, 22.379748 ], [ 88.929794, 22.390452 ], [ 88.894559, 22.466274 ], [ 88.919982, 22.565289 ] ] ], [ [ [ 88.083264, 27.165004 ], [ 88.152396, 27.111929 ], [ 88.304486, 27.128432 ], [ 88.432045, 27.081600 ], [ 88.559158, 27.188643 ], [ 88.751835, 27.148056 ], [ 88.870028, 27.108807 ], [ 88.874934, 26.951365 ], [ 88.919090, 26.996412 ], [ 88.962353, 26.924158 ], [ 89.024794, 26.940215 ], [ 89.130945, 26.808195 ], [ 89.377143, 26.866177 ], [ 89.459209, 26.806411 ], [ 89.644750, 26.780989 ], [ 89.632262, 26.719439 ], [ 89.756699, 26.736388 ], [ 89.774539, 26.699369 ], [ 89.857052, 26.703829 ], [ 89.870432, 26.459860 ], [ 89.827169, 26.396527 ], [ 89.857498, 26.384485 ], [ 89.782122, 26.353264 ], [ 89.758483, 26.289484 ], [ 89.717896, 26.305541 ], [ 89.718788, 26.165939 ], [ 89.684445, 26.160587 ], [ 89.682215, 26.235517 ], [ 89.637614, 26.227489 ], [ 89.660807, 26.175751 ], [ 89.594797, 26.157019 ], [ 89.633154, 26.119108 ], [ 89.596581, 26.100821 ], [ 89.632708, 26.107065 ], [ 89.652778, 26.063802 ], [ 89.608177, 26.063802 ], [ 89.580525, 25.968356 ], [ 89.542168, 26.005375 ], [ 89.438693, 26.008497 ], [ 89.429327, 26.045516 ], [ 89.352613, 26.010727 ], [ 89.229960, 26.122676 ], [ 89.162612, 26.138732 ], [ 89.108644, 26.282348 ], [ 89.144325, 26.320705 ], [ 89.091250, 26.322043 ], [ 89.093480, 26.399203 ], [ 88.964137, 26.462983 ], [ 88.911061, 26.412137 ], [ 88.919982, 26.369766 ], [ 88.963691, 26.365752 ], [ 88.963691, 26.332747 ], [ 88.991343, 26.352372 ], [ 88.991789, 26.304648 ], [ 89.065381, 26.293944 ], [ 89.069841, 26.255141 ], [ 88.970381, 26.241761 ], [ 88.888315, 26.291714 ], [ 88.885193, 26.238639 ], [ 88.846836, 26.234179 ], [ 88.749159, 26.353264 ], [ 88.704558, 26.334531 ], [ 88.702774, 26.388499 ], [ 88.620708, 26.471011 ], [ 88.556928, 26.456738 ], [ 88.560942, 26.488851 ], [ 88.435613, 26.546833 ], [ 88.415543, 26.634251 ], [ 88.377632, 26.593664 ], [ 88.334369, 26.478593 ], [ 88.355777, 26.445588 ], [ 88.367819, 26.487067 ], [ 88.483336, 26.461198 ], [ 88.524815, 26.359954 ], [ 88.457914, 26.373780 ], [ 88.351763, 26.281456 ], [ 88.352655, 26.219906 ], [ 88.180495, 26.145868 ], [ 88.187185, 26.024107 ], [ 88.086832, 25.912604 ], [ 88.117161, 25.796641 ], [ 88.151504, 25.773895 ], [ 88.270143, 25.808238 ], [ 88.456576, 25.660608 ], [ 88.446317, 25.596828 ], [ 88.499839, 25.581218 ], [ 88.543102, 25.506734 ], [ 88.698760, 25.470161 ], [ 88.810263, 25.519668 ], [ 88.843714, 25.362226 ], [ 89.011414, 25.292203 ], [ 88.956555, 25.259198 ], [ 88.923104, 25.167319 ], [ 88.845052, 25.211028 ], [ 88.803573, 25.172226 ], [ 88.709018, 25.209690 ], [ 88.565849, 25.177578 ], [ 88.445871, 25.196310 ], [ 88.453900, 25.035746 ], [ 88.401716, 24.945652 ], [ 88.341951, 24.938962 ], [ 88.325002, 24.865816 ], [ 88.263899, 24.875628 ], [ 88.227772, 24.959478 ], [ 88.139908, 24.936285 ], [ 88.175589, 24.860910 ], [ 88.010564, 24.666449 ], [ 88.147936, 24.505438 ], [ 88.333031, 24.383231 ], [ 88.448548, 24.376987 ], [ 88.555144, 24.296705 ], [ 88.586365, 24.326142 ], [ 88.734887, 24.275297 ], [ 88.694746, 24.113394 ], [ 88.737563, 24.059427 ], [ 88.727305, 23.994309 ], [ 88.771014, 23.984943 ], [ 88.734887, 23.978253 ], [ 88.731319, 23.913135 ], [ 88.576107, 23.859614 ], [ 88.601529, 23.816797 ], [ 88.559158, 23.784238 ], [ 88.561834, 23.641960 ], [ 88.592609, 23.636608 ], [ 88.581013, 23.600927 ], [ 88.644793, 23.608063 ], [ 88.742915, 23.480950 ], [ 88.798666, 23.494777 ], [ 88.746037, 23.309682 ], [ 88.697422, 23.296301 ], [ 88.720168, 23.252592 ], [ 88.796882, 23.215573 ], [ 88.817845, 23.250808 ], [ 88.994912, 23.212451 ], [ 88.869582, 23.095150 ], [ 88.873596, 23.004164 ], [ 88.846836, 23.002380 ], [ 88.909277, 22.877497 ], [ 88.967705, 22.842708 ], [ 88.919090, 22.761534 ], [ 88.947188, 22.659843 ], [ 88.809817, 22.710689 ], [ 88.808925, 22.751276 ], [ 88.847282, 22.751722 ], [ 88.805803, 22.732989 ], [ 88.957893, 22.610782 ], [ 88.842822, 22.507753 ], [ 88.852634, 22.432823 ], [ 88.766554, 22.560829 ], [ 88.768784, 22.513551 ], [ 88.690732, 22.524256 ], [ 88.677351, 22.593388 ], [ 88.689394, 22.524256 ], [ 88.778150, 22.506415 ], [ 88.876272, 22.355217 ], [ 88.818737, 22.363692 ], [ 88.733549, 22.195545 ], [ 88.634980, 22.216508 ], [ 88.684934, 22.294114 ], [ 88.666201, 22.339161 ], [ 88.679135, 22.294114 ], [ 88.630966, 22.221860 ], [ 88.672445, 22.201343 ], [ 88.619370, 22.109019 ], [ 88.572539, 22.189301 ], [ 88.636764, 22.045239 ], [ 88.603313, 22.023385 ], [ 88.596623, 22.067094 ], [ 88.606882, 21.913220 ], [ 88.577891, 21.889581 ], [ 88.546224, 21.973432 ], [ 88.570755, 21.903408 ], [ 88.527938, 21.853009 ], [ 88.494487, 21.878877 ], [ 88.525708, 21.929277 ], [ 88.493595, 21.967187 ], [ 88.543102, 21.981906 ], [ 88.554698, 22.035873 ], [ 88.541318, 21.981906 ], [ 88.491365, 21.966741 ], [ 88.520801, 21.915450 ], [ 88.473524, 21.895380 ], [ 88.461036, 22.011789 ], [ 88.458360, 21.919018 ], [ 88.408853, 21.885121 ], [ 88.375848, 21.969864 ], [ 88.406176, 21.919910 ], [ 88.390566, 21.799041 ], [ 88.354885, 21.822680 ], [ 88.356669, 21.924370 ], [ 88.353101, 21.857023 ], [ 88.262115, 21.858807 ], [ 88.266575, 21.883783 ], [ 88.313852, 21.846764 ], [ 88.258993, 21.807515 ], [ 88.281739, 21.761130 ], [ 88.251857, 21.802163 ], [ 88.271927, 21.730355 ], [ 88.163546, 21.879323 ], [ 88.153734, 21.959159 ], [ 88.223758, 22.075122 ], [ 88.203241, 22.167001 ], [ 88.069884, 22.212048 ], [ 88.105119, 22.304818 ], [ 88.049367, 22.220076 ], [ 87.984696, 22.245499 ], [ 87.946339, 22.406063 ], [ 87.883897, 22.441744 ], [ 87.942325, 22.366368 ], [ 87.940095, 22.260217 ], [ 88.008780, 22.201343 ], [ 88.135448, 22.184841 ], [ 88.188969, 22.099207 ], [ 88.062302, 22.013127 ], [ 87.963287, 22.103667 ], [ 88.052935, 22.010451 ], [ 87.929390, 21.800379 ], [ 87.789789, 21.695121 ], [ 87.482041, 21.608594 ], [ 87.443684, 21.760684 ], [ 87.262603, 21.813760 ], [ 87.234950, 21.954253 ], [ 87.167603, 21.973432 ], [ 87.158237, 21.930615 ], [ 87.093565, 21.907868 ], [ 87.094457, 21.860145 ], [ 87.030231, 21.865497 ], [ 86.998118, 21.907422 ], [ 87.017743, 22.041225 ], [ 86.832202, 22.095193 ], [ 86.790277, 22.154066 ], [ 86.715347, 22.143362 ], [ 86.722929, 22.215170 ], [ 86.800089, 22.213832 ], [ 86.790277, 22.262893 ], [ 86.885724, 22.252189 ], [ 86.886170, 22.294114 ], [ 86.829080, 22.324443 ], [ 86.843798, 22.396250 ], [ 86.762178, 22.425241 ], [ 86.745230, 22.475640 ], [ 86.798751, 22.498833 ], [ 86.759948, 22.572425 ], [ 86.651568, 22.575993 ], [ 86.617671, 22.673224 ], [ 86.539173, 22.720501 ], [ 86.506614, 22.701322 ], [ 86.416074, 22.776698 ], [ 86.462905, 22.896675 ], [ 86.433022, 22.923436 ], [ 86.518210, 22.944398 ], [ 86.540065, 22.987216 ], [ 86.212692, 22.991676 ], [ 86.036964, 23.143766 ], [ 85.915203, 23.129493 ], [ 85.831353, 23.195057 ], [ 85.826446, 23.263297 ], [ 85.895578, 23.370785 ], [ 85.866141, 23.470246 ], [ 85.943747, 23.454636 ], [ 86.047222, 23.493439 ], [ 86.010649, 23.551866 ], [ 86.046776, 23.583979 ], [ 86.144899, 23.567922 ], [ 86.145345, 23.472922 ], [ 86.238561, 23.469800 ], [ 86.243021, 23.419401 ], [ 86.300111, 23.419847 ], [ 86.371918, 23.482734 ], [ 86.358092, 23.542946 ], [ 86.439712, 23.629472 ], [ 86.792061, 23.687454 ], [ 86.819714, 23.761045 ], [ 86.792953, 23.831515 ], [ 86.871005, 23.844004 ], [ 86.882155, 23.814567 ], [ 86.895090, 23.880130 ], [ 87.124340, 23.794942 ], [ 87.166265, 23.819473 ], [ 87.131030, 23.866750 ], [ 87.242533, 23.826163 ], [ 87.248331, 23.906891 ], [ 87.270631, 23.872994 ], [ 87.294716, 23.898417 ], [ 87.238073, 24.041141 ], [ 87.457956, 23.981375 ], [ 87.433872, 24.008136 ], [ 87.510586, 24.039803 ], [ 87.493637, 24.115178 ], [ 87.576149, 24.085296 ], [ 87.607816, 24.129005 ], [ 87.569459, 24.155765 ], [ 87.689436, 24.149967 ], [ 87.635915, 24.242738 ], [ 87.756338, 24.303395 ], [ 87.809859, 24.406424 ], [ 87.784883, 24.414452 ], [ 87.822794, 24.494288 ], [ 87.795141, 24.491166 ], [ 87.806291, 24.545133 ], [ 87.769272, 24.581706 ], [ 87.848216, 24.550932 ], [ 87.909766, 24.593749 ], [ 87.872747, 24.610697 ], [ 87.913334, 24.658420 ], [ 87.900846, 24.721754 ], [ 87.817887, 24.765909 ], [ 87.854460, 24.764125 ], [ 87.888803, 24.852881 ], [ 87.973545, 24.896590 ], [ 87.876761, 25.028164 ], [ 87.776408, 25.091051 ], [ 87.787559, 25.220395 ], [ 87.836620, 25.199432 ], [ 87.856690, 25.277930 ], [ 87.783991, 25.332344 ], [ 87.781314, 25.444738 ], [ 87.863381, 25.465255 ], [ 87.926268, 25.536171 ], [ 88.027513, 25.486218 ], [ 88.073006, 25.504058 ], [ 88.020823, 25.587016 ], [ 88.048475, 25.690491 ], [ 87.898615, 25.769881 ], [ 87.911104, 25.851947 ], [ 87.822794, 25.871571 ], [ 87.803615, 25.912158 ], [ 87.841972, 26.044624 ], [ 87.912888, 26.091009 ], [ 87.968193, 26.081197 ], [ 87.964179, 26.152113 ], [ 88.069884, 26.175751 ], [ 88.291998, 26.353710 ], [ 88.237584, 26.375564 ], [ 88.267913, 26.421949 ], [ 88.179157, 26.490635 ], [ 88.231340, 26.552185 ], [ 88.145260, 26.511152 ], [ 88.105565, 26.539250 ], [ 88.179603, 26.718547 ], [ 88.169790, 26.860379 ], [ 88.127419, 26.986154 ], [ 87.985142, 27.108807 ], [ 88.009226, 27.216742 ], [ 88.058288, 27.214066 ], [ 88.083264, 27.165004 ] ] ] ] } }

]
}
(function(){function b(a,b){return function(c){return c&&c.type in a?a[c.type](c):b}}function c(a){return"m0,"+a+"a"+a+","+a+" 0 1,1 0,"+ -2*a+"a"+a+","+a+" 0 1,1 0,"+2*a+"z"}function d(a,b){a.type in e&&e[a.type](a,b)}function f(a,b){d(a.geometry,b)}function g(a,b){for(var c=a.features,e=0,f=c.length;e<f;e++)d(c[e].geometry,b)}function h(a,b){for(var c=a.geometries,e=0,f=c.length;e<f;e++)d(c[e],b)}function i(a,b){for(var c=a.coordinates,d=0,e=c.length;d<e;d++)b.apply(null,c[d])}function j(a,b){for(var c=a.coordinates,d=0,e=c.length;d<e;d++)for(var f=c[d],g=0,h=f.length;g<h;g++)b.apply(null,f[g])}function k(a,b){for(var c=a.coordinates,d=0,e=c.length;d<e;d++)for(var f=c[d][0],g=0,h=f.length;g<h;g++)b.apply(null,f[g])}function l(a,b){b.apply(null,a.coordinates)}function m(a,b){for(var c=a.coordinates[0],d=0,e=c.length;d<e;d++)b.apply(null,c[d])}function n(a){return a.source}function o(a){return a.target}function p(b,c){function r(b){var c=Math.sin(p-(b*=p))/q,d=Math.sin(b)/q,g=c*h*e+d*n*k,j=c*h*f+d*n*l,m=c*i+d*o;return[Math.atan2(j,g)/a,Math.atan2(m,Math.sqrt(g*g+j*j))/a]}var d=b[0]*a,e=Math.cos(d),f=Math.sin(d),g=b[1]*a,h=Math.cos(g),i=Math.sin(g),j=c[0]*a,k=Math.cos(j),l=Math.sin(j),m=c[1]*a,n=Math.cos(m),o=Math.sin(m),p=r.d=Math.acos(Math.max(-1,Math.min(1,i*o+h*n*Math.cos(j-d)))),q=Math.sin(p);return r}d3.geo={};var a=Math.PI/180;d3.geo.azimuthal=function(){function j(c){var g=c[0]*a-f,j=c[1]*a,k=Math.cos(g),l=Math.sin(g),m=Math.cos(j),n=Math.sin(j),o=b!=="orthographic"?i*n+h*m*k:null,p,q=b==="stereographic"?1/(1+o):b==="gnomonic"?1/o:b==="equidistant"?(p=Math.acos(o),p?p/Math.sin(p):0):b==="equalarea"?Math.sqrt(2/(1+o)):1,r=q*m*l,s=q*(i*m*k-h*n);return[d*r+e[0],d*s+e[1]]}var b="orthographic",c,d=200,e=[480,250],f,g,h,i;return j.invert=function(c){var g=(c[0]-e[0])/d,j=(c[1]-e[1])/d,k=Math.sqrt(g*g+j*j),l=b==="stereographic"?2*Math.atan(k):b==="gnomonic"?Math.atan(k):b==="equidistant"?k:b==="equalarea"?2*Math.asin(.5*k):Math.asin(k),m=Math.sin(l),n=Math.cos(l);return[(f+Math.atan2(g*m,k*h*n+j*i*m))/a,Math.asin(n*i-(k?j*m*h/k:0))/a]},j.mode=function(a){return arguments.length?(b=a+"",j):b},j.origin=function(b){return arguments.length?(c=b,f=c[0]*a,g=c[1]*a,h=Math.cos(g),i=Math.sin(g),j):c},j.scale=function(a){return arguments.length?(d=+a,j):d},j.translate=function(a){return arguments.length?(e=[+a[0],+a[1]],j):e},j.origin([0,0])},d3.geo.albers=function(){function j(b){var c=g*(a*b[0]-f),j=Math.sqrt(h-2*g*Math.sin(a*b[1]))/g;return[d*j*Math.sin(c)+e[0],d*(j*Math.cos(c)-i)+e[1]]}function k(){var d=a*c[0],e=a*c[1],k=a*b[1],l=Math.sin(d),m=Math.cos(d);return f=a*b[0],g=.5*(l+Math.sin(e)),h=m*m+2*g*l,i=Math.sqrt(h-2*g*Math.sin(k))/g,j}var b=[-98,38],c=[29.5,45.5],d=1e3,e=[480,250],f,g,h,i;return j.invert=function(b){var c=(b[0]-e[0])/d,j=(b[1]-e[1])/d,k=i+j,l=Math.atan2(c,k),m=Math.sqrt(c*c+k*k);return[(f+l/g)/a,Math.asin((h-m*m*g*g)/(2*g))/a]},j.origin=function(a){return arguments.length?(b=[+a[0],+a[1]],k()):b},j.parallels=function(a){return arguments.length?(c=[+a[0],+a[1]],k()):c},j.scale=function(a){return arguments.length?(d=+a,j):d},j.translate=function(a){return arguments.length?(e=[+a[0],+a[1]],j):e},k()},d3.geo.albersUsa=function(){function e(e){var f=e[0],g=e[1];return(g>50?b:f<-140?c:g<21?d:a)(e)}var a=d3.geo.albers(),b=d3.geo.albers().origin([-160,60]).parallels([55,65]),c=d3.geo.albers().origin([-160,20]).parallels([8,18]),d=d3.geo.albers().origin([-60,10]).parallels([8,18]);return e.scale=function(f){return arguments.length?(a.scale(f),b.scale(f*.6),c.scale(f),d.scale(f*1.5),e.translate(a.translate())):a.scale()},e.translate=function(f){if(!arguments.length)return a.translate();var g=a.scale()/1e3,h=f[0],i=f[1];return a.translate(f),b.translate([h-400*g,i+170*g]),c.translate([h-190*g,i+200*g]),d.translate([h+580*g,i+430*g]),e},e.scale(a.scale())},d3.geo.bonne=function(){function h(h){var i=h[0]*a-d,j=h[1]*a-e;if(f){var k=g+f-j,l=i*Math.cos(j)/k;i=k*Math.sin(l),j=k*Math.cos(l)-g}else i*=Math.cos(j),j*=-1;return[b*i+c[0],b*j+c[1]]}var b=200,c=[480,250],d,e,f,g;return h.invert=function(e){var h=(e[0]-c[0])/b,i=(e[1]-c[1])/b;if(f){var j=g+i,k=Math.sqrt(h*h+j*j);i=g+f-k,h=d+k*Math.atan2(h,j)/Math.cos(i)}else i*=-1,h/=Math.cos(i);return[h/a,i/a]},h.parallel=function(b){return arguments.length?(g=1/Math.tan(f=b*a),h):f/a},h.origin=function(b){return arguments.length?(d=b[0]*a,e=b[1]*a,h):[d/a,e/a]},h.scale=function(a){return arguments.length?(b=+a,h):b},h.translate=function(a){return arguments.length?(c=[+a[0],+a[1]],h):c},h.origin([0,0]).parallel(45)},d3.geo.equirectangular=function(){function c(c){var d=c[0]/360,e=-c[1]/360;return[a*d+b[0],a*e+b[1]]}var a=500,b=[480,250];return c.invert=function(c){var d=(c[0]-b[0])/a,e=(c[1]-b[1])/a;return[360*d,-360*e]},c.scale=function(b){return arguments.length?(a=+b,c):a},c.translate=function(a){return arguments.length?(b=[+a[0],+a[1]],c):b},c},d3.geo.mercator=function(){function d(d){var e=d[0]/360,f=-(Math.log(Math.tan(Math.PI/4+d[1]*a/2))/a)/360;return[b*e+c[0],b*Math.max(-0.5,Math.min(.5,f))+c[1]]}var b=500,c=[480,250];return d.invert=function(d){var e=(d[0]-c[0])/b,f=(d[1]-c[1])/b;return[360*e,2*Math.atan(Math.exp(-360*f*a))/a-90]},d.scale=function(a){return arguments.length?(b=+a,d):b},d.translate=function(a){return arguments.length?(c=[+a[0],+a[1]],d):c},d},d3.geo.path=function(){function f(b,e){return typeof a=="function"&&(d=c(a.apply(this,arguments))),h(b)||null}function g(a){return e(a).join(",")}function j(a){var b=m(a[0]),c=0,d=a.length;while(++c<d)b-=m(a[c]);return b}function k(a){var b=d3.geom.polygon(a[0].map(e)),c=b.area(),d=b.centroid(c<0?(c*=-1,1):-1),f=d[0],g=d[1],h=c,i=0,j=a.length;while(++i<j)b=d3.geom.polygon(a[i].map(e)),c=b.area(),d=b.centroid(c<0?(c*=-1,1):-1),f-=d[0],g-=d[1],h-=c;return[f,g,6*h]}function m(a){return Math.abs(d3.geom.polygon(a.map(e)).area())}var a=4.5,d=c(a),e=d3.geo.albersUsa(),h=b({FeatureCollection:function(a){var b=[],c=a.features,d=-1,e=c.length;while(++d<e)b.push(h(c[d].geometry));return b.join("")},Feature:function(a){return h(a.geometry)},Point:function(a){return"M"+g(a.coordinates)+d},MultiPoint:function(a){var b=[],c=a.coordinates,e=-1,f=c.length;while(++e<f)b.push("M",g(c[e]),d);return b.join("")},LineString:function(a){var b=["M"],c=a.coordinates,d=-1,e=c.length;while(++d<e)b.push(g(c[d]),"L");return b.pop(),b.join("")},MultiLineString:function(a){var b=[],c=a.coordinates,d=-1,e=c.length,f,h,i;while(++d<e){f=c[d],h=-1,i=f.length,b.push("M");while(++h<i)b.push(g(f[h]),"L");b.pop()}return b.join("")},Polygon:function(a){var b=[],c=a.coordinates,d=-1,e=c.length,f,h,i;while(++d<e){f=c[d],h=-1;if((i=f.length-1)>0){b.push("M");while(++h<i)b.push(g(f[h]),"L");b[b.length-1]="Z"}}return b.join("")},MultiPolygon:function(a){var b=[],c=a.coordinates,d=-1,e=c.length,f,h,i,j,k,l;while(++d<e){f=c[d],h=-1,i=f.length;while(++h<i){j=f[h],k=-1;if((l=j.length-1)>0){b.push("M");while(++k<l)b.push(g(j[k]),"L");b[b.length-1]="Z"}}}return b.join("")},GeometryCollection:function(a){var b=[],c=a.geometries,d=-1,e=c.length;while(++d<e)b.push(h(c[d]));return b.join("")}}),i=f.area=b({FeatureCollection:function(a){var b=0,c=a.features,d=-1,e=c.length;while(++d<e)b+=i(c[d]);return b},Feature:function(a){return i(a.geometry)},Polygon:function(a){return j(a.coordinates)},MultiPolygon:function(a){var b=0,c=a.coordinates,d=-1,e=c.length;while(++d<e)b+=j(c[d]);return b},GeometryCollection:function(a){var b=0,c=a.geometries,d=-1,e=c.length;while(++d<e)b+=i(c[d]);return b}},0),l=f.centroid=b({Feature:function(a){return l(a.geometry)},Polygon:function(a){var b=k(a.coordinates);return[b[0]/b[2],b[1]/b[2]]},MultiPolygon:function(a){var b=0,c=a.coordinates,d,e=0,f=0,g=0,h=-1,i=c.length;while(++h<i)d=k(c[h]),e+=d[0],f+=d[1],g+=d[2];return[e/g,f/g]}});return f.projection=function(a){return e=a,f},f.pointRadius=function(b){return typeof b=="function"?a=b:(a=+b,d=c(a)),f},f},d3.geo.bounds=function(a){var b=Infinity,c=Infinity,e=-Infinity,f=-Infinity;return d(a,function(a,d){a<b&&(b=a),a>e&&(e=a),d<c&&(c=d),d>f&&(f=d)}),[[b,c],[e,f]]};var e={Feature:f,FeatureCollection:g,GeometryCollection:h,LineString:i,MultiLineString:j,MultiPoint:i,MultiPolygon:k,Point:l,Polygon:m};d3.geo.circle=function(){function g(){}function h(a){return f.distance(a)<e}function j(a){var b=-1,c=a.length,d=[],g,h,i,j,l;while(++b<c)l=f.distance(i=a[b]),l<e?(h&&d.push(p(h,i)((j-e)/(j-l))),d.push(i),g=h=null):(h=i,!g&&d.length&&(d.push(p(d[d.length-1],h)((e-j)/(l-j))),g=h)),j=l;return h&&d.length&&(l=f.distance(i=d[0]),d.push(p(h,i)((j-e)/(j-l)))),k(d)}function k(a){var b=0,c=a.length,d,e,g=c?[a[0]]:a,h,i=f.source();while(++b<c){h=f.source(a[b-1])(a[b]).coordinates;for(d=0,e=h.length;++d<e;)g.push(h[d])}return f.source(i),g}var c=[0,0],d=89.99,e=d*a,f=d3.geo.greatArc().target(Object);g.clip=function(a){return f.source(typeof c=="function"?c.apply(this,arguments):c),i(a)};var i=b({FeatureCollection:function(a){var b=a.features.map(i).filter(Object);return b&&(a=Object.create(a),a.features=b,a)},Feature:function(a){var b=i(a.geometry);return b&&(a=Object.create(a),a.geometry=b,a)},Point:function(a){return h(a.coordinates)&&a},MultiPoint:function(a){var b=a.coordinates.filter(h);return b.length&&{type:a.type,coordinates:b}},LineString:function(a){var b=j(a.coordinates);return b.length&&(a=Object.create(a),a.coordinates=b,a)},MultiLineString:function(a){var b=a.coordinates.map(j).filter(function(a){return a.length});return b.length&&(a=Object.create(a),a.coordinates=b,a)},Polygon:function(a){var b=a.coordinates.map(j);return b[0].length&&(a=Object.create(a),a.coordinates=b,a)},MultiPolygon:function(a){var b=a.coordinates.map(function(a){return a.map(j)}).filter(function(a){return a[0].length});return b.length&&(a=Object.create(a),a.coordinates=b,a)},GeometryCollection:function(a){var b=a.geometries.map(i).filter(Object);return b.length&&(a=Object.create(a),a.geometries=b,a)}});return g.origin=function(a){return arguments.length?(c=a,g):c},g.angle=function(b){return arguments.length?(e=(d=+b)*a,g):d},g.precision=function(a){return arguments.length?(f.precision(a),g):f.precision()},g},d3.geo.greatArc=function(){function e(){var a=typeof b=="function"?b.apply(this,arguments):b,e=typeof c=="function"?c.apply(this,arguments):c,f=p(a,e),g=d/f.d,h=0,i=[a];while((h+=g)<1)i.push(f(h));return i.push(e),{type:"LineString",coordinates:i}}var b=n,c=o,d=6*a;return e.distance=function(){var a=typeof b=="function"?b.apply(this,arguments):b,d=typeof c=="function"?c.apply(this,arguments):c;return p(a,d).d},e.source=function(a){return arguments.length?(b=a,e):b},e.target=function(a){return arguments.length?(c=a,e):c},e.precision=function(b){return arguments.length?(d=b*a,e):d/a},e},d3.geo.greatCircle=d3.geo.circle})();
(function(){function e(a){var b=-1,c=a.length,d=[];while(++b<c)d.push(a[b]);return d}function f(a){return Array.prototype.slice.call(a)}function i(){return this}function j(a,b,c){return function(){var d=c.apply(b,arguments);return arguments.length?a:d}}function k(a){return a!=null&&!isNaN(a)}function l(a){return a.length}function m(a){return a==null}function n(a){return a.replace(/(^\s+)|(\s+$)/g,"").replace(/\s+/g," ")}function q(){}function r(){function c(){var b=a,c=-1,d=b.length,e;while(++c<d)(e=b[c].on)&&e.apply(this,arguments)}var a=[],b={};return c.on=function(d,e){var f,g;if(arguments.length<2)return(f=b[d])&&f.on;if(f=b[d])f.on=null,a=a.slice(0,g=a.indexOf(f)).concat(a.slice(g+1)),delete b[d];return e&&a.push(b[d]={on:e}),c},c}function u(a,b){return b-(a?1+Math.floor(Math.log(a+Math.pow(10,1+Math.floor(Math.log(a)/Math.LN10)-b))/Math.LN10):1)}function v(a){return a+""}function w(a){var b=a.lastIndexOf("."),c=b>=0?a.substring(b):(b=a.length,""),d=[];while(b>0)d.push(a.substring(b-=3,b+3));return d.reverse().join(",")+c}function y(a,b){return{scale:Math.pow(10,(8-b)*3),symbol:a}}function D(a){return function(b){return b<=0?0:b>=1?1:a(b)}}function E(a){return function(b){return 1-a(1-b)}}function F(a){return function(b){return.5*(b<.5?a(2*b):2-a(2-2*b))}}function G(a){return a}function H(a){return function(b){return Math.pow(b,a)}}function I(a){return 1-Math.cos(a*Math.PI/2)}function J(a){return Math.pow(2,10*(a-1))}function K(a){return 1-Math.sqrt(1-a*a)}function L(a,b){var c;return arguments.length<2&&(b=.45),arguments.length<1?(a=1,c=b/4):c=b/(2*Math.PI)*Math.asin(1/a),function(d){return 1+a*Math.pow(2,10*-d)*Math.sin((d-c)*2*Math.PI/b)}}function M(a){return a||(a=1.70158),function(b){return b*b*((a+1)*b-a)}}function N(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375}function O(){d3.event.stopPropagation(),d3.event.preventDefault()}function Q(a){return a=="transform"?d3.interpolateTransform:d3.interpolate}function R(a,b){return b=b-(a=+a)?1/(b-a):0,function(c){return(c-a)*b}}function S(a,b){return b=b-(a=+a)?1/(b-a):0,function(c){return Math.max(0,Math.min(1,(c-a)*b))}}function T(a,b,c){return new U(a,b,c)}function U(a,b,c){this.r=a,this.g=b,this.b=c}function V(a){return a<16?"0"+Math.max(0,a).toString(16):Math.min(255,a).toString(16)}function W(a,b,c){var d=0,e=0,f=0,g,h,i;g=/([a-z]+)\((.*)\)/i.exec(a);if(g){h=g[2].split(",");switch(g[1]){case"hsl":return c(parseFloat(h[0]),parseFloat(h[1])/100,parseFloat(h[2])/100);case"rgb":return b(Y(h[0]),Y(h[1]),Y(h[2]))}}return(i=Z[a])?b(i.r,i.g,i.b):(a!=null&&a.charAt(0)==="#"&&(a.length===4?(d=a.charAt(1),d+=d,e=a.charAt(2),e+=e,f=a.charAt(3),f+=f):a.length===7&&(d=a.substring(1,3),e=a.substring(3,5),f=a.substring(5,7)),d=parseInt(d,16),e=parseInt(e,16),f=parseInt(f,16)),b(d,e,f))}function X(a,b,c){var d=Math.min(a/=255,b/=255,c/=255),e=Math.max(a,b,c),f=e-d,g,h,i=(e+d)/2;return f?(h=i<.5?f/(e+d):f/(2-e-d),a==e?g=(b-c)/f+(b<c?6:0):b==e?g=(c-a)/f+2:g=(a-b)/f+4,g*=60):h=g=0,_(g,h,i)}function Y(a){var b=parseFloat(a);return a.charAt(a.length-1)==="%"?Math.round(b*2.55):b}function _(a,b,c){return new ba(a,b,c)}function ba(a,b,c){this.h=a,this.s=b,this.l=c}function bb(a,b,c){function f(a){return a>360?a-=360:a<0&&(a+=360),a<60?d+(e-d)*a/60:a<180?e:a<240?d+(e-d)*(240-a)/60:d}function g(a){return Math.round(f(a)*255)}var d,e;return a%=360,a<0&&(a+=360),b=b<0?0:b>1?1:b,c=c<0?0:c>1?1:c,e=c<=.5?c*(1+b):c+b-c*b,d=2*c-e,T(g(a+120),g(a),g(a-120))}function bc(a){return h(a,bi),a}function bj(a){return function(){return bd(a,this)}}function bk(a){return function(){return be(a,this)}}function bm(a,b){function f(){if(b=this.classList)return b.add(a);var b=this.className,d=b.baseVal!=null,e=d?b.baseVal:b;c.lastIndex=0,c.test(e)||(e=n(e+" "+a),d?b.baseVal=e:this.className=e)}function g(){if(b=this.classList)return b.remove(a);var b=this.className,d=b.baseVal!=null,e=d?b.baseVal:b;e=n(e.replace(c," ")),d?b.baseVal=e:this.className=e}function h(){(b.apply(this,arguments)?f:g).call(this)}var c=new RegExp("(^|\\s+)"+d3.requote(a)+"(\\s+|$)","g");if(arguments.length<2){var d=this.node();if(e=d.classList)return e.contains(a);var e=d.className;return c.lastIndex=0,c.test(e.baseVal!=null?e.baseVal:e)}return this.each(typeof b=="function"?h:b?f:g)}function bn(a){return{__data__:a}}function bo(a){return function(){return bh(this,a)}}function bp(a){return arguments.length||(a=d3.ascending),function(b,c){return a(b&&b.__data__,c&&c.__data__)}}function br(a){return h(a,bs),a}function bt(a,b,c){h(a,bx);var d={},e=d3.dispatch("start","end"),f=bA;return a.id=b,a.time=c,a.tween=function(b,c){return arguments.length<2?d[b]:(c==null?delete d[b]:d[b]=c,a)},a.ease=function(b){return arguments.length?(f=typeof b=="function"?b:d3.ease.apply(d3,arguments),a):f},a.each=function(b,c){return arguments.length<2?bB.call(a,b):(e.on(b,c),a)},d3.timer(function(g){return a.each(function(h,i,j){function p(a){if(o.active>b)return r();o.active=b;for(var f in d)(f=d[f].call(l,h,i))&&k.push(f);return e.start.call(l,h,i),q(a)||d3.timer(q,0,c),1}function q(a){if(o.active!==b)return r();var c=(a-m)/n,d=f(c),g=k.length;while(g>0)k[--g].call(l,d);if(c>=1)return r(),bz=b,e.end.call(l,h,i),bz=0,1}function r(){return--o.count||delete l.__transition__,1}var k=[],l=this,m=a[j][i].delay,n=a[j][i].duration,o=l.__transition__||(l.__transition__={active:0,count:0});++o.count,m<=g?p(g):d3.timer(p,m,c)}),1},0,c),a}function bv(a,b,c){return c!=""&&bu}function bw(a,b){function d(a,d,e){var f=b.call(this,a,d);return f==null?e!=""&&bu:e!=f&&c(e,f)}function e(a,d,e){return e!=b&&c(e,b)}var c=Q(a);return typeof b=="function"?d:b==null?bv:(b+="",e)}function bB(a){for(var b=0,c=this.length;b<c;b++)for(var d=this[b],e=0,f=d.length;e<f;e++){var g=d[e];g&&a.call(g=g.node,g.__data__,e,b)}return this}function bF(){var a,b=Date.now(),c=bC;while(c)a=b-c.then,a>=c.delay&&(c.flush=c.callback(a)),c=c.next;var d=bG()-b;d>24?(isFinite(d)&&(clearTimeout(bE),bE=setTimeout(bF,d)),bD=0):(bD=1,bH(bF))}function bG(){var a=null,b=bC,c=Infinity;while(b)b.flush?b=a?a.next=b.next:bC=b.next:(c=Math.min(c,b.then+b.delay),b=(a=b).next);return c}function bI(a){var b=[a.a,a.b],c=[a.c,a.d],d=bK(b),e=bJ(b,c),f=bK(bL(c,b,-e))||0;b[0]*c[1]<c[0]*b[1]&&(b[0]*=-1,b[1]*=-1,d*=-1,e*=-1),this.rotate=(d?Math.atan2(b[1],b[0]):Math.atan2(-c[0],c[1]))*bO,this.translate=[a.e,a.f],this.scale=[d,f],this.skew=f?Math.atan2(e,f)*bO:0}function bJ(a,b){return a[0]*b[0]+a[1]*b[1]}function bK(a){var b=Math.sqrt(bJ(a,a));return b&&(a[0]/=b,a[1]/=b),b}function bL(a,b,c){return a[0]+=c*b[0],a[1]+=c*b[1],a}function bP(){}function bQ(a){var b=a[0],c=a[a.length-1];return b<c?[b,c]:[c,b]}function bR(a){return a.rangeExtent?a.rangeExtent():bQ(a.range())}function bS(a,b){var c=0,d=a.length-1,e=a[c],f=a[d],g;f<e&&(g=c,c=d,d=g,g=e,e=f,f=g);if(g=f-e)b=b(g),a[c]=b.floor(e),a[d]=b.ceil(f);return a}function bT(){return Math}function bU(a,b,c,d){function g(){var g=a.length==2?b$:b_,i=d?S:R;return e=g(a,b,i,c),f=g(b,a,i,d3.interpolate),h}function h(a){return e(a)}var e,f;return h.invert=function(a){return f(a)},h.domain=function(b){return arguments.length?(a=b.map(Number),g()):a},h.range=function(a){return arguments.length?(b=a,g()):b},h.rangeRound=function(a){return h.range(a).interpolate(d3.interpolateRound)},h.clamp=function(a){return arguments.length?(d=a,g()):d},h.interpolate=function(a){return arguments.length?(c=a,g()):c},h.ticks=function(b){return bY(a,b)},h.tickFormat=function(b){return bZ(a,b)},h.nice=function(){return bS(a,bW),g()},h.copy=function(){return bU(a,b,c,d)},g()}function bV(a,b){return d3.rebind(a,b,"range","rangeRound","interpolate","clamp")}function bW(a){return a=Math.pow(10,Math.round(Math.log(a)/Math.LN10)-1),{floor:function(b){return Math.floor(b/a)*a},ceil:function(b){return Math.ceil(b/a)*a}}}function bX(a,b){var c=bQ(a),d=c[1]-c[0],e=Math.pow(10,Math.floor(Math.log(d/b)/Math.LN10)),f=b/d*e;return f<=.15?e*=10:f<=.35?e*=5:f<=.75&&(e*=2),c[0]=Math.ceil(c[0]/e)*e,c[1]=Math.floor(c[1]/e)*e+e*.5,c[2]=e,c}function bY(a,b){return d3.range.apply(d3,bX(a,b))}function bZ(a,b){return d3.format(",."+Math.max(0,-Math.floor(Math.log(bX(a,b)[2])/Math.LN10+.01))+"f")}function b$(a,b,c,d){var e=c(a[0],a[1]),f=d(b[0],b[1]);return function(a){return f(e(a))}}function b_(a,b,c,d){var e=[],f=[],g=0,h=a.length;while(++g<h)e.push(c(a[g-1],a[g])),f.push(d(b[g-1],b[g]));return function(b){var c=d3.bisect(a,b,1,a.length-1)-1;return f[c](e[c](b))}}function ca(a,b){function d(c){return a(b(c))}var c=b.pow;return d.invert=function(b){return c(a.invert(b))},d.domain=function(e){return arguments.length?(b=e[0]<0?cd:cc,c=b.pow,a.domain(e.map(b)),d):a.domain().map(c)},d.nice=function(){return a.domain(bS(a.domain(),bT)),d},d.ticks=function(){var d=bQ(a.domain()),e=[];if(d.every(isFinite)){var f=Math.floor(d[0]),g=Math.ceil(d[1]),h=c(d[0]),i=c(d[1]);if(b===cd){e.push(c(f));for(;f++<g;)for(var j=9;j>0;j--)e.push(c(f)*j)}else{for(;f<g;f++)for(var j=1;j<10;j++)e.push(c(f)*j);e.push(c(f))}for(f=0;e[f]<h;f++);for(g=e.length;e[g-1]>i;g--);e=e.slice(f,g)}return e},d.tickFormat=function(a,e){arguments.length<2&&(e=cb);if(arguments.length<1)return e;var f=a/d.ticks().length,g=b===cd?(h=-1e-12,Math.floor):(h=1e-12,Math.ceil),h;return function(a){return a/c(g(b(a)+h))<f?e(a):""}},d.copy=function(){return ca(a.copy(),b)},bV(d,a)}function cc(a){return Math.log(a)/Math.LN10}function cd(a){return-Math.log(-a)/Math.LN10}function ce(a,b){function e(b){return a(c(b))}var c=cf(b),d=cf(1/b);return e.invert=function(b){return d(a.invert(b))},e.domain=function(b){return arguments.length?(a.domain(b.map(c)),e):a.domain().map(d)},e.ticks=function(a){return bY(e.domain(),a)},e.tickFormat=function(a){return bZ(e.domain(),a)},e.nice=function(){return e.domain(bS(e.domain(),bW))},e.exponent=function(a){if(!arguments.length)return b;var f=e.domain();return c=cf(b=a),d=cf(1/b),e.domain(f)},e.copy=function(){return ce(a.copy(),b)},bV(e,a)}function cf(a){return function(b){return b<0?-Math.pow(-b,a):Math.pow(b,a)}}function cg(a,b){function f(b){return d[((c[b]||(c[b]=a.push(b)))-1)%d.length]}function g(b,c){return d3.range(a.length).map(function(a){return b+c*a})}var c,d,e;return f.domain=function(d){if(!arguments.length)return a;a=[],c={};var e=-1,g=d.length,h;while(++e<g)c[h=d[e]]||(c[h]=a.push(h));return f[b.t](b.x,b.p)},f.range=function(a){return arguments.length?(d=a,e=0,b={t:"range",x:a},f):d},f.rangePoints=function(c,h){arguments.length<2&&(h=0);var i=c[0],j=c[1],k=(j-i)/(a.length-1+h);return d=g(a.length<2?(i+j)/2:i+k*h/2,k),e=0,b={t:"rangePoints",x:c,p:h},f},f.rangeBands=function(c,h){arguments.length<2&&(h=0);var i=c[0],j=c[1],k=(j-i)/(a.length+h);return d=g(i+k*h,k),e=k*(1-h),b={t:"rangeBands",x:c,p:h},f},f.rangeRoundBands=function(c,h){arguments.length<2&&(h=0);var i=c[0],j=c[1],k=Math.floor((j-i)/(a.length+h));return d=g(i+Math.round((j-i-(a.length-h)*k)/2),k),e=Math.round(k*(1-h)),b={t:"rangeRoundBands",x:c,p:h},f},f.rangeBand=function(){return e},f.rangeExtent=function(){return b.x},f.copy=function(){return cg(a,b)},f.domain(a)}function cl(a,b){function d(){var d=0,f=a.length,g=b.length;c=[];while(++d<g)c[d-1]=d3.quantile(a,d/g);return e}function e(a){return isNaN(a=+a)?NaN:b[d3.bisect(c,a)]}var c;return e.domain=function(b){return arguments.length?(a=b.filter(function(a){return!isNaN(a)}).sort(d3.ascending),d()):a},e.range=function(a){return arguments.length?(b=a,d()):b},e.quantiles=function(){return c},e.copy=function(){return cl(a,b)},d()}function cm(a,b,c){function f(b){return c[Math.max(0,Math.min(e,Math.floor(d*(b-a))))]}function g(){return d=c.length/(b-a),e=c.length-1,f}var d,e;return f.domain=function(c){return arguments.length?(a=+c[0],b=+c[c.length-1],g()):[a,b]},f.range=function(a){return arguments.length?(c=a,g()):c},f.copy=function(){return cm(a,b,c)},g()}function cp(a){return a.innerRadius}function cq(a){return a.outerRadius}function cr(a){return a.startAngle}function cs(a){return a.endAngle}function ct(a){function g(d){return d.length<1?null:"M"+e(a(cu(this,d,b,c)),f)}var b=cv,c=cw,d="linear",e=cx[d],f=.7;return g.x=function(a){return arguments.length?(b=a,g):b},g.y=function(a){return arguments.length?(c=a,g):c},g.interpolate=function(a){return arguments.length?(e=cx[d=a],g):d},g.tension=function(a){return arguments.length?(f=a,g):f},g}function cu(a,b,c,d){var e=[],f=-1,g=b.length,h=typeof c=="function",i=typeof d=="function",j;if(h&&i)while(++f<g)e.push([c.call(a,j=b[f],f),d.call(a,j,f)]);else if(h)while(++f<g)e.push([c.call(a,b[f],f),d]);else if(i)while(++f<g)e.push([c,d.call(a,b[f],f)]);else while(++f<g)e.push([c,d]);return e}function cv(a){return a[0]}function cw(a){return a[1]}function cy(a){var b=0,c=a.length,d=a[0],e=[d[0],",",d[1]];while(++b<c)e.push("L",(d=a[b])[0],",",d[1]);return e.join("")}function cz(a){var b=0,c=a.length,d=a[0],e=[d[0],",",d[1]];while(++b<c)e.push("V",(d=a[b])[1],"H",d[0]);return e.join("")}function cA(a){var b=0,c=a.length,d=a[0],e=[d[0],",",d[1]];while(++b<c)e.push("H",(d=a[b])[0],"V",d[1]);return e.join("")}function cB(a,b){return a.length<4?cy(a):a[1]+cE(a.slice(1,a.length-1),cF(a,b))}function cC(a,b){return a.length<3?cy(a):a[0]+cE((a.push(a[0]),a),cF([a[a.length-2]].concat(a,[a[1]]),b))}function cD(a,b,c){return a.length<3?cy(a):a[0]+cE(a,cF(a,b))}function cE(a,b){if(b.length<1||a.length!=b.length&&a.length!=b.length+2)return cy(a);var c=a.length!=b.length,d="",e=a[0],f=a[1],g=b[0],h=g,i=1;c&&(d+="Q"+(f[0]-g[0]*2/3)+","+(f[1]-g[1]*2/3)+","+f[0]+","+f[1],e=a[1],i=2);if(b.length>1){h=b[1],f=a[i],i++,d+="C"+(e[0]+g[0])+","+(e[1]+g[1])+","+(f[0]-h[0])+","+(f[1]-h[1])+","+f[0]+","+f[1];for(var j=2;j<b.length;j++,i++)f=a[i],h=b[j],d+="S"+(f[0]-h[0])+","+(f[1]-h[1])+","+f[0]+","+f[1]}if(c){var k=a[i];d+="Q"+(f[0]+h[0]*2/3)+","+(f[1]+h[1]*2/3)+","+k[0]+","+k[1]}return d}function cF(a,b){var c=[],d=(1-b)/2,e,f=a[0],g=a[1],h=1,i=a.length;while(++h<i)e=f,f=g,g=a[h],c.push([d*(g[0]-e[0]),d*(g[1]-e[1])]);return c}function cG(a){if(a.length<3)return cy(a);var b=1,c=a.length,d=a[0],e=d[0],f=d[1],g=[e,e,e,(d=a[1])[0]],h=[f,f,f,d[1]],i=[e,",",f];cO(i,g,h);while(++b<c)d=a[b],g.shift(),g.push(d[0]),h.shift(),h.push(d[1]),cO(i,g,h);b=-1;while(++b<2)g.shift(),g.push(d[0]),h.shift(),h.push(d[1]),cO(i,g,h);return i.join("")}function cH(a){if(a.length<4)return cy(a);var b=[],c=-1,d=a.length,e,f=[0],g=[0];while(++c<3)e=a[c],f.push(e[0]),g.push(e[1]);b.push(cK(cN,f)+","+cK(cN,g)),--c;while(++c<d)e=a[c],f.shift(),f.push(e[0]),g.shift(),g.push(e[1]),cO(b,f,g);return b.join("")}function cI(a){var b,c=-1,d=a.length,e=d+4,f,g=[],h=[];while(++c<4)f=a[c%d],g.push(f[0]),h.push(f[1]);b=[cK(cN,g),",",cK(cN,h)],--c;while(++c<e)f=a[c%d],g.shift(),g.push(f[0]),h.shift(),h.push(f[1]),cO(b,g,h);return b.join("")}function cJ(a,b){var c=a.length-1,d=a[0][0],e=a[0][1],f=a[c][0]-d,g=a[c][1]-e,h=-1,i,j;while(++h<=c)i=a[h],j=h/c,i[0]=b*i[0]+(1-b)*(d+j*f),i[1]=b*i[1]+(1-b)*(e+j*g);return cG(a)}function cK(a,b){return a[0]*b[0]+a[1]*b[1]+a[2]*b[2]+a[3]*b[3]}function cO(a,b,c){a.push("C",cK(cL,b),",",cK(cL,c),",",cK(cM,b),",",cK(cM,c),",",cK(cN,b),",",cK(cN,c))}function cP(a,b){return(b[1]-a[1])/(b[0]-a[0])}function cQ(a){var b=0,c=a.length-1,d=[],e=a[0],f=a[1],g=d[0]=cP(e,f);while(++b<c)d[b]=g+(g=cP(e=f,f=a[b+1]));return d[b]=g,d}function cR(a){var b=[],c,d,e,f,g=cQ(a),h=-1,i=a.length-1;while(++h<i)c=cP(a[h],a[h+1]),Math.abs(c)<1e-6?g[h]=g[h+1]=0:(d=g[h]/c,e=g[h+1]/c,f=d*d+e*e,f>9&&(f=c*3/Math.sqrt(f),g[h]=f*d,g[h+1]=f*e));h=-1;while(++h<=i)f=(a[Math.min(i,h+1)][0]-a[Math.max(0,h-1)][0])/(6*(1+g[h]*g[h])),b.push([f||0,g[h]*f||0]);return b}function cS(a){return a.length<3?cy(a):a[0]+cE(a,cR(a))}function cT(a){var b,c=-1,d=a.length,e,f;while(++c<d)b=a[c],e=b[0],f=b[1]+cn,b[0]=e*Math.cos(f),b[1]=e*Math.sin(f);return a}function cU(a){function j(f){if(f.length<1)return null;var j=cu(this,f,b,d),k=cu(this,f,b===c?cV(j):c,d===e?cW(j):e);return"M"+g(a(k),i)+"L"+h(a(j.reverse()),i)+"Z"}var b=cv,c=cv,d=0,e=cw,f,g,h,i=.7;return j.x=function(a){return arguments.length?(b=c=a,j):c},j.x0=function(a){return arguments.length?(b=a,j):b},j.x1=function(a){return arguments.length?(c=a,j):c},j.y=function(a){return arguments.length?(d=e=a,j):e},j.y0=function(a){return arguments.length?(d=a,j):d},j.y1=function(a){return arguments.length?(e=a,j):e},j.interpolate=function(a){return arguments.length?(g=cx[f=a],h=g.reverse||g,j):f},j.tension=function(a){return arguments.length?(i=a,j):i},j.interpolate("linear")}function cV(a){return function(b,c){return a[c][0]}}function cW(a){return function(b,c){return a[c][1]}}function cX(a){return a.source}function cY(a){return a.target}function cZ(a){return a.radius}function c$(a){return a.startAngle}function c_(a){return a.endAngle}function da(a){return[a.x,a.y]}function db(a){return function(){var b=a.apply(this,arguments),c=b[0],d=b[1]+cn;return[c*Math.cos(d),c*Math.sin(d)]}}function dd(a,b){var c=(a.ownerSVGElement||a).createSVGPoint();if(dc<0&&(window.scrollX||window.scrollY)){var d=d3.select(document.body).append("svg").style("position","absolute").style("top",0).style("left",0),e=d[0][0].getScreenCTM();dc=!e.f&&!e.e,d.remove()}return dc?(c.x=b.pageX,c.y=b.pageY):(c.x=b.clientX,c.y=b.clientY),c=c.matrixTransform(a.getScreenCTM().inverse()),[c.x,c.y]}function de(){return 64}function df(){return"circle"}function dj(a,b){a.attr("transform",function(a){return"translate("+b(a)+",0)"})}function dk(a,b){a.attr("transform",function(a){return"translate(0,"+b(a)+")"})}function dl(a,b,c){e=[];if(c&&b.length>1){var d=bQ(a.domain()),e,f=-1,g=b.length,h=(b[1]-b[0])/++c,i,j;while(++f<g)for(i=c;--i>0;)(j=+b[f]-i*h)>=d[0]&&e.push(j);for(--f,i=0;++i<c&&(j=+b[f]+i*h)<d[1];)e.push(j)}return e}function dx(a,b){a.select(".extent").attr("x",b[0][0]),a.selectAll(".n,.s,.w,.nw,.sw").attr("x",b[0][0]-2),a.selectAll(".e,.ne,.se").attr("x",b[1][0]-3),a.selectAll(".extent,.n,.s").attr("width",b[1][0]-b[0][0])}function dy(a,b){a.select(".extent").attr("y",b[0][1]),a.selectAll(".n,.e,.w,.nw,.ne").attr("y",b[0][1]-3),a.selectAll(".s,.se,.sw").attr("y",b[1][1]-4),a.selectAll(".extent,.e,.w").attr("height",b[1][1]-b[0][1])}function dz(){d3.event.keyCode==32&&dp&&!dt&&(dv=null,dw[0]-=ds[1][0],dw[1]-=ds[1][1],dt=2,O())}function dA(){d3.event.keyCode==32&&dt==2&&(dw[0]+=ds[1][0],dw[1]+=ds[1][1],dt=0,O())}function dB(){if(dw){var a=d3.svg.mouse(dp),b=d3.select(dp);dt||(d3.event.altKey?(dv||(dv=[(ds[0][0]+ds[1][0])/2,(ds[0][1]+ds[1][1])/2]),dw[0]=ds[+(a[0]<dv[0])][0],dw[1]=ds[+(a[1]<dv[1])][1]):dv=null),dq&&(dC(a,dq,0),dx(b,ds)),dr&&(dC(a,dr,1),dy(b,ds)),dn("brush")}}function dC(a,b,c){var d=bR(b),e=d[0],f=d[1],g=dw[c],h=ds[1][c]-ds[0][c],i,j;dt&&(e-=g,f-=h+g),i=Math.max(e,Math.min(f,a[c])),dt?j=(i+=g)+h:(dv&&(g=Math.max(e,Math.min(f,2*dv[c]-i))),g<i?(j=i,i=g):j=g),ds[0][c]=i,ds[1][c]=j}function dD(){dw&&(dB(),d3.select(dp).selectAll(".resize").style("pointer-events",dm.empty()?"none":"all"),dn("brushend"),dm=dn=dp=dq=dr=ds=dt=du=dv=dw=null,O())}function dM(a){var b=dN(),c=d3.event,d=d3.event={type:a};b&&(d.x=b[0]+dJ[0],d.y=b[1]+dJ[1],d.dx=b[0]-dK[0],d.dy=b[1]-dK[1],dL|=d.dx|d.dy,dK=b);try{dF[a].apply(dH,dI)}finally{d3.event=c}c.stopPropagation(),c.preventDefault()}function dN(){var a=dH.parentNode,b=d3.event.changedTouches;return a&&(b?d3.svg.touches(a,b)[0]:d3.svg.mouse(a))}function dO(){if(!dH)return;var a=dH.parentNode;if(!a)return dP();dM("drag"),O()}function dP(){if(!dH)return;dM("dragend"),dL&&(O(),dL=d3.event.target===dG),dF=dG=dH=dI=dJ=dK=null}function dQ(){dL&&(O(),dL=0)}function eb(a){return[a[0]-dW[0],a[1]-dW[1],dW[2]]}function ec(){dR||(dR=d3.select("body").append("div").style("visibility","hidden").style("top",0).style("height",0).style("width",0).style("overflow-y","scroll").append("div").style("height","2000px").node().parentNode);var a=d3.event,b;try{dR.scrollTop=1e3,dR.dispatchEvent(a),b=1e3-dR.scrollTop}catch(c){b=a.wheelDelta||-a.detail*5}return b*.005}function ed(){var a=d3.svg.touches(d$),b=-1,c=a.length,d;while(++b<c)dU[(d=a[b]).identifier]=eb(d);return a}function ee(){var a=d3.svg.touches(d$);switch(a.length){case 1:var b=a[0];ei(dW[2],b,dU[b.identifier]);break;case 2:var c=a[0],d=a[1],e=[(c[0]+d[0])/2,(c[1]+d[1])/2],f=dU[c.identifier],g=dU[d.identifier],h=[(f[0]+g[0])/2,(f[1]+g[1])/2,f[2]];ei(Math.log(d3.event.scale)/Math.LN2+f[2],e,h)}}function ef(){dT=null,dS&&(ea=1,ei(dW[2],d3.svg.mouse(d$),dS))}function eg(){dS&&(ea&&(O(),ea=dZ===d3.event.target),dW=dX=dY=dZ=d$=d_=dS=null)}function eh(){ea&&(O(),ea=0)}function ei(a,b,c){function l(a,b,c){a.domain(a.range().map(function(f){return a.invert((f-c)*d/e+b)}))}a=ek(a,2);var d=Math.pow(2,dW[2]),e=Math.pow(2,a),f=Math.pow(2,(dW[2]=a)-c[2]),g=dW[0],h=dW[1],i=dW[0]=ek(b[0]-c[0]*f,0,e),j=dW[1]=ek(b[1]-c[1]*f,1,e),k=d3.event;d3.event={scale:e,translate:[i,j],transform:function(a,b){a&&l(a,g,i),b&&l(b,h,j)}};try{dY.apply(d$,d_)}finally{d3.event=k}k.preventDefault()}function ek(a,b,c){var d=dX[b],e=d[0],f=d[1];return arguments.length===3?Math.max(f*(f===Infinity?-Infinity:1/c-1),Math.min(e===-Infinity?Infinity:e,a/c))*c:Math.max(e,Math.min(f,a))}Date.now||(Date.now=function(){return+(new Date)});try{document.createElement("div").style.setProperty("opacity",0,"")}catch(a){var b=CSSStyleDeclaration.prototype,c=b.setProperty;b.setProperty=function(a,b,d){c.call(this,a,b+"",d)}}d3={version:"2.7.0"};var d=f;try{d(document.documentElement.childNodes)[0].nodeType}catch(g){d=e}var h=[].__proto__?function(a,b){a.__proto__=b}:function(a,b){for(var c in b)a[c]=b[c]};d3.functor=function(a){return typeof a=="function"?a:function(){return a}},d3.rebind=function(a,b){var c=1,d=arguments.length,e;while(++c<d)a[e=arguments[c]]=j(a,b,b[e]);return a},d3.ascending=function(a,b){return a<b?-1:a>b?1:a>=b?0:NaN},d3.descending=function(a,b){return b<a?-1:b>a?1:b>=a?0:NaN},d3.mean=function(a,b){var c=a.length,d,e=0,f=-1,g=0;if(arguments.length===1)while(++f<c)k(d=a[f])&&(e+=(d-e)/++g);else while(++f<c)k(d=b.call(a,a[f],f))&&(e+=(d-e)/++g);return g?e:undefined},d3.median=function(a,b){return arguments.length>1&&(a=a.map(b)),a=a.filter(k),a.length?d3.quantile(a.sort(d3.ascending),.5):undefined},d3.min=function(a,b){var c=-1,d=a.length,e,f;if(arguments.length===1){while(++c<d&&((e=a[c])==null||e!=e))e=undefined;while(++c<d)(f=a[c])!=null&&e>f&&(e=f)}else{while(++c<d&&((e=b.call(a,a[c],c))==null||e!=e))e=undefined;while(++c<d)(f=b.call(a,a[c],c))!=null&&e>f&&(e=f)}return e},d3.max=function(a,b){var c=-1,d=a.length,e,f;if(arguments.length===1){while(++c<d&&((e=a[c])==null||e!=e))e=undefined;while(++c<d)(f=a[c])!=null&&f>e&&(e=f)}else{while(++c<d&&((e=b.call(a,a[c],c))==null||e!=e))e=undefined;while(++c<d)(f=b.call(a,a[c],c))!=null&&f>e&&(e=f)}return e},d3.extent=function(a,b){var c=-1,d=a.length,e,f,g;if(arguments.length===1){while(++c<d&&((e=g=a[c])==null||e!=e))e=g=undefined;while(++c<d)(f=a[c])!=null&&(e>f&&(e=f),g<f&&(g=f))}else{while(++c<d&&((e=g=b.call(a,a[c],c))==null||e!=e))e=undefined;while(++c<d)(f=b.call(a,a[c],c))!=null&&(e>f&&(e=f),g<f&&(g=f))}return[e,g]},d3.random={normal:function(a,b){return arguments.length<2&&(b=1),arguments.length<1&&(a=0),function(){var c,d,e;do c=Math.random()*2-1,d=Math.random()*2-1,e=c*c+d*d;while(!e||e>1);return a+b*c*Math.sqrt(-2*Math.log(e)/e)}}},d3.sum=function(a,b){var c=0,d=a.length,e,f=-1;if(arguments.length===1)while(++f<d)isNaN(e=+a[f])||(c+=e);else while(++f<d)isNaN(e=+b.call(a,a[f],f))||(c+=e);return c},d3.quantile=function(a,b){var c=(a.length-1)*b+1,d=Math.floor(c),e=a[d-1],f=c-d;return f?e+f*(a[d]-e):e},d3.transpose=function(a){return d3.zip.apply(d3,a)},d3.zip=function(){if(!(e=arguments.length))return[];for(var a=-1,b=d3.min(arguments,l),c=new Array(b);++a<b;)for(var d=-1,e,f=c[a]=new Array(e);++d<e;)f[d]=arguments[d][a];return c},d3.bisectLeft=function(a,b,c,d){arguments.length<3&&(c=0),arguments.length<4&&(d=a.length);while(c<d){var e=c+d>>1;a[e]<b?c=e+1:d=e}return c},d3.bisect=d3.bisectRight=function(a,b,c,d){arguments.length<3&&(c=0),arguments.length<4&&(d=a.length);while(c<d){var e=c+d>>1;b<a[e]?d=e:c=e+1}return c},d3.first=function(a,b){var c=0,d=a.length,e=a[0],f;arguments.length===1&&(b=d3.ascending);while(++c<d)b.call(a,e,f=a[c])>0&&(e=f);return e},d3.last=function(a,b){var c=0,d=a.length,e=a[0],f;arguments.length===1&&(b=d3.ascending);while(++c<d)b.call(a,e,f=a[c])<=0&&(e=f);return e},d3.nest=function(){function f(c,g){if(g>=b.length)return e?e.call(a,c):d?c.sort(d):c;var h=-1,i=c.length,j=b[g++],k,l,m={};while(++h<i)(k=j(l=c[h]))in m?m[k].push(l):m[k]=[l];for(k in m)m[k]=f(m[k],g);return m}function g(a,d){if(d>=b.length)return a;var e=[],f=c[d++],h;for(h in a)e.push({key:h,values:g(a[h],d)});return f&&e.sort(function(a,b){return f(a.key,b.key)}),e}var a={},b=[],c=[],d,e;return a.map=function(a){return f(a,0)},a.entries=function(a){return g(f(a,0),0)},a.key=function(c){return b.push(c),a},a.sortKeys=function(d){return c[b.length-1]=d,a},a.sortValues=function(b){return d=b,a},a.rollup=function(b){return e=b,a},a},d3.keys=function(a){var b=[];for(var c in a)b.push(c);return b},d3.values=function(a){var b=[];for(var c in a)b.push(a[c]);return b},d3.entries=function(a){var b=[];for(var c in a)b.push({key:c,value:a[c]});return b},d3.permute=function(a,b){var c=[],d=-1,e=b.length;while(++d<e)c[d]=a[b[d]];return c},d3.merge=function(a){return Array.prototype.concat.apply([],a)},d3.split=function(a,b){var c=[],d=[],e,f=-1,g=a.length;arguments.length<2&&(b=m);while(++f<g)b.call(d,e=a[f],f)?d=[]:(d.length||c.push(d),d.push(e));return c},d3.range=function(a,b,c){arguments.length<3&&(c=1,arguments.length<2&&(b=a,a=0));if((b-a)/c==Infinity)throw new Error("infinite range");var d=[],e=-1,f;if(c<0)while((f=a+c*++e)>b)d.push(f);else while((f=a+c*++e)<b)d.push(f);return d},d3.requote=function(a){return a.replace(o,"\\$&")};var o=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g;d3.round=function(a,b){return b?Math.round(a*Math.pow(10,b))*Math.pow(10,-b):Math.round(a)},d3.xhr=function(a,b,c){var d=new XMLHttpRequest;arguments.length<3?c=b:b&&d.overrideMimeType&&d.overrideMimeType(b),d.open("GET",a,!0),d.onreadystatechange=function(){d.readyState===4&&c(d.status<300?d:null)},d.send(null)},d3.text=function(a,b,c){function d(a){c(a&&a.responseText)}arguments.length<3&&(c=b,b=null),d3.xhr(a,b,d)},d3.json=function(a,b){d3.text(a,"application/json",function(a){b(a?JSON.parse(a):null)})},d3.html=function(a,b){d3.text(a,"text/html",function(a){if(a!=null){var c=document.createRange();c.selectNode(document.body),a=c.createContextualFragment(a)}b(a)})},d3.xml=function(a,b,c){function d(a){c(a&&a.responseXML)}arguments.length<3&&(c=b,b=null),d3.xhr(a,b,d)};var p={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};d3.ns={prefix:p,qualify:function(a){var b=a.indexOf(":");return b<0?a in p?{space:p[a],local:a}:a:{space:p[a.substring(0,b)],local:a.substring(b+1)}}},d3.dispatch=function(){var a=new q,b=-1,c=arguments.length;while(++b<c)a[arguments[b]]=r();return a},q.prototype.on=function(a,b){var c=a.indexOf("."),d="";return c>0&&(d=a.substring(c+1),a=a.substring(0,c)),arguments.length<2?this[a].on(d):(this[a].on(d,b),this)},d3.format=function(a){var b=s.exec(a),c=b[1]||" ",d=b[3]||"",e=b[5],f=+b[6],g=b[7],h=b[8],i=b[9],j=1,k="",l=!1;h&&(h=+h.substring(1)),e&&(c="0",g&&(f-=Math.floor((f-1)/4)));switch(i){case"n":g=!0,i="g";break;case"%":j=100,k="%",i="f";break;case"p":j=100,k="%",i="r";break;case"d":l=!0,h=0;break;case"s":j=-1,i="r"}return i=="r"&&!h&&(i="g"),i=t[i]||v,function(a){if(l&&a%1)return"";var b=a<0&&(a=-a)?"−":d;if(j<0){var m=d3.formatPrefix(a,h);a*=m.scale,k=m.symbol}else a*=j;a=i(a,h);if(e){var n=a.length+b.length;n<f&&(a=(new Array(f-n+1)).join(c)+a),g&&(a=w(a)),a=b+a}else{g&&(a=w(a)),a=b+a;var n=a.length;n<f&&(a=(new Array(f-n+1)).join(c)+a)}return a+k}};var s=/(?:([^{])?([<>=^]))?([+\- ])?(#)?(0)?([0-9]+)?(,)?(\.[0-9]+)?([a-zA-Z%])?/,t={g:function(a,b){return a.toPrecision(b)},e:function(a,b){return a.toExponential(b)},f:function(a,b){return a.toFixed(b)},r:function(a,b){return d3.round(a,b=u(a,b)).toFixed(Math.max(0,Math.min(20,b)))}},x=["y","z","a","f","p","n","μ","m","","k","M","G","T","P","E","Z","Y"].map(y);d3.formatPrefix=function(a,b){var c=0;return a&&(a<0&&(a*=-1),b&&(a=d3.round(a,u(a,b))),c=1+Math.floor(1e-12+Math.log(a)/Math.LN10),c=Math.max(-24,Math.min(24,Math.floor((c<=0?c+1:c-1)/3)*3))),x[8+c/3]};var z=H(2),A=H(3),B={linear:function(){return G},poly:H,quad:function(){return z},cubic:function(){return A},sin:function(){return I},exp:function(){return J},circle:function(){return K},elastic:L,back:M,bounce:function(){return N}},C={"in":function(a){return a},out:E,"in-out":F,"out-in":function(a){return F(E(a))}};d3.ease=function(a){var b=a.indexOf("-"),c=b>=0?a.substring(0,b):a,d=b>=0?a.substring(b+1):"in";return D(C[d](B[c].apply(null,Array.prototype.slice.call(arguments,1))))},d3.event=null,d3.interpolate=function(a,b){var c=d3.interpolators.length,d;while(--c>=0&&!(d=d3.interpolators[c](a,b)));return d},d3.interpolateNumber=function(a,b){return b-=a,function(c){return a+b*c}},d3.interpolateRound=function(a,b){return b-=a,function(c){return Math.round(a+b*c)}},d3.interpolateString=function(a,b){var c,d,e,f=0,g=0,h=[],i=[],j,k;P.lastIndex=0;for(d=0;c=P.exec(b);++d)c.index&&h.push(b.substring(f,g=c.index)),i.push({i:h.length,x:c[0]}),h.push(null),f=P.lastIndex;f<b.length&&h.push(b.substring(f));for(d=0,j=i.length;(c=P.exec(a))&&d<j;++d){k=i[d];if(k.x==c[0]){if(k.i)if(h[k.i+1]==null){h[k.i-1]+=k.x,h.splice(k.i,1);for(e=d+1;e<j;++e)i[e].i--}else{h[k.i-1]+=k.x+h[k.i+1],h.splice(k.i,2);for(e=d+1;e<j;++e)i[e].i-=2}else if(h[k.i+1]==null)h[k.i]=k.x;else{h[k.i]=k.x+h[k.i+1],h.splice(k.i+1,1);for(e=d+1;e<j;++e)i[e].i--}i.splice(d,1),j--,d--}else k.x=d3.interpolateNumber(parseFloat(c[0]),parseFloat(k.x))}while(d<j)k=i.pop(),h[k.i+1]==null?h[k.i]=k.x:(h[k.i]=k.x+h[k.i+1],h.splice(k.i+1,1)),j--;return h.length===1?h[0]==null?i[0].x:function(){return b}:function(a){for(d=0;d<j;++d)h[(k=i[d]).i]=k.x(a);return h.join("")}},d3.interpolateTransform=function(a,b){return d3.interpolateString(d3.transform(a)+"",d3.transform(b)+"")},d3.interpolateRgb=function(a,b){a=d3.rgb(a),b=d3.rgb(b);var c=a.r,d=a.g,e=a.b,f=b.r-c,g=b.g-d,h=b.b-e;return function(a){return"#"+V(Math.round(c+f*a))+V(Math.round(d+g*a))+V(Math.round(e+h*a))}},d3.interpolateHsl=function(a,b){a=d3.hsl(a),b=d3.hsl(b);var c=a.h,d=a.s,e=a.l,f=b.h-c,g=b.s-d,h=b.l-e;return function(a){return bb(c+f*a,d+g*a,e+h*a).toString()}},d3.interpolateArray=function(a,b){var c=[],d=[],e=a.length,f=b.length,g=Math.min(a.length,b.length),h;for(h=0;h<g;++h)c.push(d3.interpolate(a[h],b[h]));for(;h<e;++h)d[h]=a[h];for(;h<f;++h)d[h]=b[h];return function(a){for(h=0;h<g;++h)d[h]=c[h](a);return d}},d3.interpolateObject=function(a,b){var c={},d={},e;for(e in a)e in b?c[e]=Q(e)(a[e],b[e]):d[e]=a[e];for(e in b)e in a||(d[e]=b[e]);return function(a){for(e in c)d[e]=c[e](a);return d}};var P=/[-+]?(?:\d*\.?\d+)(?:[eE][-+]?\d+)?/g;d3.interpolators=[d3.interpolateObject,function(a,b){return b instanceof Array&&d3.interpolateArray(a,b)},function(a,b){return(typeof a=="string"||typeof b=="string")&&d3.interpolateString(a+"",b+"")},function(a,b){return(typeof b=="string"?b in Z||/^(#|rgb\(|hsl\()/.test(b):b instanceof U||b instanceof ba)&&d3.interpolateRgb(a,b)},function(a,b){return!isNaN(a=+a)&&!isNaN(b=+b)&&d3.interpolateNumber(a,b)}],d3.rgb=function(a,b,c){return arguments.length===1?a instanceof U?T(a.r,a.g,a.b):W(""+a,T,bb):T(~~a,~~b,~~c)},U.prototype.brighter=function(a){a=Math.pow(.7,arguments.length?a:1);var b=this.r,c=this.g,d=this.b,e=30;return!b&&!c&&!d?T(e,e,e):(b&&b<e&&(b=e),c&&c<e&&(c=e),d&&d<e&&(d=e),T(Math.min(255,Math.floor(b/a)),Math.min(255,Math.floor(c/a)),Math.min(255,Math.floor(d/a))))},U.prototype.darker=function(a){return a=Math.pow(.7,arguments.length?a:1),T(Math.floor(a*this.r),Math.floor(a*this.g),Math.floor(a*this.b))},U.prototype.hsl=function(){return X(this.r,this.g,this.b)},U.prototype.toString=function(){return"#"+V(this.r)+V(this.g)+V(this.b)};var Z={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f"
,darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};for(var $ in Z)Z[$]=W(Z[$],T,bb);d3.hsl=function(a,b,c){return arguments.length===1?a instanceof ba?_(a.h,a.s,a.l):W(""+a,X,_):_(+a,+b,+c)},ba.prototype.brighter=function(a){return a=Math.pow(.7,arguments.length?a:1),_(this.h,this.s,this.l/a)},ba.prototype.darker=function(a){return a=Math.pow(.7,arguments.length?a:1),_(this.h,this.s,a*this.l)},ba.prototype.rgb=function(){return bb(this.h,this.s,this.l)},ba.prototype.toString=function(){return this.rgb().toString()};var bd=function(a,b){return b.querySelector(a)},be=function(a,b){return b.querySelectorAll(a)},bf=document.documentElement,bg=bf.matchesSelector||bf.webkitMatchesSelector||bf.mozMatchesSelector||bf.msMatchesSelector||bf.oMatchesSelector,bh=function(a,b){return bg.call(a,b)};typeof Sizzle=="function"&&(bd=function(a,b){return Sizzle(a,b)[0]},be=function(a,b){return Sizzle.uniqueSort(Sizzle(a,b))},bh=Sizzle.matchesSelector);var bi=[];d3.selection=function(){return bq},d3.selection.prototype=bi,bi.select=function(a){var b=[],c,d,e,f;typeof a!="function"&&(a=bj(a));for(var g=-1,h=this.length;++g<h;){b.push(c=[]),c.parentNode=(e=this[g]).parentNode;for(var i=-1,j=e.length;++i<j;)(f=e[i])?(c.push(d=a.call(f,f.__data__,i)),d&&"__data__"in f&&(d.__data__=f.__data__)):c.push(null)}return bc(b)},bi.selectAll=function(a){var b=[],c,e;typeof a!="function"&&(a=bk(a));for(var f=-1,g=this.length;++f<g;)for(var h=this[f],i=-1,j=h.length;++i<j;)if(e=h[i])b.push(c=d(a.call(e,e.__data__,i))),c.parentNode=e;return bc(b)},bi.attr=function(a,b){function d(){this.removeAttribute(a)}function e(){this.removeAttributeNS(a.space,a.local)}function f(){this.setAttribute(a,b)}function g(){this.setAttributeNS(a.space,a.local,b)}function h(){var c=b.apply(this,arguments);c==null?this.removeAttribute(a):this.setAttribute(a,c)}function i(){var c=b.apply(this,arguments);c==null?this.removeAttributeNS(a.space,a.local):this.setAttributeNS(a.space,a.local,c)}a=d3.ns.qualify(a);if(arguments.length<2){var c=this.node();return a.local?c.getAttributeNS(a.space,a.local):c.getAttribute(a)}return this.each(b==null?a.local?e:d:typeof b=="function"?a.local?i:h:a.local?g:f)},bi.classed=function(a,b){var c=a.split(bl),d=c.length,e=-1;if(arguments.length>1){while(++e<d)bm.call(this,c[e],b);return this}while(++e<d)if(!bm.call(this,c[e]))return!1;return!0};var bl=/\s+/g;bi.style=function(a,b,c){function d(){this.style.removeProperty(a)}function e(){this.style.setProperty(a,b,c)}function f(){var d=b.apply(this,arguments);d==null?this.style.removeProperty(a):this.style.setProperty(a,d,c)}return arguments.length<3&&(c=""),arguments.length<2?window.getComputedStyle(this.node(),null).getPropertyValue(a):this.each(b==null?d:typeof b=="function"?f:e)},bi.property=function(a,b){function c(){delete this[a]}function d(){this[a]=b}function e(){var c=b.apply(this,arguments);c==null?delete this[a]:this[a]=c}return arguments.length<2?this.node()[a]:this.each(b==null?c:typeof b=="function"?e:d)},bi.text=function(a){return arguments.length<1?this.node().textContent:this.each(typeof a=="function"?function(){this.textContent=a.apply(this,arguments)}:function(){this.textContent=a})},bi.html=function(a){return arguments.length<1?this.node().innerHTML:this.each(typeof a=="function"?function(){this.innerHTML=a.apply(this,arguments)}:function(){this.innerHTML=a})},bi.append=function(a){function b(){return this.appendChild(document.createElementNS(this.namespaceURI,a))}function c(){return this.appendChild(document.createElementNS(a.space,a.local))}return a=d3.ns.qualify(a),this.select(a.local?c:b)},bi.insert=function(a,b){function c(){return this.insertBefore(document.createElementNS(this.namespaceURI,a),bd(b,this))}function d(){return this.insertBefore(document.createElementNS(a.space,a.local),bd(b,this))}return a=d3.ns.qualify(a),this.select(a.local?d:c)},bi.remove=function(){return this.each(function(){var a=this.parentNode;a&&a.removeChild(this)})},bi.data=function(a,b){function f(a,f){var g,h=a.length,i=f.length,j=Math.min(h,i),k=Math.max(h,i),l=[],m=[],n=[],o,p;if(b){var q={},r=[],s,t=f.length;for(g=-1;++g<h;)s=b.call(o=a[g],o.__data__,g),s in q?n[t++]=o:q[s]=o,r.push(s);for(g=-1;++g<i;)o=q[s=b.call(f,p=f[g],g)],o?(o.__data__=p,l[g]=o,m[g]=n[g]=null):(m[g]=bn(p),l[g]=n[g]=null),delete q[s];for(g=-1;++g<h;)r[g]in q&&(n[g]=a[g])}else{for(g=-1;++g<j;)o=a[g],p=f[g],o?(o.__data__=p,l[g]=o,m[g]=n[g]=null):(m[g]=bn(p),l[g]=n[g]=null);for(;g<i;++g)m[g]=bn(f[g]),l[g]=n[g]=null;for(;g<k;++g)n[g]=a[g],m[g]=l[g]=null}m.update=l,m.parentNode=l.parentNode=n.parentNode=a.parentNode,c.push(m),d.push(l),e.push(n)}var c=[],d=[],e=[],g=-1,h=this.length,i;if(typeof a=="function")while(++g<h)f(i=this[g],a.call(i,i.parentNode.__data__,g));else while(++g<h)f(i=this[g],a);var j=bc(d);return j.enter=function(){return br(c)},j.exit=function(){return bc(e)},j},bi.filter=function(a){var b=[],c,d,e;typeof a!="function"&&(a=bo(a));for(var f=0,g=this.length;f<g;f++){b.push(c=[]),c.parentNode=(d=this[f]).parentNode;for(var h=0,i=d.length;h<i;h++)(e=d[h])&&a.call(e,e.__data__,h)&&c.push(e)}return bc(b)},bi.map=function(a){return this.each(function(){this.__data__=a.apply(this,arguments)})},bi.order=function(){for(var a=-1,b=this.length;++a<b;)for(var c=this[a],d=c.length-1,e=c[d],f;--d>=0;)if(f=c[d])e&&e.parentNode.insertBefore(f,e),e=f;return this},bi.sort=function(a){a=bp.apply(this,arguments);for(var b=-1,c=this.length;++b<c;)this[b].sort(a);return this.order()},bi.on=function(a,b,c){arguments.length<3&&(c=!1);var d="__on"+a,e=a.indexOf(".");return e>0&&(a=a.substring(0,e)),arguments.length<2?(e=this.node()[d])&&e._:this.each(function(e,f){function h(a){var c=d3.event;d3.event=a;try{b.call(g,g.__data__,f)}finally{d3.event=c}}var g=this;g[d]&&g.removeEventListener(a,g[d],c),b&&g.addEventListener(a,g[d]=h,c),h._=b})},bi.each=function(a){for(var b=-1,c=this.length;++b<c;)for(var d=this[b],e=-1,f=d.length;++e<f;){var g=d[e];g&&a.call(g,g.__data__,e,b)}return this},bi.call=function(a){return a.apply(this,(arguments[0]=this,arguments)),this},bi.empty=function(){return!this.node()},bi.node=function(a){for(var b=0,c=this.length;b<c;b++)for(var d=this[b],e=0,f=d.length;e<f;e++){var g=d[e];if(g)return g}return null},bi.transition=function(){var a=[],b,c;for(var d=-1,e=this.length;++d<e;){a.push(b=[]);for(var f=this[d],g=-1,h=f.length;++g<h;)b.push((c=f[g])?{node:c,delay:0,duration:250}:null)}return bt(a,bz||++by,Date.now())};var bq=bc([[document]]);bq[0].parentNode=bf,d3.select=function(a){return typeof a=="string"?bq.select(a):bc([[a]])},d3.selectAll=function(a){return typeof a=="string"?bq.selectAll(a):bc([d(a)])};var bs=[];bs.append=bi.append,bs.insert=bi.insert,bs.empty=bi.empty,bs.node=bi.node,bs.select=function(a){var b=[],c,d,e,f,g;for(var h=-1,i=this.length;++h<i;){e=(f=this[h]).update,b.push(c=[]),c.parentNode=f.parentNode;for(var j=-1,k=f.length;++j<k;)(g=f[j])?(c.push(e[j]=d=a.call(f.parentNode,g.__data__,j)),d.__data__=g.__data__):c.push(null)}return bc(b)};var bu={},bx=[],by=0,bz=0,bA=d3.ease("cubic-in-out");bx.call=bi.call,d3.transition=function(){return bq.transition()},d3.transition.prototype=bx,bx.select=function(a){var b=[],c,d,e;typeof a!="function"&&(a=bj(a));for(var f=-1,g=this.length;++f<g;){b.push(c=[]);for(var h=this[f],i=-1,j=h.length;++i<j;)(e=h[i])&&(d=a.call(e.node,e.node.__data__,i))?("__data__"in e.node&&(d.__data__=e.node.__data__),c.push({node:d,delay:e.delay,duration:e.duration})):c.push(null)}return bt(b,this.id,this.time).ease(this.ease())},bx.selectAll=function(a){var b=[],c,d,e;typeof a!="function"&&(a=bk(a));for(var f=-1,g=this.length;++f<g;)for(var h=this[f],i=-1,j=h.length;++i<j;)if(e=h[i]){d=a.call(e.node,e.node.__data__,i),b.push(c=[]);for(var k=-1,l=d.length;++k<l;)c.push({node:d[k],delay:e.delay,duration:e.duration})}return bt(b,this.id,this.time).ease(this.ease())},bx.attr=function(a,b){return this.attrTween(a,bw(a,b))},bx.attrTween=function(a,b){function d(a,d){var e=b.call(this,a,d,this.getAttribute(c));return e===bu?(this.removeAttribute(c),null):e&&function(a){this.setAttribute(c,e(a))}}function e(a,d){var e=b.call(this,a,d,this.getAttributeNS(c.space,c.local));return e===bu?(this.removeAttributeNS(c.space,c.local),null):e&&function(a){this.setAttributeNS(c.space,c.local,e(a))}}var c=d3.ns.qualify(a);return this.tween("attr."+a,c.local?e:d)},bx.style=function(a,b,c){return arguments.length<3&&(c=""),this.styleTween(a,bw(a,b),c)},bx.styleTween=function(a,b,c){return arguments.length<3&&(c=""),this.tween("style."+a,function(d,e){var f=b.call(this,d,e,window.getComputedStyle(this,null).getPropertyValue(a));return f===bu?(this.style.removeProperty(a),null):f&&function(b){this.style.setProperty(a,f(b),c)}})},bx.text=function(a){return this.tween("text",function(b,c){this.textContent=typeof a=="function"?a.call(this,b,c):a})},bx.remove=function(){return this.each("end",function(){var a;!this.__transition__&&(a=this.parentNode)&&a.removeChild(this)})},bx.delay=function(a){var b=this;return b.each(typeof a=="function"?function(c,d,e){b[e][d].delay=+a.apply(this,arguments)}:(a=+a,function(c,d,e){b[e][d].delay=a}))},bx.duration=function(a){var b=this;return b.each(typeof a=="function"?function(c,d,e){b[e][d].duration=+a.apply(this,arguments)}:(a=+a,function(c,d,e){b[e][d].duration=a}))},bx.transition=function(){return this.select(i)};var bC=null,bD,bE;d3.timer=function(a,b,c){var d=!1,e,f=bC;if(arguments.length<3){if(arguments.length<2)b=0;else if(!isFinite(b))return;c=Date.now()}while(f){if(f.callback===a){f.then=c,f.delay=b,d=!0;break}e=f,f=f.next}d||(bC={callback:a,then:c,delay:b,next:bC}),bD||(bE=clearTimeout(bE),bD=1,bH(bF))},d3.timer.flush=function(){var a,b=Date.now(),c=bC;while(c)a=b-c.then,c.delay||(c.flush=c.callback(a)),c=c.next;bG()};var bH=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,17)};d3.transform=function(a){bM.setAttribute("transform",a);var b=bM.transform.baseVal.consolidate();return new bI(b?b.matrix:bN)},bI.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var bM=document.createElementNS(d3.ns.prefix.svg,"g"),bN={a:1,b:0,c:0,d:1,e:0,f:0},bO=180/Math.PI;d3.scale={},d3.scale.linear=function(){return bU([0,1],[0,1],d3.interpolate,!1)},d3.scale.log=function(){return ca(d3.scale.linear(),cc)};var cb=d3.format(".0e");cc.pow=function(a){return Math.pow(10,a)},cd.pow=function(a){return-Math.pow(10,-a)},d3.scale.pow=function(){return ce(d3.scale.linear(),1)},d3.scale.sqrt=function(){return d3.scale.pow().exponent(.5)},d3.scale.ordinal=function(){return cg([],{t:"range",x:[]})},d3.scale.category10=function(){return d3.scale.ordinal().range(ch)},d3.scale.category20=function(){return d3.scale.ordinal().range(ci)},d3.scale.category20b=function(){return d3.scale.ordinal().range(cj)},d3.scale.category20c=function(){return d3.scale.ordinal().range(ck)};var ch=["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],ci=["#1f77b4","#aec7e8","#ff7f0e","#ffbb78","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5","#8c564b","#c49c94","#e377c2","#f7b6d2","#7f7f7f","#c7c7c7","#bcbd22","#dbdb8d","#17becf","#9edae5"],cj=["#393b79","#5254a3","#6b6ecf","#9c9ede","#637939","#8ca252","#b5cf6b","#cedb9c","#8c6d31","#bd9e39","#e7ba52","#e7cb94","#843c39","#ad494a","#d6616b","#e7969c","#7b4173","#a55194","#ce6dbd","#de9ed6"],ck=["#3182bd","#6baed6","#9ecae1","#c6dbef","#e6550d","#fd8d3c","#fdae6b","#fdd0a2","#31a354","#74c476","#a1d99b","#c7e9c0","#756bb1","#9e9ac8","#bcbddc","#dadaeb","#636363","#969696","#bdbdbd","#d9d9d9"];d3.scale.quantile=function(){return cl([],[])},d3.scale.quantize=function(){return cm(0,1,[0,1])},d3.svg={},d3.svg.arc=function(){function e(){var e=a.apply(this,arguments),f=b.apply(this,arguments),g=c.apply(this,arguments)+cn,h=d.apply(this,arguments)+cn,i=(h<g&&(i=g,g=h,h=i),h-g),j=i<Math.PI?"0":"1",k=Math.cos(g),l=Math.sin(g),m=Math.cos(h),n=Math.sin(h);return i>=co?e?"M0,"+f+"A"+f+","+f+" 0 1,1 0,"+ -f+"A"+f+","+f+" 0 1,1 0,"+f+"M0,"+e+"A"+e+","+e+" 0 1,0 0,"+ -e+"A"+e+","+e+" 0 1,0 0,"+e+"Z":"M0,"+f+"A"+f+","+f+" 0 1,1 0,"+ -f+"A"+f+","+f+" 0 1,1 0,"+f+"Z":e?"M"+f*k+","+f*l+"A"+f+","+f+" 0 "+j+",1 "+f*m+","+f*n+"L"+e*m+","+e*n+"A"+e+","+e+" 0 "+j+",0 "+e*k+","+e*l+"Z":"M"+f*k+","+f*l+"A"+f+","+f+" 0 "+j+",1 "+f*m+","+f*n+"L0,0"+"Z"}var a=cp,b=cq,c=cr,d=cs;return e.innerRadius=function(b){return arguments.length?(a=d3.functor(b),e):a},e.outerRadius=function(a){return arguments.length?(b=d3.functor(a),e):b},e.startAngle=function(a){return arguments.length?(c=d3.functor(a),e):c},e.endAngle=function(a){return arguments.length?(d=d3.functor(a),e):d},e.centroid=function(){var e=(a.apply(this,arguments)+b.apply(this,arguments))/2,f=(c.apply(this,arguments)+d.apply(this,arguments))/2+cn;return[Math.cos(f)*e,Math.sin(f)*e]},e};var cn=-Math.PI/2,co=2*Math.PI-1e-6;d3.svg.line=function(){return ct(Object)};var cx={linear:cy,"step-before":cz,"step-after":cA,basis:cG,"basis-open":cH,"basis-closed":cI,bundle:cJ,cardinal:cD,"cardinal-open":cB,"cardinal-closed":cC,monotone:cS},cL=[0,2/3,1/3,0],cM=[0,1/3,2/3,0],cN=[0,1/6,2/3,1/6];d3.svg.line.radial=function(){var a=ct(cT);return a.radius=a.x,delete a.x,a.angle=a.y,delete a.y,a},cz.reverse=cA,cA.reverse=cz,d3.svg.area=function(){return cU(Object)},d3.svg.area.radial=function(){var a=cU(cT);return a.radius=a.x,delete a.x,a.innerRadius=a.x0,delete a.x0,a.outerRadius=a.x1,delete a.x1,a.angle=a.y,delete a.y,a.startAngle=a.y0,delete a.y0,a.endAngle=a.y1,delete a.y1,a},d3.svg.chord=function(){function f(c,d){var e=g(this,a,c,d),f=g(this,b,c,d);return"M"+e.p0+i(e.r,e.p1)+(h(e,f)?j(e.r,e.p1,e.r,e.p0):j(e.r,e.p1,f.r,f.p0)+i(f.r,f.p1)+j(f.r,f.p1,e.r,e.p0))+"Z"}function g(a,b,f,g){var h=b.call(a,f,g),i=c.call(a,h,g),j=d.call(a,h,g)+cn,k=e.call(a,h,g)+cn;return{r:i,a0:j,a1:k,p0:[i*Math.cos(j),i*Math.sin(j)],p1:[i*Math.cos(k),i*Math.sin(k)]}}function h(a,b){return a.a0==b.a0&&a.a1==b.a1}function i(a,b){return"A"+a+","+a+" 0 0,1 "+b}function j(a,b,c,d){return"Q 0,0 "+d}var a=cX,b=cY,c=cZ,d=cr,e=cs;return f.radius=function(a){return arguments.length?(c=d3.functor(a),f):c},f.source=function(b){return arguments.length?(a=d3.functor(b),f):a},f.target=function(a){return arguments.length?(b=d3.functor(a),f):b},f.startAngle=function(a){return arguments.length?(d=d3.functor(a),f):d},f.endAngle=function(a){return arguments.length?(e=d3.functor(a),f):e},f},d3.svg.diagonal=function(){function d(d,e){var f=a.call(this,d,e),g=b.call(this,d,e),h=(f.y+g.y)/2,i=[f,{x:f.x,y:h},{x:g.x,y:h},g];return i=i.map(c),"M"+i[0]+"C"+i[1]+" "+i[2]+" "+i[3]}var a=cX,b=cY,c=da;return d.source=function(b){return arguments.length?(a=d3.functor(b),d):a},d.target=function(a){return arguments.length?(b=d3.functor(a),d):b},d.projection=function(a){return arguments.length?(c=a,d):c},d},d3.svg.diagonal.radial=function(){var a=d3.svg.diagonal(),b=da,c=a.projection;return a.projection=function(a){return arguments.length?c(db(b=a)):b},a},d3.svg.mouse=function(a){return dd(a,d3.event)};var dc=/WebKit/.test(navigator.userAgent)?-1:0;d3.svg.touches=function(a,b){return arguments.length<2&&(b=d3.event.touches),b?d(b).map(function(b){var c=dd(a,b);return c.identifier=b.identifier,c}):[]},d3.svg.symbol=function(){function c(c,d){return(dg[a.call(this,c,d)]||dg.circle)(b.call(this,c,d))}var a=df,b=de;return c.type=function(b){return arguments.length?(a=d3.functor(b),c):a},c.size=function(a){return arguments.length?(b=d3.functor(a),c):b},c};var dg={circle:function(a){var b=Math.sqrt(a/Math.PI);return"M0,"+b+"A"+b+","+b+" 0 1,1 0,"+ -b+"A"+b+","+b+" 0 1,1 0,"+b+"Z"},cross:function(a){var b=Math.sqrt(a/5)/2;return"M"+ -3*b+","+ -b+"H"+ -b+"V"+ -3*b+"H"+b+"V"+ -b+"H"+3*b+"V"+b+"H"+b+"V"+3*b+"H"+ -b+"V"+b+"H"+ -3*b+"Z"},diamond:function(a){var b=Math.sqrt(a/(2*di)),c=b*di;return"M0,"+ -b+"L"+c+",0"+" 0,"+b+" "+ -c+",0"+"Z"},square:function(a){var b=Math.sqrt(a)/2;return"M"+ -b+","+ -b+"L"+b+","+ -b+" "+b+","+b+" "+ -b+","+b+"Z"},"triangle-down":function(a){var b=Math.sqrt(a/dh),c=b*dh/2;return"M0,"+c+"L"+b+","+ -c+" "+ -b+","+ -c+"Z"},"triangle-up":function(a){var b=Math.sqrt(a/dh),c=b*dh/2;return"M0,"+ -c+"L"+b+","+c+" "+ -b+","+c+"Z"}};d3.svg.symbolTypes=d3.keys(dg);var dh=Math.sqrt(3),di=Math.tan(30*Math.PI/180);d3.svg.axis=function(){function j(j){j.each(function(k,l,m){var n=d3.select(this),o=j.delay?function(a){var b=bz;try{return bz=j.id,a.transition().delay(j[m][l].delay).duration(j[m][l].duration).ease(j.ease())}finally{bz=b}}:Object,p=a.ticks?a.ticks.apply(a,g):a.domain(),q=h==null?a.tickFormat?a.tickFormat.apply(a,g):String:h,r=dl(a,p,i),s=n.selectAll(".minor").data(r,String),t=s.enter().insert("line","g").attr("class","tick minor").style("opacity",1e-6),u=o(s.exit()).style("opacity",1e-6).remove(),v=o(s).style("opacity",1),w=n.selectAll("g").data(p,String),x=w.enter().insert("g","path").style("opacity",1e-6),y=o(w.exit()).style("opacity",1e-6).remove(),z=o(w).style("opacity",1),A,B=bR(a),C=n.selectAll(".domain").data([0]),D=C.enter().append("path").attr("class","domain"),E=o(C),F=a.copy(),G=this.__chart__||F;this.__chart__=F,x.append("line").attr("class","tick"),x.append("text"),z.select("text").text(q);switch(b){case"bottom":A=dj,v.attr("x2",0).attr("y2",d),z.select("line").attr("x2",0).attr("y2",c),z.select("text").attr("x",0).attr("y",Math.max(c,0)+f).attr("dy",".71em").attr("text-anchor","middle"),E.attr("d","M"+B[0]+","+e+"V0H"+B[1]+"V"+e);break;case"top":A=dj,v.attr("x2",0).attr("y2",-d),z.select("line").attr("x2",0).attr("y2",-c),z.select("text").attr("x",0).attr("y",-(Math.max(c,0)+f)).attr("dy","0em").attr("text-anchor","middle"),E.attr("d","M"+B[0]+","+ -e+"V0H"+B[1]+"V"+ -e);break;case"left":A=dk,v.attr("x2",-d).attr("y2",0),z.select("line").attr("x2",-c).attr("y2",0),z.select("text").attr("x",-(Math.max(c,0)+f)).attr("y",0).attr("dy",".32em").attr("text-anchor","end"),E.attr("d","M"+ -e+","+B[0]+"H0V"+B[1]+"H"+ -e);break;case"right":A=dk,v.attr("x2",d).attr("y2",0),z.select("line").attr("x2",c).attr("y2",0),z.select("text").attr("x",Math.max(c,0)+f).attr("y",0).attr("dy",".32em").attr("text-anchor","start"),E.attr("d","M"+e+","+B[0]+"H0V"+B[1]+"H"+e)}if(a.ticks)x.call(A,G),z.call(A,F),y.call(A,F),t.call(A,G),v.call(A,F),u.call(A,F);else{var H=F.rangeBand()/2,I=function(a){return F(a)+H};x.call(A,I),z.call(A,I)}})}var a=d3.scale.linear(),b="bottom",c=6,d=6,e=6,f=3,g=[10],h,i=0;return j.scale=function(b){return arguments.length?(a=b,j):a},j.orient=function(a){return arguments.length?(b=a,j):b},j.ticks=function(){return arguments.length?(g=arguments,j):g},j.tickFormat=function(a){return arguments.length?(h=a,j):h},j.tickSize=function(a,b,f){if(!arguments.length)return c;var g=arguments.length-1;return c=+a,d=g>1?+b:c,e=g>0?+arguments[g]:c,j},j.tickPadding=function(a){return arguments.length?(f=+a,j):f},j.tickSubdivide=function(a){return arguments.length?(i=+a,j):i},j},d3.svg.brush=function(){function e(a){var g=b&&c?["n","e","s","w","nw","ne","se","sw"]:b?["e","w"]:c?["n","s"]:[];a.each(function(){var a=d3.select(this).on("mousedown.brush",f),h=a.selectAll(".background").data([,]),i=a.selectAll(".extent").data([,]),j=a.selectAll(".resize").data(g,String),k;h.enter().append("rect").attr("class","background").style("visibility","hidden").style("pointer-events","all").style("cursor","crosshair"),i.enter().append("rect").attr("class","extent").style("cursor","move"),j.enter().append("rect").attr("class",function(a){return"resize "+a}).attr("width",6).attr("height",6).style("visibility","hidden").style("pointer-events",e.empty()?"none":"all").style("cursor",function(a){return dE[a]}),j.exit().remove(),b&&(k=bR(b),h.attr("x",k[0]).attr("width",k[1]-k[0]),dx(a,d)),c&&(k=bR(c),h.attr("y",k[0]).attr("height",k[1]-k[0]),dy(a,d))})}function f(){var a=d3.select(d3.event.target);dm=e,dp=this,ds=d,dw=d3.svg.mouse(dp),(dt=a.classed("extent"))?(dw[0]=d[0][0]-dw[0],dw[1]=d[0][1]-dw[1]):a.classed("resize")?(du=d3.event.target.__data__,dw[0]=d[+/w$/.test(du)][0],dw[1]=d[+/^n/.test(du)][1]):d3.event.altKey&&(dv=dw.slice()),dq=!/^(n|s)$/.test(du)&&b,dr=!/^(e|w)$/.test(du)&&c,dn=g(this,arguments),dn("brushstart"),dB(),O()}function g(b,c){return function(d){var f=d3.event;try{d3.event={type:d,target:e},a[d].apply(b,c)}finally{d3.event=f}}}var a=d3.dispatch("brushstart","brush","brushend"),b,c,d=[[0,0],[0,0]];return e.x=function(a){return arguments.length?(b=a,e):b},e.y=function(a){return arguments.length?(c=a,e):c},e.extent=function(a){var f,g,h,i,j;return arguments.length?(b&&(f=a[0],g=a[1],c&&(f=f[0],g=g[0]),b.invert&&(f=b(f),g=b(g)),g<f&&(j=f,f=g,g=j),d[0][0]=f,d[1][0]=g),c&&(h=a[0],i=a[1],b&&(h=h[1],i=i[1]),c.invert&&(h=c(h),i=c(i)),i<h&&(j=h,h=i,i=j),d[0][1]=h,d[1][1]=i),e):(b&&(f=d[0][0],g=d[1][0],b.invert&&(f=b.invert(f),g=b.invert(g)),g<f&&(j=f,f=g,g=j)),c&&(h=d[0][1],i=d[1][1],c.invert&&(h=c.invert(h),i=c.invert(i)),i<h&&(j=h,h=i,i=j)),b&&c?[[f,h],[g,i]]:b?[f,g]:c&&[h,i])},e.clear=function(){return d[0][0]=d[0][1]=d[1][0]=d[1][1]=0,e},e.empty=function(){return b&&d[0][0]===d[1][0]||c&&d[0][1]===d[1][1]},d3.select(window).on("mousemove.brush",dB).on("mouseup.brush",dD).on("keydown.brush",dz).on("keyup.brush",dA),d3.rebind(e,a,"on")};var dm,dn,dp,dq,dr,ds,dt,du,dv,dw,dE={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"};d3.behavior={},d3.behavior.drag=function(){function c(){this.on("mousedown.drag",e).on("touchstart.drag",e),d3.select(window).on("mousemove.drag",dO).on("touchmove.drag",dO).on("mouseup.drag",dP,!0).on("touchend.drag",dP,!0).on("click.drag",dQ,!0)}function d(){dF=a,dG=d3.event.target,dH=this,dI=arguments,dK=dN(),b?(dJ=b.apply(dH,dI),dJ=[dJ.x-dK[0],dJ.y-dK[1]]):dJ=[0,0],dL=0}function e(){d.apply(this,arguments),dM("dragstart")}var a=d3.dispatch("drag","dragstart","dragend"),b=null;return c.origin=function(a){return arguments.length?(b=a,c):b},d3.rebind(c,a,"on")};var dF,dG,dH,dI,dJ,dK,dL;d3.behavior.zoom=function(){function d(){this.on("mousedown.zoom",f).on("mousewheel.zoom",g).on("DOMMouseScroll.zoom",g).on("dblclick.zoom",h).on("touchstart.zoom",i),d3.select(window).on("mousemove.zoom",ef).on("mouseup.zoom",eg).on("touchmove.zoom",ee).on("touchend.zoom",ed).on("click.zoom",eh,!0)}function e(){dW=a,dX=c,dY=b.zoom,dZ=d3.event.target,d$=this,d_=arguments}function f(){e.apply(this,arguments),dS=eb(d3.svg.mouse(d$)),ea=0,d3.event.preventDefault(),window.focus()}function g(){e.apply(this,arguments),dT||(dT=eb(d3.svg.mouse(d$))),ei(ec()+a[2],d3.svg.mouse(d$),dT)}function h(){e.apply(this,arguments);var b=d3.svg.mouse(d$);ei(d3.event.shiftKey?Math.ceil(a[2]-1):Math.floor(a[2]+1),b,eb(b))}function i(){e.apply(this,arguments);var b=ed(),c,d=Date.now();b.length===1&&d-dV<300&&ei(1+Math.floor(a[2]),c=b[0],dU[c.identifier]),dV=d}var a=[0,0,0],b=d3.dispatch("zoom"),c=ej;return d.extent=function(a){return arguments.length?(c=a==null?ej:a,d):c},d3.rebind(d,b,"on")};var dR,dS,dT,dU={},dV=0,dW,dX,dY,dZ,d$,d_,ea,ej=[[-Infinity,Infinity],[-Infinity,Infinity],[-Infinity,Infinity]]})();