Skip to content

Instantly share code, notes, and snippets.

@michalskop
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michalskop/ff43ca4f6ee65cb1981f to your computer and use it in GitHub Desktop.
Save michalskop/ff43ca4f6ee65cb1981f to your computer and use it in GitHub Desktop.
EU: Elections 2014 in Czechia, detailed
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ANO vs. 15 %</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="d3.tip.js"></script>
<style>
#chart {
height: 325px;/*502*/
width: 620px;/*900*/
/*border: 1px solid;*/
background-color: white;
}
circle {
fill: #888;
fill-opacity: 0.01;
stroke-opacity: 0.75;
stroke: #f00;
}
.group1{
stroke: #009ee0;
}
.green {
color: #009ee0;
}
.red {
color: #f00;
}
.stronger {
color: yellow;
}
/* D3 tips */
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
/* Creates a small triangle extender for the tooltip */
/*.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}*/
/* Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#"><span class="green">ANO</span> vs. <span class="red">15 %</span> - Evropské volby 2014 - European Elections 2014</a>
</div>
</div>
</div>
<!-- chart -->
<p id="chart"></p>
<div class="alert alert-info" >
<span class="green">ANO &gt 15 %</span>; <span class="red">ANO &lt 15 %</span><br>
<strong>Velikost bubliny</strong> odpovídá počtu voličů, <strong>tloušťka kruhu</strong> ukazuje rozdíl porovnávaných hodnot.<br>
The <strong>size</strong> of bubbles represents number of voters, the <strong>ring width</strong> represents the difference.
</div>
<script type="text/javascript">
//subcharts' specifications
//load specs from
var specs = {
'lngMin': 12.156,
'lngMax': 18.84,
'latMin': 48.6,
'latMax': 51.023,
'max_population': 45000,
'max_size': 50,
'file': 'epcz_ano_15_2014.json',
'height': 325,
'width': 620,
};
// Chart dimensions.
var margin = {top: 10, right: 0, bottom: 0, left: 30},
width = specs.width - margin.right,
height = specs.height - margin.top - margin.bottom;
//Various scales. These domains make assumptions of data, naturally.
var
xScale = d3.scale.linear()
.domain([specs.lngMin, specs.lngMax])
.range([0, width]),
yScale = d3.scale.linear()
.domain([specs.latMin, specs.latMax])
.range([height, 0]),
radiusScale = d3.scale.sqrt()
.domain([0, specs.max_population])
.range([0, specs.max_size]);
/* Initialize tooltip */
tip = d3.tip().attr('class', 'd3-tip').html(function(d) {
return '<span class="stronger">' + d.title + '</span><br><br>ANO: ' + d.votes1 + '<br>15 %: ' + d.votes2;
});
// Create the SVG container and set the origin.
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
/* Invoke the tip in the context of your visualization */
svg.call(tip);
// Add tooltip div
var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 1e-6);
// Load the data.
d3.json(specs.file, function(data) {
nodes = data
.map(function(d) {
return {
x: xScale(parseFloat(d.lng)),
y: yScale(parseFloat(d.lat)),
r: (radiusScale(d.votes[0])+radiusScale(d.votes[1]))/2,
r2: Math.abs(radiusScale(d.votes[0])-radiusScale(d.votes[1])),
title: d.town,
name: d.town,
id: d.id,
votes1: d.votes[0],
votes2: d.votes[1],
classname: compare(d.votes[0],d.votes[1])
};
});
var circle = svg.selectAll("circle")
.data(data);
var node = svg.selectAll("circle")
.data(nodes)
.enter().append("circle")
.attr("r",function(d) {
return d.r;
})
.attr("stroke-width", function(d) {return d.r2;})
.attr("cx", function(d) {return d.x;})
.attr("cy", function(d) {return d.y;})
.attr("class", function(d) {return d.classname})
.on("mouseover", tip.show)
.on("mouseout", tip.hide);
});
function compare(a,b) {
if (a > b) return 'group1'; else return 'group2';
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ČSSD vs. 15 %</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="d3.tip.js"></script>
<style>
#chart {
height: 325px;/*502*/
width: 620px;/*900*/
/*border: 1px solid;*/
background-color: white;
}
circle {
fill: #888;
fill-opacity: 0.01;
stroke-opacity: 0.75;
stroke: #000;
}
.group1{
stroke: #f54200;
}
.green {
color: #f54200;
}
.red {
color: #000;
}
.stronger {
color: yellow;
}
/* D3 tips */
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
/* Creates a small triangle extender for the tooltip */
/*.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}*/
/* Style northward tooltips differently */
.d3-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#"><span class="green">ČSSD</span> vs. <span class="red" style="color:#777">15 %</span> - Evropské volby 2014 - European Elections 2014</a>
</div>
</div>
</div>
<!-- chart -->
<p id="chart"></p>
<div class="alert alert-info" >
<span class="green">ČSSD &gt 15 %</span>; <span class="red">ČSSD &lt 15 %</span><br>
<strong>Velikost bubliny</strong> odpovídá počtu voličů, <strong>tloušťka kruhu</strong> ukazuje rozdíl porovnávaných hodnot.<br>
The <strong>size</strong> of bubbles represents number of voters, the <strong>ring width</strong> represents the difference.
</div>
<script type="text/javascript">
//subcharts' specifications
//load specs from
var specs = {
'lngMin': 12.156,
'lngMax': 18.84,
'latMin': 48.6,
'latMax': 51.023,
'max_population': 45000,
'max_size': 50,
'file': 'epcz_cssd_15_2014.json',
'height': 325,
'width': 620,
};
// Chart dimensions.
var margin = {top: 10, right: 0, bottom: 0, left: 30},
width = specs.width - margin.right,
height = specs.height - margin.top - margin.bottom;
//Various scales. These domains make assumptions of data, naturally.
var
xScale = d3.scale.linear()
.domain([specs.lngMin, specs.lngMax])
.range([0, width]),
yScale = d3.scale.linear()
.domain([specs.latMin, specs.latMax])
.range([height, 0]),
radiusScale = d3.scale.sqrt()
.domain([0, specs.max_population])
.range([0, specs.max_size]);
/* Initialize tooltip */
tip = d3.tip().attr('class', 'd3-tip').html(function(d) {
return '<span class="stronger">' + d.title + '</span><br><br>ČSSD: ' + d.votes1 + '<br>15 %: ' + d.votes2;
});
// Create the SVG container and set the origin.
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
/* Invoke the tip in the context of your visualization */
svg.call(tip);
// Add tooltip div
var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 1e-6);
// Load the data.
d3.json(specs.file, function(data) {
nodes = data
.map(function(d) {
return {
x: xScale(parseFloat(d.lng)),
y: yScale(parseFloat(d.lat)),
r: (radiusScale(d.votes[0])+radiusScale(d.votes[1]))/2,
r2: Math.abs(radiusScale(d.votes[0])-radiusScale(d.votes[1])),
title: d.town,
name: d.town,
id: d.id,
votes1: d.votes[0],
votes2: d.votes[1],
classname: compare(d.votes[0],d.votes[1])
};
});
var circle = svg.selectAll("circle")
.data(data);
var node = svg.selectAll("circle")
.data(nodes)
.enter().append("circle")
.attr("r",function(d) {
return d.r;
})
.attr("stroke-width", function(d) {return d.r2;})
.attr("cx", function(d) {return d.x;})
.attr("cy", function(d) {return d.y;})
.attr("class", function(d) {return d.classname})
.on("mouseover", tip.show)
.on("mouseout", tip.hide);
});
function compare(a,b) {
if (a > b) return 'group1'; else return 'group2';
}
</script>
</body>
</html>
# -*- coding: utf-8 -*-
# python 3
import csv
import json
from slugify import slugify
i = 0
people = []
votes = []
winners = {}
with open('obce_geocoded_adj.csv','r') as f:
csvreader = csv.reader(f,delimiter=",")
for row in csvreader:
if i <= 1:
if i == 1:
for j in range(10,49):
people.append(row[j])
winners[row[j]] = 0
else:
r = {}
r['id'] = row[4]
r['town'] = row[5]
r['lat'] = row[50]
r['lng'] = row[49]
r['votes'] = []
maxi = 0
sumi = 0
for j in range(0,38):
r['votes'].append(row[j+10])
sumi = sumi + int(row[j+10])
if (int(row[j+10])) > maxi:
winner = people[j]
maxi = int(row[j+10])
r['winner'] = winner
r['winner_class'] = slugify(winner),
r['population'] = sumi
winners[winner] = winners[winner] + 1
votes.append(r)
i = i + 1
print(winners)
#print(people)
#print(r)
#raise(Exception,'dipy')
colors = {
'ne-brusel': '#888',
'moravane': '#888',
'top-09': '#808',
'aneo': '#888',
'snk-ed': '#888',
'svobodni': '#080',
'lev-21': '#888',
'hss': '#888',
'pirati': '#000',
'vize-2014': '#888',
'kdu-csl': '#fedc35',
'cssd': '#f54200',
'kscm': '#ff0000',
'rds': '#888',
'vv': '#888',
'ksc': '#888',
'zeleni': '#0b0',
'antibursik': '#888',
'les': '#888',
'usvit': '#0ff',
'rozumni': '#888',
'ods': '#008',
'sp-a-no': '#888',
'ano': '#009ee0'
}
data = {'people':people,'votes':votes,'colors':colors}
with open('epcz_2014.json', 'w') as outfile:
json.dump(data, outfile)
outfile.close()
# -*- coding: utf-8 -*-
# python 3
import csv
import json
from slugify import slugify
party = 'kscm'
percent = 10
i = 0
people = []
votes = []
winners = {}
with open('obce_geocoded_adj.csv','r') as f:
csvreader = csv.reader(f,delimiter=",")
for row in csvreader:
if i <= 1:
if i == 1:
for j in range(10,49):
people.append(row[j])
winners[row[j]] = 0
else:
r = {}
r['id'] = row[4]
r['town'] = row[5]
r['lat'] = row[50]
r['lng'] = row[49]
r['votes'] = []
maxi = 0
sumi = 0
for j in range(0,38):
if slugify(people[j]) == party:
r['votes'].append(int(row[j+10]))
r['votes'].append(int(percent/100*int(row[9])))
# r['votes'].append(row[j+10])
# sumi = sumi + int(row[j+10])
# if (int(row[j+10])) > maxi:
# winner = people[j]
# maxi = int(row[j+10])
# r['winner'] = winner
# r['winner_class'] = slugify(winner),
# r['population'] = sumi
# winners[winner] = winners[winner] + 1
votes.append(r)
i = i + 1
#print(winners)
#print(people)
#print(r)
#raise(Exception,'dipy')
colors = {
'ne-brusel': '#888',
'moravane': '#888',
'top-09': '#808',
'aneo': '#888',
'snk-ed': '#888',
'svobodni': '#080',
'lev-21': '#888',
'hss': '#888',
'pirati': '#000',
'vize-2014': '#888',
'kdu-csl': '#fedc35',
'cssd': '#f54200',
'kscm': '#ff0000',
'rds': '#888',
'vv': '#888',
'ksc': '#888',
'zeleni': '#0b0',
'antibursik': '#888',
'les': '#888',
'usvit': '#0ff',
'rozumni': '#888',
'ods': '#008',
'sp-a-no': '#888',
'ano': '#009ee0'
}
#data = {'people':people,'votes':votes,'colors':colors}
with open('epcz_'+party+'_'+str(percent)+'_2014.json', 'w') as outfile:
json.dump(votes, outfile)
outfile.close()
<!DOCTYPE html>
<html>
<head>
<title>European election 2014 in the Czech republic</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script>
// see http://leafletjs.com/reference.html
L_PREFER_CANVAS = true;
</script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script>
<style type="text/css">
html, body, #map {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.leaflet-tile-pane {
opacity: .3
}
.leaflet-container {
background-color: #fff;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">European election 2014 in the Czech republic</a>
</div>
</div>
</div>
<div style="position:fixed;top:50px;z-index:1000;">
<div class="alert alert-info" >The <strong>size</strong> of bubbles represents number of voters, the <strong>color</strong> represents the winner.</div>
</div> <div style="position:fixed;top:125px;z-index:1000;">
<div class="alert alert-info" style="float:left;">
<svg height="20" width="20"><circle cx="10" cy="10" r="10" fill="#009ee0"></svg> ANO<br/>
<svg height="20" width="20"><circle cx="10" cy="10" r="10" fill="#808"></svg> TOP 09<br/>
<svg height="20" width="20"><circle cx="10" cy="10" r="10" fill="#f54200"></svg> ČSSD<br/>
<svg height="20" width="20"><circle cx="10" cy="10" r="10" fill="#ff0000"></svg> KSČM<br/>
<svg height="20" width="20"><circle cx="10" cy="10" r="10" fill="#fedc35"></svg> KDU-ČSL
</div>
</div>
<div id="map" style="margin-top:40px;"></div>
<script type="text/javascript">
// Create the map
var map = L.map('map',{zoomControl: false}).setView([50,15], 7);
map.addControl( L.control.zoom({position: 'topright'}) );
// add an OpenStreetMap tile layer
// also see http://wiki.openstreetmap.org/wiki/Tiles
//L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
L.tileLayer('http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png', {
attribution: 'CC-BY Michal Škop <a href="http://kohovolit.eu">KohoVolit.eu</a> | &copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
//add circles
$.getJSON( "epcz_2014.json", function (data) {
$.each(data.votes, function (index, value) {
description = "<strong>" + value.town + "</strong> (" + value.population + ")<br>";
tuples = [];
for (var key in value.votes) {
tuples.push([key,parseInt(value.votes[key])]);
}
tuples.sort(function(a, b) {
a = a[1];
b = b[1];
return a < b ? 1 : (a > b ? -1 : 0);
});
for (i = 0; i < 9; i++) {
tmp = Math.round(parseInt(tuples[i][1]) / parseInt(value.population) * 100);
description += data.people[tuples[i][0]] + ": " + tmp +"%<br>";
}
/*sum = 0;
$.each(value.description, function (i, v) {
tmp = Math.round(parseInt(v.value) / parseInt(value.population) * 1000) / 10;
description += v.name + ': ' + tmp + '% (' + v.value + ' hlasů)<br>';
sum += parseInt(v.value)
});
tmp = Math.round((parseInt(value.population) - sum) / parseInt(value.population) * 1000) / 10;
tmp2 = value.population - sum;
description += "Ostatní: " + tmp + '% (' + tmp2 + ' hlasů)';*/
circle = L.circle([value.lat, value.lng], Math.sqrt(parseInt(value.population)*2000), {
color: data.colors[value.winner_class],
fillColor: data.colors[value.winner_class],
fillOpacity: 0.85,
weight: 1,
}).addTo(map);
circle.bindPopup(description);
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-8592359-13', 'ocks.org');
ga('send', 'pageview');
</script>
</body>
</html>
// d3.tip
// Copyright (c) 2013 Justin Palmer
//
// Tooltips for d3.js SVG visualizations
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module with d3 as a dependency.
define(['d3'], factory)
} else {
// Browser global.
root.d3.tip = factory(root.d3)
}
}(this, function (d3) {
// Public - contructs a new tooltip
//
// Returns a tip
return function() {
var direction = d3_tip_direction,
offset = d3_tip_offset,
html = d3_tip_html,
node = initNode(),
svg = null,
point = null,
target = null
function tip(vis) {
svg = getSVGNode(vis)
point = svg.createSVGPoint()
document.body.appendChild(node)
}
// Public - show the tooltip on the screen
//
// Returns a tip
tip.show = function() {
var args = Array.prototype.slice.call(arguments)
if(args[args.length - 1] instanceof SVGElement) target = args.pop()
var content = html.apply(this, args),
poffset = offset.apply(this, args),
dir = direction.apply(this, args),
nodel = d3.select(node),
i = directions.length,
coords,
scrollTop = document.documentElement.scrollTop || document.body.scrollTop,
scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft
nodel.html(content)
.style({ opacity: 1, 'pointer-events': 'all' })
while(i--) nodel.classed(directions[i], false)
coords = direction_callbacks.get(dir).apply(this)
nodel.classed(dir, true).style({
top: (coords.top + poffset[0]) + scrollTop + 'px',
left: (coords.left + poffset[1]) + scrollLeft + 'px'
})
return tip
}
// Public - hide the tooltip
//
// Returns a tip
tip.hide = function() {
nodel = d3.select(node)
nodel.style({ opacity: 0, 'pointer-events': 'none' })
return tip
}
// Public: Proxy attr calls to the d3 tip container. Sets or gets attribute value.
//
// n - name of the attribute
// v - value of the attribute
//
// Returns tip or attribute value
tip.attr = function(n, v) {
if (arguments.length < 2 && typeof n === 'string') {
return d3.select(node).attr(n)
} else {
var args = Array.prototype.slice.call(arguments)
d3.selection.prototype.attr.apply(d3.select(node), args)
}
return tip
}
// Public: Proxy style calls to the d3 tip container. Sets or gets a style value.
//
// n - name of the property
// v - value of the property
//
// Returns tip or style property value
tip.style = function(n, v) {
if (arguments.length < 2 && typeof n === 'string') {
return d3.select(node).style(n)
} else {
var args = Array.prototype.slice.call(arguments)
d3.selection.prototype.style.apply(d3.select(node), args)
}
return tip
}
// Public: Set or get the direction of the tooltip
//
// v - One of n(north), s(south), e(east), or w(west), nw(northwest),
// sw(southwest), ne(northeast) or se(southeast)
//
// Returns tip or direction
tip.direction = function(v) {
if (!arguments.length) return direction
direction = v == null ? v : d3.functor(v)
return tip
}
// Public: Sets or gets the offset of the tip
//
// v - Array of [x, y] offset
//
// Returns offset or
tip.offset = function(v) {
if (!arguments.length) return offset
offset = v == null ? v : d3.functor(v)
return tip
}
// Public: sets or gets the html value of the tooltip
//
// v - String value of the tip
//
// Returns html value or tip
tip.html = function(v) {
if (!arguments.length) return html
html = v == null ? v : d3.functor(v)
return tip
}
function d3_tip_direction() { return 'n' }
function d3_tip_offset() { return [0, 0] }
function d3_tip_html() { return ' ' }
var direction_callbacks = d3.map({
n: direction_n,
s: direction_s,
e: direction_e,
w: direction_w,
nw: direction_nw,
ne: direction_ne,
sw: direction_sw,
se: direction_se
}),
directions = direction_callbacks.keys()
function direction_n() {
var bbox = getScreenBBox()
return {
top: bbox.n.y - node.offsetHeight,
left: bbox.n.x - node.offsetWidth / 2
}
}
function direction_s() {
var bbox = getScreenBBox()
return {
top: bbox.s.y,
left: bbox.s.x - node.offsetWidth / 2
}
}
function direction_e() {
var bbox = getScreenBBox()
return {
top: bbox.e.y - node.offsetHeight / 2,
left: bbox.e.x
}
}
function direction_w() {
var bbox = getScreenBBox()
return {
top: bbox.w.y - node.offsetHeight / 2,
left: bbox.w.x - node.offsetWidth
}
}
function direction_nw() {
var bbox = getScreenBBox()
return {
top: bbox.nw.y - node.offsetHeight,
left: bbox.nw.x - node.offsetWidth
}
}
function direction_ne() {
var bbox = getScreenBBox()
return {
top: bbox.ne.y - node.offsetHeight,
left: bbox.ne.x
}
}
function direction_sw() {
var bbox = getScreenBBox()
return {
top: bbox.sw.y,
left: bbox.sw.x - node.offsetWidth
}
}
function direction_se() {
var bbox = getScreenBBox()
return {
top: bbox.se.y,
left: bbox.e.x
}
}
function initNode() {
var node = d3.select(document.createElement('div'))
node.style({
position: 'absolute',
top: 0,
opacity: 0,
'pointer-events': 'none',
'box-sizing': 'border-box'
})
return node.node()
}
function getSVGNode(el) {
el = el.node()
if(el.tagName.toLowerCase() == 'svg')
return el
return el.ownerSVGElement
}
// Private - gets the screen coordinates of a shape
//
// Given a shape on the screen, will return an SVGPoint for the directions
// n(north), s(south), e(east), w(west), ne(northeast), se(southeast), nw(northwest),
// sw(southwest).
//
// +-+-+
// | |
// + +
// | |
// +-+-+
//
// Returns an Object {n, s, e, w, nw, sw, ne, se}
function getScreenBBox() {
var targetel = target || d3.event.target,
bbox = {},
matrix = targetel.getScreenCTM(),
tbbox = targetel.getBBox(),
width = tbbox.width,
height = tbbox.height,
x = tbbox.x,
y = tbbox.y
point.x = x
point.y = y
bbox.nw = point.matrixTransform(matrix)
point.x += width
bbox.ne = point.matrixTransform(matrix)
point.y += height
bbox.se = point.matrixTransform(matrix)
point.x -= width
bbox.sw = point.matrixTransform(matrix)
point.y -= height / 2
bbox.w = point.matrixTransform(matrix)
point.x += width
bbox.e = point.matrixTransform(matrix)
point.x -= width / 2
point.y -= height / 2
bbox.n = point.matrixTransform(matrix)
point.y += height
bbox.s = point.matrixTransform(matrix)
return bbox
}
return tip
};
}));
This file has been truncated, but you can view the full file.
{"colors": {"snk-ed": "#888", "antibursik": "#888", "kdu-csl": "#fedc35", "rds": "#888", "vize-2014": "#888", "pirati": "#000", "moravane": "#888", "usvit": "#0ff", "hss": "#888", "vv": "#888", "cssd": "#f54200", "kscm": "#ff0000", "ods": "#008", "zeleni": "#0b0", "les": "#888", "lev-21": "#888", "top-09": "#808", "ano": "#009ee0", "ksc": "#888", "aneo": "#888", "sp-a-no": "#888", "ne-brusel": "#888", "rozumni": "#888", "svobodni": "#080"}, "votes": [{"votes": ["2163", "155", "543", "1030", "12207", "2028", "63791", "2007", "986", "14678", "135", "32", "81", "23653", "34247", "79", "104", "203", "20339", "481", "3729", "16693", "17207", "129", "566", "926", "97", "643", "108", "185", "14787", "242", "423", "118", "64", "611", "932", "203"], "lat": "50.087106", "winner": "TOP 09", "id": "554782", "population": 236605, "town": "Praha", "winner_class": ["top-09"], "lng": "14.421111"}, {"votes": ["230", "62", "86", "277", "8130", "494", "11340", "355", "251", "4953", "10", "23", "17", "9354", "10273", "19", "1164", "35", "5104", "78", "1484", "4043", "4638", "61", "188", "280", "32", "226", "36", "85", "3232", "52", "77", "23", "10", "122", "224", "32"], "lat": "49.193816", "winner": "TOP 09", "id": "582786", "population": 67100, "town": "Brno", "winner_class": ["top-09"], "lng": "16.606085"}, {"votes": ["186", "181", "43", "257", "3265", "433", "3439", "118", "214", "5438", "10", "45", "18", "9887", "5776", "26", "133", "27", "4560", "67", "1415", "1106", "1667", "55", "198", "160", "19", "399", "64", "58", "1593", "66", "35", "32", "15", "65", "153", "26"], "lat": "49.841743", "winner": "\u010cSSD", "id": "554821", "population": 41249, "town": "Ostrava", "winner_class": ["cssd"], "lng": "18.291581"}, {"votes": ["143", "19", "44", "114", "1279", "320", "6536", "119", "105", "2707", "3", "9", "8", "3635", "4210", "10", "7", "22", "1762", "48", "632", "861", "1636", "21", "84", "111", "5", "127", "14", "33", "1261", "37", "72", "15", "10", "50", "176", "19"], "lat": "49.748147", "winner": "TOP 09", "id": "554791", "population": 26264, "town": "Plze\u0148", "winner_class": ["top-09"], "lng": "13.377767"}, {"votes": ["52", "16", "44", "97", "1608", "176", "2406", "85", "82", "1387", "3", "71", "6", "2316", "2610", "1", "83", "10", "1158", "39", "428", "682", "770", "4", "60", "70", "9", "47", "20", "44", "783", "18", "48", "10", "1", "31", "74", "10"], "lat": "49.593699", "winner": "ANO", "id": "500496", "population": 15359, "town": "Olomouc", "winner_class": ["ano"], "lng": "17.251466"}, {"votes": ["85", "25", "11", "56", "572", "303", "3127", "83", "72", "1134", "2", "5", "5", "1858", "3409", "6", "14", "53", "1124", "59", "463", "896", "1061", "14", "52", "83", "6", "44", "12", "19", "935", "20", "26", "13", "3", "39", "60", "13"], "lat": "50.769002", "winner": "ANO", "id": "563889", "population": 15762, "town": "Liberec", "winner_class": ["ano"], "lng": "15.058251"}, {"votes": ["81", "12", "32", "90", "1105", "197", "2810", "81", "49", "1935", "7", "4", "4", "2159", "3080", "2", "9", "38", "2610", "35", "482", "677", "1165", "8", "58", "83", "6", "70", "13", "24", "731", "10", "29", "13", "3", "26", "57", "13"], "lat": "50.21233", "winner": "ANO", "id": "569810", "population": 17808, "town": "Hradec Kr\u00e1lov\u00e9", "winner_class": ["ano"], "lng": "15.837246"}, {"votes": ["78", "18", "26", "80", "1053", "183", "2614", "69", "48", "1607", "5", "2", "4", "1679", "2220", "4", "5", "10", "1012", "61", "475", "635", "971", "5", "72", "94", "3", "67", "18", "22", "665", "59", "16", "8", "11", "24", "77", "11"], "lat": "48.973841", "winner": "TOP 09", "id": "544256", "population": 14011, "town": "\u010cesk\u00e9 Bud\u011bjovice", "winner_class": ["top-09"], "lng": "14.47439"}, {"votes": ["99", "20", "11", "54", "280", "276", "1410", "58", "144", "1396", "10", "1", "13", "1325", "2414", "3", "4", "11", "768", "54", "408", "428", "587", "7", "158", "52", "35", "98", "12", "47", "580", "16", "15", "9", "5", "25", "67", "8"], "lat": "50.660316", "winner": "ANO", "id": "554804", "population": 10908, "town": "\u00dast\u00ed nad Labem", "winner_class": ["ano"], "lng": "14.036975"}, {"votes": ["147", "15", "24", "67", "829", "164", "1927", "70", "45", "1370", "6", "1", "9", "1642", "2292", "7", "13", "357", "1154", "26", "341", "452", "912", "20", "51", "77", "2", "67", "6", "19", "556", "35", "16", "8", "3", "12", "50", "5"], "lat": "50.039049", "winner": "ANO", "id": "555134", "population": 12797, "town": "Pardubice", "winner_class": ["ano"], "lng": "15.778958"}, {"votes": ["22", "35", "15", "48", "527", "92", "574", "24", "52", "1568", "2", "13", "3", "2611", "1242", "1", "43", "4", "576", "25", "326", "159", "294", "4", "63", "37", "0", "88", "11", "10", "394", "2", "12", "11", "0", "11", "37", "7"], "lat": "49.783083", "winner": "\u010cSSD", "id": "555088", "population": 8943, "town": "Hav\u00ed\u0159ov", "winner_class": ["cssd"], "lng": "18.422702"}, {"votes": ["59", "21", "19", "65", "1644", "184", "1714", "44", "59", "934", "0", "5", "1", "1824", "2733", "2", "66", "4", "801", "19", "488", "331", "741", "2", "42", "61", "3", "26", "7", "40", "557", "32", "14", "4", "1", "19", "39", "7"], "lat": "49.226624", "winner": "ANO", "id": "585068", "population": 12612, "town": "Zl\u00edn", "winner_class": ["ano"], "lng": "17.665842"}, {"votes": ["41", "11", "46", "53", "371", "146", "1259", "44", "51", "1123", "2", "0", "6", "1245", "1388", "6", "8", "8", "566", "19", "235", "311", "587", "7", "48", "42", "1", "59", "3", "13", "429", "10", "12", "13", "3", "43", "32", "1"], "lat": "50.147821", "winner": "ANO", "id": "532053", "population": 8242, "town": "Kladno", "winner_class": ["ano"], "lng": "14.102998"}, {"votes": ["19", "18", "8", "38", "133", "121", "607", "25", "54", "983", "2", "6", "1", "965", "1188", "4", "3", "10", "446", "23", "282", "239", "300", "3", "83", "33", "1", "100", "8", "10", "314", "10", "8", "5", "4", "11", "38", "2"], "lat": "50.502867", "winner": "ANO", "id": "567027", "population": 6105, "town": "Most", "winner_class": ["ano"], "lng": "13.640524"}, {"votes": ["26", "12", "9", "49", "840", "112", "765", "25", "23", "753", "1", "2", "2", "1440", "1268", "2", "23", "15", "729", "20", "250", "256", "293", "1", "42", "33", "6", "50", "12", "4", "357", "16", "10", "4", "6", "14", "12", "6"], "lat": "49.938873", "winner": "\u010cSSD", "id": "505927", "population": 7488, "town": "Opava", "winner_class": ["cssd"], "lng": "17.90251"}, {"votes": ["5", "15", "3", "14", "350", "98", "193", "12", "43", "1002", "1", "8", "14", "1477", "639", "3", "22", "6", "305", "11", "222", "95", "83", "7", "25", "24", "4", "81", "8", "13", "177", "21", "6", "2", "1", "9", "30", "3"], "lat": "49.853942", "winner": "\u010cSSD", "id": "598917", "population": 5032, "town": "Karvin\u00e1", "winner_class": ["cssd"], "lng": "18.542995"}, {"votes": ["15", "14", "5", "58", "841", "74", "574", "22", "29", "878", "3", "3", "21", "2592", "961", "2", "18", "5", "486", "12", "263", "168", "233", "4", "29", "29", "1", "27", "20", "4", "288", "7", "26", "4", "3", "6", "29", "5"], "lat": "49.685506", "winner": "\u010cSSD", "id": "598003", "population": 7759, "town": "Fr\u00fddek-M\u00edstek", "winner_class": ["cssd"], "lng": "18.350637"}, {"votes": ["53", "11", "6", "42", "725", "100", "922", "33", "46", "754", "2", "2", "1", "985", "943", "1", "22", "13", "501", "19", "223", "309", "425", "1", "31", "23", "5", "29", "2", "6", "378", "15", "9", "2", "5", "14", "20", "9"], "lat": "49.396014", "winner": "\u010cSSD", "id": "586846", "population": 6687, "town": "Jihlava", "winner_class": ["cssd"], "lng": "15.591191"}, {"votes": ["29", "7", "4", "29", "166", "135", "841", "34", "45", "813", "3", "1", "1", "621", "1036", "2", "7", "7", "489", "23", "185", "255", "314", "6", "29", "29", "1", "42", "6", "4", "288", "8", "5", "5", "0", "13", "31", "5"], "lat": "50.641389", "winner": "ANO", "id": "567442", "population": 5519, "town": "Teplice", "winner_class": ["ano"], "lng": "13.824423"}, {"votes": ["35", "12", "14", "41", "148", "109", "774", "25", "43", "670", "2", "0", "3", "840", "1249", "2", "2", "10", "401", "18", "262", "172", "321", "8", "54", "30", "8", "65", "11", "2", "310", "10", "12", "8", "3", "12", "47", "2"], "lat": "50.773765", "winner": "ANO", "id": "562335", "population": 5735, "town": "D\u011b\u010d\u00edn", "winner_class": ["ano"], "lng": "14.195645"}, {"votes": ["44", "12", "6", "27", "229", "166", "1287", "31", "52", "713", "3", "2", "2", "874", "1601", "3", "3", "8", "560", "28", "242", "199", "323", "5", "40", "45", "2", "62", "20", "8", "363", "5", "11", "5", "1", "16", "27", "6"], "lat": "50.228046", "winner": "ANO", "id": "554961", "population": 7031, "town": "Karlovy Vary", "winner_class": ["ano"], "lng": "12.865922"}, {"votes": ["22", "36", "2", "17", "142", "84", "433", "18", "33", "754", "2", "4", "0", "732", "891", "2", "0", "5", "278", "18", "200", "180", "290", "4", "35", "23", "1", "47", "4", "26", "192", "14", "6", "0", "0", "7", "11", "3"], "lat": "50.462475", "winner": "ANO", "id": "562971", "population": 4516, "town": "Chomutov", "winner_class": ["ano"], "lng": "13.410816"}, {"votes": ["18", "10", "27", "40", "539", "125", "553", "75", "29", "818", "4", "8", "3", "1079", "1180", "1", "61", "7", "424", "5", "211", "136", "297", "3", "27", "22", "1", "40", "5", "16", "257", "8", "14", "8", "0", "7", "54", "3"], "lat": "49.453653", "winner": "ANO", "id": "511382", "population": 6115, "town": "P\u0159erov", "winner_class": ["ano"], "lng": "17.446161"}, {"votes": ["13", "6", "9", "32", "544", "71", "647", "13", "24", "686", "3", "44", "2", "1023", "1028", "0", "99", "1", "358", "17", "249", "181", "273", "1", "32", "22", "3", "17", "8", "7", "292", "11", "19", "4", "5", "9", "25", "1"], "lat": "49.471944", "winner": "ANO", "id": "589250", "population": 5779, "town": "Prost\u011bjov", "winner_class": ["ano"], "lng": "17.109298"}, {"votes": ["19", "10", "10", "36", "179", "188", "1038", "24", "20", "518", "4", "1", "3", "731", "1372", "2", "4", "7", "627", "16", "335", "456", "390", "13", "23", "20", "0", "40", "4", "5", "485", "9", "4", "1", "3", "15", "34", "15"], "lat": "50.724523", "winner": "ANO", "id": "563510", "population": 6661, "town": "Jablonec nad Nisou", "winner_class": ["ano"], "lng": "15.171279"}, {"votes": ["13", "9", "2", "16", "194", "138", "959", "22", "26", "512", "2", "5", "1", "735", "960", "0", "0", "10", "583", "13", "164", "245", "370", "2", "15", "29", "1", "19", "0", "8", "227", "6", "3", "3", "2", "9", "34", "5"], "lat": "50.412332", "winner": "ANO", "id": "535419", "population": 5342, "town": "Mlad\u00e1 Boleslav", "winner_class": ["ano"], "lng": "14.903544"}, {"votes": ["40", "7", "4", "44", "686", "90", "686", "15", "23", "633", "0", "3", "1", "726", "729", "3", "46", "8", "319", "13", "191", "137", "320", "1", "25", "29", "1", "17", "4", "5", "281", "1", "5", "0", "2", "9", "21", "2"], "lat": "49.215584", "winner": "ANO", "id": "590266", "population": 5127, "town": "T\u0159eb\u00ed\u010d", "winner_class": ["ano"], "lng": "15.878082"}, {"votes": ["16", "9", "4", "14", "110", "163", "534", "18", "37", "475", "0", "1", "0", "494", "730", "1", "1", "5", "250", "15", "136", "150", "172", "5", "24", "39", "1", "27", "3", "4", "272", "7", "3", "0", "4", "22", "21", "0"], "lat": "50.68659", "winner": "ANO", "id": "561380", "population": 3767, "town": "\u010cesk\u00e1 L\u00edpa", "winner_class": ["ano"], "lng": "14.53793"}, {"votes": ["5", "5", "1", "31", "486", "56", "205", "15", "19", "378", "2", "7", "13", "884", "475", "1", "9", "1", "290", "7", "115", "50", "124", "2", "24", "28", "3", "13", "3", "1", "119", "2", "8", "1", "2", "2", "14", "5"], "lat": "49.677715", "winner": "\u010cSSD", "id": "598810", "population": 3406, "town": "T\u0159inec", "winner_class": ["cssd"], "lng": "18.672753"}, {"votes": ["30", "3", "7", "31", "322", "69", "841", "25", "25", "737", "1", "4", "4", "732", "937", "0", "4", "6", "456", "17", "141", "177", "280", "0", "23", "24", "3", "19", "7", "5", "266", "7", "7", "1", "2", "4", "14", "6"], "lat": "49.414129", "winner": "ANO", "id": "552046", "population": 5237, "town": "T\u00e1bor", "winner_class": ["ano"], "lng": "14.657882"}, {"votes": ["13", "12", "4", "14", "503", "58", "494", "18", "18", "718", "4", "2", "3", "755", "769", "1", "61", "3", "307", "11", "180", "128", "216", "3", "28", "21", "0", "25", "6", "29", "196", "6", "13", "3", "0", "5", "19", "4"], "lat": "48.855449", "winner": "ANO", "id": "593711", "population": 4650, "town": "Znojmo", "winner_class": ["ano"], "lng": "16.048628"}, {"votes": ["13", "2", "6", "13", "248", "98", "744", "16", "29", "618", "1", "1", "1", "691", "838", "0", "2", "5", "369", "7", "145", "153", "241", "2", "59", "24", "0", "21", "4", "3", "239", "1", "6", "5", "2", "11", "72", "5"], "lat": "49.6892", "winner": "ANO", "id": "539911", "population": 4695, "town": "P\u0159\u00edbram", "winner_class": ["ano"], "lng": "14.010561"}, {"votes": ["8", "16", "4", "11", "104", "29", "87", "3", "11", "501", "1", "4", "2", "760", "331", "1", "11", "2", "166", "4", "135", "46", "74", "1", "17", "10", "1", "36", "1", "28", "96", "18", "2", "3", "1", "5", "13", "6"], "lat": "49.871854", "winner": "\u010cSSD", "id": "599069", "population": 2549, "town": "Orlov\u00e1", "winner_class": ["cssd"], "lng": "18.426842"}, {"votes": ["15", "11", "4", "27", "205", "115", "644", "34", "9", "478", "3", "5", "0", "559", "651", "0", "1", "5", "481", "13", "151", "191", "296", "5", "28", "36", "0", "25", "1", "7", "253", "38", "6", "13", "0", "6", "13", "6"], "lat": "50.561696", "winner": "ANO", "id": "579025", "population": 4335, "town": "Trutnov", "winner_class": ["ano"], "lng": "15.916048"}, {"votes": ["22", "6", "7", "14", "192", "55", "724", "21", "46", "462", "0", "0", "1", "566", "747", "3", "0", "3", "365", "10", "443", "112", "256", "2", "21", "32", "1", "11", "4", "21", "181", "1", "2", "1", "4", "8", "19", "4"], "lat": "50.028746", "winner": "ANO", "id": "533165", "population": 4367, "town": "Kol\u00edn", "winner_class": ["ano"], "lng": "15.201039"}, {"votes": ["22", "4", "5", "14", "136", "59", "409", "19", "17", "510", "2", "4", "3", "503", "585", "1", "4", "14", "196", "8", "143", "87", "188", "4", "32", "14", "1", "27", "2", "6", "141", "6", "7", "2", "2", "8", "10", "6"], "lat": "50.079044", "winner": "ANO", "id": "554481", "population": 3201, "town": "Cheb", "winner_class": ["ano"], "lng": "12.371099"}, {"votes": ["13", "6", "5", "17", "861", "42", "428", "12", "12", "583", "0", "5", "2", "1273", "668", "0", "70", "5", "235", "4", "144", "130", "195", "2", "22", "26", "3", "13", "3", "2", "160", "2", "11", "2", "1", "5", "17", "1"], "lat": "49.297851", "winner": "\u010cSSD", "id": "588296", "population": 4980, "town": "Krom\u011b\u0159\u00ed\u017e", "winner_class": ["cssd"], "lng": "17.392929"}, {"votes": ["16", "6", "5", "22", "327", "56", "786", "33", "15", "552", "3", "3", "3", "513", "637", "1", "0", "4", "322", "7", "116", "157", "261", "1", "29", "25", "2", "16", "5", "48", "220", "12", "5", "3", "2", "4", "19", "3"], "lat": "49.308782", "winner": "TOP 09", "id": "549240", "population": 4239, "town": "P\u00edsek", "winner_class": ["top-09"], "lng": "14.147326"}, {"votes": ["16", "4", "1", "21", "318", "91", "664", "14", "12", "438", "1", "3", "0", "640", "465", "1", "37", "3", "245", "5", "133", "85", "241", "3", "16", "25", "1", "18", "8", "4", "136", "19", "11", "1", "2", "11", "19", "1"], "lat": "49.965324", "winner": "TOP 09", "id": "523704", "population": 3713, "town": "\u0160umperk", "winner_class": ["top-09"], "lng": "16.970455"}, {"votes": ["14", "7", "2", "19", "594", "56", "335", "13", "3", "433", "1", "7", "1", "647", "517", "0", "15", "2", "318", "7", "117", "149", "187", "0", "14", "17", "1", "10", "6", "3", "180", "2", "2", "0", "2", "8", "9", "3"], "lat": "49.338041", "winner": "\u010cSSD", "id": "541630", "population": 3701, "town": "Vset\u00edn", "winner_class": ["cssd"], "lng": "17.993587"}, {"votes": ["14", "0", "4", "19", "660", "42", "560", "26", "11", "439", "0", "7", "1", "599", "558", "1", "51", "0", "278", "9", "123", "131", "226", "0", "19", "24", "1", "10", "0", "1", "158", "8", "2", "1", "1", "6", "15", "4"], "lat": "49.067927", "winner": "KDU-\u010cSL", "id": "592005", "population": 4009, "town": "Uhersk\u00e9 Hradi\u0161t\u011b", "winner_class": ["kdu-csl"], "lng": "17.460571"}, {"votes": ["6", "4", "5", "12", "310", "36", "266", "9", "10", "518", "1", "1", "1", "491", "396", "1", "71", "3", "194", "6", "113", "69", "172", "1", "13", "15", "0", "19", "2", "29", "114", "0", "0", "3", "1", "3", "3", "1"], "lat": "48.84832", "winner": "KS\u010cM", "id": "586021", "population": 2899, "town": "Hodon\u00edn", "winner_class": ["kscm"], "lng": "17.128363"}, {"votes": ["32", "1", "2", "8", "314", "26", "305", "16", "9", "551", "1", "1", "0", "490", "461", "1", "35", "2", "163", "5", "88", "87", "173", "1", "9", "14", "1", "14", "3", "5", "145", "1", "2", "3", "0", "6", "10", "6"], "lat": "48.75896", "winner": "KS\u010cM", "id": "584291", "population": 2991, "town": "B\u0159eclav", "winner_class": ["kscm"], "lng": "16.880729"}, {"votes": ["3", "12", "2", "28", "577", "28", "217", "10", "12", "257", "0", "5", "31", "761", "300", "0", "7", "2", "255", "3", "103", "75", "102", "1", "20", "22", "1", "19", "6", "1", "119", "6", "2", "1", "0", "3", "13", "2"], "lat": "49.746341", "winner": "\u010cSSD", "id": "598933", "population": 3006, "town": "\u010cesk\u00fd T\u011b\u0161\u00edn", "winner_class": ["cssd"], "lng": "18.625598"}, {"votes": ["17", "6", "4", "18", "49", "53", "268", "7", "25", "435", "3", "0", "3", "392", "556", "0", "1", "0", "140", "20", "80", "81", "111", "8", "53", "11", "1", "28", "3", "1", "108", "3", "1", "4", "0", "2", "21", "2"], "lat": "50.598837", "winner": "ANO", "id": "567256", "population": 2515, "town": "Litv\u00ednov", "winner_class": ["ano"], "lng": "13.611726"}, {"votes": ["14", "5", "3", "26", "206", "47", "205", "5", "6", "399", "3", "4", "4", "609", "445", "1", "13", "0", "240", "4", "112", "92", "72", "1", "11", "21", "0", "36", "16", "1", "108", "4", "3", "5", "0", "2", "11", "1"], "lat": "50.090522", "winner": "\u010cSSD", "id": "597520", "population": 2735, "town": "Krnov", "winner_class": ["cssd"], "lng": "17.701973"}, {"votes": ["5", "3", "1", "11", "56", "54", "250", "10", "18", "368", "2", "0", "0", "391", "564", "11", "0", "2", "128", "8", "118", "68", "126", "2", "18", "16", "0", "33", "2", "1", "116", "3", "2", "6", "3", "8", "15", "1"], "lat": "50.179547", "winner": "ANO", "id": "560286", "population": 2420, "town": "Sokolov", "winner_class": ["ano"], "lng": "12.643671"}, {"votes": ["21", "7", "5", "13", "175", "62", "547", "17", "20", "522", "2", "3", "2", "416", "666", "1", "8", "5", "307", "7", "100", "184", "235", "8", "52", "12", "2", "22", "6", "2", "190", "4", "10", "7", "2", "3", "13", "11"], "lat": "50.533538", "winner": "ANO", "id": "564567", "population": 3669, "town": "Litom\u011b\u0159ice", "winner_class": ["ano"], "lng": "14.131442"}, {"votes": ["15", "8", "3", "13", "396", "49", "284", "15", "16", "518", "0", "3", "0", "634", "441", "0", "16", "2", "272", "4", "99", "117", "136", "1", "5", "16", "0", "9", "5", "2", "134", "5", "3", "1", "0", "10", "9", "3"], "lat": "49.594369", "winner": "\u010cSSD", "id": "599191", "population": 3244, "town": "Nov\u00fd Ji\u010d\u00edn", "winner_class": ["cssd"], "lng": "18.010388"}, {"votes": ["15", "3", "1", "19", "304", "56", "409", "14", "19", "477", "1", "0", "4", "469", "510", "0", "2", "4", "299", "6", "86", "134", "121", "3", "18", "10", "0", "16", "1", "3", "171", "5", "3", "5", "0", "4", "32", "3"], "lat": "49.606578", "winner": "ANO", "id": "568414", "population": 3227, "town": "Havl\u00ed\u010dk\u016fv Brod", "winner_class": ["ano"], "lng": "15.578583"}, {"votes": ["9", "2", "4", "11", "628", "30", "312", "6", "10", "327", "0", "1", "0", "589", "709", "1", "12", "0", "213", "4", "101", "79", "220", "0", "17", "8", "1", "6", "2", "0", "135", "3", "3", "0", "0", "18", "6", "2"], "lat": "49.471163", "winner": "ANO", "id": "545058", "population": 3469, "town": "Vala\u0161sk\u00e9 Mezi\u0159\u00ed\u010d\u00ed", "winner_class": ["ano"], "lng": "17.970583"}, {"votes": ["78", "3", "7", "8", "250", "88", "491", "13", "14", "380", "1", "1", "6", "460", "551", "1", "6", "28", "288", "5", "82", "123", "266", "0", "17", "19", "0", "18", "1", "2", "230", "4", "2", "1", "2", "3", "6", "0"], "lat": "49.951092", "winner": "ANO", "id": "571164", "population": 3455, "town": "Chrudim", "winner_class": ["ano"], "lng": "15.795575"}, {"votes": ["10", "3", "1", "28", "287", "59", "406", "8", "24", "433", "1", "5", "4", "485", "531", "3", "3", "4", "261", "9", "104", "89", "162", "4", "20", "22", "4", "21", "1", "5", "168", "2", "7", "5", "0", "9", "24", "2"], "lat": "49.261221", "winner": "ANO", "id": "550787", "population": 3214, "town": "Strakonice", "winner_class": ["ano"], "lng": "13.901639"}, {"votes": ["8", "22", "4", "17", "427", "50", "246", "18", "11", "410", "0", "0", "0", "697", "424", "0", "16", "1", "275", "5", "91", "78", "140", "2", "7", "16", "3", "13", "9", "1", "129", "4", "0", "0", "1", "6", "11", "1"], "lat": "49.597824", "winner": "\u010cSSD", "id": "599565", "population": 3143, "town": "Kop\u0159ivnice", "winner_class": ["cssd"], "lng": "18.14716"}, {"votes": ["5", "8", "1", "10", "154", "31", "145", "2", "6", "339", "1", "3", "7", "774", "317", "1", "14", "0", "191", "4", "78", "44", "82", "5", "14", "10", "0", "20", "9", "2", "90", "3", "5", "2", "1", "3", "14", "3"], "lat": "49.904", "winner": "\u010cSSD", "id": "599051", "population": 2398, "town": "Bohum\u00edn", "winner_class": ["cssd"], "lng": "18.3581"}, {"votes": ["21", "5", "1", "13", "170", "57", "866", "15", "8", "508", "2", "1", "5", "480", "481", "1", "0", "2", "267", "7", "96", "79", "113", "0", "20", "17", "4", "20", "7", "4", "98", "3", "9", "9", "1", "11", "17", "6"], "lat": "49.394639", "winner": "TOP 09", "id": "555771", "population": 3424, "town": "Klatovy", "winner_class": ["top-09"], "lng": "13.292941"}, {"votes": ["7", "4", "4", "10", "518", "25", "530", "8", "10", "361", "0", "1", "1", "532", "439", "1", "5", "4", "293", "1", "124", "75", "150", "1", "9", "17", "2", "10", "1", "22", "121", "2", "1", "1", "0", "8", "5", "2"], "lat": "49.564997", "winner": "\u010cSSD", "id": "595209", "population": 3305, "town": "\u017d\u010f\u00e1r nad S\u00e1zavou", "winner_class": ["cssd"], "lng": "15.936123"}, {"votes": ["21", "1", "8", "7", "170", "48", "491", "7", "12", "383", "3", "4", "0", "451", "460", "1", "2", "4", "214", "6", "81", "119", "164", "2", "17", "17", "1", "12", "1", "6", "136", "2", "1", "2", "0", "4", "10", "3"], "lat": "49.147091", "winner": "TOP 09", "id": "545881", "population": 2871, "town": "Jind\u0159ich\u016fv Hradec", "winner_class": ["top-09"], "lng": "15.001932"}, {"votes": ["8", "5", "7", "13", "323", "31", "200", "7", "10", "472", "2", "4", "1", "621", "434", "0", "32", "6", "174", "2", "99", "86", "183", "0", "33", "11", "0", "14", "0", "12", "155", "1", "3", "2", "0", "6", "14", "1"], "lat": "49.277268", "winner": "\u010cSSD", "id": "592889", "population": 2972, "town": "Vy\u0161kov", "winner_class": ["cssd"], "lng": "16.998987"}, {"votes": ["8", "0", "2", "20", "469", "25", "294", "15", "17", "538", "1", "4", "0", "671", "412", "1", "31", "5", "234", "0", "115", "99", "156", "3", "14", "10", "4", "19", "2", "48", "162", "0", "1", "0", "0", "4", "11", "1"], "lat": "49.363493", "winner": "\u010cSSD", "id": "581283", "population": 3396, "town": "Blansko", "winner_class": ["cssd"], "lng": "16.643754"}, {"votes": ["13", "1", "4", "6", "439", "63", "516", "25", "5", "273", "0", "5", "1", "364", "463", "0", "0", "7", "223", "11", "97", "112", "211", "2", "15", "16", "0", "17", "2", "2", "127", "9", "7", "0", "0", "2", "18", "4"], "lat": "50.416326", "winner": "TOP 09", "id": "573868", "population": 3060, "town": "N\u00e1chod", "winner_class": ["top-09"], "lng": "16.16386"}, {"votes": ["17", "5", "11", "19", "246", "51", "539", "14", "10", "318", "0", "1", "3", "387", "460", "1", "5", "1", "250", "5", "105", "84", "191", "11", "10", "26", "2", "10", "3", "0", "145", "24", "2", "4", "0", "4", "18", "2"], "lat": "49.948394", "winner": "TOP 09", "id": "533955", "population": 2984, "town": "Kutn\u00e1 Hora", "winner_class": ["top-09"], "lng": "15.269119"}, {"votes": ["7", "15", "3", "13", "57", "30", "141", "6", "12", "253", "0", "1", "0", "213", "321", "2", "1", "1", "106", "4", "83", "31", "77", "0", "22", "9", "1", "15", "0", "7", "83", "3", "6", "0", "0", "1", "15", "1"], "lat": "50.500469", "winner": "ANO", "id": "563099", "population": 1540, "town": "Jirkov", "winner_class": ["ano"], "lng": "13.447754"}, {"votes": ["44", "4", "4", "5", "99", "69", "505", "13", "13", "283", "0", "0", "1", "396", "473", "0", "1", "5", "249", "9", "87", "105", "184", "1", "10", "16", "1", "22", "0", "2", "137", "2", "4", "2", "2", "5", "9", "5"], "lat": "50.352412", "winner": "TOP 09", "id": "534676", "population": 2767, "town": "M\u011bln\u00edk", "winner_class": ["top-09"], "lng": "14.474946"}, {"votes": ["11", "6", "0", "6", "72", "55", "215", "7", "13", "377", "0", "0", "4", "329", "370", "1", "0", "2", "246", "7", "76", "53", "136", "0", "19", "13", "2", "14", "0", "4", "135", "2", "0", "2", "0", "4", "9", "0"], "lat": "50.33003", "winner": "KS\u010cM", "id": "566985", "population": 2190, "town": "\u017datec", "winner_class": ["kscm"], "lng": "13.544224"}, {"votes": ["12", "6", "3", "10", "281", "34", "262", "12", "16", "358", "0", "2", "1", "391", "381", "0", "18", "1", "165", "9", "85", "61", "79", "2", "15", "12", "1", "18", "5", "5", "106", "2", "4", "1", "0", "6", "5", "1"], "lat": "49.550097", "winner": "\u010cSSD", "id": "513750", "population": 2370, "town": "Hranice", "winner_class": ["cssd"], "lng": "17.73474"}, {"votes": ["12", "4", "4", "10", "82", "45", "354", "16", "19", "370", "0", "0", "0", "316", "417", "1", "1", "1", "242", "2", "76", "80", "117", "2", "33", "6", "1", "12", "1", "1", "99", "6", "3", "1", "3", "11", "22", "2"], "lat": "50.357773", "winner": "ANO", "id": "565971", "population": 2372, "town": "Louny", "winner_class": ["ano"], "lng": "13.796309"}, {"votes": ["8", "9", "7", "13", "318", "30", "183", "3", "11", "212", "0", "2", "1", "456", "384", "0", "12", "3", "108", "2", "108", "58", "121", "0", "10", "11", "1", "4", "2", "4", "98", "7", "1", "2", "0", "13", "10", "1"], "lat": "49.208235", "winner": "\u010cSSD", "id": "585599", "population": 2213, "town": "Otrokovice", "winner_class": ["cssd"], "lng": "17.535427"}, {"votes": ["17", "3", "6", "15", "134", "66", "481", "15", "16", "293", "0", "0", "1", "360", "459", "1", "3", "1", "234", "7", "71", "122", "236", "1", "15", "10", "2", "7", "2", "2", "181", "5", "3", "4", "1", "18", "13", "0"], "lat": "49.964297", "winner": "TOP 09", "id": "531057", "population": 2805, "town": "Beroun", "winner_class": ["top-09"], "lng": "14.074581"}, {"votes": ["13", "0", "13", "16", "83", "33", "398", "16", "15", "253", "1", "0", "2", "313", "407", "0", "1", "2", "198", "4", "67", "94", "129", "1", "16", "8", "4", "19", "1", "5", "141", "5", "5", "4", "0", "2", "17", "2"], "lat": "50.242399", "winner": "ANO", "id": "534951", "population": 2288, "town": "Kralupy nad Vltavou", "winner_class": ["ano"], "lng": "14.308121"}, {"votes": ["7", "6", "1", "12", "38", "100", "189", "4", "12", "188", "1", "0", "2", "271", "310", "0", "1", "5", "126", "2", "72", "47", "62", "1", "17", "19", "0", "5", "0", "1", "65", "1", "0", "3", "0", "4", "10", "3"], "lat": "50.376561", "winner": "ANO", "id": "563102", "population": 1585, "town": "Kada\u0148", "winner_class": ["ano"], "lng": "13.270113"}, {"votes": ["32", "2", "1", "11", "429", "23", "332", "15", "9", "197", "0", "2", "0", "383", "489", "1", "38", "1", "224", "5", "70", "101", "141", "1", "8", "11", "0", "4", "2", "1", "114", "2", "0", "4", "0", "10", "13", "2"], "lat": "49.457597", "winner": "ANO", "id": "544841", "population": 2678, "town": "Ro\u017enov pod Radho\u0161t\u011bm", "winner_class": ["ano"], "lng": "18.142681"}, {"votes": ["6", "4", "2", "17", "88", "87", "292", "13", "28", "219", "0", "2", "0", "306", "383", "6", "1", "1", "152", "7", "69", "59", "113", "11", "19", "33", "0", "24", "3", "1", "142", "2", "3", "3", "0", "1", "12", "4"], "lat": "50.306284", "winner": "ANO", "id": "555428", "population": 2113, "town": "Ostrov", "winner_class": ["ano"], "lng": "12.950275"}, {"votes": ["13", "1", "1", "6", "69", "29", "132", "5", "5", "377", "1", "48", "0", "374", "229", "2", "21", "2", "138", "3", "94", "30", "49", "2", "12", "10", "0", "6", "13", "1", "58", "3", "2", "1", "0", "2", "6", "3"], "lat": "49.993414", "winner": "KS\u010cM", "id": "597180", "population": 1748, "town": "Brunt\u00e1l", "winner_class": ["kscm"], "lng": "17.471606"}, {"votes": ["2", "5", "0", "21", "626", "30", "228", "3", "5", "207", "0", "1", "0", "340", "257", "0", "19", "3", "142", "1", "82", "37", "111", "2", "7", "12", "0", "1", "0", "0", "65", "4", "1", "1", "1", "6", "10", "1"], "lat": "49.024922", "winner": "KDU-\u010cSL", "id": "592731", "population": 2231, "town": "Uhersk\u00fd Brod", "winner_class": ["kdu-csl"], "lng": "17.647382"}, {"votes": ["8", "2", "2", "10", "177", "34", "213", "4", "17", "293", "2", "0", "0", "392", "305", "0", "1", "4", "100", "2", "55", "60", "89", "2", "7", "13", "1", "4", "5", "3", "100", "2", "2", "3", "0", "12", "5", "0"], "lat": "49.757041", "winner": "\u010cSSD", "id": "577731", "population": 1929, "town": "Svitavy", "winner_class": ["cssd"], "lng": "16.462234"}, {"votes": ["20", "3", "6", "13", "130", "44", "554", "19", "8", "237", "1", "0", "1", "303", "490", "2", "1", "2", "249", "6", "63", "126", "169", "2", "6", "11", "0", "15", "5", "2", "167", "3", "3", "1", "1", "5", "7", "1"], "lat": "50.186129", "winner": "TOP 09", "id": "538094", "population": 2676, "town": "Brand\u00fds nad Labem-Star\u00e1 Boleslav", "winner_class": ["top-09"], "lng": "14.658605"}, {"votes": ["13", "2", "5", "8", "232", "41", "404", "21", "5", "251", "1", "0", "5", "384", "469", "2", "2", "1", "220", "7", "56", "102", "136", "2", "15", "12", "2", "5", "2", "1", "96", "2", "5", "3", "1", "2", "8", "1"], "lat": "49.78379", "winner": "ANO", "id": "529303", "population": 2524, "town": "Bene\u0161ov", "winner_class": ["ano"], "lng": "14.689966"}, {"votes": ["10", "2", "2", "10", "107", "38", "314", "6", "13", "181", "0", "2", "1", "305", "427", "0", "1", "1", "229", "9", "96", "71", "98", "2", "19", "17", "0", "11", "2", "6", "97", "2", "4", "4", "1", "4", "11", "2"], "lat": "50.431704", "winner": "ANO", "id": "579203", "population": 2105, "town": "Dv\u016fr Kr\u00e1lov\u00e9 nad Labem", "winner_class": ["ano"], "lng": "15.814692"}, {"votes": ["9", "2", "2", "5", "402", "33", "375", "7", "10", "230", "0", "0", "1", "327", "387", "1", "1", "0", "200", "6", "59", "82", "160", "0", "9", "23", "5", "7", "3", "1", "99", "0", "2", "2", "0", "3", "12", "0"], "lat": "49.431432", "winner": "KDU-\u010cSL", "id": "547492", "population": 2465, "town": "Pelh\u0159imov", "winner_class": ["kdu-csl"], "lng": "15.223219"}, {"votes": ["7", "1", "2", "5", "285", "43", "262", "9", "8", "200", "2", "1", "3", "356", "345", "0", "0", "10", "131", "6", "106", "88", "91", "2", "5", "9", "0", "5", "3", "1", "101", "2", "1", "1", "0", "11", "8", "1"], "lat": "49.902154", "winner": "\u010cSSD", "id": "580031", "population": 2111, "town": "\u010cesk\u00e1 T\u0159ebov\u00e1", "winner_class": ["cssd"], "lng": "16.447367"}, {"votes": ["8", "9", "0", "7", "57", "41", "338", "10", "10", "356", "0", "0", "3", "353", "416", "1", "0", "3", "173", "1", "59", "91", "112", "2", "14", "8", "0", "2", "1", "5", "101", "3", "1", "2", "1", "14", "9", "2"], "lat": "50.104266", "winner": "ANO", "id": "541656", "population": 2213, "town": "Rakovn\u00edk", "winner_class": ["ano"], "lng": "13.728805"}, {"votes": ["11", "4", "1", "23", "149", "21", "382", "14", "12", "289", "0", "0", "2", "296", "400", "1", "3", "3", "240", "3", "75", "123", "142", "0", "14", "4", "1", "9", "1", "2", "111", "2", "0", "6", "1", "4", "11", "0"], "lat": "50.437103", "winner": "ANO", "id": "572659", "population": 2360, "town": "Ji\u010d\u00edn", "winner_class": ["ano"], "lng": "15.354214"}, {"votes": ["7", "3", "1", "5", "84", "32", "327", "8", "5", "214", "0", "1", "2", "267", "377", "1", "1", "3", "175", "4", "52", "53", "104", "1", "18", "8", "2", "15", "2", "0", "111", "2", "3", "0", "0", "5", "6", "1"], "lat": "50.255485", "winner": "ANO", "id": "535087", "population": 1900, "town": "Neratovice", "winner_class": ["ano"], "lng": "14.520586"}, {"votes": ["10", "5", "2", "5", "42", "40", "177", "5", "7", "225", "0", "0", "1", "270", "301", "1", "3", "1", "122", "5", "100", "26", "57", "1", "32", "17", "3", "45", "1", "13", "65", "1", "1", "6", "0", "5", "6", "3"], "lat": "50.911343", "winner": "ANO", "id": "562882", "population": 1604, "town": "Varnsdorf", "winner_class": ["ano"], "lng": "14.619955"}, {"votes": ["3", "9", "0", "4", "25", "31", "118", "10", "10", "187", "1", "1", "1", "166", "271", "2", "0", "2", "65", "3", "60", "54", "45", "1", "15", "20", "0", "10", "3", "3", "68", "4", "1", "2", "0", "7", "6", "3"], "lat": "50.384539", "winner": "ANO", "id": "563129", "population": 1211, "town": "Kl\u00e1\u0161terec nad Oh\u0159\u00ed", "winner_class": ["ano"], "lng": "13.171331"}, {"votes": ["5", "3", "2", "1", "13", "62", "110", "1", "11", "301", "0", "0", "1", "166", "218", "2", "0", "1", "93", "3", "66", "46", "44", "3", "10", "4", "0", "21", "2", "4", "66", "0", "1", "1", "0", "1", "16", "1"], "lat": "50.548917", "winner": "KS\u010cM", "id": "567451", "population": 1279, "town": "B\u00edlina", "winner_class": ["kscm"], "lng": "13.774288"}, {"votes": ["14", "2", "16", "8", "65", "37", "331", "8", "11", "290", "0", "1", "1", "331", "366", "1", "4", "1", "225", "6", "57", "96", "180", "3", "13", "5", "1", "13", "4", "3", "127", "0", "5", "0", "1", "6", "14", "2"], "lat": "50.231447", "winner": "ANO", "id": "532819", "population": 2248, "town": "Slan\u00fd", "winner_class": ["ano"], "lng": "14.086936"}, {"votes": ["9", "8", "3", "9", "111", "28", "438", "11", "16", "246", "0", "0", "1", "284", "366", "3", "1", "5", "205", "2", "59", "101", "126", "0", "12", "12", "1", "9", "2", "6", "110", "2", "4", "0", "0", "5", "11", "4"], "lat": "50.18613", "winner": "TOP 09", "id": "537004", "population": 2210, "town": "Nymburk", "winner_class": ["top-09"], "lng": "15.040725"}, {"votes": ["5", "2", "6", "12", "108", "64", "559", "12", "5", "189", "0", "1", "0", "304", "364", "0", "1", "7", "210", "6", "60", "126", "194", "1", "8", "25", "0", "4", "0", "3", "146", "0", "1", "3", "1", "5", "15", "0"], "lat": "50.586675", "winner": "TOP 09", "id": "577626", "population": 2447, "town": "Turnov", "winner_class": ["top-09"], "lng": "15.157294"}, {"votes": ["6", "2", "4", "4", "300", "34", "319", "6", "5", "243", "1", "0", "0", "349", "314", "0", "4", "9", "209", "7", "78", "73", "145", "2", "4", "10", "1", "9", "2", "4", "137", "3", "5", "2", "2", "6", "17", "1"], "lat": "49.973982", "winner": "\u010cSSD", "id": "579891", "population": 2317, "town": "\u00dast\u00ed nad Orlic\u00ed", "winner_class": ["cssd"], "lng": "16.393491"}, {"votes": ["7", "2", "0", "8", "237", "20", "121", "2", "4", "165", "1", "0", "3", "364", "242", "0", "6", "4", "140", "4", "70", "36", "58", "2", "4", "6", "1", "10", "2", "1", "63", "0", "4", "2", "0", "1", "6", "2"], "lat": "49.8965271", "winner": "\u010cSSD", "id": "507016", "population": 1598, "town": "Hlu\u010d\u00edn", "winner_class": ["cssd"], "lng": "18.1905486"}, {"votes": ["5", "4", "5", "4", "457", "27", "258", "5", "6", "229", "1", "1", "0", "297", "243", "2", "23", "3", "96", "2", "67", "37", "73", "1", "4", "8", "0", "10", "1", "0", "58", "12", "5", "0", "0", "8", "6", "1"], "lat": "49.882134", "winner": "KDU-\u010cSL", "id": "541354", "population": 1959, "town": "Z\u00e1b\u0159eh", "winner_class": ["kdu-csl"], "lng": "16.872292"}, {"votes": ["4", "4", "2", "4", "28", "36", "134", "3", "10", "141", "1", "0", "1", "161", "222", "2", "2", "3", "62", "8", "61", "19", "40", "1", "16", "12", "0", "18", "5", "1", "50", "3", "4", "2", "0", "10", "10", "1"], "lat": "50.238756", "winner": "ANO", "id": "560383", "population": 1081, "town": "Chodov", "winner_class": ["ano"], "lng": "12.749282"}, {"votes": ["4", "2", "1", "10", "180", "22", "155", "7", "7", "190", "2", "2", "0", "329", "258", "0", "8", "1", "108", "2", "95", "43", "72", "1", "5", "12", "0", "15", "2", "2", "70", "4", "1", "0", "0", "4", "6", "0"], "lat": "49.731502", "winner": "\u010cSSD", "id": "505188", "population": 1620, "town": "\u0160ternberk", "winner_class": ["cssd"], "lng": "17.299825"}, {"votes": ["4", "4", "8", "6", "86", "27", "468", "15", "15", "276", "1", "0", "0", "213", "295", "3", "0", "1", "124", "4", "42", "49", "99", "6", "9", "17", "0", "11", "2", "5", "73", "2", "4", "2", "2", "3", "7", "1"], "lat": "49.742199", "winner": "TOP 09", "id": "559717", "population": 1884, "town": "Rokycany", "winner_class": ["top-09"], "lng": "13.595553"}, {"votes": ["14", "5", "5", "10", "136", "49", "643", "15", "11", "195", "2", "3", "0", "266", "513", "1", "1", "0", "262", "4", "72", "123", "184", "3", "4", "18", "2", "7", "1", "3", "111", "2", "5", "0", "0", "0", "7", "5"], "lat": "50.142715", "winner": "TOP 09", "id": "537683", "population": 2682, "town": "Pod\u011bbrady", "winner_class": ["top-09"], "lng": "15.116628"}, {"votes": ["9", "4", "9", "6", "107", "59", "316", "9", "7", "206", "1", "1", "0", "228", "336", "0", "1", "1", "130", "8", "64", "46", "73", "2", "12", "27", "0", "6", "0", "2", "157", "2", "4", "1", "0", "1", "7", "3"], "lat": "49.975718", "winner": "ANO", "id": "554642", "population": 1845, "town": "Mari\u00e1nsk\u00e9 L\u00e1zn\u011b", "winner_class": ["ano"], "lng": "12.701922"}, {"votes": ["19", "5", "5", "9", "156", "25", "898", "30", "11", "130", "0", "1", "1", "209", "525", "0", "2", "3", "232", "9", "33", "191", "225", "1", "15", "12", "1", "4", "0", "0", "188", "1", "2", "2", "0", "7", "5", "2"], "lat": "49.991675", "winner": "TOP 09", "id": "538728", "population": 2959, "town": "\u0158\u00ed\u010dany", "winner_class": ["top-09"], "lng": "14.654269"}, {"votes": ["3", "3", "2", "0", "25", "32", "118", "9", "9", "272", "1", "0", "1", "137", "239", "1", "0", "2", "78", "3", "75", "40", "51", "3", "7", "6", "0", "19", "0", "3", "45", "0", "0", "0", "1", "1", "7", "1"], "lat": "50.682436", "winner": "KS\u010cM", "id": "567639", "population": 1194, "town": "Krupka", "winner_class": ["kscm"], "lng": "13.872912"}, {"votes": ["6", "3", "2", "17", "144", "29", "341", "7", "9", "252", "0", "0", "2", "236", "204", "0", "0", "3", "183", "7", "53", "89", "95", "1", "7", "13", "0", "13", "0", "3", "87", "3", "2", "3", "0", "4", "10", "5"], "lat": "48.810981", "winner": "TOP 09", "id": "545392", "population": 1833, "town": "\u010cesk\u00fd Krumlov", "winner_class": ["top-09"], "lng": "14.315238"}, {"votes": ["15", "5", "2", "8", "114", "41", "327", "5", "14", "244", "0", "0", "0", "198", "292", "0", "1", "2", "134", "20", "44", "56", "124", "0", "16", "14", "0", "12", "2", "7", "97", "0", "2", "1", "0", "6", "10", "0"], "lat": "50.423808", "winner": "TOP 09", "id": "565555", "population": 1813, "town": "Roudnice nad Labem", "winner_class": ["top-09"], "lng": "14.260109"}, {"votes": ["7", "3", "5", "13", "84", "34", "328", "10", "6", "119", "9", "0", "2", "209", "347", "0", "2", "0", "157", "4", "90", "79", "114", "1", "13", "14", "2", "10", "1", "4", "81", "29", "2", "1", "0", "4", "6", "2"], "lat": "50.627047", "winner": "ANO", "id": "579858", "population": 1792, "town": "Vrchlab\u00ed", "winner_class": ["ano"], "lng": "15.609046"}, {"votes": ["4", "3", "4", "7", "115", "24", "222", "6", "9", "206", "0", "0", "1", "195", "240", "1", "0", "2", "115", "3", "60", "47", "79", "0", "12", "6", "0", "11", "0", "3", "78", "4", "1", "1", "0", "3", "19", "3"], "lat": "50.355245", "winner": "ANO", "id": "574121", "population": 1484, "town": "Jarom\u011b\u0159", "winner_class": ["ano"], "lng": "15.919488"}, {"votes": ["6", "2", "0", "16", "49", "46", "258", "2", "3", "170", "0", "0", "0", "208", "334", "0", "1", "3", "122", "3", "44", "67", "86", "25", "5", "16", "0", "9", "1", "6", "93", "4", "3", "0", "0", "7", "10", "1"], "lat": "50.759998", "winner": "ANO", "id": "561860", "population": 1600, "town": "Nov\u00fd Bor", "winner_class": ["ano"], "lng": "14.5567"}, {"votes": ["2", "0", "0", "7", "45", "34", "233", "3", "13", "293", "0", "1", "1", "315", "205", "0", "0", "3", "62", "1", "42", "26", "51", "2", "12", "5", "1", "5", "4", "1", "75", "0", "4", "2", "1", "4", "7", "0"], "lat": "49.795134", "winner": "\u010cSSD", "id": "560715", "population": 1460, "town": "Tachov", "winner_class": ["cssd"], "lng": "12.631338"}, {"votes": ["8", "4", "1", "6", "180", "29", "247", "5", "8", "170", "0", "3", "0", "249", "289", "0", "1", "12", "209", "5", "86", "75", "70", "1", "8", "3", "0", "15", "2", "2", "88", "0", "0", "3", "0", "3", "4", "1"], "lat": "49.9534", "winner": "ANO", "id": "581186", "population": 1787, "town": "Vysok\u00e9 M\u00fdto", "winner_class": ["ano"], "lng": "16.161823"}, {"votes": ["7", "4", "3", "8", "25", "27", "119", "5", "5", "169", "0", "1", "0", "167", "216", "0", "1", "0", "78", "6", "37", "25", "33", "1", "3", "5", "0", "13", "0", "0", "68", "1", "2", "0", "3", "2", "5", "1"], "lat": "50.22229", "winner": "ANO", "id": "554499", "population": 1040, "town": "A\u0161", "winner_class": ["ano"], "lng": "12.190264"}, {"votes": ["7", "3", "4", "12", "291", "12", "95", "2", "3", "283", "0", "0", "0", "344", "224", "0", "18", "2", "111", "0", "66", "36", "89", "0", "2", "11", "0", "14", "4", "1", "62", "4", "1", "0", "0", "0", "1", "1"], "lat": "49.331171", "winner": "\u010cSSD", "id": "588458", "population": 1703, "town": "Hole\u0161ov", "winner_class": ["cssd"], "lng": "17.581312"}, {"votes": ["3", "2", "3", "5", "198", "25", "181", "6", "6", "157", "1", "1", "0", "403", "226", "0", "0", "0", "76", "6", "56", "35", "84", "0", "14", "7", "1", "8", "0", "0", "35", "2", "0", "1", "0", "3", "4", "0"], "lat": "49.703522", "winner": "\u010cSSD", "id": "530883", "population": 1549, "town": "Vla\u0161im", "winner_class": ["cssd"], "lng": "14.897248"}, {"votes": ["4", "5", "0", "4", "157", "23", "123", "4", "6", "195", "0", "1", "1", "345", "235", "0", "12", "0", "135", "0", "51", "36", "57", "1", "11", "10", "0", "6", "3", "3", "67", "1", "0", "1", "0", "2", "3", "1"], "lat": "49.770774", "winner": "\u010cSSD", "id": "505587", "population": 1503, "town": "Uni\u010dov", "winner_class": ["cssd"], "lng": "17.121528"}, {"votes": ["3", "4", "1", "9", "100", "18", "131", "8", "10", "180", "0", "5", "2", "374", "266", "0", "16", "0", "81", "3", "72", "40", "67", "1", "10", "7", "0", "21", "2", "0", "73", "0", "3", "2", "0", "1", "1", "0"], "lat": "50.22937", "winner": "\u010cSSD", "id": "536385", "population": 1511, "town": "Jesen\u00edk", "winner_class": ["cssd"], "lng": "17.204593"}, {"votes": ["34", "2", "0", "6", "362", "13", "135", "9", "14", "162", "0", "1", "1", "283", "197", "0", "20", "0", "104", "3", "52", "48", "49", "0", "11", "12", "2", "4", "0", "7", "69", "1", "0", "0", "1", "3", "7", "3"], "lat": "48.952155", "winner": "KDU-\u010cSL", "id": "586722", "population": 1615, "town": "Vesel\u00ed nad Moravou", "winner_class": ["kdu-csl"], "lng": "17.380033"}, {"votes": ["7", "3", "2", "13", "334", "18", "169", "8", "9", "169", "0", "0", "0", "226", "204", "0", "11", "1", "113", "2", "38", "31", "70", "2", "11", "8", "4", "6", "1", "10", "71", "0", "3", "1", "0", "17", "6", "3"], "lat": "49.355375", "winner": "KDU-\u010cSL", "id": "597007", "population": 1571, "town": "Velk\u00e9 Mezi\u0159\u00ed\u010d\u00ed", "winner_class": ["kdu-csl"], "lng": "16.011921"}, {"votes": ["7", "4", "2", "5", "314", "19", "237", "20", "4", "251", "1", "1", "0", "297", "252", "0", "37", "2", "170", "3", "51", "41", "106", "0", "12", "8", "0", "6", "2", "2", "90", "5", "2", "2", "0", "1", "9", "0"], "lat": "49.010159", "winner": "KDU-\u010cSL", "id": "586307", "population": 1963, "town": "Kyjov", "winner_class": ["kdu-csl"], "lng": "17.122252"}, {"votes": ["2", "2", "0", "3", "291", "18", "146", "3", "3", "181", "0", "4", "1", "325", "244", "0", "15", "2", "120", "1", "37", "95", "44", "0", "6", "2", "0", "3", "3", "3", "68", "7", "3", "1", "1", "1", "3", "0"], "lat": "49.487195", "winner": "\u010cSSD", "id": "581372", "population": 1638, "town": "Boskovice", "winner_class": ["cssd"], "lng": "16.661485"}, {"votes": ["9", "2", "1", "5", "203", "56", "332", "6", "11", "235", "0", "1", "2", "231", "260", "0", "0", "2", "150", "2", "45", "37", "51", "0", "10", "6", "1", "9", "1", "2", "95", "3", "0", "0", "0", "1", "6", "2"], "lat": "49.231444", "winner": "TOP 09", "id": "557153", "population": 1777, "town": "Su\u0161ice", "winner_class": ["top-09"], "lng": "13.520263"}, {"votes": ["8", "3", "2", "8", "133", "17", "236", "18", "8", "203", "0", "1", "0", "203", "207", "1", "0", "4", "131", "2", "26", "54", "105", "2", "5", "15", "0", "7", "0", "5", "70", "2", "6", "1", "0", "1", "9", "0"], "lat": "49.012819", "winner": "TOP 09", "id": "550094", "population": 1493, "town": "Prachatice", "winner_class": ["top-09"], "lng": "13.997274"}, {"votes": ["12", "1", "3", "11", "168", "33", "184", "6", "12", "216", "1", "1", "0", "218", "271", "0", "1", "8", "131", "8", "68", "53", "101", "0", "13", "10", "3", "16", "0", "1", "61", "0", "1", "2", "0", "0", "11", "5"], "lat": "50.160799", "winner": "ANO", "id": "576069", "population": 1630, "town": "Rychnov nad Kn\u011b\u017enou", "winner_class": ["ano"], "lng": "16.275451"}, {"votes": ["6", "4", "2", "7", "182", "14", "118", "14", "3", "177", "0", "0", "1", "269", "185", "0", "9", "1", "141", "0", "35", "35", "83", "0", "2", "5", "0", "8", "0", "0", "49", "1", "1", "0", "0", "5", "7", "0"], "lat": "49.547079", "winner": "\u010cSSD", "id": "599344", "population": 1364, "town": "Fren\u0161t\u00e1t pod Radho\u0161t\u011bm", "winner_class": ["cssd"], "lng": "18.211638"}, {"votes": ["22", "0", "0", "5", "91", "30", "436", "6", "7", "157", "4", "2", "0", "211", "324", "0", "0", "3", "211", "8", "47", "106", "83", "0", "3", "15", "0", "8", "1", "1", "110", "1", "2", "3", "0", "6", "7", "0"], "lat": "50.163341", "winner": "TOP 09", "id": "538132", "population": 1910, "town": "\u010cel\u00e1kovice", "winner_class": ["top-09"], "lng": "14.75014"}, {"votes": ["6", "3", "4", "7", "197", "11", "170", "6", "8", "239", "1", "1", "0", "229", "233", "0", "0", "0", "124", "3", "34", "59", "61", "0", "11", "6", "1", "7", "2", "1", "45", "3", "4", "2", "1", "1", "7", "3"], "lat": "49.540948", "winner": "KS\u010cM", "id": "547999", "population": 1490, "town": "Humpolec", "winner_class": ["kscm"], "lng": "15.360415"}, {"votes": ["4", "3", "2", "2", "45", "49", "152", "12", "5", "196", "0", "0", "1", "160", "251", "0", "1", "1", "87", "2", "49", "40", "47", "1", "8", "8", "0", "13", "1", "2", "61", "0", "3", "0", "0", "5", "7", "3"], "lat": "50.954736", "winner": "ANO", "id": "562777", "population": 1221, "town": "Rumburk", "winner_class": ["ano"], "lng": "14.55336"}, {"votes": ["4", "2", "0", "8", "162", "21", "92", "3", "8", "250", "0", "0", "3", "260", "198", "1", "9", "1", "97", "1", "48", "32", "41", "3", "13", "4", "3", "4", "5", "0", "60", "3", "5", "0", "0", "10", "8", "3"], "lat": "49.757393", "winner": "\u010cSSD", "id": "578444", "population": 1362, "town": "Moravsk\u00e1 T\u0159ebov\u00e1", "winner_class": ["cssd"], "lng": "16.664014"}, {"votes": ["6", "4", "4", "4", "129", "27", "373", "3", "13", "298", "0", "0", "0", "269", "212", "0", "0", "0", "111", "6", "47", "27", "55", "0", "8", "8", "2", "5", "0", "0", "76", "17", "4", "4", "0", "8", "10", "2"], "lat": "49.440098", "winner": "TOP 09", "id": "553425", "population": 1732, "town": "Doma\u017elice", "winner_class": ["top-09"], "lng": "12.93025"}, {"votes": ["7", "4", "2", "5", "158", "14", "279", "9", "7", "170", "0", "2", "0", "251", "301", "3", "24", "0", "141", "5", "39", "95", "159", "8", "7", "9", "0", "16", "2", "4", "76", "3", "2", "2", "0", "6", "3", "0"], "lat": "49.309095", "winner": "ANO", "id": "583251", "population": 1813, "town": "Ku\u0159im", "winner_class": ["ano"], "lng": "16.529299"}, {"votes": ["13", "0", "0", "8", "396", "22", "237", "4", "8", "146", "1", "1", "0", "274", "231", "0", "6", "3", "110", "1", "37", "41", "56", "0", "8", "15", "0", "5", "1", "4", "77", "0", "0", "0", "0", "5", "4", "0"], "lat": "49.560663", "winner": "KDU-\u010cSL", "id": "596230", "population": 1714, "town": "Nov\u00e9 M\u011bsto na Morav\u011b", "winner_class": ["kdu-csl"], "lng": "16.072717"}, {"votes": ["9", "6", "2", "11", "252", "38", "131", "5", "7", "193", "0", "0", "0", "200", "247", "0", "1", "2", "84", "4", "54", "19", "78", "1", "6", "6", "0", "4", "3", "0", "48", "1", "0", "0", "0", "2", "1", "1"], "lat": "49.759852", "winner": "KDU-\u010cSL", "id": "571393", "population": 1416, "town": "Hlinsko", "winner_class": ["kdu-csl"], "lng": "15.905615"}, {"votes": ["13", "0", "4", "7", "90", "28", "204", "5", "4", "173", "0", "0", "0", "260", "238", "1", "1", "0", "117", "9", "46", "33", "61", "3", "10", "1", "0", "7", "1", "1", "69", "0", "3", "3", "1", "4", "6", "3"], "lat": "49.910992", "winner": "\u010cSSD", "id": "534005", "population": 1406, "town": "\u010c\u00e1slav", "winner_class": ["cssd"], "lng": "15.389718"}, {"votes": ["5", "2", "4", "3", "144", "15", "116", "1", "7", "191", "0", "6", "0", "233", "203", "0", "17", "3", "78", "1", "65", "24", "34", "1", "13", "8", "0", "6", "1", "1", "52", "0", "3", "1", "0", "0", "3", "0"], "lat": "49.701211", "winner": "\u010cSSD", "id": "503444", "population": 1241, "town": "Litovel", "winner_class": ["cssd"], "lng": "17.076149"}, {"votes": ["3", "2", "0", "10", "132", "13", "92", "2", "4", "208", "1", "1", "0", "277", "162", "1", "5", "1", "95", "0", "30", "30", "50", "0", "6", "9", "0", "12", "0", "2", "42", "0", "1", "0", "0", "3", "4", "1"], "lat": "49.714716", "winner": "\u010cSSD", "id": "599921", "population": 1199, "town": "Stud\u00e9nka", "winner_class": ["cssd"], "lng": "18.054904"}, {"votes": ["7", "2", "1", "7", "259", "19", "149", "4", "5", "168", "1", "0", "48", "438", "259", "0", "5", "0", "112", "6", "30", "33", "35", "0", "5", "9", "0", "9", "11", "1", "66", "0", "1", "0", "0", "6", "10", "2"], "lat": "49.592804", "winner": "\u010cSSD", "id": "598143", "population": 1708, "town": "Fr\u00fddlant nad Ostravic\u00ed", "winner_class": ["cssd"], "lng": "18.359665"}, {"votes": ["8", "2", "2", "11", "342", "33", "277", "5", "6", "119", "1", "1", "2", "205", "249", "0", "6", "8", "173", "5", "36", "70", "81", "0", "10", "11", "0", "8", "3", "1", "76", "0", "1", "0", "4", "5", "7", "1"], "lat": "49.872033", "winner": "KDU-\u010cSL", "id": "578347", "population": 1769, "town": "Litomy\u0161l", "winner_class": ["kdu-csl"], "lng": "16.310523"}, {"votes": ["10", "2", "2", "4", "283", "33", "363", "7", "5", "144", "3", "0", "0", "235", "240", "1", "2", "5", "144", "1", "47", "46", "107", "2", "4", "18", "0", "6", "3", "3", "58", "0", "1", "0", "0", "1", "15", "2"], "lat": "50.344566", "winner": "TOP 09", "id": "574279", "population": 1797, "town": "Nov\u00e9 M\u011bsto nad Metuj\u00ed", "winner_class": ["top-09"], "lng": "16.151466"}, {"votes": ["9", "0", "1", "10", "157", "46", "162", "7", "9", "147", "0", "0", "0", "208", "241", "0", "0", "4", "126", "2", "49", "27", "71", "0", "8", "8", "0", "2", "2", "1", "90", "1", "6", "0", "0", "4", "5", "0"], "lat": "49.912168", "winner": "ANO", "id": "580511", "population": 1403, "town": "Lan\u0161kroun", "winner_class": ["ano"], "lng": "16.611899"}, {"votes": ["4", "5", "2", "6", "152", "12", "122", "7", "3", "246", "0", "0", "0", "203", "195", "1", "16", "2", "103", "3", "37", "26", "64", "0", "20", "3", "0", "0", "1", "2", "43", "1", "7", "1", "0", "2", "3", "0"], "lat": "49.101446", "winner": "KS\u010cM", "id": "583120", "population": 1292, "town": "Ivan\u010dice", "winner_class": ["kscm"], "lng": "16.377518"}, {"votes": ["8", "1", "0", "9", "165", "65", "156", "4", "1", "177", "0", "0", "1", "186", "207", "0", "0", "0", "136", "4", "44", "50", "59", "0", "11", "1", "2", "11", "0", "2", "47", "0", "2", "2", "0", "2", "6", "0"], "lat": "49.720719", "winner": "ANO", "id": "568759", "population": 1359, "town": "Chot\u011bbo\u0159", "winner_class": ["ano"], "lng": "15.670182"}, {"votes": ["0", "3", "1", "5", "128", "9", "128", "6", "4", "205", "0", "2", "3", "194", "178", "1", "24", "2", "52", "7", "33", "38", "39", "0", "2", "7", "0", "2", "2", "0", "51", "0", "17", "0", "1", "2", "4", "0"], "lat": "49.776984", "winner": "KS\u010cM", "id": "540471", "population": 1150, "town": "Mohelnice", "winner_class": ["kscm"], "lng": "16.919462"}, {"votes": ["11", "1", "6", "2", "106", "24", "347", "7", "12", "138", "0", "1", "0", "193", "228", "1", "2", "4", "105", "3", "56", "45", "99", "0", "8", "11", "0", "9", "0", "2", "70", "2", "4", "1", "0", "5", "17", "0"], "lat": "50.494495", "winner": "TOP 09", "id": "573248", "population": 1520, "town": "Nov\u00e1 Paka", "winner_class": ["top-09"], "lng": "15.515032"}, {"votes": ["4", "1", "3", "11", "247", "14", "147", "7", "4", "146", "0", "0", "0", "193", "167", "2", "2", "5", "120", "2", "42", "56", "43", "1", "4", "4", "1", "2", "1", "2", "51", "1", "2", "0", "0", "5", "2", "1"], "lat": "49.714647", "winner": "KDU-\u010cSL", "id": "578576", "population": 1293, "town": "Poli\u010dka", "winner_class": ["kdu-csl"], "lng": "16.265434"}, {"votes": ["6", "2", "2", "7", "139", "13", "191", "3", "7", "148", "0", "0", "0", "156", "145", "0", "0", "0", "79", "2", "30", "29", "56", "2", "13", "3", "0", "2", "1", "2", "53", "0", "3", "0", "1", "5", "8", "1"], "lat": "49.450893", "winner": "TOP 09", "id": "549576", "population": 1109, "town": "Milevsko", "winner_class": ["top-09"], "lng": "14.360005"}, {"votes": ["12", "6", "2", "4", "95", "22", "126", "7", "6", "169", "1", "0", "0", "206", "189", "0", "2", "6", "83", "4", "42", "28", "63", "0", "9", "5", "1", "6", "1", "2", "57", "3", "3", "1", "1", "1", "4", "1"], "lat": "50.039849", "winner": "\u010cSSD", "id": "575500", "population": 1168, "town": "P\u0159elou\u010d", "winner_class": ["cssd"], "lng": "15.560307"}, {"votes": ["3", "4", "0", "2", "12", "20", "96", "5", "6", "220", "0", "0", "1", "156", "165", "0", "0", "2", "75", "8", "51", "18", "55", "0", "13", "12", "0", "13", "2", "2", "55", "4", "2", "0", "0", "4", "7", "3"], "lat": "50.452985", "winner": "KS\u010cM", "id": "565709", "population": 1016, "town": "\u0160t\u011bt\u00ed", "winner_class": ["kscm"], "lng": "14.374212"}, {"votes": ["5", "1", "2", "1", "206", "12", "197", "17", "7", "182", "0", "5", "0", "371", "181", "0", "5", "0", "105", "0", "35", "59", "50", "0", "5", "15", "1", "5", "0", "5", "54", "0", "0", "0", "0", "4", "8", "3"], "lat": "49.348719", "winner": "\u010cSSD", "id": "584002", "population": 1541, "town": "Ti\u0161nov", "winner_class": ["cssd"], "lng": "16.42438"}, {"votes": ["2", "2", "0", "3", "37", "23", "118", "3", "11", "162", "0", "3", "0", "131", "393", "0", "0", "1", "98", "6", "20", "35", "36", "1", "18", "8", "1", "9", "1", "2", "40", "0", "1", "0", "0", "0", "2", "1"], "lat": "50.515039", "winner": "ANO", "id": "565229", "population": 1168, "town": "Lovosice", "winner_class": ["ano"], "lng": "14.05103"}, {"votes": ["3", "3", "3", "6", "44", "22", "70", "1", "1", "120", "2", "2", "0", "287", "171", "0", "7", "0", "90", "2", "32", "30", "31", "1", "6", "3", "0", "3", "2", "0", "40", "2", "6", "2", "1", "3", "9", "1"], "lat": "49.93183", "winner": "\u010cSSD", "id": "597783", "population": 1006, "town": "R\u00fdma\u0159ov", "winner_class": ["cssd"], "lng": "17.271767"}, {"votes": ["9", "0", "5", "12", "114", "18", "315", "13", "7", "166", "0", "0", "2", "160", "226", "2", "0", "0", "150", "10", "27", "69", "102", "0", "5", "12", "0", "7", "0", "2", "92", "1", "2", "1", "0", "0", "4", "4"], "lat": "50.201432", "winner": "TOP 09", "id": "537454", "population": 1537, "town": "Lys\u00e1 nad Labem", "winner_class": ["top-09"], "lng": "14.832812"}, {"votes": ["4", "3", "5", "4", "190", "23", "169", "5", "3", "120", "1", "1", "1", "188", "205", "1", "0", "4", "140", "3", "40", "41", "66", "0", "6", "7", "1", "6", "4", "2", "74", "0", "1", "11", "0", "7", "9", "1"], "lat": "50.001606", "winner": "ANO", "id": "580350", "population": 1346, "town": "Choce\u0148", "winner_class": ["ano"], "lng": "16.223026"}, {"votes": ["5", "2", "0", "0", "204", "10", "95", "2", "3", "125", "0", "4", "0", "206", "198", "1", "7", "2", "69", "2", "132", "37", "59", "0", "8", "5", "0", "6", "6", "0", "41", "2", "0", "3", "0", "3", "7", "0"], "lat": "49.399238", "winner": "\u010cSSD", "id": "588393", "population": 1244, "town": "Byst\u0159ice pod Host\u00fdnem", "winner_class": ["cssd"], "lng": "17.674012"}, {"votes": ["9", "2", "1", "11", "153", "25", "239", "7", "5", "136", "0", "1", "0", "157", "190", "1", "0", "1", "104", "3", "22", "63", "55", "0", "9", "9", "1", "1", "1", "1", "61", "4", "4", "1", "1", "3", "14", "1"], "lat": "49.003639", "winner": "TOP 09", "id": "547336", "population": 1296, "town": "T\u0159ebo\u0148", "winner_class": ["top-09"], "lng": "14.77065"}, {"votes": ["7", "3", "2", "5", "72", "30", "213", "4", "19", "160", "0", "0", "1", "155", "201", "0", "1", "3", "97", "2", "34", "44", "51", "4", "6", "13", "0", "2", "2", "1", "48", "5", "0", "1", "0", "4", "6", "1"], "lat": "50.601906", "winner": "TOP 09", "id": "576964", "population": 1197, "town": "Semily", "winner_class": ["top-09"], "lng": "15.335521"}, {"votes": ["4", "5", "1", "0", "195", "12", "112", "2", "1", "217", "1", "0", "1", "261", "152", "0", "5", "2", "120", "1", "28", "36", "56", "0", "5", "6", "0", "6", "0", "1", "43", "0", "0", "4", "0", "2", "3", "2"], "lat": "49.640938", "winner": "\u010cSSD", "id": "599808", "population": 1284, "town": "P\u0159\u00edbor", "winner_class": ["cssd"], "lng": "18.144987"}, {"votes": ["6", "5", "4", "8", "91", "14", "269", "9", "5", "155", "1", "0", "1", "208", "263", "0", "0", "0", "142", "1", "33", "74", "87", "0", "15", "4", "0", "11", "0", "5", "94", "1", "3", "2", "0", "0", "5", "1"], "lat": "49.781134", "winner": "TOP 09", "id": "540111", "population": 1517, "town": "Dob\u0159\u00ed\u0161", "winner_class": ["top-09"], "lng": "14.167167"}, {"votes": ["5", "1", "1", "3", "230", "11", "108", "11", "6", "139", "0", "0", "0", "248", "139", "0", "7", "2", "59", "4", "36", "25", "41", "1", "12", "4", "1", "5", "1", "0", "51", "3", "1", "0", "1", "4", "7", "0"], "lat": "49.522947", "winner": "\u010cSSD", "id": "595411", "population": 1167, "town": "Byst\u0159ice nad Pern\u0161tejnem", "winner_class": ["cssd"], "lng": "16.261467"}, {"votes": ["6", "1", "1", "6", "64", "22", "195", "9", "6", "139", "3", "2", "0", "150", "176", "5", "1", "2", "135", "2", "61", "48", "74", "0", "3", "5", "1", "10", "2", "3", "76", "1", "2", "0", "0", "0", "6", "2"], "lat": "50.366091", "winner": "TOP 09", "id": "572926", "population": 1219, "town": "Ho\u0159ice", "winner_class": ["top-09"], "lng": "15.631834"}, {"votes": ["6", "1", "1", "4", "55", "31", "113", "3", "5", "84", "0", "1", "0", "81", "144", "0", "1", "3", "73", "4", "17", "42", "75", "0", "3", "4", "0", "7", "0", "1", "32", "0", "3", "0", "0", "3", "2", "1"], "lat": "50.225961", "winner": "ANO", "id": "537501", "population": 800, "town": "Milovice", "winner_class": ["ano"], "lng": "14.888632"}, {"votes": ["2", "0", "1", "4", "446", "41", "198", "4", "3", "113", "0", "0", "0", "119", "192", "0", "1", "2", "101", "2", "68", "28", "74", "1", "7", "4", "1", "7", "1", "1", "47", "1", "3", "0", "1", "0", "4", "2"], "lat": "50.476264", "winner": "KDU-\u010cSL", "id": "573965", "population": 1479, "town": "\u010cerven\u00fd Kostelec", "winner_class": ["kdu-csl"], "lng": "16.092894"}, {"votes": ["5", "3", "1", "5", "32", "25", "219", "4", "2", "73", "0", "0", "1", "167", "246", "1", "3", "3", "113", "3", "44", "60", "41", "0", "5", "8", "0", "6", "2", "0", "74", "0", "4", "3", "1", "4", "14", "6"], "lat": "50.527206", "winner": "ANO", "id": "536326", "population": 1178, "town": "Mnichovo Hradi\u0161t\u011b", "winner_class": ["ano"], "lng": "14.971335"}, {"votes": ["1", "3", "2", "2", "7", "39", "65", "1", "7", "133", "0", "0", "0", "106", "119", "0", "0", "3", "50", "3", "43", "13", "20", "0", "12", "4", "0", "47", "0", "24", "17", "1", "1", "0", "0", "0", "5", "1"], "lat": "50.603766", "winner": "KS\u010cM", "id": "567515", "population": 729, "town": "Duchcov", "winner_class": ["kscm"], "lng": "13.746208"}, {"votes": ["0", "4", "2", "5", "153", "13", "76", "3", "3", "143", "0", "0", "0", "153", "143", "0", "9", "4", "73", "4", "36", "17", "31", "0", "10", "10", "0", "2", "3", "2", "36", "4", "5", "2", "0", "2", "2", "1"], "lat": "49.527547", "winner": "KDU-\u010cSL", "id": "514705", "population": 951, "town": "Lipn\u00edk nad Be\u010dvou", "winner_class": ["kdu-csl"], "lng": "17.586308"}, {"votes": ["8", "0", "7", "11", "103", "24", "181", "7", "9", "139", "0", "0", "0", "146", "186", "1", "1", "0", "70", "5", "20", "26", "66", "0", "5", "7", "0", "12", "0", "0", "58", "1", "1", "1", "0", "7", "12", "2"], "lat": "49.223397", "winner": "ANO", "id": "545201", "population": 1116, "town": "T\u00fdn nad Vltavou", "winner_class": ["ano"], "lng": "14.420567"}, {"votes": ["0", "2", "0", "7", "66", "46", "90", "3", "2", "83", "1", "1", "0", "106", "168", "0", "0", "1", "59", "2", "34", "18", "30", "2", "4", "9", "0", "17", "1", "0", "38", "3", "2", "1", "0", "0", "2", "1"], "lat": "50.322418", "winner": "ANO", "id": "555380", "population": 799, "town": "Nejdek", "winner_class": ["ano"], "lng": "12.729356"}, {"votes": ["7", "1", "5", "9", "9", "27", "71", "4", "5", "140", "1", "0", "2", "105", "146", "0", "1", "2", "57", "5", "39", "32", "40", "0", "14", "3", "0", "14", "2", "4", "41", "0", "1", "4", "1", "6", "8", "2"], "lat": "50.681034", "winner": "ANO", "id": "567507", "population": 808, "town": "Dub\u00ed", "winner_class": ["ano"], "lng": "13.788833"}, {"votes": ["5", "2", "3", "7", "277", "23", "104", "2", "17", "170", "0", "0", "0", "126", "151", "0", "28", "2", "95", "2", "31", "22", "51", "1", "20", "10", "0", "4", "1", "1", "75", "3", "0", "0", "0", "0", "0", "3"], "lat": "49.081544", "winner": "KDU-\u010cSL", "id": "546127", "population": 1236, "town": "Da\u010dice", "winner_class": ["kdu-csl"], "lng": "15.437267"}, {"votes": ["8", "2", "0", "4", "200", "17", "128", "6", "6", "154", "0", "0", "1", "174", "144", "0", "11", "0", "84", "3", "51", "28", "48", "0", "7", "6", "0", "12", "1", "0", "21", "1", "3", "0", "1", "4", "4", "0"], "lat": "49.05209", "winner": "KDU-\u010cSL", "id": "591181", "population": 1129, "town": "Moravsk\u00e9 Bud\u011bjovice", "winner_class": ["kdu-csl"], "lng": "15.808644"}, {"votes": ["1", "3", "0", "2", "77", "12", "77", "4", "4", "112", "1", "2", "0", "166", "148", "0", "0", "1", "59", "3", "23", "23", "42", "0", "4", "7", "0", "9", "0", "1", "40", "0", "2", "1", "0", "16", "3", "0"], "lat": "50.585662", "winner": "\u010cSSD", "id": "573922", "population": 843, "town": "Broumov", "winner_class": ["cssd"], "lng": "16.33181"}, {"votes": ["5", "1", "0", "6", "25", "9", "169", "2", "3", "112", "1", "0", "1", "155", "109", "0", "0", "6", "62", "2", "26", "34", "34", "0", "7", "3", "0", "3", "0", "0", "54", "0", "0", "1", "0", "5", "5", "1"], "lat": "49.752938", "winner": "TOP 09", "id": "561215", "population": 841, "town": "St\u0159\u00edbro", "winner_class": ["top-09"], "lng": "13.004092"}, {"votes": ["10", "5", "6", "3", "103", "57", "185", "5", "3", "115", "0", "4", "3", "140", "175", "1", "1", "2", "112", "2", "43", "32", "42", "0", "9", "9", "5", "4", "1", "3", "68", "2", "1", "0", "1", "2", "10", "7"], "lat": "49.660573", "winner": "TOP 09", "id": "541281", "population": 1171, "town": "Sedl\u010dany", "winner_class": ["top-09"], "lng": "14.426639"}, {"votes": ["3", "0", "1", "3", "81", "13", "113", "5", "4", "105", "1", "0", "0", "91", "93", "0", "1", "1", "59", "3", "26", "29", "51", "0", "12", "3", "5", "3", "1", "1", "30", "0", "1", "1", "0", "1", "7", "1"], "lat": "49.052434", "winner": "TOP 09", "id": "550647", "population": 749, "town": "Vimperk", "winner_class": ["top-09"], "lng": "13.774257"}, {"votes": ["1", "2", "1", "6", "111", "12", "91", "2", "3", "137", "0", "0", "1", "205", "105", "0", "10", "1", "97", "1", "25", "16", "28", "2", "7", "8", "0", "4", "1", "1", "27", "0", "0", "0", "0", "0", "8", "1"], "lat": "49.756389", "winner": "\u010cSSD", "id": "599247", "population": 914, "town": "B\u00edlovec", "winner_class": ["cssd"], "lng": "18.015811"}, {"votes": ["2", "0", "2", "4", "81", "14", "99", "1", "4", "188", "1", "0", "0", "135", "159", "0", "23", "1", "89", "1", "19", "29", "41", "2", "7", "2", "0", "3", "0", "5", "32", "0", "0", "0", "0", "0", "8", "0"], "lat": "48.80556", "winner": "KS\u010cM", "id": "584649", "population": 952, "town": "Mikulov", "winner_class": ["kscm"], "lng": "16.637795"}, {"votes": ["2", "0", "0", "7", "126", "8", "63", "1", "0", "100", "0", "0", "0", "135", "168", "0", "6", "2", "70", "2", "64", "19", "39", "0", "8", "6", "0", "2", "0", "1", "40", "0", "0", "0", "0", "3", "4", "0"], "lat": "49.171559", "winner": "ANO", "id": "585513", "population": 876, "town": "Napajedla", "winner_class": ["ano"], "lng": "17.511944"}, {"votes": ["4", "0", "0", "1", "83", "27", "218", "3", "5", "128", "0", "1", "0", "192", "263", "0", "0", "4", "123", "2", "36", "38", "55", "0", "1", "15", "1", "2", "1", "1", "52", "1", "1", "0", "0", "2", "8", "2"], "lat": "49.385187", "winner": "ANO", "id": "553069", "population": 1270, "town": "Sezimovo \u00dast\u00ed", "winner_class": ["ano"], "lng": "14.684805"}, {"votes": ["2", "2", "0", "8", "23", "22", "101", "1", "7", "105", "0", "1", "0", "99", "152", "3", "0", "1", "22", "1", "32", "24", "20", "3", "4", "5", "3", "3", "1", "0", "48", "0", "0", "1", "1", "0", "4", "2"], "lat": "50.852791", "winner": "ANO", "id": "564095", "population": 701, "town": "Hr\u00e1dek nad Nisou", "winner_class": ["ano"], "lng": "14.844547"}, {"votes": ["2", "3", "5", "3", "54", "30", "101", "6", "4", "104", "1", "0", "0", "126", "153", "0", "0", "11", "92", "0", "31", "17", "35", "0", "13", "4", "0", "8", "3", "0", "47", "1", "3", "1", "0", "4", "2", "0"], "lat": "50.921395", "winner": "ANO", "id": "564028", "population": 864, "town": "Fr\u00fddlant", "winner_class": ["ano"], "lng": "15.079741"}, {"votes": ["0", "2", "0", "1", "133", "14", "82", "2", "4", "141", "0", "0", "0", "159", "124", "0", "5", "2", "63", "2", "30", "21", "34", "1", "3", "0", "0", "2", "1", "1", "39", "1", "0", "2", "0", "1", "5", "0"], "lat": "49.662551", "winner": "\u010cSSD", "id": "599701", "population": 875, "town": "Odry", "winner_class": ["cssd"], "lng": "17.830842"}, {"votes": ["2", "1", "1", "5", "32", "7", "52", "5", "5", "151", "0", "0", "0", "257", "152", "1", "1", "0", "72", "1", "60", "16", "20", "0", "5", "2", "2", "6", "1", "3", "44", "4", "0", "1", "0", "1", "6", "1"], "lat": "49.866254", "winner": "\u010cSSD", "id": "599107", "population": 917, "town": "Rychvald", "winner_class": ["cssd"], "lng": "18.376261"}, {"votes": ["1", "1", "3", "9", "138", "10", "60", "1", "1", "132", "0", "0", "0", "151", "138", "0", "10", "0", "54", "3", "49", "12", "37", "0", "7", "3", "1", "6", "2", "1", "24", "0", "0", "0", "0", "0", "4", "1"], "lat": "49.316894", "winner": "\u010cSSD", "id": "588491", "population": 859, "town": "Hul\u00edn", "winner_class": ["cssd"], "lng": "17.463739"}, {"votes": ["7", "1", "4", "9", "63", "17", "154", "4", "1", "137", "0", "0", "0", "146", "169", "0", "0", "0", "87", "2", "21", "25", "82", "0", "11", "7", "0", "2", "1", "0", "50", "0", "1", "4", "0", "3", "1", "0"], "lat": "49.259935", "winner": "ANO", "id": "553131", "population": 1009, "town": "Sob\u011bslav", "winner_class": ["ano"], "lng": "14.718615"}, {"votes": ["3", "4", "0", "11", "44", "9", "31", "4", "3", "140", "0", "1", "0", "220", "88", "1", "5", "0", "57", "5", "32", "7", "13", "0", "2", "5", "0", "2", "1", "0", "12", "4", "0", "0", "1", "2", "0", "0"], "lat": "49.830999", "winner": "\u010cSSD", "id": "599085", "population": 707, "town": "Pet\u0159vald", "winner_class": ["cssd"], "lng": "18.389405"}, {"votes": ["24", "0", "3", "6", "95", "19", "548", "12", "6", "105", "0", "0", "0", "173", "248", "0", "0", "3", "163", "1", "16", "153", "123", "0", "6", "5", "0", "4", "0", "1", "116", "1", "7", "1", "0", "1", "7", "1"], "lat": "50.158414", "winner": "TOP 09", "id": "539627", "population": 1848, "town": "Roztoky", "winner_class": ["top-09"], "lng": "14.397604"}, {"votes": ["0", "0", "4", "4", "295", "6", "189", "5", "7", "95", "1", "0", "2", "186", "234", "0", "23", "1", "117", "0", "21", "62", "103", "3", "2", "7", "0", "1", "2", "1", "70", "0", "5", "1", "0", "1", "5", "2"], "lat": "49.16863", "winner": "KDU-\u010cSL", "id": "583952", "population": 1455, "town": "\u0160lapanice", "winner_class": ["kdu-csl"], "lng": "16.727312"}, {"votes": ["7", "4", "1", "1", "99", "19", "137", "3", "3", "165", "3", "1", "1", "105", "145", "1", "2", "0", "45", "1", "32", "10", "24", "9", "12", "4", "0", "3", "2", "1", "40", "8", "0", "2", "0", "0", "0", "1"], "lat": "49.668009", "winner": "KS\u010cM", "id": "569569", "population": 891, "town": "Sv\u011btl\u00e1 nad S\u00e1zavou", "winner_class": ["kscm"], "lng": "15.403934"}, {"votes": ["1", "0", "1", "3", "51", "22", "104", "2", "2", "83", "0", "0", "0", "120", "143", "1", "0", "3", "138", "6", "30", "21", "65", "0", "4", "3", "2", "10", "0", "3", "35", "2", "3", "0", "0", "0", "4", "1"], "lat": "50.241503", "winner": "ANO", "id": "570508", "population": 863, "town": "Nov\u00fd Byd\u017eov", "winner_class": ["ano"], "lng": "15.490821"}, {"votes": ["4", "1", "0", "9", "52", "14", "148", "3", "5", "112", "0", "0", "5", "137", "192", "0", "1", "0", "105", "4", "34", "39", "53", "3", "4", "4", "0", "8", "0", "2", "35", "3", "2", "1", "0", "4", "12", "1"], "lat": "50.290853", "winner": "ANO", "id": "535451", "population": 997, "town": "Ben\u00e1tky nad Jizerou", "winner_class": ["ano"], "lng": "14.823432"}, {"votes": ["1", "4", "0", "6", "21", "17", "60", "2", "1", "83", "0", "0", "0", "97", "164", "0", "0", "2", "37", "4", "49", "17", "35", "0", "5", "14", "1", "6", "3", "0", "38", "0", "1", "0", "0", "1", "6", "0"], "lat": "50.323723", "winner": "ANO", "id": "560472", "population": 675, "town": "Kraslice", "winner_class": ["ano"], "lng": "12.517468"}, {"votes": ["3", "1", "1", "3", "29", "7", "167", "5", "3", "94", "0", "0", "1", "98", "133", "0", "1", "5", "78", "4", "15", "29", "74", "5", "7", "4", "0", "4", "2", "0", "30", "0", "2", "0", "1", "5", "3", "0"], "lat": "49.949807", "winner": "TOP 09", "id": "533203", "population": 814, "town": "Kr\u00e1l\u016fv Dv\u016fr", "winner_class": ["top-09"], "lng": "14.034453"}, {"votes": ["2", "2", "1", "5", "216", "13", "56", "2", "3", "95", "0", "0", "0", "144", "102", "0", "7", "1", "33", "0", "25", "39", "36", "1", "8", "6", "0", "2", "2", "1", "24", "0", "0", "0", "0", "4", "7", "0"], "lat": "49.087987", "winner": "KDU-\u010cSL", "id": "585751", "population": 837, "town": "Slavi\u010d\u00edn", "winner_class": ["kdu-csl"], "lng": "17.873488"}, {"votes": ["1", "3", "0", "3", "136", "22", "141", "6", "3", "135", "0", "0", "0", "131", "157", "0", "0", "2", "78", "4", "34", "24", "66", "1", "7", "3", "0", "5", "0", "0", "57", "0", "6", "0", "1", "2", "4", "1"], "lat": "50.292014", "winner": "ANO", "id": "576271", "population": 1033, "town": "Dobru\u0161ka", "winner_class": ["ano"], "lng": "16.160013"}, {"votes": ["0", "3", "2", "0", "12", "14", "133", "1", "1", "145", "0", "0", "1", "100", "98", "2", "0", "2", "57", "1", "29", "13", "36", "1", "3", "6", "1", "9", "0", "1", "34", "0", "0", "3", "0", "5", "6", "1"], "lat": "49.711455", "winner": "KS\u010cM", "id": "559300", "population": 720, "town": "N\u00fd\u0159any", "winner_class": ["kscm"], "lng": "13.211849"}, {"votes": ["4", "0", "0", "4", "307", "12", "132", "2", "2", "62", "0", "0", "0", "97", "123", "1", "17", "0", "85", "2", "36", "23", "43", "0", "5", "5", "0", "3", "0", "0", "53", "2", "0", "0", "0", "1", "7", "1"], "lat": "49.07515", "winner": "KDU-\u010cSL", "id": "550752", "population": 1029, "town": "Star\u00e9 M\u011bsto", "winner_class": ["kdu-csl"], "lng": "17.433379"}, {"votes": ["4", "6", "1", "2", "137", "6", "67", "0", "3", "29", "1", "1", "2", "102", "87", "0", "3", "0", "63", "0", "21", "11", "14", "0", "2", "1", "0", "1", "9", "0", "34", "1", "1", "0", "0", "1", "3", "0"], "lat": "49.932034", "winner": "KDU-\u010cSL", "id": "507580", "population": 613, "town": "Krava\u0159e", "winner_class": ["kdu-csl"], "lng": "18.00472"}, {"votes": ["7", "0", "3", "4", "132", "17", "327", "4", "15", "94", "0", "0", "1", "95", "196", "1", "0", "2", "89", "1", "23", "62", "96", "2", "5", "2", "2", "1", "0", "1", "55", "0", "0", "1", "0", "0", "2", "0"], "lat": "50.081576", "winner": "TOP 09", "id": "539244", "population": 1240, "town": "Hostivice", "winner_class": ["top-09"], "lng": "14.258562"}, {"votes": ["5", "0", "1", "2", "64", "20", "177", "3", "3", "104", "1", "0", "1", "126", "114", "0", "0", "0", "96", "4", "21", "24", "42", "0", "3", "8", "3", "5", "2", "2", "48", "1", "1", "1", "0", "1", "4", "0"], "lat": "49.424887", "winner": "TOP 09", "id": "550850", "population": 887, "town": "Blatn\u00e1", "winner_class": ["top-09"], "lng": "13.881759"}, {"votes": ["4", "5", "0", "3", "254", "18", "98", "4", "4", "180", "1", "1", "2", "189", "131", "0", "11", "1", "84", "1", "28", "23", "34", "1", "10", "3", "0", "4", "0", "4", "44", "0", "5", "1", "0", "2", "9", "0"], "lat": "49.547091", "winner": "KDU-\u010cSL", "id": "581917", "population": 1159, "town": "Letovice", "winner_class": ["kdu-csl"], "lng": "16.573573"}, {"votes": ["8", "1", "1", "4", "41", "19", "202", "3", "2", "134", "0", "0", "0", "150", "170", "0", "0", "2", "63", "2", "13", "22", "53", "0", "6", "8", "1", "4", "0", "1", "38", "1", "4", "0", "0", "1", "4", "0"], "lat": "49.572982", "winner": "TOP 09", "id": "558249", "population": 958, "town": "P\u0159e\u0161tice", "winner_class": ["top-09"], "lng": "13.333499"}, {"votes": ["7", "1", "5", "5", "56", "12", "210", "2", "6", "90", "0", "0", "2", "96", "196", "0", "0", "1", "113", "5", "25", "47", "76", "1", "9", "11", "0", "5", "0", "0", "64", "2", "1", "0", "1", "2", "2", "0"], "lat": "50.074203", "winner": "TOP 09", "id": "533271", "population": 1053, "town": "\u010cesk\u00fd Brod", "winner_class": ["top-09"], "lng": "14.860812"}, {"votes": ["13", "9", "2", "11", "123", "26", "182", "10", "6", "140", "0", "1", "0", "175", "270", "0", "0", "3", "138", "6", "34", "49", "57", "0", "7", "16", "3", "8", "2", "3", "84", "6", "4", "1", "3", "4", "3", "1"], "lat": "49.147892", "winner": "ANO", "id": "551953", "population": 1400, "town": "Vod\u0148any", "winner_class": ["ano"], "lng": "14.175129"}, {"votes": ["1", "0", "0", "7", "81", "10", "28", "1", "5", "184", "0", "0", "0", "113", "81", "0", "11", "0", "45", "2", "30", "16", "32", "0", "9", "4", "0", "7", "1", "0", "27", "2", "0", "1", "0", "1", "1", "0"], "lat": "48.916939", "winner": "KS\u010cM", "id": "586161", "population": 700, "town": "Dub\u0148any", "winner_class": ["kscm"], "lng": "17.090042"}, {"votes": ["7", "3", "0", "8", "88", "11", "116", "4", "0", "88", "0", "0", "0", "124", "130", "0", "1", "1", "64", "3", "25", "25", "57", "0", "8", "4", "0", "3", "0", "0", "31", "7", "2", "0", "0", "1", "3", "0"], "lat": "49.184297", "winner": "ANO", "id": "553271", "population": 814, "town": "Vesel\u00ed nad Lu\u017enic\u00ed", "winner_class": ["ano"], "lng": "14.697336"}, {"votes": ["5", "3", "1", "8", "25", "34", "54", "5", "4", "121", "1", "2", "0", "93", "138", "7", "0", "3", "35", "4", "29", "11", "18", "0", "10", "6", "0", "9", "0", "1", "32", "0", "1", "0", "0", "1", "3", "0"], "lat": "50.658689", "winner": "ANO", "id": "561835", "population": 664, "town": "Mimo\u0148", "winner_class": ["ano"], "lng": "14.724736"}, {"votes": ["4", "0", "1", "4", "57", "9", "77", "1", "6", "128", "0", "0", "0", "107", "128", "1", "1", "0", "74", "3", "21", "27", "20", "1", "6", "5", "0", "2", "3", "1", "23", "1", "1", "0", "0", "2", "7", "1"], "lat": "48.738487", "winner": "KS\u010cM", "id": "545562", "population": 722, "town": "Kaplice", "winner_class": ["kscm"], "lng": "14.496276"}, {"votes": ["3", "2", "1", "6", "41", "26", "157", "6", "1", "129", "0", "0", "0", "160", "164", "0", "0", "2", "121", "2", "27", "34", "37", "0", "6", "3", "1", "4", "0", "0", "43", "2", "3", "1", "0", "5", "3", "0"], "lat": "49.835973", "winner": "ANO", "id": "531189", "population": 990, "town": "Ho\u0159ovice", "winner_class": ["ano"], "lng": "13.902681"}, {"votes": ["2", "2", "0", "1", "126", "16", "43", "4", "2", "135", "0", "0", "1", "179", "116", "0", "25", "0", "42", "0", "40", "15", "35", "0", "9", "3", "2", "1", "1", "0", "31", "2", "0", "1", "1", "3", "1", "0"], "lat": "49.148956", "winner": "\u010cSSD", "id": "592943", "population": 839, "town": "Bu\u010dovice", "winner_class": ["cssd"], "lng": "17.001906"}, {"votes": ["0", "2", "1", "5", "75", "19", "127", "2", "0", "102", "0", "1", "0", "158", "191", "0", "2", "8", "70", "4", "38", "23", "50", "1", "2", "5", "0", "1", "1", "0", "36", "1", "1", "1", "0", "6", "0", "0"], "lat": "50.066012", "winner": "ANO", "id": "574988", "population": 933, "town": "Holice", "winner_class": ["ano"], "lng": "15.9859"}, {"votes": ["1", "5", "2", "2", "26", "43", "72", "1", "3", "96", "1", "0", "7", "110", "156", "1", "0", "1", "74", "2", "45", "22", "36", "0", "3", "10", "2", "4", "2", "1", "59", "1", "2", "1", "0", "0", "5", "1"], "lat": "50.737354", "winner": "ANO", "id": "563820", "population": 797, "town": "Tanvald", "winner_class": ["ano"], "lng": "15.305853"}, {"votes": ["1", "0", "0", "2", "236", "8", "115", "4", "3", "70", "0", "3", "0", "176", "126", "0", "19", "0", "67", "4", "15", "35", "46", "0", "1", "1", "1", "0", "1", "0", "25", "0", "2", "0", "0", "0", "0", "1"], "lat": "49.153255", "winner": "KDU-\u010cSL", "id": "593583", "population": 962, "town": "Slavkov u Brna", "winner_class": ["kdu-csl"], "lng": "16.876492"}, {"votes": ["3", "1", "0", "5", "134", "19", "157", "3", "3", "56", "0", "0", "0", "123", "128", "1", "0", "1", "88", "2", "37", "16", "27", "4", "0", "9", "0", "5", "0", "0", "32", "0", "2", "0", "0", "0", "4", "0"], "lat": "50.479685", "winner": "TOP 09", "id": "574082", "population": 860, "town": "Hronov", "winner_class": ["top-09"], "lng": "16.182304"}, {"votes": ["1", "3", "2", "2", "48", "8", "91", "2", "9", "194", "0", "1", "0", "116", "133", "1", "2", "2", "85", "0", "34", "16", "37", "1", "9", "4", "0", "4", "1", "2", "50", "0", "0", "0", "1", "3", "8", "1"], "lat": "50.151364", "winner": "KS\u010cM", "id": "576859", "population": 871, "town": "T\u00fdni\u0161t\u011b nad Orlic\u00ed", "winner_class": ["kscm"], "lng": "16.077697"}, {"votes": ["2", "0", "4", "1", "77", "15", "26", "3", "7", "101", "0", "4", "0", "148", "84", "0", "12", "1", "48", "0", "25", "8", "16", "2", "8", "2", "0", "5", "0", "1", "23", "0", "0", "1", "2", "0", "6", "0"], "lat": "49.351794", "winner": "\u010cSSD", "id": "514055", "population": 632, "town": "Kojet\u00edn", "winner_class": ["cssd"], "lng": "17.302067"}, {"votes": ["7", "0", "0", "3", "241", "15", "175", "2", "1", "81", "0", "1", "0", "101", "143", "0", "0", "9", "73", "1", "34", "47", "49", "2", "1", "6", "0", "4", "1", "3", "70", "0", "2", "0", "0", "1", "9", "1"], "lat": "50.035802", "winner": "KDU-\u010cSL", "id": "580538", "population": 1083, "town": "Letohrad", "winner_class": ["kdu-csl"], "lng": "16.498785"}, {"votes": ["7", "3", "2", "3", "35", "18", "171", "3", "4", "97", "0", "0", "2", "129", "126", "0", "1", "1", "63", "4", "15", "20", "40", "1", "3", "5", "0", "3", "1", "2", "28", "0", "3", "1", "2", "8", "8", "1"], "lat": "49.654824", "winner": "TOP 09", "id": "557676", "population": 810, "town": "Dob\u0159any", "winner_class": ["top-09"], "lng": "13.293068"}, {"votes": ["10", "0", "1", "2", "42", "10", "408", "11", "0", "41", "1", "0", "1", "54", "276", "0", "0", "2", "129", "3", "27", "61", "103", "1", "1", "5", "3", "5", "0", "1", "59", "1", "1", "0", "0", "8", "5", "1"], "lat": "49.968143", "winner": "TOP 09", "id": "539325", "population": 1273, "town": "Jesenice", "winner_class": ["top-09"], "lng": "14.513496"}, {"votes": ["7", "2", "3", "7", "40", "26", "146", "4", "2", "81", "0", "0", "4", "92", "142", "0", "0", "0", "102", "3", "22", "43", "56", "0", "3", "4", "0", "7", "2", "1", "42", "1", "1", "0", "0", "3", "5", "0"], "lat": "50.642741", "winner": "TOP 09", "id": "563871", "population": 851, "town": "\u017delezn\u00fd Brod", "winner_class": ["top-09"], "lng": "15.254077"}, {"votes": ["14", "1", "3", "3", "111", "7", "662", "25", "2", "65", "1", "0", "0", "109", "208", "0", "0", "0", "153", "7", "13", "124", "104", "1", "3", "8", "0", "0", "0", "1", "112", "3", "3", "0", "1", "0", "4", "0"], "lat": "49.960081", "winner": "TOP 09", "id": "539139", "population": 1748, "town": "\u010cerno\u0161ice", "winner_class": ["top-09"], "lng": "14.319794"}, {"votes": ["11", "2", "5", "6", "70", "13", "142", "3", "4", "115", "0", "0", "1", "141", "161", "0", "1", "5", "102", "3", "47", "22", "47", "0", "4", "14", "0", "2", "0", "1", "35", "0", "1", "0", "0", "1", "3", "0"], "lat": "50.122668", "winner": "ANO", "id": "576361", "population": 962, "town": "Kostelec nad Orlic\u00ed", "winner_class": ["ano"], "lng": "16.213185"}, {"votes": ["1", "3", "3", "1", "37", "15", "42", "2", "6", "129", "0", "0", "0", "87", "100", "0", "1", "1", "32", "1", "31", "10", "27", "0", "16", "5", "0", "4", "1", "2", "22", "0", "0", "0", "0", "1", "7", "1"], "lat": "50.229368", "winner": "KS\u010cM", "id": "566616", "population": 588, "town": "Podbo\u0159any", "winner_class": ["kscm"], "lng": "13.411917"}, {"votes": ["28", "5", "0", "2", "48", "11", "30", "2", "2", "108", "1", "2", "0", "119", "119", "6", "1", "0", "39", "2", "19", "4", "20", "0", "4", "7", "0", "6", "1", "1", "20", "0", "0", "0", "1", "0", "2", "1"], "lat": "49.774452", "winner": "\u010cSSD", "id": "511021", "population": 611, "town": "V\u00edtkov", "winner_class": ["cssd"], "lng": "17.74941"}, {"votes": ["3", "0", "1", "1", "102", "22", "155", "9", "5", "71", "0", "0", "0", "119", "153", "1", "0", "3", "70", "0", "30", "21", "36", "1", "4", "4", "0", "2", "0", "0", "56", "4", "2", "0", "0", "2", "6", "0"], "lat": "50.086014", "winner": "TOP 09", "id": "581259", "population": 883, "town": "\u017damberk", "winner_class": ["top-09"], "lng": "16.46738"}, {"votes": ["0", "4", "1", "6", "30", "26", "105", "3", "6", "85", "0", "0", "0", "65", "135", "0", "0", "1", "52", "1", "34", "20", "33", "0", "5", "2", "0", "2", "0", "1", "53", "0", "1", "2", "1", "1", "2", "0"], "lat": "50.816926", "winner": "ANO", "id": "564117", "population": 677, "town": "Chrastava", "winner_class": ["ano"], "lng": "14.968836"}, {"votes": ["1", "2", "2", "7", "134", "16", "85", "2", "7", "144", "0", "0", "0", "128", "120", "0", "15", "0", "64", "1", "17", "15", "31", "1", "3", "4", "1", "1", "0", "0", "26", "0", "2", "0", "0", "0", "4", "2"], "lat": "49.048932", "winner": "KS\u010cM", "id": "594482", "population": 835, "town": "Moravsk\u00fd Krumlov", "winner_class": ["kscm"], "lng": "16.311694"}, {"votes": ["3", "3", "2", "4", "95", "4", "102", "3", "2", "103", "1", "0", "0", "111", "167", "0", "14", "0", "115", "0", "25", "54", "50", "1", "2", "3", "0", "4", "1", "0", "51", "2", "0", "0", "0", "2", "0", "0"], "lat": "48.940848", "winner": "ANO", "id": "584495", "population": 924, "town": "Hustope\u010de", "winner_class": ["ano"], "lng": "16.737621"}, {"votes": ["1", "0", "0", "3", "181", "12", "79", "3", "5", "106", "0", "0", "0", "86", "101", "0", "1", "1", "43", "1", "19", "21", "23", "0", "1", "4", "1", "6", "0", "0", "47", "1", "0", "0", "0", "3", "0", "0"], "lat": "49.290918", "winner": "KDU-\u010cSL", "id": "588032", "population": 749, "town": "T\u0159e\u0161\u0165", "winner_class": ["kdu-csl"], "lng": "15.482114"}, {"votes": ["2", "5", "2", "5", "12", "12", "51", "1", "3", "68", "1", "0", "1", "90", "124", "15", "1", "5", "49", "2", "22", "13", "24", "10", "10", "13", "0", "25", "6", "2", "15", "2", "1", "1", "0", "4", "6", "4"], "lat": "50.138632", "winner": "ANO", "id": "560367", "population": 607, "town": "Horn\u00ed Slavkov", "winner_class": ["ano"], "lng": "12.807581"}, {"votes": ["3", "2", "1", "4", "170", "22", "42", "2", "1", "139", "0", "2", "0", "126", "81", "4", "3", "0", "99", "3", "24", "17", "29", "0", "5", "3", "1", "2", "0", "1", "28", "1", "0", "1", "0", "5", "3", "2"], "lat": "49.712377", "winner": "KDU-\u010cSL", "id": "599352", "population": 826, "town": "Fulnek", "winner_class": ["kdu-csl"], "lng": "17.903193"}, {"votes": ["5", "0", "1", "3", "319", "11", "61", "5", "1", "91", "0", "1", "0", "92", "109", "0", "18", "0", "59", "1", "12", "19", "36", "0", "5", "6", "3", "2", "2", "0", "36", "1", "0", "0", "0", "1", "2", "4"], "lat": "48.901019", "winner": "KDU-\u010cSL", "id": "586587", "population": 906, "town": "Str\u00e1\u017enice", "winner_class": ["kdu-csl"], "lng": "17.316803"}, {"votes": ["1", "0", "0", "3", "66", "15", "116", "3", "2", "134", "0", "0", "0", "105", "151", "0", "10", "2", "41", "1", "22", "34", "46", "0", "2", "2", "0", "2", "0", "1", "54", "0", "0", "0", "1", "0", "4", "1"], "lat": "49.18232", "winner": "ANO", "id": "583782", "population": 819, "town": "Rosice", "winner_class": ["ano"], "lng": "16.387871"}, {"votes": ["1", "2", "1", "1", "235", "8", "27", "2", "3", "44", "0", "1", "0", "90", "57", "0", "1", "0", "21", "2", "16", "11", "11", "0", "3", "3", "0", "2", "0", "0", "16", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.090878", "winner": "KDU-\u010cSL", "id": "585114", "population": 558, "town": "Brumov-Bylnice", "winner_class": ["kdu-csl"], "lng": "18.023095"}, {"votes": ["4", "3", "0", "2", "33", "15", "25", "0", "1", "130", "1", "2", "0", "167", "81", "0", "7", "0", "57", "4", "26", "1", "18", "1", "9", "2", "0", "6", "4", "0", "19", "1", "1", "1", "0", "3", "6", "0"], "lat": "50.120952", "winner": "\u010cSSD", "id": "597961", "population": 630, "town": "Vrbno pod Prad\u011bdem", "winner_class": ["cssd"], "lng": "17.383157"}, {"votes": ["4", "2", "0", "4", "95", "20", "124", "5", "5", "62", "0", "0", "1", "97", "125", "1", "0", "4", "88", "2", "24", "31", "60", "0", "7", "6", "0", "6", "0", "2", "34", "0", "1", "2", "1", "8", "1", "2"], "lat": "50.200969", "winner": "ANO", "id": "571041", "population": 824, "town": "T\u0159ebechovice pod Orebem", "winner_class": ["ano"], "lng": "15.992231"}, {"votes": ["2", "0", "1", "2", "68", "36", "65", "19", "0", "104", "0", "0", "1", "82", "125", "0", "0", "1", "67", "1", "38", "12", "18", "0", "3", "6", "1", "6", "1", "1", "39", "1", "0", "2", "0", "2", "7", "0"], "lat": "50.512375", "winner": "ANO", "id": "579777", "population": 711, "town": "\u00dapice", "winner_class": ["ano"], "lng": "16.016067"}, {"votes": ["5", "0", "2", "0", "60", "25", "139", "6", "4", "70", "0", "0", "0", "107", "126", "0", "0", "1", "74", "5", "26", "39", "61", "1", "1", "5", "0", "2", "0", "1", "30", "0", "3", "0", "0", "0", "7", "1"], "lat": "50.530626", "winner": "TOP 09", "id": "577308", "population": 801, "town": "Lomnice nad Popelkou", "winner_class": ["top-09"], "lng": "15.37341"}, {"votes": ["1", "0", "0", "10", "250", "7", "34", "1", "0", "47", "0", "0", "1", "111", "61", "0", "0", "0", "52", "0", "7", "9", "17", "0", "4", "1", "0", "2", "1", "0", "20", "0", "0", "0", "0", "0", "7", "3"], "lat": "49.576717", "winner": "KDU-\u010cSL", "id": "598259", "population": 646, "town": "Jablunkov", "winner_class": ["kdu-csl"], "lng": "18.764583"}, {"votes": ["9", "2", "2", "4", "179", "12", "95", "2", "4", "75", "3", "0", "0", "88", "80", "1", "3", "0", "91", "0", "20", "29", "32", "0", "5", "5", "0", "1", "0", "0", "38", "1", "0", "2", "0", "1", "5", "0"], "lat": "49.184176", "winner": "KDU-\u010cSL", "id": "588024", "population": 789, "town": "Tel\u010d", "winner_class": ["kdu-csl"], "lng": "15.452753"}, {"votes": ["3", "2", "0", "4", "14", "17", "47", "4", "2", "116", "0", "1", "1", "144", "123", "0", "0", "1", "41", "0", "25", "9", "30", "0", "6", "3", "0", "1", "0", "1", "21", "0", "2", "3", "0", "5", "4", "0"], "lat": "50.146307", "winner": "\u010cSSD", "id": "532860", "population": 630, "town": "Stochov", "winner_class": ["cssd"], "lng": "13.963451"}, {"votes": ["1", "0", "0", "3", "189", "17", "151", "1", "2", "69", "0", "0", "1", "110", "103", "1", "5", "0", "42", "0", "28", "7", "36", "0", "3", "3", "1", "2", "0", "0", "21", "3", "0", "0", "0", "0", "1", "0"], "lat": "49.044989", "winner": "KDU-\u010cSL", "id": "550744", "population": 800, "town": "Kunovice", "winner_class": ["kdu-csl"], "lng": "17.470106"}, {"votes": ["19", "3", "1", "3", "155", "7", "59", "1", "2", "70", "1", "0", "2", "147", "95", "0", "3", "1", "50", "1", "23", "19", "61", "0", "1", "7", "0", "2", "1", "0", "17", "0", "1", "0", "0", "4", "1", "1"], "lat": "49.466028", "winner": "KDU-\u010cSL", "id": "545252", "population": 758, "town": "Zub\u0159\u00ed", "winner_class": ["kdu-csl"], "lng": "18.092485"}, {"votes": ["7", "2", "0", "2", "97", "21", "148", "2", "3", "82", "0", "0", "2", "79", "139", "0", "0", "2", "91", "3", "45", "32", "46", "1", "6", "16", "1", "4", "0", "2", "46", "1", "2", "0", "0", "2", "5", "0"], "lat": "50.608897", "winner": "TOP 09", "id": "577197", "population": 889, "town": "Jilemnice", "winner_class": ["top-09"], "lng": "15.506529"}, {"votes": ["3", "3", "0", "11", "32", "15", "107", "3", "1", "138", "0", "0", "0", "107", "154", "0", "0", "0", "44", "4", "24", "39", "50", "0", "4", "4", "1", "30", "0", "1", "35", "0", "0", "0", "0", "1", "41", "1"], "lat": "49.833477", "winner": "ANO", "id": "530841", "population": 853, "town": "T\u00fdnec nad S\u00e1zavou", "winner_class": ["ano"], "lng": "14.589834"}, {"votes": ["2", "1", "2", "4", "167", "9", "76", "4", "1", "111", "0", "0", "0", "118", "113", "1", "3", "1", "61", "0", "6", "10", "33", "0", "7", "2", "1", "2", "1", "0", "23", "1", "2", "1", "0", "3", "4", "1"], "lat": "49.695168", "winner": "KDU-\u010cSL", "id": "568988", "population": 771, "town": "Lede\u010d nad S\u00e1zavou", "winner_class": ["kdu-csl"], "lng": "15.277723"}, {"votes": ["5", "0", "0", "5", "42", "11", "109", "0", "1", "87", "0", "0", "0", "100", "122", "0", "0", "3", "56", "2", "21", "22", "51", "0", "2", "2", "0", "1", "0", "3", "52", "0", "1", "3", "1", "3", "3", "1"], "lat": "50.154404", "winner": "ANO", "id": "570109", "population": 709, "town": "Chlumec nad Cidlinou", "winner_class": ["ano"], "lng": "15.460262"}, {"votes": ["4", "1", "0", "3", "80", "16", "155", "1", "5", "97", "0", "0", "1", "141", "107", "0", "0", "2", "66", "1", "28", "10", "29", "0", "5", "4", "1", "5", "1", "0", "35", "4", "1", "6", "0", "4", "0", "1"], "lat": "49.320687", "winner": "TOP 09", "id": "556254", "population": 814, "town": "Hora\u017e\u010fovice", "winner_class": ["top-09"], "lng": "13.701002"}, {"votes": ["4", "2", "0", "4", "175", "11", "60", "2", "4", "82", "0", "0", "0", "138", "128", "0", "2", "1", "64", "0", "29", "21", "25", "0", "12", "2", "1", "2", "1", "0", "39", "2", "4", "0", "0", "2", "4", "0"], "lat": "49.871011", "winner": "KDU-\u010cSL", "id": "507270", "population": 821, "town": "Hradec nad Moravic\u00ed", "winner_class": ["kdu-csl"], "lng": "17.875817"}, {"votes": ["2", "2", "0", "0", "18", "14", "126", "2", "0", "127", "0", "0", "0", "91", "76", "0", "0", "0", "51", "2", "16", "10", "17", "0", "7", "2", "0", "2", "1", "0", "30", "4", "4", "0", "0", "2", "0", "0"], "lat": "49.868156", "winner": "KS\u010cM", "id": "561134", "population": 606, "town": "Plan\u00e1", "winner_class": ["kscm"], "lng": "12.743783"}, {"votes": ["4", "1", "3", "3", "155", "4", "124", "2", "2", "75", "1", "2", "0", "133", "123", "0", "9", "0", "66", "0", "50", "16", "60", "0", "1", "9", "0", "4", "3", "0", "25", "0", "3", "3", "0", "0", "1", "0"], "lat": "49.099823", "winner": "KDU-\u010cSL", "id": "585459", "population": 882, "town": "Luha\u010dovice", "winner_class": ["kdu-csl"], "lng": "17.757473"}, {"votes": ["1", "1", "4", "1", "50", "27", "123", "1", "5", "100", "2", "0", "0", "104", "148", "0", "0", "1", "36", "1", "29", "24", "43", "0", "9", "6", "0", "4", "1", "0", "38", "4", "2", "3", "0", "1", "3", "0"], "lat": "50.120331", "winner": "ANO", "id": "554529", "population": 772, "town": "Franti\u0161kovy L\u00e1zn\u011b", "winner_class": ["ano"], "lng": "12.351739"}, {"votes": ["5", "2", "0", "2", "64", "20", "121", "2", "0", "196", "0", "0", "0", "125", "121", "1", "1", "0", "75", "1", "14", "16", "35", "0", "1", "2", "1", "4", "2", "3", "28", "0", "2", "0", "0", "1", "7", "0"], "lat": "49.295232", "winner": "KS\u010cM", "id": "552054", "population": 852, "town": "Bechyn\u011b", "winner_class": ["kscm"], "lng": "14.468099"}, {"votes": ["3", "2", "0", "3", "170", "10", "78", "1", "2", "108", "0", "0", "0", "124", "105", "0", "25", "2", "44", "0", "29", "20", "39", "2", "6", "6", "0", "7", "1", "2", "27", "0", "0", "0", "1", "2", "5", "0"], "lat": "49.201282", "winner": "KDU-\u010cSL", "id": "593559", "population": 824, "town": "Rous\u00ednov", "winner_class": ["kdu-csl"], "lng": "16.882146"}, {"votes": ["3", "0", "1", "4", "15", "37", "45", "1", "2", "80", "1", "0", "1", "86", "93", "0", "1", "0", "36", "0", "25", "7", "24", "2", "11", "3", "1", "5", "0", "0", "14", "0", "0", "2", "0", "0", "3", "3"], "lat": "51.003688", "winner": "ANO", "id": "562858", "population": 506, "town": "\u0160luknov", "winner_class": ["ano"], "lng": "14.452585"}, {"votes": ["1", "1", "1", "3", "25", "11", "144", "4", "6", "119", "0", "0", "8", "104", "117", "0", "0", "2", "68", "0", "15", "35", "55", "1", "4", "5", "0", "4", "2", "0", "44", "0", "0", "0", "0", "2", "1", "0"], "lat": "50.152718", "winner": "TOP 09", "id": "542164", "population": 782, "town": "Nov\u00e9 Stra\u0161ec\u00ed", "winner_class": ["top-09"], "lng": "13.900428"}, {"votes": ["11", "2", "1", "3", "34", "13", "174", "4", "4", "116", "0", "0", "0", "111", "138", "1", "0", "0", "64", "2", "28", "39", "57", "0", "2", "7", "0", "9", "0", "1", "73", "3", "3", "0", "0", "1", "3", "0"], "lat": "50.233412", "winner": "TOP 09", "id": "538574", "population": 904, "town": "Odolena Voda", "winner_class": ["top-09"], "lng": "14.410781"}, {"votes": ["7", "4", "1", "3", "21", "25", "58", "2", "5", "115", "0", "0", "1", "90", "109", "0", "2", "1", "37", "0", "26", "20", "32", "1", "9", "3", "0", "9", "0", "0", "36", "1", "0", "1", "0", "6", "7", "0"], "lat": "50.797805", "winner": "KS\u010cM", "id": "562394", "population": 632, "town": "\u010cesk\u00e1 Kamenice", "winner_class": ["kscm"], "lng": "14.417672"}, {"votes": ["7", "0", "1", "3", "52", "16", "394", "10", "4", "60", "0", "0", "0", "113", "168", "0", "0", "1", "118", "2", "36", "46", "85", "0", "3", "5", "0", "1", "0", "2", "82", "1", "5", "0", "0", "3", "4", "0"], "lat": "50.073944", "winner": "TOP 09", "id": "538957", "population": 1222, "town": "\u00davaly", "winner_class": ["top-09"], "lng": "14.730804"}, {"votes": ["1", "0", "5", "1", "111", "10", "56", "2", "0", "136", "0", "0", "0", "103", "90", "0", "0", "4", "40", "4", "30", "18", "23", "0", "7", "3", "1", "1", "0", "1", "17", "2", "0", "3", "0", "0", "7", "0"], "lat": "49.843469", "winner": "KS\u010cM", "id": "572241", "population": 676, "town": "Skute\u010d", "winner_class": ["kscm"], "lng": "15.996549"}, {"votes": ["3", "0", "0", "0", "14", "29", "81", "5", "6", "92", "1", "0", "0", "99", "206", "0", "0", "2", "72", "0", "26", "27", "23", "0", "4", "5", "0", "3", "0", "0", "32", "1", "0", "1", "0", "3", "2", "2"], "lat": "50.564714", "winner": "ANO", "id": "561495", "population": 739, "town": "Doksy", "winner_class": ["ano"], "lng": "14.655525"}, {"votes": ["0", "0", "0", "2", "57", "6", "40", "2", "3", "82", "0", "0", "0", "196", "66", "0", "1", "0", "45", "1", "19", "13", "15", "0", "4", "3", "0", "7", "0", "3", "36", "1", "1", "1", "0", "2", "2", "1"], "lat": "49.898759", "winner": "\u010cSSD", "id": "598968", "population": 609, "town": "Doln\u00ed Lutyn\u011b", "winner_class": ["cssd"], "lng": "18.428154"}, {"votes": ["1", "0", "2", "12", "81", "23", "93", "6", "3", "62", "0", "0", "0", "68", "90", "0", "0", "1", "65", "0", "34", "15", "36", "0", "5", "5", "0", "8", "0", "1", "38", "1", "1", "1", "0", "1", "1", "0"], "lat": "50.39467", "winner": "TOP 09", "id": "573990", "population": 654, "town": "\u010cesk\u00e1 Skalice", "winner_class": ["top-09"], "lng": "16.042762"}, {"votes": ["2", "1", "0", "9", "79", "5", "54", "2", "7", "44", "0", "0", "2", "139", "86", "0", "1", "0", "50", "0", "18", "13", "22", "0", "2", "3", "0", "0", "0", "0", "19", "0", "0", "1", "0", "2", "3", "1"], "lat": "49.636572", "winner": "\u010cSSD", "id": "598062", "population": 565, "town": "Byst\u0159ice", "winner_class": ["cssd"], "lng": "18.720377"}, {"votes": ["3", "4", "0", "2", "23", "7", "34", "1", "3", "92", "0", "1", "0", "73", "104", "0", "0", "1", "31", "3", "27", "11", "19", "0", "5", "1", "0", "4", "0", "1", "34", "0", "1", "1", "1", "1", "6", "0"], "lat": "50.760821", "winner": "ANO", "id": "562564", "population": 494, "town": "J\u00edlov\u00e9", "winner_class": ["ano"], "lng": "14.103835"}, {"votes": ["4", "6", "0", "4", "24", "14", "52", "2", "3", "66", "1", "0", "0", "88", "98", "0", "1", "1", "38", "4", "22", "5", "42", "2", "6", "6", "0", "6", "2", "2", "24", "1", "1", "1", "1", "3", "6", "1"], "lat": "50.118926", "winner": "ANO", "id": "560499", "population": 537, "town": "Kyn\u0161perk nad Oh\u0159\u00ed", "winner_class": ["ano"], "lng": "12.53027"}, {"votes": ["2", "0", "0", "2", "56", "4", "37", "2", "0", "96", "0", "0", "0", "144", "112", "0", "4", "0", "40", "0", "28", "14", "27", "0", "7", "4", "0", "3", "1", "0", "20", "0", "0", "0", "0", "1", "1", "1"], "lat": "49.356442", "winner": "\u010cSSD", "id": "588512", "population": 606, "town": "Chropyn\u011b", "winner_class": ["cssd"], "lng": "17.36451"}, {"votes": ["3", "0", "0", "2", "292", "6", "86", "1", "1", "63", "0", "1", "0", "120", "95", "0", "7", "0", "56", "0", "18", "14", "24", "0", "1", "5", "0", "4", "0", "0", "27", "1", "1", "1", "0", "0", "2", "0"], "lat": "49.140637", "winner": "KDU-\u010cSL", "id": "585891", "population": 831, "town": "Vala\u0161sk\u00e9 Klobouky", "winner_class": ["kdu-csl"], "lng": "18.0076"}, {"votes": ["1", "0", "2", "8", "93", "9", "150", "3", "3", "114", "1", "1", "7", "103", "118", "0", "1", "1", "111", "2", "33", "10", "12", "0", "3", "7", "0", "9", "0", "0", "35", "10", "2", "2", "0", "1", "3", "0"], "lat": "49.390768", "winner": "TOP 09", "id": "553786", "population": 855, "town": "Kdyn\u011b", "winner_class": ["top-09"], "lng": "13.039676"}, {"votes": ["1", "2", "2", "0", "13", "20", "37", "2", "7", "72", "0", "1", "0", "94", "90", "0", "0", "0", "19", "6", "17", "15", "15", "0", "8", "3", "0", "6", "0", "1", "9", "7", "1", "0", "0", "1", "1", "1"], "lat": "50.182966", "winner": "\u010cSSD", "id": "560359", "population": 451, "town": "Habartov", "winner_class": ["cssd"], "lng": "12.550536"}, {"votes": ["1", "1", "0", "1", "5", "11", "50", "2", "4", "147", "0", "1", "1", "70", "63", "0", "0", "1", "14", "0", "20", "8", "14", "0", "4", "11", "0", "8", "2", "0", "23", "0", "1", "1", "0", "0", "5", "0"], "lat": "50.622711", "winner": "KS\u010cM", "id": "567779", "population": 469, "town": "Osek", "winner_class": ["kscm"], "lng": "13.685855"}, {"votes": ["6", "0", "2", "2", "101", "13", "50", "3", "2", "105", "0", "1", "0", "124", "97", "0", "15", "1", "37", "2", "14", "18", "18", "1", "3", "1", "0", "4", "1", "0", "36", "0", "1", "1", "1", "0", "2", "0"], "lat": "49.207264", "winner": "\u010cSSD", "id": "591211", "population": 662, "town": "N\u00e1m\u011b\u0161\u0165 nad Oslavou", "winner_class": ["cssd"], "lng": "16.158486"}, {"votes": ["0", "1", "1", "4", "236", "4", "73", "3", "7", "82", "0", "2", "0", "119", "68", "0", "2", "0", "53", "0", "12", "14", "26", "0", "6", "4", "0", "0", "0", "1", "33", "1", "0", "0", "0", "1", "2", "0"], "lat": "49.288627", "winner": "KDU-\u010cSL", "id": "596973", "population": 755, "town": "Velk\u00e1 B\u00edte\u0161", "winner_class": ["kdu-csl"], "lng": "16.225853"}, {"votes": ["1", "0", "1", "10", "113", "7", "90", "3", "1", "71", "0", "1", "0", "96", "93", "0", "1", "0", "42", "2", "22", "24", "46", "0", "5", "3", "0", "6", "0", "0", "26", "1", "0", "0", "0", "8", "8", "1"], "lat": "49.486998", "winner": "KDU-\u010cSL", "id": "587711", "population": 682, "town": "Poln\u00e1", "winner_class": ["kdu-csl"], "lng": "15.71881"}, {"votes": ["2", "0", "1", "4", "60", "13", "83", "1", "4", "108", "0", "0", "0", "88", "102", "0", "0", "0", "56", "2", "21", "27", "22", "2", "3", "4", "1", "7", "1", "2", "55", "2", "0", "0", "0", "3", "1", "2"], "lat": "48.842315", "winner": "KS\u010cM", "id": "545171", "population": 677, "town": "Trhov\u00e9 Sviny", "winner_class": ["kscm"], "lng": "14.63924"}, {"votes": ["7", "1", "1", "10", "55", "7", "80", "0", "3", "75", "0", "0", "1", "80", "102", "0", "0", "0", "44", "1", "30", "15", "32", "0", "6", "1", "0", "7", "2", "3", "27", "0", "4", "1", "0", "0", "2", "0"], "lat": "49.199486", "winner": "ANO", "id": "549771", "population": 597, "town": "Protiv\u00edn", "winner_class": ["ano"], "lng": "14.217175"}, {"votes": ["2", "1", "2", "5", "11", "12", "165", "0", "1", "70", "0", "0", "1", "76", "101", "0", "0", "0", "39", "2", "21", "15", "46", "4", "0", "1", "0", "5", "0", "4", "36", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.815838", "winner": "TOP 09", "id": "559521", "population": 622, "town": "T\u0159emo\u0161n\u00e1", "winner_class": ["top-09"], "lng": "13.394994"}, {"votes": ["5", "4", "0", "10", "42", "9", "209", "6", "1", "100", "1", "0", "0", "79", "137", "0", "0", "2", "49", "0", "19", "21", "36", "0", "3", "3", "0", "4", "0", "0", "40", "0", "2", "0", "0", "1", "2", "0"], "lat": "49.697678", "winner": "TOP 09", "id": "558371", "population": 785, "town": "Star\u00fd Plzenec", "winner_class": ["top-09"], "lng": "13.473502"}, {"votes": ["2", "1", "1", "0", "20", "15", "92", "1", "0", "102", "0", "0", "0", "57", "72", "1", "0", "0", "29", "0", "16", "6", "14", "0", "4", "1", "3", "8", "0", "0", "15", "4", "0", "4", "0", "3", "2", "0"], "lat": "49.529648", "winner": "KS\u010cM", "id": "553671", "population": 473, "town": "Hor\u0161ovsk\u00fd T\u00fdn", "winner_class": ["kscm"], "lng": "12.944049"}, {"votes": ["3", "2", "1", "1", "53", "11", "138", "4", "6", "82", "1", "0", "0", "86", "154", "1", "2", "0", "77", "3", "27", "32", "42", "0", "3", "6", "1", "1", "0", "1", "42", "3", "2", "2", "0", "3", "3", "3"], "lat": "49.051047", "winner": "ANO", "id": "544485", "population": 796, "town": "Hlubok\u00e1 nad Vltavou", "winner_class": ["ano"], "lng": "14.431786"}, {"votes": ["3", "1", "0", "0", "128", "4", "32", "1", "5", "75", "0", "1", "1", "169", "53", "0", "1", "0", "44", "3", "18", "13", "23", "0", "3", "1", "0", "1", "2", "2", "26", "2", "1", "0", "0", "1", "6", "0"], "lat": "49.895868", "winner": "\u010cSSD", "id": "599077", "population": 620, "town": "Petrovice u Karvin\u00e9", "winner_class": ["cssd"], "lng": "18.54779"}, {"votes": ["2", "2", "0", "9", "54", "4", "234", "5", "4", "75", "0", "0", "0", "55", "128", "0", "0", "2", "83", "6", "11", "57", "71", "0", "0", "5", "0", "3", "1", "0", "50", "3", "1", "0", "0", "1", "3", "0"], "lat": "49.866497", "winner": "TOP 09", "id": "540765", "population": 869, "town": "Mn\u00ed\u0161ek pod Brdy", "winner_class": ["top-09"], "lng": "14.261758"}, {"votes": ["0", "1", "1", "4", "14", "6", "101", "2", "5", "85", "0", "0", "0", "88", "69", "0", "1", "0", "36", "0", "17", "6", "16", "1", "4", "0", "1", "6", "0", "0", "14", "4", "0", "1", "0", "6", "3", "1"], "lat": "49.593612", "winner": "TOP 09", "id": "553654", "population": 493, "town": "Hol\u00fd\u0161ov", "winner_class": ["top-09"], "lng": "13.101293"}, {"votes": ["5", "0", "2", "2", "77", "15", "86", "2", "2", "65", "0", "1", "0", "93", "100", "0", "0", "1", "53", "3", "8", "30", "31", "0", "1", "6", "0", "2", "1", "0", "46", "1", "0", "0", "0", "0", "1", "3"], "lat": "49.470763", "winner": "ANO", "id": "548511", "population": 637, "town": "Pacov", "winner_class": ["ano"], "lng": "15.001679"}, {"votes": ["1", "1", "0", "2", "41", "10", "72", "1", "2", "60", "6", "0", "0", "83", "88", "0", "0", "1", "36", "1", "20", "13", "24", "1", "1", "3", "0", "3", "0", "0", "24", "3", "0", "1", "0", "1", "0", "0"], "lat": "49.740104", "winner": "ANO", "id": "534633", "population": 499, "town": "Zru\u010d nad S\u00e1zavou", "winner_class": ["ano"], "lng": "15.106059"}, {"votes": ["2", "1", "0", "4", "91", "7", "39", "0", "3", "35", "0", "2", "0", "129", "98", "0", "2", "0", "81", "1", "19", "12", "12", "1", "0", "2", "0", "5", "1", "1", "19", "2", "2", "0", "0", "1", "1", "1"], "lat": "49.890423", "winner": "\u010cSSD", "id": "507971", "population": 574, "town": "Ludge\u0159ovice", "winner_class": ["cssd"], "lng": "18.240083"}, {"votes": ["6", "2", "4", "2", "19", "11", "32", "1", "0", "77", "0", "1", "0", "96", "87", "0", "0", "2", "30", "8", "24", "11", "14", "0", "6", "6", "1", "10", "2", "0", "28", "1", "2", "1", "0", "0", "5", "1"], "lat": "50.621154", "winner": "\u010cSSD", "id": "567311", "population": 490, "town": "Mezibo\u0159\u00ed", "winner_class": ["cssd"], "lng": "13.598699"}, {"votes": ["10", "2", "0", "0", "88", "19", "87", "5", "3", "51", "0", "1", "1", "103", "125", "0", "1", "3", "56", "1", "25", "13", "38", "0", "1", "5", "0", "1", "0", "3", "38", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.947071", "winner": "ANO", "id": "571385", "population": 681, "town": "He\u0159man\u016fv M\u011bstec", "winner_class": ["ano"], "lng": "15.664924"}, {"votes": ["1", "4", "0", "7", "33", "14", "66", "0", "0", "58", "1", "2", "0", "97", "118", "0", "0", "0", "60", "4", "23", "18", "29", "0", "4", "4", "0", "5", "0", "1", "29", "0", "0", "0", "0", "0", "0", "2"], "lat": "50.501213", "winner": "ANO", "id": "535443", "population": 580, "town": "B\u011bl\u00e1 pod Bezd\u011bzem", "winner_class": ["ano"], "lng": "14.804182"}, {"votes": ["5", "1", "0", "1", "14", "28", "92", "2", "4", "86", "0", "0", "0", "127", "131", "0", "0", "0", "72", "1", "21", "22", "25", "1", "5", "9", "1", "8", "0", "2", "39", "4", "1", "0", "0", "3", "6", "0"], "lat": "50.482306", "winner": "ANO", "id": "535427", "population": 711, "town": "Bakov nad Jizerou", "winner_class": ["ano"], "lng": "14.941488"}, {"votes": ["0", "0", "0", "1", "42", "3", "29", "4", "1", "174", "0", "1", "0", "93", "44", "0", "6", "0", "34", "0", "18", "6", "19", "0", "8", "2", "0", "2", "1", "2", "18", "0", "1", "0", "2", "1", "0", "0"], "lat": "49.123347", "winner": "KS\u010cM", "id": "583588", "population": 512, "town": "Oslavany", "winner_class": ["kscm"], "lng": "16.336529"}, {"votes": ["4", "0", "1", "1", "23", "20", "139", "4", "2", "83", "0", "0", "0", "65", "83", "0", "0", "1", "27", "1", "9", "13", "23", "3", "3", "8", "0", "6", "0", "2", "21", "0", "1", "2", "0", "0", "1", "0"], "lat": "49.29387", "winner": "TOP 09", "id": "556831", "population": 546, "town": "N\u00fdrsko", "winner_class": ["top-09"], "lng": "13.143533"}, {"votes": ["2", "0", "0", "2", "178", "19", "120", "1", "1", "31", "0", "0", "0", "71", "92", "0", "2", "0", "37", "1", "23", "12", "57", "0", "2", "7", "0", "3", "4", "1", "34", "2", "0", "0", "0", "0", "2", "1"], "lat": "49.222872", "winner": "KDU-\u010cSL", "id": "585939", "population": 705, "town": "Vizovice", "winner_class": ["kdu-csl"], "lng": "17.854545"}, {"votes": ["1", "0", "2", "5", "53", "10", "54", "1", "4", "74", "0", "1", "0", "88", "92", "0", "33", "0", "51", "0", "19", "16", "20", "0", "3", "2", "0", "3", "0", "0", "16", "0", "2", "0", "0", "0", "1", "0"], "lat": "48.981188", "winner": "ANO", "id": "584801", "population": 551, "town": "Poho\u0159elice", "winner_class": ["ano"], "lng": "16.524453"}, {"votes": ["3", "2", "0", "3", "71", "7", "60", "2", "7", "105", "0", "0", "1", "130", "109", "0", "27", "0", "36", "1", "21", "36", "26", "0", "4", "3", "0", "6", "0", "3", "47", "0", "0", "0", "0", "2", "4", "0"], "lat": "49.300501", "winner": "\u010cSSD", "id": "581291", "population": 716, "town": "Adamov", "winner_class": ["cssd"], "lng": "16.65855"}, {"votes": ["6", "0", "0", "3", "45", "18", "79", "1", "6", "81", "0", "0", "0", "77", "119", "0", "1", "1", "51", "1", "44", "17", "31", "0", "6", "1", "1", "3", "4", "1", "25", "0", "0", "1", "0", "0", "2", "2"], "lat": "50.11756", "winner": "ANO", "id": "576883", "population": 627, "town": "Vamberk", "winner_class": ["ano"], "lng": "16.290675"}, {"votes": ["3", "0", "1", "10", "55", "10", "49", "2", "0", "61", "0", "0", "1", "97", "98", "1", "19", "1", "34", "3", "16", "13", "21", "0", "1", "1", "2", "1", "1", "1", "27", "0", "4", "2", "0", "0", "0", "1"], "lat": "48.97523", "winner": "ANO", "id": "586765", "population": 536, "town": "Vracov", "winner_class": ["ano"], "lng": "17.210996"}, {"votes": ["2", "2", "1", "0", "1", "19", "33", "3", "1", "62", "0", "1", "1", "63", "80", "16", "1", "1", "29", "2", "26", "7", "11", "1", "5", "4", "0", "6", "0", "1", "24", "3", "0", "0", "0", "9", "5", "1"], "lat": "50.359789", "winner": "ANO", "id": "566624", "population": 421, "town": "Postoloprty", "winner_class": ["ano"], "lng": "13.702908"}, {"votes": ["1", "0", "0", "2", "133", "9", "43", "2", "2", "89", "0", "0", "0", "106", "60", "0", "4", "1", "35", "1", "61", "10", "12", "0", "3", "1", "0", "3", "2", "0", "13", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.038646", "winner": "KDU-\u010cSL", "id": "592048", "population": 593, "town": "Bojkovice", "winner_class": ["kdu-csl"], "lng": "17.814872"}, {"votes": ["0", "3", "0", "1", "47", "23", "64", "9", "3", "72", "0", "2", "0", "88", "148", "0", "0", "0", "34", "2", "15", "19", "24", "1", "4", "3", "0", "1", "0", "0", "28", "1", "0", "1", "0", "1", "2", "1"], "lat": "49.640127", "winner": "ANO", "id": "530905", "population": 597, "town": "Votice", "winner_class": ["ano"], "lng": "14.638085"}, {"votes": ["1", "4", "1", "2", "71", "18", "78", "1", "4", "73", "0", "0", "1", "94", "65", "0", "0", "1", "40", "3", "17", "8", "20", "1", "6", "13", "0", "1", "2", "0", "22", "3", "1", "0", "1", "0", "1", "0"], "lat": "50.540664", "winner": "\u010cSSD", "id": "579297", "population": 553, "town": "Hostinn\u00e9", "winner_class": ["cssd"], "lng": "15.723336"}, {"votes": ["0", "0", "0", "1", "54", "4", "31", "3", "6", "89", "0", "0", "0", "108", "63", "0", "3", "1", "28", "0", "20", "5", "17", "0", "2", "2", "0", "10", "1", "1", "16", "0", "0", "0", "0", "6", "1", "0"], "lat": "49.797804", "winner": "\u010cSSD", "id": "552739", "population": 472, "town": "Horn\u00ed Such\u00e1", "winner_class": ["cssd"], "lng": "18.481888"}, {"votes": ["2", "0", "0", "5", "130", "13", "38", "2", "4", "79", "0", "0", "0", "114", "74", "0", "16", "0", "22", "1", "17", "11", "17", "1", "4", "0", "1", "0", "0", "0", "20", "0", "0", "0", "0", "1", "1", "1"], "lat": "48.985559", "winner": "KDU-\u010cSL", "id": "592749", "population": 574, "town": "Uhersk\u00fd Ostroh", "winner_class": ["kdu-csl"], "lng": "17.389845"}, {"votes": ["2", "1", "0", "6", "10", "9", "73", "1", "3", "79", "1", "2", "0", "56", "96", "0", "0", "1", "36", "2", "5", "12", "24", "0", "7", "3", "2", "9", "0", "2", "24", "1", "1", "0", "2", "1", "1", "0"], "lat": "50.69972", "winner": "ANO", "id": "568015", "population": 472, "town": "Chlumec", "winner_class": ["ano"], "lng": "13.939638"}, {"votes": ["4", "1", "0", "4", "69", "9", "82", "2", "1", "150", "1", "0", "0", "110", "93", "0", "0", "3", "48", "3", "24", "17", "20", "0", "10", "4", "0", "6", "2", "1", "21", "3", "0", "2", "1", "1", "4", "1"], "lat": "49.601956", "winner": "KS\u010cM", "id": "541231", "population": 697, "town": "Ro\u017emit\u00e1l pod T\u0159em\u0161\u00ednem", "winner_class": ["kscm"], "lng": "13.864301"}, {"votes": ["1", "1", "1", "2", "25", "15", "86", "1", "3", "150", "1", "0", "1", "87", "108", "0", "0", "2", "55", "4", "32", "27", "37", "0", "5", "5", "1", "0", "3", "3", "31", "0", "3", "0", "0", "0", "2", "0"], "lat": "50.090797", "winner": "KS\u010cM", "id": "537641", "population": 692, "town": "Pe\u010dky", "winner_class": ["kscm"], "lng": "15.03151"}, {"votes": ["1", "1", "0", "3", "87", "5", "51", "1", "1", "76", "0", "2", "0", "128", "68", "0", "1", "0", "61", "2", "14", "19", "19", "0", "1", "2", "0", "5", "1", "1", "24", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.751767", "winner": "\u010cSSD", "id": "599158", "population": 575, "town": "T\u011brlicko", "winner_class": ["cssd"], "lng": "18.482895"}, {"votes": ["4", "3", "1", "4", "17", "6", "88", "6", "6", "75", "2", "0", "0", "83", "77", "0", "0", "1", "42", "1", "16", "12", "42", "0", "8", "2", "0", "4", "0", "0", "42", "1", "0", "0", "0", "2", "1", "0"], "lat": "49.840122", "winner": "TOP 09", "id": "558885", "population": 546, "town": "Horn\u00ed B\u0159\u00edza", "winner_class": ["top-09"], "lng": "13.355579"}, {"votes": ["4", "1", "2", "5", "19", "26", "46", "2", "0", "73", "1", "0", "0", "70", "84", "1", "0", "0", "47", "1", "23", "17", "25", "3", "6", "3", "0", "15", "0", "1", "20", "0", "2", "1", "0", "2", "7", "0"], "lat": "50.776678", "winner": "ANO", "id": "561479", "population": 507, "town": "Cvikov", "winner_class": ["ano"], "lng": "14.632975"}, {"votes": ["3", "3", "1", "0", "77", "9", "54", "1", "2", "31", "0", "0", "0", "87", "61", "0", "4", "1", "41", "1", "13", "4", "11", "0", "2", "1", "0", "0", "1", "0", "38", "2", "0", "0", "0", "2", "4", "0"], "lat": "49.951723", "winner": "\u010cSSD", "id": "506214", "population": 454, "town": "Bolatice", "winner_class": ["cssd"], "lng": "18.083584"}, {"votes": ["0", "0", "0", "4", "144", "8", "36", "0", "2", "74", "0", "0", "0", "58", "62", "0", "43", "0", "28", "1", "18", "8", "26", "1", "3", "1", "0", "0", "1", "0", "28", "0", "0", "1", "2", "1", "5", "0"], "lat": "48.988121", "winner": "KDU-\u010cSL", "id": "592170", "population": 555, "town": "Hluk", "winner_class": ["kdu-csl"], "lng": "17.526679"}, {"votes": ["2", "0", "2", "4", "69", "9", "97", "5", "2", "61", "1", "0", "0", "96", "163", "0", "11", "1", "67", "1", "16", "47", "49", "0", "4", "1", "0", "3", "0", "0", "32", "2", "0", "0", "0", "0", "0", "2"], "lat": "49.127891", "winner": "ANO", "id": "583391", "population": 747, "town": "Mod\u0159ice", "winner_class": ["ano"], "lng": "16.614412"}, {"votes": ["2", "0", "0", "0", "55", "14", "57", "4", "4", "82", "0", "0", "0", "88", "59", "0", "1", "4", "36", "1", "14", "10", "19", "1", "3", "6", "1", "5", "0", "0", "20", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.083842", "winner": "\u010cSSD", "id": "580481", "population": 488, "town": "Kr\u00e1l\u00edky", "winner_class": ["cssd"], "lng": "16.760541"}, {"votes": ["2", "1", "4", "0", "41", "11", "34", "2", "4", "69", "0", "3", "0", "104", "60", "0", "2", "1", "26", "1", "14", "14", "15", "0", "7", "5", "0", "1", "0", "0", "23", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.627575", "winner": "\u010cSSD", "id": "502146", "population": 445, "town": "Hlubo\u010dky", "winner_class": ["cssd"], "lng": "17.402531"}, {"votes": ["0", "0", "0", "3", "20", "5", "19", "4", "1", "101", "0", "0", "0", "107", "57", "0", "2", "1", "54", "1", "13", "4", "20", "0", "4", "4", "1", "3", "0", "2", "19", "0", "0", "2", "0", "3", "2", "1"], "lat": "49.894117", "winner": "\u010cSSD", "id": "598941", "population": 453, "town": "D\u011btmarovice", "winner_class": ["cssd"], "lng": "18.460793"}, {"votes": ["6", "0", "0", "1", "56", "8", "37", "2", "0", "49", "0", "1", "0", "85", "86", "0", "8", "0", "33", "0", "28", "10", "18", "0", "1", "1", "0", "1", "1", "0", "21", "0", "0", "1", "0", "0", "0", "0"], "lat": "48.973364", "winner": "ANO", "id": "586081", "population": 454, "town": "Bzenec", "winner_class": ["ano"], "lng": "17.266852"}, {"votes": ["5", "1", "1", "6", "42", "13", "233", "2", "2", "32", "0", "0", "2", "55", "171", "0", "0", "0", "87", "1", "16", "45", "63", "0", "4", "1", "0", "6", "0", "0", "51", "0", "3", "0", "1", "4", "5", "1"], "lat": "50.035025", "winner": "TOP 09", "id": "531723", "population": 853, "town": "Rudn\u00e1", "winner_class": ["top-09"], "lng": "14.234346"}, {"votes": ["8", "4", "0", "2", "35", "13", "215", "6", "4", "70", "1", "0", "0", "123", "141", "0", "0", "0", "73", "0", "23", "22", "64", "0", "4", "9", "1", "1", "1", "3", "31", "0", "1", "1", "0", "1", "3", "0"], "lat": "50.085352", "winner": "TOP 09", "id": "533017", "population": 860, "town": "Unho\u0161\u0165", "winner_class": ["top-09"], "lng": "14.130074"}, {"votes": ["0", "1", "1", "3", "105", "4", "48", "2", "3", "23", "0", "1", "1", "161", "55", "0", "2", "0", "36", "0", "12", "16", "19", "2", "0", "3", "0", "1", "0", "2", "23", "0", "0", "0", "0", "0", "2", "1"], "lat": "49.666616", "winner": "\u010cSSD", "id": "554928", "population": 527, "town": "Vendryn\u011b", "winner_class": ["cssd"], "lng": "18.713075"}, {"votes": ["1", "1", "1", "2", "45", "19", "89", "3", "1", "54", "0", "0", "0", "78", "127", "0", "0", "2", "47", "1", "22", "11", "28", "1", "5", "6", "0", "2", "0", "2", "26", "0", "0", "0", "4", "0", "3", "1"], "lat": "49.732133", "winner": "ANO", "id": "529451", "population": 582, "town": "Byst\u0159ice", "winner_class": ["ano"], "lng": "14.667401"}, {"votes": ["2", "1", "0", "1", "66", "2", "37", "6", "2", "31", "0", "2", "0", "115", "62", "0", "0", "0", "38", "2", "12", "11", "23", "2", "0", "0", "0", "5", "0", "0", "11", "0", "1", "0", "0", "3", "1", "0"], "lat": "49.921014", "winner": "\u010cSSD", "id": "506702", "population": 436, "town": "Doln\u00ed Bene\u0161ov", "winner_class": ["cssd"], "lng": "18.108352"}, {"votes": ["0", "0", "1", "2", "7", "25", "72", "5", "1", "54", "0", "0", "0", "107", "116", "1", "0", "0", "38", "3", "21", "12", "19", "0", "3", "4", "0", "15", "0", "0", "34", "2", "0", "0", "0", "3", "7", "0"], "lat": "50.270917", "winner": "ANO", "id": "555398", "population": 552, "town": "Nov\u00e1 Role", "winner_class": ["ano"], "lng": "12.784217"}, {"votes": ["2", "2", "2", "2", "63", "18", "88", "8", "3", "54", "0", "0", "0", "100", "98", "0", "0", "0", "86", "1", "19", "29", "25", "1", "4", "5", "0", "4", "1", "2", "25", "2", "1", "0", "0", "2", "2", "0"], "lat": "50.536871", "winner": "\u010cSSD", "id": "574341", "population": 649, "town": "Police nad Metuj\u00ed", "winner_class": ["cssd"], "lng": "16.233504"}, {"votes": ["50", "3", "0", "3", "33", "12", "166", "6", "6", "53", "0", "0", "0", "48", "134", "0", "0", "0", "44", "3", "13", "68", "51", "0", "4", "2", "1", "4", "0", "1", "48", "2", "0", "0", "0", "8", "2", "1"], "lat": "49.895447", "winner": "TOP 09", "id": "539333", "population": 766, "town": "J\u00edlov\u00e9 u Prahy", "winner_class": ["top-09"], "lng": "14.493328"}, {"votes": ["1", "1", "1", "2", "93", "8", "106", "1", "6", "63", "0", "0", "1", "79", "103", "0", "1", "0", "67", "0", "23", "19", "36", "0", "4", "2", "0", "5", "1", "0", "20", "0", "2", "2", "0", "9", "6", "0"], "lat": "49.01597", "winner": "TOP 09", "id": "544779", "population": 662, "town": "Li\u0161ov", "winner_class": ["top-09"], "lng": "14.608379"}, {"votes": ["0", "0", "0", "1", "135", "8", "68", "5", "0", "95", "0", "0", "0", "83", "83", "0", "13", "0", "44", "1", "16", "10", "13", "0", "1", "2", "0", "1", "0", "0", "32", "1", "1", "0", "0", "0", "2", "0"], "lat": "49.018986", "winner": "KDU-\u010cSL", "id": "590789", "population": 615, "town": "Jemnice", "winner_class": ["kdu-csl"], "lng": "15.569936"}, {"votes": ["0", "0", "0", "5", "127", "3", "46", "3", "1", "51", "0", "1", "0", "90", "73", "1", "7", "0", "22", "2", "14", "10", "20", "0", "1", "1", "0", "0", "0", "0", "23", "0", "0", "0", "0", "1", "2", "0"], "lat": "48.920016", "winner": "KDU-\u010cSL", "id": "586510", "population": 504, "town": "Rat\u00ed\u0161kovice", "winner_class": ["kdu-csl"], "lng": "17.165606"}, {"votes": ["1", "0", "1", "1", "35", "16", "113", "5", "2", "72", "0", "0", "0", "100", "128", "0", "0", "0", "44", "3", "21", "20", "53", "0", "2", "1", "0", "4", "0", "0", "16", "2", "0", "1", "0", "3", "2", "2"], "lat": "50.4385", "winner": "ANO", "id": "570826", "population": 648, "town": "Kosmonosy", "winner_class": ["ano"], "lng": "14.929998"}, {"votes": ["2", "3", "1", "4", "10", "14", "26", "1", "6", "51", "1", "3", "1", "68", "92", "5", "3", "0", "7", "4", "15", "7", "5", "8", "5", "7", "0", "10", "2", "1", "24", "3", "2", "1", "0", "2", "7", "2"], "lat": "50.702802", "winner": "ANO", "id": "562092", "population": 403, "town": "Str\u00e1\u017e pod Ralskem", "winner_class": ["ano"], "lng": "14.801017"}, {"votes": ["1", "2", "0", "6", "33", "18", "40", "1", "2", "70", "0", "0", "0", "138", "74", "0", "1", "0", "35", "2", "25", "6", "21", "1", "5", "6", "0", "3", "2", "1", "19", "0", "3", "0", "0", "1", "2", "0"], "lat": "50.263799", "winner": "\u010cSSD", "id": "597996", "population": 518, "town": "Zlat\u00e9 Hory", "winner_class": ["cssd"], "lng": "17.396018"}, {"votes": ["4", "2", "1", "5", "27", "0", "173", "3", "3", "79", "0", "0", "0", "74", "79", "1", "0", "0", "32", "1", "12", "11", "18", "0", "4", "2", "0", "4", "0", "0", "21", "0", "1", "1", "0", "6", "0", "0"], "lat": "49.582196", "winner": "TOP 09", "id": "557587", "population": 564, "town": "Blovice", "winner_class": ["top-09"], "lng": "13.540092"}, {"votes": ["4", "2", "0", "3", "143", "5", "49", "2", "1", "93", "1", "0", "0", "100", "78", "0", "6", "0", "27", "1", "21", "4", "20", "0", "5", "8", "0", "0", "0", "0", "17", "1", "0", "0", "0", "3", "3", "1"], "lat": "49.094083", "winner": "KDU-\u010cSL", "id": "590754", "population": 598, "town": "Jarom\u011b\u0159ice nad Rokytnou", "winner_class": ["kdu-csl"], "lng": "15.893306"}, {"votes": ["6", "1", "0", "6", "122", "14", "76", "3", "3", "52", "0", "0", "1", "71", "89", "0", "0", "0", "47", "3", "22", "14", "24", "0", "7", "2", "0", "1", "0", "0", "37", "0", "1", "1", "2", "0", "2", "0"], "lat": "48.898601", "winner": "KDU-\u010cSL", "id": "544281", "population": 607, "town": "Borovany", "winner_class": ["kdu-csl"], "lng": "14.642268"}, {"votes": ["4", "1", "0", "3", "14", "13", "104", "0", "4", "70", "1", "0", "0", "114", "71", "0", "1", "0", "60", "1", "11", "13", "40", "0", "6", "2", "0", "0", "1", "0", "17", "0", "2", "0", "1", "2", "1", "0"], "lat": "49.912073", "winner": "\u010cSSD", "id": "532011", "population": 557, "town": "Zdice", "winner_class": ["cssd"], "lng": "13.977466"}, {"votes": ["0", "3", "1", "4", "76", "10", "27", "0", "5", "68", "1", "1", "0", "128", "54", "1", "5", "0", "45", "0", "14", "6", "15", "0", "2", "2", "1", "4", "1", "0", "15", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.786455", "winner": "\u010cSSD", "id": "598925", "population": 490, "town": "Albrechtice", "winner_class": ["cssd"], "lng": "18.524436"}, {"votes": ["1", "2", "1", "0", "28", "8", "37", "2", "1", "54", "0", "0", "0", "147", "80", "0", "1", "1", "62", "2", "17", "8", "16", "1", "2", "4", "0", "4", "1", "0", "25", "0", "0", "1", "0", "2", "2", "0"], "lat": "49.731788", "winner": "\u010cSSD", "id": "598569", "population": 510, "town": "Paskov", "winner_class": ["cssd"], "lng": "18.290369"}, {"votes": ["1", "1", "0", "2", "18", "15", "58", "2", "2", "56", "0", "0", "0", "71", "64", "0", "0", "0", "19", "2", "17", "8", "32", "0", "1", "5", "0", "6", "0", "1", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.77359", "winner": "\u010cSSD", "id": "561681", "population": 396, "town": "Kamenick\u00fd \u0160enov", "winner_class": ["cssd"], "lng": "14.472868"}, {"votes": ["5", "2", "0", "7", "67", "19", "78", "3", "0", "73", "0", "0", "0", "69", "132", "0", "1", "6", "40", "0", "12", "24", "42", "2", "5", "5", "0", "3", "2", "1", "42", "0", "0", "0", "0", "0", "2", "1"], "lat": "49.921097", "winner": "ANO", "id": "572268", "population": 643, "town": "Slati\u0148any", "winner_class": ["ano"], "lng": "15.813769"}, {"votes": ["1", "4", "1", "0", "87", "9", "52", "2", "1", "125", "1", "1", "1", "187", "86", "0", "4", "0", "92", "3", "24", "12", "23", "0", "3", "4", "0", "2", "3", "0", "19", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.700098", "winner": "\u010cSSD", "id": "598038", "population": 748, "town": "Bru\u0161perk", "winner_class": ["cssd"], "lng": "18.222096"}, {"votes": ["1", "2", "1", "3", "181", "9", "63", "3", "0", "41", "0", "0", "0", "79", "59", "0", "0", "0", "57", "1", "10", "14", "20", "0", "3", "2", "0", "1", "0", "0", "23", "0", "1", "2", "0", "1", "2", "0"], "lat": "49.576839", "winner": "KDU-\u010cSL", "id": "569321", "population": 579, "town": "P\u0159ibyslav", "winner_class": ["kdu-csl"], "lng": "15.738546"}, {"votes": ["3", "0", "0", "6", "51", "8", "65", "2", "1", "80", "0", "0", "0", "83", "61", "1", "0", "0", "42", "3", "14", "9", "23", "0", "1", "2", "1", "2", "0", "1", "30", "0", "0", "0", "0", "0", "2", "1"], "lat": "49.303034", "winner": "\u010cSSD", "id": "548111", "population": 492, "town": "Kamenice nad Lipou", "winner_class": ["cssd"], "lng": "15.075189"}, {"votes": ["2", "1", "2", "2", "83", "7", "112", "3", "4", "70", "0", "0", "0", "66", "91", "0", "1", "0", "41", "2", "14", "13", "21", "1", "2", "5", "0", "1", "1", "1", "26", "1", "2", "1", "0", "1", "3", "0"], "lat": "48.829486", "winner": "TOP 09", "id": "545821", "population": 580, "town": "Vele\u0161\u00edn", "winner_class": ["top-09"], "lng": "14.462517"}, {"votes": ["0", "0", "0", "1", "15", "1", "50", "2", "1", "61", "0", "0", "0", "44", "24", "0", "0", "0", "17", "0", "7", "18", "7", "0", "6", "2", "0", "2", "0", "0", "14", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.711595", "winner": "KS\u010cM", "id": "560758", "population": 274, "town": "Bor", "winner_class": ["kscm"], "lng": "12.775164"}, {"votes": ["1", "0", "0", "1", "77", "3", "12", "1", "0", "18", "2", "1", "2", "59", "23", "0", "1", "0", "36", "2", "6", "7", "4", "0", "0", "1", "0", "1", "0", "0", "13", "0", "1", "0", "0", "3", "0", "0"], "lat": "49.527373", "winner": "KDU-\u010cSL", "id": "598453", "population": 275, "town": "Mosty u Jablunkova", "winner_class": ["kdu-csl"], "lng": "18.75417"}, {"votes": ["5", "0", "0", "7", "27", "8", "237", "2", "1", "40", "0", "1", "0", "66", "136", "0", "0", "1", "62", "1", "9", "42", "64", "0", "2", "3", "0", "2", "0", "1", "43", "0", "0", "2", "1", "2", "2", "1"], "lat": "49.901515", "winner": "TOP 09", "id": "538299", "population": 768, "town": "Kamenice", "winner_class": ["top-09"], "lng": "14.582421"}, {"votes": ["0", "0", "0", "1", "38", "4", "32", "1", "1", "107", "0", "2", "0", "84", "45", "0", "5", "0", "23", "0", "17", "14", "15", "0", "10", "2", "0", "2", "0", "0", "8", "0", "1", "1", "0", "1", "1", "0"], "lat": "49.155244", "winner": "KS\u010cM", "id": "584223", "population": 415, "town": "Zb\u00fd\u0161ov", "winner_class": ["kscm"], "lng": "16.349512"}, {"votes": ["0", "2", "1", "4", "17", "3", "35", "5", "1", "51", "0", "0", "0", "51", "39", "0", "0", "0", "14", "1", "16", "9", "14", "0", "2", "0", "0", "40", "0", "0", "12", "3", "1", "0", "0", "2", "0", "0"], "lat": "48.774248", "winner": "KS\u010cM", "id": "545830", "population": 323, "town": "V\u011bt\u0159n\u00ed", "winner_class": ["kscm"], "lng": "14.286161"}, {"votes": ["0", "1", "0", "0", "65", "2", "29", "0", "2", "24", "0", "0", "4", "95", "25", "0", "0", "0", "31", "1", "16", "7", "14", "0", "1", "1", "0", "2", "1", "0", "7", "0", "1", "0", "0", "0", "4", "1"], "lat": "49.587202", "winner": "\u010cSSD", "id": "554014", "population": 334, "town": "N\u00e1vs\u00ed", "winner_class": ["cssd"], "lng": "18.75907"}, {"votes": ["1", "1", "0", "4", "40", "7", "44", "6", "2", "74", "0", "2", "0", "72", "59", "0", "0", "2", "25", "3", "18", "15", "16", "0", "8", "6", "1", "1", "2", "0", "14", "0", "0", "0", "0", "1", "2", "2"], "lat": "48.908811", "winner": "KS\u010cM", "id": "550671", "population": 428, "town": "Volary", "winner_class": ["kscm"], "lng": "13.886575"}, {"votes": ["1", "0", "1", "0", "11", "8", "72", "2", "5", "52", "0", "0", "0", "111", "94", "0", "1", "3", "27", "0", "13", "19", "21", "0", "3", "3", "0", "0", "1", "0", "17", "1", "3", "0", "1", "1", "0", "2"], "lat": "49.871644", "winner": "\u010cSSD", "id": "534382", "population": 473, "town": "S\u00e1zava", "winner_class": ["cssd"], "lng": "14.896737"}, {"votes": ["0", "0", "1", "2", "87", "6", "32", "0", "3", "97", "0", "0", "0", "106", "70", "0", "11", "0", "17", "0", "13", "9", "12", "0", "1", "5", "1", "1", "1", "4", "20", "1", "2", "0", "0", "5", "0", "0"], "lat": "49.612372", "winner": "\u010cSSD", "id": "582646", "population": 507, "town": "Velk\u00e9 Opatovice", "winner_class": ["cssd"], "lng": "16.679468"}, {"votes": ["0", "0", "0", "1", "5", "12", "25", "0", "1", "54", "0", "0", "1", "47", "78", "0", "0", "0", "14", "0", "9", "8", "8", "1", "6", "3", "0", "6", "0", "0", "14", "1", "2", "0", "0", "0", "1", "1"], "lat": "50.99514", "winner": "ANO", "id": "562581", "population": 298, "town": "Ji\u0159\u00edkov", "winner_class": ["ano"], "lng": "14.569096"}, {"votes": ["3", "1", "1", "1", "43", "13", "109", "1", "3", "59", "0", "0", "0", "58", "111", "0", "0", "1", "38", "3", "13", "13", "20", "0", "6", "4", "0", "1", "0", "0", "33", "0", "1", "1", "0", "1", "0", "0"], "lat": "49.354438", "winner": "ANO", "id": "552828", "population": 538, "town": "Plan\u00e1 nad Lu\u017enic\u00ed", "winner_class": ["ano"], "lng": "14.701474"}, {"votes": ["0", "0", "0", "0", "143", "4", "45", "3", "0", "27", "1", "1", "0", "17", "62", "0", "3", "0", "24", "0", "10", "11", "24", "0", "0", "1", "0", "1", "0", "0", "9", "3", "1", "0", "0", "4", "6", "0"], "lat": "48.84929", "winner": "KDU-\u010cSL", "id": "584983", "population": 400, "town": "Velk\u00e9 B\u00edlovice", "winner_class": ["kdu-csl"], "lng": "16.892274"}, {"votes": ["5", "1", "0", "0", "52", "8", "107", "1", "3", "57", "1", "1", "0", "64", "83", "0", "0", "0", "45", "2", "18", "21", "24", "0", "0", "4", "0", "4", "2", "0", "20", "0", "2", "0", "0", "0", "1", "1"], "lat": "50.428745", "winner": "TOP 09", "id": "573094", "population": 527, "town": "L\u00e1zn\u011b B\u011blohrad", "winner_class": ["top-09"], "lng": "15.582691"}, {"votes": ["4", "0", "0", "2", "68", "4", "48", "0", "1", "40", "0", "0", "0", "52", "48", "0", "2", "0", "23", "0", "12", "10", "22", "0", "3", "3", "0", "1", "1", "0", "11", "0", "0", "0", "0", "0", "0", "1"], "lat": "48.724434", "winner": "KDU-\u010cSL", "id": "584622", "population": 356, "town": "Lan\u017ehot", "winner_class": ["kdu-csl"], "lng": "16.966948"}, {"votes": ["3", "1", "0", "3", "92", "2", "36", "2", "1", "98", "0", "0", "3", "133", "59", "0", "3", "0", "60", "0", "16", "8", "21", "1", "1", "2", "0", "4", "3", "1", "25", "1", "1", "0", "0", "1", "0", "0"], "lat": "49.645846", "winner": "\u010cSSD", "id": "598011", "population": 581, "town": "Ba\u0161ka", "winner_class": ["cssd"], "lng": "18.372333"}, {"votes": ["0", "0", "0", "4", "14", "3", "37", "2", "2", "68", "0", "0", "0", "36", "58", "0", "0", "0", "25", "1", "6", "4", "8", "1", "6", "0", "0", "0", "0", "2", "11", "1", "1", "0", "0", "0", "0", "0"], "lat": "50.060495", "winner": "KS\u010cM", "id": "555657", "population": 290, "town": "Tou\u017eim", "winner_class": ["kscm"], "lng": "12.985057"}, {"votes": ["2", "0", "0", "1", "13", "14", "29", "1", "2", "66", "0", "1", "0", "58", "67", "0", "0", "0", "21", "2", "13", "14", "6", "0", "6", "0", "0", "5", "1", "0", "24", "3", "1", "0", "0", "0", "7", "0"], "lat": "50.741589", "winner": "ANO", "id": "562351", "population": 357, "town": "Bene\u0161ov nad Plou\u010dnic\u00ed", "winner_class": ["ano"], "lng": "14.312388"}, {"votes": ["1", "0", "1", "2", "155", "4", "67", "3", "3", "19", "1", "0", "0", "104", "90", "0", "7", "0", "32", "1", "21", "10", "23", "0", "4", "6", "0", "2", "1", "1", "21", "1", "0", "0", "0", "1", "1", "2"], "lat": "49.285205", "winner": "KDU-\u010cSL", "id": "585211", "population": 584, "town": "Fry\u0161t\u00e1k", "winner_class": ["kdu-csl"], "lng": "17.683463"}, {"votes": ["4", "3", "0", "0", "2", "10", "32", "2", "7", "66", "0", "0", "1", "68", "86", "0", "0", "0", "29", "1", "15", "13", "12", "0", "6", "3", "0", "9", "1", "0", "15", "0", "0", "0", "1", "8", "4", "3"], "lat": "50.593278", "winner": "ANO", "id": "567264", "population": 401, "town": "Lom", "winner_class": ["ano"], "lng": "13.657289"}, {"votes": ["3", "1", "3", "7", "109", "8", "57", "0", "4", "45", "0", "0", "0", "104", "64", "0", "2", "0", "35", "3", "26", "16", "12", "0", "3", "3", "0", "3", "0", "0", "30", "0", "0", "0", "1", "2", "1", "0"], "lat": "49.306947", "winner": "KDU-\u010cSL", "id": "586943", "population": 542, "town": "Brtnice", "winner_class": ["kdu-csl"], "lng": "15.676419"}, {"votes": ["0", "1", "0", "2", "6", "29", "46", "1", "3", "62", "1", "0", "0", "53", "43", "0", "1", "0", "26", "0", "10", "5", "25", "0", "0", "0", "0", "1", "0", "0", "16", "0", "1", "0", "0", "0", "2", "0"], "lat": "50.924911", "winner": "KS\u010cM", "id": "564265", "population": 334, "town": "Nov\u00e9 M\u011bsto pod Smrkem", "winner_class": ["kscm"], "lng": "15.229429"}, {"votes": ["1", "1", "2", "5", "144", "3", "31", "1", "2", "29", "0", "0", "1", "49", "47", "0", "5", "0", "26", "0", "14", "7", "21", "0", "2", "4", "0", "2", "0", "0", "36", "0", "0", "1", "0", "0", "2", "0"], "lat": "48.904129", "winner": "KDU-\u010cSL", "id": "586412", "population": 436, "town": "Mut\u011bnice", "winner_class": ["kdu-csl"], "lng": "17.029174"}, {"votes": ["4", "2", "3", "2", "31", "4", "59", "3", "1", "79", "0", "0", "0", "65", "87", "0", "1", "0", "39", "3", "21", "11", "46", "1", "1", "7", "0", "0", "0", "1", "22", "2", "0", "1", "0", "0", "3", "0"], "lat": "49.066083", "winner": "ANO", "id": "545341", "population": 499, "town": "Zliv", "winner_class": ["ano"], "lng": "14.366134"}, {"votes": ["0", "0", "1", "0", "128", "5", "12", "1", "0", "19", "0", "0", "1", "54", "20", "0", "4", "1", "14", "0", "7", "0", "13", "0", "2", "0", "0", "1", "0", "1", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.902159", "winner": "KDU-\u010cSL", "id": "592617", "population": 294, "town": "Str\u00e1n\u00ed", "winner_class": ["kdu-csl"], "lng": "17.706712"}, {"votes": ["2", "1", "0", "4", "31", "6", "37", "1", "0", "44", "0", "0", "0", "75", "92", "0", "18", "0", "23", "0", "15", "15", "20", "0", "3", "1", "0", "1", "0", "0", "32", "0", "0", "2", "1", "1", "3", "2"], "lat": "48.880399", "winner": "ANO", "id": "586528", "population": 430, "town": "Rohatec", "winner_class": ["ano"], "lng": "17.183301"}, {"votes": ["16", "1", "0", "8", "39", "6", "44", "0", "0", "36", "0", "1", "0", "104", "94", "1", "11", "0", "27", "0", "7", "12", "20", "0", "1", "5", "0", "1", "0", "2", "15", "1", "0", "0", "0", "2", "1", "0"], "lat": "48.740693", "winner": "\u010cSSD", "id": "584975", "population": 455, "town": "Valtice", "winner_class": ["cssd"], "lng": "16.754991"}, {"votes": ["0", "0", "0", "5", "107", "11", "39", "2", "1", "76", "0", "0", "0", "99", "75", "1", "11", "0", "51", "0", "16", "12", "26", "0", "3", "1", "0", "1", "0", "1", "15", "1", "0", "0", "0", "1", "3", "0"], "lat": "49.410942", "winner": "KDU-\u010cSL", "id": "582239", "population": 558, "town": "R\u00e1jec-Jest\u0159eb\u00ed", "winner_class": ["kdu-csl"], "lng": "16.639019"}, {"votes": ["2", "0", "3", "2", "40", "8", "44", "0", "1", "67", "0", "0", "0", "92", "79", "0", "0", "0", "26", "0", "11", "10", "14", "0", "1", "2", "1", "3", "0", "0", "14", "1", "1", "0", "0", "1", "0", "0"], "lat": "48.893333", "winner": "\u010cSSD", "id": "547280", "population": 423, "town": "Suchdol nad Lu\u017enic\u00ed", "winner_class": ["cssd"], "lng": "14.876957"}, {"votes": ["1", "2", "0", "3", "21", "7", "26", "1", "1", "46", "0", "3", "1", "89", "47", "0", "5", "0", "22", "1", "15", "8", "6", "0", "2", "1", "0", "4", "8", "0", "10", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.91167", "winner": "\u010cSSD", "id": "597228", "population": 332, "town": "B\u0159idli\u010dn\u00e1", "winner_class": ["cssd"], "lng": "17.371073"}, {"votes": ["3", "2", "1", "0", "10", "23", "70", "0", "1", "48", "0", "0", "0", "79", "83", "0", "0", "1", "28", "0", "20", "11", "21", "0", "5", "4", "1", "5", "0", "1", "25", "0", "0", "0", "0", "0", "3", "1"], "lat": "50.76528", "winner": "ANO", "id": "561631", "population": 446, "town": "Jablonn\u00e9 v Podje\u0161t\u011bd\u00ed", "winner_class": ["ano"], "lng": "14.760522"}, {"votes": ["3", "0", "0", "9", "11", "7", "163", "3", "3", "67", "0", "0", "1", "55", "85", "0", "0", "1", "121", "1", "14", "9", "29", "0", "1", "2", "0", "1", "0", "0", "27", "1", "2", "1", "2", "2", "2", "0"], "lat": "49.729883", "winner": "TOP 09", "id": "559580", "population": 623, "town": "Vejprnice", "winner_class": ["top-09"], "lng": "13.276276"}, {"votes": ["2", "2", "0", "0", "19", "6", "64", "0", "2", "52", "0", "0", "0", "60", "86", "0", "1", "0", "61", "0", "6", "7", "38", "0", "5", "2", "1", "1", "0", "1", "26", "1", "1", "0", "0", "0", "4", "0"], "lat": "50.226533", "winner": "ANO", "id": "534935", "population": 448, "town": "Kostelec nad Labem", "winner_class": ["ano"], "lng": "14.58552"}, {"votes": ["3", "1", "1", "2", "18", "9", "127", "0", "3", "49", "0", "0", "0", "69", "56", "0", "0", "0", "27", "0", "7", "29", "24", "1", "3", "2", "0", "3", "0", "0", "17", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.486162", "winner": "TOP 09", "id": "558109", "population": 452, "town": "Nepomuk", "winner_class": ["top-09"], "lng": "13.582254"}, {"votes": ["2", "1", "2", "2", "10", "11", "73", "0", "3", "42", "0", "0", "0", "73", "83", "0", "0", "0", "25", "1", "5", "4", "7", "0", "4", "3", "1", "1", "0", "1", "14", "2", "1", "0", "0", "0", "2", "1"], "lat": "49.639089", "winner": "ANO", "id": "558389", "population": 374, "town": "Stod", "winner_class": ["ano"], "lng": "13.164736"}, {"votes": ["0", "0", "0", "2", "136", "8", "28", "2", "2", "62", "0", "2", "0", "59", "64", "0", "6", "1", "10", "0", "16", "7", "21", "0", "6", "0", "0", "1", "1", "5", "19", "0", "0", "0", "0", "2", "1", "0"], "lat": "48.983667", "winner": "KDU-\u010cSL", "id": "586625", "population": 461, "town": "Svatobo\u0159ice-Mist\u0159\u00edn", "winner_class": ["kdu-csl"], "lng": "17.09491"}, {"votes": ["0", "0", "1", "4", "21", "18", "104", "4", "1", "90", "0", "1", "0", "77", "71", "1", "0", "1", "36", "3", "26", "12", "14", "2", "6", "3", "0", "2", "3", "1", "27", "0", "2", "1", "0", "1", "1", "1"], "lat": "49.981917", "winner": "TOP 09", "id": "559075", "population": 535, "town": "Kralovice", "winner_class": ["top-09"], "lng": "13.487473"}, {"votes": ["1", "3", "0", "1", "21", "7", "51", "1", "3", "74", "0", "1", "0", "60", "85", "0", "0", "0", "20", "3", "13", "14", "15", "0", "9", "1", "0", "2", "0", "0", "11", "0", "3", "0", "0", "5", "0", "0"], "lat": "50.406265", "winner": "ANO", "id": "565164", "population": 404, "town": "Libochovice", "winner_class": ["ano"], "lng": "14.044388"}, {"votes": ["2", "1", "0", "1", "58", "8", "28", "1", "0", "96", "0", "0", "0", "83", "51", "0", "1", "0", "25", "0", "21", "11", "8", "0", "0", "2", "0", "4", "2", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.16294", "winner": "KS\u010cM", "id": "597635", "population": 412, "town": "M\u011bsto Albrechtice", "winner_class": ["kscm"], "lng": "17.574808"}, {"votes": ["4", "0", "0", "2", "18", "13", "86", "2", "0", "34", "0", "0", "0", "38", "100", "2", "0", "0", "55", "0", "12", "21", "18", "1", "5", "7", "1", "2", "0", "0", "35", "0", "2", "0", "0", "0", "1", "1"], "lat": "50.738201", "winner": "ANO", "id": "563811", "population": 460, "town": "Smr\u017eovka", "winner_class": ["ano"], "lng": "15.246394"}, {"votes": ["2", "3", "1", "0", "63", "4", "82", "7", "4", "45", "0", "0", "1", "68", "125", "1", "1", "18", "40", "2", "16", "20", "39", "0", "2", "1", "0", "0", "0", "1", "29", "0", "2", "0", "0", "0", "3", "0"], "lat": "50.066507", "winner": "ANO", "id": "575640", "population": 580, "town": "Sezemice", "winner_class": ["ano"], "lng": "15.852698"}, {"votes": ["1", "2", "0", "1", "32", "15", "62", "2", "2", "61", "0", "0", "2", "61", "84", "0", "0", "1", "24", "0", "15", "3", "20", "0", "6", "5", "0", "2", "0", "0", "28", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.557633", "winner": "ANO", "id": "540013", "population": 431, "town": "B\u0159eznice", "winner_class": ["ano"], "lng": "13.950629"}, {"votes": ["2", "1", "2", "0", "12", "5", "60", "4", "0", "63", "0", "0", "0", "55", "60", "1", "1", "0", "23", "1", "20", "11", "9", "0", "6", "0", "0", "5", "1", "2", "15", "0", "0", "1", "1", "3", "2", "0"], "lat": "50.913033", "winner": "KS\u010cM", "id": "562611", "population": 366, "town": "Kr\u00e1sn\u00e1 L\u00edpa", "winner_class": ["kscm"], "lng": "14.509988"}, {"votes": ["0", "0", "0", "0", "151", "3", "47", "3", "1", "71", "1", "0", "0", "49", "65", "0", "7", "0", "36", "0", "15", "5", "20", "0", "3", "5", "0", "1", "0", "0", "16", "0", "1", "2", "0", "0", "1", "0"], "lat": "49.00434", "winner": "KDU-\u010cSL", "id": "592463", "population": 503, "town": "Ostro\u017esk\u00e1 Nov\u00e1 Ves", "winner_class": ["kdu-csl"], "lng": "17.436319"}, {"votes": ["0", "0", "0", "3", "20", "7", "48", "1", "1", "44", "0", "3", "0", "77", "53", "0", "2", "0", "30", "0", "16", "7", "9", "0", "3", "0", "0", "4", "1", "0", "11", "0", "1", "1", "0", "0", "1", "1"], "lat": "49.858209", "winner": "\u010cSSD", "id": "539961", "population": 344, "town": "Libina", "winner_class": ["cssd"], "lng": "17.107292"}, {"votes": ["3", "2", "1", "3", "27", "16", "101", "2", "6", "62", "0", "0", "0", "52", "98", "0", "2", "1", "44", "3", "18", "16", "30", "0", "1", "2", "1", "0", "0", "2", "36", "0", "3", "0", "0", "3", "1", "1"], "lat": "49.994036", "winner": "TOP 09", "id": "533416", "population": 537, "town": "Kostelec nad \u010cern\u00fdmi lesy", "winner_class": ["top-09"], "lng": "14.859218"}, {"votes": ["6", "0", "0", "2", "66", "12", "33", "2", "1", "40", "0", "2", "0", "63", "58", "0", "4", "0", "11", "1", "12", "13", "14", "0", "4", "1", "0", "0", "3", "2", "17", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.684039", "winner": "KDU-\u010cSL", "id": "505161", "population": 369, "town": "\u0160t\u011bp\u00e1nov", "winner_class": ["kdu-csl"], "lng": "17.220412"}, {"votes": ["5", "0", "2", "8", "110", "5", "43", "2", "1", "58", "0", "0", "0", "74", "73", "0", "6", "0", "62", "0", "15", "6", "33", "0", "1", "3", "1", "3", "0", "0", "31", "1", "0", "0", "0", "0", "1", "3"], "lat": "49.591807", "winner": "KDU-\u010cSL", "id": "599948", "population": 547, "town": "\u0160tramberk", "winner_class": ["kdu-csl"], "lng": "18.117412"}, {"votes": ["3", "0", "3", "0", "51", "8", "132", "4", "2", "49", "0", "1", "0", "71", "115", "0", "7", "0", "48", "0", "7", "18", "28", "0", "5", "1", "0", "3", "1", "3", "24", "0", "0", "0", "0", "3", "3", "0"], "lat": "49.039525", "winner": "TOP 09", "id": "584282", "population": 590, "town": "\u017didlochovice", "winner_class": ["top-09"], "lng": "16.618807"}, {"votes": ["1", "1", "2", "0", "8", "25", "32", "1", "0", "90", "0", "0", "0", "93", "77", "0", "0", "0", "34", "0", "20", "21", "10", "0", "4", "4", "0", "2", "2", "0", "24", "2", "4", "1", "0", "2", "2", "0"], "lat": "50.663296", "winner": "\u010cSSD", "id": "579874", "population": 462, "town": "\u017dacl\u00e9\u0159", "winner_class": ["cssd"], "lng": "15.910633"}, {"votes": ["4", "3", "1", "1", "59", "6", "59", "5", "0", "93", "0", "2", "0", "123", "77", "0", "5", "0", "50", "2", "11", "15", "7", "0", "2", "1", "0", "5", "1", "1", "29", "0", "1", "0", "0", "3", "1", "1"], "lat": "49.898562", "winner": "\u010cSSD", "id": "506753", "population": 568, "town": "H\u00e1j ve Slezsku", "winner_class": ["cssd"], "lng": "18.095402"}, {"votes": ["3", "0", "2", "3", "26", "5", "103", "2", "1", "34", "0", "0", "0", "59", "115", "0", "1", "15", "48", "1", "6", "14", "37", "0", "2", "5", "0", "5", "1", "0", "36", "0", "0", "0", "0", "6", "0", "0"], "lat": "50.075603", "winner": "ANO", "id": "574767", "population": 530, "town": "L\u00e1zn\u011b Bohdane\u010d", "winner_class": ["ano"], "lng": "15.679785"}, {"votes": ["0", "0", "0", "2", "163", "5", "40", "2", "0", "30", "0", "0", "0", "66", "47", "0", "3", "0", "27", "2", "14", "8", "24", "0", "0", "1", "0", "0", "0", "0", "18", "0", "0", "0", "0", "1", "4", "0"], "lat": "48.974646", "winner": "KDU-\u010cSL", "id": "592439", "population": 457, "town": "Nivnice", "winner_class": ["kdu-csl"], "lng": "17.647573"}, {"votes": ["0", "2", "0", "1", "50", "6", "83", "0", "2", "73", "0", "0", "1", "59", "90", "0", "5", "0", "27", "1", "5", "25", "18", "0", "1", "1", "0", "3", "0", "0", "28", "1", "0", "0", "0", "0", "3", "0"], "lat": "49.038632", "winner": "ANO", "id": "583081", "population": 485, "town": "Hru\u0161ovany u Brna", "winner_class": ["ano"], "lng": "16.594285"}, {"votes": ["1", "0", "1", "1", "26", "8", "23", "1", "1", "57", "0", "0", "0", "55", "35", "0", "2", "0", "7", "0", "20", "2", "7", "0", "1", "1", "0", "2", "0", "0", "8", "0", "2", "1", "0", "0", "2", "0"], "lat": "50.080486", "winner": "KS\u010cM", "id": "535532", "population": 264, "town": "Hanu\u0161ovice", "winner_class": ["kscm"], "lng": "16.93641"}, {"votes": ["1", "0", "0", "0", "7", "7", "37", "5", "4", "89", "0", "0", "0", "62", "43", "0", "1", "0", "29", "1", "18", "11", "18", "0", "7", "1", "0", "1", "0", "0", "8", "0", "1", "0", "0", "0", "2", "0"], "lat": "49.019259", "winner": "KS\u010cM", "id": "546798", "population": 353, "town": "Nov\u00e1 Byst\u0159ice", "winner_class": ["kscm"], "lng": "15.103157"}, {"votes": ["0", "0", "0", "3", "93", "4", "84", "4", "3", "41", "0", "0", "0", "69", "90", "1", "10", "0", "46", "0", "23", "16", "26", "0", "0", "3", "0", "0", "1", "0", "23", "1", "2", "1", "0", "0", "1", "0"], "lat": "49.090212", "winner": "KDU-\u010cSL", "id": "583758", "population": 545, "town": "Rajhrad", "winner_class": ["kdu-csl"], "lng": "16.603877"}, {"votes": ["0", "1", "0", "0", "37", "5", "37", "0", "6", "60", "0", "0", "0", "44", "76", "0", "8", "0", "12", "0", "18", "6", "12", "0", "1", "0", "0", "0", "1", "0", "5", "0", "1", "0", "0", "0", "3", "0"], "lat": "48.829909", "winner": "ANO", "id": "594156", "population": 333, "town": "Hru\u0161ovany nad Jevi\u0161ovkou", "winner_class": ["ano"], "lng": "16.402708"}, {"votes": ["0", "0", "0", "3", "79", "8", "19", "2", "0", "19", "0", "1", "0", "52", "41", "0", "1", "0", "17", "1", "15", "8", "29", "0", "1", "0", "0", "3", "0", "0", "12", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.985484", "winner": "KDU-\u010cSL", "id": "507504", "population": 313, "town": "Kobe\u0159ice", "winner_class": ["kdu-csl"], "lng": "18.052121"}, {"votes": ["1", "0", "0", "3", "17", "9", "160", "7", "3", "41", "0", "0", "0", "71", "78", "0", "0", "1", "51", "1", "9", "44", "30", "3", "1", "4", "2", "0", "1", "0", "34", "0", "0", "0", "1", "3", "1", "0"], "lat": "50.199027", "winner": "TOP 09", "id": "539414", "population": 576, "town": "Lib\u010dice nad Vltavou", "winner_class": ["top-09"], "lng": "14.362675"}, {"votes": ["2", "0", "1", "4", "97", "7", "158", "3", "6", "38", "0", "0", "0", "65", "108", "0", "19", "0", "38", "1", "19", "49", "59", "1", "0", "4", "0", "5", "2", "0", "32", "0", "0", "0", "2", "0", "2", "0"], "lat": "49.247079", "winner": "TOP 09", "id": "582824", "population": 722, "town": "B\u00edlovice nad Svitavou", "winner_class": ["top-09"], "lng": "16.67247"}, {"votes": ["0", "0", "0", "2", "40", "7", "45", "0", "0", "45", "0", "2", "0", "94", "67", "0", "2", "1", "23", "0", "23", "21", "9", "0", "6", "1", "0", "1", "0", "0", "12", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.558454", "winner": "\u010cSSD", "id": "503657", "population": 402, "town": "Lut\u00edn", "winner_class": ["cssd"], "lng": "17.135721"}, {"votes": ["11", "1", "3", "2", "31", "8", "317", "11", "3", "24", "1", "0", "0", "70", "130", "0", "0", "0", "112", "1", "5", "65", "70", "0", "3", "6", "0", "2", "0", "0", "42", "1", "0", "1", "0", "4", "3", "0"], "lat": "49.927494", "winner": "TOP 09", "id": "539198", "population": 927, "town": "Dob\u0159ichovice", "winner_class": ["top-09"], "lng": "14.274695"}, {"votes": ["1", "1", "0", "2", "17", "7", "9", "0", "2", "63", "0", "1", "0", "41", "53", "1", "2", "0", "13", "2", "29", "5", "4", "1", "8", "2", "0", "18", "0", "0", "10", "0", "0", "0", "0", "0", "0", "2"], "lat": "50.296269", "winner": "KS\u010cM", "id": "560600", "population": 294, "town": "Rotava", "winner_class": ["kscm"], "lng": "12.573408"}, {"votes": ["1", "1", "4", "0", "9", "13", "77", "5", "2", "48", "0", "0", "0", "86", "108", "0", "4", "2", "54", "0", "13", "18", "9", "0", "0", "4", "0", "5", "0", "1", "17", "1", "1", "0", "0", "0", "0", "0"], "lat": "50.369327", "winner": "ANO", "id": "535672", "population": 483, "town": "Dobrovice", "winner_class": ["ano"], "lng": "14.962332"}, {"votes": ["2", "0", "0", "1", "12", "13", "63", "2", "1", "53", "0", "0", "0", "33", "88", "0", "0", "0", "42", "1", "20", "16", "26", "0", "2", "2", "0", "2", "0", "8", "19", "1", "0", "0", "0", "0", "1", "0"], "lat": "50.135966", "winner": "ANO", "id": "537764", "population": 408, "town": "Sadsk\u00e1", "winner_class": ["ano"], "lng": "14.986334"}, {"votes": ["0", "1", "0", "5", "107", "6", "75", "3", "1", "54", "0", "2", "0", "53", "46", "0", "6", "0", "19", "0", "14", "8", "8", "0", "3", "3", "0", "0", "1", "1", "19", "1", "0", "1", "0", "3", "2", "0"], "lat": "49.907564", "winner": "KDU-\u010cSL", "id": "540773", "population": 442, "town": "Post\u0159elmov", "winner_class": ["kdu-csl"], "lng": "16.912263"}, {"votes": ["0", "1", "1", "4", "119", "10", "44", "0", "1", "53", "0", "0", "4", "169", "78", "0", "0", "0", "28", "1", "10", "19", "23", "0", "1", "2", "0", "1", "2", "0", "18", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.634673", "winner": "\u010cSSD", "id": "598551", "population": 590, "town": "Palkovice", "winner_class": ["cssd"], "lng": "18.315076"}, {"votes": ["0", "2", "0", "2", "16", "8", "64", "0", "3", "69", "0", "1", "0", "95", "70", "1", "1", "1", "23", "0", "11", "7", "8", "0", "5", "0", "0", "5", "1", "1", "20", "0", "3", "0", "0", "4", "0", "0"], "lat": "49.553479", "winner": "\u010cSSD", "id": "554294", "population": 421, "town": "Sta\u0148kov", "winner_class": ["cssd"], "lng": "13.069758"}, {"votes": ["1", "3", "0", "0", "13", "19", "43", "0", "2", "37", "0", "0", "0", "47", "84", "0", "0", "0", "29", "1", "9", "15", "9", "0", "2", "1", "0", "2", "0", "0", "24", "0", "0", "0", "1", "0", "0", "0"], "lat": "50.759871", "winner": "ANO", "id": "563552", "population": 342, "town": "Desn\u00e1", "winner_class": ["ano"], "lng": "15.302839"}, {"votes": ["2", "1", "0", "0", "35", "8", "56", "3", "0", "35", "0", "1", "0", "54", "60", "0", "3", "0", "17", "1", "12", "7", "11", "0", "3", "1", "0", "0", "1", "0", "6", "1", "0", "0", "0", "0", "1", "0"], "lat": "50.00075", "winner": "ANO", "id": "540862", "population": 319, "town": "Rapot\u00edn", "winner_class": ["ano"], "lng": "17.018954"}, {"votes": ["8", "2", "2", "2", "35", "7", "206", "7", "5", "37", "0", "0", "0", "66", "122", "0", "0", "0", "63", "3", "13", "51", "56", "0", "0", "5", "0", "4", "1", "0", "48", "0", "0", "0", "0", "2", "0", "1"], "lat": "49.913948", "winner": "TOP 09", "id": "539643", "population": 746, "town": "\u0158evnice", "winner_class": ["top-09"], "lng": "14.235893"}, {"votes": ["5", "0", "0", "0", "23", "6", "176", "6", "1", "18", "0", "1", "0", "31", "121", "0", "0", "0", "45", "2", "8", "29", "61", "0", "0", "0", "0", "0", "0", "0", "37", "0", "0", "0", "0", "1", "0", "1"], "lat": "49.936218", "winner": "TOP 09", "id": "539597", "population": 572, "town": "Ps\u00e1ry", "winner_class": ["top-09"], "lng": "14.512761"}, {"votes": ["0", "0", "0", "6", "85", "12", "58", "2", "0", "33", "0", "1", "0", "64", "78", "0", "6", "0", "37", "0", "25", "8", "5", "1", "1", "2", "0", "2", "1", "0", "17", "0", "0", "0", "0", "1", "9", "0"], "lat": "49.940806", "winner": "KDU-\u010cSL", "id": "525588", "population": 454, "town": "Bludov", "winner_class": ["kdu-csl"], "lng": "16.928488"}, {"votes": ["5", "0", "0", "0", "33", "7", "43", "4", "1", "60", "0", "0", "1", "74", "64", "2", "0", "2", "38", "2", "14", "8", "21", "1", "2", "1", "0", "1", "0", "2", "21", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.86912", "winner": "\u010cSSD", "id": "572411", "population": 408, "town": "T\u0159emo\u0161nice", "winner_class": ["cssd"], "lng": "15.580024"}, {"votes": ["2", "1", "1", "3", "167", "4", "66", "1", "17", "43", "0", "1", "2", "71", "70", "0", "10", "0", "29", "0", "22", "13", "17", "0", "4", "0", "1", "2", "0", "0", "17", "0", "2", "1", "0", "0", "2", "1"], "lat": "49.104349", "winner": "KDU-\u010cSL", "id": "584045", "population": 570, "town": "\u00dajezd u Brna", "winner_class": ["kdu-csl"], "lng": "16.757368"}, {"votes": ["3", "0", "1", "5", "66", "4", "80", "1", "7", "57", "0", "2", "0", "70", "70", "0", "0", "1", "36", "2", "25", "12", "24", "0", "4", "3", "0", "2", "0", "1", "14", "0", "0", "0", "0", "0", "4", "1"], "lat": "50.267418", "winner": "TOP 09", "id": "576590", "population": 495, "town": "Opo\u010dno", "winner_class": ["top-09"], "lng": "16.114797"}, {"votes": ["0", "1", "0", "2", "94", "2", "26", "0", "1", "11", "0", "1", "0", "51", "50", "0", "0", "2", "22", "0", "13", "3", "8", "1", "0", "0", "0", "1", "0", "1", "15", "4", "0", "0", "2", "4", "0", "0"], "lat": "49.957384", "winner": "KDU-\u010cSL", "id": "510483", "population": 315, "town": "\u0160t\u011bp\u00e1nkovice", "winner_class": ["kdu-csl"], "lng": "18.037412"}, {"votes": ["0", "0", "0", "2", "128", "4", "28", "0", "2", "41", "0", "0", "0", "143", "58", "0", "0", "0", "32", "0", "12", "6", "12", "0", "0", "1", "0", "1", "1", "0", "17", "1", "0", "0", "0", "1", "2", "0"], "lat": "49.673829", "winner": "\u010cSSD", "id": "598089", "population": 492, "town": "Dobr\u00e1", "winner_class": ["cssd"], "lng": "18.413928"}, {"votes": ["1", "1", "0", "1", "80", "11", "37", "3", "0", "67", "0", "0", "0", "64", "75", "0", "6", "1", "37", "0", "24", "11", "20", "0", "0", "2", "0", "0", "2", "0", "15", "0", "0", "0", "0", "2", "4", "0"], "lat": "48.904693", "winner": "KDU-\u010cSL", "id": "585017", "population": 464, "town": "Velk\u00e9 Pavlovice", "winner_class": ["kdu-csl"], "lng": "16.81605"}, {"votes": ["4", "2", "2", "1", "13", "4", "23", "0", "2", "74", "0", "2", "0", "58", "49", "1", "6", "0", "19", "1", "10", "8", "4", "0", "4", "1", "1", "2", "3", "0", "7", "0", "1", "1", "0", "0", "2", "1"], "lat": "49.793743", "winner": "KS\u010cM", "id": "597678", "population": 306, "town": "Moravsk\u00fd Beroun", "winner_class": ["kscm"], "lng": "17.442116"}, {"votes": ["2", "1", "0", "3", "36", "7", "75", "2", "2", "21", "0", "0", "0", "38", "67", "0", "5", "0", "40", "3", "3", "15", "33", "0", "3", "1", "0", "2", "0", "0", "16", "1", "0", "1", "1", "2", "0", "0"], "lat": "49.942626", "winner": "TOP 09", "id": "540501", "population": 380, "town": "Nov\u00fd Mal\u00edn", "winner_class": ["top-09"], "lng": "17.031905"}, {"votes": ["0", "0", "0", "6", "12", "3", "36", "2", "3", "61", "0", "0", "0", "65", "77", "1", "0", "1", "16", "0", "18", "9", "17", "0", "0", "4", "0", "3", "1", "0", "36", "0", "2", "0", "0", "1", "2", "0"], "lat": "50.034433", "winner": "ANO", "id": "575071", "population": 376, "town": "Chvaletice", "winner_class": ["ano"], "lng": "15.418457"}, {"votes": ["5", "1", "0", "2", "20", "9", "34", "0", "1", "69", "0", "0", "0", "46", "69", "1", "0", "1", "29", "3", "22", "10", "16", "3", "2", "3", "0", "2", "2", "0", "11", "0", "6", "1", "0", "2", "2", "0"], "lat": "49.902051", "winner": "KS\u010cM", "id": "571539", "population": 372, "town": "Chrast", "winner_class": ["kscm"], "lng": "15.933963"}, {"votes": ["3", "0", "3", "1", "48", "9", "196", "6", "2", "36", "2", "0", "0", "51", "123", "0", "3", "2", "46", "0", "10", "44", "59", "0", "2", "3", "1", "1", "1", "0", "31", "0", "3", "3", "0", "4", "2", "0"], "lat": "49.936016", "winner": "TOP 09", "id": "538493", "population": 695, "town": "Mnichovice", "winner_class": ["top-09"], "lng": "14.709069"}, {"votes": ["6", "0", "2", "2", "88", "16", "95", "4", "4", "60", "1", "2", "0", "83", "142", "0", "5", "0", "47", "3", "34", "58", "22", "1", "2", "6", "0", "4", "1", "3", "31", "0", "3", "0", "1", "1", "2", "1"], "lat": "49.594228", "winner": "ANO", "id": "505609", "population": 730, "town": "Velk\u00e1 Byst\u0159ice", "winner_class": ["ano"], "lng": "17.363975"}, {"votes": ["0", "2", "0", "1", "52", "6", "53", "1", "2", "62", "0", "0", "0", "42", "75", "0", "1", "0", "51", "3", "2", "11", "20", "0", "3", "4", "0", "6", "0", "0", "12", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.695958", "winner": "ANO", "id": "569780", "population": 410, "town": "\u017dd\u00edrec nad Doubravou", "winner_class": ["ano"], "lng": "15.813602"}, {"votes": ["2", "0", "0", "1", "12", "6", "63", "2", "3", "36", "0", "2", "1", "41", "73", "0", "0", "0", "20", "1", "17", "13", "19", "0", "3", "3", "0", "3", "0", "0", "28", "1", "0", "0", "0", "2", "1", "0"], "lat": "50.186002", "winner": "ANO", "id": "560537", "population": 353, "town": "Loket", "winner_class": ["ano"], "lng": "12.754047"}, {"votes": ["1", "0", "0", "1", "133", "7", "28", "2", "0", "15", "0", "1", "0", "72", "35", "0", "9", "0", "16", "0", "8", "8", "14", "0", "2", "4", "0", "2", "0", "0", "8", "0", "0", "0", "0", "3", "1", "0"], "lat": "48.96837", "winner": "KDU-\u010cSL", "id": "592145", "population": 370, "town": "Doln\u00ed N\u011bm\u010d\u00ed", "winner_class": ["kdu-csl"], "lng": "17.585853"}, {"votes": ["0", "1", "0", "4", "19", "8", "40", "1", "5", "43", "0", "0", "0", "57", "49", "0", "0", "0", "11", "2", "23", "13", "6", "0", "5", "3", "0", "1", "0", "1", "17", "1", "0", "0", "1", "0", "1", "1"], "lat": "48.768507", "winner": "\u010cSSD", "id": "546089", "population": 313, "town": "\u010cesk\u00e9 Velenice", "winner_class": ["cssd"], "lng": "14.963677"}, {"votes": ["3", "0", "0", "1", "167", "5", "24", "0", "0", "28", "0", "1", "0", "33", "43", "0", "2", "0", "23", "0", "19", "11", "13", "0", "1", "1", "0", "1", "0", "0", "9", "0", "4", "0", "0", "1", "0", "0"], "lat": "48.930965", "winner": "KDU-\u010cSL", "id": "586757", "population": 390, "town": "Vnorovy", "winner_class": ["kdu-csl"], "lng": "17.350501"}, {"votes": ["3", "2", "0", "1", "82", "16", "53", "8", "3", "48", "0", "0", "0", "69", "61", "0", "0", "2", "26", "1", "19", "25", "30", "1", "3", "2", "0", "2", "1", "0", "26", "0", "2", "0", "0", "1", "7", "0"], "lat": "50.505232", "winner": "KDU-\u010cSL", "id": "579637", "population": 494, "town": "Rtyn\u011b v Podkrkono\u0161\u00ed", "winner_class": ["kdu-csl"], "lng": "16.071867"}, {"votes": ["1", "0", "0", "5", "139", "9", "34", "0", "2", "27", "0", "0", "1", "32", "33", "0", "0", "0", "29", "0", "14", "5", "11", "0", "1", "4", "0", "1", "1", "1", "8", "0", "0", "0", "0", "4", "1", "1"], "lat": "49.009898", "winner": "KDU-\u010cSL", "id": "592820", "population": 364, "town": "Vl\u010dnov", "winner_class": ["kdu-csl"], "lng": "17.581829"}, {"votes": ["2", "0", "1", "0", "74", "6", "74", "5", "2", "38", "0", "0", "0", "60", "62", "0", "7", "0", "30", "0", "12", "23", "39", "1", "1", "3", "0", "1", "0", "2", "24", "1", "0", "0", "0", "4", "2", "0"], "lat": "49.276311", "winner": "KDU-\u010cSL", "id": "584100", "population": 474, "town": "Veversk\u00e1 B\u00edt\u00fd\u0161ka", "winner_class": ["kdu-csl"], "lng": "16.435471"}, {"votes": ["7", "1", "0", "1", "24", "4", "265", "5", "0", "39", "0", "0", "1", "40", "133", "0", "0", "0", "46", "0", "11", "42", "51", "0", "1", "0", "0", "0", "0", "0", "47", "1", "0", "1", "0", "0", "4", "0"], "lat": "49.963211", "winner": "TOP 09", "id": "539210", "population": 724, "town": "Doln\u00ed B\u0159e\u017eany", "winner_class": ["top-09"], "lng": "14.458504"}, {"votes": ["1", "2", "0", "1", "53", "7", "40", "1", "5", "67", "0", "1", "0", "50", "36", "1", "2", "3", "38", "1", "5", "7", "13", "1", "3", "2", "0", "1", "0", "1", "9", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.040292", "winner": "KS\u010cM", "id": "580015", "population": 353, "town": "\u010cerven\u00e1 Voda", "winner_class": ["kscm"], "lng": "16.742682"}, {"votes": ["1", "1", "0", "0", "16", "8", "134", "0", "2", "57", "0", "0", "1", "47", "110", "2", "0", "1", "30", "1", "12", "13", "30", "0", "0", "3", "0", "1", "0", "1", "30", "1", "0", "0", "0", "3", "0", "0"], "lat": "49.807701", "winner": "TOP 09", "id": "559679", "population": 505, "town": "Zru\u010d-Senec", "winner_class": ["top-09"], "lng": "13.426381"}, {"votes": ["7", "1", "0", "6", "17", "12", "61", "2", "5", "55", "1", "1", "1", "50", "71", "0", "0", "2", "38", "2", "12", "24", "27", "0", "5", "4", "0", "0", "0", "0", "13", "1", "1", "1", "1", "0", "1", "1"], "lat": "50.281517", "winner": "ANO", "id": "533041", "population": 423, "town": "Velvary", "winner_class": ["ano"], "lng": "14.236157"}, {"votes": ["2", "0", "0", "1", "7", "5", "74", "0", "1", "72", "0", "0", "1", "74", "75", "0", "0", "1", "10", "1", "6", "8", "13", "0", "1", "1", "0", "3", "0", "1", "13", "0", "1", "1", "0", "0", "2", "0"], "lat": "49.893131", "winner": "ANO", "id": "559008", "population": 374, "town": "Kazn\u011bjov", "winner_class": ["ano"], "lng": "13.382948"}, {"votes": ["1", "0", "3", "2", "2", "3", "28", "3", "3", "63", "0", "0", "0", "45", "58", "0", "0", "0", "21", "1", "11", "12", "7", "0", "4", "3", "0", "5", "1", "1", "8", "0", "0", "0", "0", "0", "2", "2"], "lat": "50.655075", "winner": "KS\u010cM", "id": "567621", "population": 289, "town": "Ko\u0161\u0165any", "winner_class": ["kscm"], "lng": "13.755541"}, {"votes": ["5", "0", "1", "4", "43", "2", "65", "5", "1", "55", "0", "1", "3", "64", "72", "0", "0", "0", "43", "2", "16", "23", "23", "0", "7", "1", "0", "5", "1", "2", "20", "0", "1", "0", "0", "4", "2", "0"], "lat": "49.165779", "winner": "ANO", "id": "551970", "population": 471, "town": "Volyn\u011b", "winner_class": ["ano"], "lng": "13.886236"}, {"votes": ["2", "0", "1", "2", "67", "11", "33", "3", "1", "70", "0", "3", "0", "68", "71", "0", "8", "2", "23", "0", "19", "17", "7", "1", "3", "0", "1", "0", "1", "0", "13", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.744699", "winner": "ANO", "id": "540196", "population": 429, "town": "Lo\u0161tice", "winner_class": ["ano"], "lng": "16.928923"}, {"votes": ["3", "0", "0", "6", "25", "5", "32", "0", "1", "27", "0", "0", "0", "50", "66", "0", "0", "0", "31", "1", "15", "11", "15", "0", "1", "5", "0", "3", "1", "0", "18", "0", "1", "0", "0", "0", "0", "2"], "lat": "49.88019", "winner": "ANO", "id": "534498", "population": 319, "town": "Uhl\u00ed\u0159sk\u00e9 Janovice", "winner_class": ["ano"], "lng": "15.064814"}, {"votes": ["1", "1", "0", "1", "11", "11", "88", "3", "1", "47", "0", "0", "0", "48", "50", "0", "0", "0", "19", "3", "19", "14", "17", "0", "2", "3", "0", "0", "0", "3", "32", "1", "0", "0", "0", "1", "4", "0"], "lat": "49.724253", "winner": "TOP 09", "id": "559491", "population": 380, "town": "Tlu\u010dn\u00e1", "winner_class": ["top-09"], "lng": "13.235343"}, {"votes": ["1", "2", "0", "0", "61", "3", "35", "1", "0", "49", "2", "1", "0", "46", "46", "0", "5", "0", "22", "0", "14", "12", "16", "0", "0", "5", "0", "0", "1", "0", "11", "0", "0", "0", "0", "0", "4", "0"], "lat": "48.882569", "winner": "KDU-\u010cSL", "id": "586714", "population": 337, "town": "Velk\u00e1 nad Veli\u010dkou", "winner_class": ["kdu-csl"], "lng": "17.520597"}, {"votes": ["2", "0", "0", "2", "145", "6", "36", "0", "1", "17", "0", "0", "0", "36", "56", "0", "3", "0", "33", "0", "13", "16", "42", "0", "0", "4", "0", "0", "0", "0", "11", "0", "2", "0", "0", "1", "1", "0"], "lat": "49.474098", "winner": "KDU-\u010cSL", "id": "545236", "population": 427, "town": "Za\u0161ov\u00e1", "winner_class": ["kdu-csl"], "lng": "18.044361"}, {"votes": ["2", "1", "2", "1", "25", "8", "179", "2", "0", "30", "0", "0", "0", "43", "111", "1", "1", "0", "67", "1", "8", "34", "37", "0", "0", "4", "3", "4", "0", "0", "37", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.131728", "winner": "TOP 09", "id": "539236", "population": 603, "town": "Horom\u011b\u0159ice", "winner_class": ["top-09"], "lng": "14.338786"}, {"votes": ["1", "1", "1", "0", "17", "7", "24", "0", "3", "30", "0", "0", "0", "36", "32", "0", "0", "1", "12", "0", "14", "13", "9", "0", "0", "2", "0", "0", "0", "0", "12", "0", "1", "0", "0", "1", "0", "2"], "lat": "49.981843", "winner": "\u010cSSD", "id": "555631", "population": 219, "town": "Tepl\u00e1", "winner_class": ["cssd"], "lng": "12.863046"}, {"votes": ["1", "3", "0", "2", "6", "10", "13", "0", "2", "33", "0", "1", "0", "53", "26", "0", "0", "1", "24", "1", "4", "1", "4", "0", "3", "1", "0", "0", "0", "0", "12", "1", "1", "0", "0", "0", "0", "0"], "lat": "50.492316", "winner": "\u010cSSD", "id": "563404", "population": 203, "town": "Vejprty", "winner_class": ["cssd"], "lng": "13.03212"}, {"votes": ["1", "0", "1", "0", "30", "1", "59", "0", "4", "45", "0", "0", "0", "56", "57", "0", "5", "0", "29", "1", "10", "8", "10", "0", "4", "1", "0", "2", "1", "0", "21", "0", "0", "0", "0", "1", "0", "0"], "lat": "48.947671", "winner": "TOP 09", "id": "594458", "population": 347, "town": "Miroslav", "winner_class": ["top-09"], "lng": "16.312522"}, {"votes": ["1", "0", "0", "2", "30", "6", "25", "0", "0", "70", "0", "2", "1", "49", "26", "5", "4", "0", "22", "1", "18", "2", "12", "1", "2", "0", "0", "1", "1", "2", "13", "2", "1", "0", "2", "1", "2", "2"], "lat": "49.795113", "winner": "KS\u010cM", "id": "506460", "population": 306, "town": "Budi\u0161ov nad Budi\u0161ovkou", "winner_class": ["kscm"], "lng": "17.629685"}, {"votes": ["1", "9", "2", "1", "120", "5", "44", "1", "1", "33", "0", "0", "0", "83", "32", "0", "3", "1", "60", "1", "8", "10", "20", "0", "3", "4", "0", "2", "7", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.590397", "winner": "KDU-\u010cSL", "id": "598321", "population": 461, "town": "Kozlovice", "winner_class": ["kdu-csl"], "lng": "18.256562"}, {"votes": ["4", "0", "0", "0", "4", "14", "40", "1", "1", "31", "1", "0", "0", "42", "121", "0", "0", "0", "38", "1", "13", "8", "13", "0", "1", "0", "0", "3", "0", "2", "16", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.207182", "winner": "ANO", "id": "537489", "population": 355, "town": "M\u011bstec Kr\u00e1lov\u00e9", "winner_class": ["ano"], "lng": "15.297581"}, {"votes": ["5", "0", "0", "4", "33", "4", "45", "0", "1", "50", "0", "0", "0", "48", "69", "1", "5", "0", "41", "0", "18", "13", "18", "0", "2", "1", "0", "0", "0", "0", "25", "0", "1", "0", "2", "1", "0", "0"], "lat": "48.825541", "winner": "ANO", "id": "584797", "population": 387, "town": "Podiv\u00edn", "winner_class": ["ano"], "lng": "16.848219"}, {"votes": ["0", "1", "1", "2", "10", "4", "37", "2", "0", "50", "0", "0", "0", "46", "40", "0", "0", "1", "15", "0", "5", "6", "14", "0", "3", "10", "0", "0", "0", "1", "8", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.921534", "winner": "KS\u010cM", "id": "534587", "population": 257, "town": "Vrdy", "winner_class": ["kscm"], "lng": "15.47243"}, {"votes": ["0", "1", "1", "0", "59", "4", "25", "0", "0", "60", "0", "1", "0", "77", "35", "0", "4", "0", "19", "1", "11", "5", "8", "0", "4", "0", "0", "3", "0", "0", "9", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.305419", "winner": "\u010cSSD", "id": "593117", "population": 328, "town": "Ivanovice na Han\u00e9", "winner_class": ["cssd"], "lng": "17.093431"}, {"votes": ["0", "0", "0", "3", "41", "3", "46", "1", "1", "44", "0", "0", "0", "55", "77", "0", "12", "2", "25", "1", "7", "12", "14", "0", "0", "2", "0", "3", "0", "2", "18", "0", "0", "0", "0", "1", "0", "0"], "lat": "48.840979", "winner": "ANO", "id": "586358", "population": 370, "town": "Lu\u017eice", "winner_class": ["ano"], "lng": "17.071039"}, {"votes": ["1", "0", "0", "1", "35", "3", "76", "1", "2", "25", "1", "0", "0", "46", "62", "0", "0", "0", "43", "1", "23", "12", "18", "1", "4", "11", "0", "3", "0", "3", "21", "2", "0", "0", "0", "10", "0", "0"], "lat": "50.725612", "winner": "TOP 09", "id": "577456", "population": 405, "town": "Rokytnice nad Jizerou", "winner_class": ["top-09"], "lng": "15.433574"}, {"votes": ["1", "1", "2", "3", "33", "4", "32", "3", "2", "73", "0", "1", "0", "103", "72", "0", "0", "0", "40", "0", "19", "14", "15", "0", "5", "0", "0", "0", "0", "0", "17", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.253182", "winner": "\u010cSSD", "id": "549231", "population": 442, "town": "\u017dirovnice", "winner_class": ["cssd"], "lng": "15.188238"}, {"votes": ["3", "1", "0", "4", "98", "2", "43", "3", "1", "9", "0", "0", "0", "30", "47", "0", "1", "0", "12", "0", "12", "15", "22", "0", "0", "1", "0", "0", "0", "0", "8", "2", "0", "0", "0", "2", "1", "1"], "lat": "49.247819", "winner": "KDU-\u010cSL", "id": "585777", "population": 318, "town": "Slu\u0161ovice", "winner_class": ["kdu-csl"], "lng": "17.801497"}, {"votes": ["4", "0", "0", "1", "64", "8", "19", "0", "0", "74", "0", "1", "0", "54", "49", "0", "12", "1", "10", "0", "19", "6", "21", "0", "6", "2", "0", "4", "3", "0", "9", "1", "0", "0", "0", "1", "1", "0"], "lat": "49.106392", "winner": "KS\u010cM", "id": "588601", "population": 370, "town": "Kory\u010dany", "winner_class": ["kscm"], "lng": "17.164328"}, {"votes": ["0", "0", "0", "7", "316", "7", "49", "0", "0", "15", "0", "0", "0", "19", "38", "0", "8", "0", "15", "1", "15", "3", "22", "3", "0", "3", "1", "3", "0", "0", "10", "0", "0", "0", "0", "1", "2", "0"], "lat": "48.858609", "winner": "KDU-\u010cSL", "id": "586137", "population": 538, "town": "Doln\u00ed Bojanovice", "winner_class": ["kdu-csl"], "lng": "17.028585"}, {"votes": ["1", "0", "0", "4", "17", "6", "32", "2", "2", "36", "0", "1", "0", "47", "62", "0", "0", "2", "47", "1", "20", "8", "20", "0", "6", "1", "0", "3", "0", "3", "23", "0", "1", "1", "0", "5", "2", "0"], "lat": "50.299782", "winner": "ANO", "id": "570877", "population": 353, "town": "Smi\u0159ice", "winner_class": ["ano"], "lng": "15.865076"}, {"votes": ["2", "2", "0", "0", "31", "11", "15", "0", "0", "53", "0", "1", "0", "88", "55", "0", "4", "0", "16", "1", "13", "12", "10", "0", "3", "1", "0", "2", "2", "0", "12", "0", "0", "0", "1", "0", "0", "0"], "lat": "50.390773", "winner": "\u010cSSD", "id": "536148", "population": 335, "town": "Javorn\u00edk", "winner_class": ["cssd"], "lng": "17.002717"}, {"votes": ["1", "1", "0", "0", "95", "8", "71", "0", "0", "36", "0", "0", "0", "56", "67", "0", "0", "0", "63", "2", "18", "10", "25", "0", "1", "3", "1", "3", "0", "0", "21", "0", "1", "0", "1", "1", "3", "0"], "lat": "50.029638", "winner": "KDU-\u010cSL", "id": "580376", "population": 488, "town": "Jablonn\u00e9 nad Orlic\u00ed", "winner_class": ["kdu-csl"], "lng": "16.600593"}, {"votes": ["5", "2", "1", "3", "13", "4", "90", "5", "0", "45", "0", "0", "0", "55", "94", "0", "0", "0", "40", "3", "2", "13", "29", "0", "0", "2", "0", "2", "0", "1", "24", "0", "2", "0", "2", "0", "3", "0"], "lat": "50.15594", "winner": "ANO", "id": "532169", "population": 440, "town": "Bu\u0161t\u011bhrad", "winner_class": ["ano"], "lng": "14.188974"}, {"votes": ["0", "1", "1", "2", "53", "22", "77", "3", "4", "42", "0", "0", "0", "75", "69", "0", "0", "0", "31", "0", "18", "12", "18", "1", "5", "0", "0", "1", "0", "0", "19", "0", "2", "1", "0", "0", "1", "1"], "lat": "49.57183", "winner": "TOP 09", "id": "530573", "population": 459, "town": "Sedlec-Pr\u010dice", "winner_class": ["top-09"], "lng": "14.532598"}, {"votes": ["0", "0", "0", "1", "73", "2", "12", "2", "1", "65", "0", "0", "0", "63", "32", "0", "6", "0", "17", "1", "28", "3", "17", "0", "1", "0", "0", "0", "1", "0", "20", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.247985", "winner": "KDU-\u010cSL", "id": "588768", "population": 346, "town": "Morkovice-Sl\u00ed\u017eany", "winner_class": ["kdu-csl"], "lng": "17.207823"}, {"votes": ["0", "1", "3", "5", "10", "7", "51", "1", "2", "63", "0", "1", "0", "37", "66", "0", "1", "0", "15", "0", "11", "9", "13", "0", "3", "6", "1", "3", "0", "2", "19", "1", "1", "2", "0", "1", "1", "0"], "lat": "50.168189", "winner": "ANO", "id": "532576", "population": 336, "town": "Libu\u0161\u00edn", "winner_class": ["ano"], "lng": "14.054581"}, {"votes": ["1", "0", "0", "0", "59", "3", "35", "0", "2", "38", "0", "0", "0", "47", "46", "0", "2", "0", "11", "2", "10", "8", "29", "0", "1", "3", "0", "5", "0", "0", "13", "0", "1", "0", "2", "0", "4", "0"], "lat": "49.51398", "winner": "KDU-\u010cSL", "id": "589632", "population": 322, "town": "Kostelec na Han\u00e9", "winner_class": ["kdu-csl"], "lng": "17.05824"}, {"votes": ["2", "2", "1", "0", "4", "8", "18", "0", "2", "54", "0", "0", "0", "41", "77", "1", "0", "0", "17", "4", "11", "4", "12", "0", "2", "4", "0", "1", "0", "1", "7", "0", "0", "1", "0", "0", "2", "1"], "lat": "50.145573", "winner": "ANO", "id": "560294", "population": 277, "town": "B\u0159ezov\u00e1", "winner_class": ["ano"], "lng": "12.64996"}, {"votes": ["0", "1", "1", "3", "11", "9", "64", "0", "0", "85", "0", "0", "0", "59", "42", "0", "0", "0", "23", "2", "11", "4", "8", "0", "4", "5", "0", "0", "0", "0", "12", "0", "0", "0", "0", "0", "4", "0"], "lat": "49.709921", "winner": "KS\u010cM", "id": "559822", "population": 348, "town": "Hr\u00e1dek", "winner_class": ["kscm"], "lng": "13.654102"}, {"votes": ["4", "1", "1", "3", "88", "4", "47", "0", "3", "60", "0", "2", "0", "84", "56", "0", "2", "0", "17", "1", "16", "12", "4", "0", "2", "1", "0", "0", "1", "1", "14", "0", "3", "0", "0", "0", "1", "0"], "lat": "49.590297", "winner": "KDU-\u010cSL", "id": "589624", "population": 428, "town": "Konice", "winner_class": ["kdu-csl"], "lng": "16.889111"}, {"votes": ["2", "0", "0", "1", "38", "9", "23", "1", "1", "46", "1", "1", "0", "70", "44", "0", "3", "0", "13", "0", "17", "4", "13", "0", "2", "2", "0", "0", "0", "2", "16", "3", "1", "0", "0", "1", "0", "1"], "lat": "50.031974", "winner": "\u010cSSD", "id": "541265", "population": 315, "town": "Velk\u00e9 Losiny", "winner_class": ["cssd"], "lng": "17.040582"}, {"votes": ["3", "1", "0", "1", "63", "4", "23", "1", "2", "54", "0", "2", "0", "54", "40", "0", "1", "0", "22", "1", "15", "8", "22", "0", "0", "0", "0", "1", "0", "0", "6", "2", "3", "0", "0", "0", "1", "0"], "lat": "49.632196", "winner": "KDU-\u010cSL", "id": "578193", "population": 330, "town": "Jev\u00ed\u010dko", "winner_class": ["kdu-csl"], "lng": "16.711255"}, {"votes": ["2", "1", "0", "1", "9", "17", "30", "0", "2", "20", "0", "0", "0", "45", "34", "0", "0", "0", "13", "0", "7", "5", "11", "2", "8", "2", "0", "6", "0", "1", "10", "0", "0", "0", "0", "0", "7", "1"], "lat": "50.642863", "winner": "\u010cSSD", "id": "553697", "population": 234, "town": "Trmice", "winner_class": ["cssd"], "lng": "13.994492"}, {"votes": ["1", "1", "2", "1", "58", "7", "77", "6", "2", "30", "0", "1", "0", "39", "68", "0", "0", "1", "26", "5", "17", "12", "15", "0", "2", "1", "0", "4", "1", "1", "13", "1", "0", "2", "2", "0", "1", "1"], "lat": "48.904472", "winner": "TOP 09", "id": "545571", "population": 398, "town": "K\u0159em\u017ee", "winner_class": ["top-09"], "lng": "14.30522"}, {"votes": ["2", "2", "0", "1", "5", "14", "50", "0", "1", "46", "0", "0", "0", "30", "38", "0", "0", "1", "18", "2", "17", "4", "9", "0", "4", "8", "0", "2", "3", "0", "15", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.713735", "winner": "TOP 09", "id": "563838", "population": 274, "town": "Velk\u00e9 Hamry", "winner_class": ["top-09"], "lng": "15.315389"}, {"votes": ["3", "2", "0", "6", "111", "7", "34", "2", "1", "75", "0", "1", "1", "46", "55", "0", "6", "0", "19", "0", "18", "9", "15", "0", "4", "3", "1", "2", "0", "2", "16", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.344528", "winner": "KDU-\u010cSL", "id": "581682", "population": 440, "town": "Jedovnice", "winner_class": ["kdu-csl"], "lng": "16.75575"}, {"votes": ["4", "1", "0", "3", "20", "8", "156", "4", "2", "43", "0", "0", "1", "30", "77", "0", "0", "0", "41", "1", "9", "36", "43", "0", "3", "2", "0", "2", "0", "2", "39", "0", "1", "0", "0", "2", "3", "0"], "lat": "50.175988", "winner": "TOP 09", "id": "538311", "population": 533, "town": "Klecany", "winner_class": ["top-09"], "lng": "14.411481"}, {"votes": ["3", "0", "0", "3", "4", "5", "38", "1", "6", "59", "0", "1", "0", "33", "58", "0", "0", "0", "11", "1", "17", "13", "13", "0", "8", "5", "0", "1", "0", "1", "10", "1", "0", "0", "1", "0", "2", "0"], "lat": "50.584745", "winner": "KS\u010cM", "id": "565814", "population": 295, "town": "\u00da\u0161t\u011bk", "winner_class": ["kscm"], "lng": "14.343324"}, {"votes": ["1", "0", "1", "1", "10", "21", "32", "0", "0", "32", "0", "0", "0", "38", "50", "0", "0", "0", "19", "2", "9", "4", "8", "0", "3", "2", "0", "1", "0", "1", "5", "0", "1", "1", "0", "1", "1", "0"], "lat": "50.904155", "winner": "ANO", "id": "564371", "population": 244, "town": "Raspenava", "winner_class": ["ano"], "lng": "15.114647"}, {"votes": ["4", "0", "3", "3", "16", "4", "197", "6", "2", "13", "1", "1", "0", "46", "79", "2", "0", "0", "87", "5", "3", "22", "38", "0", "0", "1", "0", "0", "0", "0", "44", "0", "1", "0", "0", "0", "2", "4"], "lat": "50.108454", "winner": "TOP 09", "id": "538876", "population": 584, "town": "\u0160estajovice", "winner_class": ["top-09"], "lng": "14.680132"}, {"votes": ["4", "0", "0", "1", "226", "3", "52", "1", "1", "33", "0", "0", "0", "59", "69", "0", "5", "0", "33", "1", "9", "16", "25", "0", "0", "5", "0", "4", "0", "1", "28", "1", "0", "0", "0", "0", "1", "1"], "lat": "49.152213", "winner": "KDU-\u010cSL", "id": "583910", "population": 579, "town": "St\u0159elice", "winner_class": ["kdu-csl"], "lng": "16.503985"}, {"votes": ["1", "0", "0", "0", "99", "2", "16", "0", "0", "12", "0", "0", "1", "48", "27", "0", "1", "0", "28", "0", "17", "7", "11", "0", "5", "4", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.338821", "winner": "KDU-\u010cSL", "id": "544566", "population": 287, "town": "Nov\u00fd Hrozenkov", "winner_class": ["kdu-csl"], "lng": "18.201569"}, {"votes": ["0", "1", "1", "1", "13", "10", "49", "0", "1", "85", "0", "0", "0", "43", "60", "0", "0", "0", "13", "2", "14", "2", "13", "3", "3", "3", "3", "0", "0", "2", "20", "0", "1", "0", "1", "0", "2", "2"], "lat": "50.684752", "winner": "KS\u010cM", "id": "562262", "population": 348, "town": "Z\u00e1kupy", "winner_class": ["kscm"], "lng": "14.645224"}, {"votes": ["2", "0", "0", "0", "127", "4", "39", "1", "1", "33", "1", "0", "0", "68", "42", "0", "0", "0", "10", "0", "18", "13", "15", "0", "4", "1", "0", "0", "0", "1", "16", "1", "0", "0", "0", "0", "3", "0"], "lat": "49.373433", "winner": "KDU-\u010cSL", "id": "587478", "population": 400, "town": "Luka nad Jihlavou", "winner_class": ["kdu-csl"], "lng": "15.70577"}, {"votes": ["2", "1", "1", "3", "16", "9", "38", "3", "2", "34", "1", "0", "0", "42", "42", "0", "0", "1", "32", "0", "7", "2", "7", "0", "0", "4", "0", "1", "0", "1", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.358463", "winner": "\u010cSSD", "id": "555215", "population": 260, "town": "J\u00e1chymov", "winner_class": ["cssd"], "lng": "12.93465"}, {"votes": ["0", "0", "0", "2", "9", "14", "36", "3", "0", "28", "0", "1", "0", "58", "35", "1", "0", "1", "23", "0", "10", "11", "6", "0", "1", "4", "0", "1", "0", "1", "14", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.877201", "winner": "\u010cSSD", "id": "564044", "population": 260, "town": "Hejnice", "winner_class": ["cssd"], "lng": "15.181676"}, {"votes": ["0", "0", "0", "0", "81", "8", "47", "2", "1", "52", "0", "0", "0", "108", "86", "0", "14", "0", "37", "2", "16", "20", "36", "0", "5", "5", "0", "7", "0", "0", "16", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.222957", "winner": "\u010cSSD", "id": "583405", "population": 545, "town": "Mokr\u00e1-Hor\u00e1kov", "winner_class": ["cssd"], "lng": "16.751503"}, {"votes": ["0", "3", "1", "2", "153", "2", "22", "4", "1", "117", "0", "1", "0", "103", "74", "0", "1", "1", "23", "1", "7", "8", "8", "0", "0", "0", "0", "1", "1", "2", "23", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.576863", "winner": "KDU-\u010cSL", "id": "599905", "population": 561, "town": "Star\u00fd Ji\u010d\u00edn", "winner_class": ["kdu-csl"], "lng": "17.961692"}, {"votes": ["0", "3", "0", "3", "9", "7", "50", "2", "3", "20", "0", "0", "0", "39", "72", "0", "0", "1", "18", "0", "13", "9", "21", "0", "2", "0", "0", "3", "0", "0", "15", "0", "2", "0", "0", "2", "1", "0"], "lat": "50.665863", "winner": "ANO", "id": "564061", "population": 295, "town": "Hodkovice nad Mohelkou", "winner_class": ["ano"], "lng": "15.089851"}, {"votes": ["1", "2", "0", "4", "39", "8", "5", "0", "3", "59", "0", "0", "0", "61", "57", "1", "4", "0", "13", "1", "17", "4", "4", "0", "4", "1", "0", "2", "0", "0", "6", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.298538", "winner": "\u010cSSD", "id": "540382", "population": 298, "town": "Mikulovice", "winner_class": ["cssd"], "lng": "17.32155"}, {"votes": ["0", "0", "1", "1", "37", "3", "26", "0", "4", "59", "0", "0", "0", "33", "28", "0", "0", "0", "24", "2", "7", "9", "17", "0", "2", "3", "0", "1", "0", "0", "13", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.533128", "winner": "KS\u010cM", "id": "552704", "population": 271, "town": "Mlad\u00e1 Vo\u017eice", "winner_class": ["kscm"], "lng": "14.808565"}, {"votes": ["7", "3", "0", "4", "25", "15", "42", "1", "2", "61", "0", "0", "0", "36", "65", "0", "1", "2", "20", "0", "16", "14", "20", "1", "8", "1", "1", "2", "0", "1", "8", "3", "2", "1", "1", "0", "5", "3"], "lat": "50.510999", "winner": "ANO", "id": "565717", "population": 371, "town": "Terez\u00edn", "winner_class": ["ano"], "lng": "14.150547"}, {"votes": ["1", "0", "2", "2", "20", "12", "89", "4", "0", "43", "1", "0", "1", "33", "86", "0", "0", "0", "30", "2", "10", "19", "20", "0", "1", "2", "0", "6", "0", "0", "15", "0", "0", "0", "0", "1", "1", "0"], "lat": "50.667728", "winner": "TOP 09", "id": "567787", "population": 401, "town": "Probo\u0161tov", "winner_class": ["top-09"], "lng": "13.836009"}, {"votes": ["1", "0", "0", "7", "18", "17", "69", "0", "4", "47", "0", "1", "2", "57", "77", "0", "0", "2", "25", "2", "17", "17", "34", "0", "3", "2", "0", "5", "0", "0", "33", "1", "0", "0", "0", "3", "2", "0"], "lat": "50.668015", "winner": "ANO", "id": "563960", "population": 446, "town": "\u010cesk\u00fd Dub", "winner_class": ["ano"], "lng": "14.982149"}, {"votes": ["0", "1", "1", "0", "135", "2", "62", "3", "4", "35", "0", "0", "1", "64", "64", "0", "1", "0", "36", "1", "12", "15", "14", "0", "0", "3", "1", "3", "1", "1", "20", "0", "0", "0", "0", "1", "6", "0"], "lat": "49.506452", "winner": "KDU-\u010cSL", "id": "581879", "population": 487, "town": "Kun\u0161t\u00e1t", "winner_class": ["kdu-csl"], "lng": "16.517219"}, {"votes": ["1", "2", "0", "3", "54", "8", "20", "0", "4", "31", "1", "2", "0", "46", "41", "0", "2", "0", "20", "1", "13", "0", "2", "1", "0", "2", "0", "1", "1", "0", "9", "0", "0", "0", "0", "2", "0", "1"], "lat": "49.351278", "winner": "KDU-\u010cSL", "id": "542911", "population": 268, "town": "Karolinka", "winner_class": ["kdu-csl"], "lng": "18.240062"}, {"votes": ["0", "0", "2", "3", "60", "3", "23", "0", "1", "27", "0", "2", "0", "58", "69", "0", "6", "1", "7", "0", "11", "15", "12", "0", "3", "6", "0", "0", "1", "0", "29", "4", "0", "0", "0", "0", "0", "0"], "lat": "49.551974", "winner": "ANO", "id": "505650", "population": 343, "town": "Velk\u00fd T\u00fdnec", "winner_class": ["ano"], "lng": "17.337553"}, {"votes": ["0", "0", "0", "2", "30", "4", "96", "5", "0", "28", "0", "0", "0", "59", "94", "1", "0", "0", "43", "1", "8", "32", "39", "1", "4", "1", "0", "0", "1", "0", "22", "1", "0", "0", "0", "0", "3", "1"], "lat": "49.85293", "winner": "TOP 09", "id": "529516", "population": 476, "town": "\u010cer\u010dany", "winner_class": ["top-09"], "lng": "14.702987"}, {"votes": ["1", "0", "1", "0", "18", "7", "90", "1", "2", "72", "0", "0", "1", "79", "65", "0", "0", "1", "50", "0", "11", "7", "21", "0", "4", "3", "0", "2", "0", "0", "25", "1", "1", "0", "0", "1", "3", "1"], "lat": "49.93449", "winner": "TOP 09", "id": "559351", "population": 468, "town": "Plasy", "winner_class": ["top-09"], "lng": "13.390354"}, {"votes": ["0", "0", "0", "0", "35", "2", "24", "1", "1", "46", "0", "0", "0", "41", "63", "1", "1", "0", "29", "2", "12", "3", "25", "0", "0", "3", "0", "0", "0", "0", "15", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.816262", "winner": "ANO", "id": "568635", "population": 305, "town": "Gol\u010d\u016fv Jen\u00edkov", "winner_class": ["ano"], "lng": "15.476862"}, {"votes": ["0", "0", "1", "0", "4", "3", "66", "0", "1", "45", "0", "0", "0", "39", "37", "0", "0", "1", "21", "0", "15", "4", "15", "0", "3", "0", "0", "5", "1", "0", "15", "0", "1", "0", "0", "0", "6", "0"], "lat": "49.654081", "winner": "TOP 09", "id": "557838", "population": 283, "town": "Chot\u011b\u0161ov", "winner_class": ["top-09"], "lng": "13.202713"}, {"votes": ["3", "1", "0", "6", "58", "7", "29", "0", "0", "37", "0", "0", "0", "43", "67", "0", "4", "0", "9", "0", "15", "3", "20", "0", "0", "1", "0", "1", "0", "1", "9", "0", "0", "0", "0", "3", "1", "1"], "lat": "48.802789", "winner": "ANO", "id": "584665", "population": 319, "town": "Moravsk\u00e1 Nov\u00e1 Ves", "winner_class": ["ano"], "lng": "17.015153"}, {"votes": ["1", "0", "0", "2", "16", "10", "108", "1", "18", "53", "0", "0", "0", "62", "53", "0", "0", "0", "19", "0", "8", "11", "9", "0", "1", "3", "0", "2", "0", "0", "14", "2", "0", "5", "0", "2", "3", "1"], "lat": "49.613708", "winner": "TOP 09", "id": "558362", "population": 404, "town": "Sp\u00e1len\u00e9 Po\u0159\u00ed\u010d\u00ed", "winner_class": ["top-09"], "lng": "13.605562"}, {"votes": ["5", "2", "0", "0", "51", "5", "51", "3", "2", "43", "0", "0", "0", "42", "51", "0", "1", "0", "26", "1", "16", "14", "17", "0", "5", "2", "0", "3", "0", "0", "14", "0", "0", "4", "0", "1", "2", "0"], "lat": "49.049301", "winner": "KDU-\u010cSL", "id": "550442", "population": 361, "town": "Netolice", "winner_class": ["kdu-csl"], "lng": "14.196997"}, {"votes": ["5", "1", "1", "2", "52", "5", "98", "2", "1", "41", "0", "0", "0", "60", "72", "0", "0", "3", "44", "1", "14", "30", "29", "0", "4", "3", "0", "2", "0", "0", "11", "3", "1", "0", "0", "0", "7", "1"], "lat": "48.968207", "winner": "TOP 09", "id": "535206", "population": 493, "town": "Dobr\u00e1 Voda u \u010cesk\u00fdch Bud\u011bjovic", "winner_class": ["top-09"], "lng": "14.524935"}, {"votes": ["2", "1", "2", "2", "44", "8", "31", "0", "2", "57", "0", "0", "0", "65", "45", "0", "7", "2", "27", "0", "18", "5", "18", "0", "2", "1", "0", "0", "1", "1", "6", "0", "0", "1", "1", "1", "0", "0"], "lat": "49.067288", "winner": "\u010cSSD", "id": "586803", "population": 350, "town": "\u017dd\u00e1nice", "winner_class": ["cssd"], "lng": "17.027512"}, {"votes": ["0", "0", "0", "1", "16", "8", "13", "0", "1", "33", "2", "0", "0", "54", "45", "0", "0", "1", "15", "0", "4", "6", "13", "0", "2", "6", "0", "1", "0", "0", "13", "0", "1", "0", "0", "1", "1", "0"], "lat": "50.624608", "winner": "\u010cSSD", "id": "574252", "population": 237, "town": "Mezim\u011bst\u00ed", "winner_class": ["cssd"], "lng": "16.242072"}, {"votes": ["3", "2", "0", "4", "192", "5", "19", "0", "0", "31", "0", "1", "0", "39", "94", "0", "3", "0", "19", "1", "16", "0", "10", "0", "1", "2", "0", "1", "0", "0", "12", "2", "0", "0", "0", "1", "0", "0"], "lat": "49.478443", "winner": "KDU-\u010cSL", "id": "542989", "population": 458, "town": "Kel\u010d", "winner_class": ["kdu-csl"], "lng": "17.815332"}, {"votes": ["1", "3", "0", "0", "7", "10", "15", "1", "2", "21", "0", "0", "0", "31", "47", "9", "0", "0", "11", "1", "11", "2", "4", "0", "12", "1", "0", "3", "1", "0", "8", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.206467", "winner": "ANO", "id": "560570", "population": 203, "town": "Nov\u00e9 Sedlo", "winner_class": ["ano"], "lng": "12.738004"}, {"votes": ["0", "0", "1", "2", "106", "2", "35", "0", "1", "13", "0", "0", "0", "48", "36", "0", "4", "0", "26", "1", "8", "8", "13", "0", "0", "0", "1", "2", "2", "2", "9", "0", "0", "0", "0", "0", "3", "1"], "lat": "49.360637", "winner": "KDU-\u010cSL", "id": "545163", "population": 324, "town": "Velk\u00e9 Karlovice", "winner_class": ["kdu-csl"], "lng": "18.283553"}, {"votes": ["1", "0", "0", "3", "46", "4", "41", "2", "3", "50", "0", "0", "0", "57", "42", "0", "0", "0", "26", "2", "11", "11", "11", "1", "4", "0", "0", "0", "2", "1", "14", "0", "1", "0", "0", "0", "0", "1"], "lat": "49.2602", "winner": "\u010cSSD", "id": "548561", "population": 334, "town": "Po\u010d\u00e1tky", "winner_class": ["cssd"], "lng": "15.240222"}, {"votes": ["0", "0", "0", "0", "36", "1", "16", "0", "0", "41", "0", "1", "0", "42", "31", "1", "0", "0", "7", "1", "3", "3", "20", "0", "0", "1", "0", "2", "0", "0", "14", "0", "1", "1", "0", "0", "0", "0"], "lat": "49.64772", "winner": "\u010cSSD", "id": "599930", "population": 222, "town": "Suchdol nad Odrou", "winner_class": ["cssd"], "lng": "17.934562"}, {"votes": ["2", "1", "0", "1", "63", "6", "23", "0", "2", "13", "0", "0", "1", "31", "33", "0", "0", "0", "15", "0", "6", "1", "10", "1", "1", "1", "0", "1", "0", "0", "9", "0", "0", "0", "0", "0", "2", "1"], "lat": "49.946444", "winner": "KDU-\u010cSL", "id": "568210", "population": 224, "town": "Ha\u0165", "winner_class": ["kdu-csl"], "lng": "18.239313"}, {"votes": ["5", "0", "1", "2", "18", "5", "155", "5", "0", "13", "0", "0", "0", "34", "113", "0", "0", "0", "52", "4", "6", "26", "38", "0", "1", "0", "1", "3", "0", "0", "39", "2", "1", "0", "0", "2", "2", "0"], "lat": "50.167994", "winner": "TOP 09", "id": "539058", "population": 528, "town": "Zdiby", "winner_class": ["top-09"], "lng": "14.451175"}, {"votes": ["1", "2", "0", "2", "53", "5", "68", "1", "4", "57", "0", "1", "3", "99", "56", "0", "2", "0", "29", "2", "9", "18", "33", "0", "1", "2", "0", "0", "0", "0", "12", "0", "0", "1", "1", "0", "0", "1"], "lat": "49.548731", "winner": "\u010cSSD", "id": "598071", "population": 463, "town": "\u010celadn\u00e1", "winner_class": ["cssd"], "lng": "18.337587"}, {"votes": ["0", "1", "0", "0", "50", "2", "40", "0", "4", "30", "1", "3", "0", "28", "63", "0", "1", "0", "13", "2", "15", "17", "12", "1", "1", "1", "0", "2", "1", "0", "7", "3", "0", "0", "0", "0", "2", "0"], "lat": "49.663015", "winner": "ANO", "id": "500852", "population": 300, "town": "Bohu\u0148ovice", "winner_class": ["ano"], "lng": "17.28693"}, {"votes": ["5", "0", "0", "0", "23", "7", "38", "3", "1", "43", "0", "0", "0", "36", "44", "0", "1", "1", "23", "1", "20", "1", "4", "0", "4", "1", "0", "1", "0", "1", "5", "0", "2", "2", "0", "1", "1", "0"], "lat": "50.09192", "winner": "ANO", "id": "555762", "population": 269, "town": "\u017dlutice", "winner_class": ["ano"], "lng": "13.162971"}, {"votes": ["1", "1", "0", "4", "103", "7", "39", "1", "1", "17", "0", "0", "0", "16", "41", "0", "9", "0", "11", "0", "6", "11", "10", "1", "1", "0", "0", "1", "0", "0", "16", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.905921", "winner": "KDU-\u010cSL", "id": "586102", "population": 297, "town": "\u010cejkovice", "winner_class": ["kdu-csl"], "lng": "16.942304"}, {"votes": ["1", "0", "1", "0", "44", "1", "19", "1", "2", "38", "1", "1", "0", "59", "47", "0", "13", "0", "23", "0", "14", "9", "20", "1", "4", "2", "1", "1", "0", "0", "7", "0", "0", "0", "0", "3", "1", "0"], "lat": "49.430834", "winner": "\u010cSSD", "id": "519146", "population": 314, "town": "Tova\u010dov", "winner_class": ["cssd"], "lng": "17.287955"}, {"votes": ["2", "0", "1", "3", "52", "5", "25", "2", "0", "29", "0", "0", "0", "78", "49", "0", "4", "0", "21", "0", "18", "7", "11", "0", "1", "1", "0", "1", "4", "1", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.432162", "winner": "\u010cSSD", "id": "542687", "population": 323, "town": "Horn\u00ed Be\u010dva", "winner_class": ["cssd"], "lng": "18.28859"}, {"votes": ["4", "2", "0", "1", "79", "7", "41", "0", "3", "53", "1", "1", "0", "66", "53", "0", "7", "0", "23", "0", "17", "3", "12", "0", "4", "2", "0", "0", "1", "1", "13", "0", "0", "0", "0", "1", "4", "1"], "lat": "49.086529", "winner": "KDU-\u010cSL", "id": "592102", "population": 400, "town": "Buchlovice", "winner_class": ["kdu-csl"], "lng": "17.3366"}, {"votes": ["2", "3", "0", "2", "84", "4", "57", "0", "2", "50", "0", "0", "1", "61", "27", "0", "2", "0", "27", "0", "6", "10", "11", "0", "2", "1", "0", "1", "1", "0", "10", "0", "0", "2", "0", "8", "0", "2"], "lat": "49.893415", "winner": "KDU-\u010cSL", "id": "571776", "population": 376, "town": "Lu\u017ee", "winner_class": ["kdu-csl"], "lng": "16.028499"}, {"votes": ["2", "2", "0", "0", "23", "8", "23", "1", "2", "90", "1", "0", "0", "44", "38", "0", "0", "0", "17", "0", "10", "6", "13", "1", "4", "3", "0", "0", "0", "0", "21", "0", "3", "0", "0", "0", "0", "0"], "lat": "48.789631", "winner": "KS\u010cM", "id": "544868", "population": 312, "town": "Nov\u00e9 Hrady", "winner_class": ["kscm"], "lng": "14.778385"}, {"votes": ["1", "1", "1", "0", "9", "15", "59", "3", "0", "20", "0", "0", "0", "52", "63", "0", "0", "2", "46", "2", "8", "28", "15", "0", "1", "2", "0", "1", "0", "0", "15", "0", "0", "2", "0", "1", "0", "0"], "lat": "50.683791", "winner": "ANO", "id": "563790", "population": 347, "town": "Rychnov u Jablonce nad Nisou", "winner_class": ["ano"], "lng": "15.149789"}, {"votes": ["0", "0", "1", "3", "35", "3", "66", "1", "4", "31", "0", "3", "0", "51", "70", "0", "6", "0", "25", "0", "16", "12", "17", "0", "3", "5", "3", "1", "1", "0", "31", "1", "1", "0", "0", "0", "1", "0"], "lat": "49.649876", "winner": "ANO", "id": "501646", "population": 391, "town": "Dolany", "winner_class": ["ano"], "lng": "17.322401"}, {"votes": ["1", "1", "0", "0", "160", "2", "38", "1", "1", "16", "0", "0", "0", "36", "49", "0", "0", "33", "20", "0", "13", "7", "22", "0", "2", "1", "0", "0", "0", "1", "16", "0", "2", "0", "0", "0", "3", "0"], "lat": "49.992734", "winner": "KDU-\u010cSL", "id": "580121", "population": 425, "town": "Doln\u00ed Dobrou\u010d", "winner_class": ["kdu-csl"], "lng": "16.497658"}, {"votes": ["0", "2", "0", "1", "78", "5", "40", "1", "3", "24", "0", "4", "0", "35", "31", "0", "3", "1", "22", "2", "8", "2", "17", "0", "4", "4", "0", "1", "0", "0", "6", "0", "0", "1", "0", "0", "4", "0"], "lat": "49.980998", "winner": "KDU-\u010cSL", "id": "540978", "population": 299, "town": "Ruda nad Moravou", "winner_class": ["kdu-csl"], "lng": "16.877819"}, {"votes": ["0", "3", "0", "5", "137", "7", "21", "1", "0", "42", "0", "0", "0", "62", "34", "0", "2", "0", "24", "1", "6", "13", "18", "0", "1", "1", "0", "0", "0", "0", "19", "0", "0", "2", "0", "0", "1", "0"], "lat": "49.536839", "winner": "KDU-\u010cSL", "id": "599689", "population": 400, "town": "Mo\u0159kov", "winner_class": ["kdu-csl"], "lng": "18.059683"}, {"votes": ["0", "1", "1", "4", "35", "4", "26", "2", "3", "89", "1", "0", "0", "58", "55", "0", "3", "0", "21", "0", "8", "11", "14", "1", "6", "1", "0", "0", "0", "1", "9", "0", "0", "0", "1", "1", "2", "0"], "lat": "49.187997", "winner": "KS\u010cM", "id": "584207", "population": 358, "town": "Zast\u00e1vka", "winner_class": ["kscm"], "lng": "16.363097"}, {"votes": ["0", "0", "1", "4", "32", "8", "48", "1", "1", "20", "0", "2", "0", "44", "59", "0", "1", "0", "20", "0", "9", "5", "14", "0", "2", "1", "0", "2", "0", "2", "16", "0", "1", "0", "0", "0", "7", "2"], "lat": "49.753732", "winner": "ANO", "id": "530310", "population": 302, "town": "Neveklov", "winner_class": ["ano"], "lng": "14.532905"}, {"votes": ["1", "0", "1", "0", "7", "2", "32", "1", "3", "42", "0", "0", "0", "41", "58", "0", "0", "4", "29", "0", "12", "9", "13", "0", "6", "1", "0", "0", "0", "0", "13", "0", "0", "2", "0", "0", "1", "0"], "lat": "50.493161", "winner": "ANO", "id": "564591", "population": 278, "town": "Bohu\u0161ovice nad Oh\u0159\u00ed", "winner_class": ["ano"], "lng": "14.150484"}, {"votes": ["0", "2", "1", "0", "2", "6", "55", "0", "2", "59", "0", "0", "0", "45", "43", "0", "0", "1", "22", "1", "9", "11", "16", "1", "3", "1", "0", "1", "0", "1", "13", "1", "1", "1", "0", "3", "2", "0"], "lat": "49.69472", "winner": "KS\u010cM", "id": "559164", "population": 303, "town": "L\u00edn\u011b", "winner_class": ["kscm"], "lng": "13.25693"}, {"votes": ["0", "0", "1", "3", "42", "5", "75", "5", "0", "40", "0", "0", "1", "26", "60", "0", "0", "0", "38", "0", "8", "17", "21", "0", "3", "5", "0", "2", "1", "1", "14", "0", "0", "1", "0", "0", "2", "0"], "lat": "48.993393", "winner": "TOP 09", "id": "544981", "population": 371, "town": "Rudolfov", "winner_class": ["top-09"], "lng": "14.541789"}, {"votes": ["3", "2", "1", "3", "27", "13", "20", "0", "0", "92", "0", "0", "0", "40", "32", "0", "1", "0", "19", "1", "10", "8", "6", "0", "2", "3", "0", "3", "2", "0", "4", "0", "0", "0", "0", "1", "0", "0"], "lat": "48.997534", "winner": "KS\u010cM", "id": "547166", "population": 293, "town": "Slavonice", "winner_class": ["kscm"], "lng": "15.351538"}, {"votes": ["0", "3", "0", "4", "40", "5", "18", "0", "3", "26", "0", "0", "0", "47", "42", "0", "4", "0", "10", "0", "15", "2", "8", "0", "1", "0", "0", "0", "1", "0", "15", "2", "6", "1", "0", "0", "1", "0"], "lat": "49.253506", "winner": "\u010cSSD", "id": "585858", "population": 254, "town": "Tluma\u010dov", "winner_class": ["cssd"], "lng": "17.495586"}, {"votes": ["0", "1", "0", "2", "10", "5", "80", "0", "1", "65", "0", "0", "1", "49", "55", "3", "1", "0", "15", "0", "9", "8", "12", "0", "2", "5", "3", "2", "1", "0", "15", "2", "1", "1", "0", "1", "2", "1"], "lat": "49.860239", "winner": "TOP 09", "id": "560260", "population": 353, "town": "Zbiroh", "winner_class": ["top-09"], "lng": "13.77262"}, {"votes": ["5", "1", "0", "0", "27", "6", "182", "0", "2", "32", "1", "0", "0", "22", "129", "0", "0", "3", "38", "1", "5", "40", "38", "0", "4", "4", "1", "0", "0", "0", "24", "1", "2", "0", "0", "1", "1", "0"], "lat": "50.13362", "winner": "TOP 09", "id": "539066", "population": 570, "town": "Zelene\u010d", "winner_class": ["top-09"], "lng": "14.660698"}, {"votes": ["2", "1", "0", "0", "5", "8", "33", "0", "1", "41", "0", "1", "0", "31", "65", "0", "0", "0", "34", "0", "16", "5", "17", "0", "3", "4", "0", "2", "0", "0", "19", "0", "1", "0", "0", "1", "6", "0"], "lat": "50.438249", "winner": "ANO", "id": "535702", "population": 296, "town": "Doln\u00ed Bousov", "winner_class": ["ano"], "lng": "15.128125"}, {"votes": ["2", "0", "0", "0", "95", "5", "29", "0", "3", "25", "0", "0", "0", "76", "42", "0", "6", "0", "33", "2", "16", "18", "14", "0", "1", "2", "0", "4", "0", "0", "27", "0", "0", "0", "0", "0", "5", "0"], "lat": "49.11118", "winner": "KDU-\u010cSL", "id": "583561", "population": 405, "town": "O\u0159echov", "winner_class": ["kdu-csl"], "lng": "16.523287"}, {"votes": ["3", "3", "1", "2", "12", "12", "21", "0", "3", "42", "0", "0", "1", "26", "70", "0", "0", "0", "14", "0", "23", "13", "9", "1", "9", "4", "0", "4", "0", "1", "11", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.673182", "winner": "ANO", "id": "568007", "population": 287, "town": "Chaba\u0159ovice", "winner_class": ["ano"], "lng": "13.941842"}, {"votes": ["0", "1", "0", "4", "35", "3", "15", "1", "0", "18", "1", "0", "0", "65", "31", "0", "2", "0", "6", "0", "12", "3", "6", "1", "2", "1", "0", "8", "1", "0", "11", "2", "0", "0", "0", "3", "2", "0"], "lat": "50.257359", "winner": "\u010cSSD", "id": "569356", "population": 234, "town": "\u010cesk\u00e1 Ves", "winner_class": ["cssd"], "lng": "17.228049"}, {"votes": ["2", "0", "2", "2", "17", "6", "109", "1", "3", "54", "0", "0", "0", "55", "52", "0", "0", "0", "21", "3", "9", "10", "19", "0", "0", "3", "0", "3", "0", "0", "17", "0", "0", "0", "0", "2", "2", "0"], "lat": "49.675551", "winner": "TOP 09", "id": "558427", "population": 392, "town": "\u0160\u0165\u00e1hlavy", "winner_class": ["top-09"], "lng": "13.503939"}, {"votes": ["2", "1", "0", "2", "31", "3", "33", "2", "1", "38", "2", "3", "1", "93", "50", "0", "1", "0", "21", "0", "15", "7", "8", "0", "3", "1", "0", "0", "6", "1", "3", "0", "2", "0", "0", "2", "1", "0"], "lat": "49.535098", "winner": "\u010cSSD", "id": "598542", "population": 333, "town": "Ostravice", "winner_class": ["cssd"], "lng": "18.39164"}, {"votes": ["7", "0", "3", "0", "21", "6", "184", "0", "2", "36", "1", "0", "0", "26", "86", "1", "1", "0", "47", "3", "5", "28", "32", "0", "4", "4", "0", "1", "0", "1", "37", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.160502", "winner": "TOP 09", "id": "539813", "population": 536, "town": "Velk\u00e9 P\u0159\u00edlepy", "winner_class": ["top-09"], "lng": "14.314471"}, {"votes": ["1", "1", "0", "0", "19", "7", "18", "1", "0", "44", "0", "1", "1", "52", "47", "0", "3", "0", "28", "1", "14", "6", "10", "0", "4", "1", "0", "0", "1", "0", "12", "0", "0", "1", "0", "1", "0", "0"], "lat": "50.227771", "winner": "\u010cSSD", "id": "540030", "population": 274, "town": "Lipov\u00e1-l\u00e1zn\u011b", "winner_class": ["cssd"], "lng": "17.140445"}, {"votes": ["1", "4", "2", "4", "10", "5", "40", "5", "3", "67", "0", "0", "0", "51", "56", "0", "0", "0", "31", "0", "5", "15", "15", "0", "2", "2", "2", "1", "0", "0", "12", "0", "2", "0", "0", "3", "1", "0"], "lat": "49.806705", "winner": "KS\u010cM", "id": "531324", "population": 339, "town": "Kom\u00e1rov", "winner_class": ["kscm"], "lng": "13.856037"}, {"votes": ["1", "1", "0", "0", "59", "4", "20", "2", "0", "25", "0", "0", "0", "40", "33", "0", "1", "1", "6", "2", "5", "5", "5", "0", "2", "0", "0", "2", "4", "1", "18", "0", "0", "0", "0", "4", "3", "0"], "lat": "49.317402", "winner": "KDU-\u010cSL", "id": "542679", "population": 244, "town": "Halenkov", "winner_class": ["kdu-csl"], "lng": "18.147489"}, {"votes": ["1", "0", "0", "4", "36", "5", "58", "4", "0", "24", "0", "0", "0", "18", "54", "0", "0", "0", "40", "2", "12", "15", "29", "0", "0", "1", "0", "2", "0", "4", "14", "1", "0", "0", "0", "0", "3", "1"], "lat": "50.262646", "winner": "TOP 09", "id": "569917", "population": 328, "town": "\u010cernilov", "winner_class": ["top-09"], "lng": "15.922539"}, {"votes": ["0", "1", "1", "1", "49", "6", "26", "2", "6", "46", "0", "1", "1", "60", "59", "0", "4", "1", "23", "0", "24", "13", "14", "1", "1", "2", "0", "4", "2", "2", "14", "0", "1", "3", "0", "0", "2", "0"], "lat": "49.466137", "winner": "\u010cSSD", "id": "589896", "population": 370, "town": "Plumlov", "winner_class": ["cssd"], "lng": "17.015016"}, {"votes": ["0", "2", "2", "2", "4", "5", "39", "0", "3", "52", "0", "0", "1", "38", "55", "0", "0", "0", "25", "4", "14", "6", "9", "0", "6", "3", "0", "1", "0", "2", "14", "0", "0", "0", "0", "1", "0", "1"], "lat": "50.17437", "winner": "ANO", "id": "566314", "population": 289, "town": "Kryry", "winner_class": ["ano"], "lng": "13.426596"}, {"votes": ["0", "2", "2", "4", "115", "5", "45", "0", "2", "15", "0", "0", "0", "35", "50", "0", "0", "0", "16", "1", "6", "5", "10", "0", "1", "2", "0", "0", "0", "1", "12", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.303646", "winner": "KDU-\u010cSL", "id": "542768", "population": 330, "town": "Hov\u011bz\u00ed", "winner_class": ["kdu-csl"], "lng": "18.060623"}, {"votes": ["0", "0", "0", "1", "29", "1", "21", "1", "0", "32", "0", "0", "0", "28", "64", "0", "5", "0", "30", "0", "11", "14", "17", "0", "1", "1", "0", "2", "0", "0", "28", "0", "0", "0", "1", "1", "2", "0"], "lat": "49.070113", "winner": "ANO", "id": "582956", "population": 290, "town": "Doln\u00ed Kounice", "winner_class": ["ano"], "lng": "16.46492"}, {"votes": ["0", "1", "2", "0", "62", "7", "32", "2", "2", "80", "1", "0", "1", "62", "56", "0", "4", "1", "35", "1", "12", "5", "11", "0", "1", "8", "0", "0", "1", "0", "20", "0", "0", "0", "0", "1", "3", "0"], "lat": "49.185157", "winner": "KS\u010cM", "id": "547263", "population": 411, "town": "Studen\u00e1", "winner_class": ["kscm"], "lng": "15.286879"}, {"votes": ["2", "1", "0", "0", "35", "2", "37", "10", "4", "33", "0", "0", "0", "52", "52", "0", "2", "0", "29", "3", "8", "13", "8", "0", "0", "2", "0", "1", "1", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.520396", "winner": "\u010cSSD", "id": "599999", "population": 307, "town": "Trojanovice", "winner_class": ["cssd"], "lng": "18.238003"}, {"votes": ["1", "2", "0", "2", "46", "3", "15", "0", "0", "72", "0", "1", "0", "83", "31", "0", "0", "0", "24", "0", "11", "3", "8", "0", "2", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "1", "1", "1"], "lat": "49.666769", "winner": "\u010cSSD", "id": "598135", "population": 313, "town": "Fry\u010dovice", "winner_class": ["cssd"], "lng": "18.223206"}, {"votes": ["0", "0", "0", "3", "41", "3", "34", "1", "1", "66", "0", "0", "1", "68", "32", "1", "4", "0", "30", "1", "7", "7", "13", "0", "5", "0", "0", "0", "0", "0", "9", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.276296", "winner": "\u010cSSD", "id": "593001", "population": 328, "town": "Drnovice", "winner_class": ["cssd"], "lng": "16.951463"}, {"votes": ["0", "0", "3", "0", "21", "7", "24", "0", "0", "32", "0", "0", "0", "48", "50", "0", "2", "0", "15", "1", "13", "10", "25", "0", "0", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "1", "1", "0"], "lat": "48.848347", "winner": "ANO", "id": "546941", "population": 261, "town": "Dob\u0161ice", "winner_class": ["ano"], "lng": "16.085411"}, {"votes": ["0", "0", "0", "0", "5", "3", "56", "0", "0", "53", "0", "0", "0", "30", "51", "0", "0", "1", "10", "0", "8", "2", "9", "0", "0", "1", "0", "1", "0", "0", "10", "0", "0", "0", "0", "1", "3", "0"], "lat": "49.632558", "winner": "TOP 09", "id": "557781", "population": 244, "town": "Chlum\u010dany", "winner_class": ["top-09"], "lng": "13.313228"}, {"votes": ["1", "1", "0", "3", "78", "6", "46", "2", "1", "36", "0", "0", "1", "70", "77", "0", "0", "0", "39", "0", "21", "11", "26", "0", "3", "0", "0", "3", "0", "0", "12", "0", "2", "1", "0", "2", "1", "1"], "lat": "50.461707", "winner": "KDU-\u010cSL", "id": "547646", "population": 444, "town": "Velk\u00e9 Po\u0159\u00ed\u010d\u00ed", "winner_class": ["kdu-csl"], "lng": "16.18849"}, {"votes": ["1", "0", "0", "2", "17", "5", "62", "3", "1", "69", "0", "0", "0", "52", "75", "0", "0", "0", "60", "2", "7", "5", "32", "0", "4", "7", "0", "4", "0", "0", "17", "0", "0", "0", "0", "3", "4", "0"], "lat": "50.138028", "winner": "ANO", "id": "532983", "population": 432, "town": "Tuchlovice", "winner_class": ["ano"], "lng": "13.991152"}, {"votes": ["2", "0", "0", "1", "71", "2", "44", "2", "0", "33", "0", "0", "0", "42", "44", "0", "3", "0", "21", "3", "6", "12", "11", "0", "4", "1", "0", "4", "0", "0", "7", "2", "2", "0", "0", "0", "1", "0"], "lat": "48.995013", "winner": "KDU-\u010cSL", "id": "584550", "population": 318, "town": "Klobouky u Brna", "winner_class": ["kdu-csl"], "lng": "16.859513"}, {"votes": ["1", "0", "0", "1", "18", "11", "60", "2", "2", "29", "0", "0", "0", "41", "58", "0", "0", "0", "15", "1", "10", "13", "19", "1", "1", "0", "0", "2", "0", "1", "18", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.467416", "winner": "TOP 09", "id": "573493", "population": 304, "town": "Sobotka", "winner_class": ["top-09"], "lng": "15.176192"}, {"votes": ["2", "1", "1", "3", "21", "6", "42", "0", "2", "33", "0", "0", "0", "60", "43", "0", "0", "3", "51", "1", "19", "6", "24", "0", "0", "0", "0", "1", "0", "0", "19", "1", "2", "0", "0", "4", "6", "0"], "lat": "50.145414", "winner": "\u010cSSD", "id": "575429", "population": 351, "town": "Opatovice nad Labem", "winner_class": ["cssd"], "lng": "15.790448"}, {"votes": ["1", "0", "0", "2", "45", "13", "48", "1", "1", "44", "1", "0", "1", "47", "56", "2", "0", "0", "31", "1", "6", "8", "19", "0", "1", "0", "0", "2", "1", "0", "20", "0", "1", "0", "0", "0", "5", "0"], "lat": "48.933479", "winner": "ANO", "id": "544736", "population": 357, "town": "Ledenice", "winner_class": ["ano"], "lng": "14.618633"}, {"votes": ["3", "1", "0", "6", "15", "3", "34", "2", "2", "49", "0", "1", "0", "33", "46", "0", "0", "0", "35", "2", "5", "7", "8", "0", "5", "5", "0", "2", "0", "1", "8", "0", "2", "0", "1", "1", "0", "0"], "lat": "48.61598", "winner": "KS\u010cM", "id": "545848", "population": 277, "town": "Vy\u0161\u0161\u00ed Brod", "winner_class": ["kscm"], "lng": "14.311825"}, {"votes": ["1", "0", "0", "5", "75", "3", "30", "0", "2", "56", "0", "0", "0", "43", "56", "0", "1", "0", "19", "0", "7", "14", "6", "2", "1", "4", "0", "1", "0", "0", "13", "1", "0", "0", "0", "1", "2", "0"], "lat": "49.314624", "winner": "KDU-\u010cSL", "id": "586862", "population": 343, "town": "Batelov", "winner_class": ["kdu-csl"], "lng": "15.393939"}, {"votes": ["1", "0", "1", "2", "39", "3", "26", "0", "1", "30", "0", "0", "0", "42", "64", "0", "3", "0", "13", "0", "15", "10", "5", "0", "3", "0", "0", "0", "0", "0", "8", "3", "0", "0", "0", "0", "4", "0"], "lat": "49.640088", "winner": "ANO", "id": "502545", "population": 273, "town": "Horka nad Moravou", "winner_class": ["ano"], "lng": "17.210699"}, {"votes": ["1", "2", "0", "1", "28", "1", "23", "1", "3", "42", "1", "0", "0", "34", "24", "0", "16", "0", "6", "0", "8", "5", "7", "0", "0", "4", "0", "1", "1", "0", "14", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.79992", "winner": "KS\u010cM", "id": "584631", "population": 223, "town": "Lednice", "winner_class": ["kscm"], "lng": "16.803393"}, {"votes": ["0", "0", "0", "1", "16", "6", "13", "0", "4", "43", "0", "2", "0", "52", "32", "0", "4", "0", "29", "0", "14", "5", "8", "0", "3", "4", "0", "3", "0", "0", "5", "1", "0", "1", "0", "0", "4", "0"], "lat": "49.966822", "winner": "\u010cSSD", "id": "597350", "population": 250, "town": "Horn\u00ed Bene\u0161ov", "winner_class": ["cssd"], "lng": "17.602624"}, {"votes": ["1", "1", "1", "3", "11", "4", "107", "4", "0", "17", "0", "0", "0", "42", "75", "0", "0", "0", "50", "3", "7", "18", "26", "0", "1", "3", "1", "2", "0", "0", "21", "0", "2", "0", "0", "1", "0", "1"], "lat": "49.922519", "winner": "TOP 09", "id": "538981", "population": 402, "town": "Velk\u00e9 Popovice", "winner_class": ["top-09"], "lng": "14.639344"}, {"votes": ["3", "1", "0", "2", "27", "10", "46", "0", "1", "42", "0", "2", "0", "62", "55", "0", "0", "0", "38", "2", "1", "8", "20", "0", "1", "2", "0", "1", "0", "1", "19", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.40677", "winner": "\u010cSSD", "id": "552496", "population": 346, "town": "Ch\u00fdnov", "winner_class": ["cssd"], "lng": "14.811216"}, {"votes": ["0", "0", "0", "3", "149", "2", "20", "1", "0", "10", "0", "1", "0", "30", "30", "0", "6", "1", "25", "0", "8", "11", "9", "0", "0", "0", "0", "2", "0", "0", "12", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.415073", "winner": "KDU-\u010cSL", "id": "544949", "population": 323, "town": "Vala\u0161sk\u00e1 Byst\u0159ice", "winner_class": ["kdu-csl"], "lng": "18.109775"}, {"votes": ["0", "0", "0", "0", "23", "7", "32", "0", "4", "44", "0", "1", "0", "26", "31", "0", "2", "1", "23", "1", "8", "5", "3", "0", "0", "3", "0", "0", "0", "1", "14", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.239351", "winner": "KS\u010cM", "id": "546801", "population": 231, "town": "Nov\u00e1 V\u010delnice", "winner_class": ["kscm"], "lng": "15.072603"}, {"votes": ["7", "0", "1", "5", "32", "2", "53", "3", "0", "14", "0", "0", "0", "41", "36", "0", "4", "0", "38", "1", "10", "1", "15", "0", "5", "0", "0", "1", "0", "0", "10", "1", "0", "0", "0", "1", "3", "0"], "lat": "49.979519", "winner": "TOP 09", "id": "569445", "population": 284, "town": "Vik\u00fd\u0159ovice", "winner_class": ["top-09"], "lng": "17.011243"}, {"votes": ["1", "0", "0", "0", "3", "4", "37", "2", "0", "60", "0", "0", "0", "52", "21", "0", "0", "0", "26", "0", "3", "9", "8", "0", "3", "0", "0", "0", "1", "0", "28", "2", "0", "1", "2", "0", "1", "0"], "lat": "49.735518", "winner": "KS\u010cM", "id": "560162", "population": 264, "town": "Stra\u0161ice", "winner_class": ["kscm"], "lng": "13.757548"}, {"votes": ["3", "2", "0", "0", "4", "6", "30", "4", "2", "35", "0", "0", "0", "39", "70", "0", "0", "0", "18", "0", "8", "9", "3", "0", "1", "1", "1", "0", "0", "1", "10", "0", "4", "0", "0", "1", "0", "0"], "lat": "50.672762", "winner": "ANO", "id": "568155", "population": 252, "town": "Povrly", "winner_class": ["ano"], "lng": "14.160333"}, {"votes": ["5", "1", "0", "1", "16", "4", "124", "0", "4", "36", "0", "0", "0", "29", "79", "0", "0", "1", "33", "4", "5", "37", "14", "1", "1", "0", "0", "0", "0", "1", "29", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.935855", "winner": "TOP 09", "id": "539848", "population": 428, "town": "Vran\u00e9 nad Vltavou", "winner_class": ["top-09"], "lng": "14.377061"}, {"votes": ["0", "2", "0", "0", "55", "3", "22", "0", "0", "33", "0", "1", "0", "81", "46", "0", "3", "0", "14", "0", "8", "7", "14", "0", "2", "2", "0", "0", "0", "1", "21", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.543373", "winner": "\u010cSSD", "id": "598356", "population": 316, "town": "Kun\u010dice pod Ond\u0159ejn\u00edkem", "winner_class": ["cssd"], "lng": "18.275873"}, {"votes": ["2", "1", "1", "5", "45", "8", "38", "2", "0", "38", "0", "1", "0", "40", "48", "0", "0", "3", "26", "0", "1", "3", "15", "0", "5", "0", "1", "0", "1", "1", "11", "1", "0", "0", "0", "3", "0", "0"], "lat": "49.184779", "winner": "ANO", "id": "546542", "population": 300, "town": "Karda\u0161ova \u0158e\u010dice", "winner_class": ["ano"], "lng": "14.853155"}, {"votes": ["2", "2", "0", "2", "22", "4", "25", "2", "0", "32", "0", "0", "1", "71", "49", "0", "3", "1", "22", "0", "14", "5", "6", "0", "2", "0", "1", "3", "0", "0", "12", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.749652", "winner": "\u010cSSD", "id": "598178", "population": 283, "town": "Horn\u00ed Bludovice", "winner_class": ["cssd"], "lng": "18.436772"}, {"votes": ["0", "0", "0", "0", "22", "5", "116", "1", "2", "25", "2", "0", "0", "28", "77", "0", "0", "0", "40", "0", "9", "12", "54", "0", "3", "0", "0", "0", "0", "1", "24", "0", "3", "0", "0", "0", "2", "1"], "lat": "48.962068", "winner": "TOP 09", "id": "544795", "population": 427, "town": "Litv\u00ednovice", "winner_class": ["top-09"], "lng": "14.45146"}, {"votes": ["0", "0", "0", "0", "16", "4", "28", "0", "4", "37", "0", "0", "0", "23", "37", "0", "0", "0", "2", "3", "6", "8", "5", "0", "4", "3", "0", "2", "0", "0", "3", "0", "1", "0", "0", "3", "1", "0"], "lat": "50.25248", "winner": "KS\u010cM", "id": "554634", "population": 190, "town": "Luby", "winner_class": ["kscm"], "lng": "12.405946"}, {"votes": ["0", "1", "0", "2", "118", "6", "28", "1", "0", "45", "0", "0", "0", "30", "39", "0", "3", "0", "17", "0", "10", "8", "15", "0", "1", "0", "0", "0", "0", "0", "19", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.062544", "winner": "KDU-\u010cSL", "id": "592064", "population": 344, "town": "Bor\u0161ice", "winner_class": ["kdu-csl"], "lng": "17.350844"}, {"votes": ["0", "0", "0", "0", "155", "2", "22", "0", "0", "31", "0", "0", "0", "31", "34", "0", "8", "0", "21", "2", "12", "6", "8", "0", "2", "0", "0", "0", "0", "1", "9", "0", "0", "1", "0", "0", "1", "0"], "lat": "48.945105", "winner": "KDU-\u010cSL", "id": "586706", "population": 346, "town": "Vacenovice", "winner_class": ["kdu-csl"], "lng": "17.174039"}, {"votes": ["0", "0", "0", "3", "5", "13", "28", "0", "1", "35", "0", "0", "0", "38", "58", "0", "0", "1", "16", "1", "7", "9", "14", "0", "4", "2", "0", "2", "0", "0", "17", "1", "0", "0", "0", "1", "1", "2"], "lat": "49.961513", "winner": "ANO", "id": "539279", "population": 259, "town": "Velk\u00e1 Hle\u010fsebe", "winner_class": ["ano"], "lng": "12.66763"}, {"votes": ["3", "1", "3", "0", "15", "11", "30", "1", "0", "35", "0", "0", "0", "54", "80", "0", "3", "3", "28", "1", "19", "5", "7", "0", "1", "4", "1", "3", "0", "1", "18", "0", "0", "0", "0", "1", "0", "1"], "lat": "50.23737", "winner": "ANO", "id": "570451", "population": 329, "town": "Nechanice", "winner_class": ["ano"], "lng": "15.63276"}, {"votes": ["0", "0", "0", "1", "55", "2", "21", "0", "3", "40", "0", "1", "0", "50", "34", "0", "4", "0", "22", "0", "8", "2", "3", "0", "0", "0", "0", "0", "1", "0", "4", "0", "7", "0", "0", "2", "1", "0"], "lat": "49.242226", "winner": "KDU-\u010cSL", "id": "588644", "population": 261, "town": "Kvasice", "winner_class": ["kdu-csl"], "lng": "17.469744"}, {"votes": ["0", "1", "2", "0", "18", "4", "46", "1", "2", "58", "0", "2", "0", "52", "25", "0", "0", "0", "17", "2", "3", "2", "5", "0", "4", "1", "1", "1", "0", "0", "15", "0", "0", "1", "0", "0", "2", "1"], "lat": "49.687823", "winner": "KS\u010cM", "id": "559997", "population": 266, "town": "Miro\u0161ov", "winner_class": ["kscm"], "lng": "13.658067"}, {"votes": ["1", "0", "1", "0", "63", "5", "62", "4", "2", "26", "0", "0", "0", "23", "56", "0", "3", "0", "56", "5", "10", "12", "17", "0", "2", "0", "0", "2", "0", "0", "24", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.897531", "winner": "KDU-\u010cSL", "id": "544663", "population": 374, "town": "Kamenn\u00fd \u00dajezd", "winner_class": ["kdu-csl"], "lng": "14.446382"}, {"votes": ["0", "1", "3", "1", "6", "18", "37", "4", "2", "77", "0", "1", "0", "50", "76", "0", "0", "3", "52", "1", "17", "11", "10", "0", "7", "0", "0", "4", "0", "1", "9", "2", "0", "0", "0", "4", "1", "0"], "lat": "50.344754", "winner": "KS\u010cM", "id": "566551", "population": 398, "town": "Peruc", "winner_class": ["kscm"], "lng": "13.961565"}, {"votes": ["0", "1", "0", "0", "8", "4", "24", "0", "2", "41", "0", "0", "0", "36", "37", "0", "1", "0", "17", "0", "7", "7", "13", "0", "2", "3", "0", "4", "1", "2", "9", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.285237", "winner": "KS\u010cM", "id": "533114", "population": 222, "town": "Zlonice", "winner_class": ["kscm"], "lng": "14.091264"}, {"votes": ["0", "0", "0", "0", "80", "0", "14", "0", "0", "74", "0", "1", "0", "28", "22", "0", "1", "0", "28", "0", "15", "2", "1", "0", "3", "1", "0", "1", "0", "1", "9", "1", "0", "0", "0", "0", "0", "0"], "lat": "48.96403", "winner": "KDU-\u010cSL", "id": "586641", "population": 282, "town": "\u0160ardice", "winner_class": ["kdu-csl"], "lng": "17.028115"}, {"votes": ["0", "0", "0", "1", "54", "2", "22", "0", "2", "16", "0", "0", "0", "25", "22", "0", "1", "0", "11", "0", "14", "4", "4", "1", "0", "1", "0", "1", "0", "0", "13", "0", "0", "0", "0", "3", "0", "0"], "lat": "49.303175", "winner": "KDU-\u010cSL", "id": "542784", "population": 197, "town": "Huslenky", "winner_class": ["kdu-csl"], "lng": "18.090368"}, {"votes": ["0", "1", "0", "0", "56", "8", "52", "2", "1", "58", "0", "0", "0", "106", "80", "1", "2", "0", "50", "0", "17", "12", "13", "0", "1", "1", "0", "1", "1", "1", "8", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.729137", "winner": "\u010cSSD", "id": "598348", "population": 473, "town": "Krmel\u00edn", "winner_class": ["cssd"], "lng": "18.23541"}, {"votes": ["3", "2", "0", "1", "6", "5", "129", "0", "1", "25", "0", "0", "1", "21", "71", "0", "1", "0", "51", "9", "9", "17", "34", "0", "1", "3", "0", "3", "0", "0", "22", "1", "1", "0", "1", "0", "0", "0"], "lat": "50.115778", "winner": "TOP 09", "id": "538272", "population": 418, "town": "Jirny", "winner_class": ["top-09"], "lng": "14.69923"}, {"votes": ["1", "0", "0", "0", "17", "7", "39", "0", "0", "53", "0", "0", "1", "28", "32", "0", "0", "0", "13", "0", "5", "4", "4", "0", "0", "0", "1", "1", "0", "0", "11", "3", "2", "0", "2", "1", "0", "0"], "lat": "48.767361", "winner": "KS\u010cM", "id": "545511", "population": 225, "town": "Horn\u00ed Plan\u00e1", "winner_class": ["kscm"], "lng": "14.032575"}, {"votes": ["2", "0", "0", "0", "5", "4", "77", "0", "0", "48", "0", "1", "0", "39", "40", "0", "0", "0", "12", "2", "12", "5", "11", "0", "1", "0", "1", "0", "0", "0", "6", "0", "0", "1", "0", "1", "1", "0"], "lat": "49.837001", "winner": "TOP 09", "id": "559725", "population": 269, "town": "B\u0159asy", "winner_class": ["top-09"], "lng": "13.57833"}, {"votes": ["1", "8", "0", "1", "12", "12", "54", "4", "4", "47", "0", "2", "0", "47", "60", "6", "2", "3", "15", "6", "13", "4", "6", "21", "2", "12", "1", "15", "4", "1", "14", "0", "0", "0", "0", "3", "5", "0"], "lat": "50.455015", "winner": "ANO", "id": "573701", "population": 385, "town": "Valdice", "winner_class": ["ano"], "lng": "15.384882"}, {"votes": ["1", "0", "0", "2", "13", "17", "32", "1", "0", "28", "0", "0", "0", "28", "30", "0", "0", "0", "26", "0", "11", "7", "11", "0", "2", "3", "0", "2", "1", "0", "19", "2", "2", "1", "0", "2", "3", "0"], "lat": "50.604671", "winner": "TOP 09", "id": "579548", "population": 244, "town": "Mlad\u00e9 Buky", "winner_class": ["top-09"], "lng": "15.835129"}, {"votes": ["0", "0", "0", "3", "123", "4", "18", "0", "1", "49", "1", "0", "0", "34", "43", "0", "4", "0", "33", "1", "18", "5", "7", "0", "2", "2", "0", "0", "0", "0", "23", "2", "0", "1", "0", "1", "1", "0"], "lat": "48.954932", "winner": "KDU-\u010cSL", "id": "586170", "population": 376, "town": "Hovorany", "winner_class": ["kdu-csl"], "lng": "16.993456"}, {"votes": ["1", "0", "0", "0", "2", "13", "43", "0", "5", "32", "0", "0", "0", "33", "84", "0", "0", "1", "16", "1", "15", "4", "11", "0", "6", "3", "0", "3", "0", "2", "9", "0", "0", "0", "0", "1", "5", "0"], "lat": "50.662704", "winner": "ANO", "id": "568350", "population": 290, "town": "Velk\u00e9 B\u0159ezno", "winner_class": ["ano"], "lng": "14.14174"}, {"votes": ["0", "0", "1", "0", "120", "1", "11", "0", "0", "6", "0", "0", "0", "36", "25", "0", "3", "1", "13", "1", "3", "12", "6", "0", "0", "0", "0", "3", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.069499", "winner": "KDU-\u010cSL", "id": "585831", "population": 249, "town": "\u0160t\u00edtn\u00e1 nad Vl\u00e1\u0159\u00ed-Popov", "winner_class": ["kdu-csl"], "lng": "17.975252"}, {"votes": ["3", "1", "0", "3", "12", "6", "75", "2", "2", "13", "0", "0", "0", "35", "89", "0", "0", "2", "26", "1", "7", "26", "20", "1", "2", "1", "0", "0", "0", "1", "19", "0", "0", "0", "0", "0", "2", "1"], "lat": "50.790993", "winner": "ANO", "id": "544477", "population": 350, "town": "Str\u00e1\u017e nad Nisou", "winner_class": ["ano"], "lng": "15.026826"}, {"votes": ["0", "2", "0", "1", "85", "5", "36", "0", "0", "29", "0", "0", "1", "41", "56", "0", "6", "0", "21", "0", "5", "6", "21", "0", "2", "2", "0", "3", "0", "1", "10", "1", "0", "0", "0", "0", "0", "1"], "lat": "48.8284", "winner": "KDU-\u010cSL", "id": "586498", "population": 335, "town": "Pru\u0161\u00e1nky", "winner_class": ["kdu-csl"], "lng": "16.980681"}, {"votes": ["0", "0", "0", "1", "11", "2", "48", "0", "1", "25", "0", "0", "0", "39", "35", "0", "0", "0", "13", "0", "8", "5", "2", "0", "3", "2", "0", "1", "1", "0", "17", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.345148", "winner": "TOP 09", "id": "556394", "population": 216, "town": "Janovice nad \u00dahlavou", "winner_class": ["top-09"], "lng": "13.218132"}, {"votes": ["0", "1", "0", "1", "15", "2", "43", "0", "7", "28", "1", "0", "0", "55", "51", "0", "0", "0", "21", "1", "9", "10", "29", "0", "1", "0", "0", "3", "0", "2", "19", "0", "0", "1", "0", "0", "0", "0"], "lat": "50.098669", "winner": "\u010cSSD", "id": "533840", "population": 300, "town": "Velk\u00fd Osek", "winner_class": ["cssd"], "lng": "15.186286"}, {"votes": ["0", "0", "0", "1", "67", "2", "57", "0", "1", "31", "0", "0", "0", "50", "31", "0", "1", "0", "22", "0", "7", "7", "21", "0", "2", "1", "0", "0", "0", "0", "21", "0", "0", "0", "0", "1", "6", "0"], "lat": "49.113921", "winner": "KDU-\u010cSL", "id": "583898", "population": 329, "town": "Sokolnice", "winner_class": ["kdu-csl"], "lng": "16.721559"}, {"votes": ["0", "0", "1", "2", "143", "4", "58", "2", "0", "42", "0", "0", "0", "53", "51", "0", "4", "0", "20", "0", "4", "12", "33", "3", "2", "0", "0", "1", "0", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.208488", "winner": "KDU-\u010cSL", "id": "583677", "population": 450, "town": "Pozo\u0159ice", "winner_class": ["kdu-csl"], "lng": "16.78846"}, {"votes": ["0", "5", "0", "0", "39", "5", "18", "1", "5", "17", "0", "2", "1", "61", "39", "0", "1", "0", "24", "2", "8", "11", "7", "0", "0", "0", "0", "3", "1", "0", "8", "0", "0", "0", "1", "0", "0", "1"], "lat": "49.97857", "winner": "\u010cSSD", "id": "509647", "population": 260, "town": "P\u00ed\u0161\u0165", "winner_class": ["cssd"], "lng": "18.193495"}, {"votes": ["0", "0", "0", "2", "54", "12", "38", "2", "0", "37", "0", "0", "0", "50", "46", "0", "0", "0", "13", "0", "12", "6", "11", "0", "6", "4", "1", "2", "0", "0", "22", "0", "1", "1", "0", "1", "3", "0"], "lat": "49.631923", "winner": "KDU-\u010cSL", "id": "540757", "population": 324, "town": "Mil\u00edn", "winner_class": ["kdu-csl"], "lng": "14.045997"}, {"votes": ["1", "0", "0", "2", "15", "3", "25", "0", "0", "14", "0", "1", "0", "33", "26", "0", "1", "0", "26", "0", "7", "6", "12", "0", "0", "1", "0", "0", "0", "1", "16", "0", "0", "0", "0", "2", "0", "0"], "lat": "48.858113", "winner": "\u010cSSD", "id": "584860", "population": 192, "town": "Rakvice", "winner_class": ["cssd"], "lng": "16.813303"}, {"votes": ["1", "1", "1", "0", "10", "8", "33", "0", "1", "29", "2", "0", "0", "25", "31", "0", "1", "0", "11", "0", "10", "3", "8", "0", "1", "2", "0", "3", "0", "1", "19", "0", "0", "2", "0", "1", "5", "0"], "lat": "50.965074", "winner": "TOP 09", "id": "562751", "population": 209, "town": "Mikul\u00e1\u0161ovice", "winner_class": ["top-09"], "lng": "14.363679"}, {"votes": ["0", "1", "0", "2", "39", "9", "28", "1", "0", "23", "0", "0", "0", "21", "51", "0", "4", "0", "20", "0", "4", "11", "14", "0", "1", "2", "0", "0", "0", "1", "19", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.965998", "winner": "ANO", "id": "585033", "population": 251, "town": "Vranovice", "winner_class": ["ano"], "lng": "16.606603"}, {"votes": ["0", "1", "0", "3", "66", "10", "28", "0", "0", "22", "0", "0", "1", "40", "31", "0", "4", "0", "43", "0", "12", "5", "18", "0", "1", "4", "0", "0", "0", "0", "11", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.054967", "winner": "KDU-\u010cSL", "id": "582859", "population": 301, "town": "Blu\u010dina", "winner_class": ["kdu-csl"], "lng": "16.644496"}, {"votes": ["2", "1", "1", "2", "23", "2", "140", "5", "0", "22", "1", "0", "0", "32", "145", "0", "0", "0", "39", "2", "3", "26", "33", "0", "1", "1", "0", "0", "0", "0", "18", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.999619", "winner": "ANO", "id": "539571", "population": 499, "town": "Pr\u016fhonice", "winner_class": ["ano"], "lng": "14.550168"}, {"votes": ["1", "0", "0", "0", "5", "4", "22", "0", "4", "37", "0", "0", "0", "39", "56", "0", "0", "0", "9", "1", "13", "10", "9", "0", "6", "4", "0", "4", "0", "0", "15", "0", "0", "0", "0", "1", "2", "0"], "lat": "50.656334", "winner": "ANO", "id": "567752", "population": 242, "town": "Novosedlice", "winner_class": ["ano"], "lng": "13.823041"}, {"votes": ["1", "0", "0", "3", "157", "4", "25", "0", "0", "26", "0", "0", "0", "28", "38", "0", "7", "1", "8", "0", "12", "1", "20", "0", "1", "0", "0", "0", "1", "0", "11", "0", "1", "0", "1", "6", "0", "0"], "lat": "48.946725", "winner": "KDU-\u010cSL", "id": "586048", "population": 352, "town": "Blatnice pod Svat\u00fdm Anton\u00ednkem", "winner_class": ["kdu-csl"], "lng": "17.46596"}, {"votes": ["0", "2", "0", "0", "2", "7", "25", "4", "1", "54", "0", "1", "0", "48", "62", "0", "1", "1", "17", "1", "14", "7", "16", "7", "5", "7", "0", "8", "4", "0", "19", "0", "1", "1", "1", "0", "1", "2"], "lat": "50.175848", "winner": "ANO", "id": "533050", "population": 319, "town": "Vina\u0159ice", "winner_class": ["ano"], "lng": "14.091062"}, {"votes": ["2", "0", "1", "0", "14", "4", "14", "0", "2", "68", "0", "0", "0", "36", "35", "0", "0", "1", "15", "3", "10", "8", "15", "0", "2", "1", "0", "1", "0", "1", "13", "0", "1", "0", "0", "1", "2", "1"], "lat": "49.783934", "winner": "KS\u010cM", "id": "540404", "population": 251, "town": "Jince", "winner_class": ["kscm"], "lng": "13.979941"}, {"votes": ["4", "0", "0", "2", "1", "7", "16", "0", "0", "35", "0", "1", "0", "35", "17", "0", "0", "0", "15", "2", "8", "9", "5", "0", "6", "1", "0", "1", "0", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.304588", "winner": "KS\u010cM", "id": "554553", "population": 180, "town": "Hranice", "winner_class": ["kscm"], "lng": "12.175772"}, {"votes": ["0", "1", "0", "1", "28", "10", "31", "2", "0", "18", "0", "0", "0", "25", "73", "0", "0", "0", "19", "0", "6", "4", "8", "0", "1", "3", "1", "0", "0", "1", "14", "0", "1", "0", "1", "0", "1", "0"], "lat": "50.203658", "winner": "ANO", "id": "576808", "population": 249, "town": "Solnice", "winner_class": ["ano"], "lng": "16.237618"}, {"votes": ["1", "1", "0", "2", "91", "5", "46", "0", "1", "39", "0", "0", "0", "30", "39", "1", "0", "0", "14", "0", "11", "6", "9", "0", "2", "0", "0", "3", "0", "0", "6", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.805896", "winner": "KDU-\u010cSL", "id": "572080", "population": 309, "town": "Prose\u010d", "winner_class": ["kdu-csl"], "lng": "16.116205"}, {"votes": ["1", "0", "1", "1", "46", "7", "11", "0", "1", "12", "0", "0", "1", "22", "48", "1", "2", "1", "14", "1", "5", "2", "15", "0", "0", "1", "0", "4", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.354676", "winner": "ANO", "id": "542750", "population": 200, "town": "Ho\u0161\u0165\u00e1lkov\u00e1", "winner_class": ["ano"], "lng": "17.869439"}, {"votes": ["2", "0", "0", "1", "30", "3", "20", "1", "0", "52", "0", "0", "0", "39", "41", "0", "0", "0", "17", "0", "17", "6", "12", "0", "1", "1", "0", "1", "0", "0", "5", "0", "1", "0", "0", "1", "0", "0"], "lat": "48.962945", "winner": "KS\u010cM", "id": "546461", "population": 251, "town": "Chlum u T\u0159ebon\u011b", "winner_class": ["kscm"], "lng": "14.929849"}, {"votes": ["0", "0", "0", "0", "80", "0", "21", "0", "1", "31", "0", "1", "0", "50", "33", "0", "7", "0", "13", "4", "3", "5", "4", "0", "0", "1", "0", "3", "0", "0", "17", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.990165", "winner": "KDU-\u010cSL", "id": "586404", "population": 274, "town": "Moravsk\u00fd P\u00edsek", "winner_class": ["kdu-csl"], "lng": "17.332687"}, {"votes": ["0", "1", "0", "3", "12", "3", "28", "0", "0", "19", "0", "0", "2", "41", "44", "0", "0", "0", "14", "1", "5", "3", "5", "0", "1", "1", "0", "2", "0", "2", "11", "0", "0", "3", "0", "0", "2", "0"], "lat": "50.330852", "winner": "ANO", "id": "573060", "population": 203, "town": "Kopidlno", "winner_class": ["ano"], "lng": "15.270293"}, {"votes": ["2", "0", "0", "0", "2", "4", "37", "0", "1", "30", "0", "0", "1", "30", "39", "0", "0", "0", "18", "1", "2", "3", "12", "0", "3", "3", "1", "0", "0", "0", "13", "2", "0", "0", "0", "2", "11", "1"], "lat": "49.6784", "winner": "ANO", "id": "559661", "population": 218, "town": "Zb\u016fch", "winner_class": ["ano"], "lng": "13.225645"}, {"votes": ["0", "0", "0", "3", "64", "2", "7", "2", "1", "33", "0", "0", "0", "41", "20", "0", "4", "0", "8", "0", "12", "3", "3", "0", "1", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.22771", "winner": "KDU-\u010cSL", "id": "589195", "population": 216, "town": "Zdounky", "winner_class": ["kdu-csl"], "lng": "17.318988"}, {"votes": ["2", "1", "0", "0", "23", "4", "24", "0", "1", "28", "0", "1", "0", "36", "34", "0", "0", "0", "12", "1", "14", "8", "9", "1", "1", "0", "0", "2", "0", "1", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.66866", "winner": "\u010cSSD", "id": "500526", "population": 207, "town": "B\u011blkovice-La\u0161\u0165any", "winner_class": ["cssd"], "lng": "17.317182"}, {"votes": ["1", "0", "0", "0", "76", "5", "23", "0", "0", "11", "0", "0", "1", "29", "16", "0", "0", "0", "11", "0", "15", "2", "5", "0", "0", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.988014", "winner": "KDU-\u010cSL", "id": "592021", "population": 204, "town": "B\u00e1nov", "winner_class": ["kdu-csl"], "lng": "17.71752"}, {"votes": ["1", "0", "0", "2", "37", "4", "22", "0", "2", "44", "0", "0", "0", "63", "35", "0", "1", "0", "28", "0", "9", "8", "9", "0", "1", "0", "0", "4", "1", "0", "9", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.242721", "winner": "\u010cSSD", "id": "591301", "population": 282, "town": "Ok\u0159\u00ed\u0161ky", "winner_class": ["cssd"], "lng": "15.766204"}, {"votes": ["3", "0", "0", "1", "54", "5", "83", "0", "1", "17", "0", "0", "1", "44", "67", "0", "6", "0", "25", "0", "13", "19", "28", "0", "4", "0", "2", "1", "0", "0", "16", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.145561", "winner": "TOP 09", "id": "583413", "population": 392, "town": "Moravany", "winner_class": ["top-09"], "lng": "16.576164"}, {"votes": ["3", "1", "0", "0", "6", "6", "28", "1", "1", "28", "0", "0", "0", "17", "34", "0", "0", "1", "13", "2", "5", "8", "15", "0", "1", "6", "0", "3", "0", "0", "18", "1", "0", "0", "0", "1", "1", "0"], "lat": "50.282495", "winner": "ANO", "id": "535320", "population": 200, "town": "V\u0161etaty", "winner_class": ["ano"], "lng": "14.591284"}, {"votes": ["0", "3", "0", "1", "4", "3", "12", "0", "1", "24", "0", "0", "0", "23", "32", "0", "0", "0", "12", "0", "8", "65", "5", "0", "2", "1", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.573094", "winner": "Zelen\u00ed", "id": "567175", "population": 198, "town": "Horn\u00ed Ji\u0159et\u00edn", "winner_class": ["zeleni"], "lng": "13.54717"}, {"votes": ["0", "1", "0", "0", "38", "3", "17", "0", "0", "65", "0", "1", "0", "27", "37", "0", "6", "0", "23", "0", "16", "3", "14", "0", "2", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.760484", "winner": "KS\u010cM", "id": "584941", "population": 257, "town": "Tvrdonice", "winner_class": ["kscm"], "lng": "16.994461"}, {"votes": ["0", "1", "0", "0", "67", "5", "68", "3", "0", "18", "0", "0", "0", "37", "71", "0", "3", "0", "39", "0", "21", "10", "24", "0", "2", "3", "0", "1", "0", "1", "14", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.169509", "winner": "ANO", "id": "584029", "population": 388, "town": "Troubsko", "winner_class": ["ano"], "lng": "16.510782"}, {"votes": ["1", "1", "1", "0", "119", "4", "33", "0", "0", "23", "0", "0", "0", "35", "46", "0", "14", "0", "16", "0", "8", "9", "15", "1", "0", "3", "0", "0", "0", "0", "13", "0", "1", "0", "0", "0", "3", "0"], "lat": "48.93286", "winner": "KDU-\u010cSL", "id": "584568", "population": 346, "town": "Kobyl\u00ed", "winner_class": ["kdu-csl"], "lng": "16.891586"}, {"votes": ["0", "2", "1", "0", "33", "5", "32", "1", "1", "23", "0", "0", "0", "22", "31", "1", "0", "1", "28", "2", "24", "1", "6", "0", "0", "0", "1", "1", "0", "0", "8", "0", "0", "0", "1", "0", "3", "0"], "lat": "50.164735", "winner": "KDU-\u010cSL", "id": "576701", "population": 228, "town": "Rokytnice v Orlick\u00fdch hor\u00e1ch", "winner_class": ["kdu-csl"], "lng": "16.465675"}, {"votes": ["0", "0", "0", "1", "65", "7", "16", "1", "4", "18", "0", "2", "0", "38", "26", "0", "6", "1", "4", "0", "8", "4", "3", "0", "2", "0", "0", "1", "0", "2", "13", "0", "1", "1", "0", "0", "1", "0"], "lat": "49.43215", "winner": "KDU-\u010cSL", "id": "519651", "population": 225, "town": "Troubky", "winner_class": ["kdu-csl"], "lng": "17.349143"}, {"votes": ["0", "1", "1", "3", "12", "5", "32", "0", "1", "40", "0", "0", "0", "47", "74", "0", "0", "0", "21", "0", "6", "5", "12", "0", "4", "3", "0", "3", "0", "0", "17", "0", "1", "0", "2", "1", "0", "1"], "lat": "50.042018", "winner": "ANO", "id": "533807", "population": 292, "town": "T\u00fdnec nad Labem", "winner_class": ["ano"], "lng": "15.358356"}, {"votes": ["0", "2", "0", "0", "42", "2", "20", "0", "0", "33", "0", "0", "0", "83", "53", "0", "0", "0", "14", "0", "11", "1", "14", "0", "2", "3", "1", "0", "0", "0", "7", "0", "2", "0", "0", "0", "0", "0"], "lat": "49.685943", "winner": "\u010cSSD", "id": "552569", "population": 290, "town": "Sta\u0159\u00ed\u010d", "winner_class": ["cssd"], "lng": "18.272807"}, {"votes": ["2", "0", "1", "1", "33", "6", "46", "0", "1", "34", "0", "0", "0", "38", "62", "0", "0", "0", "26", "2", "26", "5", "15", "1", "2", "1", "0", "2", "0", "0", "15", "2", "4", "0", "0", "1", "0", "0"], "lat": "50.059656", "winner": "ANO", "id": "533831", "population": 326, "town": "Velim", "winner_class": ["ano"], "lng": "15.107111"}, {"votes": ["2", "0", "0", "0", "9", "5", "57", "3", "0", "19", "0", "1", "0", "32", "82", "0", "0", "0", "30", "0", "6", "2", "18", "0", "0", "2", "0", "1", "0", "2", "22", "0", "0", "2", "0", "3", "1", "0"], "lat": "50.274174", "winner": "ANO", "id": "571784", "population": 299, "town": "Libi\u0161", "winner_class": ["ano"], "lng": "14.502402"}, {"votes": ["6", "1", "1", "0", "5", "4", "95", "2", "0", "24", "0", "0", "0", "27", "67", "0", "0", "0", "71", "5", "7", "14", "32", "0", "0", "0", "0", "1", "0", "0", "28", "2", "2", "1", "0", "7", "1", "0"], "lat": "50.191977", "winner": "TOP 09", "id": "538442", "population": 403, "town": "L\u00edbeznice", "winner_class": ["top-09"], "lng": "14.493574"}, {"votes": ["3", "2", "1", "2", "15", "5", "22", "0", "0", "29", "0", "0", "0", "26", "67", "0", "0", "2", "15", "2", "6", "1", "5", "0", "1", "0", "0", "0", "0", "0", "3", "3", "1", "0", "0", "0", "0", "0"], "lat": "50.097773", "winner": "ANO", "id": "576131", "population": 211, "town": "Borohr\u00e1dek", "winner_class": ["ano"], "lng": "16.09326"}, {"votes": ["1", "0", "0", "1", "26", "10", "24", "2", "3", "32", "0", "0", "0", "28", "45", "0", "0", "0", "17", "0", "15", "6", "19", "0", "3", "3", "0", "0", "0", "0", "21", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.625964", "winner": "ANO", "id": "579734", "population": 258, "town": "Svoboda nad \u00dapou", "winner_class": ["ano"], "lng": "15.816482"}, {"votes": ["6", "1", "1", "4", "7", "4", "27", "1", "11", "41", "0", "2", "2", "41", "41", "0", "0", "0", "22", "2", "7", "3", "6", "0", "2", "3", "0", "2", "0", "0", "5", "0", "0", "0", "0", "4", "2", "1"], "lat": "50.628671", "winner": "KS\u010cM", "id": "567477", "population": 248, "town": "Byst\u0159any", "winner_class": ["kscm"], "lng": "13.864186"}, {"votes": ["0", "1", "0", "5", "9", "18", "23", "0", "0", "41", "0", "0", "0", "29", "42", "0", "0", "0", "21", "2", "15", "11", "5", "0", "0", "0", "0", "2", "0", "0", "7", "2", "0", "2", "0", "0", "1", "0"], "lat": "50.578451", "winner": "ANO", "id": "579645", "population": 236, "town": "Rudn\u00edk", "winner_class": ["ano"], "lng": "15.737304"}, {"votes": ["1", "0", "1", "1", "60", "4", "19", "1", "1", "52", "0", "0", "0", "24", "46", "0", "0", "0", "19", "1", "3", "6", "13", "0", "2", "1", "0", "0", "0", "0", "5", "0", "0", "1", "0", "0", "2", "0"], "lat": "49.961224", "winner": "KDU-\u010cSL", "id": "541168", "population": 263, "town": "\u0160t\u00edty", "winner_class": ["kdu-csl"], "lng": "16.765758"}, {"votes": ["2", "0", "0", "4", "31", "6", "24", "5", "0", "20", "0", "0", "0", "45", "42", "0", "1", "0", "25", "1", "11", "6", "15", "0", "2", "1", "0", "1", "0", "0", "14", "0", "0", "0", "0", "0", "4", "1"], "lat": "49.383553", "winner": "\u010cSSD", "id": "542865", "population": 261, "town": "Jabl\u016fnka", "winner_class": ["cssd"], "lng": "17.950207"}, {"votes": ["1", "0", "0", "2", "38", "6", "17", "1", "3", "47", "0", "1", "0", "49", "44", "0", "5", "0", "10", "1", "12", "7", "12", "0", "2", "1", "0", "1", "2", "1", "21", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.484149", "winner": "\u010cSSD", "id": "512800", "population": 285, "town": "Brodek u P\u0159erova", "winner_class": ["cssd"], "lng": "17.338573"}, {"votes": ["5", "1", "0", "0", "35", "4", "12", "0", "1", "41", "0", "0", "0", "69", "51", "0", "1", "0", "18", "0", "5", "5", "20", "0", "1", "2", "0", "0", "1", "0", "10", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.615715", "winner": "\u010cSSD", "id": "554171", "population": 283, "town": "\u0160enov u Nov\u00e9ho Ji\u010d\u00edna", "winner_class": ["cssd"], "lng": "17.993015"}, {"votes": ["13", "1", "0", "1", "20", "4", "31", "0", "2", "59", "0", "0", "0", "27", "66", "0", "0", "1", "23", "1", "12", "15", "7", "1", "7", "3", "0", "2", "0", "0", "7", "3", "0", "0", "1", "0", "0", "0"], "lat": "50.404273", "winner": "ANO", "id": "564656", "population": 307, "town": "Budyn\u011b nad Oh\u0159\u00ed", "winner_class": ["ano"], "lng": "14.125907"}, {"votes": ["0", "1", "0", "0", "48", "2", "31", "0", "0", "32", "0", "2", "0", "30", "43", "0", "2", "0", "25", "0", "6", "10", "9", "0", "4", "0", "0", "0", "0", "0", "19", "0", "1", "0", "0", "3", "0", "1"], "lat": "49.604431", "winner": "KDU-\u010cSL", "id": "504505", "population": 269, "town": "N\u00e1m\u011b\u0161\u0165 na Han\u00e9", "winner_class": ["kdu-csl"], "lng": "17.063531"}, {"votes": ["0", "0", "1", "2", "0", "1", "4", "0", "2", "26", "0", "0", "0", "18", "19", "0", "0", "0", "9", "0", "7", "0", "3", "0", "5", "0", "0", "2", "0", "2", "1", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.504977", "winner": "KS\u010cM", "id": "567337", "population": 104, "town": "Obrnice", "winner_class": ["kscm"], "lng": "13.695397"}, {"votes": ["2", "0", "0", "1", "39", "5", "11", "1", "0", "20", "0", "0", "0", "67", "35", "0", "3", "1", "18", "1", "10", "0", "2", "2", "0", "2", "0", "2", "0", "1", "4", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.656087", "winner": "\u010cSSD", "id": "507091", "population": 229, "town": "N\u00fddek", "winner_class": ["cssd"], "lng": "18.756874"}, {"votes": ["1", "0", "1", "1", "74", "4", "31", "0", "0", "38", "0", "0", "0", "77", "45", "0", "0", "1", "45", "0", "10", "9", "6", "1", "3", "1", "0", "0", "1", "0", "10", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.623809", "winner": "\u010cSSD", "id": "598691", "population": 360, "town": "Hukvaldy", "winner_class": ["cssd"], "lng": "18.221888"}, {"votes": ["4", "0", "0", "1", "31", "6", "76", "0", "1", "20", "0", "0", "0", "26", "59", "0", "0", "1", "35", "2", "13", "10", "26", "2", "0", "2", "0", "0", "0", "2", "14", "2", "0", "1", "0", "3", "2", "0"], "lat": "48.948057", "winner": "TOP 09", "id": "545066", "population": 339, "town": "Srubec", "winner_class": ["top-09"], "lng": "14.541308"}, {"votes": ["2", "0", "1", "1", "21", "2", "108", "2", "1", "25", "1", "0", "0", "27", "89", "0", "0", "1", "30", "1", "3", "17", "22", "0", "3", "1", "1", "4", "0", "2", "21", "0", "0", "0", "0", "0", "3", "1"], "lat": "49.991152", "winner": "TOP 09", "id": "538523", "population": 390, "town": "Muka\u0159ov", "winner_class": ["top-09"], "lng": "14.741548"}, {"votes": ["1", "0", "0", "8", "56", "4", "45", "0", "1", "36", "0", "0", "0", "38", "45", "0", "0", "0", "11", "3", "3", "11", "9", "0", "1", "1", "0", "0", "0", "0", "6", "0", "3", "0", "0", "0", "1", "0"], "lat": "49.48553", "winner": "KDU-\u010cSL", "id": "552534", "population": 283, "town": "Jistebnice", "winner_class": ["kdu-csl"], "lng": "14.5276"}, {"votes": ["0", "0", "1", "0", "41", "6", "30", "0", "1", "31", "0", "0", "0", "35", "44", "0", "0", "0", "27", "2", "31", "4", "6", "0", "2", "1", "0", "1", "0", "0", "8", "2", "0", "0", "0", "2", "8", "0"], "lat": "50.510326", "winner": "ANO", "id": "573507", "population": 283, "town": "Star\u00e1 Paka", "winner_class": ["ano"], "lng": "15.494443"}, {"votes": ["0", "1", "0", "2", "58", "2", "16", "2", "1", "23", "0", "0", "0", "63", "37", "0", "0", "0", "15", "0", "5", "6", "4", "0", "1", "0", "0", "1", "0", "0", "13", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.537456", "winner": "\u010cSSD", "id": "500259", "population": 251, "town": "Ve\u0159ovice", "winner_class": ["cssd"], "lng": "18.119028"}, {"votes": ["1", "1", "0", "0", "96", "6", "14", "0", "1", "20", "0", "0", "0", "41", "37", "0", "5", "0", "23", "1", "9", "7", "9", "0", "1", "1", "0", "0", "0", "0", "5", "1", "0", "0", "0", "0", "3", "0"], "lat": "49.430968", "winner": "KDU-\u010cSL", "id": "542814", "population": 282, "town": "Hutisko-Solanec", "winner_class": ["kdu-csl"], "lng": "18.213927"}, {"votes": ["0", "0", "0", "0", "74", "3", "36", "0", "3", "12", "0", "0", "0", "43", "66", "0", "2", "0", "17", "0", "14", "5", "23", "0", "1", "1", "0", "1", "0", "1", "14", "1", "0", "1", "0", "0", "3", "0"], "lat": "49.204906", "winner": "KDU-\u010cSL", "id": "500011", "population": 321, "town": "\u017delechovice nad D\u0159evnic\u00ed", "winner_class": ["kdu-csl"], "lng": "17.743816"}, {"votes": ["0", "1", "1", "3", "90", "3", "51", "1", "1", "16", "0", "0", "0", "29", "46", "0", "5", "0", "16", "1", "7", "6", "14", "0", "0", "0", "0", "0", "0", "1", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.033754", "winner": "KDU-\u010cSL", "id": "592510", "population": 299, "town": "Pole\u0161ovice", "winner_class": ["kdu-csl"], "lng": "17.341323"}, {"votes": ["0", "0", "0", "1", "15", "7", "27", "3", "2", "36", "0", "0", "0", "26", "31", "0", "0", "0", "16", "3", "1", "1", "3", "0", "7", "0", "1", "3", "0", "0", "5", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.150898", "winner": "KS\u010cM", "id": "555029", "population": 189, "town": "Bochov", "winner_class": ["kscm"], "lng": "13.045168"}, {"votes": ["1", "1", "0", "0", "26", "8", "42", "3", "0", "53", "0", "0", "1", "32", "60", "0", "1", "0", "13", "1", "5", "10", "17", "0", "3", "2", "0", "1", "1", "0", "20", "0", "0", "0", "0", "2", "3", "0"], "lat": "49.875739", "winner": "ANO", "id": "532029", "population": 306, "town": "\u017debr\u00e1k", "winner_class": ["ano"], "lng": "13.897349"}, {"votes": ["2", "0", "0", "0", "35", "7", "34", "2", "0", "37", "0", "0", "0", "28", "45", "2", "11", "0", "11", "0", "11", "5", "10", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.816428", "winner": "ANO", "id": "586374", "population": 250, "town": "Mikul\u010dice", "winner_class": ["ano"], "lng": "17.051065"}, {"votes": ["0", "0", "0", "3", "14", "4", "34", "1", "1", "22", "0", "0", "0", "29", "46", "0", "0", "0", "22", "0", "4", "4", "4", "0", "0", "4", "0", "1", "0", "0", "13", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.269803", "winner": "ANO", "id": "535222", "population": 207, "town": "Ti\u0161ice", "winner_class": ["ano"], "lng": "14.554114"}, {"votes": ["0", "0", "0", "2", "70", "4", "43", "2", "1", "25", "0", "2", "0", "39", "69", "0", "1", "0", "7", "0", "9", "3", "14", "0", "2", "2", "1", "1", "0", "0", "24", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.520555", "winner": "KDU-\u010cSL", "id": "544302", "population": 321, "town": "Le\u0161n\u00e1", "winner_class": ["kdu-csl"], "lng": "17.930042"}, {"votes": ["0", "0", "0", "0", "42", "0", "30", "0", "2", "36", "0", "2", "0", "65", "33", "1", "6", "0", "15", "0", "5", "8", "16", "2", "0", "5", "0", "1", "1", "2", "18", "0", "0", "0", "0", "3", "0", "0"], "lat": "49.41298", "winner": "\u010cSSD", "id": "581496", "population": 293, "town": "\u010cern\u00e1 Hora", "winner_class": ["cssd"], "lng": "16.580586"}, {"votes": ["0", "0", "0", "0", "34", "4", "9", "4", "2", "43", "0", "0", "0", "39", "25", "0", "4", "0", "20", "0", "5", "5", "3", "0", "3", "2", "0", "1", "0", "0", "6", "0", "0", "0", "1", "1", "0", "0"], "lat": "49.341815", "winner": "KS\u010cM", "id": "589756", "population": 211, "town": "N\u011bm\u010dice nad Hanou", "winner_class": ["kscm"], "lng": "17.205964"}, {"votes": ["0", "0", "1", "0", "3", "6", "27", "0", "3", "60", "0", "0", "0", "30", "46", "0", "0", "0", "19", "1", "7", "6", "13", "0", "5", "9", "0", "2", "1", "4", "5", "0", "1", "0", "0", "0", "1", "2"], "lat": "50.659194", "winner": "KS\u010cM", "id": "567558", "population": 252, "town": "Hrob", "winner_class": ["kscm"], "lng": "13.726759"}, {"votes": ["0", "0", "0", "0", "100", "1", "20", "7", "0", "18", "0", "0", "0", "19", "24", "0", "3", "0", "11", "0", "7", "3", "8", "0", "0", "1", "1", "2", "0", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "48.955281", "winner": "KDU-\u010cSL", "id": "586382", "population": 234, "town": "Milotice", "winner_class": ["kdu-csl"], "lng": "17.142414"}, {"votes": ["1", "0", "0", "0", "33", "1", "17", "0", "1", "14", "0", "2", "0", "32", "61", "0", "0", "12", "19", "0", "9", "1", "12", "0", "0", "2", "0", "5", "1", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.029275", "winner": "ANO", "id": "574911", "population": 233, "town": "Doln\u00ed Rove\u0148", "winner_class": ["ano"], "lng": "15.967739"}, {"votes": ["1", "0", "0", "0", "30", "2", "69", "1", "0", "44", "0", "0", "0", "23", "36", "0", "0", "1", "26", "0", "8", "13", "15", "0", "1", "2", "0", "4", "1", "0", "5", "0", "0", "1", "0", "0", "2", "0"], "lat": "49.775872", "winner": "TOP 09", "id": "559211", "population": 285, "town": "M\u011bsto Tou\u0161kov", "winner_class": ["top-09"], "lng": "13.251079"}, {"votes": ["0", "0", "0", "0", "171", "2", "31", "1", "0", "24", "0", "0", "0", "38", "27", "0", "5", "0", "7", "2", "8", "4", "13", "0", "1", "0", "0", "0", "0", "1", "9", "2", "3", "0", "0", "0", "1", "1"], "lat": "49.014328", "winner": "KDU-\u010cSL", "id": "584932", "population": 351, "town": "\u0160itbo\u0159ice", "winner_class": ["kdu-csl"], "lng": "16.779755"}, {"votes": ["1", "0", "0", "3", "55", "5", "21", "2", "0", "18", "0", "0", "0", "34", "61", "0", "2", "0", "10", "0", "7", "7", "14", "0", "2", "1", "0", "0", "0", "1", "13", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.4894444", "winner": "ANO", "id": "500062", "population": 259, "town": "Krhov\u00e1", "winner_class": ["ano"], "lng": "17.9936111"}, {"votes": ["3", "1", "1", "0", "6", "8", "60", "1", "0", "32", "0", "0", "1", "45", "71", "0", "0", "0", "38", "2", "5", "3", "39", "0", "0", "2", "0", "0", "0", "0", "12", "1", "2", "0", "0", "2", "0", "1"], "lat": "50.124707", "winner": "ANO", "id": "541991", "population": 336, "town": "L\u00e1ny", "winner_class": ["ano"], "lng": "13.95041"}, {"votes": ["2", "1", "0", "0", "5", "6", "60", "4", "4", "26", "0", "0", "0", "39", "58", "0", "0", "1", "30", "0", "13", "4", "5", "0", "4", "2", "0", "4", "0", "0", "18", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.247788", "winner": "TOP 09", "id": "537918", "population": 286, "town": "Dalovice", "winner_class": ["top-09"], "lng": "12.895807"}, {"votes": ["3", "1", "0", "4", "131", "2", "42", "0", "1", "18", "0", "0", "0", "23", "55", "0", "2", "0", "22", "0", "6", "6", "11", "0", "0", "0", "0", "1", "0", "2", "6", "0", "0", "0", "0", "3", "2", "1"], "lat": "49.825622", "winner": "KDU-\u010cSL", "id": "577995", "population": 342, "town": "Doln\u00ed \u00dajezd", "winner_class": ["kdu-csl"], "lng": "16.254605"}, {"votes": ["1", "0", "0", "3", "4", "1", "24", "0", "2", "35", "0", "0", "0", "21", "35", "0", "0", "0", "15", "1", "3", "6", "15", "0", "3", "0", "0", "3", "0", "0", "13", "0", "1", "0", "0", "0", "3", "1"], "lat": "50.322959", "winner": "KS\u010cM", "id": "536270", "population": 190, "town": "Lu\u0161t\u011bnice", "winner_class": ["kscm"], "lng": "14.936672"}, {"votes": ["0", "0", "0", "1", "84", "1", "21", "1", "0", "24", "0", "2", "0", "25", "39", "0", "0", "0", "13", "0", "10", "7", "5", "0", "1", "0", "0", "2", "0", "2", "15", "0", "1", "0", "0", "2", "0", "0"], "lat": "49.392655", "winner": "KDU-\u010cSL", "id": "596116", "population": 256, "town": "M\u011b\u0159\u00edn", "winner_class": ["kdu-csl"], "lng": "15.884993"}, {"votes": ["0", "0", "0", "0", "17", "5", "19", "0", "1", "44", "1", "0", "0", "36", "25", "0", "9", "1", "21", "1", "9", "6", "8", "0", "2", "1", "0", "2", "2", "0", "6", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.81626", "winner": "KS\u010cM", "id": "501476", "population": 218, "town": "Dlouh\u00e1 Lou\u010dka", "winner_class": ["kscm"], "lng": "17.179675"}, {"votes": ["1", "1", "0", "1", "64", "7", "30", "1", "1", "24", "0", "1", "0", "38", "26", "0", "1", "0", "13", "0", "9", "10", "11", "1", "3", "0", "0", "5", "0", "0", "4", "0", "1", "3", "0", "0", "1", "0"], "lat": "49.959465", "winner": "KDU-\u010cSL", "id": "571491", "population": 257, "town": "Hroch\u016fv T\u00fdnec", "winner_class": ["kdu-csl"], "lng": "15.910543"}, {"votes": ["2", "0", "0", "3", "16", "1", "83", "1", "1", "19", "0", "0", "0", "25", "86", "0", "0", "2", "30", "2", "8", "19", "24", "0", "0", "2", "0", "0", "0", "0", "14", "0", "3", "0", "0", "1", "1", "0"], "lat": "49.948115", "winner": "ANO", "id": "538809", "population": 343, "town": "Stran\u010dice", "winner_class": ["ano"], "lng": "14.677447"}, {"votes": ["0", "2", "0", "5", "4", "3", "28", "1", "1", "57", "1", "0", "1", "38", "33", "0", "0", "0", "12", "0", "13", "4", "10", "0", "5", "1", "0", "2", "0", "0", "6", "0", "0", "0", "0", "3", "3", "2"], "lat": "50.713937", "winner": "KS\u010cM", "id": "562297", "population": 235, "town": "\u017dandov", "winner_class": ["kscm"], "lng": "14.396232"}, {"votes": ["1", "1", "0", "2", "27", "5", "27", "2", "1", "31", "0", "0", "0", "38", "35", "0", "0", "14", "24", "0", "9", "4", "6", "0", "0", "3", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.028446", "winner": "\u010cSSD", "id": "574899", "population": 234, "town": "Da\u0161ice", "winner_class": ["cssd"], "lng": "15.91244"}, {"votes": ["2", "2", "0", "1", "13", "1", "12", "0", "0", "28", "0", "0", "2", "35", "24", "1", "0", "1", "5", "1", "7", "1", "8", "0", "2", "2", "0", "1", "0", "0", "18", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.990781", "winner": "\u010cSSD", "id": "562912", "population": 169, "town": "Velk\u00fd \u0160enov", "winner_class": ["cssd"], "lng": "14.374278"}, {"votes": ["1", "0", "0", "4", "59", "1", "54", "2", "2", "45", "0", "0", "0", "34", "53", "0", "3", "0", "23", "0", "9", "10", "31", "0", "1", "0", "1", "0", "0", "0", "16", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.214976", "winner": "KDU-\u010cSL", "id": "583839", "population": 350, "town": "\u0158\u00ed\u010dany", "winner_class": ["kdu-csl"], "lng": "16.393618"}, {"votes": ["1", "0", "0", "3", "71", "1", "18", "0", "0", "37", "0", "0", "0", "28", "34", "0", "0", "1", "18", "2", "12", "7", "15", "0", "0", "0", "0", "1", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.611942", "winner": "KDU-\u010cSL", "id": "599468", "population": 260, "town": "Jesen\u00edk nad Odrou", "winner_class": ["kdu-csl"], "lng": "17.905256"}, {"votes": ["0", "0", "0", "1", "29", "3", "38", "0", "1", "24", "0", "0", "0", "22", "27", "0", "0", "0", "16", "0", "9", "11", "13", "0", "0", "1", "0", "1", "0", "1", "18", "1", "1", "0", "0", "0", "0", "0"], "lat": "48.993859", "winner": "TOP 09", "id": "550361", "population": 217, "town": "Lhenice", "winner_class": ["top-09"], "lng": "14.149989"}, {"votes": ["0", "1", "0", "0", "5", "7", "14", "0", "3", "48", "0", "0", "0", "25", "23", "0", "0", "0", "7", "0", "7", "1", "1", "0", "2", "0", "0", "0", "1", "0", "4", "0", "0", "0", "0", "0", "4", "0"], "lat": "50.220702", "winner": "KS\u010cM", "id": "554740", "population": 153, "town": "Plesn\u00e1", "winner_class": ["kscm"], "lng": "12.346691"}, {"votes": ["0", "0", "0", "0", "40", "3", "13", "0", "1", "17", "0", "0", "0", "44", "27", "0", "0", "0", "22", "1", "10", "2", "2", "0", "0", "3", "0", "0", "0", "0", "4", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.905952", "winner": "\u010cSSD", "id": "508128", "population": 191, "town": "Markvartovice", "winner_class": ["cssd"], "lng": "18.236023"}, {"votes": ["4", "0", "3", "0", "17", "11", "45", "1", "0", "24", "1", "0", "0", "24", "46", "0", "0", "0", "37", "0", "13", "7", "20", "0", "3", "3", "0", "0", "0", "0", "26", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.788004", "winner": "ANO", "id": "540901", "population": 287, "town": "Nov\u00fd Kn\u00edn", "winner_class": ["ano"], "lng": "14.293555"}, {"votes": ["1", "0", "4", "0", "2", "5", "27", "3", "0", "70", "0", "0", "0", "65", "34", "1", "0", "0", "12", "0", "11", "4", "12", "1", "0", "0", "0", "0", "0", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.193778", "winner": "KS\u010cM", "id": "532720", "population": 267, "town": "Pchery", "winner_class": ["kscm"], "lng": "14.117818"}, {"votes": ["1", "0", "2", "1", "10", "5", "99", "1", "0", "22", "0", "0", "0", "28", "69", "0", "0", "0", "29", "0", "11", "11", "30", "0", "1", "3", "3", "2", "0", "0", "15", "0", "1", "0", "0", "2", "0", "0"], "lat": "50.178663", "winner": "TOP 09", "id": "538230", "population": 346, "town": "Hovor\u010dovice", "winner_class": ["top-09"], "lng": "14.517886"}, {"votes": ["0", "1", "0", "0", "51", "3", "14", "1", "0", "10", "0", "0", "0", "47", "37", "0", "6", "0", "22", "0", "3", "1", "8", "1", "2", "1", "2", "4", "0", "0", "12", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.912803", "winner": "KDU-\u010cSL", "id": "547182", "population": 227, "town": "Kozmice", "winner_class": ["kdu-csl"], "lng": "18.155843"}, {"votes": ["0", "1", "1", "0", "98", "5", "53", "0", "0", "31", "1", "0", "0", "57", "55", "0", "6", "1", "19", "0", "13", "11", "14", "2", "0", "0", "0", "1", "1", "0", "23", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.142162", "winner": "KDU-\u010cSL", "id": "593214", "population": 394, "town": "K\u0159enovice", "winner_class": ["kdu-csl"], "lng": "16.82932"}, {"votes": ["1", "1", "1", "3", "11", "6", "64", "6", "0", "25", "0", "0", "0", "25", "62", "0", "0", "0", "25", "1", "3", "9", "27", "0", "2", "4", "0", "2", "0", "0", "17", "0", "0", "1", "0", "1", "2", "0"], "lat": "49.999954", "winner": "TOP 09", "id": "531596", "population": 299, "town": "Ni\u017ebor", "winner_class": ["top-09"], "lng": "14.002369"}, {"votes": ["0", "0", "0", "1", "7", "9", "27", "0", "2", "19", "0", "0", "0", "45", "36", "0", "0", "0", "5", "1", "11", "4", "7", "1", "4", "1", "0", "3", "1", "0", "13", "0", "3", "0", "0", "0", "1", "0"], "lat": "50.170298", "winner": "\u010cSSD", "id": "554812", "population": 201, "town": "Skaln\u00e1", "winner_class": ["cssd"], "lng": "12.361442"}, {"votes": ["0", "1", "0", "1", "5", "10", "8", "0", "2", "20", "0", "0", "0", "35", "51", "1", "0", "1", "10", "3", "11", "4", "5", "0", "0", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.179988", "winner": "ANO", "id": "566934", "population": 176, "town": "Vroutek", "winner_class": ["ano"], "lng": "13.379858"}, {"votes": ["0", "1", "0", "0", "11", "6", "30", "0", "0", "29", "0", "0", "0", "48", "60", "1", "1", "1", "23", "0", "10", "2", "5", "1", "2", "2", "2", "2", "0", "0", "10", "0", "0", "1", "0", "0", "2", "0"], "lat": "50.107068", "winner": "ANO", "id": "576301", "population": 250, "town": "Doudleby nad Orlic\u00ed", "winner_class": ["ano"], "lng": "16.260362"}, {"votes": ["1", "2", "0", "0", "32", "6", "28", "0", "2", "35", "0", "0", "0", "38", "44", "0", "0", "5", "22", "0", "23", "4", "7", "0", "6", "0", "0", "1", "0", "0", "12", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.049011", "winner": "ANO", "id": "574996", "population": 270, "town": "Horn\u00ed Jelen\u00ed", "winner_class": ["ano"], "lng": "16.083964"}, {"votes": ["0", "0", "0", "3", "61", "8", "38", "3", "1", "16", "0", "0", "0", "69", "64", "0", "3", "0", "31", "0", "2", "14", "12", "0", "0", "6", "0", "0", "0", "4", "19", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.451511", "winner": "\u010cSSD", "id": "582018", "population": 354, "town": "Lysice", "winner_class": ["cssd"], "lng": "16.533897"}, {"votes": ["0", "0", "0", "2", "108", "5", "30", "0", "0", "21", "0", "0", "0", "25", "29", "0", "0", "1", "8", "1", "8", "5", "7", "1", "0", "5", "0", "3", "0", "0", "8", "2", "0", "0", "0", "1", "1", "0"], "lat": "49.368434", "winner": "KDU-\u010cSL", "id": "587346", "population": 271, "town": "Kamenice", "winner_class": ["kdu-csl"], "lng": "15.78171"}, {"votes": ["2", "2", "0", "0", "22", "5", "28", "1", "0", "19", "0", "2", "0", "20", "50", "0", "2", "1", "10", "0", "17", "7", "15", "0", "2", "1", "0", "1", "2", "0", "8", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.131596", "winner": "ANO", "id": "523917", "population": 219, "town": "B\u011bl\u00e1 pod Prad\u011bdem", "winner_class": ["ano"], "lng": "17.215848"}, {"votes": ["1", "1", "0", "0", "16", "4", "18", "0", "2", "61", "0", "0", "0", "27", "31", "0", "4", "0", "17", "1", "7", "3", "11", "0", "3", "2", "0", "1", "0", "0", "6", "1", "1", "0", "1", "0", "0", "0"], "lat": "48.746852", "winner": "KS\u010cM", "id": "584576", "population": 219, "town": "Kostice", "winner_class": ["kscm"], "lng": "16.978689"}, {"votes": ["0", "0", "0", "1", "43", "7", "24", "1", "0", "41", "0", "1", "0", "41", "52", "1", "5", "0", "20", "0", "15", "2", "6", "0", "2", "0", "0", "0", "0", "0", "16", "0", "0", "2", "0", "1", "3", "0"], "lat": "49.817314", "winner": "ANO", "id": "505293", "population": 284, "town": "Troubelice", "winner_class": ["ano"], "lng": "17.081005"}, {"votes": ["2", "1", "0", "1", "82", "2", "25", "4", "1", "18", "0", "0", "0", "24", "35", "0", "1", "0", "11", "0", "12", "7", "10", "0", "0", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.454978", "winner": "KDU-\u010cSL", "id": "541800", "population": 246, "town": "Doln\u00ed Be\u010dva", "winner_class": ["kdu-csl"], "lng": "18.194187"}, {"votes": ["0", "1", "0", "1", "57", "1", "22", "1", "0", "37", "0", "0", "0", "42", "29", "0", "0", "0", "22", "1", "7", "7", "7", "0", "4", "0", "0", "1", "0", "0", "5", "2", "2", "0", "0", "0", "0", "0"], "lat": "49.921803", "winner": "KDU-\u010cSL", "id": "510289", "population": 249, "town": "Slavkov", "winner_class": ["kdu-csl"], "lng": "17.836413"}, {"votes": ["4", "0", "2", "1", "19", "4", "56", "3", "0", "17", "0", "1", "0", "44", "56", "0", "0", "0", "18", "5", "6", "17", "23", "0", "0", "1", "0", "1", "0", "0", "19", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.27046", "winner": "TOP 09", "id": "535273", "population": 299, "town": "Veltrusy", "winner_class": ["top-09"], "lng": "14.32857"}, {"votes": ["2", "3", "0", "4", "41", "1", "27", "0", "0", "46", "0", "1", "2", "51", "38", "0", "1", "0", "35", "0", "9", "4", "13", "0", "4", "0", "1", "2", "10", "0", "10", "0", "0", "0", "0", "5", "2", "0"], "lat": "49.621408", "winner": "\u010cSSD", "id": "507423", "population": 312, "town": "Janovice", "winner_class": ["cssd"], "lng": "18.406016"}, {"votes": ["2", "1", "0", "0", "14", "2", "40", "1", "1", "36", "0", "0", "0", "66", "53", "0", "0", "2", "25", "0", "11", "17", "16", "0", "0", "1", "1", "1", "0", "0", "19", "0", "1", "0", "0", "0", "2", "1"], "lat": "50.000952", "winner": "\u010cSSD", "id": "575399", "population": 313, "town": "Moravany", "winner_class": ["cssd"], "lng": "15.940706"}, {"votes": ["0", "0", "0", "6", "2", "5", "40", "0", "3", "57", "0", "0", "0", "50", "58", "0", "0", "0", "11", "2", "8", "8", "20", "0", "2", "0", "0", "0", "0", "2", "14", "0", "0", "1", "0", "0", "3", "2"], "lat": "50.123771", "winner": "ANO", "id": "542041", "population": 294, "town": "Lu\u017en\u00e1", "winner_class": ["ano"], "lng": "13.770042"}, {"votes": ["5", "1", "0", "1", "11", "8", "34", "0", "2", "43", "0", "0", "0", "34", "31", "0", "0", "0", "28", "1", "9", "6", "13", "0", "0", "3", "1", "0", "0", "2", "10", "1", "1", "0", "1", "1", "0", "0"], "lat": "50.003058", "winner": "KS\u010cM", "id": "533424", "population": 247, "town": "Kou\u0159im", "winner_class": ["kscm"], "lng": "14.977031"}, {"votes": ["0", "0", "0", "0", "73", "3", "23", "1", "0", "27", "0", "0", "0", "26", "20", "0", "0", "0", "8", "1", "11", "5", "5", "0", "0", "1", "0", "2", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.388444", "winner": "KDU-\u010cSL", "id": "595926", "population": 214, "town": "K\u0159i\u017eanov", "winner_class": ["kdu-csl"], "lng": "16.110623"}, {"votes": ["2", "1", "0", "0", "5", "8", "15", "3", "1", "18", "0", "0", "0", "20", "27", "0", "0", "0", "5", "1", "16", "4", "8", "0", "0", "1", "0", "0", "0", "0", "11", "0", "0", "0", "0", "2", "1", "0"], "lat": "50.309398", "winner": "ANO", "id": "555185", "population": 149, "town": "Hrozn\u011bt\u00edn", "winner_class": ["ano"], "lng": "12.871801"}, {"votes": ["3", "0", "0", "2", "11", "7", "17", "1", "3", "32", "0", "1", "0", "19", "20", "0", "1", "2", "9", "1", "7", "3", "3", "0", "2", "0", "0", "0", "1", "1", "16", "0", "0", "0", "2", "0", "0", "0"], "lat": "49.478329", "winner": "KS\u010cM", "id": "587028", "population": 164, "town": "Dobron\u00edn", "winner_class": ["kscm"], "lng": "15.649919"}, {"votes": ["3", "2", "0", "2", "37", "2", "15", "0", "2", "23", "0", "1", "2", "79", "28", "3", "2", "2", "28", "0", "1", "4", "7", "0", "1", "2", "1", "4", "0", "0", "6", "0", "0", "0", "0", "1", "2", "0"], "lat": "49.816914", "winner": "\u010cSSD", "id": "599140", "population": 260, "town": "Stonava", "winner_class": ["cssd"], "lng": "18.525177"}, {"votes": ["0", "0", "0", "1", "17", "3", "13", "0", "0", "42", "0", "0", "1", "73", "28", "0", "0", "0", "28", "0", "12", "6", "7", "0", "1", "1", "0", "0", "3", "0", "9", "0", "1", "0", "0", "2", "0", "0"], "lat": "49.619747", "winner": "\u010cSSD", "id": "549665", "population": 248, "town": "Ra\u0161kovice", "winner_class": ["cssd"], "lng": "18.472864"}, {"votes": ["2", "0", "0", "1", "4", "6", "47", "0", "0", "14", "0", "0", "0", "40", "48", "0", "0", "0", "28", "0", "18", "12", "9", "1", "0", "3", "0", "1", "1", "0", "11", "0", "1", "0", "0", "0", "3", "1"], "lat": "50.489174", "winner": "ANO", "id": "536041", "population": 251, "town": "Kn\u011b\u017emost", "winner_class": ["ano"], "lng": "15.038288"}, {"votes": ["0", "0", "0", "0", "39", "4", "21", "0", "2", "25", "0", "0", "1", "34", "31", "0", "3", "1", "11", "1", "7", "2", "2", "0", "0", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.633772", "winner": "KDU-\u010cSL", "id": "568546", "population": 195, "town": "Kun\u00edn", "winner_class": ["kdu-csl"], "lng": "17.989647"}, {"votes": ["0", "1", "1", "0", "14", "4", "42", "4", "1", "52", "0", "0", "0", "27", "59", "0", "0", "0", "23", "2", "4", "8", "8", "0", "6", "0", "0", "0", "0", "0", "9", "0", "3", "0", "0", "0", "1", "0"], "lat": "50.476325", "winner": "ANO", "id": "565768", "population": 269, "town": "T\u0159ebenice", "winner_class": ["ano"], "lng": "13.990047"}, {"votes": ["2", "1", "0", "0", "36", "3", "9", "1", "1", "30", "0", "0", "0", "20", "31", "0", "3", "0", "9", "2", "11", "12", "5", "0", "2", "4", "0", "3", "0", "1", "2", "0", "2", "1", "0", "0", "1", "0"], "lat": "50.161736", "winner": "KDU-\u010cSL", "id": "541079", "population": 192, "town": "Star\u00e9 M\u011bsto", "winner_class": ["kdu-csl"], "lng": "16.947341"}, {"votes": ["1", "2", "0", "2", "54", "3", "43", "0", "1", "55", "0", "1", "0", "40", "44", "0", "2", "1", "15", "1", "7", "6", "3", "0", "6", "2", "0", "0", "0", "0", "7", "0", "1", "0", "0", "1", "2", "0"], "lat": "49.624012", "winner": "KS\u010cM", "id": "505081", "population": 300, "town": "Senice na Han\u00e9", "winner_class": ["kscm"], "lng": "17.085775"}, {"votes": ["1", "1", "0", "1", "54", "2", "17", "1", "1", "45", "0", "0", "2", "71", "47", "0", "3", "1", "41", "0", "8", "3", "13", "0", "0", "3", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.708718", "winner": "\u010cSSD", "id": "599743", "population": 325, "town": "Pet\u0159vald", "winner_class": ["cssd"], "lng": "18.157192"}, {"votes": ["3", "0", "1", "1", "17", "3", "78", "1", "0", "35", "1", "0", "1", "49", "55", "0", "0", "0", "18", "0", "5", "6", "10", "0", "1", "2", "0", "3", "0", "0", "16", "1", "1", "0", "0", "6", "2", "0"], "lat": "49.793198", "winner": "TOP 09", "id": "558966", "population": 316, "town": "Chr\u00e1st", "winner_class": ["top-09"], "lng": "13.493581"}, {"votes": ["5", "2", "0", "1", "12", "8", "102", "1", "3", "35", "0", "0", "0", "30", "60", "0", "0", "0", "32", "2", "16", "12", "24", "0", "1", "4", "0", "2", "0", "0", "18", "1", "0", "0", "0", "1", "1", "1"], "lat": "49.86828", "winner": "TOP 09", "id": "539252", "population": 374, "town": "Hradi\u0161tko", "winner_class": ["top-09"], "lng": "14.409346"}, {"votes": ["0", "0", "0", "1", "16", "3", "62", "0", "1", "22", "0", "0", "0", "19", "35", "0", "0", "0", "19", "1", "9", "5", "6", "0", "1", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.363224", "winner": "TOP 09", "id": "552666", "population": 210, "town": "Mal\u0161ice", "winner_class": ["top-09"], "lng": "14.578348"}, {"votes": ["0", "0", "0", "3", "5", "6", "50", "0", "1", "48", "0", "0", "1", "20", "45", "0", "0", "0", "27", "1", "5", "9", "24", "0", "0", "0", "1", "0", "0", "0", "21", "1", "0", "0", "0", "0", "3", "0"], "lat": "50.687692", "winner": "TOP 09", "id": "563749", "population": 271, "town": "P\u011bn\u010d\u00edn", "winner_class": ["top-09"], "lng": "15.23593"}, {"votes": ["1", "0", "0", "0", "13", "3", "85", "0", "1", "26", "0", "0", "0", "28", "58", "0", "0", "0", "21", "2", "1", "9", "27", "0", "2", "1", "0", "4", "1", "1", "9", "3", "0", "0", "0", "0", "1", "0"], "lat": "50.130993", "winner": "TOP 09", "id": "538540", "population": 297, "town": "Nehvizdy", "winner_class": ["top-09"], "lng": "14.728964"}, {"votes": ["2", "2", "0", "1", "4", "6", "6", "1", "1", "53", "0", "0", "1", "26", "18", "2", "1", "0", "4", "0", "4", "1", "8", "1", "5", "3", "0", "1", "0", "0", "3", "0", "3", "4", "0", "0", "2", "0"], "lat": "50.585506", "winner": "KS\u010cM", "id": "562017", "population": 163, "town": "Ralsko", "winner_class": ["kscm"], "lng": "14.804118"}, {"votes": ["0", "0", "0", "0", "21", "6", "51", "1", "1", "20", "0", "0", "0", "19", "58", "0", "0", "0", "20", "0", "7", "6", "15", "0", "1", "2", "2", "1", "0", "0", "15", "0", "2", "2", "0", "1", "0", "0"], "lat": "50.607986", "winner": "ANO", "id": "577120", "population": 251, "town": "Horn\u00ed Brann\u00e1", "winner_class": ["ano"], "lng": "15.570076"}, {"votes": ["1", "0", "0", "1", "0", "2", "24", "1", "1", "40", "0", "0", "0", "20", "19", "0", "0", "0", "19", "0", "8", "4", "6", "0", "4", "4", "0", "4", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.758546", "winner": "KS\u010cM", "id": "568058", "population": 167, "town": "Libouchec", "winner_class": ["kscm"], "lng": "14.040712"}, {"votes": ["0", "0", "0", "0", "24", "1", "14", "1", "1", "12", "0", "0", "0", "22", "35", "0", "1", "0", "17", "1", "8", "2", "6", "0", "0", "2", "0", "3", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.367694", "winner": "ANO", "id": "544787", "population": 159, "town": "Ratibo\u0159", "winner_class": ["ano"], "lng": "17.914987"}, {"votes": ["0", "0", "0", "2", "53", "8", "24", "2", "0", "9", "0", "0", "0", "31", "40", "0", "0", "0", "24", "2", "6", "7", "10", "0", "0", "1", "0", "1", "0", "0", "13", "0", "4", "0", "0", "0", "1", "0"], "lat": "49.936093", "winner": "KDU-\u010cSL", "id": "510939", "population": 238, "town": "Velk\u00e9 Ho\u0161tice", "winner_class": ["kdu-csl"], "lng": "17.973797"}, {"votes": ["0", "0", "0", "1", "9", "3", "29", "1", "1", "51", "0", "0", "0", "27", "42", "0", "0", "0", "14", "0", "6", "6", "16", "0", "1", "1", "2", "1", "2", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.954706", "winner": "KS\u010cM", "id": "533921", "population": 228, "town": "Z\u00e1smuky", "winner_class": ["kscm"], "lng": "15.03058"}, {"votes": ["2", "2", "0", "0", "6", "8", "56", "0", "0", "19", "0", "1", "0", "35", "67", "0", "0", "0", "11", "0", "4", "9", "13", "0", "0", "0", "0", "1", "1", "0", "10", "0", "0", "2", "0", "4", "1", "1"], "lat": "50.135951", "winner": "ANO", "id": "532371", "population": 253, "town": "H\u0159ebe\u010d", "winner_class": ["ano"], "lng": "14.164463"}, {"votes": ["1", "1", "0", "0", "10", "3", "30", "0", "0", "35", "0", "0", "0", "22", "25", "0", "0", "1", "14", "3", "5", "4", "12", "1", "6", "1", "0", "2", "0", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.188438", "winner": "KS\u010cM", "id": "532835", "population": 184, "town": "Sme\u010dno", "winner_class": ["kscm"], "lng": "14.040365"}, {"votes": ["0", "0", "0", "0", "48", "2", "19", "1", "0", "40", "0", "0", "0", "14", "21", "0", "1", "0", "6", "0", "9", "5", "11", "0", "0", "0", "0", "0", "0", "0", "12", "0", "0", "0", "1", "0", "0", "0"], "lat": "49.121671", "winner": "KDU-\u010cSL", "id": "592013", "population": 190, "town": "Babice", "winner_class": ["kdu-csl"], "lng": "17.480746"}, {"votes": ["3", "0", "1", "2", "8", "5", "71", "1", "1", "15", "0", "1", "0", "40", "55", "0", "0", "0", "22", "0", "5", "13", "26", "0", "0", "0", "0", "5", "0", "1", "19", "0", "0", "0", "0", "1", "0", "1"], "lat": "49.670514", "winner": "TOP 09", "id": "558435", "population": 296, "town": "\u0160t\u011bnovice", "winner_class": ["top-09"], "lng": "13.39963"}, {"votes": ["0", "1", "0", "0", "28", "5", "36", "0", "4", "20", "1", "0", "1", "21", "32", "0", "0", "0", "21", "1", "16", "8", "10", "0", "1", "2", "0", "0", "0", "0", "18", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.70347", "winner": "TOP 09", "id": "577162", "population": 229, "town": "Jablonec nad Jizerou", "winner_class": ["top-09"], "lng": "15.429591"}, {"votes": ["0", "0", "0", "3", "27", "1", "20", "0", "3", "10", "0", "0", "1", "45", "16", "0", "0", "0", "14", "1", "10", "1", "5", "0", "2", "5", "0", "1", "1", "0", "2", "0", "1", "0", "0", "0", "10", "0"], "lat": "49.61661", "winner": "\u010cSSD", "id": "512176", "population": 179, "town": "Hr\u00e1dek", "winner_class": ["cssd"], "lng": "18.737204"}, {"votes": ["1", "0", "0", "0", "25", "5", "26", "3", "2", "21", "0", "0", "0", "22", "36", "0", "4", "1", "13", "0", "1", "2", "13", "0", "0", "2", "0", "0", "0", "0", "8", "0", "0", "0", "0", "2", "2", "0"], "lat": "49.082396", "winner": "ANO", "id": "583383", "population": 189, "town": "M\u011bn\u00edn", "winner_class": ["ano"], "lng": "16.694237"}, {"votes": ["0", "0", "0", "0", "15", "6", "45", "0", "0", "38", "0", "0", "0", "15", "41", "0", "1", "1", "17", "0", "16", "8", "14", "0", "1", "0", "0", "4", "0", "0", "9", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.97806", "winner": "TOP 09", "id": "533262", "population": 232, "town": "\u010cerven\u00e9 Pe\u010dky", "winner_class": ["top-09"], "lng": "15.208622"}, {"votes": ["0", "1", "0", "0", "34", "4", "11", "0", "3", "34", "0", "0", "0", "22", "35", "0", "4", "1", "6", "0", "25", "1", "1", "0", "0", "0", "0", "1", "0", "1", "10", "0", "1", "0", "0", "0", "2", "0"], "lat": "49.171023", "winner": "ANO", "id": "585220", "population": 197, "town": "Halenkovice", "winner_class": ["ano"], "lng": "17.471556"}, {"votes": ["1", "1", "0", "1", "8", "5", "28", "0", "0", "24", "0", "0", "0", "15", "45", "0", "0", "1", "14", "1", "9", "10", "14", "0", "1", "0", "0", "0", "0", "0", "15", "1", "0", "0", "0", "2", "0", "0"], "lat": "50.184487", "winner": "ANO", "id": "537331", "population": 196, "town": "Kostomlaty nad Labem", "winner_class": ["ano"], "lng": "14.953978"}, {"votes": ["0", "1", "0", "0", "0", "5", "29", "0", "1", "21", "1", "0", "0", "28", "31", "0", "0", "0", "9", "1", "10", "1", "0", "0", "1", "1", "0", "0", "0", "0", "16", "0", "1", "1", "0", "1", "1", "0"], "lat": "49.893231", "winner": "ANO", "id": "560901", "population": 160, "town": "Chodov\u00e1 Plan\u00e1", "winner_class": ["ano"], "lng": "12.730212"}, {"votes": ["3", "0", "0", "0", "15", "5", "23", "0", "1", "40", "0", "0", "0", "24", "40", "0", "0", "0", "19", "0", "10", "7", "4", "0", "4", "0", "0", "1", "1", "1", "6", "1", "3", "0", "0", "0", "4", "0"], "lat": "49.846938", "winner": "KS\u010cM", "id": "572225", "population": 212, "town": "Se\u010d", "winner_class": ["kscm"], "lng": "15.656426"}, {"votes": ["2", "0", "0", "5", "12", "4", "74", "4", "2", "13", "0", "0", "1", "46", "50", "0", "0", "0", "31", "2", "11", "8", "13", "0", "3", "1", "0", "3", "0", "1", "23", "0", "0", "1", "0", "0", "2", "0"], "lat": "49.850533", "winner": "TOP 09", "id": "539732", "population": 312, "town": "\u0160t\u011bchovice", "winner_class": ["top-09"], "lng": "14.406208"}, {"votes": ["1", "1", "0", "0", "3", "8", "47", "2", "0", "29", "0", "0", "0", "19", "27", "0", "0", "1", "7", "0", "3", "1", "2", "0", "2", "7", "0", "3", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.706795", "winner": "TOP 09", "id": "558869", "population": 174, "town": "He\u0159manova Hu\u0165", "winner_class": ["top-09"], "lng": "13.100691"}, {"votes": ["5", "0", "0", "0", "12", "3", "93", "2", "2", "17", "0", "0", "0", "16", "73", "0", "0", "0", "22", "0", "10", "7", "33", "0", "1", "3", "0", "1", "2", "0", "28", "0", "0", "0", "0", "3", "1", "0"], "lat": "50.060723", "winner": "TOP 09", "id": "539309", "population": 334, "town": "Ch\u00fdn\u011b", "winner_class": ["top-09"], "lng": "14.226946"}, {"votes": ["2", "0", "1", "0", "18", "4", "15", "0", "0", "32", "0", "0", "0", "30", "31", "0", "7", "0", "14", "1", "9", "3", "7", "0", "0", "0", "0", "2", "2", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.854472", "winner": "KS\u010cM", "id": "584428", "population": 181, "town": "Doln\u00ed Dunajovice", "winner_class": ["kscm"], "lng": "16.59283"}, {"votes": ["1", "1", "0", "0", "7", "3", "34", "1", "5", "34", "0", "0", "1", "32", "56", "0", "0", "0", "13", "3", "5", "9", "12", "0", "3", "1", "0", "3", "0", "0", "18", "0", "1", "0", "0", "0", "0", "1"], "lat": "50.189226", "winner": "ANO", "id": "532118", "population": 244, "town": "Brand\u00fdsek", "winner_class": ["ano"], "lng": "14.161989"}, {"votes": ["0", "1", "0", "1", "105", "1", "36", "0", "0", "28", "0", "0", "1", "21", "22", "0", "2", "0", "5", "1", "9", "6", "9", "0", "0", "0", "0", "2", "0", "0", "7", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.099651", "winner": "KDU-\u010cSL", "id": "592030", "population": 259, "town": "B\u00edlovice", "winner_class": ["kdu-csl"], "lng": "17.549607"}, {"votes": ["0", "1", "1", "2", "40", "6", "24", "0", "2", "28", "0", "0", "0", "26", "35", "0", "1", "0", "13", "0", "2", "7", "13", "0", "6", "1", "0", "0", "5", "0", "8", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.32026", "winner": "KDU-\u010cSL", "id": "547913", "population": 223, "town": "Horn\u00ed Cerekev", "winner_class": ["kdu-csl"], "lng": "15.327691"}, {"votes": ["0", "0", "0", "0", "9", "8", "54", "3", "3", "33", "0", "0", "1", "21", "47", "0", "0", "0", "29", "1", "4", "10", "19", "1", "1", "0", "0", "3", "0", "0", "15", "0", "1", "3", "0", "0", "0", "0"], "lat": "50.027363", "winner": "TOP 09", "id": "531294", "population": 266, "town": "Chy\u0148ava", "winner_class": ["top-09"], "lng": "14.073984"}, {"votes": ["0", "0", "0", "0", "6", "7", "30", "0", "1", "20", "0", "0", "1", "44", "48", "1", "0", "0", "26", "0", "9", "3", "9", "0", "4", "0", "0", "6", "1", "2", "10", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.856772", "winner": "ANO", "id": "560120", "population": 230, "town": "Radnice", "winner_class": ["ano"], "lng": "13.605703"}, {"votes": ["1", "0", "0", "0", "64", "2", "20", "0", "0", "19", "0", "0", "0", "15", "34", "1", "2", "1", "11", "1", "6", "3", "6", "0", "4", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.116261", "winner": "KDU-\u010cSL", "id": "592226", "population": 196, "town": "Jalub\u00ed", "winner_class": ["kdu-csl"], "lng": "17.427876"}, {"votes": ["2", "0", "0", "0", "23", "9", "26", "0", "1", "21", "0", "1", "1", "30", "26", "0", "0", "0", "16", "0", "7", "7", "7", "0", "0", "1", "1", "1", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.084683", "winner": "\u010cSSD", "id": "546674", "population": 192, "town": "Lomnice nad Lu\u017enic\u00ed", "winner_class": ["cssd"], "lng": "14.717273"}, {"votes": ["0", "0", "0", "0", "22", "2", "17", "0", "0", "16", "0", "0", "0", "43", "31", "0", "0", "0", "11", "0", "9", "5", "1", "0", "2", "1", "0", "0", "0", "0", "3", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.071564", "winner": "\u010cSSD", "id": "540226", "population": 165, "town": "Lou\u010dn\u00e1 nad Desnou", "winner_class": ["cssd"], "lng": "17.090958"}, {"votes": ["1", "0", "2", "2", "7", "5", "39", "0", "0", "45", "0", "0", "0", "31", "31", "0", "0", "0", "27", "2", "6", "5", "26", "0", "1", "3", "0", "1", "0", "0", "14", "0", "0", "0", "0", "2", "8", "0"], "lat": "50.126975", "winner": "KS\u010cM", "id": "532452", "population": 258, "town": "Kamenn\u00e9 \u017dehrovice", "winner_class": ["kscm"], "lng": "14.01809"}, {"votes": ["0", "1", "0", "0", "24", "3", "37", "1", "1", "35", "0", "0", "0", "87", "35", "0", "1", "0", "31", "1", "7", "6", "6", "1", "2", "0", "0", "2", "0", "0", "6", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.733376", "winner": "\u010cSSD", "id": "568830", "population": 288, "town": "\u0158epi\u0161t\u011b", "winner_class": ["cssd"], "lng": "18.31707"}, {"votes": ["3", "0", "0", "1", "18", "5", "87", "2", "1", "9", "0", "0", "0", "24", "65", "0", "0", "1", "31", "2", "14", "21", "41", "0", "1", "2", "0", "0", "0", "0", "17", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.018478", "winner": "TOP 09", "id": "531618", "population": 346, "town": "Nu\u010dice", "winner_class": ["top-09"], "lng": "14.22997"}, {"votes": ["0", "0", "0", "1", "6", "14", "34", "0", "1", "24", "0", "0", "0", "12", "43", "0", "0", "2", "24", "2", "5", "7", "9", "0", "2", "1", "0", "1", "0", "0", "13", "0", "1", "0", "0", "0", "2", "1"], "lat": "50.540343", "winner": "ANO", "id": "561533", "population": 205, "town": "Dub\u00e1", "winner_class": ["ano"], "lng": "14.540233"}, {"votes": ["0", "1", "0", "1", "152", "2", "9", "0", "0", "1", "0", "0", "0", "17", "15", "0", "1", "0", "0", "0", "3", "0", "13", "0", "0", "0", "0", "3", "0", "2", "3", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.203031", "winner": "KDU-\u010cSL", "id": "544370", "population": 224, "town": "Lide\u010dko", "winner_class": ["kdu-csl"], "lng": "18.0513"}, {"votes": ["0", "0", "0", "0", "55", "3", "4", "0", "0", "6", "0", "0", "1", "46", "15", "0", "0", "0", "10", "2", "4", "3", "2", "0", "0", "0", "1", "0", "0", "0", "2", "0", "1", "0", "0", "0", "0", "1"], "lat": "49.559241", "winner": "KDU-\u010cSL", "id": "512028", "population": 156, "town": "P\u00edsek", "winner_class": ["kdu-csl"], "lng": "18.802308"}, {"votes": ["1", "1", "0", "2", "83", "5", "32", "0", "1", "15", "0", "1", "0", "46", "47", "0", "2", "0", "19", "3", "9", "2", "9", "0", "0", "0", "0", "0", "0", "0", "8", "1", "0", "0", "0", "0", "5", "0"], "lat": "49.290274", "winner": "KDU-\u010cSL", "id": "585467", "population": 292, "town": "Lukov", "winner_class": ["kdu-csl"], "lng": "17.729586"}, {"votes": ["0", "0", "0", "0", "28", "6", "10", "0", "4", "15", "0", "0", "0", "29", "41", "0", "0", "0", "20", "3", "6", "3", "6", "0", "3", "0", "0", "3", "0", "0", "3", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.591203", "winner": "ANO", "id": "512231", "population": 182, "town": "B\u011blot\u00edn", "winner_class": ["ano"], "lng": "17.80654"}, {"votes": ["4", "1", "0", "1", "42", "1", "6", "0", "0", "18", "0", "0", "0", "27", "40", "0", "0", "0", "7", "0", "8", "3", "8", "0", "3", "1", "0", "0", "0", "0", "4", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.436094", "winner": "KDU-\u010cSL", "id": "544698", "population": 175, "town": "Prost\u0159edn\u00ed Be\u010dva", "winner_class": ["kdu-csl"], "lng": "18.251996"}, {"votes": ["0", "0", "0", "1", "154", "4", "61", "0", "2", "23", "0", "0", "0", "29", "45", "1", "0", "0", "15", "0", "7", "7", "4", "0", "0", "1", "0", "2", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.553445", "winner": "KDU-\u010cSL", "id": "577553", "population": 367, "town": "Studenec", "winner_class": ["kdu-csl"], "lng": "15.549363"}, {"votes": ["0", "1", "0", "0", "27", "5", "15", "2", "0", "34", "0", "1", "0", "29", "44", "0", "6", "0", "16", "1", "9", "5", "9", "0", "1", "0", "0", "1", "0", "0", "10", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.504058", "winner": "ANO", "id": "582441", "population": 218, "town": "Svit\u00e1vka", "winner_class": ["ano"], "lng": "16.597531"}, {"votes": ["0", "2", "0", "0", "7", "4", "46", "0", "0", "36", "0", "0", "0", "23", "57", "0", "0", "0", "50", "0", "10", "10", "25", "0", "4", "1", "0", "0", "0", "2", "12", "0", "0", "1", "1", "0", "0", "0"], "lat": "50.215724", "winner": "ANO", "id": "570931", "population": 291, "town": "St\u011b\u017eery", "winner_class": ["ano"], "lng": "15.748306"}, {"votes": ["2", "1", "0", "2", "3", "3", "36", "1", "1", "49", "0", "1", "0", "26", "20", "0", "0", "0", "13", "0", "1", "3", "3", "0", "1", "0", "0", "0", "0", "0", "8", "3", "2", "1", "0", "0", "4", "0"], "lat": "49.591149", "winner": "KS\u010cM", "id": "553441", "population": 184, "town": "B\u011bl\u00e1 nad Radbuzou", "winner_class": ["kscm"], "lng": "12.717606"}, {"votes": ["1", "1", "1", "1", "4", "3", "11", "0", "4", "19", "0", "0", "0", "14", "47", "0", "0", "0", "1", "0", "0", "3", "5", "0", "2", "0", "0", "3", "0", "0", "6", "1", "0", "0", "0", "0", "3", "0"], "lat": "50.251131", "winner": "ANO", "id": "560588", "population": 130, "town": "Olov\u00ed", "winner_class": ["ano"], "lng": "12.558766"}, {"votes": ["0", "1", "0", "0", "103", "2", "43", "1", "5", "27", "0", "0", "0", "13", "48", "0", "4", "0", "14", "0", "7", "5", "18", "0", "1", "4", "0", "1", "0", "0", "21", "0", "0", "0", "0", "1", "5", "1"], "lat": "48.991375", "winner": "KDU-\u010cSL", "id": "585009", "population": 325, "town": "Velk\u00e9 N\u011bm\u010dice", "winner_class": ["kdu-csl"], "lng": "16.671125"}, {"votes": ["0", "2", "1", "1", "16", "3", "41", "1", "6", "35", "0", "0", "1", "32", "42", "0", "0", "1", "31", "0", "5", "7", "19", "0", "1", "0", "0", "2", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.256329", "winner": "ANO", "id": "570672", "population": 254, "town": "P\u0159edm\u011b\u0159ice nad Labem", "winner_class": ["ano"], "lng": "15.815563"}, {"votes": ["0", "4", "1", "0", "51", "6", "25", "0", "0", "31", "0", "2", "0", "31", "40", "0", "1", "0", "20", "1", "8", "3", "2", "0", "0", "0", "0", "0", "0", "0", "8", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.1077", "winner": "KDU-\u010cSL", "id": "590673", "population": 235, "town": "Hrotovice", "winner_class": ["kdu-csl"], "lng": "16.060674"}, {"votes": ["2", "0", "0", "1", "37", "1", "14", "0", "1", "19", "0", "0", "0", "27", "23", "0", "0", "0", "36", "0", "5", "5", "15", "0", "0", "0", "0", "0", "0", "1", "12", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.538563", "winner": "KDU-\u010cSL", "id": "599409", "population": 200, "town": "Hodslavice", "winner_class": ["kdu-csl"], "lng": "18.023674"}, {"votes": ["0", "0", "0", "0", "33", "2", "20", "1", "2", "37", "1", "1", "0", "43", "31", "0", "1", "0", "16", "0", "14", "6", "8", "0", "0", "0", "0", "3", "0", "0", "10", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.578558", "winner": "\u010cSSD", "id": "501751", "population": 231, "town": "Drahanovice", "winner_class": ["cssd"], "lng": "17.077013"}, {"votes": ["0", "0", "0", "0", "53", "0", "21", "0", "2", "22", "1", "0", "0", "40", "71", "0", "0", "0", "16", "0", "9", "8", "12", "0", "0", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "3", "3", "0"], "lat": "49.4669444", "winner": "ANO", "id": "500071", "population": 272, "town": "Poli\u010dn\u00e1", "winner_class": ["ano"], "lng": "17.9447222"}, {"votes": ["0", "0", "3", "1", "14", "4", "22", "1", "0", "38", "0", "0", "0", "14", "21", "0", "0", "1", "6", "1", "3", "5", "8", "0", "2", "0", "0", "0", "1", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.502053", "winner": "KS\u010cM", "id": "569593", "population": 154, "town": "\u0160toky", "winner_class": ["kscm"], "lng": "15.588491"}, {"votes": ["0", "1", "0", "0", "19", "4", "24", "0", "1", "36", "0", "0", "0", "26", "39", "0", "0", "1", "23", "1", "6", "8", "5", "0", "2", "2", "0", "0", "0", "1", "4", "1", "0", "0", "0", "4", "1", "0"], "lat": "49.084565", "winner": "ANO", "id": "550728", "population": 209, "town": "Zd\u00edkov", "winner_class": ["ano"], "lng": "13.697377"}, {"votes": ["2", "1", "0", "1", "5", "9", "32", "0", "6", "68", "0", "0", "0", "21", "50", "0", "0", "0", "11", "2", "8", "5", "5", "0", "1", "0", "0", "2", "0", "0", "6", "0", "0", "0", "0", "1", "2", "0"], "lat": "50.362218", "winner": "KS\u010cM", "id": "565318", "population": 238, "town": "M\u0161en\u00e9-l\u00e1zn\u011b", "winner_class": ["kscm"], "lng": "14.127057"}, {"votes": ["2", "2", "2", "1", "29", "5", "25", "0", "0", "28", "0", "1", "2", "36", "58", "0", "0", "2", "23", "5", "12", "5", "9", "0", "4", "1", "0", "0", "0", "0", "3", "0", "1", "0", "0", "0", "4", "1"], "lat": "50.286801", "winner": "ANO", "id": "576212", "population": 261, "town": "\u010cesk\u00e9 Mezi\u0159\u00ed\u010d\u00ed", "winner_class": ["ano"], "lng": "16.04428"}, {"votes": ["0", "1", "1", "3", "13", "3", "17", "0", "0", "24", "0", "0", "0", "14", "32", "0", "15", "1", "9", "0", "9", "1", "3", "0", "0", "1", "0", "0", "0", "0", "6", "0", "1", "0", "0", "0", "0", "0"], "lat": "48.856358", "winner": "ANO", "id": "584444", "population": 154, "town": "Drnholec", "winner_class": ["ano"], "lng": "16.487443"}, {"votes": ["1", "0", "1", "1", "13", "5", "40", "0", "0", "27", "0", "1", "0", "25", "50", "0", "0", "3", "15", "0", "9", "3", "4", "0", "4", "0", "0", "1", "0", "0", "5", "0", "2", "3", "0", "0", "0", "0"], "lat": "49.655515", "winner": "ANO", "id": "539953", "population": 213, "town": "Bohut\u00edn", "winner_class": ["ano"], "lng": "13.943888"}, {"votes": ["3", "0", "1", "0", "63", "2", "86", "4", "3", "18", "0", "1", "0", "39", "78", "0", "7", "0", "23", "0", "6", "17", "24", "1", "0", "0", "0", "0", "0", "0", "16", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.291438", "winner": "TOP 09", "id": "583286", "population": 394, "town": "Lelekovice", "winner_class": ["top-09"], "lng": "16.578743"}, {"votes": ["0", "0", "0", "2", "88", "2", "14", "1", "0", "16", "0", "1", "0", "22", "30", "0", "1", "0", "9", "0", "13", "8", "2", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.028584", "winner": "KDU-\u010cSL", "id": "592676", "population": 215, "town": "\u0160umice", "winner_class": ["kdu-csl"], "lng": "17.72205"}, {"votes": ["1", "0", "3", "0", "33", "1", "23", "1", "1", "27", "0", "0", "0", "92", "40", "0", "0", "0", "22", "0", "7", "6", "9", "1", "0", "0", "1", "5", "0", "0", "3", "0", "2", "2", "0", "1", "3", "0"], "lat": "49.689256", "winner": "\u010cSSD", "id": "569631", "population": 284, "town": "Sviadnov", "winner_class": ["cssd"], "lng": "18.327616"}, {"votes": ["0", "1", "0", "4", "11", "13", "50", "1", "0", "26", "0", "0", "0", "15", "42", "0", "0", "0", "12", "0", "6", "12", "11", "0", "3", "3", "0", "0", "0", "0", "19", "0", "0", "0", "0", "0", "1", "1"], "lat": "50.741356", "winner": "TOP 09", "id": "563692", "population": 231, "town": "Lu\u010dany nad Nisou", "winner_class": ["top-09"], "lng": "15.220463"}, {"votes": ["0", "0", "1", "0", "16", "4", "13", "0", "0", "29", "0", "0", "0", "24", "28", "0", "6", "0", "23", "0", "6", "2", "2", "0", "1", "0", "0", "0", "0", "1", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.831039", "winner": "KS\u010cM", "id": "505218", "population": 161, "town": "\u0160umvald", "winner_class": ["kscm"], "lng": "17.132745"}, {"votes": ["0", "1", "0", "0", "9", "2", "38", "1", "1", "20", "0", "0", "0", "29", "34", "2", "0", "0", "16", "0", "5", "1", "6", "0", "0", "5", "0", "1", "1", "0", "2", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.375417", "winner": "TOP 09", "id": "573108", "population": 176, "town": "Lib\u00e1\u0148", "winner_class": ["top-09"], "lng": "15.216844"}, {"votes": ["0", "1", "0", "0", "27", "1", "7", "0", "0", "13", "0", "0", "0", "20", "43", "0", "5", "0", "7", "0", "12", "3", "2", "0", "3", "0", "0", "0", "0", "0", "9", "0", "1", "1", "0", "1", "1", "0"], "lat": "48.836801", "winner": "ANO", "id": "594067", "population": 157, "town": "Hodonice", "winner_class": ["ano"], "lng": "16.163374"}, {"votes": ["0", "0", "0", "0", "61", "1", "16", "0", "2", "31", "0", "0", "0", "68", "33", "0", "0", "0", "19", "0", "10", "6", "12", "0", "1", "1", "0", "2", "2", "0", "11", "0", "1", "1", "0", "0", "0", "0"], "lat": "49.606658", "winner": "\u010cSSD", "id": "512184", "population": 278, "town": "Metylovice", "winner_class": ["cssd"], "lng": "18.339112"}, {"votes": ["0", "0", "0", "0", "68", "3", "18", "1", "0", "22", "0", "0", "0", "24", "27", "0", "5", "0", "9", "0", "10", "7", "2", "0", "3", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.141153", "winner": "KDU-\u010cSL", "id": "585793", "population": 209, "town": "Spytihn\u011bv", "winner_class": ["kdu-csl"], "lng": "17.498082"}, {"votes": ["0", "1", "0", "0", "58", "1", "19", "0", "0", "35", "0", "2", "0", "35", "42", "0", "0", "0", "34", "0", "11", "6", "7", "0", "2", "0", "0", "3", "0", "0", "8", "0", "0", "0", "1", "0", "1", "0"], "lat": "49.569988", "winner": "KDU-\u010cSL", "id": "599956", "population": 266, "town": "Tich\u00e1", "winner_class": ["kdu-csl"], "lng": "18.221479"}, {"votes": ["0", "0", "1", "0", "47", "1", "19", "2", "0", "20", "0", "0", "0", "42", "30", "1", "3", "1", "8", "0", "5", "5", "10", "0", "0", "4", "0", "4", "0", "3", "7", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.313239", "winner": "KDU-\u010cSL", "id": "582913", "population": 215, "town": "\u010ceb\u00edn", "winner_class": ["kdu-csl"], "lng": "16.477913"}, {"votes": ["7", "0", "0", "0", "66", "2", "19", "1", "1", "13", "0", "0", "0", "47", "33", "0", "0", "0", "20", "0", "7", "5", "15", "0", "0", "2", "0", "0", "0", "0", "6", "0", "0", "1", "0", "0", "2", "0"], "lat": "49.441514", "winner": "KDU-\u010cSL", "id": "545198", "population": 247, "town": "Vid\u010de", "winner_class": ["kdu-csl"], "lng": "18.094726"}, {"votes": ["3", "1", "1", "6", "26", "10", "39", "0", "1", "21", "0", "0", "0", "27", "67", "0", "0", "0", "25", "0", "10", "13", "26", "0", "2", "3", "0", "0", "0", "0", "16", "0", "0", "0", "1", "0", "2", "0"], "lat": "48.923727", "winner": "ANO", "id": "545228", "population": 300, "town": "V\u010deln\u00e1", "winner_class": ["ano"], "lng": "14.453834"}, {"votes": ["1", "1", "0", "2", "9", "8", "24", "2", "0", "22", "1", "0", "0", "21", "49", "0", "0", "1", "18", "0", "8", "9", "18", "0", "2", "5", "0", "1", "0", "1", "14", "2", "0", "0", "0", "0", "2", "1"], "lat": "50.635003", "winner": "ANO", "id": "579432", "population": 222, "town": "L\u00e1nov", "winner_class": ["ano"], "lng": "15.658895"}, {"votes": ["0", "1", "1", "0", "20", "3", "34", "1", "3", "33", "0", "0", "0", "32", "22", "0", "0", "0", "13", "1", "4", "6", "5", "1", "0", "0", "0", "1", "1", "0", "15", "0", "0", "3", "0", "0", "1", "0"], "lat": "49.372655", "winner": "TOP 09", "id": "547760", "population": 201, "town": "\u010cernovice", "winner_class": ["top-09"], "lng": "14.960889"}, {"votes": ["4", "0", "2", "0", "69", "3", "22", "0", "1", "11", "0", "0", "0", "33", "20", "0", "0", "0", "10", "0", "8", "3", "13", "0", "0", "2", "1", "0", "1", "0", "10", "0", "0", "0", "0", "0", "5", "0"], "lat": "49.92138", "winner": "KDU-\u010cSL", "id": "580325", "population": 218, "town": "Sloupnice", "winner_class": ["kdu-csl"], "lng": "16.339482"}, {"votes": ["3", "0", "0", "0", "10", "5", "46", "0", "1", "50", "0", "0", "0", "41", "35", "1", "0", "1", "21", "0", "5", "8", "18", "0", "4", "3", "0", "2", "0", "0", "13", "0", "0", "0", "0", "1", "3", "0"], "lat": "50.261481", "winner": "KS\u010cM", "id": "535079", "population": 271, "town": "Nelahozeves", "winner_class": ["kscm"], "lng": "14.29881"}, {"votes": ["1", "0", "0", "1", "34", "5", "38", "1", "0", "19", "0", "0", "0", "19", "58", "0", "0", "0", "14", "7", "9", "5", "19", "0", "2", "1", "1", "0", "0", "0", "10", "0", "1", "0", "0", "1", "1", "0"], "lat": "48.921778", "winner": "ANO", "id": "544299", "population": 247, "town": "Bor\u0161ov nad Vltavou", "winner_class": ["ano"], "lng": "14.433993"}, {"votes": ["2", "0", "0", "0", "10", "6", "42", "2", "5", "22", "0", "0", "1", "27", "37", "0", "0", "1", "7", "0", "11", "4", "8", "0", "4", "1", "1", "0", "0", "1", "10", "2", "0", "0", "1", "0", "2", "0"], "lat": "50.593318", "winner": "TOP 09", "id": "574538", "population": 207, "town": "Teplice nad Metuj\u00ed", "winner_class": ["top-09"], "lng": "16.170257"}, {"votes": ["0", "3", "1", "1", "113", "3", "16", "0", "0", "21", "0", "0", "0", "45", "48", "0", "1", "0", "27", "1", "13", "3", "16", "0", "0", "1", "0", "0", "2", "0", "12", "0", "1", "0", "0", "0", "4", "0"], "lat": "49.53028", "winner": "KDU-\u010cSL", "id": "513768", "population": 332, "town": "Hustope\u010de nad Be\u010dvou", "winner_class": ["kdu-csl"], "lng": "17.872792"}, {"votes": ["1", "1", "0", "2", "22", "10", "34", "0", "0", "33", "0", "0", "0", "30", "34", "0", "0", "0", "17", "2", "6", "4", "6", "0", "1", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.888253", "winner": "TOP 09", "id": "572161", "population": 212, "town": "Ronov nad Doubravou", "winner_class": ["top-09"], "lng": "15.531436"}, {"votes": ["0", "0", "0", "1", "8", "4", "18", "1", "3", "35", "0", "1", "0", "23", "39", "0", "0", "0", "9", "0", "6", "6", "16", "0", "2", "1", "0", "2", "1", "1", "5", "1", "2", "1", "0", "0", "0", "0"], "lat": "50.049691", "winner": "ANO", "id": "533581", "population": 186, "town": "Pla\u0148any", "winner_class": ["ano"], "lng": "15.029562"}, {"votes": ["1", "0", "0", "0", "18", "7", "52", "4", "3", "32", "0", "0", "0", "27", "34", "0", "0", "0", "5", "0", "10", "3", "14", "0", "1", "1", "0", "4", "0", "0", "5", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.389928", "winner": "TOP 09", "id": "556955", "population": 224, "town": "Pl\u00e1nice", "winner_class": ["top-09"], "lng": "13.47106"}, {"votes": ["0", "0", "0", "0", "47", "1", "6", "0", "0", "14", "0", "0", "0", "21", "25", "0", "0", "0", "7", "0", "10", "1", "4", "0", "3", "2", "0", "2", "1", "2", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.07396", "winner": "KDU-\u010cSL", "id": "592862", "population": 152, "town": "Zlechov", "winner_class": ["kdu-csl"], "lng": "17.379383"}, {"votes": ["0", "0", "0", "2", "27", "7", "37", "2", "0", "30", "0", "0", "0", "35", "50", "0", "0", "0", "43", "0", "9", "6", "17", "0", "0", "0", "0", "2", "0", "1", "14", "0", "1", "0", "0", "1", "3", "0"], "lat": "50.2566", "winner": "ANO", "id": "571091", "population": 287, "town": "V\u0161estary", "winner_class": ["ano"], "lng": "15.75983"}, {"votes": ["0", "0", "0", "3", "10", "0", "3", "0", "0", "51", "0", "1", "0", "45", "22", "0", "2", "1", "13", "0", "5", "7", "4", "1", "2", "4", "0", "2", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.668842", "winner": "KS\u010cM", "id": "599212", "population": 180, "town": "Barto\u0161ovice", "winner_class": ["kscm"], "lng": "18.054607"}, {"votes": ["0", "0", "0", "1", "27", "0", "17", "2", "2", "45", "1", "1", "0", "58", "24", "0", "0", "0", "13", "0", "13", "3", "2", "0", "3", "1", "0", "2", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.322516", "winner": "\u010cSSD", "id": "593508", "population": 223, "town": "Pustim\u011b\u0159", "winner_class": ["cssd"], "lng": "17.027923"}, {"votes": ["1", "0", "0", "1", "39", "0", "26", "0", "0", "26", "0", "0", "0", "18", "20", "0", "5", "0", "9", "0", "8", "5", "12", "0", "1", "1", "0", "0", "0", "0", "12", "0", "0", "1", "0", "0", "3", "0"], "lat": "49.121385", "winner": "KDU-\u010cSL", "id": "592081", "population": 188, "town": "B\u0159ezolupy", "winner_class": ["kdu-csl"], "lng": "17.580342"}, {"votes": ["2", "0", "0", "0", "11", "0", "41", "2", "0", "21", "0", "0", "1", "32", "37", "1", "0", "0", "22", "0", "6", "14", "25", "0", "1", "1", "0", "1", "1", "0", "13", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.994859", "winner": "TOP 09", "id": "531464", "population": 233, "town": "Lod\u011bnice", "winner_class": ["top-09"], "lng": "14.157851"}, {"votes": ["0", "0", "0", "0", "17", "3", "11", "0", "0", "32", "0", "0", "0", "36", "28", "0", "3", "0", "8", "0", "5", "7", "2", "0", "4", "0", "0", "0", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.711431", "winner": "\u010cSSD", "id": "572691", "population": 168, "town": "Hradec nad Svitavou", "winner_class": ["cssd"], "lng": "16.480582"}, {"votes": ["0", "0", "1", "0", "180", "1", "10", "0", "1", "31", "0", "0", "0", "19", "18", "0", "4", "0", "6", "1", "3", "6", "7", "0", "0", "2", "0", "1", "0", "0", "13", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.557555", "winner": "KDU-\u010cSL", "id": "582158", "population": 304, "town": "Ole\u0161nice", "winner_class": ["kdu-csl"], "lng": "16.42169"}, {"votes": ["0", "0", "0", "0", "15", "7", "20", "1", "1", "19", "0", "1", "0", "26", "27", "0", "0", "1", "17", "0", "11", "6", "8", "0", "2", "1", "0", "0", "0", "0", "7", "0", "1", "0", "0", "0", "1", "1"], "lat": "49.536452", "winner": "ANO", "id": "589829", "population": 173, "town": "Ol\u0161any u Prost\u011bjova", "winner_class": ["ano"], "lng": "17.164564"}, {"votes": ["0", "0", "0", "2", "28", "3", "9", "0", "1", "11", "0", "1", "0", "23", "36", "0", "3", "0", "14", "1", "7", "6", "10", "0", "0", "1", "0", "1", "0", "0", "13", "0", "2", "0", "0", "0", "0", "0"], "lat": "49.505695", "winner": "ANO", "id": "590029", "population": 172, "town": "Smr\u017eice", "winner_class": ["ano"], "lng": "17.106978"}, {"votes": ["0", "1", "0", "0", "3", "3", "9", "1", "0", "20", "0", "0", "0", "24", "30", "0", "0", "0", "6", "1", "12", "4", "3", "0", "3", "1", "0", "0", "0", "0", "10", "0", "0", "0", "0", "2", "0", "0"], "lat": "48.62019", "winner": "ANO", "id": "545601", "population": 133, "town": "Lou\u010dovice", "winner_class": ["ano"], "lng": "14.257471"}, {"votes": ["0", "2", "1", "1", "11", "5", "39", "0", "0", "19", "0", "0", "0", "28", "58", "0", "0", "2", "22", "2", "9", "5", "10", "0", "1", "0", "0", "1", "0", "0", "9", "0", "1", "0", "0", "2", "0", "0"], "lat": "49.478028", "winner": "ANO", "id": "552461", "population": 228, "town": "Chotoviny", "winner_class": ["ano"], "lng": "14.676945"}, {"votes": ["2", "0", "0", "1", "16", "4", "23", "0", "0", "27", "0", "1", "0", "26", "34", "0", "0", "0", "15", "0", "17", "2", "11", "0", "4", "0", "0", "1", "0", "0", "9", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.571653", "winner": "ANO", "id": "577235", "population": 194, "town": "Ko\u0161\u0165\u00e1lov", "winner_class": ["ano"], "lng": "15.404028"}, {"votes": ["0", "1", "0", "5", "16", "4", "24", "0", "1", "31", "0", "0", "0", "23", "61", "0", "0", "0", "13", "0", "11", "3", "8", "0", "1", "0", "0", "1", "0", "0", "6", "0", "1", "0", "1", "2", "1", "0"], "lat": "50.192421", "winner": "ANO", "id": "538434", "population": 214, "town": "Svatava", "winner_class": ["ano"], "lng": "12.626097"}, {"votes": ["1", "0", "3", "1", "27", "1", "32", "1", "0", "35", "0", "0", "0", "24", "46", "0", "0", "3", "14", "0", "12", "3", "10", "0", "0", "0", "0", "2", "0", "0", "9", "0", "0", "0", "0", "3", "2", "0"], "lat": "50.003185", "winner": "ANO", "id": "580147", "population": 229, "town": "Libchavy", "winner_class": ["ano"], "lng": "16.389702"}, {"votes": ["3", "3", "0", "6", "13", "8", "74", "1", "0", "58", "0", "1", "0", "40", "31", "0", "0", "0", "18", "1", "14", "2", "13", "0", "3", "5", "0", "1", "0", "0", "15", "0", "2", "0", "0", "0", "1", "0"], "lat": "49.481357", "winner": "TOP 09", "id": "557200", "population": 313, "town": "\u0160vihov", "winner_class": ["top-09"], "lng": "13.284173"}, {"votes": ["4", "1", "0", "2", "29", "6", "38", "0", "0", "26", "0", "0", "0", "32", "28", "1", "0", "0", "20", "0", "7", "4", "6", "0", "3", "1", "0", "0", "0", "1", "4", "1", "1", "1", "0", "1", "4", "1"], "lat": "49.170961", "winner": "TOP 09", "id": "544388", "population": 222, "town": "Doln\u00ed Bukovsko", "winner_class": ["top-09"], "lng": "14.58131"}, {"votes": ["0", "0", "0", "0", "64", "2", "19", "1", "0", "4", "0", "0", "0", "31", "32", "0", "2", "0", "14", "0", "7", "1", "8", "1", "0", "0", "0", "0", "0", "0", "12", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.942319", "winner": "KDU-\u010cSL", "id": "506192", "population": 200, "town": "Bohuslavice", "winner_class": ["kdu-csl"], "lng": "18.128658"}, {"votes": ["1", "1", "0", "3", "85", "0", "16", "1", "1", "35", "0", "0", "0", "14", "14", "0", "4", "0", "5", "0", "4", "4", "13", "0", "1", "2", "0", "0", "1", "1", "8", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.121868", "winner": "KDU-\u010cSL", "id": "592692", "population": 216, "town": "Topoln\u00e1", "winner_class": ["kdu-csl"], "lng": "17.544335"}, {"votes": ["2", "1", "0", "0", "32", "4", "16", "0", "0", "21", "0", "0", "1", "42", "43", "0", "0", "1", "8", "0", "8", "8", "8", "0", "0", "2", "0", "0", "0", "1", "9", "2", "0", "0", "0", "0", "0", "0"], "lat": "49.541075", "winner": "ANO", "id": "505366", "population": 209, "town": "Tr\u0161ice", "winner_class": ["ano"], "lng": "17.426973"}, {"votes": ["0", "0", "2", "2", "26", "4", "41", "2", "2", "15", "0", "0", "0", "30", "40", "0", "3", "0", "12", "2", "5", "1", "8", "0", "2", "1", "0", "3", "0", "0", "14", "0", "0", "2", "0", "0", "0", "0"], "lat": "49.412127", "winner": "TOP 09", "id": "513491", "population": 217, "town": "Horn\u00ed Mo\u0161t\u011bnice", "winner_class": ["top-09"], "lng": "17.458792"}, {"votes": ["0", "0", "1", "0", "17", "2", "8", "1", "0", "29", "0", "0", "0", "17", "30", "0", "0", "1", "4", "0", "7", "6", "11", "0", "1", "0", "0", "0", "1", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.89833", "winner": "ANO", "id": "580848", "population": 151, "town": "Rudoltice", "winner_class": ["ano"], "lng": "16.56986"}, {"votes": ["1", "0", "0", "1", "32", "9", "44", "1", "1", "35", "0", "0", "0", "18", "17", "0", "0", "0", "15", "1", "4", "4", "10", "0", "0", "2", "0", "2", "1", "3", "10", "0", "2", "0", "0", "2", "3", "1"], "lat": "49.081351", "winner": "TOP 09", "id": "550663", "population": 219, "town": "Vlachovo B\u0159ez\u00ed", "winner_class": ["top-09"], "lng": "13.958418"}, {"votes": ["0", "0", "0", "1", "1", "4", "7", "0", "1", "16", "0", "0", "1", "17", "13", "0", "0", "0", "3", "0", "5", "3", "1", "2", "1", "0", "0", "0", "0", "0", "2", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.166325", "winner": "\u010cSSD", "id": "560316", "population": 80, "town": "Bukovany", "winner_class": ["cssd"], "lng": "12.572649"}, {"votes": ["1", "3", "0", "0", "21", "7", "34", "5", "3", "41", "1", "1", "1", "60", "46", "1", "3", "4", "14", "1", "23", "10", "10", "1", "1", "5", "0", "7", "6", "2", "17", "0", "0", "1", "0", "0", "2", "0"], "lat": "50.533948", "winner": "\u010cSSD", "id": "579513", "population": 332, "town": "Mal\u00e9 Svato\u0148ovice", "winner_class": ["cssd"], "lng": "16.049781"}, {"votes": ["0", "0", "1", "0", "9", "12", "10", "2", "1", "21", "0", "0", "0", "67", "51", "0", "0", "0", "14", "1", "20", "5", "7", "0", "5", "2", "0", "2", "1", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.070325", "winner": "\u010cSSD", "id": "533246", "population": 232, "town": "Cerhenice", "winner_class": ["cssd"], "lng": "15.068886"}, {"votes": ["3", "0", "0", "1", "41", "7", "30", "2", "0", "34", "0", "0", "0", "35", "27", "0", "0", "2", "18", "1", "9", "8", "16", "0", "2", "3", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.844498", "winner": "KDU-\u010cSL", "id": "571911", "population": 246, "town": "Nasavrky", "winner_class": ["kdu-csl"], "lng": "15.804607"}, {"votes": ["0", "0", "1", "2", "32", "8", "44", "0", "0", "15", "0", "0", "0", "19", "61", "0", "1", "0", "8", "0", "7", "9", "11", "0", "2", "0", "0", "1", "0", "4", "8", "0", "2", "0", "0", "0", "1", "0"], "lat": "49.614719", "winner": "ANO", "id": "554901", "population": 236, "town": "K\u0159elov-B\u0159uchot\u00edn", "winner_class": ["ano"], "lng": "17.19953"}, {"votes": ["1", "1", "1", "1", "20", "6", "34", "2", "0", "18", "0", "1", "0", "25", "30", "0", "0", "0", "19", "1", "4", "4", "8", "0", "1", "1", "0", "4", "0", "0", "5", "0", "0", "0", "0", "1", "0", "1"], "lat": "48.810818", "winner": "TOP 09", "id": "545554", "population": 189, "town": "K\u00e1jov", "winner_class": ["top-09"], "lng": "14.258594"}, {"votes": ["2", "2", "0", "1", "9", "6", "33", "1", "0", "67", "0", "0", "0", "33", "36", "0", "0", "2", "5", "2", "5", "11", "11", "3", "5", "3", "3", "4", "0", "0", "21", "0", "0", "1", "0", "0", "0", "0"], "lat": "50.488591", "winner": "KS\u010cM", "id": "564877", "population": 266, "town": "Ho\u0161tka", "winner_class": ["kscm"], "lng": "14.335"}, {"votes": ["0", "0", "0", "0", "21", "1", "63", "4", "2", "17", "0", "1", "0", "28", "34", "0", "0", "0", "15", "0", "1", "7", "15", "0", "0", "0", "0", "1", "0", "0", "15", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.777347", "winner": "TOP 09", "id": "558851", "population": 226, "town": "D\u00fd\u0161ina", "winner_class": ["top-09"], "lng": "13.491502"}, {"votes": ["0", "0", "0", "1", "29", "6", "24", "1", "2", "37", "0", "0", "0", "25", "64", "0", "2", "0", "11", "0", "15", "6", "5", "0", "2", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.508048", "winner": "ANO", "id": "590185", "population": 241, "town": "Vrb\u00e1tky", "winner_class": ["ano"], "lng": "17.199944"}, {"votes": ["5", "2", "0", "0", "17", "4", "85", "0", "0", "11", "0", "0", "0", "25", "45", "0", "0", "0", "30", "0", "5", "16", "37", "0", "0", "1", "0", "0", "1", "0", "13", "0", "1", "0", "1", "0", "3", "0"], "lat": "49.876782", "winner": "TOP 09", "id": "538680", "population": 302, "town": "Py\u0161ely", "winner_class": ["top-09"], "lng": "14.677133"}, {"votes": ["0", "0", "0", "0", "40", "2", "11", "0", "0", "33", "0", "0", "0", "65", "46", "0", "0", "0", "23", "1", "8", "6", "1", "0", "0", "1", "0", "0", "1", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.6266667", "winner": "\u010cSSD", "id": "500046", "population": 243, "town": "Libho\u0161\u0165", "winner_class": ["cssd"], "lng": "18.0733333"}, {"votes": ["2", "0", "1", "0", "14", "5", "38", "3", "0", "18", "1", "0", "0", "21", "54", "1", "0", "13", "24", "1", "6", "4", "23", "1", "1", "3", "0", "0", "1", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.065399", "winner": "ANO", "id": "575704", "population": 241, "town": "Star\u00e9 Hradi\u0161t\u011b", "winner_class": ["ano"], "lng": "15.778846"}, {"votes": ["0", "1", "0", "0", "9", "2", "11", "0", "0", "17", "0", "0", "0", "27", "25", "0", "0", "0", "11", "0", "3", "5", "4", "0", "0", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.644179", "winner": "\u010cSSD", "id": "505145", "population": 123, "town": "B\u0159ezov\u00e1 nad Svitavou", "winner_class": ["cssd"], "lng": "16.51799"}, {"votes": ["0", "0", "0", "0", "58", "3", "20", "2", "0", "7", "0", "0", "0", "15", "17", "0", "0", "0", "12", "0", "11", "5", "6", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.201743", "winner": "KDU-\u010cSL", "id": "542644", "population": 160, "town": "Francova Lhota", "winner_class": ["kdu-csl"], "lng": "18.111748"}, {"votes": ["1", "0", "0", "0", "7", "6", "76", "0", "1", "24", "1", "0", "0", "21", "55", "0", "0", "0", "14", "1", "4", "13", "24", "0", "1", "2", "0", "2", "1", "0", "28", "0", "0", "0", "0", "0", "6", "1"], "lat": "50.197995", "winner": "TOP 09", "id": "538477", "population": 289, "town": "M\u011b\u0161ice", "winner_class": ["top-09"], "lng": "14.519916"}, {"votes": ["0", "0", "0", "0", "4", "4", "18", "1", "0", "38", "0", "0", "0", "43", "38", "0", "0", "1", "13", "0", "7", "6", "3", "0", "1", "2", "0", "1", "0", "0", "10", "2", "1", "2", "0", "0", "1", "2"], "lat": "50.09703", "winner": "\u010cSSD", "id": "541834", "population": 198, "town": "Jesenice", "winner_class": ["cssd"], "lng": "13.469483"}, {"votes": ["1", "1", "0", "2", "13", "14", "67", "0", "0", "17", "0", "0", "0", "27", "52", "0", "0", "1", "27", "0", "8", "3", "11", "0", "1", "4", "1", "1", "0", "0", "9", "0", "0", "0", "1", "0", "2", "0"], "lat": "50.591544", "winner": "TOP 09", "id": "577316", "population": 263, "town": "M\u00edrov\u00e1 pod Koz\u00e1kovem", "winner_class": ["top-09"], "lng": "15.194242"}, {"votes": ["0", "0", "0", "0", "35", "2", "16", "3", "3", "26", "1", "2", "0", "43", "36", "0", "9", "0", "18", "2", "8", "15", "12", "0", "1", "0", "0", "2", "0", "2", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.011598", "winner": "\u010cSSD", "id": "584231", "population": 248, "town": "\u017dab\u010dice", "winner_class": ["cssd"], "lng": "16.602572"}, {"votes": ["3", "0", "1", "0", "5", "3", "96", "3", "1", "9", "0", "0", "2", "24", "80", "0", "0", "0", "33", "0", "8", "15", "37", "0", "0", "3", "1", "1", "0", "0", "20", "0", "2", "0", "0", "1", "0", "1"], "lat": "49.980498", "winner": "TOP 09", "id": "513458", "population": 349, "town": "Vestec", "winner_class": ["top-09"], "lng": "14.504875"}, {"votes": ["0", "0", "0", "2", "25", "1", "27", "0", "2", "45", "1", "0", "0", "30", "26", "0", "0", "0", "14", "2", "4", "7", "4", "0", "0", "4", "0", "1", "0", "0", "6", "0", "2", "0", "0", "0", "2", "2"], "lat": "50.129475", "winner": "KS\u010cM", "id": "576182", "population": 207, "town": "\u010castolovice", "winner_class": ["kscm"], "lng": "16.184592"}, {"votes": ["0", "0", "0", "0", "64", "3", "47", "2", "0", "11", "0", "0", "0", "25", "57", "0", "10", "0", "36", "0", "3", "20", "17", "0", "2", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.161003", "winner": "KDU-\u010cSL", "id": "583596", "population": 308, "town": "Ostopovice", "winner_class": ["kdu-csl"], "lng": "16.545485"}, {"votes": ["2", "1", "3", "0", "2", "5", "57", "1", "2", "16", "0", "0", "0", "26", "62", "0", "0", "0", "20", "0", "4", "10", "20", "0", "0", "0", "0", "0", "0", "0", "13", "0", "0", "0", "0", "3", "2", "0"], "lat": "50.109642", "winner": "ANO", "id": "533025", "population": 249, "town": "Velk\u00e1 Dobr\u00e1", "winner_class": ["ano"], "lng": "14.069795"}, {"votes": ["0", "0", "0", "2", "6", "7", "17", "0", "1", "43", "0", "0", "0", "29", "35", "0", "0", "0", "16", "1", "5", "1", "4", "0", "3", "1", "0", "2", "1", "0", "5", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.291457", "winner": "KS\u010cM", "id": "570869", "population": 180, "town": "Smidary", "winner_class": ["kscm"], "lng": "15.477249"}, {"votes": ["0", "0", "1", "0", "45", "5", "17", "0", "2", "22", "0", "2", "0", "32", "32", "0", "4", "0", "21", "0", "21", "15", "9", "0", "0", "0", "0", "2", "0", "0", "7", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.389183", "winner": "KDU-\u010cSL", "id": "506737", "population": 239, "town": "Chval\u010dov", "winner_class": ["kdu-csl"], "lng": "17.711486"}, {"votes": ["0", "0", "0", "2", "8", "3", "23", "1", "1", "40", "0", "0", "3", "27", "27", "0", "0", "1", "7", "0", "2", "3", "9", "0", "1", "0", "0", "4", "1", "0", "4", "5", "0", "0", "0", "1", "0", "0"], "lat": "49.510295", "winner": "KS\u010cM", "id": "554111", "population": 173, "town": "Pob\u011b\u017eovice", "winner_class": ["kscm"], "lng": "12.802611"}, {"votes": ["0", "1", "0", "0", "0", "2", "1", "0", "0", "15", "0", "0", "0", "28", "15", "0", "0", "1", "3", "1", "5", "6", "6", "1", "1", "0", "0", "1", "0", "1", "1", "0", "1", "0", "1", "3", "0", "0"], "lat": "50.449718", "winner": "\u010cSSD", "id": "567043", "population": 94, "town": "Be\u010dov", "winner_class": ["cssd"], "lng": "13.717842"}, {"votes": ["1", "0", "0", "0", "19", "2", "21", "0", "0", "28", "0", "2", "0", "46", "24", "0", "0", "0", "15", "0", "6", "0", "7", "0", "1", "0", "0", "5", "1", "1", "3", "0", "1", "2", "0", "0", "2", "0"], "lat": "49.974929", "winner": "\u010cSSD", "id": "510891", "population": 187, "town": "Velk\u00e9 Heraltice", "winner_class": ["cssd"], "lng": "17.72879"}, {"votes": ["1", "2", "0", "1", "13", "4", "25", "0", "6", "15", "0", "0", "0", "24", "26", "0", "1", "0", "11", "1", "13", "4", "8", "0", "2", "0", "0", "3", "0", "2", "7", "0", "1", "0", "0", "1", "1", "0"], "lat": "50.304765", "winner": "ANO", "id": "537756", "population": 172, "town": "Ro\u017e\u010falovice", "winner_class": ["ano"], "lng": "15.169617"}, {"votes": ["0", "0", "0", "3", "29", "4", "5", "0", "1", "42", "0", "0", "0", "37", "21", "0", "3", "0", "6", "0", "4", "2", "3", "0", "1", "0", "0", "0", "2", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.248891", "winner": "KS\u010cM", "id": "589187", "population": 169, "town": "Zborovice", "winner_class": ["kscm"], "lng": "17.284643"}, {"votes": ["0", "0", "0", "0", "16", "7", "50", "4", "2", "28", "0", "0", "0", "29", "22", "0", "0", "0", "14", "0", "5", "6", "2", "0", "1", "3", "1", "1", "0", "2", "11", "0", "1", "0", "0", "0", "3", "0"], "lat": "49.825259", "winner": "TOP 09", "id": "531201", "population": 208, "town": "Hostomice", "winner_class": ["top-09"], "lng": "14.045604"}, {"votes": ["5", "1", "2", "3", "0", "1", "16", "0", "2", "30", "0", "0", "0", "9", "35", "0", "0", "0", "11", "1", "8", "5", "1", "1", "0", "4", "0", "4", "0", "0", "5", "0", "0", "0", "1", "0", "1", "0"], "lat": "50.982514", "winner": "ANO", "id": "562441", "population": 146, "town": "Doln\u00ed Poustevna", "winner_class": ["ano"], "lng": "14.286841"}, {"votes": ["1", "1", "0", "1", "14", "8", "19", "0", "1", "13", "0", "0", "0", "22", "33", "0", "1", "1", "21", "0", "4", "9", "11", "0", "3", "1", "0", "0", "0", "0", "8", "0", "4", "0", "0", "0", "2", "1"], "lat": "49.572053", "winner": "ANO", "id": "502235", "population": 179, "town": "Hn\u011bvot\u00edn", "winner_class": ["ano"], "lng": "17.179536"}, {"votes": ["0", "0", "0", "1", "4", "6", "21", "0", "0", "22", "0", "0", "0", "17", "42", "0", "0", "1", "19", "0", "14", "6", "10", "0", "1", "0", "0", "0", "0", "0", "18", "1", "2", "0", "1", "1", "1", "0"], "lat": "50.009772", "winner": "ANO", "id": "533700", "population": 188, "town": "Star\u00fd Kol\u00edn", "winner_class": ["ano"], "lng": "15.29388"}, {"votes": ["0", "0", "0", "0", "24", "1", "12", "0", "0", "33", "1", "0", "0", "24", "22", "0", "6", "1", "8", "1", "2", "14", "3", "0", "1", "0", "0", "0", "0", "1", "7", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.819278", "winner": "KS\u010cM", "id": "584371", "population": 162, "town": "B\u0159ez\u00ed", "winner_class": ["kscm"], "lng": "16.56748"}, {"votes": ["1", "0", "0", "0", "31", "0", "26", "1", "1", "15", "1", "0", "0", "16", "31", "0", "0", "1", "12", "0", "6", "4", "7", "0", "2", "1", "0", "0", "0", "0", "11", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.197375", "winner": "KDU-\u010cSL", "id": "591742", "population": 169, "town": "Sta\u0159e\u010d", "winner_class": ["kdu-csl"], "lng": "15.826849"}, {"votes": ["1", "1", "0", "0", "36", "11", "25", "2", "1", "24", "0", "1", "1", "36", "32", "0", "3", "0", "5", "1", "3", "8", "13", "0", "1", "1", "0", "2", "1", "1", "7", "1", "1", "0", "0", "0", "1", "0"], "lat": "49.704263", "winner": "KDU-\u010cSL", "id": "500861", "population": 220, "town": "Bouzov", "winner_class": ["kdu-csl"], "lng": "16.892882"}, {"votes": ["0", "0", "0", "1", "42", "1", "11", "0", "0", "8", "0", "0", "1", "24", "18", "0", "0", "0", "14", "1", "2", "1", "7", "0", "0", "2", "0", "0", "0", "0", "8", "0", "0", "1", "0", "1", "0", "0"], "lat": "49.926025", "winner": "KDU-\u010cSL", "id": "510432", "population": 143, "town": "\u0160ilhe\u0159ovice", "winner_class": ["kdu-csl"], "lng": "18.270167"}, {"votes": ["0", "1", "0", "1", "28", "2", "33", "3", "0", "34", "0", "0", "0", "35", "16", "0", "0", "0", "12", "0", "5", "2", "3", "0", "4", "7", "0", "4", "0", "2", "5", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.515552", "winner": "\u010cSSD", "id": "549592", "population": 200, "town": "Mirovice", "winner_class": ["cssd"], "lng": "14.035819"}, {"votes": ["0", "1", "1", "0", "60", "2", "11", "0", "0", "67", "0", "0", "0", "42", "31", "0", "0", "0", "4", "0", "5", "1", "15", "0", "2", "0", "0", "1", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.792725", "winner": "KS\u010cM", "id": "584487", "population": 250, "town": "Hru\u0161ky", "winner_class": ["kscm"], "lng": "16.974044"}, {"votes": ["1", "0", "0", "1", "31", "5", "54", "0", "0", "19", "1", "0", "0", "20", "54", "0", "0", "0", "26", "4", "8", "19", "21", "0", "0", "0", "0", "1", "1", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.018931", "winner": "TOP 09", "id": "544558", "population": 275, "town": "Hrd\u011bjovice", "winner_class": ["top-09"], "lng": "14.478572"}, {"votes": ["2", "1", "1", "2", "22", "2", "17", "0", "1", "22", "1", "0", "0", "42", "35", "0", "5", "0", "18", "0", "9", "5", "10", "0", "4", "1", "0", "0", "0", "1", "7", "1", "1", "1", "0", "0", "2", "0"], "lat": "49.561554", "winner": "\u010cSSD", "id": "505111", "population": 213, "town": "Slatinice", "winner_class": ["cssd"], "lng": "17.09992"}, {"votes": ["1", "2", "0", "3", "56", "3", "18", "0", "3", "25", "0", "1", "1", "40", "22", "0", "2", "0", "13", "0", "4", "4", "3", "0", "0", "3", "0", "0", "3", "0", "9", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.682285", "winner": "KDU-\u010cSL", "id": "598160", "population": 217, "town": "Hnojn\u00edk", "winner_class": ["kdu-csl"], "lng": "18.541283"}, {"votes": ["0", "1", "2", "0", "6", "4", "26", "1", "0", "48", "0", "0", "0", "55", "24", "0", "3", "0", "19", "1", "4", "2", "7", "0", "4", "0", "0", "0", "1", "0", "13", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.753997", "winner": "\u010cSSD", "id": "599506", "population": 223, "town": "Jistebn\u00edk", "winner_class": ["cssd"], "lng": "18.130631"}, {"votes": ["2", "0", "0", "3", "14", "0", "9", "0", "0", "21", "0", "1", "0", "43", "25", "0", "0", "1", "7", "0", "8", "4", "1", "0", "2", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.121845", "winner": "\u010cSSD", "id": "550809", "population": 148, "town": "Bavorov", "winner_class": ["cssd"], "lng": "14.078926"}, {"votes": ["1", "1", "0", "0", "11", "2", "35", "2", "2", "21", "0", "1", "0", "22", "64", "0", "0", "0", "38", "1", "2", "16", "13", "1", "0", "3", "0", "2", "0", "0", "12", "1", "0", "1", "0", "0", "2", "0"], "lat": "50.772087", "winner": "ANO", "id": "577081", "population": 254, "town": "Harrachov", "winner_class": ["ano"], "lng": "15.431413"}, {"votes": ["0", "0", "0", "2", "82", "5", "33", "1", "1", "25", "0", "1", "0", "42", "44", "0", "0", "0", "15", "1", "1", "4", "7", "0", "1", "1", "0", "4", "1", "0", "10", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.688576", "winner": "KDU-\u010cSL", "id": "568945", "population": 282, "town": "Krucemburk", "winner_class": ["kdu-csl"], "lng": "15.85195"}, {"votes": ["0", "0", "0", "0", "17", "3", "44", "1", "0", "14", "0", "0", "0", "32", "47", "0", "0", "0", "16", "0", "7", "5", "7", "0", "5", "1", "0", "1", "0", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.137434", "winner": "ANO", "id": "557528", "population": 215, "town": "\u017delezn\u00e1 Ruda", "winner_class": ["ano"], "lng": "13.2352"}, {"votes": ["0", "1", "0", "0", "49", "4", "13", "3", "0", "16", "0", "0", "0", "30", "25", "0", "3", "0", "8", "0", "12", "5", "6", "0", "6", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.787542", "winner": "KDU-\u010cSL", "id": "552372", "population": 183, "town": "Medlov", "winner_class": ["kdu-csl"], "lng": "17.06261"}, {"votes": ["7", "0", "4", "1", "34", "0", "82", "3", "1", "13", "0", "0", "0", "16", "55", "0", "0", "1", "37", "0", "3", "31", "17", "0", "1", "2", "0", "1", "0", "0", "19", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.928835", "winner": "TOP 09", "id": "539856", "population": 329, "town": "V\u0161enory", "winner_class": ["top-09"], "lng": "14.303924"}, {"votes": ["1", "2", "0", "3", "6", "1", "38", "0", "0", "24", "0", "2", "0", "28", "29", "0", "0", "1", "12", "0", "2", "6", "2", "0", "1", "0", "0", "0", "1", "0", "9", "0", "1", "0", "0", "0", "1", "1"], "lat": "49.142892", "winner": "TOP 09", "id": "556432", "population": 171, "town": "Ka\u0161persk\u00e9 Hory", "winner_class": ["top-09"], "lng": "13.556161"}, {"votes": ["5", "0", "0", "0", "55", "3", "12", "0", "0", "28", "0", "0", "0", "22", "24", "0", "2", "0", "9", "0", "14", "1", "5", "0", "1", "2", "0", "1", "1", "0", "6", "0", "1", "1", "0", "0", "0", "0"], "lat": "49.031596", "winner": "KDU-\u010cSL", "id": "592412", "population": 193, "town": "Nedakonice", "winner_class": ["kdu-csl"], "lng": "17.381411"}, {"votes": ["1", "2", "0", "0", "2", "6", "20", "0", "1", "63", "0", "0", "0", "19", "49", "0", "0", "0", "15", "1", "3", "10", "21", "0", "9", "3", "1", "2", "0", "0", "9", "1", "0", "0", "0", "0", "0", "1"], "lat": "50.538986", "winner": "KS\u010cM", "id": "565849", "population": 239, "town": "Velem\u00edn", "winner_class": ["kscm"], "lng": "13.976752"}, {"votes": ["0", "0", "0", "0", "41", "2", "9", "0", "0", "7", "0", "1", "0", "31", "20", "0", "1", "0", "10", "0", "5", "9", "8", "0", "1", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.945809", "winner": "KDU-\u010cSL", "id": "568244", "population": 155, "town": "V\u0159esina", "winner_class": ["kdu-csl"], "lng": "18.19005"}, {"votes": ["0", "1", "0", "1", "37", "6", "22", "0", "2", "28", "0", "1", "0", "31", "22", "0", "0", "1", "27", "0", "16", "0", "10", "0", "1", "0", "0", "0", "3", "0", "14", "0", "0", "1", "1", "2", "4", "0"], "lat": "49.142799", "winner": "KDU-\u010cSL", "id": "544426", "population": 231, "town": "D\u0159\u00edte\u0148", "winner_class": ["kdu-csl"], "lng": "14.34596"}, {"votes": ["0", "1", "0", "0", "26", "2", "46", "3", "1", "10", "0", "0", "0", "27", "50", "0", "3", "1", "19", "1", "5", "10", "12", "0", "0", "1", "0", "1", "0", "0", "15", "0", "0", "0", "0", "1", "1", "1"], "lat": "49.1168862", "winner": "ANO", "id": "584266", "population": 237, "town": "\u017dele\u0161ice", "winner_class": ["ano"], "lng": "16.5813788"}, {"votes": ["4", "0", "0", "1", "35", "5", "29", "0", "1", "24", "1", "0", "0", "33", "41", "0", "0", "0", "15", "3", "9", "6", "20", "0", "0", "0", "0", "2", "0", "0", "10", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.788438", "winner": "ANO", "id": "529621", "population": 240, "town": "Divi\u0161ov", "winner_class": ["ano"], "lng": "14.875461"}, {"votes": ["1", "0", "0", "1", "15", "0", "14", "0", "0", "15", "0", "3", "0", "32", "39", "0", "0", "0", "21", "1", "9", "0", "6", "0", "0", "2", "1", "1", "0", "0", "5", "0", "2", "0", "0", "5", "4", "1"], "lat": "49.472148", "winner": "ANO", "id": "589730", "population": 178, "town": "Mostkovice", "winner_class": ["ano"], "lng": "17.052116"}, {"votes": ["3", "1", "1", "0", "110", "1", "15", "5", "0", "40", "0", "0", "0", "25", "15", "0", "3", "1", "12", "0", "9", "4", "4", "0", "1", "0", "0", "0", "1", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.975591", "winner": "KDU-\u010cSL", "id": "592455", "population": 257, "town": "Ostro\u017esk\u00e1 Lhota", "winner_class": ["kdu-csl"], "lng": "17.467513"}, {"votes": ["0", "0", "1", "0", "62", "0", "23", "1", "0", "50", "0", "0", "0", "24", "20", "0", "0", "0", "7", "1", "5", "4", "2", "1", "0", "0", "0", "0", "0", "0", "9", "0", "0", "0", "1", "0", "2", "0"], "lat": "49.141873", "winner": "KDU-\u010cSL", "id": "591998", "population": 213, "town": "\u017deletava", "winner_class": ["kdu-csl"], "lng": "15.672999"}, {"votes": ["1", "0", "0", "1", "3", "10", "58", "0", "0", "37", "0", "0", "0", "23", "53", "0", "0", "0", "22", "1", "5", "9", "10", "0", "0", "2", "0", "1", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.990725", "winner": "TOP 09", "id": "531243", "population": 248, "town": "H\u00fdskov", "winner_class": ["top-09"], "lng": "14.050545"}, {"votes": ["3", "0", "0", "0", "36", "5", "8", "0", "4", "19", "0", "0", "0", "32", "31", "0", "0", "0", "7", "0", "7", "6", "6", "0", "2", "0", "0", "0", "0", "2", "5", "0", "1", "0", "0", "2", "2", "1"], "lat": "49.482466", "winner": "KDU-\u010cSL", "id": "501794", "population": 179, "town": "Dub nad Moravou", "winner_class": ["kdu-csl"], "lng": "17.278661"}, {"votes": ["0", "0", "0", "0", "18", "3", "30", "2", "0", "14", "0", "3", "0", "26", "21", "0", "0", "0", "23", "0", "8", "4", "13", "0", "2", "0", "4", "0", "0", "0", "5", "0", "0", "1", "0", "2", "1", "0"], "lat": "49.115028", "winner": "TOP 09", "id": "550167", "population": 180, "town": "\u010ckyn\u011b", "winner_class": ["top-09"], "lng": "13.829059"}, {"votes": ["0", "0", "2", "0", "64", "3", "18", "1", "0", "15", "0", "0", "0", "47", "18", "0", "4", "1", "24", "0", "8", "4", "11", "0", "0", "0", "0", "0", "0", "0", "7", "1", "1", "0", "0", "0", "0", "0"], "lat": "48.904948", "winner": "KDU-\u010cSL", "id": "586323", "population": 229, "town": "Lipov", "winner_class": ["kdu-csl"], "lng": "17.461712"}, {"votes": ["2", "0", "0", "0", "104", "2", "22", "1", "0", "34", "0", "0", "0", "29", "23", "0", "1", "0", "39", "0", "8", "4", "4", "0", "3", "2", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.628459", "winner": "KDU-\u010cSL", "id": "577928", "population": 283, "town": "Bystr\u00e9", "winner_class": ["kdu-csl"], "lng": "16.346788"}, {"votes": ["0", "0", "0", "2", "6", "2", "8", "0", "0", "16", "0", "1", "0", "36", "25", "0", "1", "0", "13", "0", "11", "4", "6", "0", "2", "2", "0", "0", "1", "0", "7", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.015297", "winner": "\u010cSSD", "id": "506320", "population": 144, "town": "Brumovice", "winner_class": ["cssd"], "lng": "17.749579"}, {"votes": ["2", "0", "1", "1", "34", "5", "13", "0", "0", "82", "0", "0", "0", "22", "21", "2", "0", "0", "9", "1", "8", "6", "4", "0", "3", "0", "0", "1", "0", "0", "3", "2", "1", "0", "0", "0", "2", "0"], "lat": "48.761245", "winner": "KS\u010cM", "id": "544515", "population": 223, "town": "Horn\u00ed Stropnice", "winner_class": ["kscm"], "lng": "14.735017"}, {"votes": ["0", "1", "0", "0", "50", "4", "5", "0", "0", "12", "0", "0", "1", "24", "14", "0", "1", "2", "8", "1", "6", "1", "5", "0", "0", "2", "0", "0", "1", "0", "3", "0", "1", "0", "0", "2", "0", "1"], "lat": "49.705361", "winner": "KDU-\u010cSL", "id": "556971", "population": 145, "town": "Ropice", "winner_class": ["kdu-csl"], "lng": "18.61345"}, {"votes": ["0", "2", "0", "2", "54", "0", "11", "0", "2", "49", "0", "0", "0", "47", "31", "0", "1", "0", "29", "0", "11", "2", "4", "0", "2", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.56423", "winner": "KDU-\u010cSL", "id": "599603", "population": 254, "town": "Lichnov", "winner_class": ["kdu-csl"], "lng": "18.168976"}, {"votes": ["3", "0", "0", "0", "48", "3", "32", "0", "2", "19", "0", "0", "0", "34", "29", "0", "1", "0", "27", "1", "6", "5", "8", "0", "3", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.710664", "winner": "KDU-\u010cSL", "id": "596868", "population": 225, "town": "Svratka", "winner_class": ["kdu-csl"], "lng": "16.032137"}, {"votes": ["1", "0", "0", "0", "14", "6", "12", "1", "1", "25", "0", "3", "0", "27", "30", "0", "6", "0", "10", "0", "7", "1", "4", "0", "0", "1", "0", "1", "2", "0", "6", "1", "0", "0", "0", "0", "3", "0"], "lat": "50.045299", "winner": "ANO", "id": "597872", "population": 162, "town": "Sv\u011btl\u00e1 Hora", "winner_class": ["ano"], "lng": "17.400921"}, {"votes": ["0", "1", "0", "0", "8", "10", "23", "0", "4", "45", "0", "0", "1", "15", "23", "0", "0", "1", "19", "0", "1", "12", "4", "1", "2", "2", "0", "4", "0", "0", "12", "0", "0", "0", "0", "0", "2", "1"], "lat": "49.715298", "winner": "KS\u010cM", "id": "560928", "population": 191, "town": "Kladruby", "winner_class": ["kscm"], "lng": "12.97991"}, {"votes": ["1", "1", "1", "1", "5", "2", "11", "0", "4", "30", "0", "0", "0", "20", "36", "1", "0", "1", "16", "0", "11", "4", "4", "0", "1", "2", "1", "0", "0", "1", "7", "0", "0", "1", "0", "0", "0", "1"], "lat": "50.010581", "winner": "ANO", "id": "554600", "population": 163, "town": "L\u00e1zn\u011b Kyn\u017evart", "winner_class": ["ano"], "lng": "12.624737"}, {"votes": ["1", "0", "0", "3", "18", "5", "15", "0", "0", "6", "0", "0", "0", "10", "14", "0", "0", "0", "18", "1", "15", "9", "12", "0", "1", "1", "0", "2", "0", "0", "11", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.290509", "winner": "KDU-\u010cSL", "id": "544396", "population": 143, "town": "Lipt\u00e1l", "winner_class": ["kdu-csl"], "lng": "17.921769"}, {"votes": ["0", "0", "1", "1", "64", "3", "43", "0", "0", "15", "0", "0", "0", "21", "12", "0", "2", "1", "2", "0", "6", "6", "2", "0", "2", "0", "0", "0", "1", "1", "3", "0", "0", "0", "0", "0", "4", "0"], "lat": "49.123774", "winner": "KDU-\u010cSL", "id": "585955", "population": 190, "town": "Vlachovice", "winner_class": ["kdu-csl"], "lng": "17.940013"}, {"votes": ["0", "0", "0", "0", "42", "6", "49", "0", "0", "27", "0", "0", "1", "17", "32", "0", "0", "1", "17", "0", "7", "8", "7", "0", "2", "5", "0", "1", "0", "3", "13", "0", "0", "2", "0", "0", "0", "0"], "lat": "49.517601", "winner": "TOP 09", "id": "549517", "population": 240, "town": "Kov\u00e1\u0159ov", "winner_class": ["top-09"], "lng": "14.278094"}, {"votes": ["2", "0", "0", "2", "3", "5", "41", "0", "1", "23", "1", "0", "0", "22", "31", "0", "0", "0", "27", "0", "4", "5", "7", "0", "1", "1", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.789046", "winner": "TOP 09", "id": "560014", "population": 186, "town": "M\u00fdto", "winner_class": ["top-09"], "lng": "13.734613"}, {"votes": ["0", "1", "0", "0", "37", "1", "11", "0", "1", "15", "0", "1", "0", "18", "14", "0", "2", "0", "22", "0", "5", "1", "12", "0", "2", "0", "0", "2", "0", "0", "10", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.370383", "winner": "KDU-\u010cSL", "id": "589322", "population": 157, "town": "Brodek u Prost\u011bjova", "winner_class": ["kdu-csl"], "lng": "17.091418"}, {"votes": ["3", "0", "1", "1", "14", "1", "9", "0", "2", "49", "0", "0", "0", "21", "24", "0", "3", "0", "10", "1", "11", "1", "2", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.950056", "winner": "KS\u010cM", "id": "594113", "population": 159, "town": "Host\u011bradice", "winner_class": ["kscm"], "lng": "16.259313"}, {"votes": ["0", "0", "0", "2", "30", "2", "13", "1", "0", "31", "0", "0", "0", "28", "25", "0", "0", "0", "15", "0", "6", "8", "12", "0", "1", "1", "0", "0", "0", "0", "11", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.086418", "winner": "KS\u010cM", "id": "593478", "population": 188, "town": "Otnice", "winner_class": ["kscm"], "lng": "16.814428"}, {"votes": ["0", "0", "0", "0", "12", "0", "23", "2", "0", "13", "0", "0", "0", "25", "27", "0", "0", "0", "5", "1", "7", "6", "7", "0", "3", "1", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.537855", "winner": "ANO", "id": "501841", "population": 143, "town": "Grygov", "winner_class": ["ano"], "lng": "17.310837"}, {"votes": ["0", "1", "0", "3", "46", "3", "31", "0", "0", "43", "0", "0", "2", "32", "34", "0", "1", "0", "6", "0", "7", "0", "7", "0", "0", "0", "0", "1", "1", "0", "4", "0", "0", "1", "0", "1", "3", "0"], "lat": "49.654624", "winner": "KDU-\u010cSL", "id": "504441", "population": 227, "town": "N\u00e1klo", "winner_class": ["kdu-csl"], "lng": "17.129688"}, {"votes": ["7", "0", "0", "0", "6", "3", "108", "0", "0", "10", "1", "0", "0", "16", "66", "0", "0", "0", "26", "0", "14", "17", "23", "0", "0", "3", "0", "0", "0", "0", "19", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.934662", "winner": "TOP 09", "id": "539902", "population": 320, "town": "Zvole", "winner_class": ["top-09"], "lng": "14.417689"}, {"votes": ["0", "0", "0", "1", "17", "1", "35", "3", "0", "11", "0", "0", "0", "31", "47", "0", "3", "0", "18", "0", "3", "2", "16", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.332933", "winner": "ANO", "id": "582972", "population": 192, "town": "Dr\u00e1sov", "winner_class": ["ano"], "lng": "16.478006"}, {"votes": ["2", "0", "0", "0", "11", "1", "75", "5", "1", "27", "0", "0", "0", "24", "65", "0", "0", "0", "36", "0", "7", "17", "13", "0", "0", "1", "0", "10", "0", "0", "13", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.891051", "winner": "TOP 09", "id": "539163", "population": 311, "town": "Davle", "winner_class": ["top-09"], "lng": "14.399911"}, {"votes": ["1", "0", "0", "0", "18", "2", "6", "1", "1", "30", "0", "0", "0", "22", "17", "0", "2", "0", "9", "0", "3", "3", "7", "0", "1", "1", "0", "0", "0", "0", "5", "0", "0", "2", "0", "0", "2", "0"], "lat": "48.800888", "winner": "KS\u010cM", "id": "594873", "population": 133, "town": "\u0160anov", "winner_class": ["kscm"], "lng": "16.378581"}, {"votes": ["1", "0", "0", "3", "7", "4", "44", "0", "3", "36", "0", "0", "0", "19", "72", "0", "0", "0", "20", "1", "2", "7", "22", "0", "0", "0", "0", "0", "0", "0", "13", "5", "1", "0", "0", "2", "0", "0"], "lat": "50.118998", "winner": "ANO", "id": "532223", "population": 262, "town": "Doksy", "winner_class": ["ano"], "lng": "14.047821"}, {"votes": ["0", "0", "0", "0", "10", "4", "39", "3", "1", "6", "0", "0", "0", "21", "39", "0", "0", "0", "24", "0", "5", "7", "11", "0", "1", "0", "0", "0", "1", "0", "8", "0", "0", "0", "1", "0", "2", "0"], "lat": "50.438092", "winner": "TOP 09", "id": "535052", "population": 183, "town": "M\u0161eno", "winner_class": ["top-09"], "lng": "14.632502"}, {"votes": ["0", "1", "0", "0", "29", "4", "14", "0", "0", "34", "0", "0", "0", "18", "23", "0", "2", "1", "13", "0", "1", "15", "2", "0", "4", "1", "0", "3", "0", "1", "5", "0", "0", "0", "1", "0", "0", "0"], "lat": "49.709265", "winner": "KS\u010cM", "id": "578380", "population": 172, "town": "M\u011bste\u010dko Trn\u00e1vka", "winner_class": ["kscm"], "lng": "16.727436"}, {"votes": ["1", "1", "0", "2", "15", "3", "21", "0", "1", "22", "0", "0", "0", "13", "22", "0", "0", "0", "8", "0", "9", "4", "3", "0", "0", "5", "0", "0", "0", "1", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.156342", "winner": "KS\u010cM", "id": "554545", "population": 136, "town": "Hazlov", "winner_class": ["kscm"], "lng": "12.272378"}, {"votes": ["0", "0", "1", "1", "1", "12", "36", "0", "0", "4", "0", "0", "0", "9", "40", "0", "0", "0", "8", "0", "7", "4", "4", "0", "2", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "4", "1", "0"], "lat": "50.745115", "winner": "ANO", "id": "562025", "population": 138, "town": "Skalice u \u010cesk\u00e9 L\u00edpy", "winner_class": ["ano"], "lng": "14.530559"}, {"votes": ["0", "0", "1", "2", "5", "2", "7", "3", "0", "26", "0", "0", "0", "20", "10", "0", "4", "0", "13", "0", "4", "6", "1", "0", "4", "2", "0", "2", "1", "0", "3", "0", "0", "0", "0", "3", "0", "0"], "lat": "48.836868", "winner": "KS\u010cM", "id": "593826", "population": 119, "town": "Bo\u017eice", "winner_class": ["kscm"], "lng": "16.288754"}, {"votes": ["0", "2", "1", "2", "38", "2", "15", "0", "0", "17", "0", "1", "0", "10", "29", "0", "6", "0", "9", "0", "7", "2", "1", "0", "1", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.42594", "winner": "KDU-\u010cSL", "id": "513229", "population": 147, "town": "D\u0159evohostice", "winner_class": ["kdu-csl"], "lng": "17.592012"}, {"votes": ["0", "0", "0", "2", "61", "1", "38", "1", "0", "5", "0", "0", "0", "44", "34", "0", "3", "0", "14", "0", "9", "4", "11", "0", "0", "3", "0", "1", "0", "0", "6", "0", "1", "1", "0", "0", "1", "0"], "lat": "49.10187", "winner": "KDU-\u010cSL", "id": "583979", "population": 240, "town": "Telnice", "winner_class": ["kdu-csl"], "lng": "16.717745"}, {"votes": ["1", "0", "1", "0", "20", "2", "26", "0", "0", "37", "0", "0", "0", "41", "26", "0", "2", "0", "16", "0", "5", "2", "13", "0", "0", "1", "0", "1", "0", "2", "6", "0", "0", "0", "1", "0", "1", "2"], "lat": "49.566024", "winner": "\u010cSSD", "id": "595586", "population": 206, "town": "Hamry nad S\u00e1zavou", "winner_class": ["cssd"], "lng": "15.901687"}, {"votes": ["0", "0", "1", "1", "51", "3", "51", "0", "0", "39", "0", "0", "0", "30", "36", "0", "0", "0", "20", "0", "8", "3", "8", "0", "1", "3", "0", "2", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.121189", "winner": "KDU-\u010cSL", "id": "546615", "population": 268, "town": "Kun\u017eak", "winner_class": ["kdu-csl"], "lng": "15.190284"}, {"votes": ["0", "0", "1", "0", "24", "5", "20", "3", "0", "27", "0", "0", "0", "25", "46", "0", "1", "1", "14", "0", "5", "4", "13", "0", "2", "0", "1", "0", "1", "0", "10", "2", "0", "0", "0", "0", "2", "0"], "lat": "49.158465", "winner": "ANO", "id": "547239", "population": 207, "town": "Strmilov", "winner_class": ["ano"], "lng": "15.199338"}, {"votes": ["1", "0", "2", "0", "51", "2", "9", "0", "0", "26", "0", "0", "0", "14", "25", "0", "4", "0", "20", "0", "8", "2", "13", "0", "0", "0", "1", "0", "0", "0", "9", "0", "0", "0", "0", "1", "0", "0"], "lat": "48.832854", "winner": "KDU-\u010cSL", "id": "584673", "population": 188, "town": "Moravsk\u00fd \u017di\u017ekov", "winner_class": ["kdu-csl"], "lng": "16.931397"}, {"votes": ["0", "0", "1", "2", "36", "8", "15", "0", "0", "35", "0", "0", "0", "38", "35", "0", "1", "0", "21", "0", "14", "6", "10", "0", "0", "1", "0", "2", "0", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.718363", "winner": "\u010cSSD", "id": "598674", "population": 233, "town": "Sedli\u0161t\u011b", "winner_class": ["cssd"], "lng": "18.368688"}, {"votes": ["2", "0", "1", "0", "38", "3", "35", "0", "0", "30", "0", "0", "0", "52", "24", "0", "0", "0", "14", "0", "7", "7", "12", "0", "2", "2", "0", "0", "0", "0", "9", "0", "0", "0", "1", "0", "0", "1"], "lat": "49.352531", "winner": "\u010cSSD", "id": "549746", "population": 240, "town": "P\u0159edkl\u00e1\u0161te\u0159\u00ed", "winner_class": ["cssd"], "lng": "16.402407"}, {"votes": ["2", "0", "0", "0", "50", "0", "36", "0", "0", "17", "0", "1", "0", "47", "27", "0", "0", "0", "10", "1", "4", "4", "3", "0", "1", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.849175", "winner": "KDU-\u010cSL", "id": "509736", "population": 207, "town": "Pust\u00e1 Polom", "winner_class": ["kdu-csl"], "lng": "17.997898"}, {"votes": ["0", "2", "1", "1", "3", "8", "7", "0", "0", "54", "0", "0", "0", "33", "30", "0", "0", "3", "14", "1", "5", "10", "2", "0", "1", "1", "0", "5", "1", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.132075", "winner": "KS\u010cM", "id": "566438", "population": 189, "town": "Lubenec", "winner_class": ["kscm"], "lng": "13.313189"}, {"votes": ["0", "1", "0", "0", "7", "5", "44", "1", "1", "52", "0", "0", "0", "41", "35", "0", "1", "0", "16", "0", "1", "9", "8", "0", "3", "2", "0", "1", "0", "0", "9", "0", "0", "1", "0", "0", "5", "0"], "lat": "49.775983", "winner": "KS\u010cM", "id": "559814", "population": 243, "town": "Holoubkov", "winner_class": ["kscm"], "lng": "13.692458"}, {"votes": ["2", "0", "0", "0", "2", "0", "39", "0", "1", "54", "0", "0", "0", "33", "25", "0", "0", "0", "14", "0", "4", "4", "2", "0", "0", "0", "0", "0", "0", "0", "9", "0", "0", "3", "0", "0", "0", "0"], "lat": "49.774349", "winner": "KS\u010cM", "id": "531995", "population": 192, "town": "Zaje\u010dov", "winner_class": ["kscm"], "lng": "13.840717"}, {"votes": ["3", "1", "0", "1", "5", "5", "20", "1", "2", "28", "1", "1", "0", "25", "45", "0", "0", "14", "8", "0", "4", "5", "6", "0", "0", "3", "1", "5", "2", "0", "9", "1", "0", "0", "0", "0", "2", "0"], "lat": "50.060148", "winner": "ANO", "id": "575593", "population": 198, "town": "Rybitv\u00ed", "winner_class": ["ano"], "lng": "15.704721"}, {"votes": ["0", "3", "0", "1", "29", "5", "10", "3", "0", "14", "0", "0", "0", "29", "29", "0", "2", "0", "6", "0", "4", "3", "4", "0", "6", "3", "0", "1", "0", "0", "6", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.718792", "winner": "KDU-\u010cSL", "id": "552186", "population": 160, "town": "\u010cervenka", "winner_class": ["kdu-csl"], "lng": "17.083702"}, {"votes": ["0", "1", "0", "0", "23", "5", "11", "2", "0", "18", "0", "2", "0", "18", "35", "0", "5", "0", "8", "2", "11", "8", "9", "0", "1", "0", "0", "0", "0", "0", "8", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.463561", "winner": "ANO", "id": "589659", "population": 169, "town": "Kralice na Han\u00e9", "winner_class": ["ano"], "lng": "17.179991"}, {"votes": ["0", "1", "0", "1", "12", "1", "43", "0", "0", "24", "0", "0", "0", "50", "42", "0", "0", "0", "9", "0", "3", "8", "8", "0", "2", "2", "0", "0", "0", "0", "9", "0", "3", "0", "0", "1", "0", "0"], "lat": "49.640428", "winner": "\u010cSSD", "id": "558141", "population": 219, "town": "Nezv\u011bstice", "winner_class": ["cssd"], "lng": "13.519619"}, {"votes": ["0", "2", "0", "0", "3", "3", "16", "0", "1", "18", "0", "0", "0", "22", "22", "1", "0", "0", "7", "0", "7", "4", "3", "0", "2", "0", "0", "1", "2", "0", "6", "2", "1", "0", "0", "1", "3", "1"], "lat": "50.568859", "winner": "\u010cSSD", "id": "565121", "population": 128, "town": "Lib\u011b\u0161ice", "winner_class": ["cssd"], "lng": "14.289064"}, {"votes": ["3", "0", "0", "0", "3", "4", "23", "0", "2", "34", "0", "1", "0", "11", "24", "0", "0", "0", "28", "0", "7", "8", "2", "0", "2", "0", "0", "1", "0", "0", "5", "0", "0", "0", "1", "0", "0", "0"], "lat": "50.321386", "winner": "KS\u010cM", "id": "535028", "population": 159, "town": "Lu\u017eec nad Vltavou", "winner_class": ["kscm"], "lng": "14.400217"}, {"votes": ["0", "2", "0", "0", "44", "2", "14", "1", "0", "16", "0", "0", "0", "73", "41", "0", "0", "0", "22", "0", "15", "2", "7", "0", "0", "1", "0", "2", "1", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.669921", "winner": "\u010cSSD", "id": "552551", "population": 251, "town": "Star\u00e9 M\u011bsto", "winner_class": ["cssd"], "lng": "18.363495"}, {"votes": ["0", "0", "0", "0", "27", "1", "6", "0", "0", "52", "0", "1", "0", "41", "14", "0", "2", "0", "4", "1", "7", "2", "4", "0", "2", "0", "1", "2", "0", "1", "6", "0", "0", "0", "0", "0", "3", "1"], "lat": "49.177261", "winner": "KS\u010cM", "id": "593257", "population": 178, "town": "Letonice", "winner_class": ["kscm"], "lng": "16.959131"}, {"votes": ["1", "0", "1", "1", "14", "8", "26", "0", "0", "11", "0", "0", "0", "22", "29", "0", "0", "0", "10", "0", "7", "5", "7", "1", "0", "1", "0", "0", "1", "0", "2", "2", "0", "0", "0", "1", "4", "0"], "lat": "49.215986", "winner": "ANO", "id": "585998", "population": 154, "town": "Z\u00e1dve\u0159ice-Rakov\u00e1", "winner_class": ["ano"], "lng": "17.803579"}, {"votes": ["0", "0", "1", "1", "10", "5", "35", "0", "1", "27", "0", "0", "0", "13", "43", "0", "0", "14", "19", "1", "0", "15", "33", "0", "1", "2", "0", "1", "0", "0", "14", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.084896", "winner": "ANO", "id": "575682", "population": 238, "town": "Srch", "winner_class": ["ano"], "lng": "15.763427"}, {"votes": ["2", "1", "0", "3", "7", "0", "9", "0", "0", "22", "0", "0", "0", "20", "14", "0", "0", "0", "9", "0", "7", "2", "3", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "2", "0"], "lat": "48.872951", "winner": "KS\u010cM", "id": "585050", "population": 104, "town": "Zaje\u010d\u00ed", "winner_class": ["kscm"], "lng": "16.766461"}, {"votes": ["0", "0", "0", "1", "7", "3", "17", "0", "4", "19", "0", "0", "0", "36", "28", "0", "0", "2", "12", "0", "1", "2", "2", "0", "1", "1", "0", "2", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.522589", "winner": "\u010cSSD", "id": "565083", "population": 144, "town": "K\u0159e\u0161ice", "winner_class": ["cssd"], "lng": "14.2145"}, {"votes": ["0", "0", "0", "0", "22", "1", "3", "2", "0", "46", "0", "0", "0", "33", "16", "0", "0", "0", "5", "1", "4", "2", "4", "0", "0", "2", "0", "2", "0", "0", "8", "1", "0", "0", "0", "1", "0", "0"], "lat": "49.657702", "winner": "KS\u010cM", "id": "599832", "population": 153, "town": "Sedlnice", "winner_class": ["kscm"], "lng": "18.086901"}, {"votes": ["0", "2", "0", "0", "24", "3", "13", "0", "2", "27", "0", "0", "0", "14", "32", "0", "1", "0", "10", "1", "5", "2", "1", "0", "3", "0", "0", "0", "0", "0", "10", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.461086", "winner": "ANO", "id": "552119", "population": 152, "town": "V\u011brovany", "winner_class": ["ano"], "lng": "17.287947"}, {"votes": ["2", "0", "0", "0", "3", "5", "27", "0", "0", "17", "0", "0", "0", "20", "30", "0", "0", "0", "10", "0", "5", "3", "4", "0", "1", "5", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.993892", "winner": "ANO", "id": "559067", "population": 138, "town": "Ko\u017elany", "winner_class": ["ano"], "lng": "13.541065"}, {"votes": ["1", "1", "0", "0", "19", "1", "35", "0", "1", "9", "0", "1", "0", "35", "42", "0", "2", "0", "10", "0", "13", "3", "4", "0", "0", "1", "0", "1", "0", "1", "7", "0", "1", "0", "0", "0", "5", "0"], "lat": "49.490089", "winner": "ANO", "id": "558419", "population": 193, "town": "Dr\u017eovice", "winner_class": ["ano"], "lng": "17.131288"}, {"votes": ["0", "0", "0", "0", "23", "0", "11", "1", "0", "21", "0", "0", "0", "17", "20", "0", "1", "0", "8", "0", "7", "5", "2", "0", "0", "1", "0", "0", "1", "1", "11", "0", "0", "1", "0", "0", "2", "1"], "lat": "49.587365", "winner": "KDU-\u010cSL", "id": "552411", "population": 134, "town": "P\u0159\u00e1slavice", "winner_class": ["kdu-csl"], "lng": "17.390441"}, {"votes": ["2", "0", "0", "1", "4", "3", "61", "2", "0", "16", "0", "0", "0", "14", "26", "0", "0", "0", "19", "1", "16", "9", "25", "0", "0", "2", "0", "1", "0", "0", "13", "0", "1", "0", "0", "2", "1", "0"], "lat": "50.203086", "winner": "TOP 09", "id": "539228", "population": 219, "town": "Holubice", "winner_class": ["top-09"], "lng": "14.292841"}, {"votes": ["0", "1", "0", "1", "25", "5", "15", "0", "0", "27", "0", "0", "0", "14", "16", "0", "0", "0", "5", "0", "6", "1", "5", "0", "2", "0", "0", "0", "1", "0", "8", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.113963", "winner": "KS\u010cM", "id": "591173", "population": 134, "town": "Mohelno", "winner_class": ["kscm"], "lng": "16.190784"}, {"votes": ["2", "0", "0", "5", "8", "4", "42", "3", "3", "26", "0", "0", "0", "24", "36", "0", "0", "0", "20", "0", "7", "7", "16", "0", "2", "0", "0", "0", "0", "0", "12", "0", "7", "1", "0", "0", "2", "0"], "lat": "50.108065", "winner": "TOP 09", "id": "537705", "population": 227, "town": "Po\u0159\u00ed\u010dany", "winner_class": ["top-09"], "lng": "14.918179"}, {"votes": ["0", "0", "0", "0", "14", "2", "19", "0", "0", "13", "0", "0", "0", "21", "25", "0", "0", "0", "10", "0", "4", "4", "11", "0", "0", "3", "0", "0", "0", "2", "11", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.81179", "winner": "ANO", "id": "534617", "population": 141, "town": "Zbraslavice", "winner_class": ["ano"], "lng": "15.183191"}, {"votes": ["0", "0", "1", "0", "2", "3", "24", "2", "0", "24", "0", "0", "0", "29", "30", "0", "0", "0", "8", "3", "7", "19", "5", "0", "1", "0", "0", "2", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.661563", "winner": "ANO", "id": "545481", "population": 165, "town": "Frymburk", "winner_class": ["ano"], "lng": "14.165504"}, {"votes": ["0", "1", "0", "0", "4", "5", "19", "0", "2", "19", "0", "0", "0", "16", "34", "0", "1", "1", "14", "0", "16", "0", "6", "0", "3", "1", "0", "2", "0", "0", "12", "0", "0", "0", "0", "1", "2", "0"], "lat": "50.375162", "winner": "ANO", "id": "566322", "population": 159, "town": "Lene\u0161ice", "winner_class": ["ano"], "lng": "13.765895"}, {"votes": ["0", "0", "0", "1", "4", "3", "21", "1", "3", "27", "0", "0", "1", "12", "35", "0", "0", "0", "6", "1", "12", "8", "11", "0", "7", "1", "0", "0", "0", "1", "13", "0", "3", "1", "1", "1", "0", "0"], "lat": "50.555283", "winner": "ANO", "id": "565962", "population": 174, "town": "\u017ditenice", "winner_class": ["ano"], "lng": "14.156645"}, {"votes": ["0", "0", "0", "4", "30", "1", "73", "4", "4", "18", "0", "0", "0", "17", "64", "0", "1", "5", "19", "0", "7", "13", "33", "0", "0", "0", "0", "0", "0", "0", "27", "1", "0", "0", "0", "1", "3", "2"], "lat": "50.132435", "winner": "TOP 09", "id": "574848", "population": 327, "town": "B\u00fd\u0161\u0165", "winner_class": ["top-09"], "lng": "15.91116"}, {"votes": ["1", "0", "0", "0", "54", "8", "20", "0", "2", "23", "0", "0", "0", "40", "43", "0", "0", "0", "24", "0", "0", "3", "11", "0", "4", "1", "0", "1", "0", "1", "5", "0", "0", "1", "0", "1", "0", "0"], "lat": "49.623558", "winner": "KDU-\u010cSL", "id": "529486", "population": 243, "town": "\u010cechtice", "winner_class": ["kdu-csl"], "lng": "15.048086"}, {"votes": ["3", "0", "0", "0", "23", "3", "19", "0", "0", "54", "0", "0", "0", "23", "29", "1", "0", "0", "19", "0", "15", "5", "18", "0", "3", "0", "1", "5", "0", "1", "19", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.39678", "winner": "KS\u010cM", "id": "552801", "population": 241, "town": "Opa\u0159any", "winner_class": ["kscm"], "lng": "14.481373"}, {"votes": ["0", "0", "0", "4", "6", "2", "10", "0", "0", "28", "0", "0", "0", "33", "17", "0", "3", "0", "11", "0", "4", "3", "5", "0", "2", "0", "0", "0", "0", "0", "1", "0", "0", "5", "0", "0", "0", "0"], "lat": "49.833319", "winner": "\u010cSSD", "id": "597317", "population": 134, "town": "Dvorce", "winner_class": ["cssd"], "lng": "17.547619"}, {"votes": ["1", "0", "0", "1", "3", "3", "31", "1", "2", "18", "0", "0", "1", "19", "37", "0", "0", "0", "12", "1", "9", "3", "6", "0", "0", "0", "0", "1", "0", "0", "6", "0", "0", "0", "0", "1", "5", "0"], "lat": "50.184887", "winner": "ANO", "id": "542351", "population": 161, "town": "\u0158evni\u010dov", "winner_class": ["ano"], "lng": "13.808234"}, {"votes": ["3", "0", "0", "4", "19", "0", "59", "0", "0", "31", "0", "0", "0", "21", "61", "1", "0", "0", "13", "1", "4", "5", "42", "1", "2", "0", "0", "0", "0", "0", "9", "0", "2", "0", "0", "0", "1", "1"], "lat": "49.023387", "winner": "ANO", "id": "544272", "population": 280, "town": "Borek", "winner_class": ["ano"], "lng": "14.500884"}, {"votes": ["1", "0", "0", "0", "1", "3", "14", "1", "0", "19", "1", "0", "0", "15", "28", "0", "0", "2", "6", "0", "3", "2", "1", "0", "1", "0", "0", "1", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.893796", "winner": "ANO", "id": "572071", "population": 104, "town": "Prachovice", "winner_class": ["ano"], "lng": "15.628716"}, {"votes": ["1", "0", "0", "4", "79", "0", "23", "0", "1", "9", "0", "0", "0", "17", "21", "0", "0", "1", "1", "0", "11", "4", "6", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.262151", "winner": "KDU-\u010cSL", "id": "544990", "population": 181, "town": "Vala\u0161sk\u00e1 Polanka", "winner_class": ["kdu-csl"], "lng": "17.996672"}, {"votes": ["1", "1", "2", "0", "12", "5", "49", "0", "0", "35", "0", "0", "0", "14", "35", "1", "0", "1", "10", "0", "4", "1", "3", "0", "2", "1", "0", "1", "0", "0", "8", "1", "5", "1", "0", "0", "0", "0"], "lat": "49.299201", "winner": "TOP 09", "id": "556467", "population": 193, "town": "Kolinec", "winner_class": ["top-09"], "lng": "13.439178"}, {"votes": ["2", "0", "0", "3", "42", "3", "47", "1", "1", "17", "0", "0", "0", "17", "46", "0", "0", "0", "20", "2", "7", "5", "14", "0", "0", "2", "0", "0", "0", "1", "6", "2", "1", "0", "0", "0", "1", "0"], "lat": "48.97619", "winner": "TOP 09", "id": "544442", "population": 240, "town": "Dubn\u00e9", "winner_class": ["top-09"], "lng": "14.360379"}, {"votes": ["1", "0", "0", "4", "4", "5", "42", "0", "1", "17", "0", "0", "0", "18", "41", "0", "0", "0", "16", "0", "15", "3", "14", "0", "2", "1", "0", "1", "0", "0", "13", "0", "0", "0", "0", "1", "1", "0"], "lat": "50.831633", "winner": "TOP 09", "id": "564231", "population": 200, "town": "Mn\u00ed\u0161ek", "winner_class": ["top-09"], "lng": "15.056295"}, {"votes": ["1", "0", "0", "0", "63", "3", "9", "3", "0", "17", "2", "0", "0", "11", "16", "0", "0", "0", "21", "1", "8", "4", "3", "0", "1", "0", "0", "0", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0"], "lat": "49.270779", "winner": "KDU-\u010cSL", "id": "590843", "population": 166, "town": "Kn\u011b\u017eice", "winner_class": ["kdu-csl"], "lng": "15.672165"}, {"votes": ["0", "1", "1", "0", "12", "0", "19", "1", "0", "31", "0", "0", "0", "26", "38", "0", "0", "0", "13", "0", "12", "10", "13", "0", "0", "1", "0", "0", "0", "0", "3", "2", "0", "0", "0", "0", "2", "0"], "lat": "50.070593", "winner": "ANO", "id": "533858", "population": 185, "town": "Veltruby", "winner_class": ["ano"], "lng": "15.184542"}, {"votes": ["0", "1", "0", "4", "2", "6", "36", "0", "0", "24", "0", "0", "0", "34", "33", "1", "0", "1", "17", "1", "5", "0", "6", "0", "6", "1", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.044912", "winner": "TOP 09", "id": "559695", "population": 188, "town": "\u017dihle", "winner_class": ["top-09"], "lng": "13.375019"}, {"votes": ["0", "0", "0", "0", "42", "1", "8", "0", "0", "20", "0", "0", "0", "27", "30", "0", "2", "1", "19", "0", "4", "4", "17", "0", "0", "2", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.881957", "winner": "KDU-\u010cSL", "id": "586480", "population": 184, "town": "Petrov", "winner_class": ["kdu-csl"], "lng": "17.278095"}, {"votes": ["0", "1", "1", "1", "20", "2", "14", "0", "1", "9", "0", "0", "1", "21", "35", "0", "0", "0", "11", "0", "8", "4", "12", "0", "4", "2", "0", "1", "0", "0", "7", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.916843", "winner": "ANO", "id": "509612", "population": 156, "town": "Otice", "winner_class": ["ano"], "lng": "17.86982"}, {"votes": ["0", "1", "0", "3", "2", "7", "12", "0", "1", "13", "0", "0", "0", "27", "27", "0", "0", "0", "11", "1", "9", "4", "2", "0", "3", "0", "0", "3", "0", "0", "16", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.863243", "winner": "\u010cSSD", "id": "562530", "population": 144, "town": "Ch\u0159ibsk\u00e1", "winner_class": ["cssd"], "lng": "14.48297"}, {"votes": ["4", "0", "0", "1", "24", "1", "20", "0", "1", "15", "0", "0", "0", "21", "25", "0", "6", "0", "13", "0", "5", "3", "4", "0", "0", "0", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.89746", "winner": "ANO", "id": "584924", "population": 150, "town": "\u0160akvice", "winner_class": ["ano"], "lng": "16.714239"}, {"votes": ["0", "0", "1", "0", "9", "11", "13", "0", "2", "20", "0", "1", "0", "40", "45", "0", "3", "0", "16", "0", "9", "2", "6", "0", "0", "1", "0", "2", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.998429", "winner": "ANO", "id": "507113", "population": 187, "town": "Holasovice", "winner_class": ["ano"], "lng": "17.808468"}, {"votes": ["2", "0", "0", "0", "5", "4", "84", "5", "1", "21", "0", "0", "0", "10", "72", "0", "0", "0", "27", "1", "6", "9", "26", "0", "0", "3", "0", "1", "0", "0", "17", "0", "1", "0", "0", "1", "0", "1"], "lat": "49.925625", "winner": "TOP 09", "id": "538833", "population": 297, "town": "Sulice", "winner_class": ["top-09"], "lng": "14.556632"}, {"votes": ["2", "0", "0", "1", "78", "2", "18", "1", "0", "21", "0", "0", "1", "23", "38", "0", "3", "0", "11", "0", "10", "2", "6", "1", "1", "6", "0", "2", "0", "0", "5", "0", "1", "0", "0", "0", "0", "1"], "lat": "49.937085", "winner": "KDU-\u010cSL", "id": "510343", "population": 234, "town": "St\u011bbo\u0159ice", "winner_class": ["kdu-csl"], "lng": "17.805468"}, {"votes": ["0", "0", "0", "2", "1", "0", "25", "1", "2", "25", "0", "0", "1", "16", "38", "0", "0", "1", "6", "4", "9", "3", "8", "0", "2", "0", "0", "1", "0", "4", "7", "1", "0", "0", "0", "0", "3", "0"], "lat": "50.440933", "winner": "ANO", "id": "563340", "population": 160, "town": "Spo\u0159ice", "winner_class": ["ano"], "lng": "13.391817"}, {"votes": ["1", "1", "0", "5", "23", "5", "41", "0", "0", "32", "0", "0", "0", "37", "29", "0", "0", "2", "22", "0", "9", "8", "8", "0", "2", "2", "0", "4", "1", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.001945", "winner": "TOP 09", "id": "579947", "population": 239, "town": "Brand\u00fds nad Orlic\u00ed", "winner_class": ["top-09"], "lng": "16.285279"}, {"votes": ["0", "0", "0", "0", "16", "3", "9", "0", "0", "22", "0", "1", "0", "41", "38", "0", "0", "0", "1", "0", "8", "5", "3", "0", "0", "1", "0", "1", "1", "0", "5", "1", "1", "0", "0", "0", "0", "0"], "lat": "49.763969", "winner": "\u010cSSD", "id": "505501", "population": 157, "town": "\u00dajezd", "winner_class": ["cssd"], "lng": "17.180405"}, {"votes": ["2", "0", "0", "0", "3", "4", "20", "1", "0", "19", "0", "0", "0", "18", "41", "0", "0", "0", "26", "0", "4", "1", "10", "0", "2", "0", "0", "1", "1", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.372458", "winner": "ANO", "id": "573272", "population": 161, "town": "Ostrom\u011b\u0159", "winner_class": ["ano"], "lng": "15.549487"}, {"votes": ["0", "0", "1", "0", "8", "3", "30", "1", "6", "24", "0", "0", "0", "19", "43", "0", "0", "0", "11", "2", "2", "4", "8", "2", "3", "1", "0", "4", "0", "0", "4", "1", "0", "0", "0", "0", "0", "1"], "lat": "50.16462", "winner": "ANO", "id": "538591", "population": 178, "town": "Doln\u00ed Rychnov", "winner_class": ["ano"], "lng": "12.645075"}, {"votes": ["0", "1", "3", "3", "40", "2", "14", "1", "1", "14", "0", "0", "0", "41", "24", "0", "6", "1", "4", "0", "9", "3", "8", "0", "1", "1", "2", "1", "1", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.465925", "winner": "\u010cSSD", "id": "517607", "population": 186, "town": "Rokytnice", "winner_class": ["cssd"], "lng": "17.3912"}, {"votes": ["0", "2", "0", "3", "22", "1", "25", "1", "0", "50", "0", "0", "0", "20", "34", "0", "0", "0", "31", "0", "13", "12", "8", "1", "5", "3", "0", "3", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.136863", "winner": "KS\u010cM", "id": "550621", "population": 241, "town": "Vacov", "winner_class": ["kscm"], "lng": "13.729106"}, {"votes": ["0", "0", "0", "2", "23", "6", "51", "1", "1", "14", "0", "0", "0", "16", "39", "1", "0", "1", "10", "1", "8", "5", "13", "0", "0", "0", "0", "2", "0", "0", "2", "1", "0", "0", "0", "0", "4", "0"], "lat": "49.261273", "winner": "TOP 09", "id": "556301", "population": 201, "town": "Hr\u00e1dek", "winner_class": ["top-09"], "lng": "13.498498"}, {"votes": ["2", "1", "0", "0", "7", "3", "5", "1", "0", "10", "0", "0", "0", "22", "19", "0", "23", "0", "4", "0", "3", "4", "1", "2", "0", "1", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.752092", "winner": "Moravan\u00e9", "id": "594032", "population": 112, "town": "Hevl\u00edn", "winner_class": ["moravane"], "lng": "16.381312"}, {"votes": ["0", "0", "0", "0", "7", "1", "19", "1", "0", "26", "0", "0", "0", "22", "17", "0", "2", "1", "5", "0", "3", "1", "10", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.009962", "winner": "KS\u010cM", "id": "525804", "population": 117, "town": "Bohd\u00edkov", "winner_class": ["kscm"], "lng": "16.904333"}, {"votes": ["0", "0", "0", "2", "15", "1", "35", "0", "2", "33", "0", "0", "0", "23", "38", "0", "0", "0", "14", "0", "6", "8", "7", "0", "2", "2", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.428308", "winner": "ANO", "id": "549843", "population": 194, "town": "Sepekov", "winner_class": ["ano"], "lng": "14.417626"}, {"votes": ["0", "0", "0", "0", "24", "0", "8", "0", "1", "15", "0", "0", "0", "21", "31", "0", "1", "2", "5", "2", "10", "2", "7", "0", "0", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.836097", "winner": "ANO", "id": "594920", "population": 138, "town": "Tasovice", "winner_class": ["ano"], "lng": "16.155585"}, {"votes": ["0", "0", "0", "1", "100", "0", "11", "0", "0", "14", "0", "1", "0", "22", "9", "0", "1", "1", "8", "0", "2", "4", "1", "0", "0", "1", "0", "0", "0", "0", "7", "1", "0", "0", "0", "0", "2", "0"], "lat": "49.181216", "winner": "KDU-\u010cSL", "id": "542725", "population": 186, "town": "Horn\u00ed Lide\u010d", "winner_class": ["kdu-csl"], "lng": "18.060992"}, {"votes": ["1", "1", "1", "0", "7", "5", "33", "3", "0", "29", "0", "0", "0", "39", "41", "0", "0", "2", "30", "1", "8", "7", "8", "0", "1", "5", "0", "2", "0", "0", "9", "1", "1", "0", "1", "0", "4", "0"], "lat": "50.035891", "winner": "ANO", "id": "575607", "population": 240, "town": "\u0158e\u010dany nad Labem", "winner_class": ["ano"], "lng": "15.47735"}, {"votes": ["0", "0", "0", "0", "16", "0", "10", "0", "0", "20", "0", "0", "0", "19", "13", "0", "2", "0", "8", "0", "3", "10", "3", "0", "1", "0", "0", "2", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.430452", "winner": "KS\u010cM", "id": "590126", "population": 114, "town": "Ur\u010dice", "winner_class": ["kscm"], "lng": "17.072909"}, {"votes": ["0", "0", "2", "1", "1", "3", "16", "0", "0", "20", "1", "0", "0", "15", "26", "0", "0", "0", "12", "1", "9", "5", "21", "0", "0", "0", "1", "2", "3", "2", "9", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.393135", "winner": "ANO", "id": "534765", "population": 152, "town": "Doln\u00ed Be\u0159kovice", "winner_class": ["ano"], "lng": "14.450243"}, {"votes": ["2", "1", "0", "2", "2", "14", "35", "1", "0", "20", "0", "0", "0", "23", "18", "0", "0", "0", "5", "1", "2", "3", "6", "0", "2", "1", "0", "2", "0", "0", "7", "2", "0", "2", "0", "1", "0", "0"], "lat": "49.500005", "winner": "TOP 09", "id": "553450", "population": 152, "town": "Bl\u00ed\u017eejov", "winner_class": ["top-09"], "lng": "12.989257"}, {"votes": ["0", "0", "2", "0", "7", "3", "61", "0", "2", "14", "0", "0", "0", "18", "49", "0", "0", "0", "9", "1", "4", "13", "16", "0", "1", "3", "0", "3", "0", "1", "13", "0", "1", "0", "0", "1", "2", "1"], "lat": "50.20514", "winner": "TOP 09", "id": "538051", "population": 225, "town": "Ba\u0161\u0165", "winner_class": ["top-09"], "lng": "14.477298"}, {"votes": ["0", "1", "0", "0", "24", "1", "17", "0", "0", "19", "0", "0", "0", "23", "36", "0", "0", "0", "6", "0", "7", "2", "11", "0", "2", "0", "0", "1", "0", "0", "4", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.895232", "winner": "ANO", "id": "540544", "population": 157, "town": "Oskava", "winner_class": ["ano"], "lng": "17.132143"}, {"votes": ["6", "0", "0", "1", "5", "6", "10", "0", "1", "25", "0", "0", "1", "28", "20", "0", "3", "0", "8", "1", "6", "5", "4", "1", "1", "2", "0", "3", "0", "0", "6", "0", "0", "0", "1", "0", "0", "0"], "lat": "50.063508", "winner": "\u010cSSD", "id": "597210", "population": 144, "town": "Brantice", "winner_class": ["cssd"], "lng": "17.629108"}, {"votes": ["0", "1", "0", "3", "16", "0", "66", "0", "1", "11", "0", "0", "0", "9", "50", "0", "0", "1", "27", "0", "6", "10", "17", "0", "3", "1", "0", "1", "0", "0", "15", "0", "0", "2", "0", "2", "0", "0"], "lat": "50.153374", "winner": "TOP 09", "id": "571113", "population": 242, "town": "Vysok\u00e1 nad Labem", "winner_class": ["top-09"], "lng": "15.824737"}, {"votes": ["1", "1", "0", "1", "42", "3", "14", "1", "0", "11", "0", "0", "0", "38", "43", "1", "3", "0", "9", "0", "5", "6", "8", "0", "4", "1", "0", "1", "0", "0", "14", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.404265", "winner": "ANO", "id": "581976", "population": 208, "town": "Lomnice", "winner_class": ["ano"], "lng": "16.413894"}, {"votes": ["0", "0", "1", "0", "35", "1", "19", "0", "0", "35", "0", "0", "0", "33", "16", "0", "6", "0", "13", "0", "12", "3", "7", "0", "0", "1", "0", "0", "0", "6", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.43612", "winner": "KDU-\u010cSL", "id": "581542", "population": 194, "town": "Doubravice nad Svitavou", "winner_class": ["kdu-csl"], "lng": "16.629773"}, {"votes": ["0", "0", "0", "0", "1", "4", "17", "1", "0", "39", "0", "0", "0", "28", "39", "0", "0", "0", "13", "1", "6", "6", "1", "0", "3", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.370092", "winner": "KS\u010cM", "id": "546861", "population": 161, "town": "Dobrom\u011b\u0159ice", "winner_class": ["kscm"], "lng": "13.794732"}, {"votes": ["0", "0", "0", "1", "28", "1", "35", "1", "0", "37", "0", "0", "0", "51", "28", "0", "1", "0", "9", "0", "2", "7", "7", "0", "5", "2", "0", "0", "0", "0", "5", "0", "4", "0", "0", "0", "0", "0"], "lat": "49.456917", "winner": "\u010cSSD", "id": "596175", "population": 224, "town": "Nedv\u011bdice", "winner_class": ["cssd"], "lng": "16.334198"}, {"votes": ["0", "0", "0", "1", "10", "4", "16", "0", "3", "18", "0", "0", "0", "21", "24", "0", "0", "0", "38", "1", "4", "5", "6", "0", "1", "3", "0", "2", "1", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.368894", "winner": "ODS", "id": "549266", "population": 166, "town": "Bernartice", "winner_class": ["ods"], "lng": "14.381014"}, {"votes": ["2", "1", "0", "0", "14", "4", "14", "7", "0", "16", "0", "0", "0", "5", "21", "0", "0", "0", "5", "1", "8", "6", "3", "0", "1", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.487551", "winner": "ANO", "id": "579815", "population": 118, "town": "V\u00edt\u011bzn\u00e1", "winner_class": ["ano"], "lng": "15.799816"}, {"votes": ["0", "0", "0", "2", "32", "3", "55", "0", "0", "12", "0", "0", "0", "19", "45", "0", "0", "0", "15", "2", "9", "4", "24", "1", "1", "0", "0", "3", "0", "0", "3", "4", "0", "0", "0", "0", "0", "0"], "lat": "48.938896", "winner": "TOP 09", "id": "544493", "population": 234, "town": "Homole", "winner_class": ["top-09"], "lng": "14.429473"}, {"votes": ["0", "0", "0", "1", "1", "4", "12", "1", "2", "27", "0", "0", "0", "17", "20", "0", "0", "0", "9", "1", "23", "4", "5", "0", "2", "1", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.13192", "winner": "KS\u010cM", "id": "533947", "population": 135, "town": "\u017di\u017eelice", "winner_class": ["kscm"], "lng": "15.393197"}, {"votes": ["0", "0", "0", "0", "4", "7", "24", "0", "0", "40", "0", "0", "0", "25", "39", "0", "0", "0", "10", "0", "10", "6", "4", "0", "3", "2", "0", "0", "0", "2", "9", "0", "0", "0", "0", "2", "2", "0"], "lat": "50.36138", "winner": "KS\u010cM", "id": "542628", "population": 189, "town": "\u010cern\u010dice", "winner_class": ["kscm"], "lng": "13.845213"}, {"votes": ["0", "2", "1", "0", "7", "11", "9", "0", "1", "20", "0", "0", "0", "11", "21", "0", "0", "0", "5", "1", "3", "1", "11", "1", "5", "2", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.729187", "winner": "ANO", "id": "561444", "population": 115, "town": "Brni\u0161t\u011b", "winner_class": ["ano"], "lng": "14.703385"}, {"votes": ["0", "1", "0", "0", "1", "7", "38", "2", "0", "9", "0", "0", "0", "11", "34", "0", "0", "0", "19", "0", "1", "12", "13", "0", "0", "0", "0", "1", "0", "2", "14", "0", "0", "0", "0", "1", "1", "1"], "lat": "50.772042", "winner": "TOP 09", "id": "563595", "population": 168, "town": "Janov nad Nisou", "winner_class": ["top-09"], "lng": "15.169134"}, {"votes": ["0", "1", "0", "0", "7", "14", "9", "1", "7", "30", "0", "0", "0", "17", "24", "0", "0", "1", "19", "0", "3", "3", "0", "1", "5", "5", "0", "0", "0", "0", "10", "1", "0", "0", "0", "1", "4", "1"], "lat": "50.966631", "winner": "KS\u010cM", "id": "564494", "population": 164, "town": "Vi\u0161\u0148ov\u00e1", "winner_class": ["kscm"], "lng": "15.024948"}, {"votes": ["1", "0", "0", "1", "14", "4", "9", "0", "0", "26", "0", "0", "0", "38", "36", "0", "0", "0", "5", "0", "10", "3", "2", "0", "0", "3", "0", "1", "0", "0", "7", "0", "2", "0", "0", "1", "0", "0"], "lat": "49.627351", "winner": "\u010cSSD", "id": "577863", "population": 163, "town": "Brn\u011bnec", "winner_class": ["cssd"], "lng": "16.52202"}, {"votes": ["1", "2", "0", "1", "13", "1", "63", "2", "1", "22", "0", "0", "0", "25", "50", "0", "0", "0", "26", "2", "4", "10", "13", "0", "6", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.04588", "winner": "TOP 09", "id": "538884", "population": 250, "town": "\u0160kvorec", "winner_class": ["top-09"], "lng": "14.729868"}, {"votes": ["0", "0", "0", "0", "39", "0", "28", "0", "0", "13", "0", "0", "0", "27", "27", "0", "0", "0", "31", "1", "5", "2", "2", "0", "1", "3", "1", "2", "0", "0", "14", "0", "0", "1", "0", "3", "1", "0"], "lat": "49.274511", "winner": "KDU-\u010cSL", "id": "551201", "population": 201, "town": "Katovice", "winner_class": ["kdu-csl"], "lng": "13.828239"}, {"votes": ["1", "2", "0", "0", "73", "1", "16", "0", "3", "14", "0", "0", "0", "16", "34", "0", "0", "2", "10", "0", "7", "2", "8", "0", "1", "3", "0", "1", "0", "0", "10", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.7724", "winner": "KDU-\u010cSL", "id": "571661", "population": 205, "town": "Krouna", "winner_class": ["kdu-csl"], "lng": "16.026741"}, {"votes": ["1", "0", "0", "0", "22", "5", "15", "1", "0", "15", "1", "0", "0", "26", "17", "0", "0", "0", "13", "0", "6", "4", "5", "0", "0", "1", "0", "0", "0", "1", "13", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.054959", "winner": "\u010cSSD", "id": "550230", "population": 147, "town": "Husinec", "winner_class": ["cssd"], "lng": "13.986972"}, {"votes": ["1", "0", "0", "1", "43", "7", "74", "1", "2", "15", "14", "0", "0", "27", "50", "0", "0", "0", "12", "1", "5", "16", "15", "0", "0", "2", "0", "2", "0", "0", "11", "1", "0", "1", "0", "0", "1", "0"], "lat": "49.904615", "winner": "TOP 09", "id": "538582", "population": 302, "town": "Ond\u0159ejov", "winner_class": ["top-09"], "lng": "14.784205"}, {"votes": ["4", "0", "0", "0", "53", "4", "11", "1", "10", "22", "0", "1", "0", "32", "28", "0", "1", "0", "5", "1", "4", "2", "4", "1", "5", "1", "0", "3", "0", "0", "5", "0", "0", "0", "0", "1", "1", "1"], "lat": "49.791581", "winner": "KDU-\u010cSL", "id": "506451", "population": 201, "town": "B\u0159ezov\u00e1", "winner_class": ["kdu-csl"], "lng": "17.865557"}, {"votes": ["0", "3", "0", "0", "7", "3", "8", "0", "0", "21", "0", "0", "1", "12", "22", "0", "0", "1", "10", "0", "5", "3", "5", "0", "0", "1", "0", "0", "2", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.794554", "winner": "ANO", "id": "578282", "population": 110, "town": "Kun\u010dina", "winner_class": ["ano"], "lng": "16.627632"}, {"votes": ["0", "0", "0", "0", "52", "0", "29", "0", "4", "12", "0", "0", "0", "30", "43", "0", "0", "0", "24", "1", "4", "3", "9", "0", "1", "3", "0", "0", "0", "1", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.079813", "winner": "KDU-\u010cSL", "id": "583936", "population": 220, "town": "Syrovice", "winner_class": ["kdu-csl"], "lng": "16.546461"}, {"votes": ["0", "1", "0", "0", "70", "4", "19", "4", "2", "11", "0", "0", "1", "16", "34", "0", "0", "0", "7", "0", "9", "10", "5", "0", "1", "0", "0", "1", "0", "0", "16", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.554262", "winner": "KDU-\u010cSL", "id": "541044", "population": 211, "town": "Petrovice", "winner_class": ["kdu-csl"], "lng": "14.337367"}, {"votes": ["0", "0", "2", "0", "3", "4", "0", "0", "0", "22", "1", "1", "0", "30", "6", "0", "0", "0", "5", "0", "4", "0", "0", "0", "0", "0", "0", "1", "0", "0", "5", "1", "0", "0", "0", "0", "7", "0"], "lat": "50.251837", "winner": "\u010cSSD", "id": "597449", "population": 92, "town": "Jind\u0159ichov", "winner_class": ["cssd"], "lng": "17.519026"}, {"votes": ["1", "0", "0", "1", "17", "2", "4", "0", "0", "15", "0", "0", "0", "33", "22", "0", "1", "0", "3", "2", "7", "0", "2", "0", "0", "4", "0", "0", "0", "0", "3", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.37234", "winner": "\u010cSSD", "id": "541303", "population": 119, "town": "Vidnava", "winner_class": ["cssd"], "lng": "17.186256"}, {"votes": ["1", "0", "0", "0", "68", "4", "4", "0", "0", "0", "0", "2", "1", "19", "2", "0", "1", "0", "4", "1", "4", "1", "1", "0", "0", "1", "0", "0", "0", "0", "3", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.107786", "winner": "KDU-\u010cSL", "id": "585530", "population": 119, "town": "Neda\u0161ov", "winner_class": ["kdu-csl"], "lng": "18.070356"}, {"votes": ["3", "1", "0", "0", "11", "4", "32", "0", "1", "26", "0", "0", "0", "33", "30", "0", "0", "0", "14", "1", "9", "7", "8", "0", "1", "0", "0", "2", "0", "0", "4", "1", "0", "0", "0", "2", "1", "0"], "lat": "50.126775", "winner": "\u010cSSD", "id": "537438", "population": 191, "town": "Libice nad Cidlinou", "winner_class": ["cssd"], "lng": "15.178201"}, {"votes": ["1", "0", "0", "1", "19", "3", "29", "4", "1", "15", "0", "0", "0", "25", "34", "0", "0", "1", "15", "0", "5", "7", "9", "0", "0", "2", "0", "0", "0", "0", "11", "0", "0", "0", "0", "1", "3", "0"], "lat": "49.099636", "winner": "ANO", "id": "545121", "population": 186, "town": "\u0160ev\u011bt\u00edn", "winner_class": ["ano"], "lng": "14.572013"}, {"votes": ["1", "0", "0", "0", "17", "5", "24", "0", "4", "43", "1", "0", "0", "29", "46", "0", "0", "0", "18", "0", "3", "9", "13", "0", "1", "1", "0", "1", "0", "0", "8", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.444651", "winner": "ANO", "id": "579068", "population": 226, "town": "B\u00edl\u00e1 T\u0159eme\u0161n\u00e1", "winner_class": ["ano"], "lng": "15.741014"}, {"votes": ["2", "1", "0", "2", "19", "3", "42", "0", "1", "38", "0", "0", "0", "25", "43", "0", "0", "3", "11", "1", "4", "14", "8", "0", "3", "1", "0", "1", "0", "0", "9", "0", "1", "0", "0", "0", "2", "0"], "lat": "50.685589", "winner": "ANO", "id": "577693", "population": 234, "town": "Vysok\u00e9 nad Jizerou", "winner_class": ["ano"], "lng": "15.401525"}, {"votes": ["1", "0", "1", "0", "10", "3", "15", "2", "0", "25", "0", "0", "0", "21", "21", "0", "0", "5", "8", "0", "3", "1", "5", "0", "2", "0", "0", "1", "0", "0", "4", "0", "0", "1", "1", "0", "0", "0"], "lat": "49.922261", "winner": "KS\u010cM", "id": "572179", "population": 130, "town": "Rosice", "winner_class": ["kscm"], "lng": "15.951272"}, {"votes": ["0", "1", "0", "0", "15", "0", "13", "0", "2", "5", "0", "0", "0", "18", "14", "0", "1", "0", "8", "1", "8", "2", "2", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.991299", "winner": "\u010cSSD", "id": "509574", "population": 96, "town": "Old\u0159i\u0161ov", "winner_class": ["cssd"], "lng": "17.960739"}, {"votes": ["1", "0", "0", "0", "2", "6", "12", "2", "0", "24", "0", "0", "0", "16", "22", "0", "0", "0", "11", "1", "1", "3", "5", "0", "1", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.889585", "winner": "KS\u010cM", "id": "534668", "population": 116, "town": "\u017dleby", "winner_class": ["kscm"], "lng": "15.488529"}, {"votes": ["0", "0", "0", "0", "58", "1", "23", "0", "0", "10", "1", "0", "1", "17", "28", "0", "0", "0", "16", "0", "5", "3", "16", "0", "3", "0", "0", "0", "0", "0", "10", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.593175", "winner": "KDU-\u010cSL", "id": "505269", "population": 194, "town": "T\u011b\u0161etice", "winner_class": ["kdu-csl"], "lng": "17.126069"}, {"votes": ["3", "0", "0", "2", "17", "2", "41", "0", "1", "14", "0", "0", "0", "22", "20", "0", "0", "0", "4", "0", "8", "4", "5", "0", "0", "0", "0", "2", "0", "0", "6", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.303261", "winner": "TOP 09", "id": "557137", "population": 154, "town": "Str\u00e1\u017eov", "winner_class": ["top-09"], "lng": "13.246235"}, {"votes": ["0", "0", "1", "1", "59", "5", "14", "0", "0", "13", "0", "0", "0", "24", "25", "0", "5", "0", "4", "2", "5", "3", "10", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "4", "0"], "lat": "49.038284", "winner": "KDU-\u010cSL", "id": "586129", "population": 176, "town": "Dambo\u0159ice", "winner_class": ["kdu-csl"], "lng": "16.917572"}, {"votes": ["0", "2", "0", "1", "32", "3", "5", "1", "1", "9", "0", "0", "0", "38", "23", "0", "0", "0", "18", "0", "4", "2", "3", "0", "0", "0", "0", "1", "0", "0", "5", "0", "0", "0", "0", "5", "1", "1"], "lat": "49.93592", "winner": "\u010cSSD", "id": "568228", "population": 155, "town": "Darkovice", "winner_class": ["cssd"], "lng": "18.222127"}, {"votes": ["1", "1", "0", "0", "4", "5", "13", "0", "1", "20", "0", "0", "0", "13", "43", "0", "0", "0", "8", "0", "6", "6", "9", "0", "6", "2", "0", "1", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.48418", "winner": "ANO", "id": "564711", "population": 142, "town": "\u010c\u00ed\u017ekovice", "winner_class": ["ano"], "lng": "14.028394"}, {"votes": ["0", "1", "0", "1", "53", "3", "15", "1", "0", "28", "0", "0", "0", "25", "18", "0", "3", "0", "4", "1", "4", "4", "4", "0", "0", "1", "0", "1", "0", "0", "7", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.425036", "winner": "KDU-\u010cSL", "id": "581364", "population": 176, "town": "Bo\u0159itov", "winner_class": ["kdu-csl"], "lng": "16.591186"}, {"votes": ["0", "0", "0", "0", "104", "1", "7", "1", "0", "3", "0", "0", "1", "15", "6", "0", "0", "0", "18", "1", "6", "1", "3", "0", "0", "2", "0", "0", "0", "0", "1", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.551145", "winner": "KDU-\u010cSL", "id": "511935", "population": 172, "town": "Bukovec", "winner_class": ["kdu-csl"], "lng": "18.82683"}, {"votes": ["1", "0", "0", "0", "73", "5", "42", "0", "0", "13", "0", "0", "0", "13", "26", "0", "0", "2", "20", "1", "4", "0", "12", "0", "1", "5", "0", "0", "1", "2", "5", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.978596", "winner": "KDU-\u010cSL", "id": "580112", "population": 228, "town": "Doln\u00ed \u010cermn\u00e1", "winner_class": ["kdu-csl"], "lng": "16.565123"}, {"votes": ["1", "0", "2", "1", "7", "3", "48", "2", "0", "10", "0", "0", "0", "26", "46", "0", "1", "0", "15", "0", "0", "11", "17", "0", "1", "0", "0", "0", "0", "0", "12", "0", "1", "0", "0", "1", "0", "0"], "lat": "50.032754", "winner": "TOP 09", "id": "539350", "population": 205, "town": "Jino\u010dany", "winner_class": ["top-09"], "lng": "14.268681"}, {"votes": ["0", "0", "0", "2", "4", "4", "31", "1", "0", "20", "0", "0", "0", "19", "42", "0", "0", "1", "15", "2", "5", "12", "9", "0", "2", "5", "0", "2", "0", "0", "11", "0", "0", "0", "0", "5", "0", "1"], "lat": "50.283517", "winner": "ANO", "id": "537446", "population": 193, "town": "Lou\u010de\u0148", "winner_class": ["ano"], "lng": "15.019991"}, {"votes": ["0", "1", "0", "1", "3", "1", "7", "1", "0", "25", "0", "0", "0", "13", "31", "0", "0", "0", "12", "0", "6", "2", "7", "0", "0", "1", "0", "4", "0", "0", "9", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.505628", "winner": "ANO", "id": "565431", "population": 125, "town": "Polepy", "winner_class": ["ano"], "lng": "14.264468"}, {"votes": ["0", "1", "0", "0", "46", "1", "26", "0", "0", "14", "1", "0", "0", "26", "20", "0", "2", "0", "6", "0", "6", "4", "2", "0", "4", "2", "0", "0", "0", "0", "9", "0", "2", "0", "0", "0", "0", "0"], "lat": "49.756937", "winner": "KDU-\u010cSL", "id": "540480", "population": 172, "town": "Moravi\u010dany", "winner_class": ["kdu-csl"], "lng": "16.960421"}, {"votes": ["0", "0", "0", "1", "31", "5", "13", "0", "1", "14", "0", "0", "0", "39", "21", "0", "0", "0", "9", "0", "5", "7", "8", "0", "1", "0", "0", "2", "0", "2", "3", "0", "0", "0", "0", "4", "1", "0"], "lat": "50.212498", "winner": "\u010cSSD", "id": "576425", "population": 167, "town": "Kvasiny", "winner_class": ["cssd"], "lng": "16.263229"}, {"votes": ["0", "0", "1", "0", "62", "3", "22", "0", "0", "26", "0", "0", "0", "24", "17", "0", "3", "2", "9", "1", "2", "9", "7", "0", "0", "2", "0", "2", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.913026", "winner": "KDU-\u010cSL", "id": "584347", "population": 203, "town": "Bo\u0159etice", "winner_class": ["kdu-csl"], "lng": "16.853063"}, {"votes": ["0", "0", "0", "0", "8", "4", "220", "0", "4", "16", "0", "0", "0", "23", "15", "0", "0", "0", "6", "1", "2", "3", "1", "0", "1", "0", "0", "0", "0", "0", "4", "2", "0", "0", "0", "0", "1", "2"], "lat": "49.935064", "winner": "TOP 09", "id": "553379", "population": 313, "town": "Doln\u00ed Stud\u00e9nky", "winner_class": ["top-09"], "lng": "16.971073"}, {"votes": ["0", "0", "0", "1", "14", "5", "11", "1", "1", "38", "1", "0", "0", "27", "42", "0", "0", "0", "18", "2", "6", "4", "6", "0", "2", "1", "1", "1", "0", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.264357", "winner": "ANO", "id": "537411", "population": 197, "town": "K\u0159inec", "winner_class": ["ano"], "lng": "15.1394"}, {"votes": ["3", "0", "2", "3", "34", "0", "29", "0", "0", "12", "0", "0", "0", "22", "29", "0", "1", "0", "21", "0", "8", "8", "18", "0", "0", "2", "0", "2", "0", "0", "12", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.012024", "winner": "KDU-\u010cSL", "id": "584720", "population": 207, "town": "Nosislav", "winner_class": ["kdu-csl"], "lng": "16.65451"}, {"votes": ["0", "0", "0", "2", "10", "4", "27", "0", "0", "15", "1", "0", "0", "18", "29", "0", "0", "0", "16", "1", "3", "5", "7", "0", "1", "0", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.481231", "winner": "ANO", "id": "573299", "population": 149, "town": "Pecka", "winner_class": ["ano"], "lng": "15.608404"}, {"votes": ["1", "1", "0", "0", "57", "0", "13", "0", "1", "23", "0", "0", "0", "34", "29", "0", "1", "0", "11", "0", "2", "2", "5", "0", "1", "2", "0", "0", "0", "0", "1", "2", "0", "1", "0", "0", "0", "0"], "lat": "49.688916", "winner": "KDU-\u010cSL", "id": "595594", "population": 187, "town": "Her\u00e1lec", "winner_class": ["kdu-csl"], "lng": "15.994315"}, {"votes": ["0", "0", "0", "1", "61", "3", "14", "0", "1", "19", "0", "0", "1", "7", "24", "0", "0", "0", "8", "0", "6", "5", "12", "0", "0", "2", "0", "3", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.567179", "winner": "KDU-\u010cSL", "id": "568392", "population": 174, "town": "Doloplazy", "winner_class": ["kdu-csl"], "lng": "17.411474"}, {"votes": ["1", "0", "0", "0", "5", "5", "36", "2", "0", "13", "0", "0", "0", "37", "40", "0", "0", "1", "13", "2", "10", "6", "9", "0", "1", "1", "0", "1", "0", "0", "20", "0", "0", "0", "0", "0", "5", "0"], "lat": "50.543662", "winner": "ANO", "id": "536971", "population": 208, "town": "\u017d\u010f\u00e1r", "winner_class": ["ano"], "lng": "15.080341"}, {"votes": ["0", "0", "1", "0", "19", "4", "14", "0", "0", "42", "1", "1", "0", "35", "25", "0", "3", "0", "14", "0", "9", "3", "5", "0", "0", "0", "0", "0", "0", "1", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.393932", "winner": "KS\u010cM", "id": "582247", "population": 183, "town": "R\u00e1je\u010dko", "winner_class": ["kscm"], "lng": "16.644972"}, {"votes": ["0", "0", "0", "3", "72", "3", "52", "1", "0", "22", "0", "0", "0", "29", "36", "0", "8", "0", "17", "0", "7", "11", "9", "0", "0", "0", "0", "2", "0", "1", "9", "0", "2", "0", "0", "0", "0", "0"], "lat": "49.190425", "winner": "KDU-\u010cSL", "id": "583634", "population": 284, "town": "Podol\u00ed", "winner_class": ["kdu-csl"], "lng": "16.720845"}, {"votes": ["0", "0", "0", "0", "14", "2", "13", "0", "1", "19", "0", "0", "0", "11", "29", "0", "3", "0", "16", "0", "1", "4", "7", "0", "1", "3", "0", "0", "0", "2", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.828753", "winner": "ANO", "id": "587729", "population": 138, "town": "Nov\u00fd \u0160aldorf-Sedle\u0161ovice", "winner_class": ["ano"], "lng": "16.062023"}, {"votes": ["0", "1", "0", "1", "11", "3", "9", "2", "2", "19", "0", "0", "0", "21", "10", "0", "0", "0", "3", "0", "2", "7", "4", "0", "1", "0", "0", "4", "0", "0", "2", "0", "0", "1", "1", "0", "0", "0"], "lat": "50.095795", "winner": "\u010cSSD", "id": "536521", "population": 104, "town": "Jind\u0159ichov", "winner_class": ["cssd"], "lng": "16.984901"}, {"votes": ["1", "0", "0", "0", "9", "1", "18", "1", "0", "15", "0", "0", "0", "67", "23", "0", "0", "0", "11", "0", "1", "5", "0", "0", "2", "4", "0", "0", "2", "0", "5", "0", "0", "1", "0", "1", "1", "0"], "lat": "49.715913", "winner": "\u010cSSD", "id": "598399", "population": 168, "town": "Lu\u010dina", "winner_class": ["cssd"], "lng": "18.44966"}, {"votes": ["1", "0", "0", "0", "10", "1", "16", "4", "0", "19", "0", "0", "0", "17", "48", "0", "0", "0", "17", "0", "7", "6", "5", "2", "5", "0", "3", "1", "0", "0", "6", "1", "0", "3", "0", "0", "2", "1"], "lat": "50.607122", "winner": "ANO", "id": "568201", "population": 175, "town": "\u0158ehlovice", "winner_class": ["ano"], "lng": "13.95412"}, {"votes": ["0", "2", "0", "0", "5", "4", "31", "1", "3", "10", "0", "0", "1", "23", "33", "0", "0", "0", "10", "0", "7", "3", "10", "0", "0", "7", "0", "1", "1", "0", "12", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.578132", "winner": "ANO", "id": "564354", "population": 166, "town": "P\u0159\u00ed\u0161ovice", "winner_class": ["ano"], "lng": "15.083897"}, {"votes": ["0", "0", "1", "1", "47", "1", "14", "0", "2", "24", "0", "0", "0", "28", "38", "0", "0", "0", "9", "1", "11", "3", "1", "0", "0", "2", "0", "4", "0", "0", "2", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.556374", "winner": "KDU-\u010cSL", "id": "589934", "population": 191, "town": "P\u0159emyslovice", "winner_class": ["kdu-csl"], "lng": "16.955808"}, {"votes": ["0", "2", "0", "0", "34", "2", "2", "0", "0", "5", "0", "0", "1", "24", "12", "0", "2", "0", "7", "2", "2", "0", "5", "0", "3", "4", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.585651", "winner": "KDU-\u010cSL", "id": "507547", "population": 113, "town": "Mil\u00edkov", "winner_class": ["kdu-csl"], "lng": "18.719429"}, {"votes": ["0", "0", "0", "0", "23", "23", "18", "0", "1", "11", "0", "0", "0", "7", "23", "0", "0", "0", "4", "0", "7", "3", "6", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.654143", "winner": "KDU-\u010cSL", "id": "540498", "population": 137, "town": "Kosova Hora", "winner_class": ["kdu-csl"], "lng": "14.471729"}, {"votes": ["0", "0", "0", "0", "51", "2", "28", "0", "0", "11", "0", "0", "0", "32", "21", "0", "38", "0", "23", "0", "6", "7", "11", "0", "0", "4", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.254203", "winner": "KDU-\u010cSL", "id": "583537", "population": 242, "town": "Ochoz u Brna", "winner_class": ["kdu-csl"], "lng": "16.737232"}, {"votes": ["0", "0", "0", "0", "19", "2", "15", "0", "0", "7", "0", "0", "0", "24", "25", "0", "1", "0", "6", "1", "2", "8", "4", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.092035", "winner": "ANO", "id": "583766", "population": 120, "town": "Rajhradice", "winner_class": ["ano"], "lng": "16.629331"}, {"votes": ["0", "1", "1", "0", "7", "2", "23", "0", "0", "21", "0", "0", "0", "26", "29", "0", "2", "0", "11", "0", "11", "6", "4", "0", "1", "0", "0", "1", "1", "0", "4", "0", "2", "0", "0", "0", "2", "0"], "lat": "49.516266", "winner": "ANO", "id": "589403", "population": 155, "town": "\u010celechovice na Han\u00e9", "winner_class": ["ano"], "lng": "17.093795"}, {"votes": ["0", "0", "0", "2", "32", "0", "5", "0", "4", "20", "0", "0", "1", "22", "29", "0", "1", "0", "10", "0", "3", "3", "2", "0", "2", "0", "0", "4", "1", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.325424", "winner": "KDU-\u010cSL", "id": "589764", "population": 149, "town": "Nezamyslice", "winner_class": ["kdu-csl"], "lng": "17.172751"}, {"votes": ["0", "0", "0", "0", "26", "2", "24", "0", "0", "16", "0", "0", "0", "20", "27", "0", "0", "0", "10", "0", "7", "1", "6", "0", "0", "1", "0", "3", "0", "0", "2", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.40504", "winner": "ANO", "id": "588113", "population": 146, "town": "Velk\u00fd Beranov", "winner_class": ["ano"], "lng": "15.667004"}, {"votes": ["1", "0", "0", "1", "25", "1", "15", "0", "0", "14", "0", "0", "0", "11", "18", "0", "2", "0", "9", "0", "5", "3", "6", "0", "0", "0", "0", "0", "0", "0", "4", "3", "0", "0", "0", "0", "1", "0"], "lat": "48.804973", "winner": "KDU-\u010cSL", "id": "558443", "population": 119, "town": "Ladn\u00e1", "winner_class": ["kdu-csl"], "lng": "16.872154"}, {"votes": ["0", "0", "0", "1", "48", "2", "49", "0", "0", "16", "0", "0", "0", "36", "51", "0", "0", "0", "23", "1", "7", "13", "13", "0", "1", "0", "0", "1", "0", "1", "10", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.630425", "winner": "ANO", "id": "547077", "population": 274, "town": "Samoti\u0161ky", "winner_class": ["ano"], "lng": "17.328067"}, {"votes": ["0", "1", "0", "0", "48", "3", "34", "1", "0", "25", "0", "0", "0", "21", "18", "0", "0", "0", "9", "0", "1", "2", "4", "0", "4", "5", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.868786", "winner": "KDU-\u010cSL", "id": "537713", "population": 186, "town": "Le\u0161tina", "winner_class": ["kdu-csl"], "lng": "16.927482"}, {"votes": ["0", "1", "0", "0", "28", "2", "20", "1", "1", "17", "0", "0", "0", "26", "17", "0", "1", "0", "9", "0", "7", "2", "7", "0", "0", "2", "0", "0", "1", "0", "1", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.986639", "winner": "KDU-\u010cSL", "id": "507334", "population": 144, "town": "Chucheln\u00e1", "winner_class": ["kdu-csl"], "lng": "18.11656"}, {"votes": ["3", "2", "0", "0", "6", "3", "23", "3", "0", "16", "0", "0", "0", "19", "35", "0", "0", "1", "9", "1", "4", "17", "5", "0", "1", "1", "0", "0", "0", "0", "10", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.862993", "winner": "ANO", "id": "539368", "population": 160, "town": "Kamenn\u00fd P\u0159\u00edvoz", "winner_class": ["ano"], "lng": "14.503388"}, {"votes": ["1", "0", "1", "2", "18", "7", "14", "0", "1", "50", "0", "0", "0", "13", "25", "0", "0", "1", "13", "1", "4", "5", "3", "0", "2", "0", "0", "0", "0", "1", "11", "3", "1", "1", "0", "0", "0", "0"], "lat": "50.486228", "winner": "KS\u010cM", "id": "579556", "population": 178, "town": "Mostek", "winner_class": ["kscm"], "lng": "15.696217"}, {"votes": ["0", "0", "0", "3", "25", "5", "14", "1", "0", "17", "0", "0", "0", "12", "27", "0", "1", "0", "5", "0", "5", "3", "5", "0", "0", "0", "1", "3", "0", "0", "3", "0", "2", "0", "0", "0", "1", "1"], "lat": "49.388328", "winner": "ANO", "id": "589845", "population": 134, "town": "Otaslavice", "winner_class": ["ano"], "lng": "17.07108"}, {"votes": ["0", "0", "0", "0", "43", "0", "20", "0", "0", "7", "0", "0", "0", "13", "19", "0", "0", "0", "9", "0", "11", "7", "2", "0", "0", "3", "0", "0", "0", "0", "10", "1", "0", "1", "0", "0", "1", "0"], "lat": "49.221069", "winner": "KDU-\u010cSL", "id": "549649", "population": 147, "town": "Te\u010dovice", "winner_class": ["kdu-csl"], "lng": "17.587334"}, {"votes": ["0", "1", "0", "0", "11", "1", "3", "0", "0", "21", "0", "0", "0", "32", "17", "0", "0", "2", "13", "0", "3", "3", "5", "1", "1", "0", "0", "0", "0", "0", "3", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.858733", "winner": "\u010cSSD", "id": "568864", "population": 118, "town": "Doubrava", "winner_class": ["cssd"], "lng": "18.480178"}, {"votes": ["0", "0", "1", "2", "14", "7", "36", "0", "2", "36", "0", "0", "0", "18", "31", "0", "0", "0", "14", "3", "4", "6", "10", "0", "3", "3", "0", "1", "0", "0", "10", "0", "0", "0", "0", "4", "0", "0"], "lat": "49.782253", "winner": "TOP 09", "id": "541338", "population": 205, "town": "Star\u00e1 Hu\u0165", "winner_class": ["top-09"], "lng": "14.197354"}, {"votes": ["1", "0", "0", "0", "67", "3", "25", "0", "2", "24", "0", "0", "0", "31", "32", "0", "0", "0", "9", "0", "3", "11", "10", "0", "3", "2", "0", "0", "0", "1", "12", "1", "0", "0", "0", "2", "2", "0"], "lat": "49.519797", "winner": "KDU-\u010cSL", "id": "596256", "population": 241, "town": "Nov\u00e9 Vesel\u00ed", "winner_class": ["kdu-csl"], "lng": "15.908734"}, {"votes": ["1", "0", "0", "0", "23", "4", "24", "1", "2", "13", "0", "0", "0", "19", "30", "0", "0", "0", "14", "0", "2", "2", "11", "0", "0", "0", "0", "3", "0", "0", "12", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.711474", "winner": "ANO", "id": "530816", "population": 162, "town": "Trhov\u00fd \u0160t\u011bp\u00e1nov", "winner_class": ["ano"], "lng": "15.013563"}, {"votes": ["1", "0", "0", "0", "56", "2", "17", "1", "2", "16", "0", "0", "0", "23", "32", "0", "5", "3", "10", "0", "6", "5", "11", "0", "3", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "1", "1", "0"], "lat": "48.999862", "winner": "KDU-\u010cSL", "id": "584592", "population": 204, "town": "K\u0159epice", "winner_class": ["kdu-csl"], "lng": "16.719888"}, {"votes": ["0", "1", "0", "0", "7", "1", "3", "0", "0", "38", "0", "1", "0", "33", "20", "0", "0", "2", "3", "0", "11", "2", "2", "0", "4", "0", "0", "2", "1", "0", "3", "0", "1", "0", "0", "0", "1", "1"], "lat": "50.309335", "winner": "KS\u010cM", "id": "541575", "population": 137, "town": "\u017dulov\u00e1", "winner_class": ["kscm"], "lng": "17.098709"}, {"votes": ["3", "0", "0", "0", "6", "2", "39", "0", "0", "15", "0", "0", "0", "19", "24", "0", "0", "0", "13", "0", "6", "6", "5", "0", "0", "0", "0", "3", "0", "0", "8", "0", "0", "0", "1", "0", "0", "1"], "lat": "50.310443", "winner": "TOP 09", "id": "534722", "population": 151, "town": "By\u0161ice", "winner_class": ["top-09"], "lng": "14.611362"}, {"votes": ["0", "0", "0", "0", "62", "1", "13", "0", "0", "5", "0", "0", "0", "8", "27", "0", "1", "0", "16", "1", "2", "3", "6", "0", "0", "0", "0", "3", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.773988", "winner": "KDU-\u010cSL", "id": "584452", "population": 153, "town": "Hlohovec", "winner_class": ["kdu-csl"], "lng": "16.7623"}, {"votes": ["2", "0", "0", "1", "13", "8", "23", "0", "3", "27", "0", "1", "0", "24", "66", "0", "0", "0", "19", "0", "8", "8", "4", "0", "0", "3", "0", "1", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.629913", "winner": "ANO", "id": "569186", "population": 223, "town": "Okrouhlice", "winner_class": ["ano"], "lng": "15.490829"}, {"votes": ["1", "0", "0", "2", "20", "4", "31", "0", "0", "27", "0", "1", "0", "18", "47", "0", "0", "1", "4", "0", "8", "1", "8", "0", "0", "1", "0", "0", "0", "1", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.377152", "winner": "ANO", "id": "551716", "population": 184, "town": "Sedlice", "winner_class": ["ano"], "lng": "13.938954"}, {"votes": ["0", "1", "0", "1", "16", "15", "20", "0", "0", "18", "0", "0", "0", "28", "23", "0", "0", "0", "11", "1", "14", "5", "8", "0", "0", "0", "0", "4", "2", "0", "11", "0", "0", "1", "0", "0", "0", "0"], "lat": "50.531639", "winner": "\u010cSSD", "id": "579785", "population": 179, "town": "Velk\u00e9 Svato\u0148ovice", "winner_class": ["cssd"], "lng": "16.028534"}, {"votes": ["0", "0", "0", "0", "9", "4", "23", "0", "0", "14", "0", "0", "0", "26", "10", "0", "1", "0", "2", "0", "2", "3", "1", "1", "0", "2", "0", "0", "0", "0", "3", "1", "0", "0", "1", "0", "0", "1"], "lat": "50.283377", "winner": "\u010cSSD", "id": "541249", "population": 104, "town": "V\u00e1penn\u00e1", "winner_class": ["cssd"], "lng": "17.097617"}, {"votes": ["0", "1", "0", "2", "24", "0", "29", "0", "1", "14", "0", "0", "0", "15", "23", "0", "1", "2", "16", "1", "12", "7", "13", "0", "0", "1", "1", "1", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.940401", "winner": "TOP 09", "id": "548014", "population": 168, "town": "Dlouh\u00e1 T\u0159ebov\u00e1", "winner_class": ["top-09"], "lng": "16.423292"}, {"votes": ["0", "0", "0", "0", "23", "2", "32", "1", "0", "11", "0", "0", "0", "36", "27", "0", "1", "0", "15", "0", "0", "2", "3", "0", "0", "0", "0", "0", "0", "0", "7", "0", "0", "1", "0", "1", "0", "0"], "lat": "49.340283", "winner": "\u010cSSD", "id": "581968", "population": 162, "town": "Lip\u016fvka", "winner_class": ["cssd"], "lng": "16.552899"}, {"votes": ["2", "0", "1", "1", "1", "1", "26", "0", "0", "18", "0", "0", "0", "18", "23", "0", "0", "2", "12", "0", "3", "3", "9", "0", "0", "1", "0", "4", "0", "0", "9", "0", "0", "0", "0", "2", "2", "0"], "lat": "50.308793", "winner": "TOP 09", "id": "534897", "population": 138, "town": "Kly", "winner_class": ["top-09"], "lng": "14.501484"}, {"votes": ["16", "0", "0", "1", "14", "3", "17", "0", "0", "17", "0", "0", "0", "29", "23", "0", "0", "0", "8", "0", "9", "7", "7", "0", "0", "0", "0", "0", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.344577", "winner": "\u010cSSD", "id": "587044", "population": 163, "town": "Doln\u00ed Cerekev", "winner_class": ["cssd"], "lng": "15.45816"}, {"votes": ["1", "1", "0", "0", "5", "6", "36", "0", "1", "31", "0", "0", "1", "17", "35", "0", "0", "0", "3", "2", "13", "4", "10", "0", "2", "2", "0", "1", "0", "0", "18", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.715656", "winner": "TOP 09", "id": "559776", "population": 190, "town": "Dob\u0159\u00edv", "winner_class": ["top-09"], "lng": "13.686814"}, {"votes": ["0", "4", "1", "0", "12", "4", "18", "0", "0", "25", "0", "0", "0", "36", "33", "0", "1", "1", "6", "1", "12", "3", "1", "0", "0", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.643601", "winner": "\u010cSSD", "id": "505013", "population": 166, "town": "P\u0159\u00edkazy", "winner_class": ["cssd"], "lng": "17.143374"}, {"votes": ["1", "2", "1", "2", "11", "4", "23", "0", "2", "36", "0", "0", "1", "24", "39", "0", "0", "0", "14", "0", "6", "2", "8", "0", "0", "0", "0", "3", "0", "0", "13", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.716156", "winner": "ANO", "id": "540935", "population": 192, "town": "Obecnice", "winner_class": ["ano"], "lng": "13.947307"}, {"votes": ["0", "0", "0", "2", "5", "2", "64", "3", "2", "34", "0", "0", "0", "21", "43", "0", "0", "0", "7", "0", "5", "7", "5", "0", "1", "3", "0", "0", "0", "0", "11", "0", "0", "1", "0", "0", "0", "1"], "lat": "49.462698", "winner": "TOP 09", "id": "557862", "population": 217, "town": "Kasejovice", "winner_class": ["top-09"], "lng": "13.7406"}, {"votes": ["1", "0", "1", "0", "11", "9", "28", "0", "1", "18", "0", "0", "0", "20", "37", "0", "0", "0", "26", "0", "3", "4", "9", "0", "1", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "2", "1"], "lat": "50.535319", "winner": "ANO", "id": "577472", "population": 181, "town": "Rovensko pod Troskami", "winner_class": ["ano"], "lng": "15.259408"}, {"votes": ["0", "0", "1", "0", "29", "3", "24", "1", "3", "21", "0", "0", "0", "25", "26", "0", "2", "0", "20", "2", "7", "2", "3", "0", "0", "4", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.946533", "winner": "KDU-\u010cSL", "id": "586099", "population": 183, "town": "\u010cej\u010d", "winner_class": ["kdu-csl"], "lng": "16.965108"}, {"votes": ["0", "1", "0", "0", "8", "8", "17", "0", "0", "29", "1", "0", "0", "22", "23", "0", "0", "1", "13", "0", "6", "4", "10", "0", "2", "0", "0", "1", "0", "0", "4", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.955518", "winner": "KS\u010cM", "id": "571547", "population": 151, "town": "Chroustovice", "winner_class": ["kscm"], "lng": "15.991535"}, {"votes": ["0", "1", "0", "0", "18", "3", "13", "1", "1", "10", "0", "1", "0", "25", "14", "0", "3", "2", "4", "0", "9", "3", "3", "0", "0", "3", "0", "2", "0", "0", "10", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.796445", "winner": "\u010cSSD", "id": "504785", "population": 127, "town": "Paseka", "winner_class": ["cssd"], "lng": "17.222757"}, {"votes": ["5", "0", "0", "4", "12", "3", "77", "2", "0", "19", "0", "1", "0", "12", "46", "0", "0", "0", "19", "2", "8", "9", "13", "0", "3", "1", "0", "2", "0", "0", "25", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.972444", "winner": "TOP 09", "id": "539759", "population": 264, "town": "T\u0159ebotov", "winner_class": ["top-09"], "lng": "14.291273"}, {"votes": ["1", "0", "0", "0", "11", "7", "96", "5", "0", "7", "0", "0", "0", "20", "51", "0", "0", "0", "30", "2", "4", "18", "27", "0", "0", "1", "0", "1", "0", "0", "18", "0", "0", "0", "0", "1", "2", "0"], "lat": "49.920996", "winner": "TOP 09", "id": "539406", "population": 302, "town": "Lety", "winner_class": ["top-09"], "lng": "14.255204"}, {"votes": ["2", "2", "0", "1", "0", "6", "7", "0", "0", "31", "0", "0", "0", "13", "25", "0", "0", "0", "3", "1", "6", "2", "0", "0", "0", "0", "0", "2", "0", "0", "13", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.401855", "winner": "KS\u010cM", "id": "563013", "population": 115, "town": "B\u0159ezno", "winner_class": ["kscm"], "lng": "13.42118"}, {"votes": ["1", "0", "1", "0", "12", "1", "17", "1", "1", "11", "0", "1", "0", "17", "32", "0", "4", "0", "8", "1", "7", "3", "3", "0", "1", "0", "0", "0", "0", "1", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.578895", "winner": "ANO", "id": "505668", "population": 128, "town": "Velk\u00fd \u00dajezd", "winner_class": ["ano"], "lng": "17.482654"}, {"votes": ["3", "0", "0", "2", "79", "3", "4", "1", "1", "11", "0", "0", "0", "15", "21", "0", "1", "0", "6", "0", "4", "2", "6", "0", "0", "3", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.907842", "winner": "KDU-\u010cSL", "id": "586188", "population": 163, "town": "Hroznov\u00e1 Lhota", "winner_class": ["kdu-csl"], "lng": "17.416973"}, {"votes": ["0", "0", "0", "0", "17", "10", "12", "0", "0", "36", "0", "0", "0", "20", "25", "0", "2", "0", "13", "0", "6", "0", "3", "0", "1", "3", "0", "2", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.798309", "winner": "KS\u010cM", "id": "541222", "population": 160, "town": "\u00dasov", "winner_class": ["kscm"], "lng": "17.010549"}, {"votes": ["0", "1", "0", "0", "11", "7", "13", "0", "0", "12", "0", "0", "0", "29", "25", "0", "0", "2", "9", "0", "4", "3", "3", "0", "1", "2", "0", "0", "1", "0", "6", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.841259", "winner": "\u010cSSD", "id": "571831", "population": 132, "town": "Mi\u0159etice", "winner_class": ["cssd"], "lng": "15.884724"}, {"votes": ["0", "0", "0", "3", "43", "1", "22", "0", "1", "5", "0", "0", "0", "20", "38", "0", "0", "0", "2", "0", "5", "2", "12", "0", "0", "0", "0", "0", "0", "0", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.186432", "winner": "KDU-\u010cSL", "id": "538744", "population": 169, "town": "B\u0159eznice", "winner_class": ["kdu-csl"], "lng": "17.662774"}, {"votes": ["0", "0", "0", "1", "5", "4", "15", "2", "0", "25", "0", "0", "0", "11", "39", "0", "0", "0", "4", "0", "4", "2", "5", "0", "1", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.68611", "winner": "ANO", "id": "545619", "population": 125, "town": "Malonty", "winner_class": ["ano"], "lng": "14.576779"}, {"votes": ["0", "0", "0", "0", "0", "5", "13", "0", "0", "18", "0", "1", "0", "26", "24", "0", "0", "0", "10", "4", "4", "3", "6", "0", "2", "1", "0", "3", "0", "0", "4", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.211739", "winner": "\u010cSSD", "id": "560545", "population": 125, "town": "Lomnice", "winner_class": ["cssd"], "lng": "12.632671"}, {"votes": ["0", "0", "0", "0", "34", "8", "21", "0", "0", "25", "0", "0", "0", "43", "28", "0", "1", "0", "16", "1", "9", "5", "11", "0", "0", "0", "0", "0", "0", "0", "5", "0", "1", "0", "0", "4", "1", "0"], "lat": "49.360993", "winner": "\u010cSSD", "id": "595527", "population": 213, "town": "Doln\u00ed Lou\u010dky", "winner_class": ["cssd"], "lng": "16.358707"}, {"votes": ["0", "0", "0", "0", "17", "2", "22", "1", "1", "12", "0", "0", "0", "21", "45", "0", "2", "0", "16", "2", "9", "11", "11", "0", "1", "3", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.177367", "winner": "ANO", "id": "583669", "population": 188, "town": "Pop\u016fvky", "winner_class": ["ano"], "lng": "16.487572"}, {"votes": ["2", "0", "0", "0", "21", "7", "79", "5", "0", "30", "0", "0", "2", "28", "50", "0", "0", "0", "26", "0", "5", "15", "14", "0", "0", "0", "0", "0", "0", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.135436", "winner": "TOP 09", "id": "539767", "population": 292, "town": "Tuchom\u011b\u0159ice", "winner_class": ["top-09"], "lng": "14.282185"}, {"votes": ["0", "0", "0", "0", "34", "3", "18", "0", "1", "16", "0", "0", "0", "35", "7", "0", "3", "0", "13", "0", "6", "2", "5", "0", "2", "0", "1", "0", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.658106", "winner": "\u010cSSD", "id": "507237", "population": 151, "town": "Komorn\u00ed Lhotka", "winner_class": ["cssd"], "lng": "18.527772"}, {"votes": ["1", "1", "0", "1", "4", "3", "42", "0", "0", "28", "0", "0", "0", "25", "20", "0", "0", "0", "4", "0", "2", "0", "7", "0", "0", "2", "0", "2", "0", "0", "6", "0", "0", "0", "0", "3", "2", "0"], "lat": "49.841673", "winner": "TOP 09", "id": "559628", "population": 153, "town": "V\u0161eruby", "winner_class": ["top-09"], "lng": "13.22943"}, {"votes": ["0", "0", "0", "0", "0", "1", "6", "0", "0", "34", "0", "0", "0", "19", "8", "0", "0", "0", "1", "1", "5", "3", "1", "0", "0", "2", "0", "2", "0", "0", "4", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.542949", "winner": "KS\u010cM", "id": "567060", "population": 89, "town": "Bra\u0148any", "winner_class": ["kscm"], "lng": "13.70017"}, {"votes": ["2", "0", "0", "0", "133", "1", "38", "0", "2", "27", "0", "1", "0", "25", "32", "0", "3", "1", "9", "1", "6", "6", "23", "0", "1", "3", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.191771", "winner": "KDU-\u010cSL", "id": "584037", "population": 324, "town": "Tvaro\u017en\u00e1", "winner_class": ["kdu-csl"], "lng": "16.771457"}, {"votes": ["0", "0", "0", "0", "55", "5", "18", "0", "0", "39", "0", "0", "0", "24", "25", "0", "2", "0", "16", "1", "4", "4", "6", "0", "0", "3", "0", "0", "2", "1", "5", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.221554", "winner": "KDU-\u010cSL", "id": "584215", "population": 213, "town": "Zbraslav", "winner_class": ["kdu-csl"], "lng": "16.294147"}, {"votes": ["0", "0", "1", "0", "1", "3", "8", "1", "1", "35", "0", "0", "0", "25", "40", "0", "0", "1", "5", "0", "7", "0", "4", "0", "1", "0", "0", "0", "0", "1", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.162611", "winner": "ANO", "id": "532444", "population": 138, "town": "Ka\u010dice", "winner_class": ["ano"], "lng": "13.98815"}, {"votes": ["4", "2", "0", "1", "10", "6", "30", "2", "1", "20", "1", "0", "0", "19", "27", "0", "0", "0", "17", "0", "3", "4", "15", "0", "2", "2", "0", "0", "0", "0", "15", "0", "2", "0", "0", "1", "1", "0"], "lat": "49.897664", "winner": "TOP 09", "id": "533718", "population": 185, "town": "St\u0159\u00edbrn\u00e1 Skalice", "winner_class": ["top-09"], "lng": "14.846162"}, {"votes": ["1", "1", "0", "0", "21", "3", "16", "0", "0", "32", "1", "0", "0", "31", "20", "0", "0", "0", "11", "0", "8", "6", "9", "0", "1", "0", "0", "0", "1", "0", "7", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.709832", "winner": "KS\u010cM", "id": "598101", "population": 171, "town": "Doln\u00ed Domaslavice", "winner_class": ["kscm"], "lng": "18.477351"}, {"votes": ["1", "0", "0", "1", "15", "3", "11", "0", "0", "11", "0", "0", "0", "34", "18", "0", "1", "0", "10", "0", "8", "2", "6", "0", "1", "2", "0", "0", "0", "1", "3", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.625563", "winner": "\u010cSSD", "id": "578151", "population": 130, "town": "Jarom\u011b\u0159ice", "winner_class": ["cssd"], "lng": "16.75185"}, {"votes": ["1", "1", "0", "1", "3", "0", "9", "0", "1", "12", "0", "0", "0", "19", "16", "0", "7", "0", "1", "0", "8", "4", "12", "0", "3", "0", "0", "1", "1", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.756572", "winner": "\u010cSSD", "id": "594199", "population": 102, "town": "Jaroslavice", "winner_class": ["cssd"], "lng": "16.233514"}, {"votes": ["0", "1", "2", "0", "19", "6", "4", "0", "0", "22", "0", "0", "0", "19", "13", "0", "1", "0", "12", "0", "7", "0", "2", "0", "5", "1", "0", "2", "0", "1", "4", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.636928", "winner": "KS\u010cM", "id": "517101", "population": 123, "town": "Pot\u0161t\u00e1t", "winner_class": ["kscm"], "lng": "17.651735"}, {"votes": ["3", "1", "0", "4", "17", "2", "99", "3", "0", "19", "0", "0", "0", "51", "42", "0", "0", "0", "23", "2", "4", "22", "23", "0", "1", "0", "0", "3", "0", "0", "25", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.173742", "winner": "TOP 09", "id": "538256", "population": 344, "town": "Husinec", "winner_class": ["top-09"], "lng": "14.375078"}, {"votes": ["0", "0", "0", "0", "10", "4", "47", "0", "0", "54", "0", "0", "1", "28", "12", "0", "0", "0", "16", "0", "2", "0", "2", "0", "0", "3", "0", "0", "0", "0", "4", "19", "1", "0", "0", "0", "0", "0"], "lat": "49.43513", "winner": "KS\u010cM", "id": "553794", "population": 203, "town": "Klen\u010d\u00ed pod \u010cerchovem", "winner_class": ["kscm"], "lng": "12.815046"}, {"votes": ["1", "1", "0", "0", "7", "2", "57", "3", "0", "34", "0", "0", "0", "19", "23", "0", "0", "0", "8", "0", "8", "5", "18", "0", "4", "0", "0", "2", "0", "0", "6", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.849068", "winner": "TOP 09", "id": "558915", "population": 201, "town": "Hromnice", "winner_class": ["top-09"], "lng": "13.44146"}, {"votes": ["4", "0", "0", "7", "5", "8", "18", "0", "3", "21", "0", "0", "0", "18", "27", "1", "0", "0", "13", "0", "7", "3", "10", "0", "3", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.453059", "winner": "ANO", "id": "564621", "population": 157, "town": "Brozany nad Oh\u0159\u00ed", "winner_class": ["ano"], "lng": "14.145046"}, {"votes": ["0", "2", "2", "5", "9", "3", "14", "0", "0", "25", "0", "0", "0", "33", "38", "0", "0", "0", "18", "3", "6", "6", "1", "0", "5", "1", "0", "0", "0", "0", "14", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.756028", "winner": "ANO", "id": "568651", "population": 185, "town": "Habry", "winner_class": ["ano"], "lng": "15.484859"}, {"votes": ["0", "0", "0", "0", "20", "4", "32", "2", "1", "14", "0", "0", "0", "10", "31", "0", "0", "0", "12", "1", "4", "3", "7", "0", "3", "2", "0", "0", "0", "1", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.855422", "winner": "TOP 09", "id": "545473", "population": 153, "town": "Doln\u00ed T\u0159ebon\u00edn", "winner_class": ["top-09"], "lng": "14.409707"}, {"votes": ["0", "1", "1", "0", "14", "4", "39", "1", "0", "27", "0", "0", "0", "18", "29", "0", "0", "0", "10", "1", "5", "4", "9", "0", "0", "0", "0", "2", "4", "1", "4", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.330902", "winner": "TOP 09", "id": "556751", "population": 176, "town": "Nal\u017eovsk\u00e9 Hory", "winner_class": ["top-09"], "lng": "13.544922"}, {"votes": ["0", "1", "0", "5", "40", "2", "6", "0", "0", "20", "0", "0", "0", "28", "23", "0", "2", "0", "9", "0", "12", "2", "4", "0", "1", "2", "0", "1", "1", "0", "4", "3", "0", "0", "0", "0", "0", "0"], "lat": "49.378985", "winner": "KDU-\u010cSL", "id": "588903", "population": 166, "town": "Prusinovice", "winner_class": ["kdu-csl"], "lng": "17.587103"}, {"votes": ["0", "0", "0", "0", "47", "3", "45", "0", "0", "6", "0", "0", "0", "19", "10", "0", "0", "0", "6", "0", "1", "1", "4", "0", "1", "0", "0", "0", "1", "0", "4", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.168089", "winner": "KDU-\u010cSL", "id": "585882", "population": 150, "town": "\u00dajezd", "winner_class": ["kdu-csl"], "lng": "17.906105"}, {"votes": ["0", "0", "0", "0", "8", "5", "22", "0", "0", "21", "0", "0", "0", "15", "24", "0", "0", "0", "9", "1", "5", "5", "6", "0", "2", "0", "1", "1", "0", "0", "9", "1", "0", "0", "0", "0", "3", "0"], "lat": "48.854015", "winner": "ANO", "id": "545546", "population": 138, "town": "Chval\u0161iny", "winner_class": ["ano"], "lng": "14.21114"}, {"votes": ["0", "0", "0", "1", "80", "1", "17", "1", "0", "18", "0", "0", "0", "21", "17", "0", "1", "0", "30", "0", "6", "5", "5", "0", "1", "1", "0", "1", "3", "0", "10", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.600727", "winner": "KDU-\u010cSL", "id": "568554", "population": 220, "town": "Ryb\u00ed", "winner_class": ["kdu-csl"], "lng": "18.075916"}, {"votes": ["0", "1", "0", "1", "17", "4", "12", "0", "0", "16", "0", "0", "0", "43", "19", "0", "0", "0", "18", "0", "4", "6", "4", "0", "0", "2", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.91487", "winner": "\u010cSSD", "id": "510491", "population": 154, "town": "\u0160t\u00edtina", "winner_class": ["cssd"], "lng": "18.012452"}, {"votes": ["1", "0", "0", "1", "5", "2", "51", "1", "0", "20", "0", "0", "0", "10", "42", "0", "0", "1", "11", "1", "4", "4", "16", "0", "0", "1", "0", "2", "0", "0", "4", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.669193", "winner": "TOP 09", "id": "558001", "population": 180, "town": "Losin\u00e1", "winner_class": ["top-09"], "lng": "13.448334"}, {"votes": ["1", "0", "0", "4", "7", "5", "52", "1", "0", "12", "1", "0", "0", "16", "30", "0", "0", "0", "20", "3", "4", "17", "13", "0", "2", "2", "0", "3", "0", "0", "6", "0", "0", "0", "1", "0", "1", "0"], "lat": "50.169475", "winner": "TOP 09", "id": "538914", "population": 201, "town": "L\u00e1zn\u011b Tou\u0161e\u0148", "winner_class": ["top-09"], "lng": "14.715171"}, {"votes": ["1", "3", "0", "1", "4", "3", "26", "0", "1", "36", "0", "0", "0", "19", "41", "0", "0", "0", "9", "1", "2", "7", "13", "0", "1", "0", "0", "0", "0", "0", "8", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.087301", "winner": "ANO", "id": "539317", "population": 177, "town": "Jene\u010d", "winner_class": ["ano"], "lng": "14.214816"}, {"votes": ["0", "0", "1", "0", "27", "1", "15", "0", "1", "16", "0", "0", "0", "15", "31", "0", "0", "0", "8", "0", "5", "0", "6", "0", "1", "0", "0", "0", "0", "1", "12", "0", "0", "0", "0", "0", "3", "0"], "lat": "48.99965", "winner": "ANO", "id": "593770", "population": 143, "town": "Bl\u00ed\u017ekovice", "winner_class": ["ano"], "lng": "15.839388"}, {"votes": ["0", "0", "2", "0", "3", "7", "48", "2", "0", "8", "0", "0", "0", "14", "40", "0", "0", "0", "11", "4", "8", "5", "6", "0", "1", "0", "0", "3", "0", "1", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.267116", "winner": "TOP 09", "id": "555533", "population": 172, "town": "Sadov", "winner_class": ["top-09"], "lng": "12.897078"}, {"votes": ["0", "0", "0", "0", "62", "5", "9", "0", "0", "30", "0", "1", "0", "17", "23", "0", "10", "1", "8", "0", "8", "0", "8", "0", "3", "1", "0", "0", "0", "2", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.86723", "winner": "KDU-\u010cSL", "id": "586609", "population": 189, "town": "Sudom\u011b\u0159ice", "winner_class": ["kdu-csl"], "lng": "17.256761"}, {"votes": ["1", "1", "0", "0", "39", "4", "15", "0", "1", "17", "0", "0", "0", "35", "20", "0", "1", "0", "18", "0", "8", "7", "2", "0", "0", "2", "0", "2", "0", "0", "9", "1", "1", "0", "0", "0", "0", "0"], "lat": "49.637337", "winner": "KDU-\u010cSL", "id": "595772", "population": 184, "town": "Jimramov", "winner_class": ["kdu-csl"], "lng": "16.225744"}, {"votes": ["0", "0", "0", "1", "11", "5", "13", "0", "1", "14", "0", "1", "0", "17", "15", "0", "1", "0", "12", "0", "7", "1", "7", "0", "2", "0", "0", "1", "0", "1", "3", "2", "1", "0", "0", "2", "1", "0"], "lat": "50.011701", "winner": "\u010cSSD", "id": "540986", "population": 119, "town": "Sobot\u00edn", "winner_class": ["cssd"], "lng": "17.090751"}, {"votes": ["0", "0", "0", "0", "57", "0", "34", "1", "1", "26", "0", "0", "0", "41", "38", "0", "2", "0", "8", "1", "11", "3", "11", "0", "2", "1", "0", "1", "0", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.213579", "winner": "KDU-\u010cSL", "id": "584126", "population": 243, "town": "Vini\u010dn\u00e9 \u0160umice", "winner_class": ["kdu-csl"], "lng": "16.825406"}, {"votes": ["0", "0", "0", "0", "2", "2", "10", "1", "0", "26", "0", "0", "0", "28", "18", "0", "0", "1", "3", "0", "9", "2", "2", "0", "4", "1", "0", "0", "0", "0", "7", "1", "1", "0", "0", "0", "0", "1"], "lat": "49.55971", "winner": "\u010cSSD", "id": "553689", "population": 119, "town": "Hostou\u0148", "winner_class": ["cssd"], "lng": "12.771467"}, {"votes": ["2", "0", "0", "4", "8", "4", "34", "1", "1", "32", "0", "0", "0", "8", "28", "0", "0", "0", "9", "0", "4", "5", "9", "0", "0", "0", "0", "1", "0", "1", "7", "0", "0", "0", "0", "3", "2", "0"], "lat": "49.778008", "winner": "TOP 09", "id": "560057", "population": 163, "town": "Osek", "winner_class": ["top-09"], "lng": "13.590931"}, {"votes": ["1", "0", "1", "0", "7", "4", "47", "1", "2", "14", "0", "0", "0", "22", "39", "0", "0", "0", "25", "1", "3", "7", "4", "0", "0", "1", "0", "1", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.109194", "winner": "TOP 09", "id": "537357", "population": 192, "town": "Kounice", "winner_class": ["top-09"], "lng": "14.854274"}, {"votes": ["0", "0", "0", "1", "43", "4", "17", "2", "0", "22", "0", "0", "0", "22", "26", "0", "1", "0", "6", "0", "11", "6", "1", "0", "1", "1", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.54597", "winner": "KDU-\u010cSL", "id": "513199", "population": 170, "town": "Doln\u00ed \u00dajezd", "winner_class": ["kdu-csl"], "lng": "17.535474"}, {"votes": ["0", "1", "1", "2", "9", "2", "16", "2", "0", "29", "0", "0", "0", "19", "4", "0", "2", "0", "2", "0", "4", "1", "3", "0", "8", "0", "0", "1", "1", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.656419", "winner": "KS\u010cM", "id": "545465", "population": 112, "town": "Doln\u00ed Dvo\u0159i\u0161t\u011b", "winner_class": ["kscm"], "lng": "14.452214"}, {"votes": ["0", "2", "0", "2", "29", "3", "12", "2", "1", "44", "0", "0", "0", "27", "28", "0", "0", "0", "8", "1", "3", "3", "3", "1", "3", "3", "1", "0", "1", "0", "6", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.101793", "winner": "KS\u010cM", "id": "550515", "population": 185, "town": "Stachy", "winner_class": ["kscm"], "lng": "13.666585"}, {"votes": ["3", "0", "0", "0", "33", "2", "22", "0", "2", "21", "0", "0", "0", "33", "20", "0", "1", "1", "18", "2", "6", "5", "16", "1", "1", "1", "0", "0", "0", "1", "7", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.316211", "winner": "KDU-\u010cSL", "id": "551660", "population": 198, "town": "Radomy\u0161l", "winner_class": ["kdu-csl"], "lng": "13.931972"}, {"votes": ["0", "0", "0", "1", "15", "7", "20", "0", "0", "36", "0", "0", "0", "17", "17", "0", "0", "1", "13", "0", "10", "9", "8", "0", "0", "1", "1", "1", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.661519", "winner": "KS\u010cM", "id": "577405", "population": 164, "town": "Ponikl\u00e1", "winner_class": ["kscm"], "lng": "15.463288"}, {"votes": ["0", "0", "0", "0", "62", "1", "17", "0", "1", "9", "0", "0", "0", "23", "25", "0", "0", "0", "13", "0", "17", "1", "23", "0", "0", "1", "0", "0", "0", "1", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.128071", "winner": "KDU-\u010cSL", "id": "549401", "population": 199, "town": "Pozlovice", "winner_class": ["kdu-csl"], "lng": "17.769329"}, {"votes": ["0", "0", "0", "0", "5", "1", "16", "0", "3", "30", "0", "1", "0", "30", "23", "0", "0", "0", "14", "0", "2", "5", "5", "0", "6", "3", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.424403", "winner": "KS\u010cM", "id": "534790", "population": 145, "town": "Horn\u00ed Po\u010daply", "winner_class": ["kscm"], "lng": "14.38993"}, {"votes": ["0", "0", "0", "0", "7", "2", "17", "1", "1", "45", "0", "0", "0", "14", "33", "0", "0", "0", "16", "1", "5", "7", "8", "2", "2", "0", "0", "4", "0", "0", "12", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.960964", "winner": "KS\u010cM", "id": "531227", "population": 178, "town": "Hudlice", "winner_class": ["kscm"], "lng": "13.970634"}, {"votes": ["0", "0", "1", "2", "13", "3", "22", "0", "1", "14", "0", "0", "0", "25", "12", "0", "1", "0", "6", "0", "5", "1", "8", "0", "0", "2", "1", "0", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.0054359", "winner": "\u010cSSD", "id": "500020", "population": 124, "town": "Petrov nad Desnou", "winner_class": ["cssd"], "lng": "17.0442802"}, {"votes": ["0", "0", "0", "1", "9", "3", "8", "0", "0", "33", "0", "0", "0", "9", "36", "1", "0", "0", "2", "2", "4", "0", "4", "0", "2", "1", "0", "3", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.017944", "winner": "ANO", "id": "554502", "population": 126, "town": "Doln\u00ed \u017dandov", "winner_class": ["ano"], "lng": "12.551009"}, {"votes": ["0", "1", "0", "0", "18", "6", "15", "1", "1", "21", "0", "0", "0", "15", "19", "0", "0", "0", "4", "0", "5", "9", "2", "0", "1", "0", "0", "0", "0", "0", "9", "0", "0", "0", "2", "0", "0", "0"], "lat": "49.710263", "winner": "KS\u010cM", "id": "578584", "population": 129, "town": "Pomez\u00ed", "winner_class": ["kscm"], "lng": "16.317291"}, {"votes": ["1", "0", "0", "0", "18", "1", "20", "0", "0", "12", "0", "0", "0", "23", "27", "0", "1", "0", "10", "0", "2", "3", "2", "0", "0", "0", "0", "0", "0", "0", "8", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.469308", "winner": "ANO", "id": "581551", "population": 130, "town": "Drnovice", "winner_class": ["ano"], "lng": "16.54223"}, {"votes": ["0", "0", "0", "0", "56", "6", "19", "1", "1", "23", "0", "1", "0", "33", "34", "0", "5", "1", "3", "0", "17", "1", "8", "1", "1", "2", "0", "2", "0", "0", "6", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.179162", "winner": "KDU-\u010cSL", "id": "593681", "population": 223, "town": "Vele\u0161ovice", "winner_class": ["kdu-csl"], "lng": "16.849135"}, {"votes": ["8", "0", "0", "3", "12", "1", "4", "0", "0", "11", "0", "0", "0", "14", "18", "0", "0", "0", "7", "1", "0", "5", "0", "0", "1", "0", "0", "0", "2", "0", "3", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.034131", "winner": "ANO", "id": "597988", "population": 91, "town": "Z\u00e1tor", "winner_class": ["ano"], "lng": "17.592955"}, {"votes": ["1", "3", "0", "0", "4", "2", "14", "6", "0", "16", "0", "0", "0", "21", "26", "0", "0", "0", "12", "0", "9", "4", "5", "0", "0", "0", "0", "0", "0", "0", "5", "1", "0", "2", "0", "0", "1", "1"], "lat": "50.532474", "winner": "ANO", "id": "579599", "population": 133, "town": "Piln\u00edkov", "winner_class": ["ano"], "lng": "15.820197"}, {"votes": ["0", "0", "0", "0", "11", "3", "8", "0", "0", "17", "0", "0", "0", "10", "17", "0", "0", "1", "6", "0", "13", "2", "7", "0", "3", "4", "0", "0", "0", "0", "7", "1", "2", "0", "0", "1", "0", "0"], "lat": "48.729405", "winner": "KS\u010cM", "id": "545406", "population": 113, "town": "Bene\u0161ov nad \u010cernou", "winner_class": ["kscm"], "lng": "14.627375"}, {"votes": ["2", "0", "0", "2", "19", "5", "35", "0", "4", "18", "0", "1", "0", "23", "54", "0", "0", "0", "11", "0", "2", "2", "9", "0", "1", "2", "0", "0", "0", "2", "10", "0", "0", "0", "1", "0", "0", "1"], "lat": "50.472738", "winner": "ANO", "id": "573825", "population": 204, "town": "\u017deleznice", "winner_class": ["ano"], "lng": "15.38459"}, {"votes": ["0", "1", "0", "0", "51", "2", "15", "0", "1", "18", "0", "0", "0", "14", "22", "0", "0", "0", "27", "0", "8", "1", "2", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.900824", "winner": "KDU-\u010cSL", "id": "595021", "population": 168, "town": "\u00dananov", "winner_class": ["kdu-csl"], "lng": "16.063507"}, {"votes": ["3", "0", "0", "0", "26", "6", "16", "1", "4", "17", "0", "0", "0", "18", "23", "0", "3", "0", "4", "0", "6", "0", "1", "0", "0", "0", "0", "0", "0", "1", "9", "1", "0", "0", "0", "0", "2", "0"], "lat": "49.511215", "winner": "KDU-\u010cSL", "id": "516619", "population": 141, "town": "Osek nad Be\u010dvou", "winner_class": ["kdu-csl"], "lng": "17.528293"}, {"votes": ["1", "1", "0", "0", "26", "7", "20", "0", "0", "52", "0", "0", "0", "27", "21", "1", "5", "0", "5", "0", "3", "2", "3", "0", "5", "2", "0", "2", "2", "0", "6", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.210305", "winner": "KS\u010cM", "id": "591904", "population": 192, "town": "Vladislav", "winner_class": ["kscm"], "lng": "15.98899"}, {"votes": ["0", "1", "0", "2", "6", "6", "22", "0", "0", "23", "0", "0", "0", "7", "25", "0", "0", "0", "18", "0", "5", "2", "6", "0", "2", "0", "0", "1", "1", "0", "9", "0", "0", "0", "0", "0", "3", "1"], "lat": "50.879886", "winner": "ANO", "id": "562432", "population": 140, "town": "Doln\u00ed Podlu\u017e\u00ed", "winner_class": ["ano"], "lng": "14.595034"}, {"votes": ["0", "0", "0", "0", "33", "2", "24", "2", "1", "15", "0", "0", "3", "9", "29", "0", "1", "0", "14", "1", "0", "4", "12", "0", "1", "0", "0", "3", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.039559", "winner": "KDU-\u010cSL", "id": "583995", "population": 157, "town": "T\u011b\u0161any", "winner_class": ["kdu-csl"], "lng": "16.770027"}, {"votes": ["0", "0", "0", "2", "102", "5", "45", "2", "0", "7", "0", "0", "0", "17", "18", "0", "3", "0", "10", "1", "5", "5", "9", "0", "2", "0", "0", "0", "0", "0", "8", "0", "0", "0", "1", "4", "2", "0"], "lat": "49.049238", "winner": "KDU-\u010cSL", "id": "583448", "population": 248, "town": "Moutnice", "winner_class": ["kdu-csl"], "lng": "16.737415"}, {"votes": ["2", "0", "0", "0", "6", "2", "18", "0", "1", "21", "0", "0", "1", "27", "30", "0", "0", "0", "10", "2", "9", "4", "5", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.945603", "winner": "ANO", "id": "533998", "population": 143, "town": "C\u00edrkvice", "winner_class": ["ano"], "lng": "15.335048"}, {"votes": ["1", "0", "0", "1", "10", "2", "67", "3", "0", "6", "0", "0", "0", "15", "64", "1", "0", "0", "22", "0", "8", "12", "15", "0", "1", "3", "1", "1", "0", "0", "10", "0", "1", "0", "0", "2", "0", "0"], "lat": "49.924154", "winner": "TOP 09", "id": "539422", "population": 246, "town": "Libe\u0159", "winner_class": ["top-09"], "lng": "14.480618"}, {"votes": ["1", "0", "0", "1", "8", "2", "40", "0", "0", "12", "5", "0", "0", "20", "36", "0", "0", "0", "14", "0", "5", "6", "10", "0", "0", "3", "0", "0", "0", "0", "15", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.872903", "winner": "TOP 09", "id": "529796", "population": 178, "town": "Chocerady", "winner_class": ["top-09"], "lng": "14.802068"}, {"votes": ["0", "0", "0", "0", "3", "8", "8", "0", "0", "29", "0", "1", "1", "20", "26", "0", "0", "2", "6", "1", "1", "7", "6", "0", "0", "0", "0", "2", "0", "0", "8", "0", "0", "2", "0", "0", "0", "0"], "lat": "50.41615", "winner": "KS\u010cM", "id": "564575", "population": 131, "town": "Bechl\u00edn", "winner_class": ["kscm"], "lng": "14.340917"}, {"votes": ["3", "0", "0", "3", "6", "3", "59", "1", "1", "15", "0", "0", "0", "15", "50", "0", "0", "0", "44", "0", "7", "9", "20", "0", "0", "0", "0", "0", "0", "1", "14", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.155201", "winner": "TOP 09", "id": "538671", "population": 252, "town": "P\u0159ezletice", "winner_class": ["top-09"], "lng": "14.575399"}, {"votes": ["0", "0", "0", "2", "27", "2", "34", "1", "0", "14", "0", "0", "0", "8", "20", "0", "2", "0", "6", "0", "6", "2", "2", "0", "1", "2", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.64115", "winner": "TOP 09", "id": "552151", "population": 140, "town": "Skrbe\u0148", "winner_class": ["top-09"], "lng": "17.176499"}, {"votes": ["0", "0", "0", "1", "64", "1", "23", "2", "0", "9", "0", "0", "0", "22", "20", "0", "1", "0", "8", "0", "5", "1", "9", "0", "0", "0", "0", "1", "0", "0", "9", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.248483", "winner": "KDU-\u010cSL", "id": "585289", "population": 178, "town": "Hvozdn\u00e1", "winner_class": ["kdu-csl"], "lng": "17.751632"}, {"votes": ["0", "0", "0", "0", "30", "1", "17", "0", "1", "11", "0", "0", "0", "13", "16", "0", "3", "0", "8", "0", "11", "6", "2", "0", "0", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.989007", "winner": "KDU-\u010cSL", "id": "584584", "population": 126, "town": "Krumv\u00ed\u0159", "winner_class": ["kdu-csl"], "lng": "16.910273"}, {"votes": ["0", "1", "0", "1", "34", "9", "15", "0", "1", "26", "0", "2", "0", "52", "40", "0", "1", "1", "21", "1", "13", "5", "4", "0", "1", "0", "0", "1", "0", "0", "9", "0", "2", "0", "0", "0", "0", "0"], "lat": "49.882486", "winner": "\u010cSSD", "id": "507261", "population": 240, "town": "Hrabyn\u011b", "winner_class": ["cssd"], "lng": "18.054828"}, {"votes": ["2", "0", "0", "0", "13", "2", "34", "3", "0", "20", "0", "0", "0", "19", "27", "0", "0", "0", "6", "1", "7", "6", "4", "0", "2", "3", "1", "1", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.727985", "winner": "TOP 09", "id": "530450", "population": 158, "town": "Postupice", "winner_class": ["top-09"], "lng": "14.777218"}, {"votes": ["1", "0", "0", "2", "44", "0", "9", "2", "0", "18", "0", "0", "0", "24", "16", "0", "2", "2", "13", "0", "7", "2", "3", "0", "0", "3", "0", "1", "0", "0", "1", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.272214", "winner": "KDU-\u010cSL", "id": "590401", "population": 152, "town": "Budi\u0161ov", "winner_class": ["kdu-csl"], "lng": "16.007071"}, {"votes": ["2", "1", "0", "0", "3", "4", "40", "0", "0", "7", "5", "0", "0", "10", "58", "1", "0", "0", "21", "2", "2", "7", "9", "0", "0", "5", "0", "1", "0", "0", "14", "1", "2", "0", "0", "3", "2", "0"], "lat": "49.959932", "winner": "ANO", "id": "539881", "population": 200, "town": "Zlatn\u00edky-Hodkovice", "winner_class": ["ano"], "lng": "14.481274"}, {"votes": ["0", "2", "0", "3", "1", "4", "9", "0", "2", "35", "0", "0", "0", "17", "13", "0", "0", "1", "1", "0", "7", "5", "4", "1", "7", "0", "0", "2", "0", "0", "10", "0", "0", "0", "0", "0", "4", "0"], "lat": "50.588246", "winner": "KS\u010cM", "id": "567531", "population": 128, "town": "Hostomice", "winner_class": ["kscm"], "lng": "13.804739"}, {"votes": ["2", "0", "0", "1", "8", "1", "10", "0", "0", "17", "0", "0", "0", "18", "43", "0", "0", "1", "8", "1", "3", "3", "5", "0", "0", "0", "0", "1", "0", "0", "4", "0", "0", "2", "0", "0", "0", "0"], "lat": "49.66722", "winner": "ANO", "id": "530344", "population": 128, "town": "Olbramovice", "winner_class": ["ano"], "lng": "14.639439"}, {"votes": ["0", "1", "0", "0", "12", "5", "25", "1", "2", "16", "0", "0", "0", "20", "29", "0", "0", "0", "3", "0", "14", "4", "9", "0", "0", "2", "0", "0", "0", "0", "3", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.052146", "winner": "ANO", "id": "533530", "population": 148, "town": "Nov\u00e1 Ves I", "winner_class": ["ano"], "lng": "15.14445"}, {"votes": ["1", "0", "0", "0", "57", "3", "22", "1", "0", "12", "0", "0", "0", "19", "18", "0", "0", "0", "17", "4", "1", "1", "10", "1", "1", "4", "0", "0", "1", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.084025", "winner": "KDU-\u010cSL", "id": "550540", "population": 178, "town": "Strunkovice nad Blanic\u00ed", "winner_class": ["kdu-csl"], "lng": "14.055216"}, {"votes": ["2", "0", "0", "1", "10", "7", "42", "3", "0", "30", "0", "0", "0", "34", "22", "1", "0", "0", "40", "1", "4", "3", "10", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.991776", "winner": "TOP 09", "id": "559202", "population": 215, "town": "Man\u011bt\u00edn", "winner_class": ["top-09"], "lng": "13.233193"}, {"votes": ["0", "0", "0", "0", "59", "1", "3", "0", "1", "12", "0", "0", "0", "18", "20", "0", "2", "0", "2", "1", "9", "1", "14", "0", "0", "3", "0", "0", "0", "0", "5", "0", "0", "0", "1", "0", "1", "0"], "lat": "49.296034", "winner": "KDU-\u010cSL", "id": "585866", "population": 153, "town": "Trnava", "winner_class": ["kdu-csl"], "lng": "17.841907"}, {"votes": ["0", "0", "0", "0", "14", "1", "90", "4", "0", "8", "0", "0", "0", "16", "50", "2", "0", "0", "12", "0", "4", "7", "30", "0", "0", "2", "0", "1", "0", "0", "18", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.057262", "winner": "TOP 09", "id": "564982", "population": 259, "town": "Kv\u011btnice", "winner_class": ["top-09"], "lng": "14.684115"}, {"votes": ["2", "0", "0", "0", "40", "3", "1", "0", "0", "10", "0", "0", "1", "38", "18", "0", "0", "0", "11", "0", "4", "2", "7", "0", "0", "0", "0", "0", "0", "1", "4", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.768494", "winner": "KDU-\u010cSL", "id": "555291", "population": 143, "town": "Chot\u011bbuz", "winner_class": ["kdu-csl"], "lng": "18.569123"}, {"votes": ["1", "0", "3", "0", "46", "2", "14", "0", "0", "11", "0", "0", "0", "24", "30", "0", "2", "0", "14", "1", "6", "2", "4", "0", "0", "6", "1", "1", "2", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.070361", "winner": "KDU-\u010cSL", "id": "591629", "population": 177, "town": "Rouchovany", "winner_class": ["kdu-csl"], "lng": "16.107603"}, {"votes": ["0", "2", "0", "0", "33", "3", "9", "0", "0", "39", "0", "0", "1", "22", "28", "0", "3", "0", "8", "1", "6", "10", "9", "0", "2", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.987365", "winner": "KS\u010cM", "id": "594202", "population": 181, "town": "Jevi\u0161ovice", "winner_class": ["kscm"], "lng": "15.989925"}, {"votes": ["1", "0", "0", "1", "13", "6", "49", "5", "0", "12", "0", "0", "0", "21", "36", "0", "0", "0", "10", "3", "4", "8", "10", "0", "2", "1", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.838955", "winner": "TOP 09", "id": "530441", "population": 192, "town": "Po\u0159\u00ed\u010d\u00ed nad S\u00e1zavou", "winner_class": ["top-09"], "lng": "14.674458"}, {"votes": ["0", "0", "0", "0", "26", "0", "46", "0", "2", "34", "0", "0", "1", "11", "13", "0", "0", "0", "9", "2", "1", "1", "4", "0", "0", "0", "0", "0", "0", "0", "11", "1", "0", "0", "1", "1", "1", "0"], "lat": "49.458275", "winner": "TOP 09", "id": "554138", "population": 165, "town": "Post\u0159ekov", "winner_class": ["top-09"], "lng": "12.806781"}, {"votes": ["0", "0", "0", "0", "22", "3", "8", "1", "0", "12", "0", "2", "0", "26", "17", "0", "0", "0", "5", "0", "12", "4", "7", "0", "3", "1", "0", "0", "0", "0", "24", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.498076", "winner": "\u010cSSD", "id": "503738", "population": 148, "town": "Majet\u00edn", "winner_class": ["cssd"], "lng": "17.333139"}, {"votes": ["0", "0", "0", "0", "43", "2", "9", "0", "1", "10", "0", "0", "0", "19", "16", "1", "12", "0", "10", "2", "15", "2", "5", "0", "0", "0", "0", "0", "0", "1", "5", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.05351", "winner": "KDU-\u010cSL", "id": "592919", "population": 154, "town": "Bo\u0161ovice", "winner_class": ["kdu-csl"], "lng": "16.836762"}, {"votes": ["0", "0", "0", "1", "4", "3", "14", "2", "0", "10", "0", "0", "0", "9", "24", "0", "0", "0", "5", "0", "6", "0", "2", "0", "0", "1", "0", "4", "1", "0", "6", "0", "1", "1", "0", "1", "1", "0"], "lat": "50.950443", "winner": "ANO", "id": "562823", "population": 96, "town": "Star\u00e9 K\u0159e\u010dany", "winner_class": ["ano"], "lng": "14.49617"}, {"votes": ["1", "2", "0", "0", "4", "3", "8", "1", "1", "36", "0", "0", "0", "19", "15", "0", "0", "0", "7", "0", "5", "0", "6", "0", "1", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.791863", "winner": "KS\u010cM", "id": "594881", "population": 112, "town": "\u0160atov", "winner_class": ["kscm"], "lng": "16.015104"}, {"votes": ["0", "0", "0", "1", "32", "0", "6", "0", "0", "20", "0", "1", "0", "40", "25", "0", "1", "0", "11", "0", "7", "4", "8", "0", "1", "0", "0", "2", "0", "0", "5", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.660393", "winner": "\u010cSSD", "id": "552542", "population": 165, "town": "Dobratice", "winner_class": ["cssd"], "lng": "18.492264"}, {"votes": ["0", "0", "0", "1", "23", "1", "16", "0", "0", "11", "0", "0", "0", "12", "18", "1", "7", "0", "2", "0", "6", "3", "7", "0", "3", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.130878", "winner": "KDU-\u010cSL", "id": "592706", "population": 118, "town": "Traplice", "winner_class": ["kdu-csl"], "lng": "17.436217"}, {"votes": ["0", "0", "1", "0", "7", "2", "14", "0", "4", "33", "0", "0", "0", "29", "33", "0", "0", "0", "7", "1", "7", "3", "7", "0", "0", "0", "0", "0", "0", "4", "4", "0", "0", "0", "1", "0", "1", "0"], "lat": "50.070065", "winner": "KS\u010cM", "id": "533629", "population": 158, "town": "Radim", "winner_class": ["kscm"], "lng": "15.012441"}, {"votes": ["3", "0", "0", "0", "14", "1", "24", "4", "0", "7", "1", "1", "0", "22", "26", "0", "0", "0", "9", "0", "3", "1", "4", "0", "1", "1", "0", "5", "1", "0", "13", "1", "1", "0", "0", "0", "0", "0"], "lat": "49.429079", "winner": "ANO", "id": "549584", "population": 143, "town": "Mirotice", "winner_class": ["ano"], "lng": "14.036974"}, {"votes": ["0", "0", "0", "3", "1", "2", "34", "0", "0", "20", "0", "0", "0", "8", "40", "0", "0", "3", "20", "3", "4", "6", "9", "0", "1", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "1", "1"], "lat": "50.295882", "winner": "ANO", "id": "535133", "population": 165, "town": "Ob\u0159\u00edstv\u00ed", "winner_class": ["ano"], "lng": "14.478383"}, {"votes": ["3", "0", "0", "1", "51", "0", "42", "2", "0", "10", "0", "0", "0", "16", "32", "0", "0", "1", "5", "0", "6", "9", "10", "0", "0", "2", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.387078", "winner": "KDU-\u010cSL", "id": "574350", "population": 201, "town": "Provodov-\u0160onov", "winner_class": ["kdu-csl"], "lng": "16.107884"}, {"votes": ["0", "1", "0", "0", "10", "4", "9", "2", "1", "37", "0", "0", "0", "23", "23", "0", "0", "1", "12", "0", "4", "1", "5", "0", "1", "0", "0", "0", "1", "1", "8", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.530834", "winner": "KS\u010cM", "id": "568678", "population": 146, "town": "Her\u00e1lec", "winner_class": ["kscm"], "lng": "15.45708"}, {"votes": ["0", "0", "0", "0", "19", "3", "23", "0", "2", "23", "0", "0", "0", "32", "17", "0", "4", "0", "6", "0", "3", "2", "9", "0", "0", "2", "0", "0", "0", "0", "3", "1", "0", "0", "0", "0", "0", "0"], "lat": "48.866119", "winner": "\u010cSSD", "id": "555231", "population": 149, "town": "Suchohrdly", "winner_class": ["cssd"], "lng": "16.08902"}, {"votes": ["1", "0", "0", "1", "4", "1", "30", "1", "3", "23", "0", "0", "0", "19", "26", "0", "1", "0", "26", "0", "4", "1", "5", "0", "0", "1", "0", "2", "0", "0", "14", "0", "0", "0", "0", "2", "0", "1"], "lat": "49.95247", "winner": "TOP 09", "id": "534439", "population": 166, "town": "Suchdol", "winner_class": ["top-09"], "lng": "15.16651"}, {"votes": ["0", "0", "0", "2", "10", "7", "62", "0", "1", "7", "0", "0", "0", "11", "42", "0", "0", "0", "26", "0", "7", "5", "9", "0", "0", "1", "0", "0", "0", "0", "10", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.93655", "winner": "TOP 09", "id": "538426", "population": 201, "town": "Kunice", "winner_class": ["top-09"], "lng": "14.671501"}, {"votes": ["0", "0", "0", "1", "35", "1", "67", "0", "2", "18", "0", "0", "0", "13", "17", "0", "0", "0", "5", "0", "2", "2", "1", "0", "1", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.403141", "winner": "TOP 09", "id": "553981", "population": 167, "town": "Mr\u00e1kov", "winner_class": ["top-09"], "lng": "12.951202"}, {"votes": ["0", "0", "1", "1", "8", "4", "70", "0", "1", "9", "0", "0", "0", "19", "46", "0", "0", "2", "30", "0", "5", "13", "9", "0", "2", "3", "0", "1", "0", "0", "15", "1", "1", "0", "0", "0", "3", "0"], "lat": "50.646308", "winner": "TOP 09", "id": "563706", "population": 244, "town": "Mal\u00e1 Sk\u00e1la", "winner_class": ["top-09"], "lng": "15.195425"}, {"votes": ["0", "0", "0", "2", "17", "1", "11", "0", "0", "14", "0", "0", "0", "14", "12", "0", "0", "0", "2", "1", "1", "1", "3", "0", "0", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.824999", "winner": "KDU-\u010cSL", "id": "578487", "population": 86, "town": "Opatov", "winner_class": ["kdu-csl"], "lng": "16.504579"}, {"votes": ["4", "0", "0", "1", "13", "1", "75", "3", "0", "5", "0", "0", "0", "19", "42", "0", "0", "0", "29", "1", "5", "19", "20", "0", "0", "0", "0", "0", "0", "0", "14", "0", "0", "1", "0", "1", "1", "0"], "lat": "50.142574", "winner": "TOP 09", "id": "539686", "population": 254, "town": "Statenice", "winner_class": ["top-09"], "lng": "14.318534"}, {"votes": ["1", "0", "0", "0", "24", "1", "40", "1", "2", "34", "0", "0", "0", "15", "26", "0", "0", "0", "10", "0", "2", "4", "2", "0", "0", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.402549", "winner": "TOP 09", "id": "553824", "population": 171, "town": "Kout na \u0160umav\u011b", "winner_class": ["top-09"], "lng": "13.002085"}, {"votes": ["0", "0", "0", "0", "2", "2", "24", "3", "0", "37", "0", "0", "0", "22", "25", "0", "0", "0", "1", "0", "8", "2", "10", "0", "0", "2", "0", "0", "0", "0", "6", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.674878", "winner": "KS\u010cM", "id": "561151", "population": 147, "town": "P\u0159imda", "winner_class": ["kscm"], "lng": "12.67366"}, {"votes": ["1", "0", "0", "2", "52", "2", "20", "1", "0", "30", "0", "0", "0", "39", "27", "0", "0", "0", "7", "0", "5", "7", "1", "0", "4", "2", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "2", "1"], "lat": "49.416563", "winner": "KDU-\u010cSL", "id": "548456", "population": 209, "town": "Nov\u00e1 Cerekev", "winner_class": ["kdu-csl"], "lng": "15.116249"}, {"votes": ["2", "0", "0", "1", "147", "5", "21", "0", "1", "19", "0", "0", "0", "34", "34", "0", "6", "1", "9", "0", "10", "6", "22", "0", "1", "0", "0", "0", "1", "0", "3", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.165686", "winner": "KDU-\u010cSL", "id": "582841", "population": 324, "town": "Bla\u017eovice", "winner_class": ["kdu-csl"], "lng": "16.78611"}, {"votes": ["0", "0", "0", "3", "18", "3", "14", "0", "0", "28", "0", "0", "0", "35", "32", "0", "3", "0", "9", "0", "4", "3", "3", "1", "3", "2", "0", "3", "1", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.275911", "winner": "\u010cSSD", "id": "593516", "population": 173, "town": "Ra\u010dice-P\u00edstovice", "winner_class": ["cssd"], "lng": "16.872761"}, {"votes": ["1", "0", "0", "2", "14", "4", "15", "0", "0", "22", "0", "0", "0", "23", "38", "0", "0", "0", "14", "1", "3", "4", "9", "0", "2", "0", "0", "1", "0", "0", "3", "0", "2", "0", "0", "0", "0", "0"], "lat": "50.318635", "winner": "ANO", "id": "569925", "population": 158, "town": "\u010cerno\u017eice", "winner_class": ["ano"], "lng": "15.874027"}, {"votes": ["0", "0", "0", "0", "16", "2", "53", "0", "0", "18", "0", "0", "0", "17", "32", "0", "0", "0", "17", "2", "4", "9", "14", "0", "0", "1", "0", "1", "1", "1", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.945382", "winner": "TOP 09", "id": "545074", "population": 197, "town": "Star\u00e9 Hod\u011bjovice", "winner_class": ["top-09"], "lng": "14.520973"}, {"votes": ["0", "0", "0", "1", "0", "3", "13", "0", "0", "12", "0", "0", "0", "25", "22", "0", "0", "0", "0", "0", "1", "0", "7", "0", "3", "0", "0", "3", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.604952", "winner": "\u010cSSD", "id": "567868", "population": 95, "town": "Zabru\u0161any", "winner_class": ["cssd"], "lng": "13.787482"}, {"votes": ["0", "0", "0", "0", "3", "3", "20", "0", "1", "22", "0", "1", "0", "20", "20", "0", "0", "0", "10", "0", "3", "2", "6", "0", "2", "0", "0", "3", "0", "0", "10", "1", "2", "0", "0", "0", "1", "0"], "lat": "50.4406", "winner": "KS\u010cM", "id": "563382", "population": 130, "town": "\u00dadlice", "winner_class": ["kscm"], "lng": "13.457378"}, {"votes": ["0", "0", "0", "0", "24", "5", "9", "1", "1", "18", "0", "0", "0", "21", "22", "0", "4", "0", "4", "0", "9", "1", "1", "1", "0", "0", "0", "1", "0", "0", "8", "0", "0", "1", "0", "0", "3", "0"], "lat": "49.709531", "winner": "KDU-\u010cSL", "id": "500623", "population": 134, "town": "B\u00edl\u00e1 Lhota", "winner_class": ["kdu-csl"], "lng": "16.975074"}, {"votes": ["0", "0", "0", "0", "55", "1", "1", "0", "0", "5", "0", "0", "0", "7", "11", "0", "0", "0", "1", "0", "1", "1", "0", "0", "1", "2", "0", "3", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.886663", "winner": "KDU-\u010cSL", "id": "586269", "population": 90, "town": "Kn\u011b\u017edub", "winner_class": ["kdu-csl"], "lng": "17.395464"}, {"votes": ["0", "1", "0", "0", "5", "1", "24", "2", "2", "9", "0", "0", "0", "26", "24", "0", "0", "2", "14", "0", "5", "0", "8", "0", "0", "0", "0", "4", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.989427", "winner": "\u010cSSD", "id": "575372", "population": 131, "town": "Mikulovice", "winner_class": ["cssd"], "lng": "15.775382"}, {"votes": ["1", "0", "0", "0", "16", "2", "33", "0", "0", "9", "0", "0", "0", "15", "9", "0", "1", "0", "3", "0", "7", "1", "2", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.919026", "winner": "TOP 09", "id": "541109", "population": 105, "town": "Sudkov", "winner_class": ["top-09"], "lng": "16.945163"}, {"votes": ["1", "0", "0", "0", "25", "4", "12", "3", "3", "35", "0", "0", "0", "44", "34", "0", "0", "3", "12", "0", "3", "7", "2", "0", "1", "2", "0", "0", "0", "0", "5", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.596071", "winner": "\u010cSSD", "id": "598445", "population": 197, "town": "Mor\u00e1vka", "winner_class": ["cssd"], "lng": "18.524713"}, {"votes": ["0", "0", "0", "0", "24", "4", "12", "1", "0", "30", "0", "0", "0", "20", "23", "0", "1", "0", "14", "0", "3", "1", "1", "0", "3", "3", "0", "0", "0", "1", "0", "1", "1", "0", "0", "1", "0", "0"], "lat": "49.382376", "winner": "KS\u010cM", "id": "582182", "population": 144, "town": "Ostrov u Macochy", "winner_class": ["kscm"], "lng": "16.76288"}, {"votes": ["1", "1", "0", "0", "0", "4", "11", "0", "1", "11", "0", "0", "0", "18", "12", "0", "0", "0", "5", "0", "1", "0", "3", "4", "0", "0", "0", "3", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.233818", "winner": "\u010cSSD", "id": "560685", "population": 77, "town": "Vint\u00ed\u0159ov", "winner_class": ["cssd"], "lng": "12.717481"}, {"votes": ["5", "0", "0", "1", "27", "5", "26", "0", "0", "24", "0", "0", "0", "12", "19", "0", "0", "0", "17", "0", "3", "2", "8", "0", "0", "1", "0", "0", "0", "1", "11", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.529836", "winner": "KDU-\u010cSL", "id": "549215", "population": 164, "town": "\u017deliv", "winner_class": ["kdu-csl"], "lng": "15.221808"}, {"votes": ["1", "0", "0", "1", "75", "3", "9", "0", "0", "5", "0", "0", "0", "12", "26", "0", "0", "0", "3", "1", "5", "4", "3", "0", "0", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.281001", "winner": "KDU-\u010cSL", "id": "585971", "population": 151, "town": "V\u0161emina", "winner_class": ["kdu-csl"], "lng": "17.876822"}, {"votes": ["0", "0", "0", "3", "18", "0", "15", "1", "0", "12", "0", "0", "0", "15", "21", "0", "0", "0", "8", "0", "4", "2", "3", "0", "0", "0", "0", "0", "1", "0", "7", "0", "0", "1", "0", "1", "1", "0"], "lat": "48.837041", "winner": "ANO", "id": "584746", "population": 113, "town": "Novosedly", "winner_class": ["ano"], "lng": "16.492734"}, {"votes": ["0", "1", "0", "0", "65", "4", "6", "1", "0", "16", "0", "0", "0", "10", "15", "0", "1", "0", "8", "0", "2", "2", "8", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.08668", "winner": "KDU-\u010cSL", "id": "592382", "population": 142, "town": "Mist\u0159ice", "winner_class": ["kdu-csl"], "lng": "17.535966"}, {"votes": ["0", "0", "0", "3", "13", "2", "20", "0", "0", "23", "0", "0", "0", "15", "11", "0", "0", "0", "6", "2", "3", "2", "2", "0", "3", "0", "0", "2", "2", "1", "2", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.744334", "winner": "KS\u010cM", "id": "561185", "population": 113, "town": "Star\u00e9 Sedli\u0161t\u011b", "winner_class": ["kscm"], "lng": "12.694139"}, {"votes": ["0", "0", "0", "0", "3", "3", "43", "1", "3", "14", "0", "0", "0", "15", "31", "0", "0", "0", "7", "0", "4", "12", "18", "0", "1", "7", "0", "0", "0", "0", "23", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.597646", "winner": "TOP 09", "id": "577359", "population": 185, "town": "Ohrazenice", "winner_class": ["top-09"], "lng": "15.125963"}, {"votes": ["0", "1", "1", "0", "5", "3", "8", "0", "0", "50", "0", "0", "0", "17", "31", "1", "0", "3", "2", "0", "1", "4", "2", "0", "7", "1", "0", "0", "0", "0", "5", "0", "1", "1", "0", "0", "3", "0"], "lat": "50.298032", "winner": "KS\u010cM", "id": "563323", "population": 147, "town": "Radonice", "winner_class": ["kscm"], "lng": "13.284643"}, {"votes": ["0", "0", "0", "1", "52", "1", "15", "0", "0", "7", "0", "0", "0", "20", "17", "1", "1", "0", "6", "0", "10", "9", "8", "0", "1", "1", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.08427", "winner": "KDU-\u010cSL", "id": "592722", "population": 152, "town": "Tupesy", "winner_class": ["kdu-csl"], "lng": "17.369827"}, {"votes": ["0", "0", "0", "0", "37", "3", "21", "2", "0", "18", "0", "0", "0", "35", "26", "0", "1", "0", "28", "0", "3", "2", "8", "0", "2", "0", "0", "1", "0", "2", "10", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.904617", "winner": "KDU-\u010cSL", "id": "508373", "population": 200, "town": "Mokr\u00e9 Lazce", "winner_class": ["kdu-csl"], "lng": "18.029537"}, {"votes": ["1", "0", "0", "2", "37", "3", "8", "0", "0", "36", "0", "0", "1", "25", "10", "0", "3", "0", "7", "0", "11", "0", "7", "2", "2", "1", "0", "1", "0", "0", "2", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.151107", "winner": "KDU-\u010cSL", "id": "593419", "population": 162, "town": "Nesovice", "winner_class": ["kdu-csl"], "lng": "17.080947"}, {"votes": ["0", "1", "0", "0", "42", "4", "9", "0", "0", "15", "0", "0", "0", "18", "11", "0", "1", "0", "4", "2", "5", "1", "4", "0", "6", "2", "0", "0", "1", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.984713", "winner": "KDU-\u010cSL", "id": "595071", "population": 133, "town": "Vi\u0161\u0148ov\u00e9", "winner_class": ["kdu-csl"], "lng": "16.148775"}, {"votes": ["1", "0", "0", "0", "2", "1", "9", "0", "0", "19", "0", "0", "1", "12", "17", "0", "0", "0", "13", "2", "7", "7", "11", "0", "0", "2", "0", "0", "0", "0", "2", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.816006", "winner": "KS\u010cM", "id": "530298", "population": 109, "town": "Netvo\u0159ice", "winner_class": ["kscm"], "lng": "14.518208"}, {"votes": ["0", "0", "1", "4", "1", "4", "10", "0", "0", "22", "0", "0", "0", "26", "33", "0", "1", "0", "16", "0", "1", "4", "9", "0", "1", "1", "0", "0", "1", "1", "8", "0", "3", "1", "0", "0", "1", "0"], "lat": "50.098018", "winner": "ANO", "id": "542377", "population": 149, "town": "Senomaty", "winner_class": ["ano"], "lng": "13.654521"}, {"votes": ["0", "0", "0", "0", "11", "0", "54", "4", "17", "0", "0", "0", "0", "35", "47", "0", "1", "2", "23", "0", "3", "18", "12", "0", "1", "2", "0", "0", "1", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.895402", "winner": "TOP 09", "id": "538752", "population": 241, "town": "Senohraby", "winner_class": ["top-09"], "lng": "14.718093"}, {"votes": ["1", "1", "0", "0", "12", "1", "14", "0", "3", "14", "0", "0", "0", "18", "37", "0", "0", "0", "8", "0", "8", "7", "2", "1", "1", "1", "0", "3", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.853181", "winner": "ANO", "id": "531472", "population": 143, "town": "Lochovice", "winner_class": ["ano"], "lng": "13.981265"}, {"votes": ["0", "0", "1", "2", "12", "1", "29", "0", "0", "21", "0", "0", "0", "22", "25", "0", "0", "0", "15", "0", "3", "9", "16", "0", "1", "0", "0", "0", "0", "1", "7", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.160269", "winner": "TOP 09", "id": "537721", "population": 166, "town": "P\u0159erov nad Labem", "winner_class": ["top-09"], "lng": "14.825022"}, {"votes": ["1", "0", "0", "3", "10", "0", "42", "0", "0", "4", "0", "0", "0", "9", "43", "0", "0", "0", "24", "0", "3", "4", "13", "0", "0", "1", "0", "3", "1", "0", "17", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.726152", "winner": "ANO", "id": "579742", "population": 179, "town": "\u0160pindler\u016fv Ml\u00fdn", "winner_class": ["ano"], "lng": "15.609442"}, {"votes": ["0", "0", "0", "0", "28", "2", "19", "0", "0", "10", "0", "0", "0", "9", "23", "0", "0", "0", "7", "0", "5", "4", "5", "0", "1", "1", "0", "0", "0", "0", "4", "0", "0", "1", "1", "0", "1", "0"], "lat": "49.481037", "winner": "KDU-\u010cSL", "id": "595292", "population": 121, "town": "Bohdalov", "winner_class": ["kdu-csl"], "lng": "15.876208"}, {"votes": ["0", "0", "1", "3", "27", "4", "23", "0", "1", "8", "0", "0", "0", "18", "5", "0", "1", "0", "11", "0", "2", "3", "3", "0", "0", "0", "0", "0", "0", "0", "5", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.897322", "winner": "KDU-\u010cSL", "id": "553051", "population": 117, "town": "Doln\u00ed \u017divotice", "winner_class": ["kdu-csl"], "lng": "17.77969"}, {"votes": ["4", "1", "1", "0", "37", "8", "39", "0", "0", "15", "0", "0", "0", "21", "31", "0", "0", "0", "13", "3", "5", "4", "9", "0", "0", "6", "0", "2", "1", "0", "12", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.666335", "winner": "TOP 09", "id": "576981", "population": 215, "town": "Benecko", "winner_class": ["top-09"], "lng": "15.548165"}, {"votes": ["1", "0", "0", "0", "9", "0", "10", "0", "1", "22", "0", "0", "0", "26", "19", "0", "7", "1", "10", "0", "0", "1", "1", "0", "1", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "3", "0", "0"], "lat": "48.990971", "winner": "\u010cSSD", "id": "594563", "population": 115, "town": "Olbramovice", "winner_class": ["cssd"], "lng": "16.392168"}, {"votes": ["0", "0", "0", "2", "30", "3", "10", "0", "1", "14", "0", "0", "0", "16", "23", "0", "1", "0", "9", "1", "8", "4", "2", "0", "1", "1", "0", "2", "0", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.478171", "winner": "KDU-\u010cSL", "id": "517534", "population": 136, "town": "Radslavice", "winner_class": ["kdu-csl"], "lng": "17.516559"}, {"votes": ["0", "0", "0", "0", "45", "0", "5", "0", "0", "24", "0", "0", "0", "25", "22", "0", "4", "0", "0", "0", "5", "0", "7", "0", "1", "2", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.271301", "winner": "KDU-\u010cSL", "id": "588938", "population": 149, "town": "Rataje", "winner_class": ["kdu-csl"], "lng": "17.335548"}, {"votes": ["1", "0", "0", "0", "16", "4", "22", "1", "1", "7", "0", "0", "0", "13", "6", "0", "0", "0", "9", "0", "0", "5", "7", "0", "3", "2", "0", "0", "0", "0", "3", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.816135", "winner": "TOP 09", "id": "560812", "population": 102, "town": "\u010cerno\u0161\u00edn", "winner_class": ["top-09"], "lng": "12.883813"}, {"votes": ["0", "0", "0", "0", "56", "0", "8", "0", "0", "14", "0", "0", "0", "20", "19", "0", "3", "0", "6", "2", "6", "0", "2", "0", "0", "0", "0", "1", "0", "0", "6", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.511631", "winner": "KDU-\u010cSL", "id": "589942", "population": 145, "town": "Pten\u00ed", "winner_class": ["kdu-csl"], "lng": "16.961099"}, {"votes": ["1", "0", "3", "1", "11", "1", "30", "0", "1", "10", "0", "0", "0", "24", "23", "0", "0", "0", "7", "0", "3", "6", "10", "0", "1", "0", "0", "1", "0", "0", "10", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.189892", "winner": "TOP 09", "id": "546500", "population": 145, "town": "Jaro\u0161ov nad Ne\u017e\u00e1rkou", "winner_class": ["top-09"], "lng": "15.067338"}, {"votes": ["0", "0", "0", "0", "1", "6", "12", "0", "0", "12", "0", "0", "0", "5", "20", "0", "0", "2", "6", "6", "2", "5", "12", "0", "2", "1", "0", "2", "0", "0", "2", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.661142", "winner": "ANO", "id": "562921", "population": 97, "town": "Verne\u0159ice", "winner_class": ["ano"], "lng": "14.301144"}, {"votes": ["0", "0", "1", "2", "8", "2", "29", "1", "0", "21", "0", "0", "0", "14", "25", "0", "1", "2", "11", "0", "3", "4", "7", "0", "0", "2", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.560428", "winner": "TOP 09", "id": "558044", "population": 138, "town": "Merkl\u00edn", "winner_class": ["top-09"], "lng": "13.197899"}, {"votes": ["2", "0", "0", "1", "4", "1", "72", "2", "2", "17", "0", "0", "0", "25", "49", "0", "0", "0", "14", "0", "6", "10", "22", "0", "4", "0", "0", "1", "0", "0", "12", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.941726", "winner": "TOP 09", "id": "539503", "population": 244, "town": "Ohrobec", "winner_class": ["top-09"], "lng": "14.432032"}, {"votes": ["2", "5", "2", "0", "0", "1", "16", "1", "1", "26", "0", "0", "0", "21", "33", "0", "0", "0", "15", "0", "11", "1", "1", "0", "1", "1", "0", "0", "1", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.381661", "winner": "ANO", "id": "563285", "population": 145, "town": "Per\u0161tejn", "winner_class": ["ano"], "lng": "13.1102"}, {"votes": ["0", "0", "0", "1", "33", "3", "21", "0", "0", "0", "0", "0", "0", "24", "24", "0", "1", "0", "4", "0", "4", "3", "1", "0", "1", "0", "0", "4", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.959421", "winner": "KDU-\u010cSL", "id": "512923", "population": 135, "town": "Chlebi\u010dov", "winner_class": ["kdu-csl"], "lng": "17.967483"}, {"votes": ["1", "0", "0", "0", "57", "0", "43", "0", "0", "9", "0", "0", "0", "14", "8", "0", "1", "0", "0", "0", "2", "0", "1", "0", "0", "1", "0", "0", "0", "0", "1", "1", "1", "0", "0", "1", "0", "0"], "lat": "48.97001", "winner": "KDU-\u010cSL", "id": "592641", "population": 141, "town": "Such\u00e1 Loz", "winner_class": ["kdu-csl"], "lng": "17.713789"}, {"votes": ["0", "0", "0", "0", "3", "5", "24", "0", "1", "26", "0", "0", "1", "17", "18", "0", "0", "0", "4", "0", "10", "4", "1", "0", "1", "3", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.480086", "winner": "KS\u010cM", "id": "556637", "population": 125, "town": "M\u011b\u010d\u00edn", "winner_class": ["kscm"], "lng": "13.402886"}, {"votes": ["1", "0", "0", "0", "9", "3", "33", "1", "0", "18", "0", "0", "0", "19", "20", "0", "0", "0", "12", "0", "4", "4", "10", "0", "4", "1", "0", "3", "0", "0", "9", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.776065", "winner": "TOP 09", "id": "560251", "population": 153, "town": "Volduchy", "winner_class": ["top-09"], "lng": "13.623046"}, {"votes": ["0", "0", "0", "0", "62", "1", "1", "0", "0", "24", "0", "0", "0", "22", "13", "0", "1", "0", "0", "0", "5", "3", "3", "1", "0", "3", "0", "5", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.383941", "winner": "KDU-\u010cSL", "id": "581950", "population": 152, "town": "Lipovec", "winner_class": ["kdu-csl"], "lng": "16.805832"}, {"votes": ["0", "1", "1", "2", "6", "0", "33", "0", "1", "17", "0", "0", "0", "19", "22", "1", "0", "0", "14", "2", "6", "4", "4", "0", "0", "1", "0", "2", "0", "1", "12", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.356755", "winner": "TOP 09", "id": "549347", "population": 151, "town": "\u010c\u00ed\u017eov\u00e1", "winner_class": ["top-09"], "lng": "14.093054"}, {"votes": ["0", "1", "0", "0", "62", "0", "8", "0", "0", "6", "0", "0", "0", "27", "13", "0", "0", "0", "15", "0", "6", "1", "5", "0", "1", "1", "1", "0", "0", "0", "3", "1", "0", "2", "0", "0", "1", "1"], "lat": "49.580705", "winner": "KDU-\u010cSL", "id": "596981", "population": 155, "town": "Velk\u00e1 Losenice", "winner_class": ["kdu-csl"], "lng": "15.83673"}, {"votes": ["0", "1", "0", "0", "13", "2", "17", "1", "2", "10", "0", "0", "1", "22", "41", "1", "5", "0", "19", "0", "5", "2", "7", "0", "0", "0", "1", "1", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.051381", "winner": "ANO", "id": "584142", "population": 157, "town": "Vojkovice", "winner_class": ["ano"], "lng": "16.608203"}, {"votes": ["0", "0", "0", "0", "72", "2", "14", "0", "0", "18", "0", "0", "0", "21", "35", "0", "1", "0", "5", "0", "3", "5", "3", "0", "3", "0", "0", "0", "0", "0", "5", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.098548", "winner": "KDU-\u010cSL", "id": "592269", "population": 188, "town": "Kn\u011b\u017epole", "winner_class": ["kdu-csl"], "lng": "17.516708"}, {"votes": ["0", "0", "0", "0", "16", "0", "11", "0", "0", "14", "0", "0", "2", "19", "15", "0", "2", "0", "2", "1", "0", "2", "3", "0", "2", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.699488", "winner": "\u010cSSD", "id": "578657", "population": 95, "town": "Radim\u011b\u0159", "winner_class": ["cssd"], "lng": "16.431281"}, {"votes": ["1", "1", "0", "1", "46", "3", "21", "0", "0", "11", "0", "0", "0", "18", "13", "0", "0", "1", "15", "3", "5", "4", "5", "0", "0", "1", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.011685", "winner": "KDU-\u010cSL", "id": "579971", "population": 156, "town": "Byst\u0159ec", "winner_class": ["kdu-csl"], "lng": "16.619001"}, {"votes": ["0", "0", "0", "5", "31", "1", "12", "2", "0", "4", "0", "0", "0", "16", "23", "0", "1", "0", "7", "0", "4", "3", "13", "0", "0", "1", "0", "1", "2", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.915086", "winner": "KDU-\u010cSL", "id": "585041", "population": 131, "town": "Vrbice", "winner_class": ["kdu-csl"], "lng": "16.897788"}, {"votes": ["0", "0", "0", "1", "111", "2", "25", "1", "0", "48", "0", "0", "0", "14", "23", "0", "4", "0", "16", "0", "5", "6", "7", "0", "4", "1", "0", "0", "0", "0", "6", "2", "0", "0", "0", "0", "1", "0"], "lat": "49.105429", "winner": "KDU-\u010cSL", "id": "592790", "population": 277, "town": "Velehrad", "winner_class": ["kdu-csl"], "lng": "17.394264"}, {"votes": ["0", "0", "0", "0", "7", "1", "21", "0", "1", "22", "0", "0", "0", "21", "45", "0", "0", "0", "16", "0", "9", "10", "19", "0", "1", "0", "0", "1", "0", "0", "9", "0", "0", "1", "0", "0", "0", "1"], "lat": "49.98334", "winner": "ANO", "id": "531944", "population": 185, "town": "Vr\u00e1\u017e", "winner_class": ["ano"], "lng": "14.128912"}, {"votes": ["2", "0", "0", "1", "17", "1", "32", "0", "0", "5", "0", "0", "0", "17", "28", "0", "0", "0", "17", "1", "5", "5", "0", "1", "0", "2", "0", "0", "0", "1", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.499828", "winner": "TOP 09", "id": "574210", "population": 140, "town": "Machov", "winner_class": ["top-09"], "lng": "16.276293"}, {"votes": ["0", "0", "0", "0", "35", "1", "7", "0", "0", "11", "0", "0", "1", "19", "12", "0", "0", "0", "4", "0", "17", "1", "2", "0", "0", "0", "0", "0", "1", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.022665", "winner": "KDU-\u010cSL", "id": "592846", "population": 120, "town": "Z\u00e1horovice", "winner_class": ["kdu-csl"], "lng": "17.779222"}, {"votes": ["0", "0", "0", "2", "6", "0", "12", "0", "0", "9", "0", "0", "0", "24", "18", "0", "4", "0", "9", "0", "5", "7", "5", "0", "1", "0", "0", "0", "0", "0", "5", "0", "0", "1", "0", "0", "2", "0"], "lat": "50.105641", "winner": "\u010cSSD", "id": "597481", "population": 110, "town": "Karlovice", "winner_class": ["cssd"], "lng": "17.445633"}, {"votes": ["0", "0", "0", "0", "23", "1", "12", "13", "0", "12", "0", "0", "0", "21", "22", "0", "2", "0", "3", "0", "5", "6", "7", "0", "0", "1", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.989602", "winner": "KDU-\u010cSL", "id": "586749", "population": 134, "town": "Vlko\u0161", "winner_class": ["kdu-csl"], "lng": "17.163559"}, {"votes": ["1", "0", "0", "4", "16", "7", "13", "1", "1", "12", "0", "0", "0", "41", "26", "0", "0", "0", "12", "0", "9", "2", "8", "0", "6", "3", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.887961", "winner": "\u010cSSD", "id": "554197", "population": 166, "town": "Branka u Opavy", "winner_class": ["cssd"], "lng": "17.882647"}, {"votes": ["0", "0", "0", "3", "9", "1", "22", "1", "0", "32", "0", "0", "0", "15", "17", "0", "0", "0", "9", "0", "6", "0", "10", "0", "0", "0", "0", "1", "0", "0", "5", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.372252", "winner": "KS\u010cM", "id": "534731", "population": 133, "town": "C\u00edtov", "winner_class": ["kscm"], "lng": "14.398134"}, {"votes": ["0", "2", "1", "0", "14", "1", "53", "1", "0", "9", "0", "0", "0", "16", "17", "0", "0", "0", "10", "0", "3", "4", "7", "0", "0", "1", "0", "1", "0", "1", "9", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.792944", "winner": "TOP 09", "id": "558940", "population": 151, "town": "Chot\u00edkov", "winner_class": ["top-09"], "lng": "13.317664"}, {"votes": ["0", "0", "0", "2", "19", "0", "7", "0", "0", "25", "1", "0", "0", "19", "22", "0", "1", "0", "22", "0", "2", "4", "3", "0", "1", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "1", "2", "1"], "lat": "49.199758", "winner": "KS\u010cM", "id": "586013", "population": 141, "town": "\u017dlutava", "winner_class": ["kscm"], "lng": "17.490371"}, {"votes": ["0", "1", "0", "0", "2", "3", "3", "1", "2", "14", "0", "1", "0", "9", "8", "0", "0", "1", "9", "0", "11", "1", "1", "0", "4", "0", "0", "1", "3", "0", "0", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.275172", "winner": "KS\u010cM", "id": "597716", "population": 75, "town": "Osoblaha", "winner_class": ["kscm"], "lng": "17.715233"}, {"votes": ["0", "0", "0", "0", "4", "3", "21", "3", "0", "10", "0", "0", "0", "8", "18", "0", "0", "0", "4", "0", "3", "4", "4", "0", "0", "1", "0", "4", "0", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.669068", "winner": "TOP 09", "id": "561207", "population": 96, "town": "Str\u00e1\u017e", "winner_class": ["top-09"], "lng": "12.77773"}, {"votes": ["0", "0", "0", "1", "15", "6", "16", "0", "0", "18", "0", "0", "0", "19", "31", "0", "1", "0", "14", "0", "13", "1", "7", "0", "0", "1", "0", "0", "0", "0", "8", "0", "0", "0", "1", "0", "1", "0"], "lat": "49.216959", "winner": "ANO", "id": "545287", "population": 153, "town": "V\u0161emyslice", "winner_class": ["ano"], "lng": "14.357888"}, {"votes": ["1", "1", "0", "1", "17", "0", "23", "2", "2", "13", "0", "0", "0", "22", "28", "0", "2", "0", "8", "0", "5", "8", "9", "0", "0", "0", "0", "0", "0", "0", "11", "0", "0", "1", "0", "0", "4", "0"], "lat": "49.170249", "winner": "ANO", "id": "583987", "population": 158, "town": "Tet\u010dice", "winner_class": ["ano"], "lng": "16.405632"}, {"votes": ["0", "2", "0", "2", "2", "4", "18", "0", "0", "29", "0", "0", "0", "28", "40", "0", "0", "1", "5", "0", "6", "1", "6", "0", "0", "0", "1", "0", "1", "0", "7", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.05682", "winner": "ANO", "id": "544248", "population": 156, "town": "Pavl\u00edkov", "winner_class": ["ano"], "lng": "13.736967"}, {"votes": ["0", "0", "0", "0", "25", "4", "2", "6", "1", "14", "0", "0", "0", "21", "13", "0", "2", "0", "2", "0", "2", "2", "4", "0", "1", "1", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.494817", "winner": "KDU-\u010cSL", "id": "514152", "population": 112, "town": "Kokory", "winner_class": ["kdu-csl"], "lng": "17.375439"}, {"votes": ["2", "1", "0", "1", "2", "2", "12", "0", "1", "33", "1", "0", "0", "30", "28", "0", "0", "0", "9", "0", "2", "2", "12", "0", "0", "1", "0", "2", "0", "2", "5", "0", "0", "0", "0", "3", "0", "0"], "lat": "49.907069", "winner": "KS\u010cM", "id": "531855", "population": 151, "town": "Tma\u0148", "winner_class": ["kscm"], "lng": "14.033825"}, {"votes": ["1", "1", "0", "1", "2", "5", "31", "0", "1", "12", "1", "1", "0", "16", "33", "0", "0", "0", "25", "0", "8", "4", "17", "0", "2", "0", "0", "0", "0", "0", "10", "1", "1", "0", "0", "0", "0", "1"], "lat": "50.203049", "winner": "ANO", "id": "538515", "population": 174, "town": "Mrat\u00edn", "winner_class": ["ano"], "lng": "14.550976"}, {"votes": ["0", "0", "0", "1", "24", "3", "21", "0", "0", "63", "0", "0", "1", "19", "15", "0", "1", "0", "7", "0", "0", "1", "6", "0", "3", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.779433", "winner": "KS\u010cM", "id": "584959", "population": 169, "town": "T\u00fdnec", "winner_class": ["kscm"], "lng": "17.013219"}, {"votes": ["0", "0", "1", "0", "29", "5", "30", "0", "0", "7", "0", "0", "0", "12", "19", "0", "0", "3", "15", "0", "2", "8", "11", "1", "1", "3", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.06029", "winner": "TOP 09", "id": "580627", "population": 157, "town": "Lukavice", "winner_class": ["top-09"], "lng": "16.482072"}, {"votes": ["2", "0", "0", "2", "8", "8", "23", "0", "0", "14", "0", "0", "0", "28", "39", "0", "0", "0", "9", "0", "5", "4", "4", "0", "1", "0", "0", "1", "0", "0", "4", "0", "0", "2", "1", "0", "0", "0"], "lat": "49.850732", "winner": "ANO", "id": "531138", "population": 155, "town": "Cerhovice", "winner_class": ["ano"], "lng": "13.836415"}, {"votes": ["0", "0", "1", "2", "16", "2", "10", "0", "3", "21", "0", "0", "0", "12", "13", "0", "0", "0", "5", "0", "5", "3", "2", "0", "0", "4", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.169479", "winner": "KS\u010cM", "id": "556181", "population": 105, "town": "Hartmanice", "winner_class": ["kscm"], "lng": "13.454553"}, {"votes": ["0", "3", "0", "1", "1", "8", "6", "0", "0", "23", "0", "0", "0", "20", "20", "0", "0", "1", "6", "0", "1", "1", "5", "0", "1", "1", "0", "0", "0", "0", "10", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.438215", "winner": "KS\u010cM", "id": "563137", "population": 109, "town": "Kov\u00e1\u0159sk\u00e1", "winner_class": ["kscm"], "lng": "13.053881"}, {"votes": ["1", "0", "0", "0", "20", "4", "21", "2", "0", "19", "0", "1", "0", "24", "45", "0", "0", "0", "10", "0", "11", "3", "9", "0", "2", "1", "0", "2", "0", "0", "3", "0", "0", "1", "1", "2", "0", "0"], "lat": "50.22946", "winner": "ANO", "id": "576778", "population": 182, "town": "Skuhrov nad B\u011blou", "winner_class": ["ano"], "lng": "16.292305"}, {"votes": ["0", "0", "0", "1", "11", "7", "23", "1", "1", "27", "0", "0", "0", "20", "39", "0", "0", "0", "1", "0", "9", "3", "5", "0", "2", "1", "0", "1", "0", "2", "5", "1", "1", "0", "0", "0", "0", "0"], "lat": "49.671777", "winner": "ANO", "id": "540218", "population": 161, "town": "Dublovice", "winner_class": ["ano"], "lng": "14.360892"}, {"votes": ["1", "1", "0", "0", "7", "1", "31", "0", "1", "4", "0", "0", "0", "18", "35", "0", "0", "0", "5", "2", "2", "5", "3", "0", "0", "1", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "1", "0"], "lat": "48.934881", "winner": "ANO", "id": "544973", "population": 128, "town": "Roudn\u00e9", "winner_class": ["ano"], "lng": "14.48744"}, {"votes": ["0", "0", "1", "0", "37", "8", "17", "1", "0", "14", "0", "0", "0", "16", "13", "0", "0", "1", "7", "0", "3", "2", "6", "0", "1", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.523456", "winner": "KDU-\u010cSL", "id": "549452", "population": 133, "town": "Chy\u0161ky", "winner_class": ["kdu-csl"], "lng": "14.427568"}, {"votes": ["0", "0", "0", "0", "21", "3", "20", "1", "0", "16", "0", "0", "0", "21", "16", "0", "0", "0", "11", "0", "9", "2", "3", "0", "1", "0", "0", "1", "0", "1", "10", "1", "1", "0", "0", "0", "0", "0"], "lat": "49.554178", "winner": "KDU-\u010cSL", "id": "569038", "population": 138, "town": "L\u00edpa", "winner_class": ["kdu-csl"], "lng": "15.544655"}, {"votes": ["1", "0", "0", "0", "40", "1", "6", "1", "0", "25", "0", "0", "0", "15", "16", "0", "7", "1", "14", "0", "3", "3", "8", "0", "0", "0", "0", "2", "0", "1", "8", "0", "3", "0", "0", "0", "0", "0"], "lat": "48.961626", "winner": "KDU-\u010cSL", "id": "584843", "population": 155, "town": "P\u0159ibice", "winner_class": ["kdu-csl"], "lng": "16.573335"}, {"votes": ["2", "0", "0", "0", "33", "2", "12", "0", "1", "9", "0", "0", "0", "16", "17", "1", "0", "0", "1", "0", "9", "2", "9", "0", "0", "1", "0", "0", "0", "0", "2", "0", "0", "2", "0", "0", "1", "0"], "lat": "49.052553", "winner": "KDU-\u010cSL", "id": "592528", "population": 120, "town": "Popovice", "winner_class": ["kdu-csl"], "lng": "17.527123"}, {"votes": ["3", "3", "0", "1", "4", "2", "41", "0", "5", "4", "0", "0", "0", "13", "41", "0", "0", "0", "15", "1", "7", "10", "21", "0", "0", "0", "2", "0", "0", "1", "5", "0", "0", "0", "0", "1", "2", "0"], "lat": "50.173216", "winner": "TOP 09", "id": "538965", "population": 182, "town": "Vele\u0148", "winner_class": ["top-09"], "lng": "14.554207"}, {"votes": ["1", "0", "0", "0", "7", "4", "24", "0", "2", "21", "0", "0", "0", "19", "25", "0", "0", "0", "5", "0", "5", "5", "14", "0", "2", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.690289", "winner": "ANO", "id": "564486", "population": 144, "town": "Podles\u00ed", "winner_class": ["ano"], "lng": "13.981841"}, {"votes": ["0", "0", "0", "0", "12", "5", "22", "1", "0", "18", "0", "0", "0", "16", "30", "0", "0", "0", "14", "2", "4", "4", "5", "0", "1", "1", "0", "1", "0", "0", "5", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.604607", "winner": "ANO", "id": "540552", "population": 143, "town": "Kr\u00e1sn\u00e1 Hora nad Vltavou", "winner_class": ["ano"], "lng": "14.277419"}, {"votes": ["0", "0", "0", "1", "4", "5", "15", "1", "7", "16", "0", "0", "0", "8", "15", "0", "2", "0", "13", "0", "5", "6", "0", "1", "2", "1", "0", "2", "0", "0", "4", "0", "1", "0", "0", "1", "0", "0"], "lat": "50.368745", "winner": "KS\u010cM", "id": "554979", "population": 110, "town": "Abertamy", "winner_class": ["kscm"], "lng": "12.81826"}, {"votes": ["1", "0", "1", "4", "16", "5", "32", "0", "0", "25", "0", "0", "0", "14", "34", "0", "0", "0", "7", "0", "5", "6", "9", "0", "1", "2", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "1", "2"], "lat": "50.421271", "winner": "ANO", "id": "574481", "population": 170, "town": "Studnice", "winner_class": ["ano"], "lng": "16.089873"}, {"votes": ["0", "0", "0", "0", "30", "1", "9", "0", "0", "13", "0", "0", "0", "11", "16", "0", "0", "0", "2", "0", "1", "4", "3", "0", "0", "0", "0", "0", "0", "1", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.799779", "winner": "KDU-\u010cSL", "id": "595128", "population": 93, "town": "Vrbovec", "winner_class": ["kdu-csl"], "lng": "16.100615"}, {"votes": ["0", "1", "0", "0", "2", "13", "22", "3", "2", "10", "0", "0", "0", "12", "25", "2", "0", "0", "11", "1", "8", "12", "7", "0", "4", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.658561", "winner": "ANO", "id": "579262", "population": 143, "town": "Horn\u00ed Mar\u0161ov", "winner_class": ["ano"], "lng": "15.819753"}, {"votes": ["0", "0", "0", "0", "58", "1", "11", "1", "0", "13", "0", "0", "0", "25", "20", "0", "3", "0", "8", "0", "0", "1", "5", "0", "0", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "1", "0", "1"], "lat": "49.040649", "winner": "KDU-\u010cSL", "id": "586790", "population": 156, "town": "\u017daro\u0161ice", "winner_class": ["kdu-csl"], "lng": "16.967132"}, {"votes": ["3", "1", "0", "0", "17", "4", "14", "0", "0", "18", "0", "0", "0", "11", "9", "0", "3", "0", "4", "1", "9", "2", "3", "0", "1", "0", "0", "0", "0", "0", "2", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.022885", "winner": "KS\u010cM", "id": "586820", "population": 104, "town": "\u017deravice", "winner_class": ["kscm"], "lng": "17.237263"}, {"votes": ["1", "0", "0", "5", "13", "9", "32", "5", "0", "12", "0", "0", "0", "22", "43", "0", "0", "2", "22", "0", "8", "3", "16", "0", "0", "0", "0", "0", "0", "0", "15", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.434849", "winner": "ANO", "id": "574546", "population": 209, "town": "Kramolna", "winner_class": ["ano"], "lng": "16.11375"}, {"votes": ["1", "0", "0", "0", "5", "3", "9", "0", "0", "14", "0", "0", "0", "20", "10", "0", "1", "0", "9", "0", "0", "2", "4", "0", "0", "0", "0", "0", "1", "0", "5", "0", "0", "0", "0", "0", "1", "1"], "lat": "50.007862", "winner": "\u010cSSD", "id": "597554", "population": 86, "town": "Lichnov", "winner_class": ["cssd"], "lng": "17.626404"}, {"votes": ["0", "1", "0", "6", "6", "6", "21", "0", "0", "17", "0", "0", "0", "11", "31", "0", "0", "1", "18", "1", "6", "2", "13", "0", "1", "0", "0", "3", "0", "0", "2", "0", "0", "0", "0", "1", "2", "0"], "lat": "50.114387", "winner": "ANO", "id": "532347", "population": 149, "town": "Hostou\u0148", "winner_class": ["ano"], "lng": "14.201276"}, {"votes": ["0", "1", "0", "0", "3", "5", "16", "1", "2", "40", "0", "0", "0", "13", "27", "0", "0", "0", "4", "1", "2", "7", "4", "0", "7", "0", "0", "0", "2", "1", "6", "1", "1", "0", "1", "2", "0", "0"], "lat": "50.031006", "winner": "KS\u010cM", "id": "533866", "population": 147, "town": "Vitice", "winner_class": ["kscm"], "lng": "14.914505"}, {"votes": ["1", "1", "0", "2", "13", "4", "41", "3", "0", "23", "0", "0", "0", "19", "26", "0", "0", "0", "5", "1", "6", "4", "7", "0", "0", "0", "0", "2", "0", "1", "13", "1", "0", "1", "1", "0", "0", "0"], "lat": "48.889992", "winner": "TOP 09", "id": "545490", "population": 175, "town": "Holubov", "winner_class": ["top-09"], "lng": "14.321089"}, {"votes": ["1", "0", "0", "0", "40", "2", "36", "2", "0", "11", "0", "0", "0", "24", "60", "0", "4", "1", "17", "0", "10", "18", "14", "0", "0", "0", "0", "0", "0", "0", "20", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.283303", "winner": "ANO", "id": "582794", "population": 262, "town": "Babice nad Svitavou", "winner_class": ["ano"], "lng": "16.696129"}, {"votes": ["2", "0", "1", "2", "5", "1", "21", "0", "0", "14", "0", "0", "0", "14", "27", "1", "0", "0", "12", "0", "7", "7", "3", "0", "0", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.312796", "winner": "ANO", "id": "535117", "population": 126, "town": "Nov\u00e1 Ves", "winner_class": ["ano"], "lng": "14.308177"}, {"votes": ["0", "0", "0", "0", "3", "6", "17", "0", "0", "16", "0", "1", "0", "8", "28", "0", "0", "0", "17", "1", "3", "4", "1", "0", "0", "0", "0", "0", "0", "0", "2", "2", "0", "1", "0", "0", "0", "0"], "lat": "49.505565", "winner": "ANO", "id": "553913", "population": 110, "town": "Meclov", "winner_class": ["ano"], "lng": "12.880817"}, {"votes": ["1", "0", "0", "1", "1", "4", "19", "1", "3", "12", "0", "0", "0", "20", "35", "0", "0", "0", "9", "0", "8", "4", "12", "0", "4", "1", "0", "0", "0", "0", "16", "0", "0", "0", "1", "0", "0", "0"], "lat": "50.520274", "winner": "ANO", "id": "563501", "population": 152, "town": "Vysok\u00e1 Pec", "winner_class": ["ano"], "lng": "13.470252"}, {"votes": ["0", "0", "0", "0", "9", "0", "15", "0", "0", "8", "0", "0", "0", "21", "21", "0", "0", "0", "15", "0", "3", "0", "4", "0", "1", "1", "0", "1", "0", "0", "4", "0", "0", "1", "0", "1", "0", "0"], "lat": "49.075032", "winner": "\u010cSSD", "id": "583553", "population": 105, "town": "Opatovice", "winner_class": ["cssd"], "lng": "16.640974"}, {"votes": ["1", "0", "1", "1", "5", "7", "17", "0", "0", "6", "0", "0", "0", "25", "18", "0", "1", "0", "3", "0", "5", "6", "7", "0", "4", "2", "0", "6", "1", "0", "4", "1", "0", "1", "0", "0", "0", "0"], "lat": "50.328081", "winner": "\u010cSSD", "id": "555363", "population": 122, "town": "Merkl\u00edn", "winner_class": ["cssd"], "lng": "12.863496"}, {"votes": ["0", "0", "0", "1", "23", "2", "13", "0", "0", "14", "1", "0", "0", "23", "16", "0", "0", "0", "10", "0", "6", "2", "2", "0", "2", "1", "0", "0", "0", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.610184", "winner": "KDU-\u010cSL", "id": "530212", "population": 121, "town": "Na\u010deradec", "winner_class": ["kdu-csl"], "lng": "14.906329"}, {"votes": ["1", "0", "1", "0", "7", "6", "45", "0", "0", "4", "1", "0", "0", "9", "33", "0", "0", "1", "13", "0", "2", "14", "13", "0", "1", "3", "0", "0", "0", "0", "17", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.909847", "winner": "TOP 09", "id": "538485", "population": 173, "town": "Miro\u0161ovice", "winner_class": ["top-09"], "lng": "14.7112"}, {"votes": ["0", "1", "2", "3", "8", "5", "34", "1", "4", "13", "0", "0", "0", "30", "45", "1", "0", "0", "16", "0", "4", "2", "18", "0", "1", "1", "0", "2", "0", "0", "8", "1", "0", "0", "0", "1", "1", "0"], "lat": "50.624661", "winner": "ANO", "id": "563641", "population": 202, "town": "Koberovy", "winner_class": ["ano"], "lng": "15.228224"}, {"votes": ["0", "0", "0", "0", "1", "3", "16", "0", "0", "9", "0", "0", "0", "29", "27", "0", "0", "3", "7", "1", "10", "6", "3", "0", "2", "1", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "1", "1"], "lat": "50.69489", "winner": "\u010cSSD", "id": "564290", "population": 129, "town": "Ose\u010dn\u00e1", "winner_class": ["cssd"], "lng": "14.921375"}, {"votes": ["3", "0", "2", "2", "9", "3", "16", "0", "0", "40", "0", "0", "0", "7", "18", "0", "0", "1", "12", "2", "14", "4", "2", "0", "3", "0", "0", "1", "0", "1", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.364092", "winner": "KS\u010cM", "id": "565679", "population": 143, "town": "Stra\u0161kov-Vodochody", "winner_class": ["kscm"], "lng": "14.250214"}, {"votes": ["1", "0", "1", "0", "17", "3", "8", "0", "0", "5", "0", "2", "0", "25", "10", "0", "0", "0", "3", "0", "2", "2", "1", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.661005", "winner": "\u010cSSD", "id": "578185", "population": 83, "town": "Jedlov\u00e1", "winner_class": ["cssd"], "lng": "16.306082"}, {"votes": ["0", "0", "0", "0", "39", "6", "13", "0", "0", "10", "0", "1", "0", "17", "15", "0", "1", "0", "10", "0", "4", "0", "4", "0", "2", "0", "0", "2", "0", "0", "10", "0", "0", "2", "0", "1", "0", "0"], "lat": "49.965089", "winner": "KDU-\u010cSL", "id": "540510", "population": 137, "town": "Ol\u0161any", "winner_class": ["kdu-csl"], "lng": "16.858941"}, {"votes": ["1", "0", "0", "0", "45", "2", "20", "0", "0", "5", "0", "0", "0", "9", "23", "0", "2", "0", "13", "0", "5", "3", "7", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.002994", "winner": "KDU-\u010cSL", "id": "507105", "population": 139, "town": "Hn\u011bvo\u0161ice", "winner_class": ["kdu-csl"], "lng": "18.008287"}, {"votes": ["2", "1", "0", "0", "41", "1", "17", "1", "2", "31", "0", "0", "1", "16", "13", "0", "0", "0", "8", "2", "1", "4", "7", "0", "0", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.565633", "winner": "KDU-\u010cSL", "id": "548332", "population": 157, "town": "Lukavec", "winner_class": ["kdu-csl"], "lng": "14.990318"}, {"votes": ["0", "0", "0", "0", "4", "2", "50", "2", "0", "25", "0", "0", "0", "17", "28", "0", "0", "0", "11", "2", "1", "6", "2", "0", "1", "0", "0", "0", "0", "0", "8", "0", "0", "1", "0", "0", "2", "0"], "lat": "49.562029", "winner": "TOP 09", "id": "558257", "population": 162, "town": "P\u0159\u00edchovice", "winner_class": ["top-09"], "lng": "13.339352"}, {"votes": ["0", "0", "0", "1", "42", "1", "3", "0", "0", "35", "0", "0", "0", "21", "26", "0", "1", "0", "12", "1", "14", "2", "6", "0", "0", "1", "0", "3", "1", "2", "1", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.448261", "winner": "KDU-\u010cSL", "id": "589268", "population": 174, "town": "Bediho\u0161\u0165", "winner_class": ["kdu-csl"], "lng": "17.166427"}, {"votes": ["1", "0", "0", "0", "20", "3", "6", "0", "0", "33", "0", "0", "0", "37", "13", "0", "2", "0", "6", "0", "9", "4", "3", "0", "1", "0", "0", "3", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.550963", "winner": "\u010cSSD", "id": "589381", "population": 145, "town": "\u010cechy pod Kos\u00ed\u0159em", "winner_class": ["cssd"], "lng": "17.037669"}, {"votes": ["0", "0", "0", "0", "8", "4", "4", "0", "0", "10", "0", "0", "1", "36", "13", "0", "2", "0", "5", "0", "3", "0", "1", "0", "1", "0", "0", "0", "0", "0", "7", "0", "0", "1", "0", "0", "0", "1"], "lat": "49.75044", "winner": "\u010cSSD", "id": "568422", "population": 97, "town": "Velk\u00e9 Albrechtice", "winner_class": ["cssd"], "lng": "18.043937"}, {"votes": ["2", "1", "0", "0", "2", "3", "7", "1", "0", "13", "0", "0", "0", "36", "9", "0", "0", "1", "3", "0", "7", "4", "5", "0", "2", "0", "0", "1", "0", "0", "3", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.294009", "winner": "\u010cSSD", "id": "532461", "population": 101, "town": "Klobuky", "winner_class": ["cssd"], "lng": "13.987482"}, {"votes": ["1", "0", "0", "2", "20", "3", "8", "0", "0", "16", "0", "0", "0", "10", "20", "0", "0", "0", "6", "0", "6", "2", "6", "0", "2", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.281958", "winner": "KDU-\u010cSL", "id": "587931", "population": 105, "town": "Stona\u0159ov", "winner_class": ["kdu-csl"], "lng": "15.586027"}, {"votes": ["1", "0", "0", "2", "7", "2", "67", "0", "0", "13", "0", "0", "0", "10", "51", "0", "1", "0", "34", "0", "3", "9", "14", "0", "3", "1", "0", "0", "0", "1", "13", "2", "2", "0", "0", "2", "3", "0"], "lat": "50.451352", "winner": "TOP 09", "id": "570788", "population": 241, "town": "Bradlec", "winner_class": ["top-09"], "lng": "14.910185"}, {"votes": ["0", "0", "0", "0", "5", "0", "35", "0", "0", "21", "0", "0", "0", "13", "29", "0", "0", "2", "7", "0", "3", "10", "9", "0", "2", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.993427", "winner": "TOP 09", "id": "575437", "population": 144, "town": "Ost\u0159e\u0161any", "winner_class": ["top-09"], "lng": "15.805303"}, {"votes": ["0", "0", "0", "0", "4", "6", "9", "0", "1", "21", "0", "0", "0", "29", "17", "0", "0", "0", "5", "0", "2", "3", "4", "0", "2", "0", "0", "1", "0", "0", "4", "0", "0", "0", "0", "3", "0", "0"], "lat": "49.909982", "winner": "\u010cSSD", "id": "572578", "population": 111, "town": "Zaje\u010dice", "winner_class": ["cssd"], "lng": "15.884103"}, {"votes": ["0", "0", "1", "0", "10", "4", "60", "2", "0", "18", "0", "1", "2", "16", "58", "1", "0", "0", "17", "0", "9", "11", "20", "0", "1", "0", "0", "3", "0", "0", "12", "1", "0", "0", "0", "0", "1", "0"], "lat": "50.132184", "winner": "TOP 09", "id": "539708", "population": 248, "town": "St\u0159edokluky", "winner_class": ["top-09"], "lng": "14.234192"}, {"votes": ["0", "1", "0", "0", "10", "5", "2", "0", "0", "21", "0", "0", "0", "30", "21", "0", "1", "0", "10", "0", "5", "4", "1", "0", "3", "0", "0", "1", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.915099", "winner": "\u010cSSD", "id": "507377", "population": 116, "town": "Jakartovice", "winner_class": ["cssd"], "lng": "17.684002"}, {"votes": ["0", "0", "0", "0", "4", "1", "21", "0", "0", "18", "0", "0", "0", "8", "20", "0", "0", "1", "17", "0", "4", "4", "19", "0", "0", "1", "0", "1", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.139788", "winner": "TOP 09", "id": "576077", "population": 123, "town": "Albrechtice nad Orlic\u00ed", "winner_class": ["top-09"], "lng": "16.064367"}, {"votes": ["0", "1", "0", "0", "41", "2", "13", "1", "1", "18", "0", "0", "0", "17", "21", "0", "3", "0", "11", "0", "3", "3", "9", "0", "2", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.320577", "winner": "KDU-\u010cSL", "id": "582948", "population": 154, "town": "Debl\u00edn", "winner_class": ["kdu-csl"], "lng": "16.346787"}, {"votes": ["0", "0", "0", "0", "28", "2", "19", "0", "3", "13", "0", "0", "0", "11", "5", "0", "0", "1", "20", "0", "2", "4", "2", "0", "0", "2", "0", "0", "0", "2", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.929875", "winner": "KDU-\u010cSL", "id": "545431", "population": 120, "town": "Brloh", "winner_class": ["kdu-csl"], "lng": "14.218568"}, {"votes": ["1", "0", "0", "0", "17", "2", "11", "0", "0", "13", "0", "0", "0", "17", "14", "0", "0", "0", "12", "0", "5", "1", "4", "0", "3", "0", "0", "1", "0", "0", "4", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.502411", "winner": "KDU-\u010cSL", "id": "550817", "population": 106, "town": "B\u011bl\u010dice", "winner_class": ["kdu-csl"], "lng": "13.87575"}, {"votes": ["1", "0", "0", "2", "7", "0", "27", "1", "0", "18", "0", "0", "0", "14", "33", "0", "0", "0", "11", "0", "8", "3", "0", "0", "3", "0", "0", "0", "0", "0", "17", "0", "0", "0", "0", "0", "0", "2"], "lat": "49.987393", "winner": "ANO", "id": "575054", "population": 147, "town": "Choltice", "winner_class": ["ano"], "lng": "15.620002"}, {"votes": ["0", "0", "0", "0", "28", "3", "5", "0", "0", "11", "0", "0", "0", "3", "11", "0", "4", "0", "4", "0", "7", "2", "3", "0", "0", "0", "1", "0", "0", "0", "1", "0", "1", "0", "0", "1", "0", "0"], "lat": "48.92543", "winner": "KDU-\u010cSL", "id": "592099", "population": 85, "town": "B\u0159ezov\u00e1", "winner_class": ["kdu-csl"], "lng": "17.739857"}, {"votes": ["1", "1", "0", "0", "28", "0", "16", "1", "0", "12", "0", "0", "0", "4", "30", "0", "7", "0", "32", "0", "7", "5", "15", "0", "0", "1", "0", "4", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.443787", "winner": "ODS", "id": "545210", "population": 171, "town": "Vigantice", "winner_class": ["ods"], "lng": "18.184025"}, {"votes": ["1", "0", "0", "1", "7", "5", "29", "6", "1", "11", "0", "0", "0", "11", "24", "0", "0", "0", "5", "0", "3", "8", "15", "1", "0", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.90366", "winner": "TOP 09", "id": "531456", "population": 133, "town": "Lite\u0148", "winner_class": ["top-09"], "lng": "14.147205"}, {"votes": ["0", "0", "0", "0", "6", "0", "2", "0", "5", "4", "0", "0", "0", "15", "8", "0", "0", "0", "0", "2", "7", "2", "2", "0", "0", "0", "1", "1", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.796137", "winner": "\u010cSSD", "id": "594822", "population": 58, "town": "Strachotice", "winner_class": ["cssd"], "lng": "16.172299"}, {"votes": ["0", "0", "0", "0", "0", "0", "19", "2", "1", "20", "1", "0", "0", "17", "26", "0", "0", "0", "4", "1", "2", "5", "3", "0", "3", "1", "0", "0", "0", "2", "7", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.630815", "winner": "ANO", "id": "567523", "population": 115, "town": "H\u00e1j u Duchcova", "winner_class": ["ano"], "lng": "13.712577"}, {"votes": ["0", "0", "0", "1", "9", "2", "20", "2", "0", "26", "0", "0", "0", "20", "23", "0", "0", "0", "15", "0", "2", "9", "10", "0", "0", "1", "0", "4", "0", "0", "13", "2", "0", "0", "0", "0", "1", "0"], "lat": "50.051896", "winner": "KS\u010cM", "id": "574805", "population": 160, "town": "B\u0159ehy", "winner_class": ["kscm"], "lng": "15.577477"}, {"votes": ["0", "0", "2", "0", "14", "3", "14", "1", "0", "26", "0", "0", "0", "19", "18", "0", "0", "1", "11", "0", "3", "4", "14", "0", "0", "0", "1", "1", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.465575", "winner": "KS\u010cM", "id": "549339", "population": 141, "town": "\u010cimelice", "winner_class": ["kscm"], "lng": "14.069223"}, {"votes": ["1", "2", "0", "1", "37", "5", "16", "0", "0", "30", "0", "0", "0", "17", "23", "0", "2", "0", "16", "0", "11", "3", "5", "0", "0", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.828062", "winner": "KDU-\u010cSL", "id": "534927", "population": 181, "town": "Dubicko", "winner_class": ["kdu-csl"], "lng": "16.962663"}, {"votes": ["0", "4", "0", "0", "11", "0", "2", "0", "0", "22", "0", "1", "0", "22", "8", "0", "3", "0", "11", "0", "2", "0", "2", "0", "0", "1", "0", "1", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.563575", "winner": "KS\u010cM", "id": "568732", "population": 97, "town": "\u017denklava", "winner_class": ["kscm"], "lng": "18.107188"}, {"votes": ["0", "0", "1", "3", "5", "5", "37", "0", "0", "22", "1", "0", "0", "31", "43", "0", "0", "0", "32", "0", "4", "2", "13", "2", "4", "2", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.102029", "winner": "ANO", "id": "532126", "population": 218, "town": "Bra\u0161kov", "winner_class": ["ano"], "lng": "14.10075"}, {"votes": ["2", "0", "0", "0", "3", "4", "21", "0", "1", "18", "0", "1", "0", "29", "35", "0", "1", "0", "3", "0", "13", "7", "5", "0", "1", "1", "0", "0", "0", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.956709", "winner": "ANO", "id": "533181", "population": 150, "town": "Be\u010dv\u00e1ry", "winner_class": ["ano"], "lng": "15.079811"}, {"votes": ["0", "0", "0", "0", "4", "4", "28", "0", "1", "18", "0", "0", "0", "18", "36", "0", "1", "1", "24", "1", "5", "1", "2", "0", "2", "2", "0", "3", "0", "1", "12", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.172872", "winner": "ANO", "id": "570656", "population": 165, "town": "Praska\u010dka", "winner_class": ["ano"], "lng": "15.742697"}, {"votes": ["1", "0", "1", "1", "36", "4", "35", "0", "0", "28", "0", "0", "0", "5", "24", "0", "0", "0", "15", "0", "6", "0", "2", "0", "1", "2", "0", "0", "0", "2", "3", "0", "1", "0", "0", "2", "1", "0"], "lat": "49.843547", "winner": "KDU-\u010cSL", "id": "578509", "population": 170, "town": "Os\u00edk", "winner_class": ["kdu-csl"], "lng": "16.284666"}, {"votes": ["1", "0", "0", "0", "126", "0", "28", "0", "1", "8", "0", "0", "0", "29", "29", "0", "1", "0", "2", "1", "7", "2", "11", "0", "0", "0", "0", "0", "0", "0", "12", "0", "0", "0", "0", "5", "1", "0"], "lat": "49.203708", "winner": "KDU-\u010cSL", "id": "583863", "population": 264, "town": "Sivice", "winner_class": ["kdu-csl"], "lng": "16.782541"}, {"votes": ["1", "0", "0", "0", "0", "3", "11", "1", "0", "21", "0", "0", "0", "20", "28", "0", "0", "0", "7", "4", "8", "2", "8", "0", "0", "2", "0", "1", "0", "0", "6", "0", "0", "1", "0", "0", "0", "1"], "lat": "50.521", "winner": "ANO", "id": "579319", "population": 125, "town": "Chot\u011bvice", "winner_class": ["ano"], "lng": "15.7604"}, {"votes": ["0", "1", "0", "0", "2", "2", "11", "0", "0", "9", "0", "0", "0", "21", "24", "0", "0", "0", "4", "0", "7", "2", "3", "0", "0", "0", "0", "1", "1", "0", "6", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.330779", "winner": "ANO", "id": "535559", "population": 95, "town": "Brodce", "winner_class": ["ano"], "lng": "14.868103"}, {"votes": ["0", "0", "0", "0", "82", "1", "16", "0", "1", "21", "0", "1", "0", "13", "23", "0", "7", "0", "4", "1", "0", "4", "11", "0", "0", "0", "0", "2", "0", "0", "7", "0", "0", "0", "0", "1", "0", "0"], "lat": "48.967803", "winner": "KDU-\u010cSL", "id": "584967", "population": 195, "town": "Uher\u010dice", "winner_class": ["kdu-csl"], "lng": "16.653441"}, {"votes": ["0", "0", "0", "3", "11", "5", "4", "0", "0", "13", "0", "0", "0", "24", "13", "0", "2", "0", "1", "0", "7", "1", "5", "0", "0", "1", "0", "2", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.273028", "winner": "\u010cSSD", "id": "540684", "population": 95, "town": "P\u00edse\u010dn\u00e1", "winner_class": ["cssd"], "lng": "17.25373"}, {"votes": ["0", "0", "0", "0", "2", "2", "37", "0", "2", "25", "0", "0", "0", "18", "45", "0", "0", "0", "11", "0", "4", "1", "14", "1", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.069705", "winner": "ANO", "id": "532215", "population": 169, "town": "\u010cerven\u00fd \u00dajezd", "winner_class": ["ano"], "lng": "14.165908"}, {"votes": ["0", "2", "0", "0", "1", "1", "16", "0", "0", "24", "0", "0", "0", "12", "15", "0", "0", "0", "11", "0", "6", "2", "2", "0", "1", "0", "0", "2", "0", "0", "9", "0", "0", "1", "0", "0", "1", "1"], "lat": "50.266664", "winner": "KS\u010cM", "id": "566454", "population": 107, "town": "M\u011bcholupy", "winner_class": ["kscm"], "lng": "13.537369"}, {"votes": ["0", "0", "0", "0", "55", "3", "8", "0", "2", "18", "0", "0", "1", "24", "8", "0", "3", "0", "10", "0", "2", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.482682", "winner": "KDU-\u010cSL", "id": "589926", "population": 135, "town": "Protivanov", "winner_class": ["kdu-csl"], "lng": "16.836338"}, {"votes": ["0", "0", "0", "1", "6", "1", "33", "2", "0", "10", "0", "0", "0", "19", "17", "0", "0", "1", "8", "0", "7", "6", "0", "0", "1", "1", "0", "1", "0", "0", "8", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.763793", "winner": "TOP 09", "id": "559059", "population": 123, "town": "Kozolupy", "winner_class": ["top-09"], "lng": "13.252103"}, {"votes": ["3", "2", "0", "0", "2", "1", "25", "1", "2", "6", "0", "0", "0", "26", "45", "1", "0", "0", "15", "0", "4", "2", "4", "0", "2", "2", "0", "0", "0", "3", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.333717", "winner": "ANO", "id": "542571", "population": 154, "town": "C\u00edtoliby", "winner_class": ["ano"], "lng": "13.809904"}, {"votes": ["1", "0", "0", "0", "10", "4", "20", "1", "1", "44", "0", "1", "0", "27", "15", "0", "1", "1", "25", "0", "9", "1", "5", "0", "0", "0", "0", "0", "1", "0", "4", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.700509", "winner": "KS\u010cM", "id": "568775", "population": 172, "town": "Pust\u011bjov", "winner_class": ["kscm"], "lng": "18.003899"}, {"votes": ["0", "1", "0", "0", "8", "1", "23", "0", "0", "17", "0", "0", "0", "20", "35", "0", "0", "4", "8", "0", "7", "6", "6", "0", "2", "1", "0", "1", "0", "1", "17", "0", "1", "1", "0", "1", "0", "0"], "lat": "50.133022", "winner": "ANO", "id": "574856", "population": 161, "town": "\u010ceperka", "winner_class": ["ano"], "lng": "15.773234"}, {"votes": ["0", "0", "0", "0", "26", "1", "14", "1", "0", "10", "0", "0", "0", "29", "29", "0", "0", "0", "10", "0", "3", "8", "11", "0", "1", "2", "1", "1", "0", "0", "7", "0", "0", "0", "1", "0", "0", "0"], "lat": "49.383321", "winner": "\u010cSSD", "id": "548464", "population": 155, "town": "Nov\u00fd Rychnov", "winner_class": ["cssd"], "lng": "15.366307"}, {"votes": ["1", "0", "0", "0", "97", "2", "19", "0", "0", "7", "0", "0", "0", "13", "7", "0", "0", "0", "5", "0", "2", "2", "11", "0", "1", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.04977", "winner": "KDU-\u010cSL", "id": "592200", "population": 171, "town": "Hrad\u010dovice", "winner_class": ["kdu-csl"], "lng": "17.582091"}, {"votes": ["3", "1", "0", "2", "20", "4", "75", "3", "0", "5", "0", "0", "0", "12", "34", "0", "0", "0", "20", "1", "2", "18", "14", "0", "1", "0", "0", "0", "0", "0", "7", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.970077", "winner": "TOP 09", "id": "538841", "population": 223, "town": "Sv\u011btice", "winner_class": ["top-09"], "lng": "14.665804"}, {"votes": ["1", "1", "0", "1", "53", "3", "5", "0", "0", "10", "0", "1", "0", "23", "21", "0", "3", "0", "7", "1", "1", "2", "3", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.915167", "winner": "KDU-\u010cSL", "id": "586331", "population": 138, "town": "Louka", "winner_class": ["kdu-csl"], "lng": "17.489273"}, {"votes": ["2", "0", "0", "0", "23", "1", "16", "1", "1", "29", "0", "0", "0", "9", "39", "0", "0", "1", "12", "1", "4", "2", "0", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.815417", "winner": "ANO", "id": "569712", "population": 146, "town": "Vil\u00e9mov", "winner_class": ["ano"], "lng": "15.534885"}, {"votes": ["2", "0", "0", "0", "16", "0", "32", "0", "0", "15", "0", "0", "0", "21", "20", "0", "0", "0", "4", "0", "12", "6", "10", "0", "0", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.075857", "winner": "TOP 09", "id": "583031", "population": 147, "town": "Holasice", "winner_class": ["top-09"], "lng": "16.607562"}, {"votes": ["0", "0", "0", "1", "3", "1", "34", "0", "0", "15", "0", "0", "0", "13", "20", "0", "0", "0", "9", "0", "3", "4", "2", "0", "3", "1", "0", "0", "0", "0", "1", "1", "0", "0", "0", "1", "2", "0"], "lat": "49.487859", "winner": "TOP 09", "id": "553816", "population": 114, "town": "Kolove\u010d", "winner_class": ["top-09"], "lng": "13.10833"}, {"votes": ["2", "0", "0", "0", "1", "2", "7", "0", "0", "22", "0", "0", "0", "22", "16", "0", "0", "0", "7", "0", "6", "6", "5", "0", "3", "0", "0", "0", "1", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.047158", "winner": "KS\u010cM", "id": "597937", "population": 103, "town": "\u00davalno", "winner_class": ["kscm"], "lng": "17.744733"}, {"votes": ["1", "0", "0", "0", "5", "1", "26", "1", "0", "19", "0", "0", "0", "79", "39", "0", "0", "1", "16", "0", "5", "8", "11", "0", "1", "3", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.102983", "winner": "\u010cSSD", "id": "532274", "population": 226, "town": "Dru\u017eec", "winner_class": ["cssd"], "lng": "14.045401"}, {"votes": ["0", "0", "0", "1", "1", "2", "31", "1", "0", "32", "0", "0", "0", "16", "26", "0", "0", "0", "20", "0", "1", "5", "6", "0", "0", "0", "0", "4", "0", "0", "12", "0", "1", "1", "0", "3", "2", "0"], "lat": "50.026715", "winner": "KS\u010cM", "id": "598526", "population": 165, "town": "Roztoky", "winner_class": ["kscm"], "lng": "13.867867"}, {"votes": ["0", "1", "0", "0", "0", "10", "16", "0", "9", "45", "0", "2", "0", "19", "18", "0", "0", "0", "9", "0", "10", "16", "4", "0", "5", "3", "0", "6", "1", "0", "0", "0", "0", "1", "0", "3", "1", "1"], "lat": "50.517343", "winner": "KS\u010cM", "id": "567566", "population": 180, "town": "Hrob\u010dice", "winner_class": ["kscm"], "lng": "13.785603"}, {"votes": ["0", "1", "0", "1", "0", "8", "10", "2", "0", "14", "0", "0", "0", "17", "9", "0", "0", "0", "17", "0", "13", "2", "1", "0", "1", "0", "0", "1", "0", "0", "7", "1", "0", "0", "0", "0", "1", "0"], "lat": "50.703239", "winner": "\u010cSSD", "id": "563757", "population": 106, "town": "Plavy", "winner_class": ["cssd"], "lng": "15.317363"}, {"votes": ["1", "2", "1", "0", "6", "6", "12", "0", "2", "17", "0", "0", "0", "28", "20", "0", "0", "0", "3", "1", "11", "3", "1", "0", "2", "1", "0", "0", "0", "0", "6", "1", "0", "0", "0", "1", "2", "0"], "lat": "50.13333", "winner": "\u010cSSD", "id": "503941", "population": 127, "town": "Libav\u00e1", "winner_class": ["cssd"], "lng": "12.966666"}, {"votes": ["0", "0", "0", "0", "5", "3", "7", "0", "0", "30", "0", "0", "0", "9", "24", "0", "1", "0", "9", "0", "8", "4", "2", "0", "1", "1", "0", "2", "0", "0", "7", "2", "0", "0", "0", "0", "0", "0"], "lat": "50.076369", "winner": "KS\u010cM", "id": "576191", "population": 115, "town": "\u010cermn\u00e1 nad Orlic\u00ed", "winner_class": ["kscm"], "lng": "16.132099"}, {"votes": ["0", "0", "0", "3", "7", "6", "69", "0", "0", "16", "0", "0", "0", "9", "39", "0", "0", "0", "17", "1", "2", "3", "12", "0", "1", "0", "0", "1", "0", "0", "9", "0", "2", "0", "0", "0", "0", "4"], "lat": "49.894515", "winner": "TOP 09", "id": "539651", "population": 201, "town": "\u0158itka", "winner_class": ["top-09"], "lng": "14.299234"}, {"votes": ["2", "0", "1", "1", "2", "0", "25", "0", "0", "16", "0", "0", "0", "20", "15", "0", "0", "0", "6", "0", "2", "5", "6", "0", "0", "0", "1", "0", "0", "0", "6", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.407837", "winner": "TOP 09", "id": "535001", "population": 110, "town": "Lib\u011bchov", "winner_class": ["top-09"], "lng": "14.446746"}, {"votes": ["0", "0", "0", "0", "75", "0", "9", "0", "0", "25", "0", "0", "0", "32", "14", "0", "3", "0", "10", "0", "1", "4", "0", "0", "0", "1", "0", "0", "0", "0", "7", "1", "0", "0", "0", "0", "0", "1"], "lat": "49.278459", "winner": "KDU-\u010cSL", "id": "593621", "population": 183, "town": "\u0160v\u00e1benice", "winner_class": ["kdu-csl"], "lng": "17.124305"}, {"votes": ["3", "0", "0", "1", "41", "1", "6", "1", "0", "11", "0", "0", "0", "23", "18", "0", "2", "0", "2", "0", "3", "3", "6", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.117465", "winner": "KDU-\u010cSL", "id": "593613", "population": 126, "town": "\u0160aratice", "winner_class": ["kdu-csl"], "lng": "16.803507"}, {"votes": ["1", "0", "0", "1", "37", "0", "7", "1", "0", "16", "0", "0", "0", "17", "25", "0", "3", "0", "5", "0", "8", "2", "3", "0", "1", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.108172", "winner": "KDU-\u010cSL", "id": "592218", "population": 130, "town": "Hu\u0161t\u011bnovice", "winner_class": ["kdu-csl"], "lng": "17.464468"}, {"votes": ["3", "1", "0", "0", "7", "2", "34", "0", "4", "24", "0", "0", "0", "23", "34", "0", "0", "1", "5", "0", "5", "4", "12", "1", "1", "0", "0", "0", "0", "1", "12", "2", "1", "0", "0", "5", "2", "0"], "lat": "50.043346", "winner": "TOP 09", "id": "532991", "population": 184, "town": "\u00dahonice", "winner_class": ["top-09"], "lng": "14.18622"}, {"votes": ["0", "0", "0", "0", "102", "2", "16", "3", "1", "26", "0", "0", "2", "16", "17", "0", "0", "0", "3", "0", "9", "5", "2", "0", "1", "0", "0", "2", "1", "0", "11", "0", "0", "0", "0", "0", "1", "1"], "lat": "49.774091", "winner": "KDU-\u010cSL", "id": "578355", "population": 221, "town": "Lubn\u00e1", "winner_class": ["kdu-csl"], "lng": "16.223694"}, {"votes": ["0", "0", "0", "2", "0", "2", "20", "0", "1", "17", "0", "0", "0", "10", "30", "0", "0", "0", "6", "0", "10", "5", "3", "0", "0", "2", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.650501", "winner": "ANO", "id": "567710", "population": 115, "town": "Modlany", "winner_class": ["ano"], "lng": "13.895336"}, {"votes": ["0", "0", "0", "0", "37", "1", "22", "0", "0", "4", "0", "0", "0", "22", "16", "0", "0", "0", "14", "0", "2", "3", "6", "0", "0", "2", "0", "0", "0", "0", "11", "0", "1", "0", "0", "1", "1", "0"], "lat": "49.712455", "winner": "KDU-\u010cSL", "id": "552623", "population": 143, "town": "T\u0159anovice", "winner_class": ["kdu-csl"], "lng": "18.529186"}, {"votes": ["1", "2", "0", "0", "0", "3", "8", "0", "2", "17", "0", "0", "0", "17", "22", "0", "0", "0", "8", "0", "6", "2", "2", "0", "4", "1", "0", "1", "0", "0", "4", "0", "0", "0", "0", "1", "4", "0"], "lat": "50.301142", "winner": "ANO", "id": "532207", "population": 105, "town": "\u010cernuc", "winner_class": ["ano"], "lng": "14.202494"}, {"votes": ["1", "0", "0", "0", "44", "4", "26", "6", "0", "17", "0", "0", "0", "17", "16", "0", "1", "0", "8", "0", "3", "4", "11", "0", "0", "3", "1", "1", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.128406", "winner": "KDU-\u010cSL", "id": "580503", "population": 168, "town": "Kunvald", "winner_class": ["kdu-csl"], "lng": "16.500808"}, {"votes": ["0", "0", "0", "0", "7", "5", "8", "0", "1", "23", "0", "0", "0", "13", "18", "0", "0", "0", "2", "0", "7", "0", "6", "0", "1", "0", "0", "1", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.567455", "winner": "KS\u010cM", "id": "579629", "population": 98, "town": "Radvanice", "winner_class": ["kscm"], "lng": "16.061718"}, {"votes": ["1", "0", "0", "0", "5", "1", "25", "1", "2", "23", "0", "0", "0", "22", "26", "0", "0", "0", "13", "0", "5", "7", "8", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "1", "1", "0"], "lat": "50.627697", "winner": "ANO", "id": "563609", "population": 146, "town": "Jeni\u0161ovice", "winner_class": ["ano"], "lng": "15.136529"}, {"votes": ["0", "0", "0", "0", "16", "2", "14", "0", "0", "7", "0", "0", "1", "18", "22", "0", "0", "0", "11", "0", "6", "1", "1", "0", "0", "2", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.6434", "winner": "ANO", "id": "568503", "population": 108, "town": "\u010cesk\u00e1 B\u011bl\u00e1", "winner_class": ["ano"], "lng": "15.691191"}, {"votes": ["0", "0", "0", "0", "34", "3", "45", "0", "0", "10", "0", "0", "0", "10", "32", "0", "6", "0", "16", "0", "4", "2", "14", "0", "0", "1", "0", "1", "0", "0", "15", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.138035", "winner": "TOP 09", "id": "583219", "population": 194, "town": "Kobylnice", "winner_class": ["top-09"], "lng": "16.731825"}, {"votes": ["0", "3", "0", "0", "4", "6", "8", "0", "0", "26", "0", "0", "0", "12", "20", "0", "0", "0", "8", "1", "3", "0", "1", "0", "5", "0", "0", "3", "0", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.217335", "winner": "KS\u010cM", "id": "566021", "population": 108, "town": "Bl\u0161any", "winner_class": ["kscm"], "lng": "13.471201"}, {"votes": ["0", "0", "0", "2", "41", "3", "10", "0", "2", "18", "0", "0", "0", "25", "13", "0", "3", "0", "1", "0", "0", "1", "0", "0", "2", "0", "0", "1", "0", "1", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.001672", "winner": "KDU-\u010cSL", "id": "586145", "population": 124, "town": "Doman\u00edn", "winner_class": ["kdu-csl"], "lng": "17.284761"}, {"votes": ["0", "0", "0", "2", "13", "1", "15", "0", "1", "10", "0", "0", "0", "33", "29", "0", "0", "1", "10", "0", "5", "0", "4", "0", "0", "2", "0", "0", "2", "0", "4", "0", "0", "0", "0", "1", "2", "0"], "lat": "49.660728", "winner": "\u010cSSD", "id": "552518", "population": 135, "town": "No\u0161ovice", "winner_class": ["cssd"], "lng": "18.426327"}, {"votes": ["0", "0", "0", "0", "18", "2", "22", "1", "0", "3", "0", "0", "0", "14", "13", "0", "0", "0", "7", "0", "1", "7", "2", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.818748", "winner": "TOP 09", "id": "510131", "population": 92, "town": "Sk\u0159ipov", "winner_class": ["top-09"], "lng": "17.910488"}, {"votes": ["1", "0", "0", "0", "4", "5", "10", "2", "0", "23", "0", "1", "1", "11", "30", "0", "0", "0", "10", "2", "3", "4", "6", "1", "0", "0", "0", "0", "0", "0", "9", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.345283", "winner": "ANO", "id": "535265", "population": 125, "town": "Velk\u00fd Borek", "winner_class": ["ano"], "lng": "14.515254"}, {"votes": ["0", "0", "2", "0", "57", "4", "13", "1", "1", "21", "0", "1", "0", "32", "19", "0", "2", "0", "22", "0", "5", "0", "4", "0", "0", "1", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.374686", "winner": "KDU-\u010cSL", "id": "588610", "population": 187, "town": "Kostelec u Hole\u0161ova", "winner_class": ["kdu-csl"], "lng": "17.512127"}, {"votes": ["0", "0", "0", "2", "7", "6", "19", "0", "0", "32", "0", "0", "0", "4", "24", "0", "0", "0", "8", "0", "11", "5", "6", "0", "0", "1", "0", "3", "0", "0", "5", "2", "1", "0", "0", "0", "1", "0"], "lat": "50.75926", "winner": "KS\u010cM", "id": "563668", "population": 137, "town": "Ko\u0159enov", "winner_class": ["kscm"], "lng": "15.365315"}, {"votes": ["1", "0", "0", "6", "26", "5", "21", "0", "0", "9", "0", "0", "0", "14", "18", "0", "0", "3", "11", "2", "5", "2", "8", "0", "0", "1", "0", "0", "0", "1", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.970531", "winner": "KDU-\u010cSL", "id": "580279", "population": 140, "town": "Horn\u00ed \u010cermn\u00e1", "winner_class": ["kdu-csl"], "lng": "16.607717"}, {"votes": ["0", "0", "0", "2", "11", "0", "45", "0", "0", "15", "0", "0", "0", "15", "29", "0", "0", "1", "14", "0", "7", "1", "3", "0", "2", "2", "0", "1", "0", "0", "6", "1", "0", "0", "0", "4", "0", "0"], "lat": "49.434051", "winner": "TOP 09", "id": "554464", "population": 159, "town": "Zaho\u0159any", "winner_class": ["top-09"], "lng": "13.001926"}, {"votes": ["1", "1", "0", "0", "6", "3", "8", "0", "0", "7", "0", "0", "0", "17", "33", "0", "0", "0", "18", "1", "9", "4", "7", "0", "0", "1", "1", "0", "0", "3", "11", "0", "1", "0", "0", "1", "0", "0"], "lat": "50.593167", "winner": "ANO", "id": "579122", "population": 133, "town": "Doln\u00ed Brann\u00e1", "winner_class": ["ano"], "lng": "15.593817"}, {"votes": ["0", "0", "0", "0", "29", "2", "22", "0", "0", "16", "0", "0", "0", "21", "15", "0", "1", "0", "11", "0", "3", "2", "7", "1", "0", "2", "0", "0", "0", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.177489", "winner": "KDU-\u010cSL", "id": "550825", "population": 137, "town": "Holubice", "winner_class": ["kdu-csl"], "lng": "16.812137"}, {"votes": ["0", "0", "0", "0", "22", "7", "19", "0", "1", "7", "0", "0", "0", "9", "32", "0", "0", "0", "15", "2", "3", "2", "5", "0", "2", "0", "0", "0", "0", "0", "7", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.597018", "winner": "ANO", "id": "547026", "population": 134, "town": "Bystrovany", "winner_class": ["ano"], "lng": "17.323647"}, {"votes": ["0", "2", "0", "0", "41", "1", "5", "0", "0", "11", "0", "0", "0", "37", "15", "0", "0", "0", "12", "0", "3", "0", "4", "0", "0", "1", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.679312", "winner": "KDU-\u010cSL", "id": "552674", "population": 138, "town": "St\u0159\u00edte\u017e", "winner_class": ["kdu-csl"], "lng": "18.569104"}, {"votes": ["0", "0", "0", "0", "13", "1", "6", "0", "1", "20", "0", "0", "0", "21", "24", "0", "5", "0", "10", "1", "4", "5", "6", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "3", "1", "0"], "lat": "49.330871", "winner": "ANO", "id": "582166", "population": 123, "town": "Olomu\u010dany", "winner_class": ["ano"], "lng": "16.671685"}, {"votes": ["1", "0", "0", "0", "27", "4", "17", "0", "0", "8", "0", "0", "0", "18", "7", "0", "0", "0", "7", "0", "3", "1", "2", "0", "0", "1", "0", "0", "2", "2", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.874691", "winner": "KDU-\u010cSL", "id": "586561", "population": 106, "town": "Star\u00fd Poddvorov", "winner_class": ["kdu-csl"], "lng": "16.988178"}, {"votes": ["0", "0", "0", "0", "8", "1", "30", "0", "0", "11", "0", "0", "0", "15", "22", "2", "0", "0", "11", "0", "7", "6", "7", "0", "1", "1", "0", "4", "0", "0", "7", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.946126", "winner": "TOP 09", "id": "534200", "population": 135, "town": "Miskovice", "winner_class": ["top-09"], "lng": "15.204718"}, {"votes": ["0", "0", "0", "1", "20", "1", "9", "0", "1", "12", "0", "2", "0", "13", "16", "0", "2", "0", "5", "1", "4", "0", "7", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.421377", "winner": "KDU-\u010cSL", "id": "512532", "population": 96, "town": "Bocho\u0159", "winner_class": ["kdu-csl"], "lng": "17.428351"}, {"votes": ["0", "1", "0", "1", "26", "0", "10", "0", "0", "9", "0", "0", "0", "15", "6", "0", "1", "0", "7", "0", "4", "3", "4", "0", "1", "0", "2", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.940972", "winner": "KDU-\u010cSL", "id": "592285", "population": 92, "town": "Korytn\u00e1", "winner_class": ["kdu-csl"], "lng": "17.665199"}, {"votes": ["0", "1", "0", "0", "39", "0", "13", "0", "2", "5", "0", "0", "0", "4", "24", "0", "2", "0", "2", "0", "8", "1", "1", "0", "0", "0", "0", "3", "0", "0", "4", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.068904", "winner": "KDU-\u010cSL", "id": "592536", "population": 111, "town": "Prak\u0161ice", "winner_class": ["kdu-csl"], "lng": "17.633035"}, {"votes": ["1", "0", "2", "0", "5", "3", "37", "0", "0", "18", "0", "0", "0", "15", "21", "0", "0", "0", "12", "0", "9", "6", "11", "0", "1", "0", "0", "3", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.141824", "winner": "TOP 09", "id": "538507", "population": 154, "town": "Mochov", "winner_class": ["top-09"], "lng": "14.794959"}, {"votes": ["0", "1", "0", "0", "18", "4", "19", "4", "0", "13", "0", "0", "0", "13", "22", "0", "0", "0", "17", "0", "1", "4", "4", "0", "1", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.511232", "winner": "ANO", "id": "547778", "population": 128, "town": "\u010cerven\u00e1 \u0158e\u010dice", "winner_class": ["ano"], "lng": "15.178365"}, {"votes": ["0", "0", "0", "0", "10", "3", "28", "1", "0", "16", "0", "0", "0", "14", "45", "0", "0", "1", "15", "0", "5", "3", "11", "0", "2", "0", "0", "1", "0", "1", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.171368", "winner": "ANO", "id": "576336", "population": 163, "town": "Javornice", "winner_class": ["ano"], "lng": "16.349268"}, {"votes": ["0", "0", "0", "0", "3", "4", "8", "0", "1", "10", "0", "0", "0", "12", "27", "0", "0", "4", "11", "0", "8", "4", "6", "0", "2", "1", "0", "0", "0", "1", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.076513", "winner": "ANO", "id": "575011", "population": 108, "town": "Horn\u00ed \u0158edice", "winner_class": ["ano"], "lng": "15.958781"}, {"votes": ["0", "0", "0", "0", "2", "6", "6", "0", "2", "6", "0", "0", "0", "11", "14", "0", "0", "0", "4", "0", "7", "0", "1", "1", "1", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.793994", "winner": "ANO", "id": "578789", "population": 69, "town": "Star\u00e9 M\u011bsto", "winner_class": ["ano"], "lng": "16.674928"}, {"votes": ["1", "1", "0", "0", "19", "2", "11", "0", "0", "14", "0", "0", "0", "13", "22", "0", "0", "0", "5", "0", "6", "0", "3", "0", "0", "3", "1", "0", "0", "0", "11", "0", "1", "1", "0", "0", "0", "0"], "lat": "49.199273", "winner": "ANO", "id": "590941", "population": 114, "town": "Kralice nad Oslavou", "winner_class": ["ano"], "lng": "16.20156"}, {"votes": ["0", "0", "0", "0", "19", "1", "20", "1", "0", "14", "0", "0", "0", "22", "33", "0", "3", "0", "9", "0", "4", "5", "4", "0", "0", "0", "0", "0", "0", "0", "8", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.083274", "winner": "ANO", "id": "583421", "population": 145, "town": "Moravsk\u00e9 Br\u00e1nice", "winner_class": ["ano"], "lng": "16.436284"}, {"votes": ["0", "2", "0", "1", "21", "8", "20", "1", "1", "13", "0", "1", "0", "25", "24", "0", "0", "0", "3", "0", "4", "1", "9", "1", "2", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.083451", "winner": "\u010cSSD", "id": "554995", "population": 140, "town": "Be\u010dov nad Teplou", "winner_class": ["cssd"], "lng": "12.838314"}, {"votes": ["0", "0", "0", "0", "11", "1", "12", "0", "0", "19", "0", "0", "0", "8", "25", "0", "0", "0", "10", "0", "7", "2", "5", "0", "1", "0", "1", "1", "0", "1", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.268518", "winner": "ANO", "id": "570834", "population": 107, "town": "Sk\u0159ivany", "winner_class": ["ano"], "lng": "15.499242"}, {"votes": ["0", "0", "0", "0", "9", "3", "9", "1", "0", "12", "0", "0", "0", "24", "17", "0", "0", "0", "7", "0", "6", "1", "3", "0", "0", "3", "0", "0", "0", "0", "3", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.892874", "winner": "\u010cSSD", "id": "509841", "population": 100, "town": "Radu\u0148", "winner_class": ["cssd"], "lng": "17.943243"}, {"votes": ["0", "0", "0", "2", "6", "1", "22", "0", "0", "15", "0", "0", "0", "23", "24", "0", "0", "1", "13", "0", "5", "4", "4", "1", "0", "1", "1", "2", "0", "0", "5", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.910684", "winner": "ANO", "id": "534188", "population": 131, "town": "Male\u0161ov", "winner_class": ["ano"], "lng": "15.224553"}, {"votes": ["1", "1", "0", "1", "2", "2", "22", "1", "1", "27", "0", "0", "0", "12", "44", "0", "0", "0", "15", "0", "1", "5", "13", "0", "5", "2", "0", "2", "1", "0", "4", "0", "0", "1", "0", "0", "0", "1"], "lat": "50.688646", "winner": "ANO", "id": "568023", "population": 164, "town": "Chuderov", "winner_class": ["ano"], "lng": "14.046172"}, {"votes": ["0", "0", "0", "0", "47", "8", "6", "0", "2", "12", "0", "0", "0", "26", "15", "1", "0", "0", "4", "0", "1", "1", "9", "0", "2", "2", "0", "4", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.741683", "winner": "KDU-\u010cSL", "id": "577839", "population": 143, "town": "Borov\u00e1", "winner_class": ["kdu-csl"], "lng": "16.162232"}, {"votes": ["0", "1", "0", "0", "5", "3", "19", "0", "1", "12", "1", "0", "0", "17", "29", "0", "0", "0", "13", "0", "8", "2", "0", "0", "4", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.696872", "winner": "ANO", "id": "562106", "population": 119, "town": "Stru\u017enice", "winner_class": ["ano"], "lng": "14.449985"}, {"votes": ["0", "0", "0", "0", "38", "1", "55", "1", "0", "13", "0", "0", "0", "28", "50", "0", "2", "0", "31", "0", "2", "12", "17", "1", "0", "2", "0", "0", "0", "0", "11", "0", "1", "0", "0", "0", "2", "0"], "lat": "49.280079", "winner": "TOP 09", "id": "582921", "population": 267, "town": "\u010cesk\u00e1", "winner_class": ["top-09"], "lng": "16.565405"}, {"votes": ["2", "0", "0", "1", "10", "4", "42", "2", "4", "19", "1", "0", "0", "14", "50", "0", "0", "1", "5", "2", "5", "7", "8", "0", "0", "0", "0", "0", "0", "1", "9", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.863377", "winner": "ANO", "id": "539155", "population": 189, "town": "\u010cisovice", "winner_class": ["ano"], "lng": "14.314776"}, {"votes": ["2", "0", "0", "0", "19", "3", "37", "3", "4", "7", "0", "0", "0", "8", "23", "0", "1", "0", "19", "0", "26", "2", "11", "1", "0", "3", "0", "4", "1", "0", "6", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.563789", "winner": "TOP 09", "id": "577499", "population": 181, "town": "Roztoky u Jilemnice", "winner_class": ["top-09"], "lng": "15.499745"}, {"votes": ["2", "0", "0", "1", "25", "0", "7", "0", "0", "5", "0", "0", "0", "13", "28", "0", "0", "0", "12", "0", "6", "4", "5", "0", "0", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "1", "0", "0"], "lat": "48.960796", "winner": "ANO", "id": "584363", "population": 118, "town": "Brumovice", "winner_class": ["ano"], "lng": "16.896154"}, {"votes": ["0", "0", "0", "0", "0", "0", "9", "0", "2", "25", "1", "0", "0", "18", "16", "0", "0", "0", "21", "0", "1", "0", "3", "0", "3", "0", "0", "0", "0", "1", "5", "0", "1", "0", "0", "2", "0", "0"], "lat": "50.145672", "winner": "KS\u010cM", "id": "541877", "population": 108, "town": "Kn\u011b\u017eeves", "winner_class": ["kscm"], "lng": "13.636556"}, {"votes": ["0", "0", "0", "0", "6", "2", "38", "1", "1", "25", "0", "1", "0", "13", "30", "0", "0", "0", "5", "0", "6", "6", "6", "0", "3", "1", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.881153", "winner": "TOP 09", "id": "560952", "population": 147, "town": "Konstantinovy L\u00e1zn\u011b", "winner_class": ["top-09"], "lng": "12.97787"}, {"votes": ["2", "0", "0", "0", "17", "0", "20", "0", "0", "16", "0", "1", "0", "20", "30", "0", "1", "1", "22", "0", "3", "6", "2", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.415313", "winner": "ANO", "id": "541711", "population": 145, "town": "Byst\u0159i\u010dka", "winner_class": ["ano"], "lng": "17.97399"}, {"votes": ["0", "0", "1", "0", "8", "5", "9", "0", "3", "6", "1", "0", "0", "19", "23", "0", "0", "0", "8", "0", "3", "3", "5", "0", "1", "2", "1", "1", "0", "0", "8", "1", "0", "0", "0", "0", "2", "0"], "lat": "50.990543", "winner": "ANO", "id": "562947", "population": 110, "town": "Vil\u00e9mov", "winner_class": ["ano"], "lng": "14.335308"}, {"votes": ["0", "1", "0", "0", "8", "2", "33", "0", "0", "7", "0", "0", "0", "12", "32", "0", "0", "0", "21", "0", "3", "2", "6", "0", "1", "1", "0", "0", "0", "0", "7", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.602288", "winner": "TOP 09", "id": "577154", "population": 138, "town": "Chuchelna", "winner_class": ["top-09"], "lng": "15.300342"}, {"votes": ["2", "0", "0", "1", "17", "11", "14", "4", "0", "8", "0", "1", "0", "19", "5", "0", "0", "0", "30", "1", "8", "1", "10", "0", "0", "1", "0", "1", "1", "0", "2", "1", "0", "0", "1", "0", "0", "0"], "lat": "50.559405", "winner": "ODS", "id": "577294", "population": 139, "town": "Lib\u0161t\u00e1t", "winner_class": ["ods"], "lng": "15.41593"}, {"votes": ["0", "0", "0", "0", "14", "2", "10", "4", "0", "7", "0", "0", "0", "13", "21", "1", "2", "0", "5", "0", "12", "4", "7", "0", "0", "0", "0", "1", "1", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.131668", "winner": "ANO", "id": "592323", "population": 106, "town": "Kudlovice", "winner_class": ["ano"], "lng": "17.457165"}, {"votes": ["0", "0", "0", "1", "20", "2", "8", "1", "3", "30", "0", "0", "0", "24", "13", "0", "1", "0", "11", "0", "3", "0", "0", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.792669", "winner": "KS\u010cM", "id": "599964", "population": 124, "town": "T\u00edsek", "winner_class": ["kscm"], "lng": "18.014598"}, {"votes": ["0", "0", "1", "0", "2", "3", "3", "0", "7", "22", "0", "2", "0", "16", "12", "0", "0", "0", "9", "0", "11", "3", "5", "0", "1", "1", "0", "1", "0", "0", "3", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.576131", "winner": "KS\u010cM", "id": "567841", "population": 103, "town": "Sv\u011btec", "winner_class": ["kscm"], "lng": "13.811594"}, {"votes": ["1", "1", "0", "0", "20", "2", "9", "0", "1", "38", "1", "1", "0", "21", "22", "0", "0", "0", "3", "0", "5", "4", "3", "1", "1", "1", "0", "0", "0", "0", "6", "0", "0", "1", "0", "0", "2", "0"], "lat": "48.889485", "winner": "KS\u010cM", "id": "544639", "population": 144, "town": "J\u00edlovice", "winner_class": ["kscm"], "lng": "14.726801"}, {"votes": ["2", "0", "0", "1", "4", "1", "25", "1", "0", "25", "0", "0", "0", "18", "13", "0", "0", "0", "3", "2", "3", "3", "4", "0", "2", "2", "0", "3", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.360369", "winner": "TOP 09", "id": "556718", "population": 113, "town": "Mocht\u00edn", "winner_class": ["top-09"], "lng": "13.356898"}, {"votes": ["1", "0", "0", "0", "3", "0", "11", "0", "1", "10", "0", "0", "0", "13", "28", "0", "0", "0", "14", "0", "2", "0", "2", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "1", "0", "0", "0", "0"], "lat": "50.628597", "winner": "ANO", "id": "567582", "population": 90, "town": "Jen\u00edkov", "winner_class": ["ano"], "lng": "13.748905"}, {"votes": ["5", "1", "0", "1", "4", "7", "13", "0", "2", "18", "1", "1", "0", "10", "27", "0", "0", "1", "14", "0", "6", "2", "1", "6", "1", "3", "0", "6", "3", "0", "10", "2", "0", "1", "0", "1", "1", "1"], "lat": "50.339639", "winner": "ANO", "id": "566519", "population": 149, "town": "Nov\u00e9 Sedlo", "winner_class": ["ano"], "lng": "13.474828"}, {"votes": ["0", "0", "0", "0", "38", "3", "15", "0", "1", "4", "0", "0", "0", "18", "14", "1", "0", "0", "8", "0", "4", "3", "10", "0", "1", "1", "0", "1", "0", "0", "8", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.636858", "winner": "KDU-\u010cSL", "id": "568660", "population": 132, "town": "Havl\u00ed\u010dkova Borov\u00e1", "winner_class": ["kdu-csl"], "lng": "15.781272"}, {"votes": ["0", "0", "0", "4", "23", "0", "16", "0", "0", "25", "0", "0", "0", "20", "5", "0", "3", "0", "8", "0", "4", "4", "10", "0", "2", "1", "0", "0", "0", "0", "5", "0", "0", "0", "0", "2", "2", "0"], "lat": "49.068352", "winner": "KS\u010cM", "id": "546097", "population": 134, "town": "\u010cesk\u00fd Rudolec", "winner_class": ["kscm"], "lng": "15.324371"}, {"votes": ["0", "0", "0", "0", "4", "1", "5", "0", "1", "6", "0", "0", "0", "13", "22", "0", "0", "0", "3", "1", "12", "1", "8", "0", "1", "1", "0", "1", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.192207", "winner": "ANO", "id": "570478", "population": 81, "town": "Nepolisy", "winner_class": ["ano"], "lng": "15.463346"}, {"votes": ["0", "0", "0", "0", "52", "3", "8", "0", "0", "19", "1", "0", "0", "19", "11", "0", "1", "0", "5", "0", "5", "2", "5", "0", "1", "3", "0", "1", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.927259", "winner": "KDU-\u010cSL", "id": "584819", "population": 137, "town": "Popice", "winner_class": ["kdu-csl"], "lng": "16.666905"}, {"votes": ["0", "0", "0", "0", "18", "1", "12", "0", "1", "13", "0", "0", "0", "10", "28", "0", "0", "2", "4", "0", "1", "5", "8", "0", "0", "3", "0", "0", "0", "0", "4", "1", "0", "0", "0", "0", "2", "0"], "lat": "50.044619", "winner": "ANO", "id": "575445", "population": 113, "town": "Ost\u0159et\u00edn", "winner_class": ["ano"], "lng": "16.030373"}, {"votes": ["0", "0", "0", "0", "21", "3", "20", "0", "0", "14", "0", "0", "0", "19", "16", "0", "1", "0", "11", "0", "6", "5", "15", "0", "4", "0", "0", "0", "0", "0", "3", "2", "0", "0", "0", "3", "0", "0"], "lat": "49.253394", "winner": "KDU-\u010cSL", "id": "585301", "population": 143, "town": "Jasenn\u00e1", "winner_class": ["kdu-csl"], "lng": "17.894187"}, {"votes": ["0", "0", "0", "0", "1", "3", "14", "0", "1", "25", "0", "0", "0", "26", "12", "0", "0", "0", "7", "0", "13", "2", "13", "0", "0", "0", "0", "1", "0", "0", "9", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.031956", "winner": "\u010cSSD", "id": "533769", "population": 128, "town": "T\u0159i Dvory", "winner_class": ["cssd"], "lng": "15.256487"}, {"votes": ["0", "1", "0", "3", "2", "3", "11", "0", "0", "10", "0", "0", "0", "17", "28", "0", "0", "0", "13", "0", "6", "2", "4", "0", "0", "0", "0", "2", "0", "1", "8", "0", "0", "1", "0", "0", "0", "1"], "lat": "50.098419", "winner": "ANO", "id": "537811", "population": 113, "town": "Sokole\u010d", "winner_class": ["ano"], "lng": "15.106919"}, {"votes": ["0", "0", "0", "2", "21", "2", "10", "0", "0", "5", "0", "0", "0", "14", "16", "0", "0", "0", "2", "0", "7", "1", "7", "0", "0", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.382095", "winner": "KDU-\u010cSL", "id": "542946", "population": 92, "town": "Kate\u0159inice", "winner_class": ["kdu-csl"], "lng": "17.885755"}, {"votes": ["0", "0", "0", "0", "23", "0", "4", "0", "0", "5", "0", "0", "0", "12", "16", "0", "1", "0", "6", "0", "4", "0", "4", "0", "2", "2", "0", "0", "0", "0", "4", "0", "0", "0", "0", "1", "2", "0"], "lat": "49.682903", "winner": "KDU-\u010cSL", "id": "569666", "population": 86, "town": "Hladk\u00e9 \u017divotice", "winner_class": ["kdu-csl"], "lng": "17.957367"}, {"votes": ["1", "1", "0", "0", "9", "1", "33", "0", "0", "19", "0", "0", "0", "10", "28", "0", "0", "0", "27", "2", "1", "9", "11", "0", "0", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.831762", "winner": "TOP 09", "id": "540889", "population": 164, "town": "Nov\u00e1 Ves pod Ple\u0161\u00ed", "winner_class": ["top-09"], "lng": "14.27523"}, {"votes": ["0", "0", "0", "0", "11", "1", "6", "0", "0", "17", "1", "0", "0", "6", "11", "0", "0", "0", "5", "0", "1", "1", "12", "0", "0", "0", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.739828", "winner": "KS\u010cM", "id": "578932", "population": 81, "town": "Vendol\u00ed", "winner_class": ["kscm"], "lng": "16.413266"}, {"votes": ["0", "0", "0", "2", "28", "2", "7", "0", "0", "12", "0", "0", "0", "27", "11", "0", "1", "0", "5", "0", "10", "1", "3", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.141496", "winner": "KDU-\u010cSL", "id": "593044", "population": 114, "town": "Hod\u011bjice", "winner_class": ["kdu-csl"], "lng": "16.913686"}, {"votes": ["0", "0", "0", "0", "14", "1", "12", "1", "0", "7", "0", "0", "0", "25", "17", "0", "0", "0", "3", "1", "13", "1", "5", "0", "0", "1", "0", "0", "0", "0", "6", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.421788", "winner": "\u010cSSD", "id": "588709", "population": 108, "town": "Loukov", "winner_class": ["cssd"], "lng": "17.721022"}, {"votes": ["0", "0", "0", "0", "1", "1", "14", "0", "0", "33", "0", "0", "0", "30", "13", "0", "0", "2", "2", "0", "3", "0", "2", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.831021", "winner": "KS\u010cM", "id": "560863", "population": 103, "town": "Hal\u017ee", "winner_class": ["kscm"], "lng": "12.579393"}, {"votes": ["1", "1", "0", "0", "26", "2", "10", "0", "2", "11", "0", "0", "0", "33", "16", "0", "0", "1", "7", "0", "7", "4", "2", "0", "0", "2", "0", "1", "0", "0", "10", "0", "0", "2", "0", "0", "0", "0"], "lat": "49.608765", "winner": "\u010cSSD", "id": "568813", "population": 138, "town": "Pra\u017emo", "winner_class": ["cssd"], "lng": "18.48617"}, {"votes": ["0", "0", "0", "0", "10", "2", "24", "9", "0", "10", "1", "0", "0", "7", "16", "0", "0", "0", "14", "1", "2", "2", "7", "0", "1", "7", "1", "0", "0", "0", "2", "1", "1", "1", "0", "0", "1", "0"], "lat": "50.487528", "winner": "TOP 09", "id": "579220", "population": 120, "town": "Havlovice", "winner_class": ["top-09"], "lng": "16.029323"}, {"votes": ["0", "0", "0", "0", "24", "0", "5", "1", "0", "12", "0", "1", "0", "13", "8", "0", "0", "0", "9", "0", "4", "2", "1", "1", "1", "1", "0", "0", "0", "0", "2", "0", "1", "1", "0", "0", "1", "0"], "lat": "49.01763", "winner": "KDU-\u010cSL", "id": "591254", "population": 88, "town": "Nov\u00e9 Syrovice", "winner_class": ["kdu-csl"], "lng": "15.773453"}, {"votes": ["1", "0", "1", "1", "57", "4", "10", "0", "4", "18", "0", "0", "0", "27", "18", "1", "0", "0", "10", "0", "4", "9", "9", "0", "1", "0", "0", "0", "1", "1", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.414522", "winner": "KDU-\u010cSL", "id": "582352", "population": 180, "town": "Sloup", "winner_class": ["kdu-csl"], "lng": "16.739564"}, {"votes": ["0", "0", "0", "0", "32", "4", "17", "0", "0", "8", "0", "0", "0", "9", "9", "0", "4", "0", "3", "0", "7", "5", "4", "0", "1", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.045378", "winner": "KDU-\u010cSL", "id": "592293", "population": 111, "town": "Kostelany nad Moravou", "winner_class": ["kdu-csl"], "lng": "17.406934"}, {"votes": ["1", "0", "0", "0", "29", "1", "24", "4", "1", "10", "0", "0", "0", "23", "10", "0", "0", "0", "8", "0", "1", "3", "2", "0", "0", "2", "0", "1", "0", "0", "2", "0", "0", "0", "0", "3", "2", "0"], "lat": "50.312634", "winner": "KDU-\u010cSL", "id": "573892", "population": 127, "town": "Bohuslavice", "winner_class": ["kdu-csl"], "lng": "16.088583"}, {"votes": ["0", "0", "0", "0", "5", "14", "23", "0", "0", "8", "0", "0", "0", "13", "32", "0", "0", "1", "12", "1", "3", "6", "2", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.781916", "winner": "ANO", "id": "563633", "population": 129, "town": "Josef\u016fv D\u016fl", "winner_class": ["ano"], "lng": "15.231465"}, {"votes": ["0", "0", "0", "0", "4", "1", "14", "3", "0", "15", "0", "0", "0", "22", "13", "0", "0", "0", "11", "0", "2", "7", "4", "0", "0", "0", "0", "1", "0", "1", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.6686", "winner": "\u010cSSD", "id": "530948", "population": 104, "town": "Vrchotovy Janovice", "winner_class": ["cssd"], "lng": "14.577779"}, {"votes": ["0", "0", "0", "0", "3", "2", "25", "2", "2", "12", "0", "0", "1", "13", "16", "0", "0", "0", "15", "1", "3", "0", "10", "0", "2", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.332468", "winner": "TOP 09", "id": "535036", "population": 110, "town": "Mal\u00fd \u00dajezd", "winner_class": ["top-09"], "lng": "14.529579"}, {"votes": ["0", "0", "0", "1", "17", "0", "19", "0", "0", "16", "0", "0", "0", "22", "24", "0", "0", "0", "7", "0", "5", "4", "3", "0", "0", "1", "0", "1", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.786997", "winner": "ANO", "id": "572390", "population": 126, "town": "Trhov\u00e1 Kamenice", "winner_class": ["ano"], "lng": "15.817911"}, {"votes": ["0", "0", "0", "1", "29", "2", "9", "0", "0", "3", "0", "0", "0", "10", "13", "0", "2", "0", "7", "0", "2", "6", "2", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.840773", "winner": "KDU-\u010cSL", "id": "578134", "population": 87, "town": "Janov", "winner_class": ["kdu-csl"], "lng": "16.385228"}, {"votes": ["1", "0", "0", "0", "25", "3", "6", "1", "0", "14", "0", "0", "0", "18", "13", "0", "0", "0", "5", "0", "8", "0", "7", "0", "0", "0", "0", "0", "0", "0", "3", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.987205", "winner": "KDU-\u010cSL", "id": "581178", "population": 106, "town": "V\u00fdprachtice", "winner_class": ["kdu-csl"], "lng": "16.663814"}, {"votes": ["0", "0", "0", "0", "17", "1", "26", "2", "0", "9", "0", "0", "0", "17", "16", "0", "3", "0", "14", "2", "8", "9", "8", "0", "0", "1", "0", "1", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.115018", "winner": "TOP 09", "id": "583707", "population": 143, "town": "Pr\u0161tice", "winner_class": ["top-09"], "lng": "16.470762"}, {"votes": ["0", "1", "0", "1", "38", "4", "1", "0", "1", "15", "0", "0", "0", "18", "13", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "1", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.549008", "winner": "KDU-\u010cSL", "id": "589519", "population": 95, "town": "Horn\u00ed \u0160t\u011bp\u00e1nov", "winner_class": ["kdu-csl"], "lng": "16.790776"}, {"votes": ["0", "0", "2", "0", "13", "1", "7", "0", "0", "7", "0", "0", "0", "10", "27", "0", "0", "0", "11", "0", "3", "6", "3", "0", "1", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.393954", "winner": "ANO", "id": "544850", "population": 97, "town": "R\u016f\u017e\u010fka", "winner_class": ["ano"], "lng": "17.995591"}, {"votes": ["1", "1", "0", "0", "1", "12", "10", "0", "0", "7", "0", "0", "0", "11", "16", "0", "0", "0", "0", "0", "7", "7", "3", "0", "0", "0", "0", "3", "0", "0", "7", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.836218", "winner": "ANO", "id": "564109", "population": 87, "town": "Chotyn\u011b", "winner_class": ["ano"], "lng": "14.868928"}, {"votes": ["0", "2", "0", "2", "52", "1", "16", "0", "0", "14", "0", "0", "0", "37", "23", "0", "4", "1", "22", "0", "3", "1", "15", "0", "1", "3", "0", "0", "0", "0", "8", "0", "0", "0", "1", "1", "0", "0"], "lat": "49.613259", "winner": "KDU-\u010cSL", "id": "568473", "population": 207, "town": "Z\u00e1vi\u0161ice", "winner_class": ["kdu-csl"], "lng": "18.103005"}, {"votes": ["1", "0", "0", "1", "1", "1", "23", "0", "2", "30", "0", "0", "0", "13", "13", "0", "0", "0", "4", "0", "5", "3", "9", "0", "0", "2", "0", "2", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.076924", "winner": "KS\u010cM", "id": "542032", "population": 114, "town": "Lubn\u00e1", "winner_class": ["kscm"], "lng": "13.700737"}, {"votes": ["0", "0", "0", "0", "22", "2", "9", "0", "0", "20", "0", "0", "0", "17", "33", "0", "3", "0", "13", "1", "3", "9", "8", "0", "2", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "2", "0"], "lat": "48.875958", "winner": "ANO", "id": "594300", "population": 148, "town": "Kucha\u0159ovice", "winner_class": ["ano"], "lng": "16.07697"}, {"votes": ["1", "0", "0", "0", "32", "0", "10", "0", "1", "15", "0", "0", "0", "15", "19", "0", "6", "0", "10", "0", "2", "4", "15", "0", "0", "1", "2", "0", "0", "1", "4", "0", "1", "0", "0", "0", "0", "1"], "lat": "49.333599", "winner": "KDU-\u010cSL", "id": "583341", "population": 140, "town": "Malhostovice", "winner_class": ["kdu-csl"], "lng": "16.502217"}, {"votes": ["0", "0", "0", "0", "22", "3", "10", "0", "2", "13", "0", "0", "0", "9", "17", "0", "0", "0", "13", "0", "4", "3", "13", "0", "1", "1", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.883908", "winner": "KDU-\u010cSL", "id": "581275", "population": 116, "town": "\u017dichl\u00ednek", "winner_class": ["kdu-csl"], "lng": "16.636289"}, {"votes": ["0", "0", "0", "0", "45", "1", "9", "2", "1", "6", "0", "0", "0", "13", "10", "0", "2", "0", "2", "0", "4", "1", "0", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.04359", "winner": "KDU-\u010cSL", "id": "586030", "population": 100, "town": "Archlebov", "winner_class": ["kdu-csl"], "lng": "17.004805"}, {"votes": ["0", "0", "0", "3", "32", "0", "12", "1", "0", "14", "0", "0", "1", "26", "37", "0", "0", "0", "8", "0", "8", "7", "4", "0", "0", "0", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.724892", "winner": "ANO", "id": "568791", "population": 163, "town": "Sob\u011b\u0161ovice", "winner_class": ["ano"], "lng": "18.466191"}, {"votes": ["0", "0", "0", "2", "11", "2", "42", "2", "0", "13", "0", "0", "0", "20", "38", "0", "0", "0", "12", "0", "7", "6", "11", "0", "0", "2", "0", "0", "0", "0", "5", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.082092", "winner": "TOP 09", "id": "576671", "population": 174, "town": "Pot\u0161tejn", "winner_class": ["top-09"], "lng": "16.308916"}, {"votes": ["1", "0", "0", "0", "24", "1", "11", "0", "0", "6", "0", "0", "0", "7", "6", "0", "0", "1", "2", "0", "3", "2", "3", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.827224", "winner": "KDU-\u010cSL", "id": "577944", "population": 77, "town": "\u010cist\u00e1", "winner_class": ["kdu-csl"], "lng": "16.328678"}, {"votes": ["0", "0", "0", "1", "4", "1", "42", "0", "0", "5", "0", "0", "2", "9", "47", "0", "0", "2", "16", "0", "4", "4", "6", "0", "0", "0", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.711244", "winner": "ANO", "id": "564427", "population": 155, "town": "Sv\u011btl\u00e1 pod Je\u0161t\u011bdem", "winner_class": ["ano"], "lng": "14.985895"}, {"votes": ["2", "0", "0", "0", "4", "2", "27", "0", "0", "10", "0", "0", "0", "18", "17", "0", "0", "0", "17", "0", "7", "5", "14", "0", "1", "2", "0", "0", "0", "0", "11", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.172424", "winner": "TOP 09", "id": "570231", "population": 137, "town": "Lhota pod Lib\u010dany", "winner_class": ["top-09"], "lng": "15.69624"}, {"votes": ["0", "1", "0", "0", "10", "3", "3", "0", "0", "40", "0", "1", "0", "8", "9", "0", "2", "0", "3", "0", "3", "2", "0", "0", "0", "0", "0", "0", "1", "0", "6", "0", "0", "0", "0", "1", "1", "0"], "lat": "49.908449", "winner": "KS\u010cM", "id": "597368", "population": 94, "town": "Horn\u00ed M\u011bsto", "winner_class": ["kscm"], "lng": "17.211115"}, {"votes": ["1", "0", "0", "0", "71", "0", "23", "0", "1", "11", "0", "0", "0", "23", "35", "0", "1", "0", "34", "0", "3", "7", "2", "0", "0", "1", "0", "1", "0", "0", "16", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.61011", "winner": "KDU-\u010cSL", "id": "568481", "population": 231, "town": "Bernartice nad Odrou", "winner_class": ["kdu-csl"], "lng": "17.947776"}, {"votes": ["1", "0", "0", "1", "11", "5", "18", "0", "0", "10", "0", "0", "0", "14", "24", "0", "0", "0", "8", "1", "1", "2", "4", "0", "0", "0", "0", "1", "0", "0", "14", "0", "1", "0", "0", "0", "0", "1"], "lat": "49.938959", "winner": "ANO", "id": "554511", "population": 117, "town": "Drmoul", "winner_class": ["ano"], "lng": "12.665503"}, {"votes": ["0", "0", "0", "2", "12", "3", "11", "0", "0", "24", "0", "0", "1", "26", "17", "0", "0", "0", "11", "1", "5", "10", "9", "0", "2", "0", "0", "1", "1", "0", "4", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.564829", "winner": "\u010cSSD", "id": "552577", "population": 143, "town": "Pstru\u017e\u00ed", "winner_class": ["cssd"], "lng": "18.347537"}, {"votes": ["0", "0", "0", "2", "8", "3", "16", "0", "0", "17", "0", "0", "0", "17", "20", "0", "0", "0", "17", "2", "6", "3", "5", "0", "1", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.30794", "winner": "ANO", "id": "570028", "population": 124, "town": "Holohlavy", "winner_class": ["ano"], "lng": "15.86008"}, {"votes": ["0", "0", "0", "0", "10", "6", "10", "0", "0", "11", "0", "0", "0", "13", "11", "0", "0", "1", "6", "1", "6", "4", "4", "0", "0", "2", "0", "0", "0", "0", "11", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.059044", "winner": "\u010cSSD", "id": "580961", "population": 98, "town": "Sopotnice", "winner_class": ["cssd"], "lng": "16.345264"}, {"votes": ["0", "0", "0", "0", "47", "0", "13", "1", "0", "13", "0", "0", "0", "13", "4", "0", "0", "0", "8", "0", "11", "8", "1", "0", "1", "0", "0", "0", "0", "1", "6", "0", "3", "0", "0", "2", "0", "0"], "lat": "49.038305", "winner": "KDU-\u010cSL", "id": "592498", "population": 132, "town": "Pit\u00edn", "winner_class": ["kdu-csl"], "lng": "17.850675"}, {"votes": ["0", "0", "1", "0", "4", "5", "5", "1", "0", "20", "0", "0", "0", "14", "20", "0", "0", "0", "14", "2", "12", "3", "3", "0", "0", "0", "0", "2", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.352312", "winner": "KS\u010cM", "id": "535044", "population": 110, "town": "M\u011blnick\u00e9 Vtelno", "winner_class": ["kscm"], "lng": "14.69511"}, {"votes": ["0", "0", "0", "1", "112", "3", "39", "0", "0", "8", "0", "2", "1", "5", "12", "0", "0", "0", "8", "0", "4", "4", "4", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "2"], "lat": "49.771396", "winner": "KDU-\u010cSL", "id": "578738", "population": 208, "town": "Sebranice", "winner_class": ["kdu-csl"], "lng": "16.249174"}, {"votes": ["2", "0", "0", "0", "8", "4", "25", "0", "2", "18", "0", "0", "0", "11", "19", "0", "0", "1", "12", "1", "2", "3", "9", "0", "0", "0", "1", "2", "0", "0", "5", "0", "0", "1", "0", "0", "0", "0"], "lat": "49.166543", "winner": "TOP 09", "id": "550957", "population": 126, "town": "\u010cestice", "winner_class": ["top-09"], "lng": "13.80379"}, {"votes": ["1", "0", "0", "0", "40", "3", "12", "0", "1", "17", "0", "0", "0", "23", "24", "0", "0", "0", "6", "0", "5", "4", "7", "1", "1", "0", "0", "4", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.319981", "winner": "KDU-\u010cSL", "id": "549720", "population": 155, "town": "P\u0159\u00edlepy", "winner_class": ["kdu-csl"], "lng": "17.615912"}, {"votes": ["0", "3", "0", "1", "1", "1", "16", "0", "1", "24", "0", "0", "0", "14", "24", "0", "0", "0", "10", "1", "4", "1", "8", "1", "2", "3", "1", "0", "1", "0", "9", "0", "0", "2", "1", "0", "1", "0"], "lat": "50.35869", "winner": "KS\u010cM", "id": "564851", "population": 130, "town": "Horn\u00ed Be\u0159kovice", "winner_class": ["kscm"], "lng": "14.346479"}, {"votes": ["0", "0", "0", "0", "59", "0", "22", "0", "0", "15", "0", "0", "0", "19", "14", "0", "0", "0", "4", "1", "0", "1", "2", "0", "0", "1", "0", "0", "0", "0", "2", "0", "0", "0", "1", "0", "0", "0"], "lat": "49.532565", "winner": "KDU-\u010cSL", "id": "596205", "population": 141, "town": "N\u00ed\u017ekov", "winner_class": ["kdu-csl"], "lng": "15.805841"}, {"votes": ["0", "0", "0", "2", "23", "2", "22", "0", "0", "6", "0", "0", "2", "50", "23", "0", "1", "0", "6", "0", "2", "0", "6", "1", "1", "1", "2", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.613476", "winner": "\u010cSSD", "id": "507181", "population": 157, "town": "Pr\u017eno", "winner_class": ["cssd"], "lng": "18.361606"}, {"votes": ["0", "2", "0", "0", "6", "4", "24", "0", "1", "9", "0", "0", "0", "7", "26", "0", "0", "1", "5", "0", "6", "5", "8", "0", "0", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.095013", "winner": "ANO", "id": "533386", "population": 108, "town": "Klu\u010dov", "winner_class": ["ano"], "lng": "14.910064"}, {"votes": ["1", "2", "1", "3", "6", "7", "88", "2", "4", "5", "0", "0", "0", "12", "48", "0", "0", "0", "19", "1", "0", "11", "22", "0", "2", "0", "0", "1", "0", "0", "20", "1", "0", "0", "0", "0", "1", "0"], "lat": "49.982264", "winner": "TOP 09", "id": "538451", "population": 257, "town": "Lou\u0148ovice", "winner_class": ["top-09"], "lng": "14.761742"}, {"votes": ["0", "0", "0", "1", "11", "2", "26", "0", "5", "17", "0", "0", "0", "10", "23", "0", "0", "1", "6", "0", "9", "5", "0", "0", "3", "1", "1", "1", "0", "0", "9", "0", "0", "0", "0", "1", "3", "0"], "lat": "50.630082", "winner": "TOP 09", "id": "577651", "population": 135, "town": "V\u00edchov\u00e1 nad Jizerou", "winner_class": ["top-09"], "lng": "15.487672"}, {"votes": ["0", "1", "1", "0", "60", "2", "14", "0", "0", "6", "0", "0", "0", "18", "29", "0", "0", "0", "7", "0", "7", "4", "14", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.351069", "winner": "KDU-\u010cSL", "id": "588385", "population": 167, "town": "B\u0159est", "winner_class": ["kdu-csl"], "lng": "17.440717"}, {"votes": ["1", "0", "0", "0", "4", "8", "22", "1", "3", "24", "0", "0", "0", "17", "25", "0", "0", "0", "11", "0", "6", "5", "11", "0", "1", "1", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.116468", "winner": "ANO", "id": "533033", "population": 151, "town": "Velk\u00e9 P\u0159\u00edto\u010dno", "winner_class": ["ano"], "lng": "14.128237"}, {"votes": ["1", "2", "1", "0", "7", "1", "19", "2", "0", "7", "0", "0", "1", "18", "19", "0", "0", "0", "12", "1", "1", "3", "3", "0", "0", "1", "0", "1", "0", "0", "4", "2", "0", "0", "0", "0", "2", "0"], "lat": "50.164166", "winner": "TOP 09", "id": "537781", "population": 108, "town": "Semice", "winner_class": ["top-09"], "lng": "14.871473"}, {"votes": ["3", "2", "0", "0", "4", "0", "30", "3", "0", "20", "0", "1", "0", "21", "21", "0", "2", "0", "4", "1", "1", "1", "3", "0", "2", "2", "1", "1", "1", "0", "5", "0", "0", "0", "0", "0", "3", "0"], "lat": "49.484571", "winner": "TOP 09", "id": "558630", "population": 132, "town": "\u017dinkovy", "winner_class": ["top-09"], "lng": "13.491501"}, {"votes": ["0", "2", "0", "1", "36", "0", "5", "0", "0", "3", "0", "0", "0", "22", "12", "0", "0", "0", "5", "1", "4", "0", "7", "0", "0", "1", "0", "0", "0", "0", "9", "1", "0", "0", "1", "0", "0", "0"], "lat": "49.574671", "winner": "KDU-\u010cSL", "id": "557226", "population": 110, "town": "P\u00edse\u010dn\u00e1", "winner_class": ["kdu-csl"], "lng": "18.787357"}, {"votes": ["2", "1", "1", "0", "3", "1", "45", "0", "1", "11", "0", "0", "0", "12", "40", "0", "0", "0", "13", "0", "4", "11", "13", "0", "0", "0", "0", "1", "0", "0", "13", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.024174", "winner": "TOP 09", "id": "539872", "population": 172, "town": "Zbuzany", "winner_class": ["top-09"], "lng": "14.286747"}, {"votes": ["0", "2", "0", "0", "18", "4", "9", "1", "1", "31", "0", "0", "0", "21", "17", "0", "0", "6", "8", "0", "3", "1", "9", "0", "0", "0", "0", "1", "0", "0", "9", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.061571", "winner": "KS\u010cM", "id": "576051", "population": 142, "town": "\u017divanice", "winner_class": ["kscm"], "lng": "15.649437"}, {"votes": ["0", "0", "0", "1", "40", "2", "10", "0", "0", "19", "0", "0", "0", "11", "22", "0", "0", "0", "7", "0", "2", "1", "4", "0", "0", "2", "0", "1", "1", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.489135", "winner": "KDU-\u010cSL", "id": "596361", "population": 128, "town": "Ostrov nad Oslavou", "winner_class": ["kdu-csl"], "lng": "15.989338"}, {"votes": ["1", "0", "0", "2", "3", "0", "10", "0", "0", "25", "0", "0", "0", "23", "13", "0", "2", "0", "8", "0", "0", "3", "1", "0", "2", "0", "1", "0", "8", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.205235", "winner": "KS\u010cM", "id": "597911", "population": 105, "town": "T\u0159eme\u0161n\u00e1", "winner_class": ["kscm"], "lng": "17.574925"}, {"votes": ["0", "0", "0", "0", "2", "3", "40", "3", "3", "25", "0", "0", "1", "23", "19", "0", "0", "0", "9", "1", "5", "1", "5", "0", "1", "0", "0", "1", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.380792", "winner": "TOP 09", "id": "555801", "population": 146, "town": "Bezd\u011bkov", "winner_class": ["top-09"], "lng": "13.227462"}, {"votes": ["0", "0", "0", "0", "3", "0", "2", "0", "0", "10", "0", "0", "1", "12", "9", "0", "1", "0", "2", "0", "5", "0", "1", "0", "0", "1", "0", "0", "1", "0", "3", "1", "1", "0", "0", "0", "0", "0"], "lat": "49.829697", "winner": "\u010cSSD", "id": "578908", "population": 53, "town": "T\u0159eba\u0159ov", "winner_class": ["cssd"], "lng": "16.702519"}, {"votes": ["0", "0", "0", "0", "27", "2", "2", "0", "2", "20", "0", "0", "0", "20", "17", "0", "1", "0", "2", "0", "1", "1", "2", "0", "1", "0", "1", "0", "0", "0", "2", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.548693", "winner": "KDU-\u010cSL", "id": "589314", "population": 103, "town": "Brodek u Konice", "winner_class": ["kdu-csl"], "lng": "16.832864"}, {"votes": ["1", "1", "2", "0", "17", "4", "14", "0", "0", "23", "0", "0", "0", "16", "32", "0", "6", "0", "0", "0", "1", "0", "4", "0", "1", "0", "0", "0", "0", "0", "12", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.460958", "winner": "ANO", "id": "541648", "population": 136, "town": "Branky", "winner_class": ["ano"], "lng": "17.892951"}, {"votes": ["0", "0", "1", "1", "5", "3", "30", "0", "0", "19", "0", "0", "0", "25", "23", "0", "0", "0", "19", "5", "9", "0", "6", "0", "0", "1", "0", "6", "1", "1", "6", "2", "0", "0", "0", "0", "1", "0"], "lat": "50.067747", "winner": "TOP 09", "id": "532142", "population": 164, "town": "Bratronice", "winner_class": ["top-09"], "lng": "14.014156"}, {"votes": ["2", "0", "1", "3", "7", "6", "17", "0", "1", "10", "0", "0", "0", "9", "29", "0", "0", "1", "4", "0", "0", "4", "6", "0", "0", "2", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.807505", "winner": "ANO", "id": "540714", "population": 111, "town": "Mal\u00e1 Hra\u0161tice", "winner_class": ["ano"], "lng": "14.279873"}, {"votes": ["0", "1", "0", "0", "14", "1", "1", "0", "0", "11", "0", "1", "0", "12", "18", "0", "1", "0", "1", "0", "7", "1", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.772835", "winner": "ANO", "id": "594148", "population": 71, "town": "Hr\u00e1dek", "winner_class": ["ano"], "lng": "16.268191"}, {"votes": ["2", "0", "1", "0", "7", "3", "17", "1", "2", "13", "0", "0", "0", "28", "29", "0", "0", "1", "11", "0", "8", "1", "6", "1", "2", "0", "0", "3", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.971594", "winner": "ANO", "id": "533564", "population": 141, "town": "Ole\u0161ka", "winner_class": ["ano"], "lng": "14.91668"}, {"votes": ["0", "0", "0", "0", "6", "0", "24", "2", "1", "20", "0", "0", "0", "21", "8", "0", "0", "0", "2", "0", "1", "1", "1", "0", "0", "1", "0", "1", "0", "0", "3", "2", "0", "0", "0", "0", "1", "0"], "lat": "49.907243", "winner": "TOP 09", "id": "560740", "population": 95, "town": "Bezdru\u017eice", "winner_class": ["top-09"], "lng": "12.971105"}, {"votes": ["3", "0", "0", "0", "3", "9", "10", "2", "0", "9", "0", "0", "0", "9", "26", "0", "0", "0", "17", "0", "11", "6", "0", "1", "0", "1", "0", "1", "0", "0", "3", "0", "0", "0", "0", "0", "0", "3"], "lat": "50.475281", "winner": "ANO", "id": "579211", "population": 114, "town": "Hajnice", "winner_class": ["ano"], "lng": "15.912388"}, {"votes": ["0", "0", "0", "3", "19", "6", "18", "0", "1", "15", "0", "0", "0", "22", "7", "0", "0", "1", "4", "0", "13", "4", "11", "0", "3", "0", "0", "0", "1", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.890581", "winner": "\u010cSSD", "id": "580694", "population": 131, "town": "N\u011bm\u010dice", "winner_class": ["cssd"], "lng": "16.343211"}, {"votes": ["1", "0", "0", "0", "21", "1", "11", "0", "0", "28", "0", "0", "0", "26", "29", "0", "0", "0", "7", "1", "2", "8", "4", "0", "0", "1", "0", "1", "0", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.644951", "winner": "ANO", "id": "529648", "population": 150, "town": "Doln\u00ed Kralovice", "winner_class": ["ano"], "lng": "15.178664"}, {"votes": ["0", "0", "0", "0", "9", "4", "30", "0", "0", "12", "0", "0", "0", "25", "32", "0", "0", "1", "14", "1", "10", "9", "14", "0", "2", "0", "0", "1", "1", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "50.106402", "winner": "ANO", "id": "538221", "population": 174, "town": "Horou\u0161any", "winner_class": ["ano"], "lng": "14.740573"}, {"votes": ["1", "0", "1", "0", "17", "1", "14", "0", "0", "9", "0", "0", "0", "12", "11", "0", "0", "0", "6", "2", "3", "3", "9", "0", "0", "2", "0", "2", "0", "3", "1", "2", "0", "0", "0", "1", "1", "0"], "lat": "49.252815", "winner": "KDU-\u010cSL", "id": "550922", "population": 101, "town": "\u010cejetice", "winner_class": ["kdu-csl"], "lng": "14.020385"}, {"votes": ["2", "1", "2", "5", "7", "4", "25", "0", "2", "11", "0", "0", "0", "11", "18", "0", "0", "0", "10", "0", "3", "6", "11", "0", "3", "2", "0", "1", "1", "0", "2", "0", "1", "0", "1", "0", "2", "0"], "lat": "50.405372", "winner": "TOP 09", "id": "565067", "population": 131, "town": "Krab\u010dice", "winner_class": ["top-09"], "lng": "14.301316"}, {"votes": ["0", "0", "0", "1", "60", "7", "20", "0", "1", "6", "0", "0", "0", "13", "19", "0", "0", "0", "3", "0", "2", "3", "0", "0", "0", "0", "1", "0", "1", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.055721", "winner": "KDU-\u010cSL", "id": "580686", "population": 147, "town": "Neko\u0159", "winner_class": ["kdu-csl"], "lng": "16.551192"}, {"votes": ["1", "2", "0", "1", "7", "0", "21", "0", "3", "12", "0", "1", "0", "33", "18", "0", "0", "0", "19", "0", "8", "1", "4", "0", "0", "2", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.992283", "winner": "\u010cSSD", "id": "553158", "population": 135, "town": "Neplachovice", "winner_class": ["cssd"], "lng": "17.809864"}, {"votes": ["2", "1", "0", "0", "7", "2", "10", "0", "1", "25", "0", "0", "0", "9", "23", "0", "1", "2", "8", "0", "6", "2", "1", "0", "1", "1", "0", "1", "1", "0", "5", "0", "1", "0", "0", "0", "2", "0"], "lat": "49.639019", "winner": "KS\u010cM", "id": "540439", "population": 112, "town": "Kam\u00fdk nad Vltavou", "winner_class": ["kscm"], "lng": "14.253443"}, {"votes": ["2", "1", "0", "0", "0", "6", "9", "0", "1", "23", "0", "0", "0", "14", "10", "0", "0", "0", "4", "0", "4", "0", "4", "3", "2", "1", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.645713", "winner": "KS\u010cM", "id": "567850", "population": 88, "town": "\u00dajezde\u010dek", "winner_class": ["kscm"], "lng": "13.789753"}, {"votes": ["1", "0", "0", "0", "76", "1", "18", "0", "1", "15", "0", "0", "0", "10", "23", "0", "1", "1", "16", "2", "4", "3", "13", "0", "0", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "2", "1", "0"], "lat": "49.141062", "winner": "KDU-\u010cSL", "id": "583685", "population": 195, "town": "Prace", "winner_class": ["kdu-csl"], "lng": "16.765393"}, {"votes": ["0", "0", "0", "0", "1", "6", "22", "0", "0", "24", "0", "0", "0", "15", "28", "0", "0", "0", "7", "3", "2", "4", "4", "0", "2", "1", "0", "0", "0", "0", "11", "0", "4", "0", "0", "1", "0", "0"], "lat": "49.955066", "winner": "ANO", "id": "531081", "population": 135, "town": "Broumy", "winner_class": ["ano"], "lng": "13.852259"}, {"votes": ["2", "0", "0", "0", "7", "6", "4", "1", "0", "6", "0", "0", "0", "14", "20", "0", "0", "1", "4", "3", "4", "3", "7", "0", "2", "2", "0", "0", "0", "0", "3", "1", "0", "0", "0", "1", "1", "0"], "lat": "50.215967", "winner": "ANO", "id": "560456", "population": 92, "town": "Krajkov\u00e1", "winner_class": ["ano"], "lng": "12.534074"}, {"votes": ["0", "1", "0", "0", "34", "2", "9", "1", "1", "9", "0", "0", "0", "9", "4", "0", "0", "0", "11", "0", "3", "4", "4", "0", "0", "1", "0", "1", "0", "0", "4", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.478951", "winner": "KDU-\u010cSL", "id": "595268", "population": 99, "town": "Bobrov\u00e1", "winner_class": ["kdu-csl"], "lng": "16.11515"}, {"votes": ["0", "0", "2", "0", "6", "4", "41", "2", "1", "6", "0", "0", "0", "11", "51", "0", "0", "0", "5", "0", "2", "10", "15", "0", "0", "1", "0", "1", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.706377", "winner": "ANO", "id": "564460", "population": 167, "town": "\u0160imonovice", "winner_class": ["ano"], "lng": "15.052623"}, {"votes": ["0", "0", "0", "0", "41", "1", "2", "0", "1", "1", "0", "1", "0", "12", "9", "0", "1", "0", "4", "0", "3", "3", "0", "0", "1", "0", "0", "0", "0", "0", "3", "0", "2", "1", "0", "0", "2", "0"], "lat": "48.877251", "winner": "KDU-\u010cSL", "id": "586684", "population": 88, "town": "Tvaro\u017en\u00e1 Lhota", "winner_class": ["kdu-csl"], "lng": "17.359389"}, {"votes": ["2", "1", "0", "1", "1", "2", "63", "1", "0", "17", "0", "0", "0", "19", "40", "0", "0", "0", "14", "0", "0", "4", "5", "0", "0", "1", "1", "0", "0", "0", "7", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.914289", "winner": "TOP 09", "id": "599735", "population": 181, "town": "B\u0159ezov\u00e1-Ole\u0161ko", "winner_class": ["top-09"], "lng": "14.416298"}, {"votes": ["0", "0", "0", "0", "2", "1", "6", "1", "0", "17", "0", "0", "0", "6", "35", "0", "0", "0", "2", "0", "7", "6", "6", "0", "0", "0", "0", "4", "0", "0", "5", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.823145", "winner": "ANO", "id": "563919", "population": 99, "town": "B\u00edl\u00fd Kostel nad Nisou", "winner_class": ["ano"], "lng": "14.924397"}, {"votes": ["0", "0", "0", "0", "26", "1", "14", "0", "0", "23", "0", "0", "0", "24", "20", "0", "6", "0", "3", "1", "8", "5", "7", "0", "0", "0", "0", "3", "1", "0", "7", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.337175", "winner": "KDU-\u010cSL", "id": "582298", "population": 151, "town": "Rudice", "winner_class": ["kdu-csl"], "lng": "16.725814"}, {"votes": ["1", "0", "0", "2", "11", "0", "49", "0", "3", "6", "0", "0", "0", "25", "35", "0", "2", "0", "9", "0", "1", "6", "27", "0", "1", "0", "0", "0", "1", "1", "9", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.254645", "winner": "TOP 09", "id": "583791", "population": 190, "town": "Rozdrojovice", "winner_class": ["top-09"], "lng": "16.509928"}, {"votes": ["0", "0", "0", "0", "52", "1", "9", "0", "0", "15", "0", "0", "0", "19", "12", "0", "1", "0", "1", "0", "5", "1", "3", "0", "1", "0", "0", "3", "0", "0", "14", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.355107", "winner": "KDU-\u010cSL", "id": "581763", "population": 137, "town": "Kotvrdovice", "winner_class": ["kdu-csl"], "lng": "16.784353"}, {"votes": ["0", "1", "0", "1", "25", "0", "3", "1", "0", "4", "0", "0", "0", "26", "11", "0", "1", "0", "5", "0", "2", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.001551", "winner": "\u010cSSD", "id": "586668", "population": 81, "town": "T\u011bmice", "winner_class": ["cssd"], "lng": "17.264918"}, {"votes": ["0", "1", "0", "2", "22", "0", "5", "0", "2", "9", "0", "0", "0", "16", "12", "0", "2", "0", "5", "0", "7", "4", "1", "0", "0", "1", "0", "1", "0", "1", "8", "2", "1", "0", "0", "0", "0", "0"], "lat": "49.721288", "winner": "KDU-\u010cSL", "id": "552160", "population": 102, "town": "P\u0148ovice", "winner_class": ["kdu-csl"], "lng": "17.161817"}, {"votes": ["0", "1", "0", "1", "5", "6", "23", "2", "2", "21", "1", "0", "1", "13", "36", "0", "0", "0", "6", "1", "1", "4", "3", "0", "0", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.850028", "winner": "ANO", "id": "531847", "population": 132, "town": "Tlustice", "winner_class": ["ano"], "lng": "13.885612"}, {"votes": ["0", "1", "0", "3", "45", "6", "19", "0", "0", "24", "0", "0", "1", "59", "41", "0", "8", "0", "4", "0", "12", "3", "8", "0", "4", "0", "1", "4", "1", "1", "7", "0", "2", "0", "1", "0", "0", "0"], "lat": "49.54862", "winner": "\u010cSSD", "id": "582468", "population": 255, "town": "\u0160ebetov", "winner_class": ["cssd"], "lng": "16.711622"}, {"votes": ["0", "0", "0", "0", "42", "1", "6", "0", "0", "15", "0", "0", "0", "13", "17", "0", "1", "0", "10", "0", "9", "0", "0", "0", "0", "2", "0", "0", "0", "0", "2", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.462763", "winner": "KDU-\u010cSL", "id": "521531", "population": 119, "town": "V\u0161echovice", "winner_class": ["kdu-csl"], "lng": "17.758138"}, {"votes": ["3", "0", "0", "0", "39", "8", "6", "0", "0", "6", "0", "0", "0", "15", "7", "0", "1", "0", "7", "0", "1", "1", "1", "0", "0", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.002085", "winner": "KDU-\u010cSL", "id": "512869", "population": 96, "town": "Strahovice", "winner_class": ["kdu-csl"], "lng": "18.087107"}, {"votes": ["3", "0", "1", "0", "8", "8", "27", "1", "1", "16", "0", "0", "2", "34", "47", "0", "0", "0", "12", "0", "10", "3", "2", "0", "3", "2", "0", "0", "1", "0", "4", "1", "1", "0", "0", "1", "1", "0"], "lat": "49.657453", "winner": "ANO", "id": "540129", "population": 189, "town": "Doln\u00ed Hbity", "winner_class": ["ano"], "lng": "14.169829"}, {"votes": ["0", "0", "0", "0", "6", "3", "18", "1", "0", "14", "0", "0", "0", "16", "20", "0", "0", "0", "12", "0", "6", "6", "3", "0", "1", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.236897", "winner": "ANO", "id": "584118", "population": 115, "town": "Veversk\u00e9 Kn\u00ednice", "winner_class": ["ano"], "lng": "16.401827"}, {"votes": ["1", "0", "0", "0", "24", "4", "24", "0", "2", "27", "0", "0", "1", "13", "6", "0", "0", "1", "2", "0", "2", "0", "7", "0", "3", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.627705", "winner": "KS\u010cM", "id": "568601", "population": 123, "town": "Doln\u00ed M\u011bsto", "winner_class": ["kscm"], "lng": "15.382297"}, {"votes": ["1", "0", "0", "0", "29", "7", "4", "0", "1", "18", "0", "0", "0", "43", "20", "0", "7", "0", "3", "0", "9", "1", "4", "0", "0", "0", "0", "3", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.259671", "winner": "\u010cSSD", "id": "588849", "population": 151, "town": "Pa\u010dlavice", "winner_class": ["cssd"], "lng": "17.168905"}, {"votes": ["0", "0", "0", "0", "3", "2", "42", "0", "1", "16", "0", "0", "0", "15", "23", "0", "0", "0", "9", "2", "3", "2", "8", "0", "0", "1", "0", "6", "0", "0", "7", "0", "2", "0", "0", "1", "4", "0"], "lat": "49.856009", "winner": "TOP 09", "id": "529958", "population": 147, "town": "Krhanice", "winner_class": ["top-09"], "lng": "14.557357"}, {"votes": ["1", "0", "0", "0", "1", "2", "5", "2", "6", "9", "0", "0", "0", "14", "20", "0", "0", "0", "11", "0", "3", "0", "2", "1", "2", "2", "0", "1", "0", "0", "5", "1", "0", "0", "0", "0", "0", "0"], "lat": "50.452469", "winner": "ANO", "id": "566349", "population": 88, "town": "Lib\u010deves", "winner_class": ["ano"], "lng": "13.838177"}, {"votes": ["1", "1", "0", "0", "60", "5", "10", "0", "0", "13", "0", "0", "0", "17", "20", "0", "5", "0", "9", "0", "2", "4", "7", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "1", "0", "0", "2", "0"], "lat": "48.967447", "winner": "KDU-\u010cSL", "id": "584321", "population": 162, "town": "Boleradice", "winner_class": ["kdu-csl"], "lng": "16.812949"}, {"votes": ["0", "0", "0", "1", "9", "1", "51", "1", "0", "14", "0", "0", "0", "22", "25", "0", "0", "0", "2", "0", "9", "1", "6", "0", "0", "1", "0", "1", "0", "0", "9", "0", "0", "1", "0", "0", "1", "0"], "lat": "49.601922", "winner": "TOP 09", "id": "557684", "population": 155, "town": "Doln\u00ed Lukavice", "winner_class": ["top-09"], "lng": "13.344231"}, {"votes": ["1", "0", "1", "2", "2", "8", "17", "0", "1", "15", "0", "0", "0", "29", "35", "0", "0", "0", "11", "0", "3", "1", "5", "0", "3", "1", "0", "0", "1", "0", "2", "0", "1", "0", "0", "0", "0", "0"], "lat": "50.130714", "winner": "ANO", "id": "537586", "population": 139, "town": "Opolany", "winner_class": ["ano"], "lng": "15.216997"}, {"votes": ["0", "1", "0", "1", "4", "1", "38", "1", "0", "5", "0", "1", "0", "16", "38", "0", "0", "1", "8", "0", "1", "9", "5", "0", "0", "0", "0", "1", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.99395", "winner": "TOP 09", "id": "564907", "population": 141, "town": "Nupaky", "winner_class": ["top-09"], "lng": "14.60223"}, {"votes": ["2", "1", "1", "0", "4", "1", "14", "1", "0", "23", "0", "0", "0", "24", "13", "0", "0", "0", "12", "0", "11", "3", "2", "0", "1", "0", "0", "0", "1", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.137927", "winner": "\u010cSSD", "id": "542334", "population": 121, "town": "Rynholec", "winner_class": ["cssd"], "lng": "13.922218"}, {"votes": ["0", "0", "1", "0", "10", "2", "43", "0", "1", "11", "0", "0", "0", "13", "20", "0", "0", "0", "10", "0", "3", "3", "3", "1", "0", "0", "0", "1", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.695563", "winner": "TOP 09", "id": "563854", "population": 125, "town": "Z\u00e1sada", "winner_class": ["top-09"], "lng": "15.274298"}, {"votes": ["0", "0", "1", "0", "0", "3", "55", "2", "0", "20", "0", "0", "0", "20", "19", "0", "0", "0", "11", "0", "4", "4", "8", "0", "0", "0", "1", "1", "0", "0", "11", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.345504", "winner": "TOP 09", "id": "557455", "population": 161, "town": "Vrhave\u010d", "winner_class": ["top-09"], "lng": "13.296253"}, {"votes": ["0", "0", "0", "0", "0", "1", "4", "0", "0", "12", "0", "0", "0", "10", "17", "0", "0", "0", "3", "0", "16", "4", "7", "1", "2", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.16256", "winner": "ANO", "id": "560324", "population": 83, "town": "Citice", "winner_class": ["ano"], "lng": "12.613323"}, {"votes": ["0", "0", "0", "0", "16", "0", "6", "0", "0", "16", "0", "0", "0", "14", "8", "0", "1", "2", "6", "0", "6", "5", "1", "0", "0", "0", "0", "1", "0", "0", "8", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.667381", "winner": "KDU-\u010cSL", "id": "578096", "population": 91, "town": "Chornice", "winner_class": ["kdu-csl"], "lng": "16.742626"}, {"votes": ["0", "0", "0", "0", "29", "7", "8", "0", "0", "14", "0", "0", "0", "8", "13", "0", "3", "0", "6", "0", "6", "0", "2", "0", "0", "1", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.019641", "winner": "KDU-\u010cSL", "id": "586552", "population": 101, "town": "Sob\u016flky", "winner_class": ["kdu-csl"], "lng": "17.078934"}, {"votes": ["0", "1", "0", "0", "8", "0", "4", "0", "2", "12", "0", "0", "0", "11", "10", "0", "1", "0", "1", "0", "4", "2", "5", "0", "0", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "2", "0"], "lat": "49.757121", "winner": "KS\u010cM", "id": "556858", "population": 66, "town": "Bravantice", "winner_class": ["kscm"], "lng": "18.082755"}, {"votes": ["0", "0", "1", "2", "0", "5", "31", "2", "1", "20", "0", "1", "1", "28", "29", "0", "0", "0", "3", "0", "3", "0", "2", "0", "0", "0", "0", "3", "0", "0", "11", "0", "1", "0", "0", "0", "1", "0"], "lat": "49.579863", "winner": "TOP 09", "id": "558303", "population": 145, "town": "\u0158en\u010de", "winner_class": ["top-09"], "lng": "13.414492"}, {"votes": ["4", "2", "0", "3", "4", "3", "20", "1", "3", "7", "0", "0", "0", "13", "36", "0", "0", "0", "6", "2", "10", "4", "5", "0", "0", "0", "0", "0", "0", "0", "8", "1", "0", "0", "0", "0", "1", "0"], "lat": "50.664831", "winner": "ANO", "id": "563901", "population": 133, "town": "B\u00edl\u00e1", "winner_class": ["ano"], "lng": "15.035414"}, {"votes": ["1", "0", "1", "0", "15", "4", "17", "0", "0", "8", "0", "0", "0", "9", "29", "0", "0", "1", "3", "3", "2", "2", "6", "0", "0", "0", "0", "1", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.361299", "winner": "ANO", "id": "587401", "population": 112, "town": "Kostelec", "winner_class": ["ano"], "lng": "15.490668"}, {"votes": ["0", "0", "0", "0", "27", "0", "14", "0", "0", "14", "0", "0", "0", "14", "12", "0", "0", "0", "3", "0", "2", "1", "0", "1", "1", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.189703", "winner": "KDU-\u010cSL", "id": "587541", "population": 91, "town": "Mr\u00e1kot\u00edn", "winner_class": ["kdu-csl"], "lng": "15.375924"}, {"votes": ["0", "1", "0", "0", "76", "2", "30", "0", "0", "8", "0", "0", "0", "21", "18", "0", "2", "0", "6", "0", "1", "2", "3", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.166717", "winner": "KDU-\u010cSL", "id": "583189", "population": 179, "town": "Ji\u0159\u00edkovice", "winner_class": ["kdu-csl"], "lng": "16.75799"}, {"votes": ["1", "1", "0", "1", "44", "0", "41", "2", "2", "9", "0", "0", "0", "14", "19", "0", "0", "0", "14", "1", "3", "3", "5", "0", "1", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.265191", "winner": "KDU-\u010cSL", "id": "557366", "population": 164, "town": "Velhartice", "winner_class": ["kdu-csl"], "lng": "13.389747"}, {"votes": ["1", "0", "4", "1", "68", "1", "19", "0", "1", "6", "0", "1", "0", "14", "19", "0", "1", "0", "2", "0", "8", "4", "6", "0", "0", "1", "0", "0", "0", "1", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.295411", "winner": "KDU-\u010cSL", "id": "585343", "population": 160, "town": "Ka\u0161ava", "winner_class": ["kdu-csl"], "lng": "17.785661"}, {"votes": ["0", "0", "0", "0", "10", "2", "16", "1", "0", "11", "0", "0", "0", "17", "19", "0", "0", "2", "10", "0", "4", "5", "6", "0", "3", "2", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.942165", "winner": "ANO", "id": "554880", "population": 115, "town": "T\u0159i Sekery", "winner_class": ["ano"], "lng": "12.616629"}, {"votes": ["0", "1", "1", "0", "13", "3", "14", "0", "0", "13", "0", "0", "0", "18", "17", "0", "0", "0", "12", "0", "6", "8", "1", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.403818", "winner": "\u010cSSD", "id": "573175", "population": 117, "town": "Milet\u00edn", "winner_class": ["cssd"], "lng": "15.682261"}, {"votes": ["0", "0", "0", "1", "3", "1", "16", "0", "0", "17", "0", "0", "0", "8", "14", "0", "0", "0", "5", "0", "2", "5", "3", "0", "1", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "3", "0"], "lat": "50.330957", "winner": "KS\u010cM", "id": "573809", "population": 82, "town": "Vysok\u00e9 Vesel\u00ed", "winner_class": ["kscm"], "lng": "15.436315"}, {"votes": ["0", "0", "0", "0", "12", "3", "6", "0", "0", "23", "0", "0", "0", "24", "14", "0", "1", "0", "5", "0", "6", "3", "1", "0", "1", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.389812", "winner": "\u010cSSD", "id": "524891", "population": 101, "town": "Bernartice", "winner_class": ["cssd"], "lng": "17.078275"}, {"votes": ["2", "0", "0", "0", "19", "3", "19", "0", "0", "18", "0", "0", "0", "8", "22", "0", "0", "0", "11", "0", "4", "1", "5", "0", "0", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.532095", "winner": "ANO", "id": "520420", "population": 122, "town": "Vesel\u00ed\u010dko", "winner_class": ["ano"], "lng": "17.509134"}, {"votes": ["0", "1", "0", "3", "3", "1", "8", "0", "2", "15", "0", "0", "0", "13", "17", "0", "0", "0", "4", "0", "1", "3", "2", "0", "3", "0", "0", "0", "1", "0", "4", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.349821", "winner": "ANO", "id": "543128", "population": 82, "town": "Sta\u0148kovice", "winner_class": ["ano"], "lng": "13.571038"}, {"votes": ["2", "0", "1", "0", "61", "2", "4", "0", "2", "26", "0", "0", "0", "10", "14", "0", "0", "0", "5", "0", "8", "0", "2", "0", "1", "0", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.184955", "winner": "KDU-\u010cSL", "id": "591611", "population": 139, "town": "Rokytnice nad Rokytnou", "winner_class": ["kdu-csl"], "lng": "15.772947"}, {"votes": ["0", "0", "0", "1", "7", "7", "19", "0", "0", "17", "0", "1", "0", "15", "29", "0", "0", "1", "10", "0", "2", "2", "3", "0", "3", "0", "0", "0", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.297596", "winner": "ANO", "id": "551791", "population": 120, "town": "St\u0159elsk\u00e9 Ho\u0161tice", "winner_class": ["ano"], "lng": "13.755955"}, {"votes": ["1", "0", "0", "0", "2", "2", "22", "0", "0", "15", "0", "0", "0", "10", "35", "0", "0", "0", "18", "1", "11", "0", "11", "0", "0", "1", "0", "1", "1", "1", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.191753", "winner": "ANO", "id": "570249", "population": 141, "town": "Lib\u010dany", "winner_class": ["ano"], "lng": "15.694902"}, {"votes": ["0", "0", "0", "0", "24", "0", "3", "0", "0", "10", "0", "0", "0", "28", "11", "0", "0", "0", "6", "0", "5", "4", "3", "0", "2", "0", "0", "0", "0", "1", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.156239", "winner": "\u010cSSD", "id": "592927", "population": 99, "town": "Brankovice", "winner_class": ["cssd"], "lng": "17.134589"}, {"votes": ["0", "0", "0", "0", "19", "1", "7", "0", "0", "7", "0", "1", "0", "15", "17", "0", "0", "0", "6", "2", "0", "3", "0", "0", "1", "2", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.822905", "winner": "KDU-\u010cSL", "id": "540234", "population": 88, "town": "Lukavice", "winner_class": ["kdu-csl"], "lng": "16.920398"}, {"votes": ["0", "0", "0", "0", "3", "3", "33", "0", "1", "7", "0", "0", "0", "31", "31", "0", "0", "0", "8", "0", "3", "6", "7", "0", "0", "2", "0", "0", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.582932", "winner": "TOP 09", "id": "577413", "population": 144, "town": "P\u0159epe\u0159e", "winner_class": ["top-09"], "lng": "15.112793"}, {"votes": ["0", "0", "0", "0", "0", "2", "5", "0", "2", "22", "0", "0", "0", "9", "16", "0", "0", "0", "6", "0", "6", "2", "3", "1", "2", "0", "0", "0", "0", "0", "4", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.560113", "winner": "KS\u010cM", "id": "567612", "population": 82, "town": "Kostomlaty pod Mile\u0161ovkou", "winner_class": ["kscm"], "lng": "13.873053"}, {"votes": ["0", "1", "0", "0", "18", "4", "25", "0", "0", "19", "0", "0", "0", "17", "11", "0", "0", "0", "4", "0", "2", "3", "4", "0", "2", "4", "0", "0", "0", "0", "3", "0", "0", "0", "0", "1", "0", "0"], "lat": "49.744126", "winner": "TOP 09", "id": "569020", "population": 118, "town": "Libice nad Doubravou", "winner_class": ["top-09"], "lng": "15.704645"}, {"votes": ["0", "0", "0", "1", "47", "0", "16", "0", "2", "7", "0", "0", "0", "10", "29", "0", "1", "0", "7", "0", "3", "4", "4", "0", "0", "1", "0", "0", "0", "0", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.539732", "winner": "KDU-\u010cSL", "id": "581739", "population": 133, "town": "Kn\u00ednice u Boskovic", "winner_class": ["kdu-csl"], "lng": "16.693977"}, {"votes": ["0", "0", "0", "0", "18", "1", "12", "1", "0", "14", "0", "0", "0", "14", "23", "0", "5", "0", "1", "0", "11", "0", "2", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.055929", "winner": "ANO", "id": "592471", "population": 107, "town": "Osv\u011btimany", "winner_class": ["ano"], "lng": "17.250272"}, {"votes": ["0", "2", "1", "0", "1", "3", "13", "2", "0", "10", "0", "1", "0", "21", "40", "0", "0", "0", "12", "0", "4", "4", "4", "0", "1", "0", "0", "4", "0", "0", "12", "0", "2", "1", "0", "1", "0", "0"], "lat": "50.458066", "winner": "ANO", "id": "565776", "population": 139, "town": "T\u0159eb\u00edvlice", "winner_class": ["ano"], "lng": "13.89926"}, {"votes": ["0", "0", "0", "0", "5", "1", "9", "0", "0", "26", "0", "0", "1", "11", "24", "0", "0", "0", "8", "0", "4", "4", "1", "0", "2", "1", "0", "0", "0", "0", "1", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.337453", "winner": "KS\u010cM", "id": "535931", "population": 100, "town": "Chot\u011btov", "winner_class": ["kscm"], "lng": "14.801624"}, {"votes": ["1", "0", "0", "0", "43", "1", "7", "2", "0", "2", "0", "0", "0", "11", "11", "0", "3", "0", "15", "4", "5", "3", "1", "0", "0", "0", "0", "1", "0", "0", "2", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.704192", "winner": "KDU-\u010cSL", "id": "599867", "population": 113, "town": "Sp\u00e1lov", "winner_class": ["kdu-csl"], "lng": "17.722072"}, {"votes": ["0", "1", "1", "0", "4", "2", "10", "0", "1", "12", "0", "0", "0", "24", "17", "0", "0", "1", "10", "0", "0", "3", "3", "0", "0", "2", "0", "0", "0", "0", "11", "0", "0", "2", "0", "0", "0", "1"], "lat": "50.231153", "winner": "\u010cSSD", "id": "533122", "population": 105, "town": "Zvolen\u011bves", "winner_class": ["cssd"], "lng": "14.182207"}, {"votes": ["1", "0", "0", "0", "16", "1", "14", "2", "0", "9", "0", "0", "0", "9", "21", "0", "0", "0", "3", "0", "2", "4", "4", "0", "0", "1", "0", "0", "0", "0", "8", "0", "1", "0", "0", "0", "0", "0"], "lat": "49.57069", "winner": "ANO", "id": "530166", "population": 96, "town": "Mili\u010d\u00edn", "winner_class": ["ano"], "lng": "14.661405"}, {"votes": ["0", "0", "0", "0", "6", "0", "12", "0", "0", "12", "0", "0", "0", "23", "12", "0", "0", "0", "5", "0", "4", "4", "3", "0", "0", "2", "0", "0", "0", "1", "3", "1", "0", "1", "0", "2", "1", "0"], "lat": "50.185743", "winner": "\u010cSSD", "id": "537021", "population": 92, "town": "B\u011brunice", "winner_class": ["cssd"], "lng": "15.333588"}, {"votes": ["0", "0", "0", "0", "1", "2", "21", "0", "1", "6", "0", "0", "1", "19", "27", "0", "0", "0", "12", "0", "4", "8", "5", "0", "0", "0", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.407404", "winner": "ANO", "id": "535583", "population": 115, "town": "B\u0159ezno", "winner_class": ["ano"], "lng": "15.002224"}, {"votes": ["0", "0", "0", "0", "4", "1", "14", "1", "0", "20", "0", "0", "0", "6", "17", "0", "1", "0", "12", "0", "3", "2", "2", "0", "1", "0", "0", "1", "2", "0", "3", "1", "0", "0", "0", "0", "0", "0"], "lat": "49.069712", "winner": "KS\u010cM", "id": "547221", "population": 91, "town": "Str\u00e1\u017e nad Ne\u017e\u00e1rkou", "winner_class": ["kscm"], "lng": "14.905514"}, {"votes": ["0", "0", "0", "1", "52", "2", "4", "0", "0", "16", "0", "0", "0", "21", "12", "0", "2", "1", "5", "0", "6", "0", "1", "0", "1", "1", "0", "1", "0", "0", "3", "1", "0", "0", "0", "3", "0", "0"], "lat": "49.44163", "winner": "KDU-\u010cSL", "id": "596825", "population": 133, "town": "Str\u00e1\u017eek", "winner_class": ["kdu-csl"], "lng": "16.192204"}, {"votes": ["2", "0", "0", "0", "1", "3", "47", "0", "3", "13", "0", "0", "0", "11", "23", "0", "0", "0", "9", "0", "3", "4", "8", "0", "0", "3", "2", "4", "0", "0", "7", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.7845", "winner": "TOP 09", "id": "568309", "population": 144, "town": "Tis\u00e1", "winner_class": ["top-09"], "lng": "14.031301"}, {"votes": ["0", "2", "0", "0", "33", "2", "7", "0", "2", "34", "0", "0", "0", "15", "20", "0", "1", "2", "11", "1", "6", "4", "4", "0", "1", "0", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.724441", "winner": "KS\u010cM", "id": "572349", "population": 149, "town": "Svratouch", "winner_class": ["kscm"], "lng": "16.034185"}, {"votes": ["0", "1", "0", "0", "22", "2", "14", "0", "0", "23", "0", "0", "0", "18", "6", "0", "1", "0", "6", "0", "2", "9", "3", "0", "1", "1", "0", "1", "0", "0", "8", "0", "0", "0", "0", "2", "0", "0"], "lat": "49.288492", "winner": "KS\u010cM", "id": "583111", "population": 120, "town": "Chud\u010dice", "winner_class": ["kscm"], "lng": "16.458724"}, {"votes": ["0", "1", "0", "0", "2", "9", "14", "0", "0", "12", "0", "0", "0", "11", "17", "0", "0", "0", "3", "0", "3", "1", "6", "0", "1", "0", "0", "0", "0", "0", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.794065", "winner": "ANO", "id": "546496", "population": 90, "town": "Ludv\u00edkovice", "winner_class": ["ano"], "lng": "14.256411"}, {"votes": ["0", "0", "0", "0", "5", "2", "7", "0", "1", "13", "0", "0", "0", "21", "21", "0", "0", "0", "11", "0", "4", "3", "2", "0", "1", "3", "0", "1", "0", "1", "8", "0", "0", "0", "0", "1", "0", "0"], "lat": "50.644686", "winner": "\u010cSSD", "id": "579050", "population": 105, "town": "Bernartice", "winner_class": ["cssd"], "lng": "15.96582"}, {"votes": ["0", "1", "0", "0", "7", "2", "18", "1", "0", "21", "0", "0", "0", "19", "23", "0", "0", "0", "9", "1", "6", "2", "7", "0", "1", "2", "0", "1", "0", "0", "3", "0", "0", "0", "0", "2", "0", "0"], "lat": "50.317212", "winner": "ANO", "id": "535303", "population": 126, "town": "Vra\u0148any", "winner_class": ["ano"], "lng": "14.361653"}, {"votes": ["0", "0", "0", "1", "13", "3", "9", "0", "0", "11", "0", "0", "0", "17", "19", "0", "2", "0", "2", "0", "2", "11", "5", "0", "0", "0", "0", "1", "0", "1", "10", "0", "1", "0", "0", "1", "0", "0"], "lat": "49.142213", "winner": "ANO", "id": "583481", "population": 109, "town": "Neslovice", "winner_class": ["ano"], "lng": "16.387779"}, {"votes": ["0", "0", "0", "0", "9", "2", "9", "0", "1", "17", "0", "0", "0", "18", "15", "0", "0", "0", "9", "0", "4", "6", "3", "1", "4", "0", "0", "2", "0", "0", "7", "0", "2", "0", "0", "0", "0", "0"], "lat": "50.367758", "winner": "\u010cSSD", "id": "535478", "population": 109, "town": "Bezno", "winner_class": ["cssd"], "lng": "14.796671"}, {"votes": ["1", "1", "1", "0", "14", "0", "33", "1", "0", "7", "0", "0", "0", "15", "34", "1", "0", "0", "6", "2", "8", "7", "9", "0", "1", "0", "0", "1", "0", "0", "9", "1", "1", "0", "0", "0", "2", "0"], "lat": "50.014452", "winner": "ANO", "id": "531821", "population": 155, "town": "Tachlovice", "winner_class": ["ano"], "lng": "14.24068"}, {"votes": ["0", "1", "1", "1", "4", "7", "43", "1", "1", "12", "0", "0", "0", "19", "44", "0", "0", "0", "16", "1", "9", "5", "8", "0", "1", "1", "0", "3", "0", "0", "9", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.652257", "winner": "ANO", "id": "563579", "population": 187, "town": "Fr\u00fdd\u0161tejn", "winner_class": ["ano"], "lng": "15.158759"}, {"votes": ["0", "0", "0", "0", "122", "0", "9", "1", "1", "15", "0", "0", "0", "13", "12", "0", "0", "0", "0", "0", "5", "0", "1", "0", "0", "1", "0", "1", "0", "1", "1", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.46193", "winner": "KDU-\u010cSL", "id": "596574", "population": 183, "town": "Radost\u00edn nad Oslavou", "winner_class": ["kdu-csl"], "lng": "15.965109"}, {"votes": ["0", "0", "0", "0", "17", "4", "12", "0", "0", "18", "0", "0", "0", "21", "17", "0", "4", "2", "8", "0", "3", "1", "6", "0", "1", "0", "0", "2", "1", "0", "5", "2", "0", "0", "0", "1", "0", "0"], "lat": "49.117652", "winner": "\u010cSSD", "id": "593052", "population": 125, "town": "Host\u011br\u00e1dky-Re\u0161ov", "winner_class": ["cssd"], "lng": "16.7843"}, {"votes": ["0", "0", "0", "0", "18", "0", "17", "1", "0", "19", "0", "0", "0", "30", "14", "0", "0", "0", "2", "0", "2", "1", "7", "1", "1", "1", "0", "0", "2", "0", "8", "0", "0", "0", "0", "0", "2", "0"], "lat": "48.89473", "winner": "\u010cSSD", "id": "595098", "population": 126, "town": "Vranov nad Dyj\u00ed", "winner_class": ["cssd"], "lng": "15.81255"}, {"votes": ["1", "0", "0", "0", "0", "3", "7", "0", "0", "4", "0", "0", "1", "30", "22", "0", "0", "0", "4", "0", "3", "3", "1", "0", "0", "0", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.523409", "winner": "\u010cSSD", "id": "536024", "population": 85, "town": "Kl\u00e1\u0161ter Hradi\u0161t\u011b nad Jizerou", "winner_class": ["cssd"], "lng": "14.944721"}, {"votes": ["0", "1", "0", "0", "11", "2", "9", "0", "1", "38", "0", "0", "0", "12", "7", "0", "0", "0", "9", "0", "3", "2", "8", "0", "0", "1", "0", "0", "0", "0", "2", "1", "2", "0", "0", "0", "1", "0"], "lat": "50.027961", "winner": "KS\u010cM", "id": "541699", "population": 110, "town": "\u010cist\u00e1", "winner_class": ["kscm"], "lng": "13.570479"}, {"votes": ["0", "0", "0", "0", "13", "3", "10", "0", "2", "22", "0", "0", "0", "15", "19", "0", "0", "0", "10", "0", "8", "2", "1", "0", "3", "1", "0", "0", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.192836", "winner": "KS\u010cM", "id": "545155", "population": 118, "town": "Temel\u00edn", "winner_class": ["kscm"], "lng": "14.348745"}, {"votes": ["0", "0", "0", "4", "8", "2", "25", "2", "2", "14", "0", "0", "0", "19", "22", "0", "0", "0", "6", "2", "2", "4", "8", "0", "1", "1", "1", "1", "0", "0", "9", "1", "0", "0", "0", "2", "0", "0"], "lat": "49.719067", "winner": "TOP 09", "id": "558460", "population": 136, "town": "Tym\u00e1kov", "winner_class": ["top-09"], "lng": "13.509822"}, {"votes": ["0", "2", "0", "1", "0", "2", "4", "0", "0", "31", "0", "0", "0", "21", "20", "0", "0", "0", "5", "0", "4", "0", "2", "0", "2", "1", "0", "1", "0", "1", "3", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.320298", "winner": "KS\u010cM", "id": "546011", "population": 101, "town": "Jiml\u00edn", "winner_class": ["kscm"], "lng": "13.747144"}, {"votes": ["0", "0", "0", "0", "31", "2", "13", "0", "0", "16", "0", "0", "0", "7", "13", "0", "0", "1", "6", "0", "4", "4", "4", "0", "0", "0", "0", "1", "1", "0", "6", "0", "1", "0", "0", "0", "1", "0"], "lat": "50.111605", "winner": "KDU-\u010cSL", "id": "580431", "population": 111, "town": "Kl\u00e1\u0161terec nad Orlic\u00ed", "winner_class": ["kdu-csl"], "lng": "16.554488"}, {"votes": ["0", "0", "0", "0", "14", "0", "6", "0", "0", "12", "0", "0", "0", "14", "37", "0", "1", "0", "5", "1", "2", "3", "4", "0", "0", "0", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.951585", "winner": "ANO", "id": "584894", "population": 105, "town": "Starovice", "winner_class": ["ano"], "lng": "16.706611"}, {"votes": ["0", "0", "0", "3", "1", "1", "9", "0", "0", "15", "0", "0", "0", "14", "18", "0", "1", "0", "3", "0", "5", "3", "4", "0", "0", "1", "0", "0", "0", "0", "3", "0", "0", "1", "0", "0", "1", "0"], "lat": "50.003561", "winner": "ANO", "id": "551767", "population": 83, "town": "Star\u00e9 M\u011bsto", "winner_class": ["ano"], "lng": "17.432068"}, {"votes": ["0", "0", "0", "0", "28", "1", "9", "1", "0", "20", "0", "0", "0", "15", "18", "0", "0", "0", "13", "1", "3", "3", "0", "0", "1", "0", "0", "2", "0", "0", "1", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.903844", "winner": "KDU-\u010cSL", "id": "507920", "population": 117, "town": "Litultovice", "winner_class": ["kdu-csl"], "lng": "17.747763"}, {"votes": ["0", "0", "0", "4", "30", "2", "8", "0", "0", "8", "0", "0", "0", "22", "6", "0", "0", "0", "10", "1", "3", "2", "9", "0", "1", "2", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.814092", "winner": "KDU-\u010cSL", "id": "512745", "population": 111, "town": "T\u011b\u0161kovice", "winner_class": ["kdu-csl"], "lng": "18.020902"}, {"votes": ["0", "1", "0", "2", "6", "2", "56", "0", "5", "15", "0", "0", "1", "16", "12", "0", "0", "0", "10", "0", "5", "5", "11", "0", "2", "0", "0", "1", "0", "0", "8", "0", "0", "0", "0", "0", "1", "0"], "lat": "49.753246", "winner": "TOP 09", "id": "559130", "population": 159, "town": "Ky\u0161ice", "winner_class": ["top-09"], "lng": "13.486203"}, {"votes": ["0", "0", "0", "1", "26", "0", "6", "0", "2", "18", "0", "1", "0", "18", "7", "0", "1", "1", "9", "0", "11", "3", "4", "0", "3", "1", "0", "0", "0", "0", "11", "1", "0", "0", "0", "0", "2", "0"], "lat": "49.402604", "winner": "KDU-\u010cSL", "id": "582603", "population": 126, "town": "Vav\u0159inec", "winner_class": ["kdu-csl"], "lng": "16.719844"}, {"votes": ["0", "0", "0", "0", "3", "1", "8", "0", "0", "23", "0", "2", "0", "7", "6", "0", "5", "0", "5", "0", "4", "3", "4", "0", "0", "1", "0", "0", "3", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "48.778894", "winner": "KS\u010cM", "id": "584878", "population": 79, "town": "Sedlec", "winner_class": ["kscm"], "lng": "16.693885"}, {"votes": ["0", "0", "0", "0", "1", "1", "21", "2", "0", "15", "1", "0", "0", "7", "25", "0", "0", "0", "10", "0", "1", "1", "6", "0", "0", "1", "0", "0", "0", "0", "5", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.204836", "winner": "ANO", "id": "542105", "population": 97, "town": "M\u0161ec", "winner_class": ["ano"], "lng": "13.899788"}, {"votes": ["0", "0", "0", "0", "1", "10", "25", "1", "0", "14", "0", "0", "1", "11", "16", "0", "0", "0", "6", "1", "4", "0", "6", "0", "0", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.861044", "winner": "TOP 09", "id": "559504", "population": 103, "town": "Trnov\u00e1", "winner_class": ["top-09"], "lng": "13.323852"}, {"votes": ["1", "3", "0", "1", "8", "2", "4", "0", "1", "17", "0", "0", "0", "39", "18", "0", "1", "0", "10", "0", "3", "1", "8", "0", "0", "0", "0", "1", "1", "0", "7", "0", "2", "0", "0", "0", "0", "0"], "lat": "49.635809", "winner": "\u010cSSD", "id": "552682", "population": 128, "town": "Vy\u0161n\u00ed Lhoty", "winner_class": ["cssd"], "lng": "18.456913"}, {"votes": ["1", "0", "0", "0", "24", "0", "16", "2", "0", "10", "0", "0", "0", "12", "13", "0", "0", "1", "7", "0", "1", "3", "7", "0", "0", "3", "0", "0", "0", "0", "6", "0", "0", "0", "0", "0", "1", "0"], "lat": "50.020338", "winner": "KDU-\u010cSL", "id": "580261", "population": 107, "town": "Hn\u00e1tnice", "winner_class": ["kdu-csl"], "lng": "16.438552"}, {"votes": ["0", "0", "0", "1", "15", "1", "9", "1", "0", "3", "0", "1", "0", "13", "7", "0", "0", "0", "6", "0", "4", "1", "2", "0", "0", "0", "0", "0", "0", "2", "10", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.267493", "winner": "KDU-\u010cSL", "id": "551856", "population": 76, "town": "\u0160t\u011bke\u0148", "winner_class": ["kdu-csl"], "lng": "14.008848"}, {"votes": ["0", "0", "0", "0", "42", "5", "29", "0", "1", "2", "0", "0", "0", "11", "23", "0", "1", "0", "9", "0", "4", "4", "21", "0", "0", "1", "0", "0", "0", "0", "2", "0", "0", "0", "0", "1", "2", "0"], "lat": "49.293282", "winner": "KDU-\u010cSL", "id": "583430", "population": 158, "town": "Moravsk\u00e9 Kn\u00ednice", "winner_class": ["kdu-csl"], "lng": "16.501735"}, {"votes": ["2", "0", "1", "0", "3", "6", "14", "0", "1", "19", "0", "0", "1", "19", "20", "1", "0", "0", "2", "0", "4", "1", "1", "0", "0", "0", "0", "2", "1", "0", "4", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.139642", "winner": "ANO", "id": "541893", "population": 102, "town": "Kole\u0161ovice", "winner_class": ["ano"], "lng": "13.610276"}, {"votes": ["1", "0", "0", "0", "28", "4", "17", "1", "1", "19", "0", "3", "0", "15", "15", "0", "2", "0", "6", "0", "3", "0", "5", "0", "4", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.020898", "winner": "KDU-\u010cSL", "id": "595047", "population": 125, "town": "Vedrovice", "winner_class": ["kdu-csl"], "lng": "16.378494"}, {"votes": ["1", "0", "0", "0", "29", "5", "12", "0", "0", "15", "0", "0", "0", "21", "18", "0", "4", "0", "2", "1", "7", "2", "9", "0", "1", "2", "0", "0", "0", "1", "8", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.488806", "winner": "KDU-\u010cSL", "id": "517151", "population": 138, "town": "Prosenice", "winner_class": ["kdu-csl"], "lng": "17.48418"}, {"votes": ["0", "0", "0", "0", "6", "9", "13", "0", "1", "12", "0", "0", "0", "7", "21", "0", "0", "1", "7", "0", "8", "1", "5", "1", "0", "1", "0", "0", "0", "0", "4", "0", "0", "0", "0", "0", "0", "1"], "lat": "50.330534", "winner": "ANO", "id": "536181", "population": 98, "town": "Krop\u00e1\u010dova Vrutice", "winner_class": ["ano"], "lng": "14.717378"}, {"votes": ["0", "1", "0", "0", "24", "3", "11", "1", "0", "15", "0", "0", "0", "13", "20", "0", "0", "0", "4", "0", "4", "0", "1", "0", "0", "1", "0", "0", "1", "1", "2", "0", "0", "0", "0", "0", "0", "1"], "lat": "49.553219", "winner": "KDU-\u010cSL", "id": "548081", "population": 103, "town": "Ji\u0159ice", "winner_class": ["kdu-csl"], "lng": "15.318336"}, {"votes": ["1", "0", "0", "0", "6", "0", "22", "1", "4", "18", "0", "0", "0", "23", "46", "0", "0", "0", "18", "0", "0", "3", "9", "1", "3", "0", "0", "0", "0", "0", "7", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.318338", "winner": "ANO", "id": "553417", "population": 162, "town": "\u017dele\u010d", "winner_class": ["ano"], "lng": "14.646631"}, {"votes": ["0", "0", "0", "2", "46", "0", "5", "0", "0", "14", "0", "0", "0", "16", "41", "0", "0", "0", "8", "0", "2", "3", "0", "0", "0", "0", "0", "0", "0", "0", "2", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.194744", "winner": "KDU-\u010cSL", "id": "592994", "population": 139, "town": "Dra\u017eovice", "winner_class": ["kdu-csl"], "lng": "16.943378"}, {"votes": ["0", "0", "1", "0", "7", "2", "22", "0", "0", "54", "0", "0", "0", "8", "16", "0", "0", "0", "7", "0", "1", "6", "5", "0", "1", "0", "0", "2", "0", "0", "3", "0", "0", "0", "0", "0", "0", "0"], "lat": "49.990915", "winner": "KS\u010cM", "id": "534196", "population": 135, "town": "Svat\u00fd Mikul\u00e1\u0161", "winner_class": ["kscm"], "lng": "15.350492"}, {"votes": ["0", "0", "0", "0", "2", "2", "11", "0", "0", "22", "0", "0", "0", "11", "24", "0", "1", "1", "7", "0", "0", "3", "4", "0", "1", "0", "0", "1", "0", "0", "6", "0", "0", "0", "0", "0", "0", "0"], "lat": "50.27547", "winner": "ANO", "id": "535621", "population": 96, "town": "\u010c
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment