PKccIhgchorogrid/Chorogrid.py#!/usr/bin/python # Filename: Chorogrid.py import xml.etree.ElementTree as ET import pandas as pd import re import sys from math import sqrt from IPython.display import SVG, display class Chorogrid(object): """ An object which makes choropleth grids, instantiated with: csv_path: the path to a csv data file with the following columns: * ids: e.g., states or countries, corresponding to the Colorbin.colorlist * coordinates or path ids: a listlike object of ids corresponding to colors colors: a listlike object of colors in hex (#123456) format corresponding to ids id_column: the name of the column in csv_path containing ids if there is not a 1:1 map between the ids object and the contents of id_column, you will be warned Methods (introspect to see arguments) set_colors: pass a new list of colors to replace the one used when the class was instantiated set_title: set a title for the map set_legend: set a legend add_svg: add some custom svg code. This must be called after the draw_... method, because it needs to know the margins. draw_squares: draw a square grid choropleth draw_hex: draw a hex-based choropleth draw_multihex: draw a multiple-hex-based choropleth draw_multisquare: draw a multiple-square-based choropleth draw_map: draw a regular, geographic choropleth done: save and/or display the result in IPython notebook done_with_overlay: overlay two Chorogrid objects """ def __init__(self, csv_path, ids, colors, id_column='abbrev'): self.df = pd.read_csv(csv_path) comparison_set = set(self.df[id_column]) invalid = set(ids).difference(comparison_set) missing = comparison_set.difference(set(ids)) if len(invalid) > 0: print('WARNING: The following are not recognized' ' ids: {}'.format(invalid), file=sys.stderr) if len(missing) > 0: print('WARNING: The following ids in the csv are not ' 'included: {}'.format(missing), file=sys.stderr) self.colors = list(colors) self.ids = list(ids) self.svglist = [] assert id_column in self.df.columns, ("{} is not a column in" " {}".format(id_column, csv_path)) self.id_column = id_column self.title = '' self.additional_svg = [] self.additional_offset = [0, 0] self.legend_params = None #methods called from within methods, beginning with underscore def _update_default_dict(self, default_dict, dict_name, kwargs): """Updates a dict based on kwargs""" if dict_name in kwargs.keys(): kwarg_dict = kwargs[dict_name] for k, v in kwarg_dict.items(): assert k in default_dict.keys(), ("kwarg {} specified invalid" " key".format(dict_name)) if k == 'font-size' and type(k) is int: default_dict[k] = str(v) + 'px' else: default_dict[k] = v return default_dict def _dict2style(self, dict_): """Returns a concatenated string from the dict""" to_return = [] for k,v in dict_.items(): to_return.append(k + ':' + str(v) + ';') to_return[-1] = to_return[-1][:-1] return ''.join(to_return) def _make_svg_top(self, width, height): """Writes first part of svg""" self.svg = ET.Element('svg', xmlns="http://www.w3.org/2000/svg", version="1.1", height=str(height), width=str(width)) def _draw_title(self, x, y): if len(self.title) > 0: font_style = self._dict2style(self.title_font_dict) _ = ET.SubElement(self.svg, "text", id="title", x=str(x), y=str(y), style=font_style) _.text = self.title def _determine_font_colors(self, kwargs): if 'font_colors' in kwargs.keys(): fc = kwargs['font_colors'] if type(fc) is str: font_colors = [fc] * len(self.ids) elif type(fc) is list: font_colors = fc elif type(fc) is dict: font_colors = [fc[x] for x in self.colors] else: font_colors = ['#000000'] * len(self.ids) return font_colors def _calc_hexagon(self, x, y, w, true_rows): if true_rows: h = w/sqrt(3) return "{},{} {},{} {},{} {},{} {},{} {},{}".format(x, y, x+w/2, y-h/2, x+w, y, x+w, y+h, x+w/2, y+1.5*h, x, y+h) else: ww = w/2 hh = w * sqrt(3) / 2 return "{},{} {},{} {},{} {},{} {},{} {},{}".format(x, y, x+ww, y, x+ww*3/2, y-hh/2, x+ww, y-hh, x, y-hh, x-ww/2, y-hh/2) def _increment_multihex(self, x, y, w, direction): h = w/sqrt(3) if direction == 'a': return 'L', x+w/2, y-h/2 elif direction == 'b': return 'L', x+w/2, y+h/2 elif direction == 'c': return 'L', x, y+h elif direction == 'd': return 'L', x-w/2, y+h/2 elif direction == 'e': return 'L', x-w/2, y-h/2 elif direction == 'f': return 'L', x, y-h elif direction == 'A': return 'M', x+w/2, y-h/2 elif direction == 'B': return 'M', x+w/2, y+h/2 elif direction == 'C': return 'M', x, y+h elif direction == 'D': return 'M', x-w/2, y+h/2 elif direction == 'E': return 'M', x-w/2, y-h/2 elif direction == 'F': return 'M', x, y-h def _calc_multihex(self, x, y, w, contour): result = [] result.append("M{}, {}".format(x, y)) for letter in contour: LM, x, y = self._increment_multihex(x, y, w, letter) result.append("{}{}, {}".format(LM, x, y)) result.append('Z') return " ".join(result) def _increment_multisquare(self, x, y, w, direction): if direction == 'a': return 'L', x+w, y elif direction == 'b': return 'L', x, y+w elif direction == 'c': return 'L', x-w, y elif direction == 'd': return 'L', x, y-w elif direction == 'A': return 'M', x+w, y elif direction == 'B': return 'M', x, y-w elif direction == 'C': return 'M', x-w, y elif direction == 'D': return 'M', x, y+w def _calc_multisquare(self, x, y, w, contour): result = [] result.append("M{}, {}".format(x, y)) for letter in contour: LM, x, y = self._increment_multisquare(x, y, w, letter) result.append("{}{} {}".format(LM, x, y)) result.append('Z') return " ".join(result) # functions to set properties that will be retained across different # types of grid def set_colors(self, colors): """change colors list specified when Chorogrid is instantiated""" self.colors = colors assert len(ids) == len(colors), ("ids and colors must be " "the same length") def set_title(self, title, **kwargs): """Set a title for the grid kwargs: font_dict default = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '21px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'}""" self.title_font_dict = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '21px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'} self.title_font_dict = self._update_default_dict( self.title_font_dict, 'font_dict', kwargs) self.title = title def set_legend(self, colors, labels, title=None, width="square", height=100, gutter=2, stroke_width=0.5, label_x_offset=2, label_y_offset = 3, stroke_color="#303030", **kwargs): """Creates a legend that will be included in any draw method. * width can be the text "square" or a number of pixels. * a gradient can be made with a large number of colors, and '' for each label that is not specified, and non-square width * height does not include title * if len(labels) can be len(colors) or len(colors)+1; the labels will be aside the boxes, or at the interstices/fenceposts, respectively; alternately, if len(labels) == 2, two fenceposts will be assigned kwarg: font_dict default: {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'left', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'} """ font_dict = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'left', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1} self.legend_height = height colors = colors[::-1] labels = labels[::-1] num_boxes = len(colors) if len(labels) == 2 and len(colors) > 2: _ = [] _.append(labels[0]) for i in range(num_boxes-1): _.append('') _.append(labels[1]) labels = _ height_n = len(labels) if title is not None and len(title)>0: height_n += 1 box_height = ((height - gutter) / height_n ) - gutter if width == "square": width = box_height assert len(labels) - len(colors) <= 1, ("Length of labels must be" "two, or equal to colors or one more than colors") box_offset = (len(labels) - len(colors)) * (box_height + gutter) / 2 font_style = self._dict2style(font_dict) if title is not None and len(title) > 0: y_offset = (int(font_dict['font-size'].replace('px', '')) + gutter * 0.75) # ugly tweak else: y_offset = 0 # create a dict of legend parameters because these need to be defined BEFORE # the draw_ method creates the lxml SubElements. self.legend_params = { 'colors': colors, 'stroke_width': stroke_width, 'stroke_color': stroke_color, 'y_offset': y_offset, 'box_height': box_height, 'gutter': gutter, 'width': width, 'font_style': font_style, 'label_x_offset': label_x_offset, 'label_y_offset': label_y_offset, 'labels': labels, 'title': title} # another function-from-within, I'm placing it here to be right below the set_legend method def _apply_legend(self): d = self.legend_params # convenient one-letter-long dict name for i, color in enumerate(d['colors']): style_text = ("fill:{0};stroke-width:{1}px;stroke:{2};fill-rule:" "evenodd;stroke-linecap:butt;stroke-linejoin:miter;" "stroke-opacity:1".format(color, d['stroke_width'], d['stroke_color'])) ET.SubElement(self.legendsvg, "rect", id="legendbox{}".format(i), x="0", y=str(d['y_offset'] + i * (d['box_height'] + d['gutter'])), height=str(d['box_height']), width=str(d['width']), style=style_text) for i, label in enumerate(d['labels']): style_text = d['font_style'] + ";alignment-baseline:middle" _ = ET.SubElement(self.legendsvg, "text", id="legendlabel{}".format( i), x=str(d['label_x_offset'] + d['width'] + d['gutter']), y=str(d['label_y_offset'] + d['y_offset'] + i * ( d['box_height'] + d['gutter']) + (d['box_height']) / 2), style=style_text) _.text = label if d['title'] is not None and len(d['title']) > 0: _ = ET.SubElement(self.legendsvg, "text", id="legendtitle", x="0", y="0", style=d['font_style']) _.text = d['title'] def add_svg(self, text, offset=[0, 0]): """Adds svg text to the final output. Can be called more than once.""" offset[0] += self.additional_offset[0] offset[1] += self.additional_offset[1] translate_text = "translate({} {})".format(offset[0], offset[1]) text = ("".format(translate_text) + text + "") self.additional_svg.append(text) def done_and_overlay(self, other_chorogrid, show=True, save_filename=None): """Overlays a second chorogrid object on top of the root object.""" svgstring = ET.tostring(self.svg).decode('utf-8') svgstring = svgstring.replace('', ''.join(self.additional_svg) + '') svgstring = svgstring.replace(">", ">\n") svgstring = svgstring.replace("", "") svgstring_overlaid = ET.tostring(other_chorogrid.svg).decode('utf-8') svgstring_overlaid = svgstring_overlaid.replace('', ''.join(other_chorogrid.additional_svg) + '') svgstring_overlaid = svgstring_overlaid.replace(">", ">\n") svgstring_overlaid = re.sub('', '', svgstring_overlaid) svgstring += svgstring_overlaid if save_filename is not None: if save_filename[-4:] != '.svg': save_filename += '.svg' with open(save_filename, 'w+', encoding='utf-8') as f: f.write(svgstring) if show: display(SVG(svgstring)) # the .done() method def done(self, show=True, save_filename=None): """if show == True, displays the svg in IPython notebook. If save_filename is specified, saves svg file""" svgstring = ET.tostring(self.svg).decode('utf-8') svgstring = svgstring.replace('', ''.join(self.additional_svg) + '') svgstring = svgstring.replace(">", ">\n") if save_filename is not None: if save_filename[-4:] != '.svg': save_filename += '.svg' with open(save_filename, 'w+', encoding='utf-8') as f: f.write(svgstring) if show: display(SVG(svgstring)) # the methods to draw square grids, map (traditional choropleth), # hex grid, four-hex grid, multi-square grid def draw_squares(self, x_column='square_x', y_column='square_y', **kwargs): """ Creates an SVG file based on a square grid, with coordinates from the specified columns in csv_path (specified when Chorogrid class initialized). Note on kwarg dicts: defaults will be used for all keys unless overridden, i.e. you don't need to state all the key-value pairs. kwarg: font_dict default: {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'} kwarg: spacing_dict default: {'margin_left': 30, 'margin_top': 60, 'margin_right': 40, 'margin_bottom': 20, 'cell_width': 40, 'title_y_offset': 30, 'name_y_offset': 15, 'roundedness': 3, 'gutter': 1, 'stroke_color': '#ffffff', 'stroke_width': 0, 'missing_color': '#a0a0a0', 'legend_offset': [0, -10]} kwarg: font_colors default = "#000000" if specified, must be either listlike object of colors corresponding to ids, a dict of hex colors to font color, or a string of a single color. """ font_dict = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1} spacing_dict = {'margin_left': 30, 'margin_top': 60, 'margin_right': 80, 'margin_bottom': 20, 'cell_width': 40, 'title_y_offset': 30, 'name_y_offset': 15, 'roundedness': 3, 'gutter': 1, 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'stroke_width': 0, 'missing_font_color': '#000000', 'legend_offset': [0, -10]} font_dict = self._update_default_dict(font_dict, 'font_dict', kwargs) spacing_dict = self._update_default_dict(spacing_dict, 'spacing_dict', kwargs) font_colors = self._determine_font_colors(kwargs) font_style = self._dict2style(font_dict) total_width = (spacing_dict['margin_left'] + (self.df[x_column].max() + 1) * spacing_dict['cell_width'] + self.df[x_column].max() * spacing_dict['gutter'] + spacing_dict['margin_right']) total_height = (spacing_dict['margin_top'] + (self.df[y_column].max() + 1) * spacing_dict['cell_width'] + self.df[x_column].max() * spacing_dict['gutter'] + spacing_dict['margin_bottom']) self._make_svg_top(total_width, total_height) if spacing_dict['roundedness'] > 0: roundxy = spacing_dict['roundedness'] else: roundxy = 0 for i, id_ in enumerate(self.df[self.id_column]): if id_ in self.ids: this_color = self.colors[self.ids.index(id_)] this_font_color = font_colors[self.ids.index(id_)] else: this_color = spacing_dict['missing_color'] this_font_color = spacing_dict['missing_font_color'] across = self.df[x_column].iloc[i] down = self.df[y_column].iloc[i] x = (spacing_dict['margin_left'] + across * (spacing_dict['cell_width'] + spacing_dict['gutter'])) y = (spacing_dict['margin_top'] + down * (spacing_dict['cell_width'] + spacing_dict['gutter'])) style_text = ("stroke:{0};stroke-width:{1};stroke-miterlimit:4;" "stroke-opacity:1;stroke-dasharray:none;fill:" "{2}".format(spacing_dict['stroke_color'], spacing_dict['stroke_width'], this_color)) this_font_style = font_style + ';fill:{}'.format(this_font_color) ET.SubElement(self.svg, "rect", id="rect{}".format(id_), x=str(x), y=str(y), ry = str(roundxy), width=str(spacing_dict['cell_width']), height=str(spacing_dict['cell_width']), style=style_text) _ = ET.SubElement(self.svg, "text", id="text{}".format(id_), x=str(x + spacing_dict['cell_width']/2), y=str(y + spacing_dict['name_y_offset']), style=this_font_style) _.text =str(id_) if self.legend_params is not None and len(self.legend_params) > 0: self.legendsvg = ET.SubElement(self.svg, "g", transform= "translate({} {})".format(total_width - spacing_dict['margin_right'] + spacing_dict['legend_offset'][0], total_height - self.legend_height + spacing_dict['legend_offset'][1])) self._apply_legend() self._draw_title((total_width - spacing_dict['margin_left'] - spacing_dict['margin_right']) / 2 + spacing_dict['margin_left'], spacing_dict['title_y_offset']) def draw_map(self, path_column='map_path', **kwargs): """ Creates an SVG file based on SVG paths delineating a map, with paths from the specified columns in csv_path (specified when Chorogrid class initialized). Note on kwarg dict: defaults will be used for all keys unless overridden, i.e. you don't need to state all the key-value pairs. Note that the map does not have an option for font_dict, as it will not print labels. kwarg: spacing_dict # Note that total_width and total_height will depend on where # the paths came from. # For the USA map included with this python module, # they are 959 and 593. default: {'map_width': 959, 'map_height': 593, 'margin_left': 10, 'margin_top': 20, 'margin_right': 80, 'margin_bottom': 20, 'title_y_offset': 45, 'stroke_color': '#ffffff', 'stroke_width': 0.5, 'missing_color': '#a0a0a0', 'legend_offset': [0, 0]} """ spacing_dict = {'map_width': 959, 'map_height': 593, 'margin_left': 10, 'margin_top': 20, 'margin_right': 80, 'margin_bottom': 20, 'title_y_offset': 45, 'stroke_color': '#ffffff', 'stroke_width': 0.5, 'missing_color': '#a0a0a0', 'legend_offset': [0, 0]} spacing_dict = self._update_default_dict(spacing_dict, 'spacing_dict', kwargs) total_width = (spacing_dict['map_width'] + spacing_dict['margin_left'] + spacing_dict['margin_right']) total_height = (spacing_dict['map_height'] + spacing_dict['margin_top'] + spacing_dict['margin_bottom']) self._make_svg_top(total_width, total_height) translate_text = "translate({} {})".format(spacing_dict['margin_left'], spacing_dict['margin_top']) self.additional_offset = [spacing_dict['margin_left'], spacing_dict['margin_top']] mapsvg = ET.SubElement(self.svg, "g", transform=translate_text) for i, id_ in enumerate(self.df[self.id_column]): path = self.df[self.df[self.id_column] == id_][path_column].iloc[0] if id_ in self.ids: this_color = self.colors[self.ids.index(id_)] else: this_color = spacing_dict['missing_color'] style_text = ("stroke:{0};stroke-width:{1};stroke-miterlimit:4;" "stroke-opacity:1;stroke-dasharray:none;fill:" "{2}".format(spacing_dict['stroke_color'], spacing_dict['stroke_width'], this_color)) ET.SubElement(mapsvg, "path", id=str(id_), d=path, style=style_text) if self.legend_params is not None and len(self.legend_params) > 0: self.legendsvg = ET.SubElement(self.svg, "g", transform= "translate({} {})".format(total_width - spacing_dict['margin_right'] + spacing_dict['legend_offset'][0], total_height - self.legend_height + spacing_dict['legend_offset'][1])) self._apply_legend() self._draw_title((total_width - spacing_dict['margin_left'] - spacing_dict['margin_right']) / 2 + spacing_dict['margin_left'], spacing_dict['title_y_offset']) def draw_hex(self, x_column='hex_x', y_column='hex_y', true_rows=True, **kwargs): """ Creates an SVG file based on a hexagonal grid, with coordinates from the specified columns in csv_path (specified when Chorogrid class initialized). Note that hexagonal grids can have two possible layouts: 1. 'true rows' (the default), in which: * hexagons lie in straight rows joined by vertical sides to east and west * hexagon points lie to north and south * the home point (x=0, y=0 from upper left/northwest) has (1,0) to its immediate east * the home point (0,0) shares its southeast side with (0,1)'s northwest side * then (0,1) shares its southwest side with (0,2)'s northeast side * thus odd rows are offset to the east of even rows 2. 'true columns', in which: * hexagons lie in straight columns joined by horizontal sides to north and south * hexagon points lie to east and west * the home point (x=0, y=0 from upper left/northwest) has (0,1) to its immediate south * the home point (0,0) shares its southeast side with (1,0)'s northwest side. * then (1,0) shares its northeast side with (2,0)'s southwest side. * thus odd columns are offset to the south of even columns Note on kwarg dicts: defaults will be used for all keys unless overridden, i.e. you don't need to state all the key-value pairs. kwarg: font_dict default: {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'} kwarg: spacing_dict default: {'margin_left': 30, 'margin_top': 60, 'margin_right': 40, 'margin_bottom': 20, 'cell_width': 40, 'title_y_offset': 30, 'name_y_offset': 15, 'stroke_width': 0 'gutter': 1, 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'legend_offset': [0, -10]} kwarg: font_colors default: "#000000" if specified, must be either listlike object of colors corresponding to ids, a dict of hex colors to font color, or a string of a single color. """ font_dict = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1} spacing_dict = {'margin_left': 30, 'margin_top': 60, 'margin_right': 80, 'margin_bottom': 20, 'cell_width': 40, 'title_y_offset': 30, 'name_y_offset': 15, 'roundedness': 3, 'stroke_width': 0, 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'gutter': 1, 'missing_font_color': '#000000', 'legend_offset': [0, -10]} font_dict = self._update_default_dict(font_dict, 'font_dict', kwargs) spacing_dict = self._update_default_dict(spacing_dict, 'spacing_dict', kwargs) font_colors = self._determine_font_colors(kwargs) font_style = self._dict2style(font_dict) if true_rows: total_width = (spacing_dict['margin_left'] + (self.df[x_column].max()+1.5) * spacing_dict['cell_width'] + (self.df[x_column].max()-1) * spacing_dict['gutter'] + spacing_dict['margin_right']) total_height = (spacing_dict['margin_top'] + (self.df[y_column].max()*0.866 + 0.289) * spacing_dict['cell_width'] + (self.df[y_column].max()-1) * spacing_dict['gutter'] + spacing_dict['margin_bottom']) else: total_width = (spacing_dict['margin_left'] + (self.df[x_column].max()*0.75 + 0.25) * spacing_dict['cell_width'] + (self.df[x_column].max()-1) * spacing_dict['gutter'] + spacing_dict['margin_right']) total_height = (spacing_dict['margin_top'] + (self.df[y_column].max() + 1.5) * spacing_dict['cell_width'] + (self.df[y_column].max()-1) * spacing_dict['gutter'] + spacing_dict['margin_bottom']) self._make_svg_top(total_width, total_height) w = spacing_dict['cell_width'] for i, id_ in enumerate(self.df[self.id_column]): if id_ in self.ids: this_color = self.colors[self.ids.index(id_)] this_font_color = font_colors[self.ids.index(id_)] else: this_color = spacing_dict['missing_color'] this_font_color = spacing_dict['missing_font_color'] across = self.df[x_column].iloc[i] down = self.df[y_column].iloc[i] # offset odd rows to the right or down x_offset = 0 y_offset = 0 if true_rows: if down % 2 == 1: x_offset = w/2 x = (spacing_dict['margin_left'] + x_offset + across * (w + spacing_dict['gutter'])) y = (spacing_dict['margin_top'] + down * (1.5 * w / sqrt(3) + spacing_dict['gutter'])) else: x_offset = 0.25 * w # because northwest corner is to the east of westmost point if across % 2 == 1: y_offset = w*0.866/2 x = (spacing_dict['margin_left'] + x_offset + across * 0.75 * (w + spacing_dict['gutter'])) y = (spacing_dict['margin_top'] + y_offset + down * (sqrt(3) / 2 * w + spacing_dict['gutter'])) polystyle = ("stroke:{0};stroke-miterlimit:4;stroke-opacity:1;" "stroke-dasharray:none;fill:{1};stroke-width:" "{2}".format(spacing_dict['stroke_color'], this_color, spacing_dict['stroke_width'])) this_font_style = font_style + ';fill:{}'.format(this_font_color) ET.SubElement(self.svg, "polygon", id="hex{}".format(id_), points=self._calc_hexagon(x, y, w, true_rows), style=polystyle) _ = ET.SubElement(self.svg, "text", id="text{}".format(id_), x=str(x+w/2), y=str(y + spacing_dict['name_y_offset']), style=this_font_style) _.text =str(id_) if self.legend_params is not None and len(self.legend_params) > 0: self.legendsvg = ET.SubElement(self.svg, "g", transform= "translate({} {})".format(total_width - spacing_dict['margin_right'] + spacing_dict['legend_offset'][0], total_height - self.legend_height + spacing_dict['legend_offset'][1])) self._apply_legend() self._draw_title((total_width - spacing_dict['margin_left'] - spacing_dict['margin_right']) / 2 + spacing_dict['margin_left'], spacing_dict['title_y_offset']) def draw_multihex(self, x_column='fourhex_x', y_column='fourhex_y', contour_column = 'fourhex_contour', x_label_offset_column = 'fourhex_label_offset_x', y_label_offset_column = 'fourhex_label_offset_y', **kwargs): """ Creates an SVG file based on a hexagonal grid, with contours described by the following pattern: a: up and to the right b: down and to the right c: down d: down and to the left e: up and to the left f: up Capital letters signify a move without drawing. Note on kwarg dicts: defaults will be used for all keys unless overridden, i.e. you don't need to state all the key-value pairs. kwarg: font_dict default: {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'} kwarg: spacing_dict default: {'margin_left': 30, 'margin_top': 60, 'margin_right': 40, 'margin_bottom': 20, 'cell_width': 30, 'title_y_offset': 30, 'name_y_offset': 15, 'stroke_width': 1 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'legend_offset': [0, -10]} (note that there is no gutter) kwarg: font_colors default = "#000000" if specified, must be either listlike object of colors corresponding to ids, a dict of hex colors to font color, or a string of a single color. """ font_dict = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1} spacing_dict = {'margin_left': 30, 'margin_top': 60, 'margin_right': 80, 'margin_bottom': 20, 'cell_width': 30, 'title_y_offset': 30, 'name_y_offset': 15, 'roundedness': 3, 'stroke_width': 1, 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'missing_font_color': '#000000', 'legend_offset': [0, -10]} font_dict = self._update_default_dict(font_dict, 'font_dict', kwargs) spacing_dict = self._update_default_dict(spacing_dict, 'spacing_dict', kwargs) font_colors = self._determine_font_colors(kwargs) font_style = self._dict2style(font_dict) total_width = (spacing_dict['margin_left'] + (self.df[x_column].max()+1.5) * spacing_dict['cell_width'] + spacing_dict['margin_right']) total_height = (spacing_dict['margin_top'] + (self.df[y_column].max() + 1.711) * spacing_dict['cell_width'] + spacing_dict['margin_bottom']) self._make_svg_top(total_width, total_height) w = spacing_dict['cell_width'] h = w/sqrt(3) for i, id_ in enumerate(self.df[self.id_column]): if id_ in self.ids: this_color = self.colors[self.ids.index(id_)] this_font_color = font_colors[self.ids.index(id_)] else: this_color = spacing_dict['missing_color'] this_font_color = spacing_dict['missing_font_color'] across = self.df[x_column].iloc[i] down = self.df[y_column].iloc[i] contour = self.df[contour_column].iloc[i] label_off_x = self.df[x_label_offset_column].iloc[i] label_off_y = self.df[y_label_offset_column].iloc[i] # offset odd rows to the right if down % 2 == 1: x_offset = w/2 else: x_offset = 0 x = (spacing_dict['margin_left'] + x_offset + across * w) y = (spacing_dict['margin_top'] + down * (1.5 * w / sqrt(3))) polystyle = ("stroke:{0};stroke-miterlimit:4;stroke-opacity:1;" "stroke-dasharray:none;fill:{1};stroke-width:" "{2}".format(spacing_dict['stroke_color'], this_color, spacing_dict['stroke_width'])) this_font_style = font_style + ';fill:{}'.format(this_font_color) ET.SubElement(self.svg, "path", id="hex{}".format(id_), d=self._calc_multihex(x, y, w, contour), style=polystyle) _ = ET.SubElement(self.svg, "text", id="text{}".format(id_), x=str(x + w/2 + w * label_off_x), y=str(y + spacing_dict['name_y_offset'] + h * label_off_y), style=this_font_style) _.text =str(id_) if self.legend_params is not None and len(self.legend_params) > 0: self.legendsvg = ET.SubElement(self.svg, "g", transform= "translate({} {})".format(total_width - spacing_dict['margin_right'] + spacing_dict['legend_offset'][0], total_height - self.legend_height + spacing_dict['legend_offset'][1])) self._apply_legend() self._draw_title((total_width - spacing_dict['margin_left'] - spacing_dict['margin_right']) / 2 + spacing_dict['margin_left'], spacing_dict['title_y_offset']) def draw_multisquare(self, x_column='multisquare_x', y_column='multisquare_y', contour_column = 'multisquare_contour', x_label_offset_column = 'multisquare_label_offset_x', y_label_offset_column = 'multisquare_label_offset_y', **kwargs): """ Creates an SVG file based on a square grid, with contours described by the following pattern: a: right b: down c: left d: up A: right (without drawing) B: down (without drawing) C: left (without drawing) D: up (without drawing) Note on kwarg dicts: defaults will be used for all keys unless overridden, i.e. you don't need to state all the key-value pairs. kwarg: font_dict default: {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1, 'fill': '#000000'} kwarg: spacing_dict default: {'margin_left': 30, 'margin_top': 60, 'margin_right': 40, 'margin_bottom': 20, 'cell_width': 30, 'title_y_offset': 30, 'name_y_offset': 15, 'stroke_width': 1 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'legend_offset': [0, -10]} (note that there is no gutter) kwarg: font_colors default = "#000000" if specified, must be either listlike object of colors corresponding to ids, a dict of hex colors to font color, or a string of a single color. """ font_dict = {'font-style': 'normal', 'font-weight': 'normal', 'font-size': '12px', 'line-height': '125%', 'text-anchor': 'middle', 'font-family': 'sans-serif', 'letter-spacing': '0px', 'word-spacing': '0px', 'fill-opacity': 1, 'stroke': 'none', 'stroke-width': '1px', 'stroke-linecap': 'butt', 'stroke-linejoin': 'miter', 'stroke-opacity': 1} spacing_dict = {'margin_left': 30, 'margin_top': 60, 'margin_right': 80, 'margin_bottom': 20, 'cell_width': 30, 'title_y_offset': 30, 'name_y_offset': 15, 'roundedness': 3, 'stroke_width': 1, 'stroke_color': '#ffffff', 'missing_color': '#a0a0a0', 'missing_font_color': '#000000', 'legend_offset': [0, -10]} font_dict = self._update_default_dict(font_dict, 'font_dict', kwargs) spacing_dict = self._update_default_dict(spacing_dict, 'spacing_dict', kwargs) font_colors = self._determine_font_colors(kwargs) font_style = self._dict2style(font_dict) total_width = (spacing_dict['margin_left'] + (self.df[x_column].max()+1) * spacing_dict['cell_width'] + spacing_dict['margin_right']) total_height = (spacing_dict['margin_top'] + (self.df[y_column].max()+1) * spacing_dict['cell_width'] + spacing_dict['margin_bottom']) self._make_svg_top(total_width, total_height) w = spacing_dict['cell_width'] for i, id_ in enumerate(self.df[self.id_column]): if id_ in self.ids: this_color = self.colors[self.ids.index(id_)] this_font_color = font_colors[self.ids.index(id_)] else: this_color = spacing_dict['missing_color'] this_font_color = spacing_dict['missing_font_color'] across = self.df[x_column].iloc[i] down = self.df[y_column].iloc[i] contour = self.df[contour_column].iloc[i] label_off_x = self.df[x_label_offset_column].iloc[i] label_off_y = self.df[y_label_offset_column].iloc[i] x = (spacing_dict['margin_left'] + across * w) y = (spacing_dict['margin_top'] + down * w) polystyle = ("stroke:{0};stroke-miterlimit:4;stroke-opacity:1;" "stroke-dasharray:none;fill:{1};stroke-width:" "{2}".format(spacing_dict['stroke_color'], this_color, spacing_dict['stroke_width'])) this_font_style = font_style + ';fill:{}'.format(this_font_color) ET.SubElement(self.svg, "path", id="square{}".format(id_), d=self._calc_multisquare(x, y, w, contour), style=polystyle) _ = ET.SubElement(self.svg, "text", id="text{}".format(id_), x=str(x + w/2 + w * label_off_x), y=str(y + spacing_dict['name_y_offset'] + w * label_off_y), style=this_font_style) _.text = str(id_) if self.legend_params is not None and len(self.legend_params) > 0: self.legendsvg = ET.SubElement(self.svg, "g", transform= "translate({} {})".format(total_width - spacing_dict['margin_right'] + spacing_dict['legend_offset'][0], total_height - self.legend_height + spacing_dict['legend_offset'][1])) self._apply_legend() self._draw_title((total_width - spacing_dict['margin_left'] - spacing_dict['margin_right']) / 2 + spacing_dict['margin_left'], spacing_dict['title_y_offset']) PKccI9Ychorogrid/Colorbin.py#!/usr/bin/python # Filename: Colorbin.py class Colorbin(object): """ Instantiate with a list of quantities and colors, then retrieve the following attributes: .colors_out : output list of colors, same length as quantities .fenceposts : divisions between bins .labels: one per color .fencepostlabels: one per fencepost .complements: list of colors, see set_complements, below attributes that can be changed: .proportional : if True, all bins have fenceposts same distance apart (with default bin_min, bin_mid and bin_max) : if False, all bins have (insofar as possible) the same number of members : note that this can break if not every quantity is unique .bin_min, .bin_max, .bin_mid .decimals : if None, no rounding; otherwise round to this number methods: .set_decimals(n): just what it sounds like .recalc(fenceposts=True): recalculate colors (and fenceposts, if True) based on attributes .calc_complements(cutoff [between 0 and 1], color_below, color_above): if the greyscale color is below the cutoff (i.e. darker), complement is assigned color_below, otherwise color_above. """ def __init__(self, quantities, colors_in, proportional=True, decimals=None): self.quantities = quantities self.colors_in = colors_in self.proportional = proportional self.bin_min = min(self.quantities) self.bin_max = max(self.quantities) self.bin_mid = (self.bin_min + self.bin_max) / 2 self.decimals = None self.recalc() self.complements = None def _calc_fenceposts(self): if self.proportional: self.fenceposts = [] step_1 = (self.bin_mid - self.bin_min) / len(self.colors_in) * 2 step_2 = (self.bin_max - self.bin_mid) / len(self.colors_in) * 2 for i in range(len(self.colors_in)+1): if i < len(self.colors_in)/2: self.fenceposts.append(self.bin_min + i * step_1) elif i == len(self.colors_in)/2: self.fenceposts.append(self.bin_mid) else: self.fenceposts.append(self.bin_max - (len(self.colors_in) - i) * step_2) else: quant_sorted = list(self.quantities[:]) quant_sorted.sort() step = len(quant_sorted) / len(self.colors_in) self.fenceposts = [] for i in range(len(self.colors_in)): self.fenceposts.append(quant_sorted[int(i*step)]) self.fenceposts.append(quant_sorted[-1]) if self.decimals is not None: self.fenceposts = [round(x, self.decimals) for x in self.fenceposts] def _calc_labels(self): self.labels = [] self.fencepostlabels = [] for n1, n2 in zip(self.fenceposts[:-1], self.fenceposts[1:]): self.labels.append('{}-{}'.format(n1, n2)) self.fencepostlabels.append(str(n1)) self.fencepostlabels.append(str(n2)) def _calc_colors(self): self.colors_out = [] self.bin_counts = [0] * len(self.colors_in) for qty in self.quantities: bin_ = 0 for i in range(1, len(self.colors_in)): if qty >= self.fenceposts[i]: bin_ = i self.colors_out.append(self.colors_in[bin_]) self.bin_counts[bin_] += 1 def set_decimals(self, decimals): self.decimals = decimals def recalc(self, fenceposts = True): if fenceposts: self._calc_fenceposts() self._calc_labels() self._calc_colors() def count_bins(self): print('count label') print('===== =====') for label, cnt in zip(self.labels, self.bin_counts): print('{:5d} {}'.format(cnt, label)) def calc_complements(self, cutoff, color_below, color_above): self.complements = [] for color in self.colors_out: r, g, b = tuple(int(color[1:][i:i + 6 // 3], 16) for i in range(0, 6, 2)) grey = (0.299 * r + 0.587 * g + 0.114* b) / 256 if grey < cutoff: self.complements.append(color_below) else: self.complements.append(color_above)PKecI=chorogrid/__init__.py#!/usr/bin/python # Filename: __init__.py # Author: David Taylor (@Prooffreader) """A python script to produce choropleths and colored square- and hex-grid maps""" __version__ = '0.0.1' from chorogrid.Colorbin import Colorbin from chorogrid.Chorogrid import Chorogrid PKccI$KK.chorogrid/databases/canada_federal_ridings.csvdistrict_code,province,federal_electoral_district,population,electors,area_km2,square_x,square_y,truecolhex_x,truecolhex_y 48001,AB,Banff—Airdrie,105442,87666,12282,8,3,11,6 48007,AB,Calgary Heritage,108320,79349,70,9,6,11,8 48012,AB,Calgary Signal Hill,109647,83227,66,8,5,11,7 48022,AB,Foothills,105515,80188,20877,10,7,11,9 48034,AB,Yellowhead,98855,72816,76127,7,3,11,5 48004,AB,Calgary Centre,108931,83497,49,9,5,12,8 48008,AB,Calgary Midnapore,111227,85280,87,10,6,12,9 48010,AB,Calgary Rocky Ridge,108901,84093,90,8,4,12,7 48020,AB,Edmonton West,104422,78293,105,7,1,12,5 48021,AB,Edmonton—Wetaskiwin,110644,95162,4947,7,2,12,6 48005,AB,Calgary Confederation,111785,85997,54,10,5,13,7 48011,AB,Calgary Shepard,110296,93794,186,11,6,13,8 48018,AB,Edmonton Riverbend,106302,79932,60,8,2,13,5 48024,AB,Grande Prairie—Mackenzie,106738,79309,109194,7,0,13,2 48026,AB,Lethbridge,105999,80020,3028,11,7,13,9 48029,AB,Red Deer—Mountain View,110793,84758,7659,9,3,13,6 48031,AB,St. Albert—Edmonton,105162,82120,104,10,0,13,3 48033,AB,Sturgeon River—Parkland,105733,82718,4000,9,0,13,4 48003,AB,Bow river,103871,73598,24427,11,4,14,9 48006,AB,Calgary Forest Lawn,108251,73857,53,11,5,14,8 48009,AB,Calgary Nose Hill,109286,80629,57,9,4,14,7 48014,AB,Edmonton Centre,106121,76739,46,8,1,14,5 48015,AB,Edmonton Griesbach,107809,78785,46,9,1,14,4 48023,AB,Fort McMurray—Cold Lake,101538,75312,147412,11,0,14,2 48028,AB,Peace River—Westlock,108095,73627,105924,8,0,14,3 48030,AB,Red Deer—Lacombe,113693,83963,6316,10,3,14,6 48002,AB,Battle River—Crowfoot,107140,79873,53072,11,3,15,7 48013,AB,Calgary Skyview,110189,71741,123,10,4,15,8 48016,AB,Edmonton Manning,106262,78003,158,10,1,15,3 48017,AB,Edmonton Mill Woods,106103,72151,50,10,2,15,6 48019,AB,Edmonton Strathcona,103183,74710,80,9,2,15,5 48025,AB,Lakeland,104616,77809,31877,11,1,15,2 48027,AB,Medicine Hat—Cardston—Warner,102847,75944,29982,11,8,15,9 48032,AB,Sherwood Park—Fort Saskatchewan,111541,87943,1271,11,2,15,4 59009,BC,Courtenay—Alberni,110391,88673,8571,0,7,1,7 59010,BC,Cowichan—Malahat—Langford,99160,78148,4749,0,9,1,9 59018,BC,Nanaimo—Ladysmith,114998,91240,1753,0,8,1,8 59026,BC,Esquimalt—Saanich—Sooke,113004,87281,404,1,9,1,10 59027,BC,Saanich—Gulf Islands,104285,83970,518,1,8,2,9 59041,BC,Victoria,110942,90217,43,2,9,2,10 59025,BC,Richmond Centre,93863,67734,49,3,7,3,6 59031,BC,Steveston—Richmond East,96610,70676,10,4,7,3,7 59037,BC,North Island—Powell River,103458,57911,79517,0,6,3,4 59039,BC,Vancouver Quadra,102416,72409,42,2,6,3,5 59011,BC,Delta,100588,72865,207,4,8,4,8 59028,BC,Skeena—Bulkley Valley,90586,62234,327275,6,3,4,4 59034,BC,Vancouver Centre,102480,84273,14,3,4,4,5 59036,BC,Vancouver Granville,99886,76973,23,3,5,4,6 59040,BC,Vancouver South,100966,68733,21,3,6,4,7 59019,BC,New Westminster—Burnaby,108652,77639,29,4,6,5,7 59030,BC,South Surrey—White Rock,94678,74649,154,5,8,5,9 59033,BC,Surrey—Newton,105183,62855,30,5,7,5,8 59038,BC,Vancouver Kingsway,102003,69812,15,4,5,5,6 59042,BC,West Vancouver—Sunshine Coast—Sea to Sky Country,112875,86370,13237,3,3,5,5 59003,BC,Burnaby South,105037,73925,47,5,5,6,7 59007,BC,Cloverdale—Langley City,100318,75076,60,6,7,6,8 59035,BC,Vancouver East,110097,85900,21,4,4,6,6 59002,BC,Burnaby—Seymour,100632,72393,115,5,3,7,5 59008,BC,Coquitlam-Port Coquitlam,110277,82358,650,6,4,7,6 59012,BC,Fleetwood—Port Kells,109742,72487,74,6,6,7,7 59016,BC,Langley—Aldergrove,103084,80360,382,6,8,7,8 59001,BC,Abbotsford,96819,67509,176,7,8,8,9 59021,BC,North Vancouver,109639,82085,342,4,3,8,5 59022,BC,Pitt Meadows—Maple Ridge,94111,70289,2141,6,5,8,6 59023,BC,Port Moody—Coquitlam,108326,77368,101,5,4,8,7 59032,BC,Surrey Centre,111486,68719,44,5,6,8,8 59004,BC,Cariboo—Prince George,108252,77042,83193,7,5,9,4 59005,BC,Central Okanagan—Similkameen—Nicola,104398,84348,16208,8,7,9,6 59006,BC,Chilliwack—Hope,92734,70240,3355,8,8,9,8 59014,BC,Kelowna—Lake Country,110051,86934,1670,9,7,9,7 59017,BC,Mission—Matsqui—Fraser Canyon,90871,61105,21769,7,7,9,5 59013,BC,Kamloops—Thompson—Cariboo,118618,92130,38320,7,6,10,6 59015,BC,Kootenay—Columbia,107589,83190,64336,10,8,10,8 59020,BC,North Okanagan—Shuswap,121474,94179,16734,8,6,10,7 59024,BC,Prince George—Peace River—Northern Rockies,107382,75063,243276,7,4,10,5 59029,BC,South Okanagan—West Kootenay,112096,88519,18139,9,8,10,9 46001,MB,Brandon—Souris,83814,59459,18290,14,8,20,9 46002,MB,Charleswood—St. James—Assiniboia—Headingley,81864,62583,207,14,5,20,10 46007,MB,Portage—Lisgar,91019,61350,12665,14,7,20,11 46004,MB,Dauphin—Swan River—Neepawa,87374,61579,56820,14,2,21,8 46011,MB,Winnipeg Centre,82026,54719,29,15,5,21,9 46013,MB,Winnipeg South,85540,62156,105,15,7,21,11 46014,MB,Winnipeg South Centre,90711,67988,46,14,6,21,10 46003,MB,Churchill—Keewatinook Aski,85148,47940,494701,15,2,22,8 46005,MB,Elmwood—Transcona,85906,64395,50,15,4,22,10 46009,MB,Saint Boniface—Saint Vital,84353,64202,65,15,6,22,11 46012,MB,Winnipeg North,88616,56380,38,14,4,22,9 46006,MB,Kildonan—St. Paul,81794,61252,172,15,3,23,8 46008,MB,Provencher,88640,63356,18773,15,8,23,10 46010,MB,Selkirk—Interlake—Eastman,91463,69587,25824,14,3,23,9 13003,NB,Fredericton,81759,59284,1678,44,8,44,7 13005,NB,Madawaska—Restigouche,62540,50442,11962,44,6,44,5 13010,NB,Tobique—Mactaquac,70632,53129,15130,44,7,44,6 13001,NB,Acadie—Bathurst,79340,66374,5183,45,6,45,4 13006,NB,Miramichi—Grand Lake,59343,47813,17420,45,7,45,5 13007,NB,Moncton—Riverview—Dieppe,89484,70357,168,46,8,45,6 13008,NB,New Brunswick Southwest,66197,51004,10770,44,9,45,7 13002,NB,Beauséjour,80416,65927,4214,46,7,46,6 13004,NB,Fundy Royal,79331,62270,7686,45,8,46,7 13009,NB,Saint John—Rothesay,82129,61223,457,45,9,46,8 10004,NL,Labrador,26728,20084,294330,44,2,47,0 10005,NL,Long Range Mountains,87592,70272,41606,46,2,48,1 10003,NL,Coast of Bays—Central—Notre Dame,78092,63621,43596,46,3,49,1 10002,NL,Bonavista—Burin—Trinity,76704,61088,18961,47,3,50,2 10001,NL,Avalon,81540,66653,7303,48,3,51,2 10006,NL,St. John's East,81936,64137,363,48,2,51,1 10007,NL,St. John's South—Mount Pearl,81944,66020,503,49,3,52,2 12011,NS,West Nova,83654,65963,9965,47,10,48,9 12006,NS,Halifax West,87275,68266,260,48,9,49,8 12009,NS,South Shore—St. Margarets,92561,75086,9855,48,10,49,9 12003,NS,Cumberland—Colchester,82321,64065,8269,47,7,50,7 12005,NS,Halifax,92643,68609,244,49,10,50,9 12007,NS,Kings—Hants,83306,65347,4440,48,8,50,8 12002,NS,Central Nova,74597,58513,10347,48,7,51,6 12004,NS,Dartmouth—Cole Harbour,91212,71949,102,49,9,51,8 12008,NS,Sackville—Preston—Chezzetcook,85583,66578,777,49,8,51,7 12001,NS,Cape Breton—Canso,75247,60238,10039,49,7,52,6 12010,NS,Sydney—Victoria,73328,58932,5085,50,7,52,5 61001,NT,Northwest Territories,41462,28795,1346106,13,0,14,0 62001,NU,Nunavut,31906,18124,2093190,15,0,22,0 35042,ON,Kenora,55977,42138,321741,16,8,24,9 35046,ON,Kitchener—Conestoga,93827,67890,949,16,16,24,16 35091,ON,Sarnia—Lambton,106293,80029,1568,12,20,24,17 35105,ON,Thunder Bay—Rainy River,82984,62207,39545,17,8,24,10 35117,ON,Windsor West,118973,84700,83,11,21,24,18 35052,ON,London North Centre,118079,87668,63,13,18,25,17 35083,ON,Perth—Wellington,104912,75217,3782,16,15,25,14 35092,ON,Sault Ste. Marie,82052,63417,5921,19,9,25,11 35106,ON,Thunder Bay—Superior North,82827,63192,87965,18,8,25,10 35107,ON,Timmins—James Bay,83104,60202,251599,20,8,25,11 35112,ON,Waterloo,103192,77312,78,16,17,25,16 35113,ON,Wellington—Halton Hills,115880,88674,1584,16,12,25,15 35116,ON,Windsor—Tecumseh,115528,86351,174,12,21,25,18 35002,ON,Algoma—Manitoulin—Kapuskasing,79801,62230,100103,19,8,26,11 35008,ON,Brampton Centre,103122,64148,46,18,14,26,14 35014,ON,Bruce—Grey—Owen Sound,106475,81389,6447,17,11,26,12 35026,ON,Essex,120477,90591,1177,12,22,26,19 35032,ON,Guelph,121688,94632,92,16,13,26,15 35040,ON,Huron—Bruce,104842,79533,5896,16,14,26,13 35045,ON,Kitchener Centre,102433,76163,44,15,17,26,16 35048,ON,Lambton—Kent—Middlesex,105919,80027,5278,14,18,26,17 35053,ON,London West,119090,91601,82,13,19,26,18 35103,ON,Sudbury,92048,71844,977,20,9,26,10 35010,ON,Brampton North,111951,72312,36,18,13,27,14 35011,ON,Brampton South,107364,70449,49,17,14,27,15 35012,ON,Brampton West,101762,68796,61,17,13,27,13 35017,ON,Chatham-Kent—Leamington,111866,78803,2183,13,22,27,19 35022,ON,Dufferin—Caledon,116341,91269,2293,17,12,27,12 35051,ON,London—Fanshawe,119334,85124,124,13,20,27,17 35057,ON,Milton,88065,70430,472,16,18,27,16 35080,ON,Oxford,108656,83003,2384,14,19,27,18 35099,ON,Simcoe—Grey,116307,95511,1950,18,11,27,11 35100,ON,Simcoe North,108672,85156,1894,22,11,27,10 35005,ON,Barrie—Springwater—Oro-Medonte,97876,74783,1027,21,11,28,11 35009,ON,Brampton East,99712,65818,89,18,15,28,13 35016,ON,Cambridge,111693,82103,373,15,19,28,18 35025,ON,Elgin—Middlesex—London,110109,82062,2640,13,21,28,19 35043,ON,King—Vaughan,109235,83550,449,19,12,28,12 35047,ON,Kitchener South—Hespeler,97763,71873,111,15,18,28,17 35058,ON,Mississauga Centre,118756,81920,24,17,17,28,16 35062,ON,Mississauga—Malton,118046,73591,102,18,16,28,15 35069,ON,Nickel Belt,90962,72134,30490,21,9,28,10 35111,ON,Vaughan—Woodbridge,105450,73190,84,18,12,28,14 35004,ON,Barrie—Innisfil,101584,76389,3862011,20,11,29,11 35013,ON,Brantford—Brant,132443,95616,886,14,20,29,19 35015,ON,Burlington,120569,94679,84,16,19,29,18 35029,ON,Etobicoke North,117601,67544,57,19,13,29,14 35063,ON,Mississauga—Streetsville,118757,82618,49,17,15,29,16 35065,ON,Newmarket—Aurora,109457,82454,62,23,12,29,12 35073,ON,Oakville North—Burlington,114378,84100,92,17,18,29,17 35082,ON,Parry Sound—Muskoka,91263,74977,14402,21,10,29,10 35104,ON,Thornhill,110427,80288,66,20,12,29,13 35121,ON,Humber River—Black Creek,108198,60343,32,20,13,29,15 35003,ON,Aurora—Oak Ridges—Richmond Hill,106064,77411,100,22,12,30,13 35030,ON,Flamborough—Glanbrook,97081,77774,941,15,20,30,20 35035,ON,Hamilton Centre,101932,68247,32,16,20,30,19 35054,ON,Markham—Stouffville,109780,86464,299,26,12,30,12 35060,ON,Mississauga—Erin Mills,117199,80912,36,17,16,30,17 35072,ON,Oakville,119649,87670,83,17,19,30,18 35087,ON,Richmond Hill,108658,79513,12,21,12,30,14 35118,ON,York Centre,100277,63682,37,21,13,30,15 35119,ON,York—Simcoe,94616,74911,844,19,11,30,11 35120,ON,York South—Weston,116606,69754,26,19,15,30,16 35020,ON,Don Valley North,103073,71081,26,23,13,31,16 35027,ON,Etobicoke Centre,114910,86412,37,19,16,31,17 35033,ON,Haldimand—Norfolk,108051,81773,3061,14,21,31,20 35034,ON,Haliburton—Kawartha Lakes—Brock,110182,90594,8941,23,11,31,12 35056,ON,Markham—Unionville,104693,81583,89,25,12,31,14 35059,ON,Mississauga East—Cooksville,121792,80906,34,18,17,31,18 35061,ON,Mississauga—Lakeshore,118893,85379,92,18,18,31,19 35070,ON,Nipissing—Timiskaming,90996,70342,15313,22,10,31,11 35084,ON,Peterborough—Kawartha,115269,90352,3473,24,11,31,13 35115,ON,Willowdale,109680,74205,21,22,13,31,15 35018,ON,Davenport,102360,70794,13,20,15,32,16 35023,ON,Durham,115395,92317,953,27,12,32,13 35028,ON,Etobicoke—Lakeshore,115437,90167,53,19,17,32,17 35037,ON,Hamilton Mountain,103615,76549,35,16,21,32,19 35038,ON,Hamilton West—Ancaster—Dundas,109535,82929,110,15,21,32,18 35049,ON,Lanark—Frontenac—Kingston,98409,77808,7322,26,11,32,12 35055,ON,Markham—Thornhill,102221,70211,44,24,12,32,14 35086,ON,Renfrew—Nipissing—Pembroke,102537,77520,12583,25,10,32,11 35090,ON,Toronto—St. Paul's,103983,75852,14,21,15,32,15 35021,ON,Don Valley West,99820,69333,32,20,14,33,15 35024,ON,Eglinton—Lawrence,113150,76739,24,19,14,33,14 35036,ON,Hamilton East—Stoney Creek,107786,79750,72,17,21,33,18 35039,ON,Hastings—Lennox and Addington,92528,71818,9217,25,11,33,12 35041,ON,Kanata—Carleton,100846,78431,795,26,10,33,11 35078,ON,Ottawa—Vanier,110999,82040,41,29,10,33,10 35081,ON,Parkdale—High Park,105103,76952,16,20,17,33,17 35085,ON,Pickering—Uxbridge,109344,84997,687,25,14,33,13 35093,ON,Scarborough—Agincourt,104499,68748,22,24,13,33,16 35001,ON,Ajax,109600,83542,71,26,14,34,14 35031,ON,Glengarry—Prescott—Russell,106240,84340,3018,31,10,34,10 35064,ON,Nepean,104775,81062,179,28,11,34,12 35068,ON,Niagara West,86533,68333,1057,18,21,34,19 35071,ON,Northumberland—Peterborough South,107840,88276,3001,28,12,34,13 35079,ON,Ottawa West—Nepean,111881,81646,71,27,10,34,11 35096,ON,Scarborough North,101080,64427,32,25,13,34,16 35101,ON,Spadina—Fort York,82480,73179,21,21,17,34,18 35110,ON,University—Rosedale,98605,71945,14,20,16,34,17 35114,ON,Whitby,122022,90964,155,26,13,34,15 35019,ON,Don Valley East,93007,62362,24,21,14,35,16 35044,ON,Kingston and the Islands,116996,87460,434,30,12,35,13 35067,ON,Niagara Falls,128357,101505,579,19,22,35,18 35075,ON,Ottawa Centre,113619,89360,35,28,10,35,10 35076,ON,Orléans,119247,94830,211,30,10,35,11 35077,ON,Ottawa South,121894,85946,16,29,11,35,12 35094,ON,Scarborough Centre,108826,70145,30,22,14,35,15 35097,ON,Scarborough—Rouge Park,102646,71291,57,24,14,35,14 35108,ON,Toronto Centre,93971,66351,6,21,16,35,17 35109,ON,Toronto—Danforth,104017,76567,26,22,16,35,19 35006,ON,Bay of Quinte,109488,83427,2000,29,12,36,16 35007,ON,Beaches—East York,107084,75169,17,22,15,36,17 35066,ON,Niagara Centre,105860,81364,334,18,22,36,19 35074,ON,Oshawa,125771,94928,65,27,13,36,14 35089,ON,St. Catharines,110596,83821,61,19,21,36,18 35095,ON,Scarborough—Guildwood,101914,63296,27,23,14,36,15 35102,ON,Stormont—Dundas—South Glengarry,100913,78167,2765,31,11,36,13 35050,ON,Leeds—Grenville—Thousand Islands and Rideau Lakes,99306,78225,3751,30,11,37,14 35088,ON,Carleton,89522,71947,1229,27,11,37,13 35098,ON,Scarborough Southwest,106733,71577,29,23,15,37,16 11003,PE,Egmont,34598,26908,1527,47,5,47,3 11004,PE,Malpeque,35039,27677,1663,48,5,48,4 11002,PE,Charlottetown,34562,26400,46,49,5,49,4 11001,PE,Cardigan,36005,27958,2658,50,5,50,4 24002,QC,Abitibi—Témiscamingue,102794,82695,37429,26,9,33,5 24027,QC,Gatineau,106424,83651,125,29,9,33,9 24030,QC,Hull—Aylmer,103447,78679,65,28,9,33,8 24057,QC,Pontiac,106499,86585,30586,27,9,33,6 24005,QC,Argenteuil—La Petite-Nation,94208,78234,5412,30,9,34,9 24013,QC,Thérèse-De Blainville,98499,78804,77,33,6,34,8 24031,QC,Joliette,100683,85545,9102,32,6,34,6 24035,QC,Lac-Saint-Jean,105783,85092,60405,34,4,34,5 24038,QC,Laurentides—Labelle,111357,95907,19694,31,7,34,7 24029,QC,Honoré-Mercier,102587,78428,39,37,5,35,8 24048,QC,Mirabel,103536,86304,868,31,8,35,9 24050,QC,Montcalm,99518,82538,906,36,4,35,6 24063,QC,Rivière-du-Nord,102085,88586,381,34,5,35,7 24033,QC,La Pointe-de-l'Île,103512,84335,43,37,6,36,8 24040,QC,Laval—Les Îles,103053,81562,47,33,7,36,11 24056,QC,Pierrefonds—Dollard,108740,84978,53,32,8,36,12 24062,QC,Rivière-des-Mille-Îles,102816,80957,117,32,7,36,10 24065,QC,Marc-Aurèle-Fortin,96082,75579,54,35,5,36,9 24075,QC,Terrebonne,106322,83775,159,35,4,36,7 24003,QC,Ahuntsic-Cartierville,110473,82863,22,34,7,37,11 24004,QC,Alfred-Pellan,98045,77898,116,36,5,37,8 24012,QC,Berthier—Maskinongé,98590,82109,4420,33,5,37,7 24055,QC,Papineau,108977,78515,10,35,7,37,9 24068,QC,Saint-Laurent,93842,68685,44,33,8,37,12 24076,QC,Trois-Rivières,108774,90709,133,38,4,37,6 24078,QC,Vimy,104373,85511,35,34,6,37,10 24009,QC,Bécancour—Nicolet—Saurel,93779,77971,2870,39,5,38,8 24015,QC,Bourassa,100286,70444,14,35,6,38,9 24036,QC,Lac-Saint-Louis,105622,85663,81,32,9,38,14 24052,QC,Mount Royal,101258,74055,23,34,8,38,12 24064,QC,Rosemont—La Petite-Patrie,106293,83936,11,36,7,38,11 24069,QC,Saint-Léonard—Saint-Michel,110649,76351,21,36,6,38,10 24070,QC,Saint-Maurice—Champlain,110273,91588,38904,39,4,38,7 24074,QC,Vaudreuil—Soulanges,111905,89766,408,31,9,38,13 24001,QC,Abitibi—Baie-James—Nunavik—Eeyou,85475,62881,854754,30,8,39,2 24021,QC,Châteauguay—Lacolle,92169,75157,940,33,10,39,13 24028,QC,Hochelaga,103436,82245,20,37,7,39,9 24032,QC,Jonquière,87596,72605,42453,42,2,39,3 24037,QC,LaSalle—Émard—Verdun,105317,83876,19,34,9,39,12 24053,QC,Notre-Dame-de-Grâce—Westmount,104410,79071,17,35,8,39,11 24054,QC,Outremont,100916,71300,12,36,8,39,10 24058,QC,Portneuf—Jacques-Cartier,104394,86884,7617,40,4,39,5 24060,QC,Repentigny,111191,91542,198,37,4,39,8 24071,QC,Salaberry—Suroît,107036,91444,2271,32,10,39,14 24014,QC,Pierre-Boucher—Les Patriotes—Verchères,95326,78251,688,38,5,40,9 24019,QC,Charlesbourg—Haute-Saint-Charles,103331,83648,118,42,3,40,6 24022,QC,Chicoutimi—Le Fjord,81501,66674,2819,43,2,40,4 24025,QC,Drummond,98681,80750,1670,39,6,40,8 24034,QC,La Prairie,99811,81637,295,35,10,40,14 24039,QC,Laurier—Sainte-Marie,107034,83730,11,37,8,40,11 24042,QC,Lévis—Lotbinière,107593,86700,2123,40,5,40,7 24045,QC,Louis-Saint-Laurent,106888,91332,141,41,3,40,5 24046,QC,Manicouagan,94766,75124,264226,44,3,40,3 24049,QC,Montarville,95095,75181,158,38,7,40,10 24067,QC,Saint-Jean,108244,88081,734,34,10,40,13 24077,QC,Ville-Marie—Le Sud-Ouest—Île-des-Sœurs,103070,83351,19,35,9,40,12 24008,QC,Beauport—Limoilou,92944,78601,35,43,4,41,6 24011,QC,Beloeil—Chambly,109955,90271,402,38,6,41,11 24017,QC,Brossard—Saint-Lambert,100828,83194,58,36,9,41,12 24020,QC,Beauport—Côte-de-Beaupré—Île d’Orléans—Charlevoix,92496,75750,11634,43,3,41,5 24024,QC,Dorval—Lachine—LaSalle,106886,85471,51,33,9,41,13 24043,QC,Longueuil—Saint-Hubert,104366,85657,56,38,8,41,10 24044,QC,Louis-Hébert,104038,81285,97,41,4,41,8 24059,QC,Québec,96525,79277,36,42,4,41,7 24066,QC,Saint-Hyacinthe—Bagot,99629,80577,1948,39,7,41,9 24010,QC,Bellechasse—Les Etchemins—Lévis,112385,91899,3293,41,5,42,8 24016,QC,Brome—Missisquoi,98616,84274,3035,36,10,42,13 24018,QC,Rimouski-Neigette—Témiscouata—Les Basques,84809,69631,8061,43,5,42,5 24041,QC,Longueuil—Charles-LeMoyne,104895,83360,39,37,9,42,12 24051,QC,Montmagny—L'Islet—Kamouraska—Rivière-du-Loup,97261,78291,7495,42,5,42,6 24061,QC,Richmond—Arthabaska,103897,85118,3571,40,7,42,9 24072,QC,Shefford,107538,87902,1434,38,9,42,11 24073,QC,Sherbrooke,107988,86809,105,39,8,42,10 24006,QC,Avignon—La Mitis—Matane—Matapédia,74547,60721,14723,44,5,43,4 24007,QC,Beauce,106337,84518,4242,41,6,43,9 24023,QC,Compton—Stanstead,101946,81405,4815,40,8,43,11 24047,QC,Mégantic—L'Érable,88745,71133,6278,40,6,43,10 24026,QC,Gaspésie—Les Îles-de-la-Madeleine,78833,65717,17145,45,5,44,4 47001,SK,Battlefords—Lloydminster,70034,48638,30125,12,2,16,7 47002,SK,Cypress Hills—Grasslands,67834,49713,77822,12,8,16,10 47004,SK,Carlton Trail—Eagle Creek,72607,53836,29040,12,3,16,8 47010,SK,Saskatoon—Grasswood,72010,57268,342,12,5,16,9 47007,SK,Regina—Lewvan,79587,61879,58,12,7,17,9 47011,SK,Saskatoon—University,76257,55219,71,13,4,17,8 47012,SK,Saskatoon West,76704,54086,93,12,4,17,7 47003,SK,Desnethé—Missinippi—Churchill River,69471,43128,342903,13,2,18,7 47005,SK,Moose Jaw—Lake Centre—Lanigan,76106,56621,32882,12,6,18,9 47006,SK,Prince Albert,79344,55873,18927,13,3,18,8 47009,SK,Regina—Wascana,77208,55497,63,13,7,18,10 47008,SK,Regina—Qu'Appelle,72891,52220,13430,13,6,19,9 47013,SK,Souris—Moose Mountain,72058,51580,43184,13,8,19,10 47014,SK,Yorkton—Melville,71270,53446,43272,13,5,19,8 60001,YT,Yukon,33897,25264,482443,5,0,6,0 PKccI;:eeBchorogrid/databases/canada_federal_ridings_column_descriptions.txtdistrict_code Federal electoral district code province Two-letter province postal abbreviation federal_electoral_district Name of federal riding population Population in riding electors Number of eligible voters in riding area_km2 Area of riding in square kilometers square_x Horizontal position of square square_y Vertical position of square truecolhex_x Horizontal position of hex with true columns truecolhex_y Vertical position of hex with true columnsPKccIft1{{(chorogrid/databases/canada_provinces.csvprovince,multisquare_x,multisquare_y,multisquare_contour,multisquare_label_offset_x,multisquare_label_offset_y NL,44,2,abcdAAabadababccccdd,3.5,1.1 PE,47,5,aaaabccccd,1.5,0.1 NS,47,7,aaaabcbbbcccdaddcd,1.5,1 NB,44,6,aababbcbccdddd,0.5,1 QC,42,2,aababcbaabccccbcbbccbccbcccccdccccccdaaaadadadadadaaaaaaadad,-5.5,4 ON,16,8,aaaaabababaadaaaaaaabbcbcccbcbcccbcbcbcccbcbcbaaabbccdccccbccdcdadaddaadadddddadaaaadccdcccd,6,5 MB,14,2,aabbbbbbbccddddddd,0.5,3 SK,12,2,aabbbbbbbccddddddd,0.5,3 AB,7,0,aaaaabbbbbbbbbcdcdcdcddcdddd,2,2 BC,0,6,abbababcccddddAAadddaaaababbabababcccccccdcdcd,5,-1.5 YT,5,0,abcd,0,0 NT,13,0,abcd,0,0 NU,15,0,abcd,0,0 PKccI㎢<chorogrid/databases/canada_provinces_column_descriptions.txtprovince Two-letter province postal abbreviation multisquare_x Horizontal position of upper-left square multisquare_y Vertical position of upper-left square multisquare_contour Contour of squares: a=right, b=down, c=left, d=up, A=right without drawing multisquare_label_offset_x Offset for province label multisquare_label_offset_y Offset for province labelPKccI *66(chorogrid/databases/europe_countries.csvabbrev,full_name,map_path,map_label_x,map_label_y,map_label_text_anchor,map_label_line,map_fill,hex_x,hex_y AD,Andorra,"m 161.6363,459.12658 c -0.30762,0.41156 -0.86135,0.8722 -0.86135,1.41955 0,1.15273 -0.065,2.52446 1.25059,2.94239 0.59358,0.18872 1.4763,-0.28021 2.00707,-0.53874 0.6194,-0.30221 1.07271,-0.34971 1.74535,-0.34971 l 0,0 0.1307,-0.67009 c -0.29551,-0.90025 -0.5126,-1.87987 -1.38161,-2.37431 -0.96146,-0.54735 -1.84704,-0.49539 -2.9086,-0.49539 -0.005,0.0287 0.007,0.0392 0.0179,0.0663 l 0,0 z",154.88972,478.51697,middle,"m 161.76425,463.11577 c -5.6503,7.97396 -5.24671,7.97396 -5.24671,7.97396 l 0,0",1,2,6 AL,Albania,"m 375.32119,499.72069 0.18968,-1.79062 c 0.23749,-0.4616 0.34971,-1.82441 0.0287,-2.2723 -0.15621,-0.21869 -1.01788,-0.85307 -1.01788,-0.99078 0.80174,-0.40072 2.08677,-3.66826 2.55952,-4.60294 0.26938,-0.53333 1.75396,-3.00073 2.44317,-3.00073 0.11891,-0.35162 0.40072,1.19895 0.43642,1.31117 0.18776,0.59134 1.32583,1.77085 1.89071,0.90311 0.38159,-0.58656 1.62007,-0.78548 2.23979,-0.99046 l 0,0 c 0.44885,0.41506 0.80143,0.86168 1.22158,1.28183 0.83713,0.83713 0.003,1.72527 1.62868,2.18496 0.97484,0.27543 1.36631,0.69304 1.74535,1.60221 0.46287,1.11097 1.36695,1.94236 1.36695,3.23376 0,0.82661 -0.15493,2.46899 0.34907,3.11708 l 0,0 -0.29074,2.24329 c -0.14281,0.76349 0.0386,1.4323 0,2.15595 -0.0816,1.52889 -0.58401,1.84608 0.14537,3.43746 0.72428,1.57926 1.89582,11.07396 4.71196,10.02196 l 1.629,-0.40804 0,0 c 0,0.69654 -0.21614,1.42497 -0.0583,2.09761 0.13867,0.59007 0.41729,1.01182 0.46543,1.63154 0.0357,0.45809 -0.24866,0.88941 -0.31975,1.33985 -0.27734,0.79282 -0.29647,1.68542 -1.0182,2.21428 -0.58688,0.43036 -1.19672,0.69751 -1.74503,1.2235 -1.24294,1.19321 -1.32009,2.84038 -3.1123,3.43778 -0.58114,0.19382 -2.24903,0.29488 -2.61786,0.61175 -0.75329,0.64681 0.49444,2.22831 0.49444,2.9714 0,0.44438 -0.64299,0.6857 -0.78549,1.10714 -0.15812,0.46861 -0.0752,1.16516 -0.81418,1.16516 -0.75201,0 -1.38257,-0.37426 -2.09442,-0.58242 l -2.0976,0.0998 0,0 c -0.16864,-0.21168 -0.27033,-0.43833 -0.25854,-0.68252 0.0909,-1.91303 -0.34174,-1.12595 -1.51231,-2.59268 -1.74695,-2.18942 -4.83087,-2.58535 -5.96288,-5.41871 -0.0953,-0.23017 -1.08515,-1.63346 -0.6398,-1.71889 0.52185,-0.0998 1.30479,1.48554 1.80337,1.48554 0,-0.0587 -0.0159,-0.0434 0.0287,-0.058 0,-1.05391 -0.28117,-1.78297 -1.04721,-2.50565 -0.99429,-0.93755 -0.50432,-1.8056 -0.55246,-3.02974 -0.0532,-1.3593 3.69153,-4.4563 1.74503,-5.68075 -1.86521,-1.17377 -0.25279,-2.17953 0.32006,-3.46679 0.31432,-0.70579 -0.8078,-1.40648 -0.8435,-2.03927 -0.0858,-1.50785 0.6975,-0.89802 1.42528,-1.74822 0.74341,-0.86805 -1.66246,-2.06827 -0.29105,-2.06827 1.30065,0 0.74086,-0.19287 0.52377,-1.2235 0.12528,-2.42373 -0.13007,-3.4483 -2.31311,-4.00681 l 0,0 z",384.3786,517.91071,middle,,3,5,9 AM,Armenia,"m 685.59479,483.33194 4.22996,-2.15435 c 0.85403,-0.13453 2.53467,-0.82151 3.0833,0.0287 0.91268,1.41605 3.23535,3.18371 4.62461,1.28184 0.64108,-0.87794 2.4827,-2.85855 3.49038,-1.25283 0.96209,1.5324 0.64522,1.19258 2.15244,1.86458 1.72271,0.76763 1.98699,1.70869 3.28699,2.7967 1.01756,0.85116 1.68191,1.43995 2.44317,2.50533 l 0.87666,1.79763 0,0 c 0.38987,-0.29328 0.83554,-0.53683 1.42114,-0.60314 1.96245,-0.22187 2.79256,-1.35962 2.79256,-3.35011 0,-0.27352 0.0555,-0.55055 0.15206,-0.82534 l 0,0 -1.89741,-1.47629 c -2.12247,-0.88463 -0.54926,-2.19452 -1.19257,-3.35012 -0.77146,-1.38512 -3.338,-0.76125 -2.76323,-2.94238 0.29774,-1.12978 0.68379,-1.55567 -0.84351,-2.03959 -1.93247,-0.61271 -3.65901,0.15493 -5.58479,0.3207 -1.09535,0.094 -5.33551,-2.03831 -4.10118,-3.14641 2.82125,-2.53371 1.66183,-3.87388 -1.62867,-4.71962 -1.86234,-0.37106 -4.09256,-2.80435 -3.37434,-4.83597 0.96751,-2.73741 0.20115,-3.34246 -2.64687,-3.99119 -1.70869,-0.38923 -2.50024,-0.36628 -3.02496,-2.01026 -0.25821,-0.81003 -1.36248,-0.78644 -2.12342,-0.78644 -0.91938,0 -1.30894,-0.78421 -1.80337,-1.42752 l 0,0 c -0.72173,0.54321 -1.88562,0.8875 -2.50151,1.51487 -0.95317,0.97134 -0.53588,0.89387 -0.93053,2.01026 -0.74405,2.10525 -3.52226,1.98093 -5.41042,1.98093 -1.51965,0 -3.10115,0.99779 -4.5666,0.64107 l -2.55953,1.77691 0,0 c 2.34212,1.20533 3.34501,5.36516 3.34501,7.80769 0,1.29363 -0.49316,3.02686 -0.32006,4.19521 0.23463,1.58596 2.02397,2.81934 2.87959,4.10755 l 2.63731,3.11963 c 0.40709,-0.15015 0.80175,-0.36533 1.20214,-0.67232 1.96945,-1.50913 5.92717,0.24164 8.65565,1.83365 l 0,0 z",686.56812,474.97009,middle,,1,8,8 AT,Austria,"m 268.6477,400.47011 1.94778,-0.36692 c 0.46351,0.51197 1.97456,1.98986 2.50151,2.30131 1.06825,0.63215 2.81838,2.71318 4.27586,1.86458 0.91109,-0.53014 0.11253,-3.47508 1.39628,-3.8165 1.05423,-0.28053 1.86553,0.57891 2.35583,1.31116 1.56746,2.34021 4.24398,1.67235 6.51565,0.99047 2.46835,-0.74054 5.03935,0.75042 7.5042,-0.55341 0.69878,-0.6516 0.94838,-1.54037 1.658,-2.15595 0.36565,-0.31687 0.87156,-0.63278 1.36727,-0.32037 0.44184,0.27798 0.92607,0.74117 1.48331,0.75743 0.88463,0.0255 1.41285,0.26236 2.23978,0.55341 0.99844,0.35098 1.33284,1.55248 2.2978,2.0686 4.72249,0.88654 -1.59488,-8.22243 -0.8435,-10.28401 1.59169,-0.45555 3.90034,0.25885 5.75917,-0.11636 3.14035,-0.63374 1.53145,-4.71961 4.27555,-4.71961 4.27331,0 1.24868,-2.00739 3.43236,-4.19522 l 0,0 c 0.80525,1.06092 2.60033,3.4534 4.1305,3.20475 1.30702,-0.21263 3.00965,-2.11896 4.47925,-2.68035 1.1336,-0.43322 2.2943,-0.94137 2.53052,-2.18495 0.13548,-0.71471 0.37712,-1.96499 1.30893,-1.92259 2.36666,0.10743 2.34657,0.57062 4.13018,1.80623 1.69275,1.17313 3.25575,2.75845 5.41042,3.02974 1.9889,-0.37712 4.37851,-0.61685 6.36996,-0.17501 0.87124,0.1935 1.7699,0.52089 2.53052,0.99078 0.72938,0.45012 1.01533,1.04689 1.57066,1.60221 l 0,0 c 0.19541,0.76031 -0.32038,1.24327 -0.63981,1.89359 -0.52025,1.05805 -0.93467,2.32458 -0.2037,3.40845 0.65128,0.96496 1.31244,2.07944 2.00707,2.97171 l 0.75552,1.97456 0,0 -0.29009,4.25993 c -1.53304,1.15081 -2.84867,1.63122 -4.7703,1.63122 -1.46641,0 -0.19733,1.86999 -0.55278,2.94239 -0.32356,0.97707 -0.91778,1.26494 -0.95986,2.38897 -0.0449,1.19481 -1.54388,1.87287 -1.71602,3.08808 -0.26236,1.85309 -1.07271,3.56529 -1.71602,5.30203 l 0,0 -2.32713,1.10714 c -1.70104,0.60346 -2.84484,0.85976 -4.59561,1.16548 -1.468,0.25662 -3.06384,1.53846 -4.50858,1.36918 -0.99493,-0.11667 -1.74758,-0.22028 -2.73422,0.0287 -1.32168,0.33441 -2.15499,1.22446 -3.22865,1.95192 -1.88371,1.27578 -2.32172,0.9197 -4.45024,0.67009 l -5.67183,0 0,0 c -1.12563,-1.83174 -1.99209,-3.09923 -4.30488,-3.35043 -2.63603,-0.28659 -3.87929,-2.29749 -6.66101,-2.53434 -1.70359,-0.14505 -2.80053,-0.33855 -4.24654,-1.25283 -2.40173,-2.19994 -1.41859,-3.30931 -1.57065,-6.14682 -0.0924,-1.731 -4.71579,-0.96145 -5.99189,-0.96145 -1.45462,0 -3.02431,-0.53715 -4.36321,-0.49539 -2.03003,0.0638 -3.69281,2.12725 -5.67183,1.7479 -0.43418,-0.0832 -1.8142,-0.98282 -2.06509,-0.84478 -1.00098,0.5499 -1.77914,1.58372 -2.92517,1.79635 l 0,0 c -0.85658,-0.4039 -1.85533,-0.44534 -2.77789,-0.29137 -0.97294,0.16226 -1.59584,0.12146 -2.18177,-0.75743 -0.70515,-1.05805 -0.45459,-2.1993 -1.78137,-2.70235 l 0,0 -0.18171,-0.65542 c -0.16991,-0.36054 -0.42908,-0.78676 -0.48009,-1.18715 l -0.13803,-1.08547 c -0.0727,-0.57158 -0.37266,-1.00545 -0.79824,-1.37364 l 0,0 c 0.20561,-0.14441 0.44885,-0.27416 0.7348,-0.38573 0.39657,-0.15493 0.37808,-0.65001 0.37808,-1.19449 0,-0.55947 -0.19861,-0.89196 9.5e-4,-1.46833 l 0,0 z",324.12445,406.70291,middle,,2,4,5 AZ,Azerbaijan,"m 685.59479,483.33194 4.22996,-2.15435 c 0.85403,-0.13453 2.53467,-0.82151 3.0833,0.0287 0.91268,1.41605 3.23535,3.18371 4.62461,1.28184 0.64108,-0.87794 2.4827,-2.85855 3.49038,-1.25283 0.96209,1.5324 0.64522,1.19258 2.15244,1.86458 1.72271,0.76763 1.98699,1.70869 3.28699,2.7967 1.01756,0.85116 1.68191,1.43995 2.44317,2.50533 l 0.87666,1.79763 0,0 c -0.65032,0.4887 -1.1489,1.11607 -1.89454,1.29044 -1.7173,0.40167 -3.34182,-0.38764 -5.29407,0.14569 -2.60957,0.71312 -4.69634,0.77624 -6.95174,-0.93213 -2.70521,-2.04883 -5.32372,-4.21816 -8.115,-6.14713 -0.50017,-0.34589 -1.16835,-0.77943 -1.93216,-1.2251 l 0,0 z m 35.58312,-51.02252 c 0.20753,0.12337 0.41283,0.2528 0.61335,0.39147 1.16962,0.8078 2.95163,0.7399 4.15919,1.48554 0.60123,0.37138 1.05263,0.99493 1.70327,1.23943 l 0,33.10074 0,0 -1.00737,-0.88526 c -1.02393,1.11447 -2.31629,2.25668 -2.67365,3.36892 -0.9283,2.88915 -3.16585,3.9507 -4.39222,6.52585 -0.67327,1.41381 -1.70422,3.91086 -2.9376,4.8653 -0.87475,0.6771 -2.07561,1.82951 -2.49482,3.02017 l 0,0 -1.89741,-1.4763 c -2.12247,-0.88462 -0.54926,-2.19451 -1.19257,-3.35011 -0.77146,-1.38512 -3.338,-0.76126 -2.76323,-2.94239 0.29774,-1.12977 0.68379,-1.55567 -0.84351,-2.03958 -1.93247,-0.61271 -3.65901,0.15493 -5.58479,0.32069 -1.09535,0.0941 -5.33551,-2.03831 -4.10118,-3.1464 2.82125,-2.53371 1.66183,-3.87388 -1.62867,-4.71962 -1.86234,-0.37107 -4.09256,-2.80435 -3.37434,-4.83597 0.96751,-2.73741 0.20115,-3.34246 -2.64687,-3.99119 -1.70869,-0.38924 -2.50024,-0.36628 -3.02496,-2.01026 -0.25821,-0.81003 -1.36248,-0.78644 -2.12342,-0.78644 -0.91938,0 -1.30894,-0.78421 -1.80337,-1.42752 l 0,0 2.15244,-3.75816 c 1.11096,-0.85498 1.68254,-1.77723 3.28699,-1.77723 1.49191,0 1.74662,0.56744 2.82125,1.39851 1.84832,1.42912 4.51432,0.72364 6.74836,0.90312 1.48299,0.11891 3.56083,0.42494 4.30456,-1.25283 2.2079,-4.98229 -8.87849,-3.75178 -5.64282,-8.62313 l 1.94905,-2.53466 0,0 c 1.59266,0.38891 2.2382,0.72842 4.04284,0.72842 3.67368,0 8.0506,6.57558 11.98377,3.3211 1.68,-1.39022 1.20118,-4.01063 3.25798,-4.92331 2.13076,-0.94552 3.10975,-3.78112 3.10975,-6.1889 l 0,0 z",710.11536,459.27637,middle,,3,9,7 BA,Bosnia and Herzegovina,"m 355.36524,482.88564 1.84959,-0.19127 c 0.43227,0.57158 0.85434,0.94137 1.33699,1.45016 0.85115,0.89642 1.88083,1.43867 2.8069,2.24329 0.44917,0.38987 0.62004,0.71631 1.26526,0.8011 0.48359,0.0638 1.05167,0.1798 1.41094,0.53907 l 0.33536,0.44343 0,0 1.33794,-0.49507 c 0.47786,-1.23816 0.13039,-2.5608 -1.04721,-3.14641 0,-0.89356 0.0663,-1.89837 0.23272,-2.7677 0.27957,-1.46163 0.92607,-1.16516 2.26879,-1.16516 0.0127,-0.0532 0.003,-0.0453 0.0583,-0.0583 0,-0.43865 -0.23271,-0.91842 -0.23271,-1.45685 0,-0.6092 0.25853,-0.6889 0.49443,-1.13615 0.32931,-0.62514 -0.10328,-1.66534 0.87252,-2.06828 0.4616,-0.19031 0.87315,-0.89419 1.57065,-0.40773 0.98887,0.69017 -0.0159,1.30798 1.62899,0.43674 0.88527,-0.46893 -0.75488,-1.72877 -1.13455,-2.18495 l -0.26173,-1.07782 0.90185,-0.5244 0.8435,0.55341 2.00707,-0.2037 0,0 2.44317,-0.93245 c 1.52985,-1.28534 -0.65892,-2.91561 -1.25059,-3.90384 -1.2184,-2.03576 -0.14823,-1.48841 1.57065,-1.83525 2.39185,-0.48232 -1.6513,-3.23854 -2.32713,-4.0202 -1.98284,-2.29461 -1.93757,-4.0253 -0.4361,-6.75888 l 1.30894,-2.91338 0.0287,-1.92259 0,0 c -1.07495,0.2665 -4.251,0.43291 -5.00302,-0.40805 -1.43899,-1.60954 0.18362,-3.67049 -2.64687,-3.67049 -1.59201,0 -3.76517,0.60314 -5.23573,0.058 -0.65797,-0.24355 -1.43357,-0.48392 -2.12311,-0.29105 -1.00672,0.28117 -1.56714,0.83617 -2.76355,0.46606 -1.18269,-0.36564 -1.33634,-0.97484 -2.70489,-0.58274 -0.80748,0.23112 -0.88463,-0.0762 -1.59966,-0.11667 -0.87857,-0.67551 -3.0189,-1.15719 -4.10149,-1.42752 -2.87481,-0.71759 -4.40179,0.23877 -6.60268,2.01026 -1.059,0.85275 -1.71666,1.99591 -3.25767,1.0488 -0.72523,-0.44534 -3.19837,-3.13876 -3.7521,-2.7967 -0.68347,0.42207 -1.41636,1.80337 -1.62899,2.56367 -0.54927,1.2592 -0.66881,2.53721 -0.66881,3.90384 0,0.94679 1.27355,1.71921 1.8904,2.30131 2.04341,1.92961 1.63983,4.14867 2.6762,6.49684 0.55819,1.26431 1.95319,2.6252 2.32681,3.81618 1.17536,1.05454 2.51171,1.79731 3.316,3.20475 0.75202,1.31563 0.7788,1.97902 2.03608,2.94239 1.14412,0.87634 3.40718,3.72245 4.68296,3.78716 1.8668,0.095 0.6143,1.31977 1.2796,2.65102 0.27798,0.55596 1.15464,0.68029 1.19258,0.93245 0.29392,1.93789 2.98351,2.02683 2.85057,4.16588 l -1.18906,0.87475 0,0 c 0.45968,0.24451 0.78771,0.41793 1.14284,0.77305 l 0,0 z",362.18024,468.27313,middle,,1,4,7 BE,Belgium,"m 213.10927,326.33662 1.49415,2.06956 c 1.27163,0.86008 1.49287,1.82568 3.02495,1.10714 2.17284,-1.01884 3.75752,0.0475 6.07923,-1.60254 3.48114,-2.47345 7.41495,0.34365 9.77332,2.85504 0.87443,0.93149 2.47823,2.2637 2.73422,3.55414 0.25407,1.27897 0.93244,2.97267 1.0759,4.13687 l 0.61334,1.83557 0,0 c 0.35704,1.52124 1.67139,2.56016 1.91749,4.22422 0.27894,1.88657 -0.33823,3.20889 -1.2219,4.86498 l -0.98887,0.99047 0,0 c -1.72686,0.62928 -3.13844,0.97421 -4.18852,2.65133 -0.96018,1.53304 -1.09343,3.1614 -0.46543,4.80697 0.35577,0.93308 0.82916,1.6376 0.64012,2.65101 l 0,0 c -2.07975,-1.38894 -1.93183,-1.07813 -4.30487,-1.07813 -1.74662,0 -1.90984,-2.72816 -2.90892,-3.72883 -1.03318,-1.03541 -2.07529,-1.7275 -2.64687,-3.14641 -0.35704,-0.88558 -0.40294,-3.75911 -1.39596,-3.96218 -1.22031,-0.24929 -2.84579,3.93445 -4.04315,2.35997 -1.0877,-1.42975 -1.49893,-4.16493 -1.22159,-5.94311 -0.63725,-1.40298 -1.72972,-0.77943 -2.79255,-1.36919 -1.12627,-0.6245 -1.49798,-1.56077 -1.83238,-2.70935 -0.7042,-2.41926 -3.55892,-1.2557 -2.61786,-4.98166 0.40453,-1.60094 -0.43196,-2.41193 -1.97775,-1.63154 -2.13777,1.07973 -2.80084,-0.15142 -3.14131,-2.2723 -0.17979,-1.11926 0.74341,-1.52443 1.22159,-2.33064 l -0.44152,-1.31084 0,0 c 0.95221,-0.26778 1.84545,-0.63694 2.62296,-1.16548 1.87255,-0.69177 3.4381,-1.0453 4.99218,-0.87507 l 0,0 z",223.28372,342.73239,middle,,2,2,4 BG,Bulgaria,"m 415.2044,460.31884 c 0.66595,0.25375 1.38449,0.48774 1.98763,0.64108 0.5464,0.13867 1.17058,0.29296 1.42529,0.64076 0.6857,0.93659 -2.61914,2.19356 -1.19258,4.22422 1.14986,1.63664 4.12189,-0.40773 5.61381,-0.40773 1.34368,0 2.85536,0.91906 4.18852,1.2235 2.95832,0.67614 5.31255,-0.16991 8.20234,-0.0287 2.78267,0.13548 5.59978,-0.0488 8.34803,0.40773 3.64403,0.60537 3.92137,1.83715 7.15513,-0.52441 1.50307,-1.09757 2.85823,-3.18498 4.1305,-4.57361 3.6571,-3.99119 8.74778,-3.4483 13.32649,-4.21402 0.62291,0.29552 1.43517,0.54608 1.94396,1.00928 1.40616,0.1154 2.87321,0.0727 4.27586,0.23303 1.80719,0.20625 2.86556,1.95224 4.85733,2.01026 1.899,0.0552 4.22359,-0.40805 6.10824,-0.40805 l 0,0 c -0.21613,2.10526 -1.2388,3.99215 0.0583,5.94311 0.83044,1.24964 1.50467,0.73544 0.0287,2.21429 -1.42274,1.4256 -1.4205,1.17376 -3.28667,0.96145 -2.71573,-0.30922 -3.7945,2.01154 -5.73017,3.46679 0,2.10207 0.34716,4.20765 0.26173,6.26349 -0.0618,1.49319 -2.08231,2.06477 -2.85058,3.35011 -0.45554,0.76286 -0.78453,2.35009 -1.86139,2.50566 0,0.74149 1.6341,0.38987 2.00707,0.2037 0.92002,-0.46001 1.29587,-0.21741 1.94874,0.43705 1.30287,1.30543 2.99722,2.81137 3.43204,4.66128 0.0982,0.41857 0.2885,0.78485 0.52121,1.12085 l 0,0 c -1.73036,1.01214 -3.94975,3.90639 -6.1347,2.75367 -1.36408,-0.7195 -3.56338,-4.35716 -4.94499,-4.13688 -1.93407,0.30858 -2.08932,1.91972 -2.73423,3.32142 -0.39816,0.86614 -1.28884,0.90695 -2.1231,1.16516 l -4.01415,1.5442 0,0 c -1.05486,0.35162 -1.4951,0.33855 -2.53051,0.058 -0.87666,-0.23718 -1.41445,-0.0998 -2.0941,0.3497 -0.53684,0.35545 -0.50592,1.38034 -0.87284,1.9226 0.44184,1.13679 2.49163,2.39758 0.87284,3.70014 -1.42689,1.14858 -3.338,0.69909 -5.00302,0.69909 -1.28534,0 -1.96754,0.92257 -3.02495,1.2235 -1.18142,0.336 -2.81806,-1.2745 -3.81044,-1.77691 -1.67043,-0.8451 -3.88695,0.55054 -5.64282,0.20371 -1.21648,-0.24005 -0.99429,-1.12946 -1.39627,-2.00994 -2.5997,0 -3.65679,0.0612 -5.03203,2.41798 -0.84542,1.44952 -3.35681,3.02081 -5.03202,3.26277 -1.39278,0.20083 -2.63731,-0.621 -3.9268,-0.32038 -1.81803,0.4243 -2.0839,1.56141 -4.04283,0.61175 l 0,0 0.26172,-3.69982 c 0.6924,-2.26051 -1.66565,-3.89269 -0.87251,-6.03046 0.22378,-0.6041 0.13707,-0.81322 -0.55278,-0.99079 -1.02967,-0.26459 -2.16072,-0.49093 -3.08329,-1.04848 -0.97867,-0.59199 -2.26242,-1.26781 -2.85057,-2.27262 l 0,0 0.55277,-2.30131 c -0.17438,-0.93882 0.0874,-2.02811 0.0583,-3.00073 -0.0287,-0.99684 -0.40741,-1.98603 -0.40741,-3.00072 0,-0.73799 0.1578,-1.39086 0.17469,-2.09761 1.24868,-1.98507 5.88573,-1.80623 6.31163,-4.04921 0.36533,-1.92355 -3.16299,-3.38326 -4.21753,-4.60325 -1.19831,-1.38704 -1.66948,-2.80372 -2.0941,-4.57361 -0.55628,-2.31694 -0.30189,-2.92326 0.93054,-4.71962 l 2.37558,-3.96218 0,0 z",450.39749,479.98029,middle,,1,6,7 BY,Belarus,"m 416.61025,300.72861 c 1.73865,-0.27607 1.78487,-1.02553 3.86845,-0.61175 2.31821,0.46001 2.91466,-0.0319 4.62494,-1.31084 0.82406,-0.61653 2.91338,0.2461 3.14131,-0.4954 0.19223,-0.62418 -1.85948,-1.3016 -0.52345,-2.06827 0.39561,-0.2273 0.66371,0.14409 0.98887,0.0287 1.93726,-0.68571 2.37081,-1.93213 4.74098,-1.04881 0.7501,0.27926 2.82284,1.84386 3.19964,0.0287 0.11509,-0.55561 -1.15559,-0.89639 -1.19257,-1.71885 -0.0685,-1.51168 0.53237,-2.48685 0.72715,-3.87484 0.23016,-1.64142 -0.7297,-3.31951 -0.31974,-4.89431 1.45079,-2.21619 2.75175,-0.0159 4.01382,-1.28183 0.70133,-0.70356 1.15592,-1.96117 0.98887,-2.9714 -0.22124,-1.33571 1.00577,-1.47087 1.80337,-2.44731 1.39628,-1.70837 -1.72048,-1.67809 -1.65768,-3.55414 0.0223,-0.71248 0.6669,-1.29937 0.69782,-2.12661 0.0319,-0.83936 -0.26173,-1.82855 -0.26173,-2.73837 l 0,0 c 0.89388,-0.16704 2.0992,0.14505 2.82157,-0.11667 1.3915,-3.83849 4.82003,-0.49125 7.18446,-1.45653 1.61178,-0.65829 0.168,-2.34849 1.2506,-3.46679 l 2.79224,-2.88437 0,0 c 1.06538,-0.0433 1.93725,0.32994 2.85057,0.78676 0.74118,0.37107 1.40808,-0.43036 1.97807,-0.14568 0.75998,0.37999 1.12881,1.03988 1.77435,1.45653 0.85562,0.55277 1.65577,-0.46511 2.47218,-0.5244 3.88121,-0.2834 2.40077,5.78372 5.32308,3.52512 2.34307,-1.81133 4.38361,-2.91656 7.35883,-3.20474 0.44057,-0.0424 3.05333,1.46832 3.81044,1.77722 2.39153,0.97676 2.06764,5.05307 2.00708,7.05026 -0.0443,1.45366 0.48264,2.52159 0.69782,3.87451 0.15907,0.99875 -0.72269,3.03547 -0.98888,4.10787 1.05359,1.75746 2.73391,0.86996 3.83945,2.03926 1.76448,1.86681 2.46262,3.73872 3.86846,5.73909 1.50467,2.1416 3.4636,1.27451 4.82864,2.70936 0.82151,0.86391 0.34365,2.73008 0.6398,3.90381 0.18139,0.71822 2.11769,0.13453 2.67588,0.2037 0.97836,0.12114 3.52832,1.09918 2.87959,2.44732 -0.98951,2.05744 0.0991,1.89326 1.54165,2.7967 1.41476,1.20246 0.67901,1.33507 -0.34907,2.2723 -1.51902,1.38417 -1.34336,3.86655 -3.83945,3.93317 -1.43167,0.0383 -3.3804,-1.82759 -4.45024,-0.75775 0,1.28088 -0.75616,2.33383 -0.75616,3.61247 0,2.25063 3.53979,2.97299 4.13018,5.27303 0.56489,2.20185 0.44024,4.45311 0.95986,6.67153 l 0.93085,2.12662 0,0 -5.58511,1.0488 -3.36829,1.96786 c 0.0953,0.62259 0.0319,1.26909 -0.23813,1.90698 -0.33026,0.77943 -1.16101,1.15623 -1.33794,2.03927 -0.21199,1.059 0.19,2.43551 0.37808,3.46678 0.13198,0.72428 0.13261,1.46737 0.19892,2.20122 l -0.57764,0.53715 c -1.0861,0 -2.17858,0.0934 -2.79224,-0.96146 -0.76763,-1.3204 -2.09697,-1.49414 -3.5484,-1.36918 -1.39117,0.11955 -2.27038,0.86263 -3.34501,1.63154 -3.22802,2.00134 -2.81678,0.2936 -5.32275,-0.75743 -1.83015,-0.76732 -2.53562,3.55159 -4.15951,0.5244 -0.7874,-1.46737 -2.374,-0.40549 -3.57741,0.0583 -1.55408,0.59932 -4.53376,0.17214 -5.4101,0.81545 -0.89515,0.6567 -1.15114,2.23277 -2.55985,1.63154 -1.09598,-0.46733 -1.30765,-1.47597 -2.76323,-1.95192 -1.82058,-0.59485 -3.84359,-0.26905 -5.72984,-0.61175 -1.93025,-0.35034 -3.74668,-1.72335 -5.78818,-1.34017 -2.59619,0.35895 -5.00461,-0.57413 -7.56255,-0.40773 -1.93375,0.12593 -4.32336,1.33667 -6.07923,1.19449 -1.08068,-0.0877 -1.94873,-0.18043 -2.64687,0.87379 -0.96401,1.45621 -1.51391,1.99082 -2.9086,3.05907 -1.61337,1.23624 -2.18304,-0.44567 -3.19933,-1.28184 -0.60537,-0.49762 -1.45493,0.30317 -2.0654,0.5244 l 0,0 -0.4361,-2.12661 c 0,-0.6261 -0.27033,-1.12213 -0.37808,-1.71889 -0.11381,-0.62897 10e-4,-1.3389 -0.0874,-1.98125 -0.25471,-1.84609 -1.44155,-2.43425 -2.96693,-3.32111 -0.82693,-0.48104 -0.0494,-1.34145 0.34907,-1.95192 0.74404,-1.1387 1.37651,-2.36698 2.23978,-3.43746 1.41477,-1.75364 2.79224,-2.03863 2.79224,-4.66128 0,-4.22964 -0.0287,-6.63615 -2.23978,-10.31301 -1.32264,-2.20058 -3.39857,-5.29343 -2.35614,-7.95338 l 0,0 z",458.28564,308.60934,middle,,4,6,4 CH,Switzerland,"m 267.53387,403.5177 c -1.59425,1.11894 -0.96018,3.13685 -0.80111,4.73778 l 2.39918,-0.43609 0,0 c 1.32678,0.50304 1.07622,1.64429 1.78137,2.70234 0.58593,0.87889 1.20883,0.91969 2.18177,0.75743 0.92256,-0.15397 1.92131,-0.11253 2.77789,0.29137 l 0,0 -0.85626,1.46673 c -0.28021,0.56202 -0.65797,1.02362 -0.37808,1.71857 0.22188,0.55055 0.38,0.95126 0.20371,1.57321 -0.4954,1.74439 -2.75781,0.19669 -3.54872,0.49539 -0.59262,0.22347 -0.17437,1.55057 -0.17437,2.06828 0,1.67075 -1.08579,1.40457 -2.23979,0.99046 -0.72332,-0.25917 -1.01182,-0.29902 -1.77436,-0.32038 -0.73002,-0.0191 -1.49,-0.46861 -2.18144,-0.69909 -0.35641,-0.29169 -1.36377,-2.52924 -1.83238,-2.41799 -0.7026,0.16641 -1.16516,1.86872 -1.19258,2.50534 -0.0915,2.11386 -2.08836,3.0699 -3.08329,4.98165 -0.92065,1.7699 -1.84799,1.54197 -2.73422,0.0583 -0.87347,-1.46163 -1.0166,-3.3482 -2.79224,-4.04953 -3.31217,-1.30893 1.00194,-4.41677 -1.42529,-3.8455 -0.92894,0.21868 -2.95992,2.00771 -3.57772,2.73868 -1.17504,1.38958 -0.8502,4.2561 -3.5484,3.81618 -3.34661,-0.54544 -2.57674,-1.80018 -5.96288,-0.55341 -1.50817,0.55532 -2.27517,-0.0191 -3.60673,-0.55342 l 0,0 c -0.0424,-0.51866 -0.0191,-1.05454 -0.0583,-1.5732 -0.0354,-0.47244 -0.31974,-0.78676 -0.55245,-1.19449 -0.17661,-0.3089 -0.23272,-0.52312 -0.23272,-0.87411 0,-0.51802 0.11317,-0.83904 0.34907,-1.31084 0,-2.48684 -0.71758,-4.57521 -3.60673,-4.02052 -1.58405,0.3038 -2.71796,0.61589 -3.17064,2.33064 -0.32102,1.21744 -1.43995,1.6529 -2.64687,1.45685 -0.88176,-0.14346 -1.28534,-0.69878 -1.71602,-1.39851 -0.61653,-1.00067 -0.0756,-1.48841 0.75616,-2.09761 1.0217,-0.94424 2.21205,-1.84385 2.87958,-3.08807 0.61653,-1.14986 1.18556,-2.40874 2.38515,-3.08807 2.11992,-1.20119 2.92773,-4.61283 5.46844,-4.34058 1.47725,0.15843 3.37976,-1.3067 4.18852,-2.47633 0.68826,-0.99588 -0.75807,-0.73767 -1.30893,-1.07813 -1.18078,-0.72906 -0.1849,-1.49159 0.37808,-2.24297 0.91619,-1.2235 1.18556,-1.04785 2.73422,-0.46638 1.18524,0.4447 3.3176,1.3016 4.3919,0.26236 l 2.12917,-0.99684 0,0 c 0.30922,0.73001 0.83553,1.28119 1.59169,1.23178 1.04912,-0.0685 2.09474,-0.64108 3.17032,-0.64108 1.26494,0 3.29592,2.57898 4.59593,1.60254 0.28467,-0.21359 0.42781,-0.47882 0.56871,-0.74373 0.11157,-1.21106 -1.07526,-3.89045 1.14954,-3.89045 1.24964,0 1.96977,1.17663 2.93792,1.71889 1.31914,0.7383 2.96184,0.73002 4.07216,1.80623 l 2.73423,2.65102 0.29168,1.38672 0,0 c -0.19956,0.57636 -9.5e-4,0.90885 -9.5e-4,1.46832 0,0.54449 0.0185,1.03956 -0.37808,1.19449 -0.28595,0.11157 -0.52919,0.24132 -0.7348,0.38573 l 0,0 z",235.41997,411.1821,middle,,1,2,5 CY,Cyprus,"m 553.62943,589.39588 c 0.58902,1.25024 1.02394,2.69941 0.91785,4.02954 -0.68679,1.11313 -2.21785,0.45134 -3.28942,0.64755 -0.90955,-0.71255 -0.36567,1.14613 -1.43638,1.10032 -0.79154,1.05642 -2.36921,0.43715 -3.473,0.24929 -1.01734,0.56728 0.58076,1.89989 0.95976,2.46765 0.72052,0.90876 1.19086,2.07676 2.09041,2.82491 0.46686,1.32564 2.0487,1.59795 3.24835,1.29131 1.09726,-0.46603 2.30179,-0.76534 3.07131,0.3687 0.69578,0.48596 2.17319,2.0817 2.19435,0.29233 -0.22123,-1.30166 0.10998,-2.94956 1.7495,-2.73205 1.27287,-0.36578 2.89202,0.91641 3.80961,-0.13453 1.10589,-0.80911 0.55851,-2.22694 0.71943,-3.37746 0.92477,-0.58733 2.22206,-0.59141 3.33124,-0.58867 0.45485,-0.0724 1.05397,0.15238 1.40916,-0.1256 0.89081,-0.86063 2.70993,0.1817 3.29952,-0.91855 -0.31177,-1.22799 -1.42873,-1.97685 -2.35993,-2.78026 -1.07542,-0.50237 -1.18869,-1.96336 0.01,-2.44645 0.90178,-0.62153 2.5893,-1.83304 3.52031,-2.91248 0.59565,-1.2951 1.60509,-2.37651 1.96614,-3.78197 0.91182,-1.24499 -0.96878,0.27574 -1.46102,0.38397 -0.99569,0.77478 -2.11294,1.54968 -2.84838,2.50922 -1.08336,0.73971 -2.2825,1.20935 -3.48575,1.7166 -1.43667,0.36115 -2.77573,1.01517 -4.16426,1.51863 -1.21875,0.58286 -2.66154,0.51879 -3.99572,0.58701 -1.26701,-0.13294 -2.47664,0.20689 -3.72029,0.28435 -1.06066,0.19765 -1.53176,-0.81478 -2.62411,-0.56396",565.91534,611.96149,middle,"m 560.93124,596.18365 c 5.73871,8.99857 5.32872,8.99857 5.32872,8.99857 l 0,0",1,8,9 CZ,Czech Republic,"m 328.33544,349.58563 c 2.38484,2.15435 2.89011,0.38477 5.32149,-0.0583 1.55694,-0.2834 1.66565,1.65481 2.64687,2.593 2.07051,1.98061 5.17579,2.76641 7.79525,3.43746 2.70394,0.6924 0.0873,2.97713 0.0873,3.78748 0,0.25631 2.02652,2.32203 2.38483,3.00041 0.18777,0.35608 1.57831,2.33223 2.12343,1.83556 0.56839,-0.51738 0.0191,-1.15974 1.04721,-1.39851 0.95317,-0.22187 -0.37139,-2.85249 0.95986,-3.11708 1.28088,-0.25471 2.65803,1.39851 3.95581,1.60222 1.38831,-0.13868 2.78044,-0.46894 4.13018,-0.55341 1.32009,-0.0829 0.54767,0.75297 0.43641,1.51486 -0.11954,0.81609 1.5273,3.84168 2.44317,3.14641 1.42944,-1.08451 1.49861,0.36374 2.35614,1.04881 1.25889,1.0064 3.769,-0.30604 4.24654,1.66055 0.27448,1.13009 1.20055,3.39315 2.15244,4.07853 l 0.64012,1.68957 0,0 -5.06103,2.30162 c -2.43999,1.72304 -2.8356,4.64981 -5.09037,6.2635 -2.73995,1.96052 -5.33614,1.61082 -8.46438,1.92291 -1.49128,0.14887 -2.39057,1.97551 -3.17032,3.11708 l 0,0 c -0.55532,-0.55532 -0.84127,-1.15209 -1.57065,-1.60221 -0.76062,-0.46989 -1.65928,-0.79729 -2.53052,-0.99079 -1.99145,-0.44184 -4.38106,-0.20211 -6.36996,0.17501 -2.15467,-0.27128 -3.71768,-1.8566 -5.41043,-3.02973 -1.7836,-1.23561 -1.76352,-1.69881 -4.13018,-1.80624 -0.93181,-0.0424 -1.17344,1.20788 -1.30893,1.9226 -0.23622,1.24358 -1.39692,1.75172 -2.53052,2.18495 -1.46959,0.56138 -3.17223,2.46772 -4.47925,2.68035 -1.53016,0.24865 -3.32524,-2.14383 -4.13049,-3.20475 l 0,0 -1.48331,-3.14641 c -0.0127,-0.1103 -0.0255,-0.21423 -0.0583,-0.32038 -2.2927,-1.43613 -2.54167,-1.5697 -3.28668,-4.28256 -0.71057,-2.58662 -4.543,-6.30844 -6.57366,-8.0404 -1.96308,-1.6749 -1.67777,-2.3249 -1.33795,-4.71961 0.30476,-2.14894 -1.09152,-2.57069 -1.94873,-4.19522 0.18745,-1.16229 1.63888,-0.19988 2.32681,-1.80623 1.13297,-2.64465 4.67339,-1.69435 6.66102,-3.11709 1.6596,-1.18747 3.33927,-2.14956 5.32276,-2.65101 2.31342,-0.58529 3.64435,-2.20217 6.16626,-2.33064 1.55726,-0.0791 3.73871,-3.42248 4.47957,-0.43706 l 1.25218,0.84479 0,0 z",334.65143,371.37967,middle,,1,4,4 DE,Germany,"m 327.09537,299.82964 -0.63916,1.68669 0,0 c -0.54545,-0.43674 -1.52284,-0.49125 -1.8327,-1.13615 -0.11572,-0.24037 -0.21582,-0.70388 -0.0437,-0.93213 0.40836,-0.54225 0.76221,-0.24132 1.30893,-0.40804 1.04274,-0.31751 -1.58468,-2.30195 -1.81771,-2.593 -0.56553,-0.70547 0.0771,-0.78995 0.59612,-0.39307 0.39211,0.3003 1.14795,1.30734 1.57066,1.41286 l 0.42175,1.38385 c 0.15206,0.3038 0.28372,0.6602 0.43578,0.97899 l 0,0 z m -8.42007,-7.30111 c -0.52664,-0.0864 -0.79601,-3.34629 1.03254,-1.90825 0.25248,0.19861 0.89611,0.33154 1.03255,0.56808 0.42685,0.7383 0.27288,1.26016 1.27992,1.55886 1.02936,0.30508 0.36246,-1.24454 0.3054,-1.67522 -0.15557,-1.16739 -1.15943,-1.03924 -2.03608,-1.51518 -0.21773,-0.11795 -1.13839,-0.63247 -1.03255,-0.90312 0.0822,-0.20944 1.3134,-0.8078 1.57066,-0.84478 0.40517,0.40517 -0.0529,1.12053 0.82884,1.50052 0.62737,0.27001 1.35324,0.20275 1.91972,0.46606 0.36979,0.17151 0.12401,0.79856 0.0874,1.09248 -0.10966,0.87188 0.48009,1.35069 0.48009,2.17061 0,0.87793 -0.59645,0.82438 -1.23625,0.53874 -0.54704,-0.2445 -0.86837,0.13071 -1.17823,0.52441 -0.45873,0.5821 -1.21521,0.62641 -1.93407,0.62641 -0.94042,0 -0.97453,-0.83872 -0.97453,-1.57321 l -0.14536,-0.62641 z m 8.25239,11.67356 0.41825,2.96662 c 0.3344,1.95256 1.30415,4.36799 0.78548,6.32183 -0.2292,0.86327 -0.70643,1.64716 -1.27992,2.33064 -1.57257,1.87509 -2.49322,1.0115 -0.26172,3.14609 1.22031,1.16707 4.36225,2.78905 3.37402,4.66127 -0.36373,0.6889 -1.20086,1.28279 -0.72715,2.15595 0.6924,1.27705 0.76253,1.08482 0.49444,2.7967 0,0.91428 0.34907,1.61879 0.43641,2.50533 0.17725,1.80178 -0.51834,3.18084 0.20371,5.01099 1.00768,2.55315 2.7339,4.86721 1.77404,7.8657 -0.67583,2.11068 -3.09063,3.45595 -3.81012,5.62273 l 0,0 -1.25219,-0.84478 c -0.74086,-2.98542 -2.92231,0.358 -4.47957,0.43706 -2.52191,0.12847 -3.85284,1.74535 -6.16626,2.33064 -1.98348,0.50145 -3.66316,1.46354 -5.32276,2.65101 -1.98762,1.42274 -5.52805,0.47244 -6.66102,3.11708 -0.68793,1.60636 -2.13936,0.64395 -2.32681,1.80624 0.85722,1.62453 2.25349,2.04628 1.94874,4.19521 -0.33983,2.39472 -0.62514,3.04472 1.33794,4.71962 2.03066,1.73196 5.86309,5.45378 6.57367,8.0404 0.745,2.71286 0.99397,2.84643 3.28667,4.28256 0.0325,0.10615 0.0443,0.21008 0.0583,0.32038 l 1.48331,3.14641 0,0 c -2.18368,2.18782 0.84095,4.19521 -3.43236,4.19521 -2.74411,0 -1.1352,4.08587 -4.27555,4.71961 -1.85884,0.37521 -4.16748,-0.33918 -5.75917,0.11636 -0.75138,2.06158 5.56599,11.17055 0.8435,10.28401 -0.96496,-0.51611 -1.29937,-1.71761 -2.2978,-2.0686 -0.82693,-0.29105 -1.35516,-0.5279 -2.23979,-0.55341 -0.55723,-0.0159 -1.04147,-0.47945 -1.4833,-0.75743 -0.49571,-0.31241 -1.00163,0.003 -1.36727,0.32038 -0.70962,0.61557 -0.95923,1.50435 -1.658,2.15594 -2.46485,1.30383 -5.03585,-0.18712 -7.50421,0.55341 -2.27166,0.68188 -4.94818,1.34974 -6.51565,-0.99046 -0.49029,-0.73225 -1.3016,-1.5917 -2.35582,-1.31117 -1.28375,0.34142 -0.48519,3.28636 -1.39628,3.8165 -1.45748,0.84861 -3.20762,-1.23242 -4.27586,-1.86457 -0.52696,-0.31146 -2.038,-1.78935 -2.50151,-2.30131 l -1.94778,0.36692 0,0 -0.29169,-1.38672 -2.73422,-2.65102 c -1.11033,-1.07621 -2.75303,-1.06793 -4.07216,-1.80623 -0.96815,-0.54226 -1.68829,-1.71889 -2.93792,-1.71889 -2.22481,0 -1.03797,2.67939 -1.14954,3.89045 -0.14091,0.26491 -0.28404,0.53014 -0.56872,0.74373 -1.3,0.97644 -3.33098,-1.60254 -4.59592,-1.60254 -1.07558,0 -2.1212,0.57254 -3.17032,0.64108 -0.75616,0.0494 -1.28247,-0.50177 -1.59169,-1.23178 l 0,0 c -0.35067,-0.82725 -0.42271,-1.88466 -0.23622,-2.5573 0.49061,-1.76734 0.24419,-3.31728 1.19257,-4.92364 0.76413,-1.29426 1.75428,-2.12087 2.09442,-3.72883 0.64554,-3.05109 2.49194,-4.72025 4.59561,-6.93357 1.00927,-1.06156 1.70582,-2.21684 2.3775,-3.33163 l -1.04179,-0.95093 c -1.62868,-1.18748 -3.67305,-1.93375 -5.61381,-2.41799 -2.3504,-0.58688 -2.89712,-2.57515 -4.7703,-3.37944 -1.35324,-0.58083 -2.97459,-0.29775 -3.92648,-1.63154 -0.9283,-1.30128 -1.80974,-2.70139 -3.1123,-3.72883 l 0,0 c 0,-1.43326 1.3338,-2.09888 0.98887,-3.72915 -0.38796,-1.83493 -2.61786,-2.56973 -2.61786,-4.48627 0,-1.01979 0.33058,-2.18622 0.14537,-3.17573 l 0,0 0.98887,-0.99047 c 0.88367,-1.65609 1.50084,-2.97841 1.2219,-4.86498 -0.2461,-1.66406 -1.56045,-2.70298 -1.91749,-4.22422 l 0,0 c 1.41349,-1.9481 1.36982,-4.16812 2.41416,-6.26381 0.46096,-0.92448 1.0386,-1.49797 1.59998,-2.33032 0.5719,-0.84733 -0.058,-2.07816 -0.49443,-2.85504 -0.12561,-1.12404 -2.04724,-1.55822 -0.98919,-2.88437 1.04306,-1.3067 1.99145,-0.93181 3.40335,-1.28183 2.55729,-0.63375 4.17863,0.51133 6.60267,-1.42752 1.51519,-1.21234 -1.25601,-2.40014 0.93054,-3.40845 2.10366,-0.97039 1.86107,-2.08582 2.26879,-4.13688 0.2155,-1.08323 -1.7326,-0.18936 -1.22158,-1.86457 0.38063,-1.24677 0.54926,-1.38289 1.57065,-1.89359 1.47183,-0.73544 1.89327,-1.99304 2.2688,-3.4958 l 1.10522,-3.75815 0.0347,-0.0287 c 0.5107,0.10393 0.93372,-0.31081 1.1556,-1.66119 0.0644,-0.0159 0.0873,-0.0778 0.0873,-0.14536 -0.49953,-0.1256 -2.03799,0.19286 -1.89071,-0.58274 0.12656,-0.66786 0.13198,-1.90889 0.29073,-2.38898 1.76352,0 1.41573,0.23208 1.07622,-1.39819 -0.409,-1.96244 1.17855,-0.83585 2.21078,-1.22381 0.90821,0 7.41813,-0.01 7.56254,0.69941 0.43769,2.15212 -2.26083,4.42123 0.14536,5.15635 2.41129,0.73703 0.30699,-1.14093 1.04721,-1.98093 0.63088,-0.71535 1.23211,-2.88341 2.12343,-0.43706 0.26045,0.7144 -0.24323,6.26668 -0.0583,5.62274 0.56648,-1.97424 1.39182,-6.56028 0.78549,-8.41944 -0.28563,-0.87506 1.82441,-3.162 2.2978,-2.65101 0.89706,0.96751 0.89961,0.62099 2.0941,0.78644 2.31661,0.32101 4.62143,3.87451 6.10824,3.87451 0,-2.50055 -5.46429,-4.12954 -6.19527,-6.03042 -0.33982,-0.88304 1.19226,-1.50881 0.58147,-2.00994 -1.65609,-1.35803 0.0704,-1.82409 -0.31974,-2.21429 -0.52345,-0.52344 -1.67139,0.0424 -2.2688,-0.17469 -0.61589,-0.22347 0.49635,-1.49574 0.58179,-1.95192 2.59172,-0.18267 3.79736,-0.75584 2.2978,-3.46679 -1.22573,-2.21651 -1.23179,-3.18275 -0.75648,-5.59341 0.043,-0.21836 0.0762,-0.43833 0.10138,-0.65924 l 0,0 2.86556,0.42621 c 0.75998,1.0928 1.69402,2.78778 2.93792,3.32111 1.90729,0.81768 3.15884,-1.12659 4.82067,-1.12659 l 0,0 c -0.285,0.91874 -1.33444,1.06857 0.12401,2.32107 1.3593,1.16771 2.40969,3.14546 0.26172,4.25324 -3.72054,1.91845 1.55344,-0.1425 2.06509,2.15594 0.2987,1.34336 1.87095,0.0587 2.58885,0.32038 1.82282,0.6653 1.17441,3.03675 3.7521,1.7479 0.93341,-0.46638 2.2095,-3.82128 3.37435,-2.73837 2.37495,2.20727 0.93659,2.36156 -1.30894,1.60222 0,0.83936 0.01,1.81325 0.14537,2.65102 0,2.45493 -2.21396,1.64397 -3.75242,2.30159 -1.78392,0.76222 0.94998,2.50183 2.61786,1.83525 1.79158,-0.71567 1.19577,-0.4157 2.85058,0.29137 2.48238,1.06123 1.9685,-0.66212 2.96693,-1.66055 0.7144,-0.7144 4.42124,0.27957 5.67183,-0.4954 1.15368,-0.71532 2.03481,-4.86016 3.46137,-3.87448 0.38955,0.26937 3.44543,1.03223 2.53052,1.07781 -1.02203,0.051 -3.58442,-0.13644 -3.9268,1.04881 -0.84159,2.91462 1.86936,0.62322 2.73422,0.40804 0.96751,-0.24036 1.06952,0.64873 2.18145,-0.46606 0.79983,-0.80238 1.00831,-0.42399 1.59998,0.61175 0.66754,1.16768 1.5002,1.66084 2.47218,2.53431 0.63693,0.71694 1.36982,1.02617 2.03608,0.32069 0.5397,-0.5719 1.30415,-0.32516 1.33826,0.46607 0.0507,1.17345 0.82565,2.2315 0.17438,3.17542 -0.67424,0.97676 -0.0488,1.99687 0.98887,2.53466 0.94424,0.48902 1.90569,0.97166 2.89903,1.34495 l 0,0 z",285.11176,337.69302,middle,,3,3,3 DK,Denmark,"m 179.88795,145.23442 c 0,-0.79696 -0.2002,-1.63601 -0.0874,-2.43265 0.0389,-0.27639 0.13326,-0.75743 0.36374,-0.93213 0.56425,-0.42685 1.06155,0.48328 1.06155,0.94679 0,0.89164 0.006,1.86904 -0.0873,2.75303 -0.0348,0.32708 -0.0332,0.7603 -0.20339,1.04912 -0.0851,0.14505 -0.45809,0.19351 -0.61111,0.1747 -0.36629,-0.0453 -0.36342,-0.47531 -0.36342,-0.75744 l -0.0727,-0.80142 z m 3.57773,-4.47192 c -0.28595,0.0373 -0.65638,-0.18075 -0.88718,-0.34971 -0.2783,-0.20434 -0.27193,-0.74181 -0.32006,-1.0488 -0.0223,-0.14218 -0.15493,-0.7992 -0.0128,-0.88845 0.26618,-0.16832 1.13965,0.90821 1.30893,1.07781 0.2563,0.25758 0.52344,0.387 0.52344,0.7721 0,0.31559 0.0344,0.56966 0.0874,0.8741 0.0507,0.2901 0.42781,0.90153 0.10169,1.12149 -0.482,0.32452 -0.81258,-0.71248 -0.8435,-1.01947 l 0.0437,-0.53907 z m 0.21805,-5.22967 c -0.0845,-0.40486 -0.0338,-0.84638 -0.11636,-1.26717 -0.066,-0.33473 -0.21869,-0.82597 -0.23271,-1.15082 -0.0191,-0.47817 0.0488,-0.55628 0.27638,-0.94679 0.10966,-0.18776 0.32166,-0.60059 0.56712,-0.33504 0.4581,0.49475 0.43482,0.97548 0.45108,1.61688 l 0.0727,2.8697 c 0.01,0.32484 0.12528,0.73257 -0.20371,0.94679 -0.57094,0.37234 -0.87251,-0.62545 -0.87251,-1.00513 l 0.058,-0.72842 z m -2.03608,-1.19449 c -0.11891,-0.0127 -0.13676,-0.0609 -0.18904,-0.17469 -0.13103,-0.28627 -0.45937,-0.84861 -0.11636,-1.09248 0.23271,-0.16577 0.56839,0.074 0.72715,0.23303 0.28276,0.28404 0.39816,0.78772 0.52376,1.16516 0.0399,0.11955 0.10106,0.35768 -0.0874,0.36437 -0.18808,0.006 -0.34365,-0.0424 -0.52376,-0.0873 -0.13453,-0.0338 -0.28404,-0.0494 -0.39242,-0.14569 l 0.058,-0.26236 z m 4.39222,0.39338 c -0.18713,-0.43514 -0.30062,-0.97931 -0.43642,-1.44218 -0.13166,-0.44949 -0.40454,-1.95543 0.58178,-1.48586 0.46511,0.22156 0.45332,0.99206 0.52377,1.41317 0.12432,0.73991 0.61238,1.33189 0.7705,2.05394 0.28499,1.30319 -1.15368,0.59198 -1.22158,-0.21869 l -0.21805,-0.32038 z m 105.46632,142.82156 c -0.45968,-0.15971 -1.33698,-1.18142 -1.74503,-1.52953 -0.68953,-0.58784 -1.13296,-3.15725 -1.03286,-4.06419 0.0682,-0.62036 0.60027,-0.60219 0.95986,-0.91747 0.85881,-0.75201 1.13647,-1.80815 2.45815,-2.06859 1.64239,-0.32325 0.87603,2.0415 1.90506,2.73868 0.85754,0.58051 0.95859,-0.39976 1.30894,-0.85977 0.19254,-0.25247 1.3491,-1.46131 1.62899,-1.22349 0,0.96624 -0.55277,1.87382 -0.55277,2.8697 0,1.76225 0.46957,2.91306 -0.18904,4.69061 -0.58784,1.58563 -2.40046,0.86741 -3.60674,0.65542 l -1.13456,-0.29137 z m 18.41208,1.99591 c 0.40071,-1.20628 -1.68096,-0.92766 -0.37808,-1.96658 0.85403,-0.68061 2.28441,-0.31656 3.28699,-0.88878 0.54704,-0.31241 0.68922,-1.19703 0.14537,-1.5732 -0.75775,-0.52376 -1.99241,-1.31403 -1.99241,-2.31597 0,-1.29332 1.53623,-1.63729 2.12343,-2.54933 0.44056,-0.77465 0.96656,-1.74694 0.85785,-2.66568 -0.0791,-0.66594 -0.4922,-1.44952 -0.14536,-2.09761 0.78166,-1.46163 -0.78581,-2.8136 -2.0941,-3.10305 -1.34528,-0.29743 -1.85342,0.70005 -2.89425,1.15081 -0.47372,0.2053 -1.33763,0.42175 -0.43642,0.80143 0.29551,0.12464 1.46705,0.48455 1.38161,0.87379 l -0.50878,2.31629 c -0.29201,1.32902 -0.68092,-0.24004 -0.74181,-0.72842 -0.0159,-0.13198 -0.11381,-0.97549 -0.1747,-0.99047 0,0.16991 -0.79058,0.85785 -0.93053,1.0488 -0.21167,0.28819 0.14824,0.75935 0.058,1.13616 -0.32293,1.35005 -2.08262,0.66179 -1.94873,0.26236 0.17023,-0.50879 0.53842,-1.15369 0.45076,-1.70455 -0.19861,-1.24868 0.91619,-1.25984 0.91619,-2.01026 0,-0.35034 -1.11958,-0.14951 -1.33794,-0.13102 -1.10045,0.0947 -3.99024,-1.63441 -2.82157,0.71376 0.71376,0.35672 2.08326,0.57605 1.30893,1.42752 -0.83235,0.9146 -2.22767,1.17823 -3.4177,0.94711 -0.59549,-0.1154 -1.42178,-0.71695 -1.32359,0.29105 0.11062,1.13807 0.75648,0.75106 1.23625,1.35484 0.56967,0.71727 -0.40709,2.48652 -0.40709,3.35043 0,1.00768 0.40294,3.66316 1.41062,4.1662 0.63885,0.31943 1.2965,0.0781 1.9634,0.14569 0.43004,0.0433 0.66913,0.32038 1.19258,0.32038 0.34652,0 1.49733,-0.30508 1.5273,0.24769 0.0255,0.45714 -0.66913,0.91651 -0.66913,1.52954 -0.0443,0.57253 0.14855,1.03414 0.49443,1.47119 0.34238,0.43195 0.6516,0.39752 1.16357,0.46638 0.59772,0.0807 1.12435,0.47977 1.75969,0.56808 0.28563,0.0399 0.50304,-0.0159 0.59645,-0.3207 0.0912,-0.29711 0.27575,-0.69272 0.30539,-0.99047 l 0.0434,-0.55341 z m -13.55443,-13.1977 c -0.11604,0.0191 -0.0478,-0.12337 -0.0437,-0.21869 0.0191,-0.46001 0.16736,-0.86582 0.24738,-1.31084 0.0628,-0.34812 0.12496,-0.63949 0.53811,-0.62642 0.26299,0.01 0.40453,0.13963 0.52344,0.36406 0.1154,0.21868 0.0319,0.38923 0,0.61174 -0.0376,0.27416 -0.0255,0.56234 -0.0159,0.83044 0.0159,0.34907 -0.41123,0.51133 -0.69814,0.58274 l -0.55245,-0.23303 z m -8.49339,12.97902 c -0.19765,-0.1731 -0.38924,-0.73512 -0.5091,-0.99047 -0.16959,-0.36182 -0.47754,-0.47339 -0.55277,-0.90312 -0.17916,-1.02521 0.75201,-0.29615 1.04721,0 0.482,0.48296 1.90569,1.22095 1.58531,2.03927 -0.17565,0.44821 -0.16003,0.61334 -0.16003,1.07813 0,0.6567 -0.87634,-0.15716 -0.98887,-0.40804 l -0.42175,-0.81577 z m 7.3735,3.14641 c 0.16003,-0.35672 0.32739,-0.72173 0.6398,-0.96114 0.3513,-0.26969 0.64299,-0.36469 0.84351,-0.78676 0.25088,-0.52855 0.29647,-1.10523 0.59644,-1.61688 0.12784,-0.21773 0.81099,-1.45398 1.07622,-1.25283 0,1.2286 -0.75584,2.75909 -1.33794,3.83116 -0.20753,0.38191 -1.58404,2.75686 -1.90538,1.58787 l 0.0873,-0.80142 z m 6.82105,-0.1747 c -1.01023,-0.10839 -1.44761,-0.94679 -2.53084,-0.94679 -0.98313,0 -0.15684,0.89228 -0.3344,1.2965 -0.1425,0.32357 -1.17122,1.01692 -0.65447,1.39851 0.61207,0.4514 1.40584,0.50113 2.07975,0.83012 1.03765,0.50718 0.72907,1.49414 2.23979,1.32582 0.39179,-0.0434 0.76636,-0.20593 1.16356,-0.0583 0.46766,0.17342 1.10204,0.0287 1.30894,-0.4954 0.23048,-0.58401 0.67263,-2.04341 -0.24738,-2.01026 -0.84351,0.0319 -1.85437,0.0695 -2.35614,-0.68475 l -0.66881,-0.65542 z m 4.75563,2.85504 c 0,-0.70579 -0.0637,-1.03031 -0.26172,-1.67521 -0.26268,-0.8569 -0.1511,-1.97807 0.91619,-1.04881 0.69941,0.6092 1.79317,0.76732 2.54518,0.11668 1.08897,-0.94265 1.68892,-1.78105 3.28668,-1.13615 1.97168,0.79632 -0.36916,0.99269 -1.01789,1.20883 -0.35321,0.11795 -0.58592,0.42399 -0.91618,0.58274 -0.58625,0.28244 -0.96752,-0.25439 -1.629,0.20402 -0.29679,0.2053 -0.31942,0.6143 -0.55277,0.85945 -0.55819,0.58561 -1.22637,1.06346 -1.54164,1.83556 -0.0819,0.20052 -0.22411,0.67965 -0.39243,0.80111 -0.38318,0.27734 -0.6516,-0.2987 -0.66913,-0.5974 l 0.23271,-1.15082 z m -4.71196,-42.27346 c -0.0191,-0.32389 1.26271,-1.09758 1.59966,-1.20915 0.31656,-0.10457 1.23434,-0.12337 1.52699,0 0,0.13707 -0.2273,0.33855 -0.3054,0.45171 -0.4581,0.66435 -0.13485,1.63155 -1.19258,1.76257 -0.44151,0.0548 -0.48359,-0.43642 -0.98887,-0.26204 -0.49412,0.17087 -0.96496,0.12145 -1.19257,-0.42271 l 0.55277,-0.32038 z m 32.6503,40.17586 c -0.53588,-0.0367 -1.39628,-1.09981 -1.39628,-1.61688 0,-0.28627 0.41282,-1.79349 0.59644,-1.84991 0.30572,-0.0944 1.07208,0.74946 1.27961,0.99046 0.47276,0.54991 1.57065,0.87507 1.74535,1.61688 0.20721,0.88112 -0.0969,1.55727 -1.16357,1.44218 l -1.06155,-0.58273 z m -58.3039,-5.24625 2.86556,0.42621 c 0.75998,1.0928 1.69403,2.78778 2.93793,3.32111 1.90729,0.81768 3.15884,-1.12659 4.82066,-1.12659 l 0,0 c 0.0405,-0.13134 0.066,-0.2783 0.066,-0.44662 0,-0.74085 -0.68762,-1.65864 -1.27992,-2.06859 -0.5244,-0.36246 -1.27355,-0.55597 -1.74535,-0.90312 -0.19924,-0.14632 0.51739,-1.83142 0.69814,-2.12662 0.0806,-0.13229 1.08865,0.27416 1.4543,-0.0287 0.49188,-0.40741 0.24865,-1.11383 0.34907,-1.71889 -0.32771,-1.27578 -0.29073,-2.32075 -0.29073,-3.4958 0.77496,-0.19573 1.82855,-0.24546 1.89071,-1.34017 0.0421,-0.74659 -0.58178,-1.21999 -0.58178,-1.83556 0,-0.24069 1.47374,0.36883 1.91972,0.3497 1.37174,-0.0593 0.17757,-2.30258 0.93054,-2.44699 0.98536,-0.18872 1.64461,0.86167 2.61786,-0.0583 2.17475,-2.05489 -0.54448,-5.50606 3.08329,-5.50606 0,0.41602 -0.55309,1.22956 -0.46543,1.33986 l 1.0182,1.28183 c 0.0864,0.10839 1.7122,-2.74952 2.06509,-1.13615 0.045,0.20594 0.0357,0.94392 0.11636,1.0488 0.77656,1.01183 0.80047,-1.09279 0.8145,-1.28183 0.0255,-0.33887 1.07207,-0.24833 1.33794,-0.49507 0.2104,-0.19574 0.14536,-0.74756 0.14536,-1.04881 0,-0.67805 0.79633,-0.84478 0.95987,-1.48585 0.25503,-0.99748 -1.1081,-1.60126 -1.16357,-2.09761 -0.17501,-1.0928 -1.83843,-0.89451 -2.67588,-0.78644 -0.94552,0.12177 -1.20501,-0.43228 -1.97806,-0.67009 -0.61048,-0.18808 -1.23785,-0.10807 -0.75616,-1.01979 0.93213,-1.76544 0.30412,-3.08489 0.78548,-4.95233 0.40709,-1.57894 1.46323,-3.44161 2.73423,-4.60326 0.57827,-0.52886 0.59899,-2.41097 0.78516,-3.20443 0.27352,-1.16707 -0.96209,-2.11737 -0.6398,-3.52512 0.35608,-0.22985 2.06509,-2.08837 2.06509,-2.53467 0.0485,-0.0322 0.0287,-0.15461 0.0287,-0.23303 -2.02843,-0.50145 -3.33991,1.51455 -5.26473,1.68988 -2.91593,0.26555 -2.28123,0.14346 -3.40304,2.7967 -0.87315,2.06605 -3.41578,5.45059 -5.84652,5.12735 -1.46705,-0.19478 -2.89297,0.40772 -4.39222,0.40772 -2.0042,0 -2.88819,0.36278 -3.9558,2.09761 -0.11253,0.98951 -1.19258,1.98316 -1.19258,2.70935 0,1.0096 3.01411,1.81421 1.74535,3.08808 -0.92448,0.92862 -1.98508,-1.33348 -3.1123,0.61174 -0.15206,0.263 -0.64331,0.56457 -0.37808,0.87411 1.14125,1.33316 0.16099,1.13265 -0.46543,1.25283 -1.63632,0.31368 -2.57068,9.46059 -2.90859,11.1578 -0.54002,1.53336 0.20275,1.7479 0.55245,2.88405 0.46065,1.4951 1.43932,-1.59393 1.8327,-0.37872 0.31687,0.97995 0.99015,0.93213 1.59966,1.5442 0.34652,0.34779 0.32006,4.18979 0.32006,4.92331 0,1.19768 0.0921,2.42883 -0.0443,3.62332 l 0,0 z",284.98282,260.9509,middle,,2,4,2 EE,Estonia,"m 403.45079,222.24246 c -0.57477,-0.28818 -0.21263,-0.92097 -1.13423,-0.85945 -0.57477,0.0386 -1.35962,-0.0631 -1.68733,-0.62641 -0.20562,-0.35289 1.05135,-0.5413 1.33826,-0.68475 0.62673,-0.31337 1.05422,-2.59109 2.0941,-1.66055 0.61685,0.55245 1.38193,0.66084 2.10876,1.03414 0.45618,0.23462 0.87283,0.56488 0.87283,1.1218 0,0.82948 -1.40042,0.61845 -1.87637,1.20884 -0.33217,0.41155 -0.70866,1.43262 -1.42497,0.99078 l -0.29105,-0.5244 z m -1.01788,10.60471 c 1.10045,-1.10683 3.14322,-0.83395 3.88312,-2.14128 0.5786,-1.02171 1.37716,-1.64207 1.78871,-2.75335 0.29456,-0.79473 1.32933,-0.39466 1.87605,-0.83012 0,-0.0593 -0.006,-0.10424 -0.0159,-0.16035 -0.86359,-0.61525 -1.80114,-0.82597 -2.66154,-1.45685 -1.07653,-0.78994 -1.73036,0.15493 -2.8069,0 -0.64809,-0.2767 -1.70199,-0.49666 -2.12343,0.21869 -0.23303,0.39498 -0.4141,0.95668 -0.81449,1.23816 -0.34174,0.24069 -0.70069,0.61239 -0.79984,1.03414 -0.35672,1.51678 -0.6771,0.1696 -1.42529,0 -0.62609,-0.14154 -1.02999,0.59645 -0.59612,1.04881 0.2088,0.21741 0.9487,0.67168 0.58146,0.99078 -0.41378,0.35927 -1.38193,1.43517 -0.56712,1.93726 0.72651,0.44725 1.2388,-0.19287 1.9634,0.64107 0.0287,0.35609 0.11221,0.60283 -0.11636,0.90312 -0.26013,0.3411 -0.74564,0.76636 -0.53811,1.26717 0.15047,0.36406 0.1323,0.67296 0.0727,1.06347 -0.0223,0.13612 -0.0864,0.63789 0.0873,0.68475 0.44949,0.12114 0.9299,-0.63534 1.06156,-0.96145 0.23176,-0.57509 0.42749,-1.26558 0.58178,-1.86458 l 0.56744,-0.85944 z m 17.54179,2.58056 c 0.0223,-0.21422 0.0478,-0.43259 0.0708,-0.65415 0.21232,-2.04405 0.30923,-4.18214 1.48331,-5.88509 0.59485,-0.86327 -1.9822,-0.92288 -2.38515,-0.75743 -0.42239,0.17374 -0.23271,0.69208 -0.23271,1.10714 0,2.4301 -1.89996,2.09282 -2.38515,0.0874 -1.07654,-0.71823 -3.842,0.60888 -3.49038,-1.68957 0.26236,-1.71378 -1.01788,-1.25983 -1.01788,-2.15594 0,-0.82852 -0.68348,-1.45908 -0.64012,-2.18495 0.0529,-0.88112 2.44349,-0.5633 2.44349,-0.90312 0,-1.57097 -2.23278,0.0928 -2.76323,-0.67009 -0.68252,-0.98217 0.75902,-3.33704 0.43609,-3.55413 -1.39564,-0.93946 -0.45937,-0.72396 -0.2037,-1.95192 0.10392,-0.49827 -0.12082,-1.05072 -0.058,-1.54388 0.0383,-0.29902 1.16452,0.30763 1.51264,0.29105 0.93722,-0.0453 3.07978,-0.6516 2.96661,-1.68956 -0.17852,-1.6325 2.34658,-1.24135 3.22866,-2.41799 0.25152,-0.336 0.59421,-1.58532 1.19257,-1.07781 3.23727,2.74442 1.28343,-3.14864 2.93793,-0.75743 0.66466,0.96018 1.34559,0.43004 2.18144,-0.0287 0.63917,0.1138 1.68255,1.27067 2.2688,0.58273 0.40358,-0.47307 0.16577,-1.446 0.72715,-1.60221 1.39691,-0.38828 1.87382,1.03 3.37402,0.32038 1.10204,-0.5209 1.47916,-0.92001 2.67588,-0.23303 1.32169,0.75903 2.66026,-0.26619 4.07216,0.32038 2.22927,0.92575 4.22168,0.59581 6.51565,0.14568 1.21936,-0.23941 1.80688,0.82151 3.1123,0.20402 0.32325,-0.15301 0.51803,-0.35385 0.621,-0.58784 l 0,0 1.09502,1.14126 c 1.4033,1.44983 -0.63023,1.53909 -1.4833,2.30162 -0.99876,0.89228 -0.19797,1.40872 -0.55278,2.30131 -0.2971,0.74851 -0.97452,1.24072 -1.51231,1.80624 -2.36156,2.48238 -0.0976,4.76584 0.34875,7.3123 0.18011,0.78102 -0.34875,1.51518 -0.34875,2.35996 0,1.54452 0.24227,2.40715 0.58146,3.78717 0.21741,0.8859 0.89929,1.39245 1.36727,2.12662 0.51293,0.80525 0.003,2.79287 -0.66913,3.46678 -1.06187,1.06379 -2.24552,1.71188 -2.73422,3.17542 l -0.14537,1.19449 0,0 c -1.99145,0 -3.69918,1.13488 -5.58448,1.36918 -2.08039,0.25822 -2.84452,-1.6513 -4.50857,-2.41798 -1.30925,-0.60282 -1.22796,-1.36217 -2.06509,-2.33064 -0.71313,-0.82534 -2.34658,-2.52797 -3.43236,-2.65102 -1.99305,-0.2257 -4.23634,1.48076 -6.25361,1.92291 l -2.74666,0.42112 0,0 z",427.7034,224.61284,middle,,3,6,1 ES,Spain,"m 151.00163,523.8081 c -0.35608,-0.35481 -0.43163,-0.59996 -0.97452,-0.67009 -0.25408,-0.0325 -0.83363,0.0341 -0.8145,0.39338 0.009,0.168 0.5448,0.36979 0.68347,0.40804 0.47786,0.13294 0.74883,0.31401 0.93086,0.78645 0.12209,0.31623 0.63438,0.64426 0.78548,0.16035 l -0.61079,-1.07813 z m -2.34148,-3.24843 c -0.37266,-0.0287 -1.09502,-0.95348 -1.29458,-1.26717 -0.18298,-0.2869 -1.008,-1.76256 -0.33441,-1.76256 0.6822,0 1.40808,0.52759 1.77436,-0.40804 0.2512,-0.64108 0.11317,-1.15815 0.87252,-1.51487 1.09502,-0.51484 1.60221,-0.0159 2.74888,-0.073 0.94998,-0.0488 0.8604,0.63629 0.59613,1.34017 -0.48105,1.28247 -1.52124,1.3746 -2.34148,2.27262 -0.5939,0.64968 -0.3105,1.82377 -1.46896,1.5732 l -0.55246,-0.16035 z m 19.76468,-4.70495 c -0.30444,-1.22126 0.39849,-3.65582 -1.51263,-3.24842 -0.51229,0.10935 -0.85913,0.7772 -1.35261,1.03414 -0.78166,0.40741 -0.65701,-0.64618 -0.71248,-1.10714 -0.50209,-0.28722 -2.34435,-1.83524 -1.29459,-2.49099 0.27193,-0.16991 1.4135,0.0223 1.78902,-0.0159 1.35835,-0.13962 2.64656,-0.93467 3.91214,-1.39819 0.91395,-0.3344 5.41456,-0.77943 5.45377,0.37872 0.0252,0.7517 0.10743,2.81296 1.26558,2.593 1.43007,-0.27161 1.19258,-0.40103 1.19258,0.87379 0,0.93595 -0.97772,0.82438 -1.55631,1.22381 -1.12627,0.77688 -2.18846,4.04953 -3.63575,4.22423 -0.61589,-0.40454 -0.28531,-1.13934 -1.36727,-1.01948 -0.44853,0.0497 -1.19449,0.30922 -1.61433,0.16003 l -0.56712,-1.20883 z m 18.60112,-4.2392 c -0.76285,-0.14824 -1.52698,-0.92193 -2.35614,-1.12149 -0.65032,-0.15684 -1.27387,-0.1087 -1.93407,-0.18936 -0.9605,-0.11699 -0.24993,-0.64522 0.0437,-1.16547 0.28595,-0.50719 0.0504,-1.57831 0.79983,-1.70423 1.0504,-0.17629 2.83464,0.34556 3.9268,0.50974 0.90567,0.13644 1.98221,-0.1221 2.06509,1.03414 0.0845,1.17982 0.26682,2.16295 0.17469,3.33608 -0.0194,0.24706 -0.0153,0.88846 -0.27638,1.00513 -0.44471,0.19829 -1.50786,-0.6653 -1.81803,-0.94711 -0.12306,-0.17724 -0.51484,-0.95285 -0.62546,-0.75743 z m -59.30488,-74.39936 1.62899,1.80624 c 0.46352,0.15429 2.14861,0.70515 2.38515,1.10682 0.3376,0.57222 -0.30699,1.36918 -0.52376,1.86457 -0.4836,1.10555 2.37559,-0.36182 2.61786,0.61175 0.45842,1.84258 1.34273,4.23985 3.43236,4.60294 0.85466,0.14856 0.87634,1.25633 1.01788,1.95192 0.28468,1.40011 1.49256,1.10938 2.55985,1.31117 1.60763,0.49411 1.56619,0.32835 2.26879,1.98093 1.40329,3.30198 3.8012,1.24422 6.34064,2.06828 0.59931,0.19414 4.01191,2.16136 3.81044,0.64107 -0.0909,-0.6857 -0.43323,-2.92358 0.90184,-1.7479 0.74341,0.65511 1.99528,1.04689 2.87959,1.51487 1.12308,0.5939 1.84831,1.50244 3.08329,1.7479 1.25824,0.25025 1.10523,1.48936 1.51231,2.44731 l 0,0 c -0.30762,0.41156 -0.86135,0.8722 -0.86135,1.41955 0,1.15273 -0.065,2.52446 1.25059,2.94239 0.59358,0.18872 1.4763,-0.28021 2.00707,-0.53875 0.6194,-0.3022 1.07271,-0.3497 1.74535,-0.3497 l 0,0 c 1.03765,1.26844 1.40266,3.00742 3.38869,2.85153 1.27801,-0.1001 2.21683,-0.37298 3.40303,0.29137 0.66499,0.37202 0.85179,1.05263 1.77436,1.19449 1.12531,0.17278 2.4658,-0.42112 3.69408,-0.29137 1.29427,0.13676 2.92677,1.03541 4.09926,1.42752 l 0,0 c 0.0217,0.2614 0.0437,0.52249 0.0634,0.78325 0.15174,0.60697 0.87251,1.45972 0.87251,2.15563 l -0.029,0.0287 c -0.31049,0 -1.89071,-0.73352 -1.89071,0.0287 0,0.73353 0.0775,1.65864 0.37808,2.30163 0.76221,1.6309 0.5295,3.44352 -1.4543,3.67049 -1.41604,0.16226 -2.89457,1.88657 -4.5666,2.30163 -1.92705,0.47818 -6.52171,0.38924 -7.73723,1.92291 -0.66563,0.84032 -1.90985,2.09857 -2.99595,2.24298 -1.66246,0.22091 -3.35744,0.37521 -5.06103,0.26236 -1.75427,0.072 -8.44366,-0.51994 -9.65664,0.58273 -0.70738,0.64268 -5.19875,2.84612 -3.19965,3.84551 1.66725,0.83362 1.57161,0.15397 0.0873,1.57289 -0.42622,0.40772 -0.9758,1.15942 -1.658,0.99078 0,-3.35043 -1.00131,-0.83075 -2.70521,0.75743 l -7.56254,7.04994 c -1.27387,1.18747 -3.04568,4.00649 -4.33389,4.80696 -2.23213,1.78838 -0.82979,5.42923 -0.37808,7.72034 0.38541,1.95415 1.04403,5.05657 3.34502,5.62241 0,1.69658 0.16385,2.70936 -1.77436,2.70936 -1.99273,0 -2.16647,2.52796 -4.45024,2.38897 -2.27995,0 -4.1372,1.03223 -5.7885,2.50534 -0.95094,0.8486 -1.55249,2.83368 -2.87959,2.593 -0.89228,-0.16195 -1.64621,1.51582 -1.74503,2.21396 -0.19573,1.37938 1.06124,2.16423 2.18145,2.44731 0,0.51643 -2.40237,0.44949 -2.76323,0.40773 l -3.98482,-0.46607 c -3.11899,-0.36437 -3.84837,0.99589 -6.57367,1.57321 -0.94583,0.20052 -2.84515,1.65959 -3.66507,2.24297 -2.00962,1.43071 -0.90949,3.72564 -3.257673,4.28256 -2.002604,0.89388 -2.809449,4.04443 -3.839444,0.67009 -0.898337,-2.94398 -2.16487,0.13038 -3.053962,-1.31085 -0.653509,-1.05868 -1.862662,0.74373 -2.356141,1.07782 -1.935026,1.30893 -2.032256,-1.5187 -2.76323,-1.9226 -0.675187,-0.37329 -1.577668,-0.20529 -2.268794,-0.67008 -1.528894,-1.02904 -1.330928,0.11635 -2.530517,0.11635 -1.21489,0 -2.405871,-0.17788 -3.257665,-1.16516 -1.113198,-1.28948 -3.166175,-0.4074 -4.334203,-1.66055 -0.686345,-0.73671 -2.037038,-0.39051 -2.821249,-0.93245 -1.648119,-0.90726 -4.555121,-1.82249 -6.253609,-0.5244 -2.580247,1.97265 -2.398221,0.41889 -4.682954,0.4954 -1.425926,0.0478 -2.751435,1.24198 -3.665073,2.24329 -1.475975,1.61815 -2.215238,0.4871 -3.606735,1.39819 -2.140962,1.40138 -3.549673,-0.5413 -4.392222,-2.12662 -0.747233,-1.4052 -1.27004,-1.01055 -2.617864,-1.34017 -0.958268,-0.23399 -0.922246,-2.65452 -1.192575,-3.46679 -0.240683,-0.72428 -1.950328,-3.30229 -1.890397,-3.72883 0.07077,-0.50464 1.09439,0.29073 1.250595,0.43706 l 1.308932,1.22349 0.02901,-0.0287 c 0,-1.4001 -0.598679,-2.52828 -1.919724,-3.11708 -1.619429,-0.72205 -0.188721,-1.9838 0.930852,-2.24329 0.530459,-0.12305 1.69785,-0.89642 1.512636,-1.45653 -0.452675,0 -1.419869,0.85562 -1.832696,0.40773 -0.678056,-0.7364 -1.013418,-2.18018 -1.308932,-3.11709 -1.5324,-2.50055 -2.918159,-3.76708 -4.79931,-5.88477 -0.82406,-0.92735 -4.071525,-2.54486 -5.322756,-2.18495 l 0,0 c 0,-1.66502 0.399756,-4.33229 1.047209,-5.85577 0.661798,-1.55726 2.472816,-2.08836 3.053962,-3.67081 0.812902,-1.10746 1.247725,-2.05935 2.879586,-1.83525 1.466731,0.20148 2.0415,0.1492 2.908915,-1.07781 1.124036,-1.58914 -2.472498,-0.95412 -2.472498,-3.40877 0,-1.36217 0.321017,-2.87831 0.610792,-4.19489 0.406452,-1.84449 1.113517,-2.99467 2.559527,-4.22422 l 2.501507,-2.12694 c 0.854025,-0.72619 -1.119893,-1.99241 -1.221585,-3.29177 0.0746,-1.44091 0.211355,-2.40779 -0.232713,-3.78749 -0.344926,-1.0708 0.166087,-1.90697 0,-2.94239 -0.106156,-0.66148 0.271286,-0.95348 0.391149,-1.49606 l 3.592072,0.86264 0.903437,-1.08547 c 0.796006,-0.89642 2.327131,-2.7594 2.559526,-3.90352 0.235582,-1.1591 -0.683794,-3.65296 0.203704,-4.36991 0.628963,-0.50846 1.678085,-0.0223 2.559526,-0.69941 0.915232,-0.70133 1.530806,-2.43648 1.774358,-3.55414 0.14951,-0.85466 0.480409,-1.82632 0.523445,-2.68035 0.03092,-0.61079 -0.20211,-1.39819 0,-1.9516 0.471165,-1.29172 2.359648,-1.7479 3.607054,-1.95192 1.294268,-0.21199 2.268476,-0.62227 3.461051,-1.07813 1.322958,-0.50528 2.098881,-2.03289 2.559845,-3.23376 0,-1.19162 -1.500522,-1.47693 -2.181447,-2.33064 -0.511969,-0.64139 -0.44343,-2.46835 -0.262042,-3.23375 0.178201,-0.75297 0.506869,-1.10459 0.291051,-1.86426 -1.49032,-0.30061 -2.453689,-1.37779 -3.868458,-1.66055 -1.290761,-1.61528 -3.737437,0.8722 -5.206718,-0.46606 -0.709934,-0.64618 -2.808178,-2.66154 -3.752101,-2.70936 -1.36982,-0.0698 -1.945546,1.05263 -3.286994,0.0287 -0.914595,-0.6975 -1.443141,-2.60639 -0.727149,-3.64148 0.22825,-0.32963 1.069205,-1.13137 0.98919,-1.45685 -1.265896,0 -2.058396,0.74596 -3.40335,0.34971 -2.045326,-0.60314 -1.509129,0.006 -3.170319,0.61175 l -1.753956,0.69559 0,0 c -0.172781,-0.25408 -0.941691,-0.50177 -0.863907,-0.98696 0.163536,-1.01757 0.04304,-2.12471 1.279922,-2.50534 0.985365,-0.30348 3.272649,-0.87187 3.897467,-1.66055 1.698488,-2.14319 -3.053961,1.11798 -3.053961,-0.37872 0,-0.90598 0.997797,-1.2423 1.599663,-1.5732 0.926709,-0.5091 1.953197,-0.20562 2.326813,-1.28184 0.397526,-1.14603 -2.680664,0.14091 -3.432041,-0.55341 -0.489016,-0.4514 1.890396,-1.72781 2.355823,-2.56399 0.342694,-0.61493 1.679041,-1.28183 0.349069,-1.28183 -0.987915,0 -1.888802,0.50017 -2.501507,1.3695 -1.076537,1.52634 -1.63473,0.75967 -1.308932,-0.78676 0.646497,-0.80844 1.48522,-1.43167 2.123428,-2.18495 0.480091,-0.56617 1.405205,-0.21582 1.134557,-1.31085 l -0.02933,-0.0287 c -0.466383,0 -3.163624,1.77149 -2.559527,0.17501 0.721092,-1.90474 -1.723033,-1.37014 -1.105228,-2.30163 0.391787,-0.59134 1.427201,-1.0539 0.959862,-1.83524 -0.736075,-1.22988 1.867125,-0.46128 2.239785,-0.75744 -0.0628,-0.24992 -1.127543,-1.38384 -0.523764,-1.54419 0.30444,-0.081 1.509448,0.0402 1.774358,0.20402 1.852142,1.14572 1.349099,-0.75552 2.530517,-0.84478 0.669767,-0.0507 1.368226,0.71344 1.919724,1.01948 0.883673,0.48997 3.02304,0.51037 3.519388,1.34017 1.484264,2.47951 2.239785,1.09662 2.239785,-0.96146 0.19669,-0.19669 -0.13644,-0.52727 -0.232713,-0.69909 -0.13644,-0.24292 -0.05674,-0.37426 0.05834,-0.61175 0.240683,-0.49508 -0.402306,-1.01565 -0.02933,-1.45653 0.12082,-0.14314 0.632789,-0.20402 0.814496,-0.20402 0.32293,0 0.675506,-0.0287 0.989191,-0.14569 1.78966,-0.31241 1.882107,-0.22379 3.228337,-1.01979 0.914595,-0.54098 0.804614,0.96018 1.250913,1.22381 0.349707,0.2069 0.913001,-0.0877 1.250594,0.14569 0.279256,0.19254 -0.05483,0.97548 0.436417,1.33985 0.771142,0.57158 1.321365,0.0255 2.152438,1.13615 0.639164,0.85371 1.858836,3.27042 2.73422,3.52513 2.260506,0.65861 4.832464,0.55819 7.184461,1.45685 0.919058,0.3513 2.467716,1.64334 3.345013,1.51486 0.887817,-0.13006 2.796702,0.5939 2.850258,0.37872 0.146323,-0.58943 -0.557236,-1.16548 0.436417,-1.16548 2.299398,0 0.34907,1.85597 1.570655,2.47633 l 4.246856,2.15594 c 5.400858,2.55698 8.35249,6.25425 14.776017,6.00113 1.14125,-0.0449 2.0772,1.06411 2.61786,0.69942 1.09343,-0.73831 3.43172,0.64171 3.08297,0.99046 -2.58471,2.58471 0.60569,1.50403 1.89072,1.80624 0.74627,0.17565 2.29302,2.48557 2.76323,1.68956 1.24167,-2.10303 1.45876,-0.70228 3.1123,-0.49507 1.32232,1.16707 2.33637,0.77177 3.22865,2.38865 0.4683,0.84797 1.90219,1.54133 2.70521,2.03927 1.95416,1.21139 3.95198,-1.35069 5.67183,-0.29105 l 0,0 z",96.142906,493.52051,middle,,2,1,6 FI,Finland,"m 381.35898,202.46535 c -0.5346,0.0759 -2.35614,-2.48557 -2.35614,-3.00073 0.42813,-0.10807 1.94204,-0.49029 1.658,-1.22382 -0.26363,-0.68188 -1.06952,-1.43166 -0.55277,-2.2723 0.41697,-0.67901 1.51327,0.32038 1.80337,0.64108 0.51197,0.56521 2.76928,1.27227 1.68701,2.06828 -0.75999,0.55851 -1.0386,0.64841 -0.98887,1.63154 0.0223,0.45236 0.25184,1.19449 0.81449,1.19449 0.97995,0 1.46928,-1.00226 1.36695,0.6991 -0.0599,0.99461 -1.82409,0.5244 -2.44317,0.5244 l -0.98887,-0.26204 z m 4.21753,-147.528371 c 1.25952,1.50148 2.26816,3.30006 3.37402,4.95233 1.46833,2.19451 3.82415,2.73549 5.93387,4.13687 0.68252,1.53017 1.93502,3.25926 2.9376,4.60294 0.4632,0.62131 1.07048,1.40584 1.91973,1.42752 0.6567,0.0159 1.89709,-0.49412 2.44349,-0.26204 0.33982,1.72208 1.3797,3.53246 1.42497,5.331365 0.0395,1.58373 -1.27546,3.94593 0.90184,4.34058 0.55692,0.78166 0.0893,1.76639 -0.23271,2.68035 -0.55915,1.58787 -0.59964,1.48267 -0.46543,3.11708 0.82884,1.5308 2.13682,1.70104 2.76323,3.35043 0.8298,2.183682 -0.78517,4.617922 -0.78517,6.846232 0,3.13812 2.498,5.463024 2.64688,8.273754 l -0.051,1.59233 0,0 c 0.10743,0.0287 0.17756,0.0966 0.19637,0.21391 0.25758,1.59839 3.92488,1.47661 3.63575,3.0004 -0.14314,0.75361 5.89943,1.19927 5.00301,5.04 -0.30348,1.29968 -0.76221,2.74378 0.52345,3.67081 1.45971,1.05199 3.02495,1.52698 0.75647,3.26276 -0.08,0.63949 -0.96655,1.71188 -1.51263,0.90312 -0.63725,-0.94456 -0.86519,0.5582 -1.10523,0.8451 -0.60123,0.71759 -3.03452,0.31624 -3.72309,1.16516 -0.48105,0.59358 -0.46957,2.73773 -0.72715,3.64149 -0.46798,1.6427 -0.77624,1.8346 -1.8327,3.00072 -0.87698,0.96847 -1.49032,2.90031 -2.41416,4.13688 -0.65925,0.88207 -0.62545,0.42749 -1.48331,0.64107 -0.15492,0.0383 -1.34686,2.25094 -1.4833,2.59268 -0.59326,1.48745 -2.13108,1.56651 -3.1123,2.73837 -0.5719,0.68252 -1.29331,1.21552 -1.39628,2.12693 -0.14218,1.2592 -0.2563,2.30992 -1.4543,3.02974 -1.76416,1.98635 0.0736,2.29589 -0.55277,4.42824 -0.85881,2.92199 -2.20376,0.83968 -2.73422,-0.72842 -0.18777,0.0462 -0.5684,0.58688 -0.90153,0.69909 -0.81131,0.2732 -2.75749,-0.24323 -2.5015,1.07813 0.56648,2.92486 0.50144,3.21782 -1.19258,5.44772 -0.83107,1.09376 -1.28757,2.0007 -0.66913,3.2921 0.39593,0.82756 -0.78357,5.94502 0.52376,5.44772 2.05521,-0.7823 -0.23908,3.10337 0.11636,4.51559 -0.0287,-0.11859 -0.0893,1.34272 0.058,1.63154 0.77465,1.51583 1.4543,0.15589 1.4543,2.35965 0,1.03733 0.90184,1.5748 0.90184,2.38898 0,0.49061 -0.88622,0.86231 -0.8435,1.80623 0.0328,0.73225 1.17663,3.48018 0.52344,4.13688 -0.22666,0.22761 -0.75743,-0.6975 -1.2796,-0.0877 -0.29998,0.35003 1.42369,4.60294 1.86138,5.24402 0.36533,0.5346 -0.79345,1.1489 -0.32006,2.0976 0.59549,1.19417 0.79856,2.18049 1.19258,3.46679 0.81832,1.38002 1.55408,-0.91364 2.82157,-0.75743 0.10105,0.40932 -0.75808,2.56367 0.14536,2.56367 2.71063,0 1.77627,2.64974 5.20672,0.93213 0.63215,-0.31624 1.88848,-0.19064 0.98887,0.61175 -0.41984,0.37489 -1.6953,0.73097 -0.61079,1.19448 3.90034,1.66661 -4.26535,4.36736 0.72715,5.65175 1.48745,0.38254 1.5732,0.83426 2.53051,-0.84478 0.22507,-0.39434 2.99595,-6.32438 2.99595,-4.54461 0,1.69116 -0.63534,2.18368 0.58178,3.72883 1.38544,1.7581 -2.03034,3.94497 -0.0287,3.08808 1.03605,-0.44343 1.69116,-0.3376 1.13424,0.61175 -0.36629,0.62386 -1.46641,0.94997 -1.22159,1.68988 2.25381,0 1.6172,-0.68635 3.34502,-2.01026 1.17727,-0.90185 2.52414,-0.38446 3.60673,-1.10683 1.69913,-1.13328 3.53852,-1.14188 4.42123,-2.4183 0.66467,-0.9605 4.74608,-1.84672 6.0209,-2.447 1.6462,-0.3666 2.36921,-1.47342 3.60673,-2.38897 1.08642,-0.80334 0.55437,-1.88657 1.10523,-2.85504 0.36437,0 1.45239,1.19417 2.50151,1.22382 2.16328,0.0612 3.71385,-1.16644 5.67182,-1.51519 1.43677,-0.25599 3.12187,0.01 4.36322,-0.87379 0.0775,-0.86423 0.27033,-1.22701 0.54098,-1.31499 l 0,0 c -1.25315,-2.99913 3.80948,-10.91967 5.56726,-12.96021 1.36982,-1.58978 2.31821,-3.41387 3.60674,-4.95233 2.02173,-3.73999 5.4933,-6.89915 7.8826,-10.48803 2.17762,-3.27137 3.10337,-7.13856 5.2354,-10.34203 2.1008,-4.90228 -0.2547,-5.49107 -2.90859,-8.97285 l -2.06509,-2.70935 c -0.77178,-1.01246 -2.78172,-0.79314 -3.43236,-1.71889 -0.45491,-0.64777 -0.81864,-1.40234 -1.30893,-2.01026 -1.42338,-1.76384 -2.95355,-2.21269 -1.83238,-4.95233 0.36692,-1.93598 0.69431,-4.63067 -0.11636,-6.46751 -0.78038,-1.76735 -2.28537,-2.91019 -2.32681,-4.98166 l -0.0874,-1.22381 c -0.0886,-1.43868 -2.11992,-2.06828 -2.70521,-3.32111 -0.56233,-1.20277 -0.89865,-2.29812 -1.04689,-3.61247 -0.10902,-0.9656 -0.30986,-1.72558 -0.52376,-2.68003 -0.91906,-1.58691 -1.22924,-2.06668 -0.69814,-3.93317 0.46415,-1.62995 0.67519,-3.13047 0.46542,-4.80664 -0.43833,-3.503454 -4.07056,-6.142034 -5.38109,-9.293544 -1.1218,-1.78361 -3.05747,-2.972682 -3.49038,-5.156352 -0.33536,-1.69307 0.83904,-3.21017 1.36727,-4.69061 0.92639,-2.59746 3.06895,-6.61702 0.87252,-8.943525 -1.19545,-1.26589 -2.93665,-3.59143 -3.31601,-5.30235 -1.79189,-1.79189 -4.00489,-3.27871 -5.38109,-5.44772 -1.08674,-1.71251 -0.33217,-3.5739 -0.55246,-5.36037 -0.50144,-0.35896 -1.59105,-0.5464 -1.658,-1.10714 l 0,0 c 0,-0.69942 0.0587,-1.40744 0.23272,-2.06828 0.13803,-0.52313 0.0972,-1.08387 0.17437,-1.63155 0.0676,-0.47817 0.23272,-0.95093 0.23272,-1.45652 0,-0.76477 -0.12465,-1.47534 -0.14537,-2.21429 -0.0701,-1.71347 0.0328,-4.21816 -0.69814,-5.79742 -0.77433,-1.67394 -3.6045,-1.8209 -5.14838,-2.68003 -0.52217,-0.29073 -1.60477,-1.3695 -2.15244,-1.34017 -1.49638,0.08 -0.60505,1.70677 -1.51232,2.21396 -0.51324,0.28659 -1.20118,0.0127 -1.71633,0.20402 -1.02458,0.37872 -1.22255,1.31212 -1.80337,2.15595 -0.26141,1.05422 -1.89709,2.33255 -1.39596,3.3211 0.45108,0.89069 0.37011,1.40074 0.40709,2.38866 0.0816,2.16295 0.48487,5.06741 -0.20371,7.1376 -0.46383,1.39373 -2.26369,1.51008 -2.35582,3.08807 -0.14122,2.41958 -2.10494,3.01029 -4.04315,3.49612 -2.11259,-0.4989 -2.92549,-0.88431 -4.10117,-2.62201 -0.77752,-1.14858 -2.84102,1.13296 -3.63607,1.48554 -4.15696,1.84513 -6.95716,-3.61821 -9.04584,-6.05947 -0.61048,-0.71312 -3.90321,-5.21469 -4.45025,-4.19521 -0.38604,0.72013 -0.80844,2.64687 -0.95986,3.49611 l -2.61786,0.67009 0,0 z",425.38202,159.5648,middle,,2,6,0 FR,France,"m 254.43562,491.2952 c 0.2308,-0.69527 0.22283,-1.27897 0.62546,-1.93726 0.27384,-0.44726 0.65255,-0.85562 0.95986,-1.26749 0.70515,-0.94392 1.21776,-1.80305 1.16325,-3.01539 -0.0268,-0.59358 0.14281,-1.5952 -0.0143,-2.11227 0,-1.77787 -1.12658,-4.82609 -0.33472,-6.42384 0.2002,-0.4039 1.44505,-4.44163 -0.10169,-3.39411 -0.76031,0.51516 -0.82821,1.2506 -1.30894,1.96627 -0.39816,0.5923 0.1747,0.82278 0.1747,1.3695 0,0.87029 -1.13679,0.66594 -1.59998,0.43706 -1.66438,-0.82183 -4.60996,0.42398 -5.87553,1.68956 -0.5939,0.59389 -0.66595,2.31629 -1.55631,2.31629 -0.42972,0.27384 -1.01406,0.58019 -0.42175,0.99047 0.26809,0.18585 1.19863,0.48997 1.09088,0.91778 -0.10935,0.43259 -1.65673,0.0255 -1.43995,1.41285 0.11699,0.74756 0.13133,1.25506 0.94551,1.50053 0.26428,0.0797 1.22605,0.49124 1.19258,0.84478 -0.0357,0.37776 -1.50244,0.50782 -1.64334,1.32582 -0.13453,0.7823 -0.73416,1.04913 -1.07622,1.73324 -0.57859,1.11894 0.21773,0.94711 0.9452,0.94711 0.14026,0.69017 -2.02524,2.53466 -0.66913,2.53466 0.80302,0 2.81934,-0.59645 1.45462,0.81577 -1.2235,1.26654 3.04631,2.54231 3.31568,3.21909 0.27129,0.68061 -0.003,1.03542 0.72715,1.38385 0.60601,0.28882 0.64809,0.92097 1.41094,0.72843 0,-0.60825 -0.64171,-1.50626 -0.21837,-2.08295 0.29201,-0.39816 0.69814,-0.55181 0.88718,-1.0488 0.36597,-0.96241 -0.82597,-1.059 0.40741,-1.64621 0.54831,-0.26108 0.54544,-2.05138 0.59613,-2.593 l 0.36373,-0.61174 z M 115.15169,347.79533 c -0.37585,0.16863 -0.84669,0.24387 -1.23625,0.0159 -0.36246,-0.21359 -0.67455,-1.32902 -0.0437,-1.35484 0.27224,-0.0128 0.6959,0.10775 0.94519,0.20402 0.35003,0.13549 0.49317,0.34684 0.71281,0.64076 l -0.37808,0.49539 z m 27.92367,51.74202 c -0.22985,-0.26459 -0.3274,-1.06538 -0.46543,-1.42752 -0.2002,-0.52377 -0.31368,-1.07813 -0.24738,-1.63154 0.32261,-0.18139 0.72078,0.42334 0.88718,0.67008 0.47021,0.69559 0.71281,1.10109 0.71281,1.96659 0,0.30571 -0.0316,0.52472 0.029,0.83043 0.0488,0.24579 0.14441,0.46957 0.0147,0.6991 -0.36724,0.0459 -0.55532,-0.3207 -0.68379,-0.62641 l -0.24706,-0.48073 z m 0.61079,-5.25868 c -0.65734,-0.0536 -1.34272,-0.3411 -1.62899,-0.99047 -0.28563,-0.64713 0.37871,-0.25407 0.66913,-0.18936 0.37074,0.0823 0.81641,-0.0191 1.16356,0.14569 0.16418,0.0775 0.22793,0.29137 0.31974,0.43705 0.22092,0.35162 0.60888,0.50528 0.8145,0.81577 0.0695,0.10552 0.0988,0.19255 -0.0727,0.20371 -0.2002,0.0127 -0.62131,-0.0727 -0.8145,-0.13102 l -0.45076,-0.29137 z m -15.96508,42.93813 c 4.08077,2.51362 7.46627,-7.10764 8.78412,-9.43923 0.90822,-2.27421 1.28375,-4.71993 2.23979,-6.90425 0.52791,-1.20564 2.12406,-0.70738 1.80337,-1.86457 -0.24483,-0.8824 -0.50018,-0.72173 -1.19258,0.14568 -0.63853,0.80047 0.33664,-2.52988 0.49444,-2.88437 1.12499,-2.52764 1.96244,-4.96795 2.64687,-7.63267 0.17406,-0.67742 -0.13516,-2.70936 0.55277,-2.70936 1.2506,0 1.90347,0.48456 2.41416,1.63155 1.43709,3.22833 1.01406,6.90042 1.86171,10.25468 1.51359,-1.13105 -0.21359,-9.00823 -0.72715,-10.60439 l -0.55277,-1.71889 c -0.32006,-1.20341 -3.34278,-2.32203 -2.03608,-3.02973 1.82472,-0.98888 0.65701,-2.01887 1.25059,-3.2921 0.46861,-1.00481 1.1556,-1.39086 1.2219,-2.56367 0.043,-0.75871 0.0564,-2.81838 1.10523,-3.02973 l 0,-0.14569 c -2.79957,-0.69208 -6.01516,-2.55155 -7.0681,-5.50606 -0.25567,-0.70515 -0.52695,-1.37619 -0.93086,-2.01025 -0.1189,-0.18713 -0.12655,-0.42431 -0.23271,-0.58243 -0.44917,-0.66976 -0.72874,-1.77053 -0.87251,-2.59299 0.85115,-1.58245 3.03451,-2.73582 1.59966,-4.57361 -1.13583,-1.4543 2.34849,-1.77723 3.02527,-1.77723 0.0188,-0.0568 0.0105,-0.001 0.029,-0.0583 -1.21712,-0.40263 -1.59106,-0.87602 -3.316,-0.6991 -1.86426,0.19159 -3.77123,0.70133 -2.79224,-1.60221 0.2139,-0.50304 -0.80334,-1.47566 0.029,-1.51519 0.89005,-0.0421 1.36695,-0.89036 1.36695,-1.74789 -0.78644,-0.19446 -1.59616,-0.15462 -2.38483,-0.46607 -0.65351,-0.2579 -1.40393,-0.99046 -2.12343,-0.99046 0,-0.79984 2.27166,-0.35928 2.18145,-1.34018 -0.0271,-0.29487 -2.13873,-0.67008 -2.4725,-0.67008 -0.80493,0 -1.41605,0.64936 -2.0941,0.55373 0,-0.5005 -0.17406,-1.64207 0.17437,-2.03959 0.52441,-0.59772 1.34974,-0.96114 -0.29073,-0.96114 -1.16133,0 -0.49603,-0.66977 -0.90184,-0.81577 -0.88495,-0.31815 -2.05744,0.84542 -2.61755,-0.37872 -0.42366,-0.9267 -0.12177,-2.94876 -1.07622,-3.1174 -2.0721,0 -2.28696,0.13262 -2.99594,-2.03927 -0.67774,-2.07497 -1.60508,0.87348 -2.26879,1.16548 -0.83458,0.36756 -1.28885,-0.75552 -2.00707,-1.0488 -1.18429,-0.48328 -0.0379,-1.8582 -0.66913,-2.70936 -0.75712,-1.02106 -1.70455,-0.49794 -2.53052,-0.99046 0,-1.20947 2.88341,-0.24738 3.34501,-0.29137 2.65038,-0.2528 -0.20561,-1.80432 -0.8435,-2.18495 0,-0.3953 0.71153,-0.56234 0.95986,-0.72843 0.19127,-0.12751 0.44566,-0.59644 0.55277,-0.61175 0.20084,0.61653 2.67589,3.92776 2.67589,1.5442 -0.21933,-0.074 -1.00354,-0.69878 -1.13424,-0.96146 -0.17693,-0.3564 0.97931,-1.18907 0.52344,-1.34017 -0.9758,-0.3242 -5.08621,0.56011 -4.79931,-0.81577 0.0886,-0.42654 0.87857,-2.63062 1.07622,-2.76738 0.53843,-0.37234 3.41005,-0.83394 4.07216,-0.72842 0.99111,0.1578 1.62995,0.89228 2.73422,0.84478 0.92129,-0.0399 1.90156,-0.81928 2.7339,-0.69909 0.19064,0.94487 -0.29806,1.79412 0.75648,2.41798 0.81227,0.48009 1.14157,-0.79537 1.68701,-0.75743 0.43801,0.0319 0.74979,0.65765 1.2506,0.55341 0.9809,-0.20466 0.5703,-1.39277 0.64012,-2.01026 0.0328,-0.29041 2.16072,-0.54449 2.35582,-0.34939 1.63027,1.63027 0.92766,0.48009 2.93792,0.67009 0.6771,0.49252 1.10077,1.40425 0.95987,2.21396 -0.24834,1.42369 0.26809,1.00513 0.61079,2.12662 0.32548,1.06442 -0.63343,3.6418 0.2037,3.6418 0.65734,0 1.94619,-0.64172 2.53052,-0.96146 1.72909,-0.94552 0.39593,-1.10714 2.64687,-1.10714 0.49253,0 -0.38955,1.05837 -0.34907,1.22382 1.63983,0.40517 2.93761,-0.43228 2.93761,1.2525 0,1.97201 1.16356,1.56683 1.16356,0.1747 0,-1.07495 -0.22442,-1.04849 1.13456,-1.04849 0.26236,0 0.32612,1.80337 1.33794,2.35965 0.63917,0.35098 4.44642,2.11578 3.22866,-0.32038 -1.58436,-3.16872 -0.94233,-3.8879 -0.49444,-7.39996 0.25089,-1.96563 -0.64012,-1.81293 -0.64012,-3.29177 0,-1.26654 -1.5273,-4.18023 -0.55245,-4.92364 2.15467,-1.64238 -1.04721,-2.05903 -1.04721,-3.4958 1.29682,-0.32771 3.4958,1.21362 4.68295,1.60222 1.31116,0.42876 6.84368,0.29647 3.51939,3.26276 -1.34878,1.2031 0.82247,1.92546 0,2.97172 -1.66852,2.12343 1.81803,1.45876 2.85058,1.28183 1.01692,0.0475 3.18211,1.21362 4.18852,1.68956 0.95826,0.453 0.83617,2.17444 1.39627,2.15595 l 7.76625,-0.26204 c 0.431,-0.0159 3.30102,0.2834 3.40303,-0.0287 -0.0446,-0.0159 -0.029,3.1e-4 -0.029,-0.0583 -1.02234,-0.2512 -8.19501,-2.01441 -5.90486,-4.10755 2.46676,-2.25509 7.7044,-1.77627 10.90756,-2.62201 l 2.64719,-0.69909 c 0.99843,-0.4581 2.56303,-0.70229 3.31568,-1.45685 0.30827,-0.30922 0.81067,-1.01948 1.27993,-1.01948 0.19414,0 0.8435,0.16928 0.8435,0.0583 0,-0.46001 -0.29137,-0.85115 -0.49444,-1.22381 -0.86773,-1.58979 1.84195,-6.10761 2.55953,-7.72002 0.93245,-2.09442 1.55982,-1.31882 3.75242,-1.60222 2.22257,-0.28754 4.92396,-0.33217 7.26639,-0.99046 l 0,0 0.44152,1.31084 c -0.47818,0.80621 -1.40138,1.21138 -1.22159,2.33064 0.34047,2.12088 1.00354,3.35202 3.14131,2.2723 1.54579,-0.78039 2.38228,0.0319 1.97775,1.63154 -0.94106,3.72596 1.91366,2.5624 2.61786,4.98166 0.3344,1.14858 0.70611,2.08485 1.83238,2.70935 1.06283,0.58976 2.1553,-0.0338 2.79255,1.36918 -0.27734,1.77819 0.13389,4.51337 1.22159,5.94312 1.19736,1.57448 2.82284,-2.60926 4.04315,-2.35997 0.99302,0.20307 1.03892,3.0766 1.39596,3.96218 0.57158,1.41891 1.61369,2.111 2.64687,3.14641 0.99908,1.00067 1.1623,3.72883 2.90892,3.72883 2.37304,0 2.22512,-0.31081 4.30487,1.07813 l 0,0 c 0.47723,0.43961 0.88176,1.06188 1.54165,1.25251 0.2461,0.0711 0.61972,0.0357 0.87251,0 0.41953,-0.0593 0.85467,-0.11285 1.27961,-0.14569 l 1.80368,0.17502 0,0 c 1.30256,1.02744 2.184,2.42755 3.1123,3.72883 0.9519,1.33379 2.57324,1.05071 3.92648,1.63154 1.87318,0.80429 2.4199,2.79256 4.7703,3.37944 1.94077,0.48424 3.98514,1.23051 5.61381,2.41799 l 1.04179,0.95093 c -0.67168,1.11479 -1.36823,2.27007 -2.3775,3.33163 -2.10366,2.21332 -3.95007,3.88248 -4.59561,6.93357 -0.34014,1.60796 -1.33029,2.43457 -2.09442,3.72883 -0.94838,1.60636 -0.70196,3.1563 -1.19257,4.92364 -0.18649,0.67264 -0.11445,1.73005 0.23622,2.5573 l 0,0 -2.12917,0.99684 c -1.0743,1.03924 -3.20666,0.18234 -4.3919,-0.26236 -1.54866,-0.58147 -1.81803,-0.75712 -2.73422,0.46638 -0.56298,0.75138 -1.55886,1.51391 -0.37808,2.24297 0.55086,0.34046 1.99719,0.0823 1.30893,1.07813 -0.80876,1.16963 -2.71127,2.63476 -4.18852,2.47633 -2.54071,-0.27225 -3.34852,3.13939 -5.46844,4.34058 -1.19959,0.67933 -1.76862,1.93821 -2.38515,3.08807 -0.66753,1.24422 -1.85788,2.14383 -2.87958,3.08807 -0.83172,0.6092 -1.37269,1.09694 -0.75616,2.09761 0.43068,0.69973 0.83426,1.25505 1.71602,1.39851 1.20692,0.19605 2.32585,-0.23941 2.64687,-1.45685 0.45268,-1.71475 1.58659,-2.02684 3.17064,-2.33064 2.88915,-0.55469 3.60673,1.53368 3.60673,4.02052 -0.2359,0.4718 -0.34907,0.79282 -0.34907,1.31084 0,0.35099 0.0561,0.56521 0.23272,0.87411 0.23271,0.40773 0.51707,0.72205 0.55245,1.19449 0.0392,0.51866 0.0159,1.05454 0.0583,1.5732 l 0,0 -2.06509,0.55342 c 0.12177,0.5177 -0.0316,1.03222 0.11636,1.51486 0.25152,0.82151 0.98887,0.59486 0.98887,1.71889 0,0.73098 -0.25503,1.74758 0.40709,2.2723 1.61592,1.28152 0.99014,2.29972 -0.20371,3.4958 -0.88622,0.8875 -1.78233,1.61242 -3.05396,1.83557 -0.80557,0.14154 -1.66246,0.16385 -1.62899,1.16516 0.0287,0.8655 0.28149,2.49863 1.04721,2.97171 1.42497,0.87985 1.94873,0.8926 1.94873,2.70936 -0.98887,1.63186 -2.96853,1.66055 -2.23947,4.13687 0.45778,1.5544 0.1103,3.31792 0.90153,4.77764 0.93117,1.71697 5.12001,1.27609 5.23573,3.43777 0.043,0.80302 -0.54513,1.1387 -0.75616,1.86426 -0.31369,1.07813 0.0708,2.7355 0.37808,3.8165 l 0,0 c -0.18075,0.0424 -0.40932,0.0982 -0.67232,0.16481 l 0,0 c -0.0947,-0.0319 -0.29073,-0.84319 -0.39211,-0.85722 -0.79983,-0.11189 -1.66979,-0.30444 -2.33892,0.3427 l -0.22028,1.34814 0,0 c -1.32774,0.4192 -2.59141,0.89483 -3.09541,1.30319 -1.81994,1.47311 -3.40207,1.06857 -5.26473,2.15563 -1.293,0.75425 0.52631,2.26816 -0.64012,2.33064 -1.44378,0.0771 -2.68673,-0.22666 -4.15919,0 -1.00864,0.15493 -4.04029,0.54066 -4.945,-0.20371 -0.87538,-0.71981 -0.77019,-1.59934 -2.0941,-1.92291 -1.74312,-0.42589 -2.73709,-0.20593 -3.19965,-2.18495 -0.45076,-1.92929 -3.44033,-0.85626 -3.57772,-2.30163 -0.11923,-1.25251 -0.54162,-0.36788 -1.51232,-0.0874 -0.78549,0.45842 -1.34113,0.5193 -2.21077,0.20403 -0.94903,-0.34365 -0.16004,-0.91301 -0.55246,-1.45653 -0.55979,-0.77465 -3.86878,-1.29555 -4.88666,-1.86458 -0.86805,-0.48487 0.39147,-2.41798 -0.95986,-2.41798 -1.71953,0 -4.24144,1.79029 -5.78818,2.59268 -1.14795,0.59581 -2.4505,0.6382 -3.66507,1.25282 -1.68255,0.8518 -1.68287,1.97296 -2.87959,3.08807 -0.27894,0.26013 -2.20918,-0.99365 -1.71602,0.93213 0.38222,1.49319 1.06825,1.10906 0.69814,3.05906 -0.29902,1.57512 -0.16705,3.18371 -0.0344,4.78114 l 0,0 c -1.17249,-0.3921 -2.80499,-1.29076 -4.09926,-1.42752 -1.22828,-0.12974 -2.56877,0.46416 -3.69408,0.29137 -0.92257,-0.14186 -1.10937,-0.82246 -1.77436,-1.19448 -1.1862,-0.66435 -2.12502,-0.39147 -3.40303,-0.29137 -1.98603,0.15588 -2.35104,-1.58309 -3.38869,-2.85154 l 0,0 0.1307,-0.67008 c -0.29551,-0.90025 -0.5126,-1.87988 -1.38161,-2.37432 -0.96146,-0.54735 -1.84704,-0.49539 -2.9086,-0.49539 -0.005,0.0287 0.007,0.0392 0.0179,0.0663 l 0,0 c -0.40708,-0.95795 -0.25407,-2.19707 -1.51231,-2.44731 -1.23498,-0.24547 -1.96021,-1.15401 -3.08329,-1.7479 -0.88431,-0.46798 -2.13618,-0.85977 -2.87959,-1.51487 -1.33507,-1.17568 -0.9927,1.06219 -0.90184,1.7479 0.20147,1.52029 -3.21113,-0.44694 -3.81044,-0.64108 -2.53944,-0.82406 -4.93735,1.2337 -6.34064,-2.06828 -0.7026,-1.65258 -0.66116,-1.48681 -2.26879,-1.98093 -1.06729,-0.20179 -2.27517,0.0889 -2.55985,-1.31116 -0.14154,-0.69559 -0.16322,-1.80337 -1.01788,-1.95192 -2.08963,-0.3631 -2.97394,-2.76036 -3.43236,-4.60294 -0.24227,-0.97357 -3.10146,0.4938 -2.61786,-0.61175 0.21677,-0.49539 0.86136,-1.29236 0.52376,-1.86457 -0.23654,-0.40167 -1.92163,-0.95253 -2.38515,-1.10683 l -1.62899,-1.80623 0,0 z",180.32799,397.85147,middle,,4,1,5 GB,United Kingdom,"m 213.29162,172.19 c 0.0363,0.79441 0.81864,1.33667 -0.24706,1.96659 -0.70292,0.41505 0.35512,1.27769 -0.3054,1.96658 -0.36501,0.38031 -0.90567,0.68348 -1.22158,1.07781 -0.41793,0.52249 -0.75584,1.68574 -1.00354,2.33096 -0.0191,0.05 -0.67869,2.6762 -0.94552,1.57321 -0.0934,-0.38542 0.0523,-0.86806 0.1747,-1.23817 0.38095,-1.15368 0.91651,-2.29876 1.1489,-3.49611 0.19956,-1.02649 -0.95508,-0.90344 -1.62899,-1.03446 -0.7262,-0.1409 -1.07622,-1.44729 -0.18904,-1.48586 0.66945,-0.0287 1.83142,0.4887 2.39981,0.0583 0.99812,-0.7552 -0.3717,-1.88402 -0.87283,-2.47632 -0.15079,-0.36501 -1.14603,-1.31659 -0.14537,-1.45685 0.22698,-0.0319 0.55596,-0.0191 0.74182,-0.1747 0.20115,-0.16863 0.24514,-0.45044 0.40708,-0.64107 0.20371,-0.24037 0.67232,-0.66435 0.97453,-0.75744 0.28021,-0.0861 0.49731,0.17119 0.58178,0.40805 0.11158,0.314 -0.12209,0.84669 -0.2037,1.16516 -0.12178,0.4769 -0.029,0.91364 -0.029,1.39851 l 0.36342,0.81577 z m 1.32359,-1.66055 c 0,-0.32835 0.0921,-0.65192 0.13102,-0.97612 0.0606,-0.50464 0.34078,-1.35388 0.88718,-1.48586 0.54736,-0.13198 0.60314,0.0453 0.4361,0.5244 -0.21167,0.60824 -0.38924,1.30766 -0.47977,1.93758 -0.0344,0.24004 -0.072,0.46319 -0.27639,0.62641 -0.29169,0.23367 -0.63056,0.14409 -0.65446,-0.26236 l -0.0437,-0.36405 z m 3.21399,-2.78236 c 0.0226,-0.35831 0.18554,-0.47754 0.3784,-0.75743 0.15812,-0.22889 0.59517,-0.83331 0.9452,-0.65574 0.16641,0.0842 0.1103,0.64107 0.0583,0.78676 -0.0813,0.22857 -0.28181,0.42781 -0.40741,0.64107 -0.0816,0.13931 -0.18904,0.24834 -0.26172,0.39307 -0.0988,0.19732 -0.19829,0.36947 -0.42176,0.43705 -0.241,0.0733 -0.42175,-0.19286 -0.42175,-0.40772 l 0.1307,-0.43706 z m -34.75587,89.51679 c 0,-1.78552 -0.33823,-3.90767 0.34907,-5.59341 0.57031,-1.39787 0.61079,-2.78841 0.61079,-4.28256 0,-3.02304 -1.90856,-5.15953 -3.83944,-7.22494 l -1.27993,-1.36919 c -1.68095,-2.71031 -2.26146,-0.73352 -4.68295,-0.93212 -1.04275,-0.0854 -5.46812,-2.93761 -5.46812,-3.87484 1.3593,-0.336 4.50379,2.97554 5.43911,0.87411 0.70738,-1.5885 6.25329,-0.0784 5.26474,-1.34017 -1.43422,-1.83142 -0.15589,-1.78552 -2.96694,-2.18495 -4.25132,-0.60378 0.89388,-1.36823 1.94874,-1.0198 1.74025,0.57445 6.65623,-4.26917 7.99895,-5.53507 1.37237,-1.29426 1.85725,-3.14417 3.19965,-4.48658 1.42274,-1.42274 3.53118,-1.16229 2.87959,-3.78717 -0.29584,-1.1913 0.49443,-1.57033 0.49443,-2.56367 0,-0.41633 -2.69054,-0.3548 -3.316,-0.64107 -1.65673,-0.4361 -2.72402,-1.33826 -4.53727,-1.57289 -1.38703,-0.17916 -2.43934,-1.23178 -3.81044,-1.51518 -3.10433,-0.6414 -6.64922,1.69944 -9.56961,0.96145 0,-0.84669 1.16452,-1.22892 1.62867,-1.66055 0.8977,-0.83394 -0.065,-1.1116 0.95987,-1.71889 0.70738,-0.41952 0.98058,-0.29424 1.80368,-0.11636 0.75202,0.16227 1.71602,-0.29902 1.71602,-1.16548 -0.92607,0 -2.01121,0.33314 -2.79224,-0.29136 -0.27033,-0.21582 -2.01153,-1.66056 -1.25091,-1.51487 0.51229,0.0982 1.09535,0.28244 1.59966,0.3207 0.78613,0.0593 1.12723,-0.46894 1.68733,-0.81578 0.31369,-0.19382 0.81291,-0.0402 1.16325,-0.17501 0.64586,-0.24929 0.78804,-0.42558 1.33794,-0.84478 1.42115,-0.85307 3.87484,-2.41001 5.52678,-2.70935 2.07402,-0.37617 3.01571,-0.55565 3.11198,-2.88405 0.0344,-0.83458 0.72747,-1.48554 0.72747,-2.35965 -1.07016,0 -2.16774,0.85944 -3.28699,0.81545 -1.30479,-0.051 -1.28822,-1.1081 -2.93761,-0.5244 -0.41251,0.146 -1.46354,-0.49029 -1.89071,-0.64076 -0.98091,-0.3462 -2.23501,0.65861 -2.87959,-0.43705 -1.28024,-2.17507 -2.92071,0.2206 -3.43236,-0.23304 -0.68921,-0.61047 -0.77433,-1.68509 -1.04721,-2.50533 -0.93245,-2.80244 -2.35487,2.69597 -3.28668,3.26277 -0.44311,0.66753 -0.81545,2.40555 -1.77435,1.5732 -0.82502,-0.71663 -0.83522,0.74787 -0.78517,1.13615 0.36246,2.80786 -2.35678,-0.51483 -1.27992,2.0686 0.22952,0.55022 1.04752,1.6631 0.90152,2.21396 -0.52886,1.99177 -2.80786,-0.67869 -3.14131,-0.81577 -0.6975,-0.28659 -0.48774,1.20565 -0.46543,1.60222 0.21008,3.69695 -1.58149,-0.22985 -1.86138,-1.36919 -0.47467,0.35991 -0.38669,1.00832 -0.34907,1.5442 0.0634,0.90599 -0.21901,0.83713 -0.40709,1.5732 -0.11763,0.46129 1.82536,2.89681 0.20338,2.09729 -0.56935,-0.28085 -1.74088,-1.18014 -1.68701,-0.11635 0.066,1.29681 -0.1342,2.29429 1.36727,1.77722 0.23208,-0.08 -0.12177,0.95349 -0.0293,1.33986 0.13229,0.55118 -0.009,1.49542 -0.40709,1.89358 -0.60697,0.60697 -1.6749,0.17055 -0.98888,1.31116 0.92289,1.53495 -1.21552,0.56298 -1.25091,0.34971 -0.4514,0.38509 -0.40996,1.92483 -0.6398,1.83525 -1.00481,-0.39179 -0.98983,-0.67615 -0.78549,0.37871 0.38159,1.97169 -2.58726,0.57956 -3.92647,0.84479 0,0.44502 2.48811,1.76096 3.02495,1.89358 -0.005,0.0191 -2.27358,0.88048 -1.42529,1.54419 0.99748,0.78103 1.02203,1.19577 2.41416,0.61175 1.34177,-0.56329 2.67588,-1.0166 3.60674,-2.15594 0.10392,-0.12688 0.96496,-0.66116 1.10522,-0.58242 0.16992,0.095 -0.4616,0.9012 -0.55245,1.04848 -0.44917,0.7297 -1.02681,1.9124 -1.8327,2.27262 -0.90662,0.40486 -3.81649,1.96149 -4.24653,2.88405 -0.28085,0.60219 -0.47563,0.94552 -0.63981,1.60222 -0.14217,0.56775 0.23272,0.91873 0.23272,1.36918 0,0.98696 -0.90153,2.43233 0.98887,1.66055 0.97612,-0.3988 4.08969,-3.04344 3.63574,-0.75743 -0.40708,2.05106 0.83203,2.73517 1.42529,4.51559 0.15525,0.54512 0.58179,1.10268 0.69814,1.5732 -1.47406,0 -2.3198,-1.51805 -3.37402,0.37872 -0.89929,1.61879 -0.30253,1.90793 0.17438,3.52513 0.30507,1.03573 0.48742,2.07529 -0.55246,2.70935 -0.61653,0.37553 -1.79572,-0.34907 -2.23978,0.20402 -0.68762,0.85722 -0.0657,1.84768 -1.42529,2.41799 -1.30352,0.5464 -1.27227,1.38767 -1.59967,2.62201 -0.15333,0.5464 0.0443,1.11351 -0.26172,1.5732 -0.98728,1.48363 -0.73161,-2.33255 -0.95986,-2.38897 -0.1849,0.54671 -1.27992,0.71439 -0.90184,1.68956 0.72013,1.85852 0.58178,2.12598 0.58178,3.96218 0,0.41506 0.37011,1.85979 0.75616,2.01026 0.1562,0.0606 -0.029,-1.76033 0.2037,-2.38898 0.71121,-1.91845 3.19136,3.67081 3.89747,3.67081 0.20115,-0.80015 0.36596,-4.25992 1.59998,-4.02052 1.17313,0.2273 0.56935,1.28407 2.0941,1.60222 0.81418,0.16991 0.98026,1.05582 1.62899,1.16548 0.96592,0.1629 0.79155,-2.08677 2.70489,-1.66055 1.16835,0.26044 1.9328,0.71057 3.22866,0.8741 0,0.52632 0.34588,2.21397 -0.52344,2.21397 -1.73069,0 -2.48111,1.90346 -3.7231,2.85504 -2.04373,1.56651 -0.0185,3.07819 0.0873,4.86498 -0.63343,1.31435 0.8043,1.48586 1.71602,1.48586 -1.09949,2.21109 -0.3258,1.39851 1.22159,1.39851 0.47722,0 0.40964,0.29009 0.75615,0.49507 0.33951,0.20052 2.32044,-0.48742 1.57098,0.49539 -0.2359,0.30986 -4.2035,3.02974 -2.12343,3.02974 0.47627,0 1.38385,-0.59422 0.90152,0.17469 -0.82182,1.31084 -0.20242,1.39564 -2.06509,1.31116 -0.55118,-0.0255 -1.94873,0.17629 -1.94873,0.93213 0,0.73321 0.99365,0.73225 1.25059,1.39851 0.23846,0.61749 -1.56459,0.52568 -2.03608,0.78644 -1.14667,0.63407 -1.27609,1.49033 -1.07621,2.7677 0.0465,1.47948 1.36726,2.41161 1.36726,3.69982 0,1.49733 -1.63759,0.27128 -1.94905,-0.61175 -0.34014,-0.96496 0.03,-1.64429 -1.25059,-1.10714 -0.94233,0.39497 -0.82693,1.24772 -2.0941,0.17501 -2.13236,-1.80592 -6.44233,-0.61334 -7.76625,-2.53466 -0.65574,-0.95125 -0.69973,-2.45305 -1.91972,-2.82603 -0.78071,-0.23877 -1.27387,1.04275 -2.23978,1.3695 0,1.24071 1.68127,3.12186 2.82156,3.40845 0,0.0587 -0.0156,0.0434 0.029,0.0583 0,1.71379 -5.9871,2.20376 -6.39929,3.43746 -0.59996,1.79604 5.67151,0.9656 6.95175,1.39851 0,0.64172 -1.79955,2.96948 -1.97775,4.07854 -0.19095,1.1862 1.7954,1.61401 0.34907,1.95192 -2.36506,0.55309 -1.08291,2.65102 -4.50858,2.65102 -2.68895,0 -4.59337,1.43995 -7.21347,1.07781 -0.66339,0.12847 -1.52538,-1.008 -1.94873,-0.43674 -0.70611,0.9519 -1.7004,0.8671 -2.76323,1.07782 0.27989,0.41856 1.1183,0.47212 1.51232,1.22349 0.65096,1.24005 -2.33096,0.87089 -1.27961,1.66052 0.8027,0.60251 0.51197,2.12407 2.15244,1.42752 0.68093,-0.28913 1.65673,-0.81162 1.36695,0.23304 -0.19191,0.69272 -1.62325,0.57732 -2.21045,0.67008 -1.28471,0.20371 0.67072,0.53301 1.13423,0.87411 0.54608,0.40135 0.87411,1.34783 1.71602,0.81577 1.25092,-0.7909 2.42787,-1.34017 3.98514,-1.34017 1.5936,0 0.8451,0.78708 1.57065,1.51487 0.70898,0.71057 2.63476,0.53173 3.5484,1.51486 0.80971,0.87093 -0.19318,2.80372 0.72715,3.72915 0.32261,1.51965 3.14736,2.78491 4.59592,2.38866 1.2455,-0.34046 2.33192,-1.44824 3.66476,-1.25251 1.67936,0.24706 2.72179,-0.15907 4.15951,-1.0488 0.90822,-0.5617 1.78519,-1.42752 2.90859,-1.42752 0,0.83044 -3.0157,3.05301 -3.72309,3.37944 -1.37747,0.63534 -2.48461,1.39182 -3.98481,1.80624 -0.42749,0.11827 -1.87223,0.21008 -2.03608,0.58242 -0.23272,0.52791 0.32994,1.54356 -0.37808,1.80624 -0.63821,0.23717 -2.80754,-0.83522 -3.40335,-1.16516 -1.8225,-1.01023 -3.61949,-1.22828 -5.52646,-1.95193 -1.03414,0.14346 -2.14575,-0.21549 -3.22866,0 -0.96624,0.19191 0.53907,0.93946 0.32006,1.60222 -3.10242,-0.767 -3.20252,0.62928 -5.61381,2.47632 -1.73196,1.32711 -4.35747,2.18081 -6.31162,3.1174 -1.26048,0.60442 -2.09984,1.87924 -3.34502,2.35965 -1.39659,0.53907 -3.83849,-0.70228 -4.50858,1.48586 -0.22123,0.72205 1.80911,-0.18681 2.35615,0.32038 0.47339,0.43865 0.0883,1.92992 0.34907,1.98093 0.0169,0.0689 0.0465,0.0634 0.058,0.14568 1.46387,0.18044 1.77373,-1.39149 3.25767,-2.24329 1.21425,-0.69718 0.72141,0.38541 1.16357,0.93245 0.63087,0.78134 2.86874,-1.15719 4.30487,-0.29137 1.38448,0.83426 1.85788,-0.53747 3.14131,1.39819 0.55532,0.83809 1.19258,-1.62357 1.19258,-0.78644 0,2.20982 2.03098,2.11641 3.51938,3.14641 1.9752,1.36631 4.29085,-4.71643 5.09036,-5.62274 0.56999,-0.64649 0.80079,0.54194 1.39628,0.64108 0.51325,0.0857 1.18875,-0.14377 1.65769,0.0874 1.04848,0.51611 -0.12114,0.84478 1.91972,0.84478 1.00099,0 2.03066,0.41123 2.79256,1.01947 0.46925,1.05168 0.57764,2.83305 1.83238,2.44732 2.44859,-0.75329 3.62044,1.15336 5.6138,1.25282 1.17951,0.059 -1.0335,-2.18017 -1.19257,-2.593 -0.57127,-1.48171 1.81835,0.19383 2.21045,0.43706 1.80847,1.12117 2.91211,-0.47499 4.15951,-0.14569 2.54933,0.67264 0.61972,-1.74789 1.68701,-1.74789 l 0.0583,0.0583 c 0,2.79447 6.36997,1.16198 6.36997,3.14609 -0.74086,0.44822 -1.71443,0.0717 -1.4543,1.13615 0.3784,1.54898 3.06607,-0.0826 4.65363,0.52441 0.84382,0.32229 2.13394,-0.25886 2.58885,0.64107 0.33185,0.65574 1.00067,1.89805 1.80337,1.95192 0.97102,0.62482 3.7843,-0.58273 5.09036,-0.58273 3.96218,0 9.01652,-1.29746 9.59862,-5.68076 0.25981,-1.95893 -3.27137,-0.82023 -4.82864,-1.39851 -0.61972,-0.22984 -0.88431,-0.98345 -1.51232,-1.28183 -0.64585,-0.30667 -1.23561,-0.33536 -1.80336,-0.90312 0,-0.0574 -0.005,-0.0414 0.029,-0.0873 1.46513,0 1.64365,-0.88845 2.99594,-0.93213 1.92451,-0.0625 3.65391,-0.93149 3.05396,-2.88436 -0.31655,-1.03032 0.40741,-0.95253 1.10555,-0.87379 1.48904,0.16863 2.85281,-0.61653 3.72309,-1.77723 -0.0443,0.0708 -0.0784,0.0937 -0.0583,0.17469 1.14572,-1.42752 2.71669,-1.03605 3.57773,-2.94238 1.20373,-2.666 2.28282,-4.36927 1.83238,-7.54533 -0.46352,-3.27074 -6.93135,-7.90106 -9.83134,-5.7681 -0.56393,0.41442 -1.08961,1.40744 -2.06509,1.10682 -0.75042,-0.23143 -0.63566,-0.50113 -1.19257,-0.90312 -0.41474,-0.29965 -1.75938,-0.0864 -1.80337,-0.67008 -0.0653,-0.86898 1.86266,-2.1285 2.4725,-2.73833 0.49634,-0.20211 2.28058,-0.82853 2.53051,-1.2235 0.18777,-0.29615 -0.95827,-3.19264 -0.98887,-3.90385 -0.0599,-1.37842 -1.62899,-5.70242 -2.82157,-6.40917 -1.35101,-0.80111 -3.41929,-0.72332 -4.5956,-1.60222 1.28279,-0.43386 3.08647,0.003 4.33388,0.46607 1.60604,0.59517 5.1181,3.83435 3.17032,0.14568 -0.60442,-1.14444 -0.90599,-1.9991 -0.37808,-3.29209 0.77146,-1.88848 0.0542,-3.14864 -0.69814,-4.95265 -0.56042,-1.38193 -0.50782,-2.82858 -1.07622,-4.25323 -0.73352,-1.83971 -3.56784,-2.08995 -4.68295,-3.40877 -0.55979,-0.66243 -0.58179,-1.78424 -0.58179,-2.65102 0,-0.45745 0.0583,-0.91332 0.0583,-1.36918 0,-0.504 -0.34237,-1.02712 -0.37808,-1.5732 l 0.029,-0.90312 z m 6.78885,-65.96175 c -0.26108,-0.26204 0.0724,-1.00864 -0.18936,-1.04913 -0.37393,-0.0577 -0.87634,0.13389 -1.07622,-0.34938 -0.25789,-0.6245 0.6143,-1.76002 1.20724,-1.89391 0.49667,-0.11189 0.8145,1.19162 1.00354,1.51519 0.2783,0.47722 0.45937,0.76062 0.97453,1.01947 0.8604,0.43291 1.16898,0.3733 1.29426,1.38385 0.0166,0.13357 0.18426,0.70643 0.13102,0.78676 -0.12177,0.18426 -1.05549,-0.0383 -1.25091,-0.11667 -0.73862,-0.85817 -1.48012,-0.6822 -2.0941,-1.29618 z m 5.64282,-3.8895 c 0.30189,-0.14664 0.61175,-0.35449 0.87251,-0.56808 0.19637,-0.16035 0.46543,-0.27606 0.68348,-0.40804 0.2088,-0.12592 0.85434,-0.57955 1.10554,-0.36405 0.16673,0.14345 -0.0261,0.42175 -0.17469,0.50973 -0.37904,0.22379 -0.6873,0.52664 -0.9452,0.87411 -0.16385,0.22124 -1.14731,0.44981 -1.32359,0.20402 l -0.21805,-0.24769 z m -7.73724,5.88509 c -0.15716,-0.10807 -0.30061,-0.34078 -0.42175,-0.49539 -0.11986,-0.15238 -0.21199,-0.41761 -0.29105,-0.59709 -0.0845,-0.19222 -0.15366,-0.33121 0.0147,-0.51005 0.19606,-0.20881 0.48169,-0.30508 0.75616,-0.1747 0.18808,0.089 0.44056,0.12529 0.61111,0.23304 0.24547,0.15461 0.40486,0.68602 0.50878,0.94679 0.19765,0.49667 -0.19286,0.64108 -0.6398,0.64108 l -0.53811,-0.0437 z m 4.59561,-4.64693 c -0.33855,-0.0421 -0.47531,-0.0819 -0.6398,-0.37872 -0.15461,-0.27957 -0.38924,-0.57285 -0.26173,-0.91778 0.0921,-0.24865 0.31911,-0.15015 0.47978,-0.0583 0.0803,0.0462 0.15588,0.0931 0.23271,0.14569 0.12305,0.0838 0.21582,0.22634 0.34907,0.3207 0.22761,0.16066 0.25025,0.23271 0.3054,0.48041 0.0395,0.17692 0.0532,0.23972 -0.11636,0.33504 l -0.34907,0.073 z m -56.38162,67.44793 c 0.037,-0.01 0.0504,-0.0191 0.0874,-0.0287 0.60027,0.91013 1.51136,0.99046 2.53051,0.99046 1.11416,0 1.4763,-1.77244 1.89072,-1.80623 0.56552,-0.0466 0.79537,1.21521 1.54164,0.55373 1.63346,-1.44697 -0.11285,-1.0606 0.058,-2.12662 0.10743,-0.66913 0.77943,-0.61525 0.93085,-1.10714 0.15685,-0.51069 -0.0213,-1.10363 0.11636,-1.66055 0.50145,0 0.78389,1.73929 0.90153,2.18495 0.22538,0.8553 0.93085,1.21075 0.8435,0.14569 -0.11891,-1.44633 0.41028,-3.28764 0.0583,-4.71962 -0.54257,0 -2.48557,0.22538 -2.44349,-0.5244 0.0472,-0.83426 1.19258,-0.86965 1.19258,-1.80624 0,-1.65162 -1.01884,-3.41355 -0.95987,-4.98165 0.0701,-1.85852 -0.0383,-1.98348 -1.62867,-3.02974 -1.29172,-0.0813 -3.87675,0.28595 -4.974,-0.23303 -1.71698,-0.81194 -2.53881,0.41602 -3.86846,0.0873 0,-2.01026 3.68866,-1.76065 2.53051,-3.75816 -0.28021,-0.48392 -0.94711,-1.76639 -1.27992,-2.09761 -0.33982,0.20339 -3.90607,6.62053 -4.15919,5.06901 l 0.0411,0.13962 -1.00098,1.49192 c 0.17565,1.09694 -1.94746,0.8333 -2.6762,0.99046 -1.35548,0.29201 -0.74692,1.55568 -0.23272,2.30163 0.87858,1.27514 -0.79728,0.91364 -1.45429,1.19449 -1.55727,0.66531 -1.64015,2.75749 -1.16325,4.13688 0.66275,1.91558 3.09062,4.64087 5.23541,4.25323 1.31531,-0.2375 2.21842,-1.80624 3.89778,-1.80624 0.80111,0 1.19513,2.29015 1.4543,2.91338 0.22124,0.53524 0.30636,0.67997 0.84351,0.84478 0.40454,0.12433 0.92224,0.16577 1.22158,0.46606 0.2987,0.29998 0.39848,1.50595 0.55278,1.89359 l -0.0874,0.0287 z m 14.07436,4.29467 c 0.29647,-0.23239 0.56712,-0.51324 0.85817,-0.75743 0.26236,-0.2206 0.6261,-0.39434 0.85817,-0.62641 0.44917,-0.44917 0.78262,-1.0724 1.4543,-1.2965 0.54449,-0.18203 0.80302,-0.0434 1.33794,-0.0287 0.49763,0.0127 0.58179,0.24546 0.13102,0.49507 -0.88845,0.49157 -0.30475,1.05103 -0.2037,1.83556 0.0963,0.74501 -0.34684,0.85084 -0.9452,1.07814 -0.53141,0.20211 -1.01915,0.52822 -1.5273,0.77177 -0.55755,0.26683 -1.19225,0.15207 -1.75969,0.34971 -0.98569,0.34301 -0.77082,-0.65893 -0.77082,-1.23816 l 0.56711,-0.58274 z m 1.3236,-63.20649 c 0.33186,-0.26108 2.06668,-1.34846 1.91972,-1.79157 -0.0746,-0.22602 -1.15591,-0.64522 -1.39627,-0.90312 -0.13453,-0.14441 0.71535,-0.46383 0.8435,-0.78676 0.25407,-0.64044 -0.77273,-1.25442 -0.79983,-1.87892 -0.0284,-0.66148 1.30192,-0.83044 1.81803,-0.83044 0,0.6041 -0.16099,1.40776 0.46543,1.77723 2.67588,1.57735 1.77978,-1.585 3.15597,-2.27262 1.05582,-0.52791 2.33701,-1.1336 3.53405,-1.25283 1.03095,-0.10296 1.67777,-0.79887 1.30894,0.83044 -0.24228,1.07176 -0.69878,1.56874 -1.54165,2.24329 -0.36852,0.2952 -1.59042,0.52249 -0.55277,0.90312 1.99495,0.73161 -1.59393,0.85275 -2.15244,0.96146 -1.96117,0.38158 1.1607,1.01118 -0.55246,2.19961 -0.86135,0.59773 -1.82345,0.17693 -2.76354,0.0437 -1.1878,-0.16864 -0.76318,1.66533 -2.23947,1.8939 -0.45299,0.0698 -0.68124,0.27065 -1.10555,0.33504 -0.48965,0.074 -1.21999,-0.79186 -0.93053,-1.23816 l 0.98887,-0.23335 z m -3.86878,3.35043 c -0.2614,-0.20115 -0.45458,-0.45076 -0.65446,-0.69909 -0.25152,-0.31209 -1.23848,-1.24358 -0.59613,-1.61688 0.1629,-0.0947 0.47085,0.0835 0.6398,0.10201 0.55501,0.0612 1.1081,-0.29998 1.658,-0.16035 0.66403,0.16896 0.53652,1.08674 0.71281,1.57321 0.25726,0.71057 -0.6771,0.91778 -1.19258,0.91778 l -0.56744,-0.11668 z m -1.22158,2.3163 c -0.43482,-0.26938 -0.54544,-0.41124 -0.75616,-0.83044 -0.15397,-0.30571 -0.2732,-0.74277 0.2037,-0.74277 0.35896,0 0.68252,0.0223 1.03255,0.0874 0.17565,0.0319 0.29806,0.003 0.40709,0.16035 0.17501,0.25343 0.30986,0.52727 0.43642,0.81577 0.15461,0.35353 -0.38255,0.57796 -0.64013,0.64076 l -0.68347,-0.13102 z m -2.13777,2.95705 c 0.007,-0.34429 0.19892,-1.96786 0.53811,-2.09761 0.16672,-0.0634 1.10522,-0.0765 1.10522,0.0437 0,0.40932 -0.22857,0.84447 -0.34907,1.22382 -0.1766,0.55692 -0.19063,1.10969 -0.32006,1.66055 -0.0405,0.17374 -0.11157,0.42781 -0.3344,0.46607 -0.38796,0.0666 -0.37808,-0.44662 -0.37808,-0.6991 l -0.26172,-0.5974 z m 9.61328,1.80623 c 0.14632,-0.5668 0.19159,-2.2095 -0.72715,-1.87892 -1.92801,0.69336 -1.92482,-2.00547 -1.55631,-1.85022 0.63566,0.26746 1.81803,0.533 1.81803,-0.53875 0,-0.46734 -0.1393,-1.44059 0.32007,-1.70455 0.0287,0.0223 1.4221,2.98351 1.51231,1.5442 0.0379,-0.60633 1.34177,-2.47027 2.03608,-2.12694 0.55533,2.20982 -1.29426,3.78494 -1.29426,5.87075 0,0.60251 0.35353,1.97488 0.72714,2.43265 0.77306,0.94775 1.24454,0.2359 1.90538,0.61175 0.14505,1.20023 -0.34269,0.92161 -1.16356,1.38385 -0.26204,0.14759 -0.35768,0.58656 -0.6108,0.8011 -0.39465,0.33505 -0.98855,0.3105 -1.46896,0.23335 -0.0963,-0.17023 0.90185,-0.93786 0.90185,-1.39851 0,-0.74595 -1.46291,-0.83458 -1.97807,-0.93244 -1.47342,-0.27958 -1.11319,-0.55756 -0.95986,-1.80624 l 0.53811,-0.64108 z m -4.58126,14.65456 c 0.52408,0.18394 1.30957,0.0845 1.80337,-0.0583 0.044,-0.21741 -0.68348,-0.65957 -0.68348,-1.12149 0.53174,-0.26873 1.77022,-0.67901 0.6398,-1.16547 -0.46606,-0.2002 -1.65672,-0.3851 -1.46896,-1.07782 0.0896,-0.33026 1.10427,-1.22604 1.42529,-1.45685 0.63215,-0.45395 0.98026,-0.71758 1.2219,0.18936 0.31847,1.19672 0.89101,2.04884 1.33795,3.16108 0.2936,0.73033 0.68889,1.43007 0.32006,2.21428 -0.64268,1.36695 -2.55985,0.42685 -3.63607,0.34939 -0.47818,-0.0341 -3.46934,-0.0622 -2.18145,-1.1505 l 1.22159,0.11636 z m -4.4359,9.06083 c 0.19861,-0.27894 0.29934,-1.56842 -0.30539,-1.32583 -0.15238,0.0612 -0.37107,0.33281 -0.5091,0.45172 -0.17852,0.15429 -1.28375,0.67359 -1.41063,0.29137 -0.0434,-0.13166 0.88718,-1.0335 1.00354,-1.26749 0.11062,-0.22219 0.52504,-1.26558 0.91619,-1.0488 0.40613,0.22474 0.45427,0.42876 0.98919,0.49539 0.70164,0.087 0.91364,0.88527 1.22158,1.41285 0.70165,1.2031 0.3953,1.88944 -1.00353,2.12694 -0.51803,0.088 -0.72109,0.39402 -1.16357,0.5244 -0.83043,0.24451 -0.72045,-0.33377 -0.30539,-0.80111 l 0.56711,-0.85944 z m 3.86878,-2.1416 c 0.56202,-0.15461 0.89674,-0.50527 1.23625,-0.96114 0.11572,-0.15588 1.19385,-1.63951 1.29427,-0.97612 0.0969,0.63853 0.34779,0.92129 -0.16003,1.39851 -0.65032,0.61048 -1.3711,1.07782 -1.84704,1.84991 -0.13899,0.22602 -0.46479,0.53907 -0.72715,0.56808 -0.63789,0.0704 -0.3902,-0.70611 -0.36374,-1.06347 l 0.56744,-0.81577 z m 2.10876,7.23993 c 0.5429,-0.57859 1.09408,-2.14128 1.70168,-2.50565 0.19605,-0.11731 0.60952,-0.21678 0.6398,-0.48041 0.13453,-1.17345 -0.21295,-3.15279 0.59645,-4.12253 0.16035,-0.19255 0.32133,-0.40581 0.26172,-0.65574 l -0.0147,-0.0159 c -0.47786,-0.0963 -1.6698,0.73862 -2.03608,1.0488 -0.12082,0.10265 0.26746,0.27384 0.32006,0.36406 0.1511,0.26044 0.34556,0.63119 0.14536,0.90311 -0.19382,0.20817 -0.21709,0.43833 -0.48009,0.59741 -0.20498,0.12369 -0.87411,0.75329 -0.75616,1.01947 0.12242,0.27703 0.53811,0.1527 0.53811,0.5684 0,0.35002 -0.89515,0.80429 -1.16356,0.99046 -0.68188,0.47212 -1.06092,1.06443 -1.57066,1.67522 -0.18936,0.19701 -0.34907,0.4718 -0.5091,0.69909 -0.12911,0.18299 -0.34142,0.33792 -0.45076,0.51006 -0.1986,0.31145 -0.33313,0.71503 -0.5091,1.0488 -0.12624,0.23877 -0.3784,0.79569 -0.10169,1.01948 0.39147,0.31719 1.37779,-0.38892 1.658,-0.67009 0.26204,-0.26236 0.50559,-0.50017 0.78517,-0.74277 0.15015,-0.13006 0.2579,-0.33823 0.3784,-0.49539 0.14122,-0.1849 0.35098,-0.27543 0.53811,-0.40773 l 0.029,-0.3497 z m 1.83238,1.32551 c 0.0399,-0.7144 0.14314,-1.43167 0.1747,-2.15595 0.0188,-0.43737 0.60346,-0.99205 1.03254,-0.67008 0.2375,0.17852 0.10966,0.83107 0.0874,1.09279 -0.0593,0.694 0.0258,1.32264 -0.13102,2.01026 -0.0478,0.20976 -0.0571,0.46224 -0.32006,0.50974 -0.29711,0.0539 -0.68443,-0.0526 -0.72715,-0.39338 l -0.11636,-0.39338 z m 2.25445,-6.29282 c 0.0746,-0.51197 0.62992,-1.39564 1.13424,-1.57321 0.4973,-0.17533 0.81418,-0.49698 1.19257,-0.84509 0.60219,-0.55342 1.24964,-1.15496 1.09089,0.073 -0.0622,0.48328 -0.11285,1.17408 -0.29105,1.61688 -0.285,0.70929 -1.60923,-0.27735 -1.93407,0.83043 -0.1052,0.35832 -0.096,0.57254 -0.32006,0.90312 -0.37235,0.55022 -0.64044,0.11572 -0.78549,-0.37872 l -0.087,-0.62641 z m 7.78059,92.09286 c 0.64426,0.24004 2.07912,-0.68985 2.54518,-0.2477 0.24068,0.22793 1.02936,0.65224 1.09088,0.96146 0.0701,0.35385 -0.5974,0.57286 -0.8435,0.69909 -0.44375,0.22825 -0.97357,0.84925 -1.52698,0.67009 -0.32931,-0.10647 -0.58721,-0.14632 -0.84383,-0.39338 -0.14377,-0.13803 -0.28499,-0.27671 -0.42175,-0.42239 -0.16991,-0.18171 -0.21327,-0.40008 -0.34907,-0.59709 l 0.34907,-0.67008 z m -13.48174,22.36023 c -0.0185,0.0223 -0.0341,0.0424 -0.0583,0.0583 -0.3478,-0.35162 -0.75903,-0.40391 -0.90153,-0.9468 -0.0708,-0.26873 -0.12177,-0.41984 -0.0727,-0.69941 0.0746,-0.42654 0.33887,-0.53365 0.68348,-0.32038 0.23016,0.14282 0.47435,0.25885 0.69814,0.40804 0.30252,0.20116 0.84127,0.22029 0.75615,0.74277 -0.0873,0.53843 -0.35863,0.53652 -0.72714,0.87411 l -0.37808,-0.11667 z m -2.95227,-5.5644 c -0.11859,0.0516 -0.11317,0.11158 -0.20371,0.18936 -0.22219,0.19 -0.72013,0.39561 -0.85817,0 -0.0402,-0.11476 -0.0507,-0.21869 -0.0437,-0.33504 0.005,-0.0832 0.11636,-0.16832 0.18904,-0.21869 0.40964,-0.28467 0.55724,-1.07239 1.10555,-1.16516 0.20306,-0.0341 0.36437,0.0979 0.39274,0.29105 0.0338,0.23208 -0.18171,0.4106 -0.26204,0.61207 l -0.31974,0.62641 z",169.54466,291.12125,middle,,1,1,2 GE,Georgia,"m 641.39842,465.17394 c 0.0835,-0.22953 0.16895,-0.46957 0.25694,-0.71918 0.71599,-2.03257 1.60636,-2.39185 0.6398,-4.69029 -0.36596,-1.32551 -1.51742,-2.498 -2.18145,-3.69982 -0.64203,-1.16261 -0.96368,-2.49832 -1.54164,-3.69982 -0.72301,-1.50371 -1.99209,-5.03935 -3.95581,-5.09833 -1.7667,-0.0532 -2.23978,-0.003 -2.23978,-1.89358 -1.34814,-0.80749 -4.61665,-0.59772 -6.22428,-0.78676 -1.32551,-0.15557 -5.75885,0.22984 -6.603,-0.49508 -1.08164,-0.92862 0.0695,-0.65861 -1.97774,-1.07781 -0.69368,-0.14664 -1.89008,-0.54512 -3.11963,-1.06761 l 0,0 1.28725,-2.71988 c 1.46705,-1.4696 3.32621,-1.59488 5.14838,-2.18495 1.50021,-0.48615 3.09955,-1.04817 4.71197,-0.72811 1.66469,0.33058 1.31817,0.85148 3.08329,0 1.50594,-0.72619 3.5146,0.86551 4.71196,-0.55373 1.563,-1.85341 2.24329,-1.60157 4.59561,-2.00994 3.05236,0.5531 5.88063,-0.94615 8.9008,-1.13615 0.98504,-0.0618 1.66597,0.70356 2.47218,1.19417 2.09601,1.27546 11.77273,1.17154 12.07112,2.88437 0.49858,2.86365 3.48113,0.9028 4.74129,0 1.44314,-1.03414 1.81899,-3.22164 3.22833,-4.1662 2.21365,-1.6427 0.58338,-0.58976 2.70522,0.0877 1.52889,0.48774 2.54709,-0.58274 3.98481,-0.58274 0.9487,0 2.03608,0.61207 3.1123,0.6991 1.65928,0.13389 4.59497,0.0791 5.49745,1.83525 0.52089,1.0131 -0.0223,2.22033 0.49444,3.08807 1.24262,2.0788 3.65296,-0.55692 5.46844,1.01979 1.68063,1.45908 3.73456,0.35162 5.73016,-0.14568 l 2.38515,0.84478 0,0 -1.94905,2.53466 c -3.23567,4.87135 7.85072,3.64084 5.64281,8.62314 -0.74372,1.67776 -2.82156,1.37173 -4.30455,1.25282 -2.23405,-0.17947 -4.90005,0.526 -6.74837,-0.90312 -1.07462,-0.83107 -1.32933,-1.39851 -2.82124,-1.39851 -1.60445,0 -2.17603,0.92225 -3.287,1.77723 l -2.15244,3.75816 0,0 c -0.72172,0.54321 -1.88561,0.8875 -2.5015,1.51487 -0.95317,0.97134 -0.53588,0.89387 -0.93054,2.01026 -0.74404,2.10525 -3.52225,1.98093 -5.41042,1.98093 -1.51965,0 -3.10114,0.99779 -4.5666,0.64107 l -2.55952,1.77691 0,0 c -0.9079,0.68826 -6.26796,-1.56619 -7.00977,-2.35965 -0.77656,-0.83107 -1.95128,-0.95508 -3.02527,-1.07781 -0.78453,-0.0899 -1.87541,0.28691 -2.44317,-0.40804 -1.20405,-1.47279 -1.29937,1.31275 -1.68701,1.92291 -1.48458,2.33829 -2.16901,1.80624 -4.65395,1.80624 -2.78331,0 -0.63948,4.52388 -4.13018,3.14609 l -2.84579,-0.79569 0,0 z",658.06567,447.73425,middle,,4,8,7 GR,Greece,"m 381.16771,538.98864 c -0.42717,-0.57126 -0.52121,-1.28884 -0.87251,-1.89358 -0.36342,-0.62482 -2.00708,-1.32232 -2.00708,-2.01026 0,-0.5295 0.45332,-0.45586 0.85817,-0.55373 0.40869,-0.0991 0.9978,-0.26204 1.41063,-0.26204 0.46287,0 0.24451,0.38541 0.29105,0.68443 0.0797,0.50974 1.14954,0.76062 1.30893,1.38385 0.26619,1.04115 0.0255,1.85373 1.07622,2.49099 0.45682,0.27734 1.03637,0.08 1.35229,0.58274 0.0637,0.10137 0.29105,0.85466 0.29105,0.99078 -0.71344,0 -1.73611,-0.36501 -2.41416,-0.58274 l -1.29459,-0.83044 z m 9.22086,13.47442 c 0.27097,-0.48105 0.74978,-0.81163 0.93054,-1.34018 0.1205,-0.35162 0.68921,-1.01947 1.07621,-1.01947 0.0437,0.21518 0.0255,0.43546 0,0.65542 -0.059,0.52345 -0.19063,1.02745 -0.26172,1.5442 -0.0319,0.22442 -0.0838,0.49921 -0.18904,0.69909 -0.0743,0.14186 -0.25503,0.22793 -0.40709,0.16035 -0.2732,-0.12209 -0.43291,0.10584 -0.65446,0.26204 -0.26141,0.1849 -0.82056,0.41028 -1.0182,0.0159 l 0.52376,-0.97612 z m 3.44671,5.18599 c -0.37107,-0.21613 -0.36119,-0.9589 -0.6108,-1.31116 -0.14887,-0.20976 -0.88176,-0.67072 -1.11989,-0.39306 -0.20243,0.23654 -0.006,0.67263 0.13102,0.87379 0.25089,0.37043 0.23782,0.85275 0.55246,1.19449 0.1409,0.15269 0.14664,0.31527 0.34907,0.43705 0.29137,0.17469 0.51675,0.0864 0.68347,-0.20402 l 0.0159,-0.59709 z m -1.48331,2.37432 c -0.55054,-0.27448 -1.11288,-1.19864 -1.26558,-1.77723 -0.0481,-0.18362 -0.30061,-1.90124 -0.68347,-1.36918 -0.18777,0.2614 0.088,0.55341 -0.16003,0.83043 -0.35991,0.40263 -0.82343,0.10488 -1.19258,0.49507 -0.38063,0.40295 -0.41506,0.64873 -0.30539,1.19449 0.0956,0.47435 0.0657,0.88559 0.0287,1.3695 -0.0466,0.61653 0.32516,0.43833 0.52344,0.0583 0.3513,-0.67423 0.87857,-0.87347 0.98887,-0.044 0.0555,0.41952 0.01,0.80302 0.55278,0.61207 0.62003,-0.21773 1.0708,0.42334 1.61432,0.59708 1.40138,0.44758 0.42239,-0.60505 0.20371,-1.26717 l -0.3054,-0.69941 z m 3.02495,7.1089 c -0.3564,-0.20657 -0.57381,-0.64585 -0.87251,-0.91778 -0.28181,-0.25598 -0.67073,-0.34524 -0.94552,-0.65542 -0.24546,-0.27671 -0.41888,-0.50081 -0.79983,-0.5974 -0.39753,-0.10042 -0.45204,-0.0599 -0.71281,0.24769 -0.47977,0.56521 -0.86486,0.75393 -0.1307,1.2965 0.42972,0.31719 0.83522,0.54863 1.03255,1.07781 0.24929,0.66977 0.50208,0.97612 1.25091,0.97612 0.4157,0 1.66629,0.10425 1.2796,-0.72842 l -0.10169,-0.6991 z m 26.61474,24.0211 c 0.0223,-0.40262 0.17501,-0.84765 0.24738,-1.25282 0.0654,-0.36756 -0.0287,-1.88179 0.66881,-1.15082 0.17947,0.18809 0.44183,0.3105 0.59644,0.52441 0.28085,0.38891 0.6567,0.7348 1.00354,1.0488 0.60537,0.54767 -0.0915,1.03223 -0.42175,1.50052 -0.53811,0.76349 -1.22159,0.52759 -1.90538,0.0159 l -0.18904,-0.68443 z m 33.30476,16.3744 c -0.94934,0.47468 -1.65768,0.49444 -2.35614,1.39852 -0.47467,0.61493 -1.27514,1.01947 -2.06509,1.01947 -1.50435,0 -2.70872,-0.4345 -4.15951,0.32038 -0.53715,0.27957 -1.32902,0.35608 -1.19258,-0.49507 0.14665,-0.91332 0.0679,-1.65386 0.11636,-2.56367 0.0462,-0.862 -0.37712,-0.60601 -1.16357,-0.58274 -1.24772,0.20689 -2.2876,0.3988 -3.5774,0.14568 -0.97102,-0.19063 -2.61787,-0.87985 -3.54872,-0.58274 -1.41349,0.45172 -4.34377,-0.25088 -5.93387,-0.55341 -2.42404,-0.46096 -1.00034,-1.68637 -0.8435,-3.49612 0.0507,-0.5856 -0.12337,-1.86489 0.75648,-1.31084 1.33092,0.83872 1.74503,1.55471 1.74503,-0.78644 0,-0.78294 0.50049,-3.29943 1.36727,-1.71889 1.10809,2.02141 1.41923,3.81299 4.01382,1.86457 0.21422,-0.16099 1.4543,-0.88303 1.4543,-0.26236 0,0.61717 -2.8458,2.68035 -0.23272,2.68035 2.24106,0 1.30894,-0.37075 1.629,1.10682 0.43801,2.02333 4.3138,-1.95957 4.97368,-2.12662 2.55156,-0.64586 5.10535,1.41318 7.70823,0.58274 1.21393,0 2.00133,1.16357 3.43204,0.84478 0.92033,-0.20529 1.2168,-0.90312 2.32713,-0.90312 0,0.81386 -1.50881,2.42755 -0.84351,3.20475 0.716,0.83586 1.96946,-0.16609 2.50151,-0.72842 0.48774,-0.51516 1.24454,-0.52919 1.83238,-0.96146 1.826,-1.3424 0.81354,0.26236 2.26879,0.26236 0.91651,0 0.99206,-1.94459 1.89072,-1.71889 0,1.17983 -0.0513,2.72179 -0.37808,3.84551 -0.4243,1.46067 -1.46195,0.90312 -2.58886,0.90312 -1.0437,0 -1.53367,-0.26523 -2.53051,0.23303 -0.97644,0.48806 -1.61114,1.12882 -2.76323,1.34017 -1.72431,0.31624 -2.07625,0.43132 -3.43236,-0.75743 l -0.40709,-0.20403 z m 22.16418,-9.20587 c -0.4326,-0.23335 -0.68539,-1.39724 -0.6108,-1.86458 0.065,-0.40581 1.34241,-1.80623 1.71602,-1.80623 0.22921,0.57477 0.0975,1.07271 0.14537,1.68956 0.0335,0.43036 -0.10743,0.93117 -0.0287,1.34017 0.0918,0.48009 0.2885,0.97166 0.32006,1.45685 0.0127,0.21773 0.0287,0.45235 -0.23271,0.46606 -0.5244,0.0287 -0.75042,-0.0539 -0.95987,-0.55373 l -0.34907,-0.7281 z m 13.52541,-16.5475 c -0.50782,0.1986 -1.03445,1.01086 -1.59998,1.34017 -1.50275,0.87602 -3.08584,2.39057 -4.33388,3.64148 -1.00099,1.00354 0.65382,1.02171 0.69814,1.80624 0.0446,0.79345 -0.10839,1.32519 -0.29106,2.0686 -0.15333,0.62513 -0.44374,0.77974 0.0874,1.31084 1.36026,1.36026 1.94395,-0.61653 2.38515,-1.45653 0.26236,-0.50017 0.29966,-1.06283 0.69814,-1.48586 0.47021,-0.49858 1.31754,-0.25853 1.59967,-1.01979 0.1782,-0.48009 -0.14537,-0.91332 -0.14537,-1.39819 0,-0.55118 0.72524,-1.44984 0.93085,-1.98093 0.29297,-0.75552 0.39976,-1.50786 0.34907,-2.33064 l -0.37808,-0.49539 z m -51.83287,-64.40321 c 0.45554,-0.62259 0.57254,-1.59138 1.48331,-1.7479 0.60633,-0.10393 1.06219,0.28882 1.17823,0.88845 0.0351,0.18139 0.2461,0.41825 0.31974,0.62641 0.1103,0.31018 0.27638,0.81354 0.27638,1.13615 0,0.30986 -0.23845,0.56011 -0.55245,0.56808 -0.3988,0.01 -0.71025,-0.40518 -1.10555,-0.42239 -0.64904,-0.0287 -1.17886,0.0469 -1.55599,-0.62641 l -0.0437,-0.42239 z m 12.88561,3.45244 c -0.17597,0.0127 -0.29009,-0.40518 -0.32006,-0.55373 -0.0564,-0.27734 0.0459,-0.84925 0.42176,-0.80111 0.18075,0.0223 0.31751,-0.0223 0.49443,-0.0437 0.15557,-0.0191 0.71408,-0.10743 0.82916,0 0.13485,0.12528 0.43419,0.5668 0.46543,0.72842 0.0191,0.0912 -0.39848,0.18872 -0.48009,0.21837 -0.34556,0.12688 -0.61398,0.17916 -0.98887,0.13134 l -0.42176,0.32038 z m -2.44348,10.0803 c -0.0992,-0.32771 -0.74915,-1.7887 -1.07622,-0.8011 -0.15143,0.4565 0.2206,1.33985 -0.3054,1.64588 -0.41538,0.24133 -1.19257,-0.25215 -1.19257,-0.71376 0,-0.62354 0.073,-0.61525 -0.24706,-1.17982 -0.13644,-0.24036 -0.63247,-1.21298 -0.27639,-1.39851 0.32134,-0.16704 0.86869,0.10616 1.19258,0.18936 1.037,0.26618 1.35037,-0.358 2.15243,-0.81577 0.43738,-0.24993 0.73034,-0.1833 0.53811,0.33504 -0.14441,0.39019 -0.32006,0.62004 -0.32006,1.06347 0,0.49029 0.15557,0.85753 0.26204,1.31116 0.0899,0.3835 0.0191,0.86295 -0.56743,0.67009 l -0.16003,-0.30604 z m 13.48206,6.78822 c -0.58689,0.18712 -1.25219,0.30348 -1.86171,0.13102 -1.35037,-0.38191 -0.9742,0.43833 -2.12311,0.58274 -0.74723,0.094 -1.44537,0.26236 -2.21077,0.26236 -0.67551,0 -1.25347,0.17214 -0.52345,0.68443 0.83936,0.58847 0.58721,2.10781 1.87605,1.74822 0.88655,-0.24706 2.10622,-1.20916 2.93793,-1.20916 0.55978,0.70898 -2.34052,2.07243 -0.55278,2.593 0.70611,0.20562 3.4432,1.56205 4.04316,1.07781 0,-0.0481 0.0159,-0.0924 0.0159,-0.14568 -0.24101,-0.27161 -0.51389,-1.25506 -0.55246,-1.61688 l 0.0287,-0.0437 c 0.49444,-0.0682 0.79983,0.74309 1.3236,0.74309 0.68029,0 0.24036,-1.69498 -0.29105,-1.92292 -0.87571,-0.37521 -2.08581,-0.92957 -1.83238,-2.0976 l -0.27639,-0.78676 z m -4.71228,18.44204 c 0.17628,-0.55437 0.55819,-0.92576 0.61111,-1.55886 0.0347,-0.41347 0.0851,-2.30992 -0.33473,-2.40364 -0.37967,-0.0845 -1.85756,-0.0909 -1.57065,-0.77178 0.16927,-0.40263 0.37808,-0.79218 0.37808,-1.23848 0,-1.02075 1.00927,-0.45555 1.55631,-0.1747 1.29905,0.66786 2.51585,-0.0328 2.51585,2.03959 0,0.90631 -0.0497,1.81963 -0.26172,2.69469 -0.212,0.87634 0.29137,2.31502 -0.63981,2.8407 -0.40708,0.22952 -0.31464,0.5228 -0.90184,0.59708 -0.56074,0.0708 -1.09662,-0.45809 -1.4543,-0.81577 l 0.1017,-1.20883 z m -19.28459,2.24329 c -0.92958,-0.93213 -1.55568,-1.81708 -1.93439,-3.08839 -0.33473,-1.12468 -1.22605,-1.70327 -1.68701,-2.69469 -0.24292,-0.52186 -1.22988,-0.75011 -1.7597,-0.83044 -0.62737,0.0319 -1.87987,0.51866 -2.41448,-0.0727 -0.51069,-0.56521 -0.31878,-0.91874 -1.16324,-1.19481 -1.5324,-0.50145 -2.42437,-1.02202 -3.27233,-2.43265 -0.42335,-0.70483 -0.44885,-1.52284 -0.88718,-2.22863 -1.42816,-0.5177 -3.07532,2.26593 -4.2612,2.72402 -0.26938,0.10425 -1.3236,0.3003 -1.3236,0.58274 0.23016,0.36756 1.80911,-6.4e-4 2.2978,0.0437 0.87794,0.0794 1.43996,0.0816 2.21078,0.56807 0.6602,0.41633 4.06292,3.28126 4.5666,3.03005 1.22732,-0.12145 0.7077,0.88782 0.97452,1.66056 0.71217,2.06381 3.48305,0.18744 4.45024,1.28183 0.42399,0.48009 0.24802,0.90886 0.9452,1.34017 0.81896,0.50719 0.83299,1.01119 1.42529,1.66056 0.58975,0.63533 0.76572,1.27035 1.11989,2.02492 0.23558,0.5024 0.56489,1.39883 0.95986,1.74822 0.30636,0 0.69974,-0.51102 1.07622,-0.62642 0.5684,-0.17405 1.72559,0.0491 1.80369,-0.80142 0.0395,-0.42845 0.0319,-0.83107 0.087,-1.26717 0.0367,-0.28213 0.18808,-0.81354 0.10201,-1.07813 -0.18777,-0.14824 -0.77178,0.0475 -1.00354,0.073 -0.61493,0.0676 -1.19512,0.0191 -1.80336,-0.11668 l -0.5091,-0.30571 z m 7.76624,5.73941 c -0.4039,-1.17473 -1.22158,-2.24871 -2.61786,-2.09761 -0.39179,0.0424 -0.68539,0.28563 -0.39275,0.65542 0.21869,0.27575 0.54162,0.44439 0.85817,0.59709 0.40295,0.19477 0.74596,0.56393 1.07622,0.85944 0.39657,0.35545 0.41123,0.71089 1.04721,0.58274 l 0.0287,-0.59708 z m 3.83945,2.40364 c -0.25599,0 -0.51643,-0.20562 -0.77082,-0.26236 -0.51962,-0.11572 -1.19991,-0.24866 -1.73069,-0.23304 -0.15397,0.003 -0.28722,0.0918 -0.21805,0.26205 0.16195,0.39656 0.68794,0.43004 1.03255,0.53906 0.5464,0.17342 0.45554,0.77082 0.87251,1.0488 0.21582,0.14409 0.42335,0.13772 0.62546,-0.0287 0.18075,-0.14951 0.38286,-0.62386 0.21805,-0.83043 l -0.0287,-0.49508 z m 2.96693,2.30131 c -0.45076,-0.0159 -1.21967,0.20497 -1.58532,0.48072 -0.24323,0.18299 -0.23239,0.7093 -0.11635,0.96146 0.27096,0.58975 1.20979,-0.29137 1.64333,-0.29137 0.28436,0 0.48615,0.0481 0.72747,-0.13102 0.38095,-0.2834 0.11668,-0.45363 -0.17469,-0.65542 l -0.49444,-0.36437 z m 6.95175,-2.40333 c 0.50145,-0.23366 0.64044,-0.65574 1.29459,-0.65574 0.50113,0 0.64649,0.0414 1.07622,-0.2037 0.51898,-0.29647 1.72845,-0.80334 2.32681,-0.58274 0.30763,0.11317 -0.70324,0.93723 -0.78517,1.01948 -0.56744,0.57126 -1.08897,1.06601 -1.92004,0.83043 -0.83267,-0.23622 -1.40457,0.93691 -2.23947,0.10201 l 0.24706,-0.50974 z m 12.74025,-4.74894 c -1.04211,0.33058 -1.92132,-0.16577 -2.87959,0.37872 -0.30826,0.17533 -0.57158,0.42366 -0.85817,0.62641 -0.35225,0.24865 -1.47278,0.77816 -0.61079,1.13615 0.32229,0.13389 0.47499,0.0787 0.8145,0.0437 0.48614,-0.0507 0.67518,0.36469 1.13423,0.42239 0.47149,0.059 1.38258,-0.83968 1.78903,-1.12149 0.64362,-0.44566 1.13902,-0.38541 1.43995,-1.28184 l -0.82916,-0.20402 z m -17.07413,14.61056 c 0.20784,-0.48806 0.36309,-1.40616 0.0873,-1.90824 -0.24674,-0.44981 -0.42494,-0.49508 -0.85817,-0.13102 -0.39657,0.33281 -2.32043,0.92766 -1.42529,1.58786 0.42144,0.31114 0.55437,0.45236 0.68348,0.97612 0.19797,0.80143 0.81896,0.40359 1.19258,-0.0877 l 0.32006,-0.43706 z m 3.59239,2.81169 c 0.36086,-0.23367 0.7179,-0.59549 1.01788,-0.90312 0.241,-0.2477 0.723,-0.85339 1.09088,-0.67009 0.16194,0.0803 0.27001,0.21072 0.40709,0.32038 0.12432,0.0998 0.314,0.0778 0.42175,0.16035 -0.0612,0.25152 -1.05613,0.95317 -1.29427,1.16516 -0.49539,0.44152 -0.78931,1.00067 -1.3526,1.35484 -0.19446,0.12241 -0.67806,0.31847 -0.90185,0.2477 -0.30029,-0.0947 -0.70419,-0.35545 -0.31974,-0.68476 l 0.93086,-0.99046 z m 12.71092,-3.83116 -0.14537,-0.93245 c -0.0287,-0.17756 -0.23973,-1.54324 0.29073,-0.91778 0.11222,0.13198 0.37234,0.33664 0.52377,0.42271 0.3819,0.21805 0.74085,0.38669 1.13423,0.56807 0.46702,0.21487 -0.24227,0.87698 -0.36341,1.17983 -0.0698,0.17405 -0.20147,0.3156 -0.3784,0.36405 -0.3886,0.10711 -0.79919,0.11636 -1.03254,-0.23303 l -0.0287,-0.4514 z m 1.97806,3.71448 c 0.81035,-0.78293 1.57894,-1.49701 2.67588,-1.83524 0.82916,-0.25535 0.65479,0.51994 0.16003,0.83011 -1.00672,0.63056 -1.83875,1.19385 -2.50151,2.19962 -0.25056,0.37999 -0.80461,0.53429 -1.23624,0.59741 -0.20721,0.0319 -0.43228,-0.20626 -0.37808,-0.40805 0.0488,-0.18139 0.41537,-0.58784 0.59612,-0.67009 l 0.6838,-0.71376 z m -33.26141,3.59813 c 0.27288,0.08 0.83299,-0.23941 1.0182,-0.45172 0.2359,-0.27001 0.76413,-0.98919 1.19258,-0.88845 0.30762,0.0724 0.006,0.71631 -0.0727,0.85944 -0.16991,0.30859 -0.42366,0.43929 -0.64012,0.6991 -0.11508,0.13771 -0.0647,0.27033 -0.10169,0.43705 -0.0631,0.28532 -0.59804,0.48424 -0.8435,0.51006 -0.42239,0.0443 -0.79984,-0.11381 -0.79984,-0.56839 l 0.24706,-0.59709 z m 10.83519,-5.76842 c -0.0577,-0.36373 0.0437,-0.76763 -0.0874,-1.1218 -0.10679,-0.28786 -0.52472,-0.30858 -0.77082,-0.23303 -0.18904,0.0577 -0.34333,0.24132 -0.32006,0.4514 0.01,0.0969 0.14983,0.18649 0.2037,0.27702 0.10903,0.18235 -0.0159,0.40008 -0.0437,0.59709 -0.0516,0.35863 0.12592,0.41442 0.45076,0.36437 l 0.56744,-0.33505 z m -55.52696,-59.64693 c 1.52125,-0.0743 1.65705,-0.89069 2.9086,-1.13615 2.34435,-0.45969 3.4703,-0.01 5.35208,-1.89359 2.67525,-2.67875 3.17415,-2.39535 6.54434,-2.2723 4.04953,0.1476 4.91599,-0.86901 5.87553,-4.48658 l 1.33826,-0.6991 0,0 c 1.95894,0.94967 2.22481,-0.18744 4.04284,-0.61174 1.28948,-0.30062 2.53402,0.52121 3.92679,0.32037 1.67522,-0.24195 4.18661,-1.81325 5.03203,-3.26276 1.37524,-2.35678 2.43233,-2.41799 5.03202,-2.41799 0.40199,0.88049 0.1798,1.7699 1.39628,2.00994 1.75587,0.34684 3.97238,-1.0488 5.64282,-0.2037 0.99237,0.50241 2.62902,2.11291 3.81044,1.77691 1.05741,-0.30093 1.73961,-1.2235 3.02495,-1.2235 1.66501,0 3.57613,0.44949 5.00301,-0.69909 1.61879,-1.30256 -0.43099,-2.56336 -0.87283,-3.70014 0.36692,-0.54226 0.336,-1.56715 0.87283,-1.9226 0.67965,-0.44948 1.21744,-0.58688 2.0941,-0.34971 1.03542,0.28054 1.47566,0.29361 2.53052,-0.058 l 0,0 c 0.87156,1.46896 3.0428,1.69753 3.66507,3.02973 0.18554,0.39689 0.0332,1.01151 0.058,1.45653 0.0319,0.55341 1.4119,1.58755 0.78549,2.21396 -0.52185,0.52185 -1.60572,0.45236 -1.97806,0.99079 -0.7246,1.04689 -2.23756,0.0191 -2.7049,1.54387 -0.31145,1.01757 1.60827,1.86043 1.16357,3.20475 0.095,1.02426 -0.9028,1.34209 -1.51264,1.95192 -0.34556,0.34557 -0.74595,0.93755 -1.0182,1.33986 -0.22219,0.32866 -0.86135,1.21776 -1.11829,1.52124 l 0,0 c -0.18841,-0.26013 -0.4683,-0.41825 -0.9468,-0.38509 -2.60734,0.18139 -7.19179,-0.16641 -9.04584,-2.35965 -0.25599,-0.30317 -0.98282,-2.01281 -0.98919,-2.01026 -1.06985,0.41474 -0.21869,2.53689 -0.84351,3.1174 -0.723,0.67232 -1.74503,1.34081 -2.70489,1.54388 -0.72556,0.30635 -2.36061,1.40074 -2.82157,0.20402 -0.34078,-0.88463 -0.85052,-1.48618 -1.80337,-0.87411 -1.70837,1.09694 -3.04312,3.24013 -5.23541,2.85504 -1.20755,-0.21231 -2.61658,-1.73802 -3.34501,-0.0874 -0.80684,1.8276 1.34527,3.00232 2.53052,4.02052 0.54098,0.46447 -0.69368,1.16229 -0.84351,1.51487 1.46036,1.1709 3.43682,1.32742 4.47925,2.56367 0.48264,0.5719 2.87863,4.79612 1.13456,2.94239 -1.02426,-1.08834 -1.00832,-1.33699 -2.4725,-2.0686 -1.31594,-0.65797 -1.58978,-1.60668 -3.14131,-1.16516 -2.90732,0.82693 -0.87857,2.78267 0.90153,3.90384 1.11096,0.70005 1.03509,1.7173 1.30893,2.82571 -1.10013,0.83395 -3.83754,-4.46713 -4.59561,-4.71929 -3.22132,-1.07176 -6.17806,-0.57158 -2.58885,2.65102 0.65542,0.58879 3.92488,2.33127 3.63606,3.20442 -0.76795,0.19287 -4.87327,-0.66466 -5.26474,-1.2525 -1.23433,-1.85469 -0.34843,-4.86881 -2.96693,-5.12734 -2.52637,-0.24929 -3.14418,-0.45969 -3.9268,-3.00073 -0.25885,-0.84063 1.33795,-0.99301 1.33795,-1.54419 -1.31691,-0.43578 -3.47986,-0.46511 -3.02496,1.71889 0.25216,1.20947 -0.97293,4.8076 -1.59966,5.85576 0.94711,1.89996 1.60986,3.7894 3.40303,5.069 1.49128,1.06443 0.87443,1.67203 1.51264,3.17542 0.37553,0.88399 1.45493,1.07463 2.15243,1.5442 1.00545,0.67646 1.79317,1.6698 2.2688,2.7967 0.63566,1.50722 2.92645,2.56686 0.52344,3.4958 -0.24546,0.0947 -1.75459,0.58593 -1.77435,0.3207 -0.0861,-1.13775 1.42528,-0.84702 1.42528,-1.3695 0,-1.11575 -1.23019,-1.11511 -1.80336,-1.80624 -1.05582,-1.27323 -2.34849,0.0787 -3.86846,-0.1747 -0.58019,0.0485 -1.07399,1.51328 -0.78549,1.98094 0.30795,0.49985 1.25378,0.75647 1.77436,0.99078 1.44952,0.65319 0.17182,1.57831 1.25059,2.38866 0.96369,0.72364 0.48775,0.63948 -0.29073,1.22381 -1.22063,0.91683 -1.80783,0.74118 -3.28667,1.07782 -0.20562,0.0469 -1.51615,0.11572 -1.42529,0.32038 0.23622,0.53045 0.93244,1.01469 1.4543,1.19448 0.52599,0.18107 1.27227,0.22793 1.83237,0.32038 0.90822,0.15047 1.55823,0.6787 2.38515,0.81577 1.41541,0.23463 0.93691,0.78262 1.74535,1.42752 1.07654,0.85945 1.58596,-0.72619 2.06509,-0.55341 0.59103,0.21295 0.73544,1.29363 0.90153,1.80624 0.57413,1.36504 2.21396,1.16516 3.40335,1.16516 1.09343,0 1.24613,1.21489 1.97774,1.80624 1.2694,1.02553 4.94755,1.06761 3.40335,3.20474 -0.53588,0.74214 -0.51452,2.73996 -0.0874,3.61248 0.60251,1.22987 1.14986,0.85402 1.89072,1.71857 0.51292,0.59899 -0.5295,1.25059 -0.66913,2.12693 -0.37936,2.38101 -2.36156,-2.65675 -2.73422,-3.05906 -0.43482,-0.46893 -1.50275,-0.97931 -2.0941,-1.31084 -0.69463,-0.38924 -0.37872,-1.62517 -1.48363,-1.34018 -0.54799,0.14154 -1.71889,0.93245 -2.15243,1.31085 -0.98728,0.86231 -1.48108,0.68666 -2.53052,1.10714 -0.7568,0.30284 -2.2978,-0.0902 -2.2978,1.07781 0,1.34272 1.14348,1.03223 2.03608,1.25283 0,1.06538 -0.63885,1.68637 0.0583,2.7967 1.18812,1.89294 2.27454,-0.44534 2.53052,0.55341 0.11413,0.44502 -0.11731,0.74691 -0.26172,1.13615 -0.28085,0.75839 1.30638,1.30383 1.4543,1.74822 -1.95926,0.63884 -1.27738,-1.26526 -2.58886,1.01947 -0.50846,0.88559 -2.5031,0.26459 -1.10523,-1.2525 0.27065,-0.29392 -1.34559,-1.13679 -1.62899,-1.36951 -0.34971,-0.28658 -3.7639,-1.41508 -3.89747,-1.31084 -1.98762,1.55663 0.34875,3.91659 0.93054,5.15635 0.30125,0.6414 0.0848,1.41413 0.46542,2.09761 0.78485,1.40998 2.42947,3.30612 2.90892,4.74862 0.42271,1.27291 -0.87475,1.5681 -0.46543,2.21428 0.76477,1.20692 2.21046,1.4272 2.21046,3.11708 l -0.058,0.0583 c -0.41283,0.058 -0.82534,-0.0874 -1.22159,-0.0874 -0.0443,-0.17724 -0.26395,-0.33121 -0.29105,-0.55373 l -3.92679,-2.21396 c -0.29902,-0.16832 0.16385,-1.09152 -0.20339,-1.48586 -2.38005,-2.55378 -3.57772,4.97305 -3.57772,6.0888 0,0.47786 -3.36797,-1.34878 -2.09442,-2.21396 1.52284,-1.0351 0.40422,-4.82673 -1.22159,-5.3897 -1.34049,-0.46447 -0.1307,-2.52 -1.22158,-3.17542 -1.72718,-1.03733 -3.02432,1.78105 -2.9086,3.11708 0.0223,0.27352 0.74373,2.12693 -0.0287,2.12693 -1.21903,0 -4.21179,-1.11447 -2.64687,-2.593 1.00067,-0.94583 0.11126,-0.75105 -0.58178,-1.28183 -2.71159,-2.07752 0.10073,-2.57355 0.29105,-4.74862 -0.088,-1.79126 -2.0262,-3.82543 -3.49038,-4.69029 -1.97934,-1.16867 -3.11868,0.5193 -2.99594,-2.18495 0.0542,-1.19991 -0.4275,-1.51965 -1.51264,-2.0686 -1.66884,-0.84478 0.12592,-1.63664 1.10523,-2.15563 1.29172,-0.68507 1.34687,-4.19425 2.53051,-3.35043 0.92544,0.66021 1.14986,1.28184 2.44349,1.28184 0.91842,0 2.40843,-0.56425 2.79224,-1.48554 0.82789,-1.9854 1.76767,-0.43387 2.93793,-0.20402 0.0768,0.31177 0.82533,0.13325 1.01788,0.11635 1.40329,0.29647 2.498,0.767 3.81044,1.28184 0.91842,0.36054 2.31278,0.48296 3.316,0.69941 0.8247,0.1782 1.06825,0.78294 1.65768,1.28184 0.30922,0.26204 1.41445,1.33475 1.77436,0.93212 0.75935,-0.84892 -0.23303,-1.33347 -0.31974,-2.0976 -0.081,-0.71281 2.90636,-0.39019 3.22866,-1.07781 0.2496,-0.53333 -1.07017,-1.1827 -1.27993,-1.63155 -0.0625,-0.13421 -0.30029,-0.83681 -0.4074,-0.84478 -0.44407,-0.0331 -1.09376,0.66594 -1.62868,0.75744 -2.59076,0.55946 -0.8553,-2.79734 -2.85057,-2.41799 -0.47308,0.0899 -1.36951,3.69727 -2.18145,1.34017 -0.13676,-0.39784 -1.16325,-2.94175 -1.658,-1.77722 -1.05614,2.48429 -1.74025,1.51263 -3.95581,1.45684 -1.24007,-0.0319 -9.13574,0.7737 -9.07517,-0.29137 0.17533,-3.08615 -3.04058,2.35902 -4.10118,-2.18495 -0.24705,-1.05805 -0.57827,-3.97366 -1.45429,-4.66128 -1.32615,-1.04147 -1.00418,0.26555 -1.39628,-1.45684 -0.18267,-0.80366 -0.29934,-1.14827 0.49443,-1.45653 1.00577,-0.3902 3.70875,2.2095 3.81044,1.51486 0.0829,-0.56807 -0.10392,-2.18495 -0.72715,-2.18495 -1.54037,0 -2.01344,-1.18843 -2.99594,-1.28183 -0.72555,-0.0692 -1.23242,0.87155 -1.59966,0.75743 -0.43419,-0.13517 -1.10204,-1.57799 -1.22159,-2.00994 l -3.28699,-3.8165 c -0.92703,-1.07622 -2.23947,-1.64684 -2.23947,-3.26276 0,-1.10045 -0.45522,-1.01151 -1.25091,-1.71889 -0.48009,-0.42654 -1.5917,-0.92576 -2.09761,-1.56078 l 0,0 2.09761,-0.0998 c 0.71185,0.20817 1.3424,0.58243 2.09442,0.58243 0.73894,0 0.65606,-0.69655 0.81417,-1.16516 0.1425,-0.42144 0.78549,-0.66276 0.78549,-1.10715 0,-0.74308 -1.24772,-2.32458 -0.49443,-2.97139 0.36883,-0.31687 2.03671,-0.41793 2.61786,-0.61175 1.79221,-0.5974 1.86936,-2.24457 3.1123,-3.43778 0.54831,-0.526 1.15815,-0.79314 1.74503,-1.2235 0.72173,-0.52886 0.74086,-1.42146 1.0182,-2.21428 0.0711,-0.45044 0.35544,-0.88176 0.31974,-1.33985 -0.0481,-0.61972 -0.32675,-1.04147 -0.46543,-1.63155 -0.15779,-0.67263 0.0583,-1.40106 0.0583,-2.0976 l 0,0 z",416.63742,547.35144,middle,,4,5,10 HR,Croatia,"m 317.68802,451.31635 c -0.4208,-0.45395 -0.69782,-0.78039 -0.69782,-1.42752 0,-0.39848 0.28117,-0.55437 0.4361,-0.90312 0.11093,-0.25025 0.28754,-1.64525 0.72715,-1.48586 0.26809,0.0969 0.44693,0.83873 0.43641,1.07781 -0.0127,0.31401 -0.14759,0.82948 -0.0287,1.13647 0.13708,0.35577 0.34907,0.90312 0.34907,1.28184 0,0.2088 0.073,0.45841 0.0287,0.66977 -0.087,0.42016 -0.48264,0.59102 -0.8435,0.3497 l -0.40741,-0.69909 z m 2.93792,-4.31157 c -0.2394,-0.0599 -0.51196,-0.2901 -0.72714,-0.40805 -0.19478,-0.10647 -0.93086,-0.57381 -0.93086,-0.78644 0,-0.19255 0.20371,-0.48838 0.32006,-0.64108 0.0749,-0.0979 0.47914,-0.54958 0.49444,-0.61175 0.62259,0 0.97644,1.28216 1.48331,1.66056 0.26746,0.19924 0.44534,0.45905 0.52376,0.78676 0.0638,0.26523 -0.263,0.87634 -0.58178,0.75743 l -0.58179,-0.75743 z m 4.10118,9.29322 c -0.52058,-0.44311 -0.95285,-0.86677 -1.39628,-1.36918 -0.18394,-0.2088 -0.71376,-0.84478 -0.95987,-0.84478 -0.87442,0 0.52791,1.66757 0.69814,1.89358 0.31815,0.42303 0.70834,0.69272 1.0182,1.10683 0.3937,0.52567 0.58211,1.24453 1.13424,1.71889 0.12815,0.10998 0.6347,0.56265 0.8145,0.3497 0.37011,-0.43769 -0.22251,-0.97994 -0.49444,-1.25282 l -0.81449,-1.60222 z m -6.63169,-1.7479 c -0.23335,-0.23398 -0.40805,-0.60346 -0.58179,-0.90311 -0.25024,-0.4326 -0.69877,-1.40585 -1.22158,-1.51487 -0.59772,-0.12433 -0.59677,0.5668 -0.40741,0.93213 0.22124,0.42749 0.60283,0.66626 0.84351,1.0488 0.29934,0.47658 0.68507,0.87347 0.93085,1.36918 0.1001,0.20147 0.23845,0.41793 0.37808,0.58274 0.314,0.37171 0.35704,-0.0127 0.37808,-0.29137 l -0.31974,-1.2235 z m 6.17933,11.57254 c -0.38063,-0.4922 -0.59454,-0.9283 -0.91619,-1.42752 -0.18458,-0.28595 -0.30667,-0.63342 -0.45076,-0.94679 -0.23654,-0.51356 -0.73703,-0.8875 -0.6398,-1.52953 0.0784,-0.51611 0.72332,0.61494 0.75615,0.67009 0.22985,0.38764 0.44885,0.8384 0.69814,1.20915 0.3478,0.51803 0.76796,0.91396 1.00354,1.5002 0.0899,0.22347 0.53173,0.98059 0.0159,0.8451 l -0.46543,-0.3207 z m 2.85058,-0.48072 c -0.62865,-0.51325 -0.98983,-1.23785 -1.49798,-1.84991 -0.21804,-0.263 -0.89546,-1.38417 -0.0287,-0.74277 0.40454,0.29965 0.75648,0.70196 1.16357,1.01947 0.53556,0.41825 1.08132,0.87443 1.43963,1.45685 0.10552,0.17119 0.33377,0.34046 0.34907,0.55341 0.0255,0.3529 -0.55532,0.16545 -0.69814,0.073 l -0.72715,-0.51005 z m 5.55578,5.11299 c -0.25885,-0.15844 -0.52854,-0.3309 -0.79983,-0.4514 -0.12783,-0.0564 -0.31336,-0.13325 -0.45108,-0.16035 -0.11667,-0.0223 -0.17246,0.0319 -0.26172,0.0437 -0.0223,0.12432 -0.11221,0.27606 -0.0287,0.40804 0.15461,0.24419 0.49093,0.16131 0.6398,0.43706 0.0548,0.10201 0.13325,0.34333 0.23271,0.39306 0.16099,0.08 0.40422,-0.0255 0.52377,-0.13102 l 0.14536,-0.53907 z m 11.99844,5.63772 c -0.4106,-0.0191 -0.7654,-0.29743 -1.17791,-0.37872 -0.59836,-0.11827 -1.33412,-0.70866 -1.94905,-0.5974 -0.52185,0.0947 -0.68603,0.79122 -0.49444,1.22349 0.18203,0.41156 0.5939,0.4954 1.00354,0.4954 0.77688,0 1.25952,0.45171 2.05074,0.45171 0.63917,0 1.33061,0.0319 1.26526,-0.78676 l -0.69814,-0.40772 z m 1.99241,2.75303 c -0.61876,0.12368 -1.52252,0.11635 -2.12343,-0.0727 -0.93978,-0.29615 -1.91558,-1.52379 -2.79224,-0.58274 -0.28818,0.30922 -2.29175,0.9723 -0.98887,1.44219 0.94743,0.34142 2.089,0.0434 3.05396,0.11635 0.45013,0.0338 0.97038,0.18904 1.41094,0.13102 0.35354,-0.0462 0.62323,-0.21613 0.95987,-0.30571 0.35927,-0.0953 0.84988,0.0351 1.25059,-0.0159 0.65128,-0.0806 0.6991,-0.72715 -0.0159,-0.7721 l -0.75616,0.0583 z m 0.10169,3.01538 c -0.76445,0.20658 -1.46004,-0.3548 -2.21046,-0.37871 -0.83234,-0.0255 -1.26621,-0.12305 -1.13455,0.84478 0.10424,0.76795 0.25343,1.10586 1.03286,0.78676 0.42048,-0.17183 0.97166,-0.10201 1.42529,-0.10201 0.69081,0 1.53782,0.0746 2.21046,-0.0437 0.3411,-0.0599 0.41697,-0.35704 0.14536,-0.55373 -0.35321,-0.25535 -0.76923,-0.19446 -1.13424,-0.37872 l -0.33472,-0.1747 z m 7.33015,3.64181 c -0.84,-0.29424 -1.92292,-0.54576 -2.82157,-0.45172 -0.69368,0.0727 -1.07144,0.43928 -0.26172,0.87411 0.49316,0.26491 1.37555,0.21486 1.93438,0.32038 0.74756,0.14154 1.36026,0.58242 2.0941,0.69941 0.14154,0.0223 0.62387,0.0701 0.66913,-0.10201 0.0998,-0.38031 -0.54289,-0.63598 -0.75615,-0.83044 l -0.85817,-0.50973 z m -1.16357,-3.07373 c -0.76094,-0.27958 -3.77442,-2.47059 -4.30487,-1.93726 0,0.65542 1.90314,1.49415 2.45783,1.77691 0.52504,0.2681 0.92448,0.66626 1.46896,0.87411 0.38541,0.14728 0.79792,0.17438 1.19258,0.33504 0.44789,0.18203 0.91108,0.62642 1.43995,0.62642 0.90312,0 -0.80366,-1.11193 -0.98919,-1.2235 l -1.26526,-0.45172 z m 11.90758,8.19533 c -0.32006,-0.37362 -0.54161,-0.86965 -1.0861,-1.18206 -0.83968,-0.48168 -1.31467,-0.65542 -1.94873,-1.48585 -0.75712,-0.99238 -1.44761,-2.35328 -3.02527,-2.03927 -1.3982,-0.65415 -2.26178,-2.17986 -3.31569,-3.23376 l -0.10456,-0.1001 1.84959,-0.19127 c 0.43227,0.57158 0.85435,0.94137 1.33699,1.45015 0.85115,0.89643 1.88083,1.43868 2.8069,2.2433 0.44917,0.38987 0.62004,0.71631 1.26526,0.8011 0.4836,0.0638 1.05167,0.1798 1.41094,0.53907 l 0.33536,0.44343 0,0 0.55278,1.71889 -0.0775,1.03637 0,0 z m -10.62319,-8.81409 c -0.87794,-0.46639 -1.85661,-0.82916 -2.59205,-1.45749 -2.56654,-2.19197 -4.7805,-5.26665 -7.99895,-6.49652 -0.53716,-0.2053 -1.86872,-0.35545 -2.23979,-0.72843 l 0,-0.2037 0.55277,-0.69941 0,-0.0874 c -0.84701,-0.63311 -5.14838,0.70324 -6.02089,1.28183 -0.59198,0.39211 -1.35675,-3.36732 -1.77436,-4.25323 -1.29873,-1.94969 -1.56778,-2.15658 -3.66507,-3.20474 -1.42051,-0.71026 -2.40269,-2.39631 -3.19965,-3.69983 -0.37138,-0.60696 -2.23532,-1.89358 -0.58146,-1.89358 1.20628,0 1.60285,-0.19446 2.55952,-0.75743 0.12624,-0.0743 3.19933,1.66948 2.0941,0.37871 -0.17724,-0.20689 -0.45076,-0.42207 -0.69782,-0.55341 -2.15371,-1.14412 -4.24781,-3.09126 -5.75917,-4.98197 -1.31021,-1.63951 -1.12021,-2.89298 -1.80337,-4.7193 0.20944,-4.04251 1.41987,-3.52608 -1.83269,-6.08879 -2.32108,-1.82919 -3.45723,-2.17284 -4.71197,1.34017 -0.78676,2.20217 -1.79348,1.92323 -3.1123,3.43746 -0.36501,0.41952 -0.76285,1.98731 -1.4543,1.83556 -0.83107,-0.18202 -2.25636,-3.37689 -2.58885,-4.19521 -0.46192,-1.13551 -1.90315,-5.82133 -1.59966,-6.8169 0.11699,-0.3835 0.55436,-0.57286 1.08769,-0.72077 l 0,0 2.43169,0.92447 c 1.57034,0.71855 6.10092,1.36791 7.44619,-0.0873 0.34747,-0.37553 0.7874,-2.32331 1.25091,-2.41799 0.0842,-0.0159 3.51843,2.74729 4.24654,3.05906 5.83154,2.49673 2.60447,-1.70964 5.81751,-3.43778 1.28215,-0.68985 3.41132,-0.89068 3.9558,-2.53466 0.49922,-1.50626 -1.47756,-3.05109 -1.39627,-4.95232 0.68156,-0.1492 1.01979,-0.84893 1.59998,-1.22382 1.74057,-1.12404 4.8704,-0.36023 6.10792,-2.15563 0.57222,-0.83075 0.8145,-1.34973 0.8145,-2.38897 0,-1.19098 0.17119,-1.54834 0.78548,-2.53466 l 0,0 c 1.07718,0.25503 1.39756,1.40584 1.89072,2.30163 0.81418,1.47788 2.43329,1.90282 3.1123,3.49579 0.80939,1.89964 2.26178,2.82317 4.01382,3.75816 1.03892,0.88017 1.74758,2.12726 2.87959,2.91338 1.75587,1.21903 4.03168,2.6507 6.25361,2.21396 2.11418,-0.41537 5.0062,-0.31464 6.92274,-1.34017 l 2.43456,-1.20565 -0.045,0.0128 c -0.0127,0.54831 -0.0255,1.11606 -0.0918,1.71825 -0.0851,0.7807 0.43706,3.37083 1.04721,3.93317 0.75616,0.69655 1.57671,0.59453 1.80337,1.77691 0.39625,2.06636 0.46542,3.12983 2.76323,3.87483 -0.0159,0.5244 -0.0574,0.26045 -0.23272,0.61175 -0.19828,0.39816 -0.34715,1.0029 -0.11635,1.42752 0.28085,0.51579 0.45745,1.09694 0.52376,1.68956 l 0.14537,1.92291 0,0 c -1.07495,0.26651 -4.251,0.43291 -5.00302,-0.40804 -1.43899,-1.60955 0.18362,-3.67049 -2.64687,-3.67049 -1.59201,0 -3.76517,0.60314 -5.23573,0.058 -0.65797,-0.24356 -1.43357,-0.48392 -2.12311,-0.29106 -1.00672,0.28117 -1.56714,0.83618 -2.76355,0.46607 -1.18269,-0.36565 -1.33634,-0.97485 -2.70489,-0.58274 -0.80748,0.23112 -0.88463,-0.0762 -1.59966,-0.11668 -0.87857,-0.6755 -3.0189,-1.15719 -4.10149,-1.42752 -2.87481,-0.71758 -4.40179,0.23877 -6.60268,2.01026 -1.059,0.85275 -1.71666,1.99592 -3.25767,1.04881 -0.72523,-0.44535 -3.19837,-3.13876 -3.7521,-2.79671 -0.68347,0.42208 -1.41636,1.80337 -1.62899,2.56367 -0.54927,1.25921 -0.66881,2.53722 -0.66881,3.90385 0,0.94679 1.27355,1.71921 1.8904,2.30131 2.04341,1.9296 1.63983,4.14867 2.6762,6.49684 0.55819,1.2643 1.95319,2.6252 2.32681,3.81618 1.17536,1.05454 2.51171,1.79731 3.316,3.20474 0.75202,1.31563 0.7788,1.97902 2.03608,2.94239 1.14412,0.87634 3.40718,3.72246 4.68296,3.78717 1.8668,0.095 0.6143,1.31977 1.2796,2.65102 0.27798,0.55596 1.15464,0.68028 1.19258,0.93244 0.29392,1.9379 2.98351,2.02684 2.85057,4.16589 l -1.18906,0.87474 0,0 z",343.65387,442.70807,middle,,2,5,6 HU,Hungary,"m 351.19553,397.70625 2.15307,3.24013 5.60712,2.33638 c 2.42946,0.60154 5.13403,0.28021 7.04579,0.0526 1.59073,-0.18967 2.72497,-0.66689 4.36289,-0.20402 0.29998,-0.56393 -0.0873,-1.98157 -0.0873,-2.73836 0,-0.76317 0.22793,-1.48937 0.26173,-2.24329 0.0255,-0.55915 0.18043,-3.65392 1.36727,-2.85504 1.80528,1.21457 5.11076,0.25726 6.77705,-0.67009 0.72237,-0.49061 0.49699,-1.48235 1.42529,-1.66055 2.07274,-0.39753 2.75143,2.24456 5.32307,0.40772 1.68351,-1.20277 2.02301,-2.61212 3.43204,-3.93285 1.16771,-1.09407 1.80975,-0.67008 3.17064,-0.67008 1.98061,0 3.88376,-0.49508 5.87553,-0.49508 2.84516,0 2.48302,1.5171 4.3919,2.7967 l 3.37434,-0.11667 0,0 c 1.29427,0.32357 1.48491,0.43514 2.2688,1.42752 1.92546,2.43839 5.33901,2.81583 6.80606,5.76842 l 0,0 c 0,2.90509 -2.23404,2.03927 -4.04283,2.03927 -1.33444,0 -2.9545,1.59137 -3.46137,2.73836 -0.4616,1.0453 -0.81577,3.58888 -2.09442,3.96218 -1.00067,0.29233 -1.60381,0.003 -1.16325,1.28184 1.29714,3.76676 -2.64464,7.37923 -5.17771,9.67194 -0.60473,1.35547 -1.77977,2.30386 -2.2978,3.87483 -0.64076,1.94172 -1.84162,5.14232 -3.92679,5.88478 -1.55759,0.55436 -3.83212,0.9267 -5.03203,2.12661 l 0,0 -1.86139,-0.14568 -3.1413,-0.61175 c -2.06956,-0.97325 -5.65175,-1.17759 -6.57367,1.45653 -0.79346,2.26624 -4.52675,1.95989 -6.52426,2.78554 l 0,0 -2.43456,1.20565 c -1.91654,1.02553 -4.80856,0.92479 -6.92274,1.34017 -2.22193,0.43674 -4.49774,-0.99493 -6.25361,-2.21396 -1.13201,-0.78613 -1.84067,-2.03321 -2.87959,-2.91338 -1.75204,-0.935 -3.20443,-1.85852 -4.01382,-3.75816 -0.67901,-1.59297 -2.29812,-2.01791 -3.1123,-3.4958 -0.49316,-0.89578 -0.81354,-2.0466 -1.89072,-2.30163 l 0,0 -0.75615,-3.75815 0,0 c 0.64331,-1.73675 1.45366,-3.44894 1.71602,-5.30204 0.17214,-1.21521 1.67107,-1.89326 1.71602,-3.08807 0.0421,-1.12404 0.63629,-1.4119 0.95986,-2.38898 0.35545,-1.07239 -0.91364,-2.94238 0.55277,-2.94238 1.92164,0 3.23727,-0.48041 4.7703,-1.63123 l 0.2901,-4.25992 0,0 z",372.56467,415.8063,middle,,1,5,5 IE,Ireland,"m 129.35006,237.24959 c -0.1613,-0.98855 0.55979,-1.07909 0.61079,-1.80624 0.0545,-0.77879 0.9044,-2.30577 -0.37808,-2.476 -1.35993,-0.18075 -3.91213,0.0191 -5.20671,0.49507 -1.21394,0.44439 -1.55631,1.04307 -2.47218,1.77723 -0.62355,1.03764 -1.17186,1.81357 -2.53084,2.03927 -0.54225,0.0902 -2.55952,-0.17278 -2.55952,0.67008 0,1.60891 2.19388,2.59205 3.51938,3.17542 0.2324,0.10233 3.12856,0.52791 1.86171,1.01948 -1.41413,0.54831 -2.0042,1.22796 -3.51939,0.78676 -2.05999,-0.60027 -3.60578,0.70738 -1.39628,2.47632 0.90471,0.7246 -1.20182,0.39657 -1.74535,0.58242 -0.94583,0.32293 -0.11125,-1.58372 -1.25059,-1.86425 -1.40361,-0.34525 -2.07593,-1.21425 -3.43236,-0.14569 -1.4798,1.16612 -0.31687,-2.07975 -1.54165,-2.53466 -1.05007,-0.39019 -4.06897,-2.5981 -3.60673,-0.34971 0.23399,1.13743 -1.31021,-0.11795 -1.54133,-0.34938 -0.81959,-0.82183 -0.4141,-1.85725 -1.658,-0.61175 -0.24769,0.24833 -2.856633,1.78551 -1.27992,1.86425 0.32102,0.0159 1.38129,-0.27766 1.59966,-0.058 -0.39242,0.12975 -0.29774,1.62262 -1.57065,1.28184 -0.52058,-0.13931 -2.605117,-0.70643 -2.123113,0.37872 0.31145,0.70069 3.037073,3.32333 3.868463,3.35011 1.16324,0.0373 0.46383,1.53431 -0.8145,1.13615 -2.555703,-0.79569 -0.74532,2.20312 -2.268793,2.2723 -1.190028,0.0539 -1.829511,-0.78102 -2.239788,0.69942 0,0.80046 -0.98919,1.42688 -0.581464,2.24329 0.296151,0.5923 0.830117,0.52185 1.42497,0.66976 1.578625,0.39243 -0.957631,1.05773 0.407412,1.77723 1.01628,0.53524 1.229553,-0.37872 1.803363,-0.37872 0,1.34815 -1.127863,2.43489 0.66881,2.73837 1.45621,0.2461 2.7084,0.96146 4.24686,0.96146 0,2.92804 -0.51388,1.25282 -2.64687,1.25282 -1.25379,0 -3.633843,2.80754 -4.595932,3.64148 -1.290442,1.11926 -2.535617,0.85881 -3.984814,1.36919 -0.379674,0.35066 -0.804295,0.16545 -1.134238,0.49539 1.801774,1.80177 5.354953,0.46192 7.300824,1.13615 0.96305,0.33345 1.6003,-0.672 2.23946,0.20402 0.25248,0.34588 1.51264,0.55086 1.51264,1.07781 -2.0839,0 -4.24654,0.47978 -6.224604,-0.0287 -2.015679,-0.51834 -3.022721,0.23304 -4.857648,0.23304 -2.693097,0 -0.390512,0.96687 -1.337942,2.44699 -0.463195,0.72332 -1.38289,-0.8349 -2.210456,-0.87379 -0.372341,-0.0159 -1.143164,0.17278 -1.396279,-0.14568 -0.911088,-1.14763 -0.714716,-0.80621 -2.239466,-0.58274 -0.233669,0.0341 -2.813279,0.0488 -1.599983,0.72842 1.672985,0.93659 4.011274,1.17409 5.555788,2.24297 1.803049,1.24741 -0.31751,0.72843 -1.105547,0.72843 -1.288848,0 -1.714745,-0.0395 -2.704892,0.84478 -0.666261,0.59453 -2.629021,0.63342 -1.599983,2.01026 0.432273,0.57891 0.856257,0.1562 0.610793,1.13615 -0.237495,0.94966 0.520895,0.82852 1.192575,0.78644 0.339506,0 2.152438,-0.17438 2.152438,0.26236 -0.31241,0.0618 -0.602186,0.43387 -0.901525,0.55341 -0.393062,0.15684 -1.076219,0.0325 -1.076219,0.61175 0,0.48583 -1.068249,0.23877 -1.425288,0.29137 -0.436098,0.0644 -0.974526,0.31305 -0.232713,0.49539 1.230192,0.30285 2.623602,0.30444 3.897786,0.26204 0.60346,-0.0191 1.60604,-0.57445 1.977743,0.0287 0.638208,1.03574 -1.076537,1.13615 -1.71602,1.13615 -1.092477,0 -1.518693,0.25822 -1.745349,1.3982 l 0.232713,0.49539 c 1.200864,0.15557 2.453052,-0.38095 3.519707,-0.23303 0.701327,0.0969 1.257607,0.83904 1.774039,1.31084 1.16261,1.06124 3.955168,1.36918 5.468441,1.36918 0.814498,0 2.596831,0.5668 3.170321,-0.058 0.97325,-0.40677 1.33571,-1.1473 1.77436,-1.95192 0.43642,-0.79983 0.46415,0.31432 1.10523,0.58274 2.29589,0.96241 2.10557,-1.50371 3.37434,-1.42752 1.11096,0.067 0.70515,1.09312 2.47218,0.49507 1.61624,-0.54735 -0.23431,-2.52286 2.41416,-1.22349 0.65351,0.3207 4.13528,1.22094 4.47957,1.0488 0.69463,-0.34684 1.11319,-2.257 1.36695,-0.46606 0.23048,1.62771 0.61525,0.84478 1.8617,0.84478 1.01756,0 2.73645,2.53498 3.5484,1.80623 1.28757,-1.15623 -0.50814,-1.44186 0.78549,-3.02973 l 2.96693,-3.6418 c 0.58975,-1.92164 1.73355,-2.31311 3.08297,-3.4958 0.79027,-0.69304 0.4734,-2.5184 0.95986,-3.49612 0.42463,-0.85275 -0.80971,-1.64939 -0.75615,-2.35964 0.0599,-0.79155 1.41763,-0.0223 1.80336,-1.28184 0.42367,-1.38353 -0.15397,-2.80021 1.4543,-3.52513 0.30763,-0.13835 -0.63151,-1.03732 -0.49443,-1.5732 0.24004,-0.93914 0.77879,-1.59743 1.07621,-2.56367 0.31465,-1.02139 -1.06028,-0.70101 -1.19257,-2.38866 0.41538,-1.56619 -0.0889,-2.15052 1.22158,-0.72842 1.0096,1.09598 1.08738,-0.91555 1.16357,-1.2235 l 0.0874,-0.0287 c -0.1543,-0.38764 -0.25408,-1.59361 -0.55278,-1.89358 -0.29934,-0.3003 -0.81704,-0.34174 -1.22158,-0.46607 -0.53715,-0.16481 -0.62227,-0.30954 -0.84351,-0.84478 -0.25917,-0.62322 -0.65319,-2.91338 -1.4543,-2.91338 -1.67936,0 -2.58247,1.56874 -3.89778,1.80624 -2.14479,0.38764 -4.57266,-2.33765 -5.23541,-4.25323 -0.4769,-1.37939 -0.39402,-3.47157 1.16325,-4.13688 0.65701,-0.28085 2.33287,0.0807 1.45429,-1.19449 -0.5142,-0.74595 -1.12276,-2.00962 0.23272,-2.30162 0.72874,-0.15717 2.85185,0.10647 2.6762,-0.99047 l 1.00098,-1.49191 -0.0411,-0.13963 z",114.9409,268.54364,middle,,2,0,2 IS,Iceland,"m 142.41005,44.740319 c 0.61207,2.26018 0.23782,3.62267 2.85026,1.66055 2.28282,-1.71411 2.69533,-1.11702 2.00707,1.28183 -0.19382,0.67551 2.57132,0.19765 2.87959,-0.0873 0.86486,-0.79856 1.04561,-3.09063 2.35614,-3.90385 0.63247,-0.3921 2.08645,1.00258 2.85058,1.16548 1.66884,0.35577 -0.17597,3.75465 0.66881,5.44772 0.94902,1.90251 1.73897,-0.89387 2.58885,-0.75743 1.11734,0.17979 1.12978,0.4463 2.32682,0.17469 0.39369,-0.0893 2.03416,-0.13994 1.658,0.64108 -0.30891,0.64203 -1.71124,-0.13453 -2.00707,0.5244 -0.42495,0.94743 -1.31563,0.96815 -2.29781,1.51487 -0.96305,0.53651 1.10045,1.71889 1.68701,1.71889 1.74408,0 1.39628,-0.12497 1.39628,1.54387 0,1.06347 -1.78488,1.10906 -2.67588,1.48586 -0.60219,0.25471 -4.07152,1.39214 -2.06541,1.92291 0.87347,0.23112 2.26816,-0.32069 3.25798,-0.32069 -0.36245,0.48104 -0.26172,1.5359 -0.58178,2.12693 0.49061,1.96786 6.2042,4.00554 0.84351,5.33105 l 0,0.0583 c 0.69718,0.17215 2.33988,0.93628 1.39596,1.68988 -0.58115,0.46352 -3.15948,-0.94743 -2.12311,0.55341 1.64684,2.38547 -0.90854,4.36545 -2.85058,2.62201 -0.55979,-0.5024 -1.2439,0.39275 -1.658,0.49508 0,0.28977 2.26465,1.00289 1.8617,1.36918 l -1.57065,1.42752 c -0.98154,0.892285 -3.79641,3.053005 -4.82864,1.951925 -1.02744,-1.09567 -1.61178,0.95125 -2.23946,1.51487 -0.48105,0.43163 0.39497,1.17823 -0.1747,1.63154 -0.75966,0.60505 -1.20533,0.41251 -2.06509,0.64108 -1.05868,0.2818 -0.37808,1.98125 -1.77436,1.07781 -1.69498,-1.0963 -1.35197,1.22637 -2.5015,0.90312 -0.5684,-0.16003 -1.17664,-2.44285 -0.95987,-3.05907 0.57095,-1.62038 -1.28916,-0.82087 -1.77435,0.3207 -0.74532,1.75428 -2.62456,-0.92097 -3.31569,-0.75743 -1.06155,0.25152 -1.40584,0.92065 -2.55984,1.19417 -1.52826,0.38605 -4.3664,1.70614 -5.87553,0.93244 -0.9028,-0.46255 -1.7122,-1.94745 -2.85058,-2.50565 -0.56106,-0.27479 -0.49316,1.40457 -1.04689,1.74822 -1.40871,0.87347 -1.64429,-0.63598 -2.00707,-1.28183 -0.22698,-0.40454 -1.22924,0.0513 -1.658,-0.0873 -0.63534,-0.2053 -0.86806,-1.38321 -0.93086,-1.39851 -0.69527,2.10175 -0.69208,3.20443 -2.87958,3.20443 -1.64525,0 -0.33632,-3.42631 -1.2506,-3.72883 -0.13931,0.56457 -0.75361,3.62522 -0.98887,3.72883 -1.31052,0.577 -2.67333,-1.0861 -3.37402,-1.9226 -0.61972,-0.74022 -1.82823,-0.84573 -2.29812,-1.68956 -0.71504,-1.2847 1.45429,-1.13583 1.45429,-2.039595 -1.23433,0 -2.31884,1.338585 -3.31568,-0.0287 l -1.42529,-2.50533 c -0.16099,-0.28276 -1.18014,-1.14826 -0.93085,-1.39851 0.51356,-0.51611 3.1123,0.57095 3.1123,0.0874 -0.34206,-0.0845 -2.17125,-1.95192 -2.61787,-2.30131 -0.94806,-0.74118 -1.45429,-2.03895 -1.45429,-3.20475 l -0.029,-0.0287 c -0.95859,0 -1.62804,0.46702 -2.64688,0.20402 -1.006723,-0.26013 -1.334434,-2.03066 -2.210774,-2.27262 -0.750739,-0.20689 -1.326465,-0.0956 -1.919725,-0.69909 -0.757114,-0.77083 -2.45592,-1.44729 -3.461369,-1.89359 -0.731931,-0.32452 -3.731699,-1.41795 -2.792239,-2.622 l 2.705211,-3.46679 c 0.117313,0.35991 0.678375,2.44317 0.872515,2.56367 0.669767,0.41537 1.736104,0.14696 2.472498,0.49539 2.73932,1.29554 2.899988,-1.57321 5.206403,-1.66055 2.49864,-0.0944 -0.18458,-1.36727 -0.55277,-2.41799 0.64139,-0.82406 0.48104,-1.21521 1.658,-1.28183 0.9216,-0.0523 1.45971,-0.69655 0.26172,-0.90312 -0.61717,-0.10616 -1.25059,-0.0449 -1.86139,-0.17501 -2.738046,-0.58434 1.14954,-3.87835 -0.639803,-5.2437 -1.849909,-1.41126 -3.73903,-2.39854 -5.817509,-3.43778 -0.778474,-0.38924 -1.063468,-4.84554 1.919724,-1.16516 0.867733,1.0708 1.765751,0.46351 2.937925,0.75743 1.554713,0.3902 2.366343,1.80528 3.664753,2.03927 0.96273,0.17374 1.91526,-0.0625 2.87959,0.2037 1.42274,0.39243 4.14548,1.89614 4.91567,-0.46606 -0.80111,-0.26491 -2.11419,-0.25726 -2.76323,-0.87379 l -2.2688,-2.15594 2.96694,-0.67009 c 0.80238,-0.18107 3.92679,0.3258 3.92679,0.32038 0,-0.55501 -1.05836,-1.22159 -1.48362,-1.45653 -0.62992,-0.34843 -2.3944,-1.07526 -0.87252,-1.60221 1.198,-0.41506 -2.30896,-1.45111 -2.50151,-1.77723 -1.50211,-2.54423 -5.17675,-0.51293 -7.300813,-1.54388 -0.52217,-0.75871 -0.94584,-1.97487 -1.16325,-2.85504 -0.244828,-0.0615 -0.717268,-0.81449 -1.07622,-0.90312 -0.0025,-0.01 1.89837,-1.83843 2.15244,-1.31116 l 1.192573,2.47632 0.087,0 c 0.0494,-0.19605 0.11763,-0.80493 0.32006,-0.84478 0.058,-0.23558 1.02394,0.58689 1.39628,0.49539 0,-0.56903 -0.96847,-1.9347 -0.90184,-2.01025 1.35228,-1.52603 1.82281,2.4505 2.73422,2.76769 1.30957,0.45618 2.23819,-0.93723 1.27992,-1.95192 -0.26619,-0.28213 -2.03672,-2.0533 -1.48363,-2.27262 0.96178,-0.38095 2.83624,3.44766 3.34502,1.45685 0.32484,-1.27228 -1.23625,-3.26309 1.22158,-3.26309 0.22698,0.68124 0.26013,2.37623 1.10555,2.593 1.57448,0.40326 -0.2952,-1.89486 0.93053,-1.98093 3.47922,-0.24515 0.0214,1.19927 2.23979,2.68002 0.79345,0.52983 -1.76384,3.40208 0.66913,3.72915 1.54356,0.20721 2.17316,-2.84452 1.59966,-3.87483 -0.73544,-1.32041 0.96337,-1.50754 1.33794,-0.29137 0.3478,1.13041 1.18429,0.70802 0.34907,-0.87379 -0.59836,-1.13392 -3.13621,-2.36347 -1.74535,-3.55414 0.60251,-0.51611 0.83713,-0.241 1.39628,0.14569 1.08929,0.75393 1.44059,-0.20052 2.70521,0.87379 0.91332,0.77624 1.38768,0.48041 0.98888,1.89358 -0.47085,1.66725 -0.3274,3.06895 0,4.71962 0.146,0.73512 0.71407,0.99588 1.07621,1.5732 0.0453,0.0727 1.16421,1.2541 0.69814,1.36918 -0.0625,0.24834 -1.27036,-0.56871 -1.80336,-0.43705 -0.21997,1.09535 1.06442,1.18875 -0.55278,2.18495 -0.52631,0.32389 -0.55309,1.11129 -1.07622,1.39851 -0.57285,0.31496 -0.92224,-0.78389 -1.16356,-1.10714 -0.79537,-1.0641 -0.73512,3.41674 -0.95986,3.64149 -0.87698,1.27163 -1.65832,0.35353 -2.47218,0.96145 0,1.32073 -0.0944,1.702 -0.34907,3.02974 -0.0577,0.30221 -0.69145,1.60667 -0.52377,1.68988 0.56043,0.27893 2.81998,-2.48302 3.31601,-2.88405 0.87984,-0.71057 2.0976,-1.10874 3.17063,-0.8451 l 0.029,0.0287 c 0.14027,0.56776 -1.44027,3.26276 0.37808,3.26276 0.69974,-0.98217 0.97899,-2.01217 1.68701,-2.94238 1.13552,-1.49096 2.53913,-2.5404 3.54872,-4.28256 0.75998,-1.31212 1.10937,-2.69692 2.9376,-1.31085 0,0.85499 -1.10522,1.84354 -1.10522,3.11708 0,2.15212 2.38802,5.14839 2.96693,1.48586 0.13293,-0.84159 1.62676,-2.76801 2.50151,-2.33064 2.77662,1.38799 3.63574,-1.826 3.63574,2.88405 0,1.14125 0.33473,2.37846 0.17438,3.52513 -0.14441,1.03478 -0.61079,1.81516 -0.61079,2.85504 l 0.0873,0.0583 c 0.61526,-0.3529 1.19513,-2.06637 2.12343,-2.65102 2.3928,-1.50785 0.34907,-0.69113 0.34907,-3.03005 0,-1.45111 1.71889,-0.87379 2.53052,-0.87379 0.33504,0.44853 0.54958,1.14189 0.87251,1.66055 l 0.32006,0.64076 z",130.80573,63.721081,middle,,4,0,0 IT,Italy,"m 280.30855,576.51285 c -0.33696,-0.28149 -0.50942,-0.62546 -0.95987,-0.80143 -0.2783,-0.10902 -0.58624,-0.28595 -0.87251,-0.11636 -0.24993,0.1476 0.57764,0.79952 0.68347,0.90312 0.1696,0.16673 0.17087,0.41921 0.40741,0.56808 0.27543,0.17374 0.39625,0.30794 0.75616,0.24769 l -0.0147,-0.8011 z m 43.95218,-13.79192 -3.72309,6.40917 c -1.59934,2.75335 0.52982,2.03544 1.54165,3.67081 0.56265,0.90918 -0.55278,1.51073 -0.98888,2.09761 0.56872,0.95349 2.72785,2.80913 0.93086,3.67081 -1.83716,0.88048 -2.2264,4.03741 -2.38515,4.10755 -0.41729,0.18394 -1.1862,-1.15528 -1.54165,-1.45653 -1.08259,-0.9181 -3.60259,-0.25152 -5.00301,-0.78676 -2.90382,-1.1097 -1.3032,-3.51748 -2.87959,-5.09802 -0.90152,-0.90439 -3.67209,-0.43865 -5.03202,-0.90312 -2.11642,-0.72268 -3.22292,-3.09667 -5.23573,-3.61247 -0.8671,-0.41155 -2.24616,-0.6127 -2.87959,-1.3695 -0.40836,-0.48742 -0.50814,-1.12531 -0.8435,-1.57289 -0.87347,-1.16675 -2.75176,0.19797 -3.43204,-1.16547 -0.46575,-0.93404 -0.88081,-1.40393 -2.09442,-1.31085 -1.96563,0.15047 -1.81389,0.42367 -2.7049,-1.25282 -0.31432,-0.59103 -0.97898,-0.83427 -1.30893,-1.34018 -0.32707,-0.50208 0.29456,-1.35547 0.37808,-1.89358 -0.29169,-0.7466 0.19956,-2.29653 1.01788,-3.14641 l 2.38515,-2.47632 c 0,1.30032 3.13016,3.99119 4.15951,2.12693 0.68125,-1.23434 -0.41952,-3.66635 2.35614,-1.86457 0.96656,0.62705 2.17029,1.52889 3.3447,1.5732 1.34495,0.0507 1.57065,2.46517 2.38515,3.43746 1.72845,2.06414 5.96702,-0.20785 8.0863,-0.32038 2.4572,0.18936 3.63415,-0.93786 5.84652,-1.54387 1.17154,-0.32102 2.12503,0.84478 3.34502,0.84478 1.99974,0 2.75908,-2.25541 4.5956,-2.35965 0.92735,-0.0526 2.61117,-0.32676 3.46137,-0.11668 0.26459,1.07112 -2.29461,3.5213 -2.82157,4.45726 l -0.95986,1.19449 z M 252.53279,532.3356 c 0.8314,-2.03162 0.90217,-4.8924 1.2506,-7.07926 0.27288,-1.71284 0.69113,-3.57996 0.34907,-5.30236 -0.12592,-0.63534 0.10265,-1.17695 -0.029,-1.80623 l 1.42529,-2.59268 c 0.26013,-0.4734 0.97899,-0.93054 1.16324,-1.36919 0.35099,-0.83394 -1.11001,-1.84799 -1.04689,-3.03005 0.0481,-0.89929 0.90153,-1.22541 0.90153,-1.86426 0,-0.62418 -2.6864,-1.01756 -2.64687,-1.54419 0.0583,-0.77114 2.18144,-0.87379 2.18144,-2.12662 l -0.029,-0.0287 c -0.50368,0 -1.13678,0.081 -1.59966,-0.0877 -0.66945,-0.0823 0.25152,-1.57512 0.14537,-2.09729 -0.27161,-1.33603 -1.15847,0.66116 -2.00708,-0.29137 -0.32452,-0.36469 -0.54576,-1.21011 -0.78516,-1.68988 -0.6194,-1.24199 -1.57034,-0.20657 -1.91973,0.67009 -0.57222,1.43453 -1.00768,0.83266 -2.35614,1.39851 -0.69431,0.29105 -1.26366,1.06697 -1.97806,1.39819 -2.32299,1.07813 -4.58126,1.45844 -6.6607,-0.26204 -1.34368,-1.11193 -0.98887,-1.22127 -1.4543,0.29137 -0.16832,0.54671 -0.55532,0.90025 -0.75647,1.42752 -0.28022,0.73512 0.82374,1.00162 0.75647,1.28183 -0.11444,0.4785 -1.0182,1.28598 -1.0182,1.54388 0.34652,0.0854 1.18429,0.67582 1.59999,0.87411 0.24674,0.11795 1.06283,0.0319 1.13423,0.32038 0.21423,0.0529 0.28245,1.21871 0.32006,1.45653 -0.21103,0.32834 -0.41346,1.20468 -0.49443,1.63154 -0.0883,0.4667 1.13424,0.7823 1.13424,1.77723 0,0.89068 -0.10457,2.94366 -0.69814,3.61247 -0.62132,0.70069 -0.93086,1.27195 -0.93086,2.30131 0,1.39054 1.10938,-0.3105 1.39628,-0.58274 0.73576,-0.6975 0.55278,2.7017 0.55278,3.05906 0,0.41028 0.10201,1.19672 -0.23272,1.45653 -0.36979,0.28659 -0.63821,-0.96114 -1.0182,-0.96114 -0.16768,0.67838 -0.58497,1.20151 -0.69814,1.98094 l -0.43609,3.00072 c -0.77433,1.30511 -1.62358,3.19423 0.20338,4.10755 0,0.1052 -0.0606,0.32101 -0.17438,0.3497 -0.14249,0.43068 -1.12276,-0.55341 -1.33794,-0.55341 -1.04593,0 -0.53077,0.0351 -0.34907,0.66977 0.13899,0.48455 -0.32388,1.55663 0.40709,1.51519 0.89196,-0.0504 2.6523,-1.80975 2.76323,0.0287 0.0204,0.34301 -0.0223,2.80276 0.0583,2.88405 0.22889,0.22952 2.25827,0.14823 2.87959,0.40804 0.79951,0.33473 1.95447,0.0574 2.53051,-0.55373 0.69145,-0.73288 0.27352,-1.35356 0.029,-2.15562 -0.26331,-0.86455 -0.12592,-0.93117 0.43642,-1.5442 0.47403,-0.51707 -0.8859,-2.96757 -0.2037,-3.11708 0.5821,-0.12783 4.75053,2.02269 5.06103,2.68003 0.13771,0.29232 0.61685,1.70709 0.8145,1.71889 1.05422,0.0634 0.74308,-1.51455 1.13455,-2.18496 l 0.23271,-1.01947 z m 14.84647,-53.02864 c -0.16481,-0.7874 -1.18461,-0.75552 -1.81772,-0.97612 -0.37712,-0.13166 -0.76986,-0.29679 -0.98919,-0.65542 -0.62481,-1.02235 0.64299,-0.57031 1.09089,-0.42239 0.45586,0.15078 1.20532,-0.0896 1.62899,-0.27703 0.11731,-0.0516 0.66881,-0.44375 0.66881,-0.17469 0,0.57413 0.0931,1.01406 0.17469,1.5732 0.0456,0.31114 0.19319,1.29013 -0.4074,1.18015 l -0.34907,-0.2477 z m 26.89303,-17.67664 c -0.49284,-0.35767 -1.06761,-0.62641 -1.68701,-0.43705 -0.40581,0.12369 -0.69814,0.71408 -0.69814,1.10714 0,0.53428 0.42239,1.1913 0.87252,1.48554 0.86008,0.5617 2.31788,0.19892 2.09442,-1.07781 l -0.58179,-1.07782 z m -59.10436,-40.08659 c 1.33156,0.533 2.09856,1.10873 3.60673,0.55341 3.38614,-1.24677 2.61627,0.006 5.96288,0.55341 2.6982,0.43992 2.37336,-2.42659 3.5484,-3.81618 0.6178,-0.73097 2.64878,-2.52 3.57772,-2.73868 2.42723,-0.57127 -1.88688,2.53657 1.42529,3.8455 1.77564,0.70133 1.91877,2.5879 2.79224,4.04953 0.88623,1.48363 1.81357,1.71156 2.73422,-0.0583 0.99493,-1.91175 2.9918,-2.86779 3.08329,-4.98165 0.0274,-0.63662 0.48998,-2.33893 1.19258,-2.50534 0.46861,-0.11125 1.47597,2.1263 1.83238,2.41799 0.69144,0.23048 1.45142,0.67838 2.18144,0.6991 0.76254,0.0223 1.05104,0.0612 1.77436,0.32038 1.154,0.4141 2.23979,0.68028 2.23979,-0.99047 0,-0.51771 -0.41825,-1.84481 0.17437,-2.06828 0.79091,-0.2987 3.05332,1.249 3.54872,-0.49539 0.17629,-0.62195 0.0182,-1.02266 -0.20371,-1.57321 -0.27989,-0.69495 0.0979,-1.15655 0.37808,-1.71857 l 0.85626,-1.46673 0,0 c 1.14603,-0.21263 1.92419,-1.24645 2.92517,-1.79635 0.25089,-0.13804 1.63091,0.76158 2.06509,0.84478 1.97902,0.37935 3.6418,-1.68414 5.67183,-1.7479 1.3389,-0.0418 2.90859,0.49539 4.36321,0.49539 1.2761,0 5.89944,-0.76954 5.99189,0.96146 0.15206,2.83751 -0.83108,3.94688 1.57065,6.14681 1.44601,0.91428 2.54295,1.10778 4.24654,1.25283 2.78172,0.23686 4.02498,2.24775 6.66101,2.53434 2.31279,0.2512 3.17925,1.51869 4.30488,3.35043 l 0,0 -2.12343,0.90312 c -1.86202,0.20434 -1.24517,2.05043 -0.98887,3.26277 0.31368,1.48203 -0.11827,2.98351 0.58178,4.36991 0.67997,1.3475 3.34597,3.78206 1.658,5.33136 l -1.48362,0.23303 0,0 c 1.16739,-2.21683 1.69402,-0.63311 -0.23271,-2.56367 -2.16424,-2.16901 -2.9714,0.9452 -4.50826,-1.10714 -0.88973,-1.18779 -1.54643,-0.54512 -2.44349,0.0583 -1.79094,1.20532 -0.37394,0.94265 0.55277,1.63154 0.5821,0.43291 -2.35168,0.64076 -2.64687,0.64076 -1.40903,0 -2.85823,0.89005 -4.1305,1.45685 -1.78839,0.79728 -1.37428,-0.76158 -0.78517,-0.93245 1.75746,-0.50974 0.3666,-1.29841 -0.66913,-0.64076 -1.22095,0.77497 -2.11673,1.67267 -3.37402,2.30131 -1.52475,0.7619 0.65191,3.50791 1.59966,3.87484 2.12789,0.82437 1.68669,3.76995 0.20371,4.98165 -1.90602,1.27514 -2.92773,-0.0567 -2.35615,2.7967 0.34876,1.7428 0.29297,3.55988 0.58179,5.33137 0.68475,4.20031 4.43526,7.23961 7.62088,9.70127 0.65095,1.12563 2.49608,2.89999 3.63574,3.55413 0.77943,0.44758 3.18913,0.11349 3.51971,0.81577 0.42303,0.89802 0.22442,2.00708 0.37808,2.9714 0.19382,1.21872 0.71089,2.74793 1.10522,3.93285 0.095,2.31948 -0.0861,6.19974 1.27993,8.07005 1.43549,1.96595 2.13426,3.77187 3.9558,5.5934 0.57063,0 0.78517,0.26332 1.19258,0.55342 0,1.45844 1.39373,2.21428 2.70489,2.21428 1.41764,0 1.6749,1.8719 2.93792,2.62169 3.41069,1.95638 5.62497,2.11896 9.27856,2.79702 2.01632,0.37425 4.16015,-0.36947 5.99189,0 0.40677,0.71312 -0.22666,1.79253 -0.32006,2.53434 -0.96879,0.83777 -0.65319,1.63441 -2.15212,2.21428 -1.65896,0.64172 -0.69081,1.17727 0.2324,1.95192 1.89454,1.58915 4.2121,2.61436 6.37028,3.78717 l 8.69678,4.80696 c 2.18208,1.20629 4.26885,3.25958 6.48632,4.28256 3.89587,1.79795 6.03811,4.42283 7.8826,8.12775 1.05582,2.12151 -0.6398,3.10114 -0.6398,5.03999 0,1.19608 0.58752,2.11195 -1.04721,1.68988 -4.27905,-1.10554 -1.68191,-6.83826 -5.61381,-7.28328 -0.89323,-0.10106 -7.84434,-0.15334 -7.30081,-2.21397 0.33855,-1.28247 0.67168,-1.22381 -1.10523,-1.22381 -1.17919,0 -1.97137,0.219 -2.76323,1.07813 -2.44381,2.65261 -3.69281,5.20257 -5.23573,8.39011 -0.13963,2.98128 0.30571,4.08842 3.19965,4.89431 1.48139,0.41218 3.15724,2.29557 4.39222,3.23375 0.49571,0.37681 0.22474,2.33702 0.20338,2.91338 -0.0287,0.76445 0.26491,3.79259 -0.20338,4.10755 l -1.86171,1.25282 c -0.25502,0.17151 -0.92224,-1.28661 -1.33794,-1.45653 -1.00226,-0.41027 -2.73517,0.95381 -3.22865,1.71857 -0.94743,1.46705 -0.8145,2.74825 -0.8145,4.48659 0.14855,0.59899 -0.18649,2.84643 -0.34907,3.52512 -0.21486,0.89866 -1.88179,0.43451 -2.55953,1.07782 -1.54005,1.46099 -3.08105,3.51875 -3.43236,5.68107 -0.16576,1.02234 -2.36761,0.66976 -3.14131,0.66976 -1.89772,0 -2.29302,-0.20561 -2.90859,-1.89358 -0.30125,-0.82534 0.0287,-1.50212 0.0287,-2.33064 0,-0.14154 -0.12433,-0.91619 0.0583,-0.96114 l 0.0287,-0.0583 c 1.22158,0 2.37367,-1.99592 3.05396,-2.82603 3.29624,-1.97583 -2.34626,-2.37464 -0.72715,-3.81618 0.95795,-0.85243 2.28505,-2.14989 3.51971,-2.24329 1.45302,-0.1103 2.20886,0.46702 2.38483,-1.19449 0.22634,-2.13841 -0.2834,-2.38388 -1.65768,-3.61247 -1.75651,-1.57098 0.35225,-4.25196 -1.22191,-6.03046 -1.04657,-1.18206 -2.13554,-1.49287 -2.76323,-3.02974 -0.66626,-1.63186 0.73448,-2.91114 0.14569,-4.63227 -0.13038,-1.29745 -2.52892,-4.08873 -4.01414,-2.88404 -3.06385,2.48588 -1.0131,1.1218 -3.81044,0.72842 -0.0883,-0.35959 0.47275,-0.67455 0.23271,-1.31116 -0.17597,-0.46575 -0.86423,-1.05486 -1.19258,-1.45653 -0.83521,-1.02203 -4.02753,-1.35643 -2.82124,-2.33064 0.69463,-0.56138 0.9165,-1.38066 0.58178,-2.18496 -0.40741,-0.97962 -0.86773,-2.97139 -2.09442,-3.26276 -1.69785,-0.40295 -3.35426,0.96114 -4.94468,0.96114 l -0.0287,-0.0287 c 0,-1.04339 2.8289,-1.37939 2.12311,-2.50534 -1.36217,-2.17411 -2.71541,-1.68382 -4.7703,-1.42752 -0.97612,0.12178 -0.37808,-1.59137 -0.37808,-2.24329 0,-0.43897 -1.1744,-0.77241 -1.39596,-1.5732 -1.16962,-3.79705 -3.86654,-5.40182 -7.82458,-4.98166 -0.78039,0.0826 -2.03768,1.51806 -2.35582,1.28184 -0.42463,-0.31592 -1.30033,-2.04119 -1.629,-2.56367 -0.94169,-1.49798 -3.15055,-1.93567 -4.21752,-3.61248 l -3.57773,-5.62273 c -1.98507,-3.11931 -5.5,-4.07949 -6.63169,-7.8367 -0.41346,-0.91045 -1.53622,-2.13809 -2.55984,-2.30131 -1.16166,-0.18489 -1.98285,1.25187 -2.58854,-0.17501 -0.10552,-0.24833 -0.82788,-1.15783 -0.55277,-1.28183 0.50177,-0.2257 1.24549,0.0465 1.74535,-0.11636 0,-2.07402 -3.84232,-4.29499 -5.23573,-5.47705 -0.77688,-0.65861 -0.60729,-1.88147 -1.10523,-2.21396 -0.58529,-0.39051 -2.3198,1.18333 -1.97806,-0.58274 0.24674,-1.2745 0.86901,-1.67904 0.58178,-3.17542 -0.54384,-2.83528 -2.83623,-5.1793 -3.34501,-7.98238 0,-1.40871 -0.62641,-11.13612 -4.15919,-8.91483 -1.03478,0.65032 -1.95383,-1.37556 -2.58885,-1.95192 -0.52122,-0.4734 -2.17444,-3.10784 -3.05429,-2.56367 -1.69019,1.04593 -1.39277,-1.09503 -3.81012,-1.57289 -3.08297,-0.60983 -5.41201,0.92448 -7.62087,2.70904 -1.26972,1.02617 -1.47502,2.91083 -2.64688,3.58346 -1.31881,0.75744 -5.646,1.69435 -7.09711,1.66056 l 0,0 c -0.30731,-1.081 -0.69176,-2.73837 -0.37808,-3.8165 0.21104,-0.72556 0.79919,-1.06124 0.75616,-1.86426 -0.11572,-2.16168 -4.30456,-1.7208 -5.23573,-3.43777 -0.79122,-1.45972 -0.44375,-3.22324 -0.90152,-4.77764 -0.72907,-2.47632 1.25059,-2.50501 2.23946,-4.13687 0,-1.81676 -0.52376,-1.82951 -1.94873,-2.70936 -0.76572,-0.47308 -1.01852,-2.10621 -1.04721,-2.97171 -0.0335,-1.00131 0.82342,-1.02362 1.62899,-1.16516 1.27164,-0.22315 2.16774,-0.94807 3.05396,-1.83557 1.19385,-1.19608 1.81963,-2.21428 0.20371,-3.4958 -0.66212,-0.52472 -0.40709,-1.54132 -0.40709,-2.2723 0,-1.12403 -0.73735,-0.89738 -0.98887,-1.71889 -0.14792,-0.48264 0.005,-0.99716 -0.11636,-1.51486 l 2.06509,-0.55342 0,0 z",271.07065,441.32526,middle,,3,2,9 KS,Kosovo,"m 388.0184,483.85794 c 1.4272,-0.70005 0.55214,-0.90982 1.10555,-1.7479 1.02776,-1.55599 2.50597,-1.24613 1.42497,-3.40877 -0.52791,-1.05582 1.848,-2.39599 2.38515,-2.12662 0.21837,0.10967 0.37266,1.24964 0.55277,1.5442 0.58147,0.94902 1.96882,0.65925 2.87959,1.16516 0.93723,0.52089 1.48203,3.34629 2.82157,3.55413 2.1416,0.33282 -0.01,1.85342 1.94873,2.50566 0.50751,0.16895 0.79983,0.51515 1.22159,0.78644 0.84414,0.54321 2.38196,-0.54002 1.658,1.19449 l -2.15244,5.15635 0,0 c -1.31722,0.16576 -2.40842,1.28725 -3.25766,2.24329 -1.59202,1.79125 -1.1097,0.82342 -2.67621,-0.1747 -0.65701,-0.41824 -1.90506,0.29934 -2.38515,0.75744 -0.37712,0.36022 -0.88781,1.1336 -1.36695,1.25282 -1.64875,0.40996 0.62418,3.07245 -1.77436,3.14609 l 0,0 c -0.50399,-0.64809 -0.34907,-2.29047 -0.34907,-3.11708 0,-1.2914 -0.90407,-2.12279 -1.36695,-3.23375 -0.37903,-0.90918 -0.7705,-1.32679 -1.74534,-1.60222 -1.62485,-0.45969 -0.79155,-1.34782 -1.62868,-2.18495 -0.42016,-0.42016 -0.77273,-0.86678 -1.22158,-1.28184 l 0,0 0.17437,-0.72842 c -0.14186,-0.3207 -0.13708,-0.78071 -0.34907,-1.07781 -0.26363,-0.36916 -0.8231,-0.39753 -1.07622,-0.78677 -0.70642,-1.08737 1.94587,-0.64075 2.35615,-0.64075 0.73479,0 0.5872,-0.0494 0.90152,-0.58274 0.26395,-0.44726 1.45749,-0.41793 1.91972,-0.61175 l 0,0 z",403.67276,490.16669,middle,,1,6,8 LI,Liechtenstein,"m 267.53387,403.5177 c 0.42558,0.3682 0.72555,0.80206 0.79824,1.37365 l 0.13803,1.08546 c 0.051,0.40039 0.31018,0.82661 0.48009,1.18715 l 0.18171,0.65543 0,0 -2.39918,0.43609 c -0.15907,-1.60093 -0.79314,-3.61884 0.80111,-4.73778 l 0,0 z",284.57358,390.61478,middle,"m 274.60756,392.74196 c -6.61058,12.91778 -6.1384,12.91778 -6.1384,12.91778 l 0,0",4,3,5 LT,Lithuania,"m 394.14545,279.89157 1.37684,1.4068 c 0.65415,0.53843 0.93372,1.16261 1.77436,1.51486 0.64139,0.26906 1.4951,0.17661 2.12311,0.4954 1.7412,0.88335 2.35199,1.01278 4.3342,0.72842 2.27007,-0.32548 4.2459,-0.2614 4.71196,2.447 0.36756,2.13426 -0.80079,4.27427 -1.30893,6.32182 l 0.17501,2.56364 0,0 c 2.5624,0 4.39637,-0.31814 6.80575,0.96146 1.07398,0.57062 1.27418,0.93946 1.83269,1.95192 0.29807,0.54002 0.63981,1.84864 0.63981,2.447 l 0,0 c 1.73865,-0.27607 1.78487,-1.02554 3.86845,-0.61175 2.31821,0.46 2.91466,-0.0319 4.62494,-1.31085 0.82406,-0.61653 2.91338,0.2461 3.14131,-0.49539 0.19223,-0.62418 -1.85948,-1.3016 -0.52345,-2.06828 0.39561,-0.22729 0.66371,0.14409 0.98887,0.0287 1.93726,-0.6857 2.37081,-1.93212 4.74098,-1.0488 0.7501,0.27926 2.82284,1.84385 3.19964,0.0287 0.11509,-0.55561 -1.15559,-0.89639 -1.19257,-1.71886 -0.0685,-1.51168 0.53237,-2.48684 0.72715,-3.87483 0.23016,-1.64143 -0.7297,-3.31951 -0.31974,-4.89431 1.45079,-2.21619 2.75175,-0.0159 4.01382,-1.28184 0.70133,-0.70355 1.15592,-1.96116 0.98887,-2.97139 -0.22124,-1.33571 1.00577,-1.47088 1.80337,-2.44732 1.39628,-1.70837 -1.72048,-1.67808 -1.65768,-3.55413 0.0223,-0.71249 0.6669,-1.29937 0.69782,-2.12662 0.0319,-0.83936 -0.26173,-1.82855 -0.26173,-2.73836 l 0,0 -2.00707,-0.69942 c -1.77117,-1.24166 -3.20124,-2.2554 -4.65362,-3.93285 -1.68733,-1.94937 -4.92364,-1.40552 -6.80638,-3.02973 -1.51264,-1.30447 -1.44442,-1.65609 -3.43236,-1.77723 -0.94297,0.47276 -2.5455,1.25251 -3.60674,1.2235 -1.02808,-0.0287 -1.91207,-0.83713 -2.9086,-0.11636 -0.91077,0.65925 -1.15432,0.28754 -2.21077,0.26204 -0.95317,-0.0223 -1.85501,0.26236 -2.82125,0.26236 -4.43271,0 -9.29386,-0.87283 -13.72912,-0.0874 -2.0007,0.35449 -3.72214,3.08903 -4.97369,4.60294 l -3.00742,0.0998 0,0 c 0.41442,2.34881 1.60668,4.56564 1.87287,6.89214 0.13325,1.16356 0.0127,2.36443 0.14536,3.52513 0.1205,1.05772 0.67838,1.87668 0.8145,2.76737 0.0159,0.096 0.0191,0.18075 0.0191,0.25375 l 0,0 z",418.39951,280.08597,middle,,3,5,3 LU,Luxembourg,"m 233.59727,360.4817 c 0.18904,-1.01342 -0.28435,-1.71793 -0.64012,-2.65102 -0.628,-1.64556 -0.49475,-3.27392 0.46543,-4.80696 1.05008,-1.67713 2.46166,-2.02205 4.18852,-2.65133 l 0,0 c 0.18521,0.98951 -0.14537,2.15594 -0.14537,3.17573 0,1.91654 2.2299,2.65134 2.61787,4.48627 0.34492,1.63027 -0.98888,2.29589 -0.98888,3.72915 l 0,0 -1.80368,-0.17502 c -0.42494,0.0328 -0.86008,0.0864 -1.27961,0.14569 -0.25279,0.0357 -0.62641,0.0711 -0.87251,0 -0.65989,-0.19063 -1.06442,-0.8129 -1.54165,-1.25251 l 0,0 z",237.17288,372.1113,middle,"m 235.0826,356.19009 c -7.32632,9.42045 -6.80302,9.42045 -6.80302,9.42045 l 0,0",1,3,4 LV,Latvia,"m 391.29552,266.45318 c -0.15589,-0.88431 -0.2018,-1.78711 -0.0469,-2.72179 -1.06538,-4.54906 -1.40743,-6.32884 1.10523,-10.22567 2.01154,-3.12027 0.65511,-6.72159 2.99595,-9.4099 1.06378,-1.22127 1.85405,-3.70301 3.25798,-3.75816 1.37811,-0.0539 6.16116,-2.29238 6.39897,-1.63122 0.30381,0.8451 -0.11316,1.81133 0.40709,2.59268 0.67009,1.00672 2.11578,1.88912 2.90892,2.88405 l 3.69408,4.63226 c 0.50974,0.47436 1.91622,1.92292 2.58854,1.92292 0.76859,0 1.43517,0.003 2.15243,-0.29137 1.40553,-0.57605 2.76929,-1.79445 3.34502,-3.20475 0.46478,-1.13806 0.14249,-2.35742 0.11635,-3.55414 0,-1.6427 -0.29583,-3.18785 -0.40709,-4.80696 -0.0842,-1.22318 0.0344,-2.29493 0.16195,-3.4534 l 0,0 2.74665,-0.42111 c 2.01727,-0.44216 4.26056,-2.14862 6.25361,-1.92292 1.08578,0.12306 2.71924,1.82569 3.43236,2.65102 0.83713,0.96847 0.75584,1.72782 2.06509,2.33064 1.66406,0.76668 2.42819,2.6762 4.50858,2.41799 1.88529,-0.23431 3.59302,-1.36919 5.58448,-1.36919 l 0,0 0.2037,0.26236 c 1.05868,0.1492 3.3074,1.8735 3.98481,2.65102 0.9825,1.1285 0.72715,2.30769 0.72715,3.69982 0,5.24466 5.87553,6.47134 5.87553,11.1578 l 0.14537,4.83597 0,0 -2.79224,2.88437 c -1.0826,1.1183 0.36118,2.8085 -1.2506,3.46679 -2.36442,0.96528 -5.79296,-2.38196 -7.18446,1.45653 -0.72236,0.26172 -1.92769,-0.0504 -2.82156,0.11667 l 0,0 -2.00708,-0.69941 c -1.77117,-1.24167 -3.20124,-2.25541 -4.65362,-3.93285 -1.68733,-1.94937 -4.92364,-1.40553 -6.80638,-3.02974 -1.51264,-1.30447 -1.44442,-1.65609 -3.43236,-1.77722 -0.94297,0.47275 -2.5455,1.2525 -3.60674,1.22349 -1.02808,-0.0287 -1.91207,-0.83713 -2.90859,-0.11635 -0.91077,0.65924 -1.15433,0.28754 -2.21078,0.26204 -0.95317,-0.0223 -1.85501,0.26236 -2.82125,0.26236 -4.43271,0 -9.29386,-0.87284 -13.72912,-0.0873 -2.00069,0.35449 -3.72213,3.08903 -4.97369,4.60294 l -3.00741,0.0998 0,0 z",427.7034,253.09549,middle,,2,6,2 MC,Monaco,"m 235.57183,457.97896 c -0.78931,0.19988 -1.89103,0.49922 -2.95131,0.83362 l 0,0 0.22028,-1.34814 c 0.66913,-0.64714 1.53909,-0.45459 2.33892,-0.3427 0.10138,0.0128 0.29743,0.82566 0.39211,0.85722 l 0,0 z",229.06355,474.96521,middle,"m 234.16681,458.0189 c -5.44395,10.6021 -5.05509,10.6021 -5.05509,10.6021 l 0,0",1,3,6 MD,Moldova,"m 459.86302,392.35384 c 0.31304,0.5617 0.61812,2.27167 0.98887,2.47633 0.47499,0.26268 2.15244,0.87538 2.15244,1.54387 0,0.3513 1.16547,3.68898 1.39628,3.93317 1.11989,1.1862 2.03066,1.34209 2.67588,3.02974 0.94137,2.46325 1.90123,3.63957 4.10117,5.09801 2.43902,1.61656 1.8904,2.93984 2.82157,5.27303 0.37106,0.83203 1.17153,1.34686 1.13423,2.30163 -0.0335,0.8553 -0.34078,1.51231 0.26173,2.30162 1.22318,1.60286 -0.087,1.93407 -0.52345,3.29178 -0.37298,1.16133 0.45395,1.38799 0.49444,2.33064 0.0287,0.66626 -0.53142,1.31818 -0.61079,2.0686 -0.15334,1.45206 0.60951,2.24775 1.01819,3.5248 0.29265,0.91364 0.17438,2.26178 0.17438,3.23376 l 1.28024,2.04214 0.21231,-0.002 c 0.73544,-0.97197 2.3469,-1.4986 2.3469,-2.85567 0,-0.74437 -0.49922,-1.38576 -0.29073,-2.15595 0.27415,-1.01437 1.66692,-1.73738 1.77404,-2.65101 0.72173,-0.93691 0.83426,-1.67458 1.97806,-2.15595 0.72587,-0.30571 1.395,-0.95795 1.0182,-1.77691 -0.38095,-0.82884 -0.99015,-4.54269 -0.1747,-5.06932 1.05104,-0.67837 1.98221,0.97772 3.14131,0.90312 1.04976,-0.0673 1.48522,-0.91587 2.44349,-1.2235 0.97325,-0.31209 1.81835,-0.23303 2.82125,-0.23303 0.9385,0 1.40106,-0.40071 2.15244,-0.49539 0.58178,-0.58242 1.4578,-0.60474 2.00707,-1.33986 -0.63311,0 -1.3848,-0.38541 -2.03608,-0.5244 -1.20724,-0.25726 -1.42529,-1.17472 -1.42529,-2.33064 0,-0.63342 0.0733,-1.46163 -0.0287,-2.06859 -0.15238,-0.90567 -1.17122,-2.04788 -1.80337,-2.68003 -2.75175,-1.13073 -2.54741,-4.23506 -4.30487,-5.71008 -0.60283,-0.50559 -3.2497,-1.71092 -3.40335,-2.35997 -0.35864,-1.5155 1.0759,-6.67121 -1.59967,-6.67121 -1.15974,0 -2.51298,0.52854 -2.90859,-0.81577 -0.49827,-1.69148 -1.72941,-1.63027 -3.02496,-2.33064 l -2.4234,0.72778 c -0.0921,-0.0781 -0.16928,-0.14058 -0.2528,-0.20338 -1.6886,-1.2694 -2.45751,0.83617 -4.36289,-0.81577 -0.91332,-0.79187 -3.04727,-1.86458 -4.24686,-1.86458 -0.46797,0 -0.78357,-0.0376 -1.00832,-0.12114 -0.60091,0.34206 -1.0539,0.37553 -1.69657,0.5582 -0.7603,0.21581 -1.01948,0.46287 -1.48363,1.0488 -0.38094,0.48073 -0.11954,1.32041 -0.26172,1.89358 l -0.52344,0.87411 0,0 z",478.34323,409.96738,middle,,2,6,5 ME,Montenegro,"m 375.32119,499.72069 c -0.2257,-0.0577 -0.47244,-0.11062 -0.74117,-0.15939 -2.63572,-0.47882 -1.87064,-2.26051 -3.40304,-3.32111 -1.14157,-0.78963 -0.65351,-0.97548 -1.27992,-2.03927 -0.2885,-0.48965 -2.72338,-1.37141 -3.46137,-2.00994 -0.43897,-0.37935 1.3338,-0.7909 1.48363,-0.87411 1.03892,-0.57891 0.22761,-0.73543 0.0287,-1.54419 -1.04307,-0.2579 -1.05072,1.66087 -1.97806,1.66087 -0.5668,0 -0.87571,-0.21709 -1.12436,-0.50783 l 0,0 0.0775,-1.03637 -0.55278,-1.71889 0,0 1.33794,-0.49507 c 0.47786,-1.23816 0.13039,-2.5608 -1.04721,-3.14641 0,-0.89355 0.0663,-1.89837 0.23272,-2.76769 0.27957,-1.46163 0.92607,-1.16516 2.26879,-1.16516 0.0127,-0.0532 0.006,-0.0453 0.0583,-0.0583 0,-0.43865 -0.23271,-0.91842 -0.23271,-1.45685 0,-0.6092 0.25853,-0.68889 0.49443,-1.13615 0.32931,-0.62514 -0.10328,-1.66533 0.87252,-2.06828 0.4616,-0.19031 0.87315,-0.89419 1.57065,-0.40772 0.98887,0.69017 -0.0127,1.30797 1.62899,0.43673 0.88527,-0.46893 -0.75488,-1.72877 -1.13455,-2.18495 l -0.26173,-1.07781 0.90185,-0.5244 0.8435,0.55341 2.00707,-0.20371 0,0 c 0.27002,2.10175 2.71319,1.5493 3.34502,3.29178 0.39274,1.08227 1.26111,2.17188 2.58853,2.24329 1.08228,0.058 0.71313,1.45685 2.21078,1.45685 0.8706,0 0.86614,0.73799 1.2796,1.28183 0.45363,0.59741 2.5251,0.81769 3.34501,1.25251 0.90791,0.48105 0.76031,1.28439 1.33795,1.86457 l 0,0 c -0.46224,0.19383 -1.65577,0.1645 -1.91973,0.61175 -0.31432,0.53333 -0.16672,0.58274 -0.90152,0.58274 -0.41028,0 -3.06257,-0.44662 -2.35614,0.64076 0.25311,0.38924 0.81258,0.41761 1.07622,0.78676 0.21199,0.29711 0.20721,0.75712 0.34906,1.07781 l -0.17437,0.72843 0,0 c -0.61972,0.20498 -1.8582,0.4039 -2.23979,0.99046 -0.56488,0.86774 -1.70295,-0.31177 -1.89071,-0.90311 -0.0357,-0.11222 -0.31751,-1.66279 -0.43642,-1.31117 -0.68921,0 -2.17379,2.4674 -2.44317,3.00073 -0.47275,0.93468 -1.75778,4.20222 -2.55952,4.60294 0,0.13771 0.86167,0.77209 1.01788,0.99078 0.3207,0.44789 0.20848,1.8107 -0.0287,2.2723 l -0.18968,1.79062 0,0 z",355.08173,502.03104,middle,"m 370.24613,488.56129 c -5.65031,7.97397 -5.24673,7.97397 -5.24673,7.97397 l 0,0",4,5,8 MK,Macedonia,"m 396.6001,517.15824 c 1.52124,-0.0743 1.65705,-0.89069 2.9086,-1.13615 2.34434,-0.45969 3.47029,-0.01 5.35208,-1.89359 2.67525,-2.67875 3.17414,-2.39535 6.54434,-2.2723 4.04953,0.1476 4.91599,-0.86901 5.87553,-4.48658 l 1.33826,-0.6991 0,0 0.26172,-3.69982 c 0.6924,-2.2605 -1.66565,-3.89268 -0.87251,-6.03046 0.22379,-0.60409 0.13708,-0.81322 -0.55278,-0.99078 -1.02967,-0.26459 -2.16072,-0.49093 -3.08329,-1.04849 -0.97867,-0.59198 -2.26241,-1.2678 -2.85057,-2.27261 l 0,0 c -0.0615,-0.37043 -0.96624,-1.38258 -1.42497,-1.28184 -0.79824,0.17501 -1.34559,1.22445 -2.18177,1.0488 -0.48933,-0.10296 -0.63884,-0.42717 -1.01788,-0.69909 -0.49953,-0.35895 -1.41445,0.68156 -1.658,1.01979 -0.75743,1.05263 -2.45815,-0.0701 -3.37402,-0.23335 l 0,0 c -1.31722,0.16577 -2.40842,1.28726 -3.25767,2.24329 -1.59201,1.79126 -1.10969,0.82342 -2.6762,-0.17469 -0.65702,-0.41825 -1.90506,0.29934 -2.38515,0.75743 -0.37712,0.36023 -0.88782,1.1336 -1.36695,1.25283 -1.64876,0.40995 0.62418,3.07245 -1.77436,3.14609 l 0,0 -0.29073,2.24329 c -0.14282,0.76349 0.0386,1.4323 0,2.15594 -0.0816,1.5289 -0.58402,1.84609 0.14536,3.43746 0.72428,1.57927 1.89582,11.07396 4.71197,10.02197 l 1.62899,-0.40804 0,0 z",408.63541,506.66586,middle,,2,6,9 MT,Malta,"m 312.27824,593.86432 c -0.40454,-0.5279 -0.89292,-0.90535 -1.4543,-1.25282 -0.40072,-0.2477 -0.98856,-0.20307 -1.42529,-0.0874 -0.2987,0.0794 -0.37298,0.45076 -0.31974,0.72811 0.12687,0.66243 0.65191,0.83936 1.13424,1.22381 0.24163,0.19223 0.38636,0.48742 0.69813,0.61175 0.51452,0.20562 1.08547,0.19 1.59967,0 l -0.23271,-1.2235 z m -4.07217,-2.44731 c -0.21549,-0.0449 -0.21932,-0.0287 -0.34907,-0.14568 -0.10998,-0.0988 -0.23175,-0.13549 -0.37807,-0.14569 -0.0816,-0.006 -0.14091,-0.0363 -0.23272,-0.0287 -0.17374,0.0127 -0.28404,0.16704 -0.37808,0.26204 -0.0934,0.0937 -0.0873,0.0567 -0.0873,0.20402 0,0.36724 0.15971,0.7925 0.52376,0.87411 0.14058,0.0319 0.40709,0.006 0.55245,0 0.21327,-0.01 0.48392,-0.0928 0.40741,-0.3497 l -0.0583,-0.67009 z",332.97403,601.16724,middle,"m 321.54114,597.81359 c -9.43416,-2.89884 -8.76031,-2.89884 -8.76031,-2.89884 l 0,0",2,3,9 NL,Netherlands,"m 213.10927,326.33662 1.49415,2.06956 c 1.27163,0.86008 1.49287,1.82568 3.02495,1.10714 2.17284,-1.01884 3.75752,0.0475 6.07923,-1.60254 3.48114,-2.47345 7.41495,0.34365 9.77332,2.85504 0.87443,0.93149 2.47823,2.2637 2.73422,3.55414 0.25407,1.27897 0.93244,2.97267 1.0759,4.13687 l 0.61334,1.83557 0,0 c 1.41349,-1.9481 1.36982,-4.16812 2.41416,-6.26381 0.46096,-0.92448 1.0386,-1.49797 1.59998,-2.33032 0.5719,-0.84733 -0.058,-2.07816 -0.49443,-2.85504 -0.1256,-1.12404 -2.04724,-1.55822 -0.98919,-2.88437 1.04306,-1.3067 1.99145,-0.93181 3.40335,-1.28183 2.55729,-0.63375 4.17863,0.51133 6.60268,-1.42752 1.51518,-1.21234 -1.25602,-2.40014 0.93053,-3.40845 2.10366,-0.97039 1.86107,-2.08582 2.26879,-4.13688 0.2155,-1.08323 -1.73259,-0.18936 -1.22158,-1.86457 0.38063,-1.24677 0.54927,-1.38289 1.57065,-1.89359 1.47184,-0.73543 1.89327,-1.99304 2.2688,-3.4958 l 1.10523,-3.75815 0.0347,-0.0287 c -1.12371,-0.22921 -2.67269,-2.97076 -3.44001,-3.78781 -1.57958,-1.68255 -4.3036,0.53779 -5.96287,0.93245 -0.92544,0.22028 0.11763,-1.95416 -0.52377,-1.92292 l -5.32275,0.26236 c -1.69722,0.0832 -2.16519,2.25764 -2.38515,3.75784 -0.36246,2.47314 2.24998,1.32838 1.89071,2.97172 -0.23239,1.06219 -0.67295,2.16901 0.23271,3.14641 0.31815,0.34301 2.15786,0.7823 1.71602,1.34017 -0.14122,0.17788 -2.23978,-1.60731 -3.54839,0.29105 -0.48424,0.70292 0.6398,1.10587 0.6398,1.74822 0,1.91335 -4.441,1.26367 -5.03203,-0.96146 -1.01533,-3.82319 3.4008,-2.24201 2.7049,-5.01098 -2.64656,-0.5244 -0.60665,-1.45525 -1.27961,-3.23376 -0.22633,-0.59772 -1.88242,0.8145 -2.73422,0.11668 -1.0437,-0.85562 -0.49985,-0.95795 0.17438,-1.39851 1.00003,-0.65287 1.37077,-2.71828 -0.81418,-0.6991 -0.9538,0.88113 -2.23978,3.73202 -2.23978,4.98166 -0.14123,5.0282 -4.23761,7.2938 -7.06811,10.60439 -0.84,0.98281 -3.64435,1.99272 -0.43642,2.65101 1.06028,0.21774 2.90892,1.32488 2.90892,2.50534 -1.12181,0 -2.23628,0.0561 -3.37434,0.26236 -0.75871,0.13771 -3.21017,-0.10042 -1.71602,1.10714 0.83266,0.67264 1.41859,2.35837 -0.23272,1.39819 -0.79281,-0.46064 -1.20405,-1.37109 -1.91972,-1.71889 -1.45876,-0.70834 -2.5914,0.57987 -3.14131,-1.57289 -0.19765,-0.77401 -2.30545,-0.0395 -2.85058,0.23304 -1.08418,0.54193 3.39634,3.47635 4.01415,3.90352 0.81067,0.56106 2.34689,-0.11699 3.28667,0.11668 0.60283,0.15014 1.19322,0.72013 1.80337,0.87411 0,0.44343 -2.86492,0.26204 -3.37402,0.26204 -0.79952,0 -2.06382,0.22219 -2.76323,-0.20403 -1.23784,-0.75488 -2.36698,-1.15846 -3.50122,-1.28279 l 0,0 z",239.29953,320.73831,middle,,4,2,3 NO,Norway,"m 410.79242,22.805029 c -0.30094,-0.0255 -0.64236,-0.38573 -0.78517,-0.65542 -0.0577,-0.10967 0.75488,-1.40967 0.87251,-1.64621 0.16513,-0.33313 0.4785,-0.45363 0.63981,-0.0874 0.21262,0.48392 0.52376,1.11862 0.52376,1.64621 0,0.29328 -0.17629,0.54417 -0.21837,0.83012 -0.0567,0.38764 -0.21518,0.45841 -0.59613,0.53906 l -0.43641,-0.62641 z m -17.85962,7.79334 c -0.0223,-0.21932 -0.0469,-0.4632 -0.18904,-0.64108 -0.67997,-0.13229 -2.00261,-0.036 -1.38162,-1.17982 1.15464,-2.12534 2.82922,0.61908 3.78143,-0.37872 0.23144,-0.24228 0.21646,-0.50974 0.5091,-0.74277 0.41378,-0.32994 0.82789,-0.42526 1.1489,-0.90344 0.35194,-0.52344 0.54704,-0.99046 1.26526,-0.99046 0.2834,0.2834 -0.10169,1.63887 -0.10169,2.08326 0,1.2015 -0.98696,2.42946 -2.13809,2.7967 -0.47372,0.15079 -1.1081,-0.19063 -1.55599,0.14569 -0.48838,0.36724 -0.4004,0.65574 -1.23625,0.32038 l -0.10201,-0.50974 z m 5.03234,2.49099 c -0.40677,-0.0724 -0.65829,-0.60283 -0.78549,-0.97612 -0.0816,-0.23877 0.052,-0.35768 0.23272,-0.50974 0.27702,-0.2324 0.57955,-0.39848 0.82884,-0.65542 0.14154,-0.14633 0.81449,-0.87029 1.0182,-0.53907 0.11603,0.18936 0,0.73735 0,0.96146 0,0.46829 -0.33696,0.95827 -0.20371,1.39851 0.0459,0.15142 0.10743,0.3411 0.0437,0.49507 -0.0551,0.13262 -0.49285,0.36565 -0.6108,0.26236 l -0.52344,-0.43705 z m 3.46137,-3.43778 c -0.18936,0.0867 -0.71026,-0.34206 -0.84351,-0.49539 -0.28308,-0.32485 -0.50814,-1.10715 -0.2037,-1.4712 0.26969,-0.32197 0.39529,0.0335 0.58178,0.20402 0.38733,0.35513 1.66183,-0.42207 1.57066,0.52441 -0.0526,0.54512 -0.003,1.02202 -0.52345,1.3255 l -0.58178,-0.0873 z m -4.29053,4.3699 c -0.27926,-0.11285 -0.43164,-0.17469 -0.74181,-0.17469 -0.2952,0 -0.95572,-0.0542 -1.20693,0.10201 -0.2037,0.12624 -0.21868,0.48583 -0.0583,0.65542 0.14951,0.15844 0.33759,0.16673 0.53811,0.18936 0.12241,0.0128 0.25853,0.0223 0.37839,0.0437 0.24834,0.044 0.30381,0.26299 0.55246,0.32069 0.27575,0.0638 0.56648,-0.18202 0.72715,-0.37871 l -0.18904,-0.75776 z m -11.98377,4.71994 c -0.0191,-0.17215 0.0389,-0.45491 0.058,-0.64108 0.0287,-0.27989 0.0319,-0.85881 0.29105,-1.01947 0.22538,-0.13931 0.36947,0.1884 0.52344,0.29105 0.13517,0.0902 0.49093,0.16863 0.56712,0.30603 0.10902,0.19573 -0.13357,0.68603 -0.20338,0.87411 -0.11349,0.30699 -0.431,0.55341 -0.75648,0.55341 l -0.47977,-0.36405 z m -4.6396,-0.42239 c -0.0771,-0.32708 -0.058,-0.55533 -0.21805,-0.85945 -0.19797,-0.37553 -0.48997,-1.08291 -0.23272,-1.47151 0.25567,-0.38541 0.4734,-0.32038 0.62546,0.073 0.12178,0.31432 0.26874,0.58051 0.52345,0.81577 0.34078,0.31528 0.76253,0.6143 0.59644,1.13615 -0.11157,0.35003 -0.67486,0.97198 -1.03254,0.61175 l -0.26204,-0.30571 z m -1.30893,1.2965 c -0.33218,0.0287 -0.73353,0.0223 -1.0469,-0.11668 -0.38254,-0.16832 -0.63661,-0.65702 -1.14922,-0.43705 -0.30029,0.12847 -0.27256,0.54098 -0.39242,0.8011 -0.22666,0.49285 -1.21553,0.76541 -1.19258,1.26749 0.006,0.14633 0.1951,0.263 0.29074,0.36406 0.26937,0.2834 0.20625,0.78771 0.55277,0.96145 0.72205,0.3615 1.33316,-0.32867 1.74503,-0.81577 0.39402,-0.46638 1.008,-0.95699 1.25091,-1.51487 l -0.0583,-0.50973 z m -1.07622,-2.57866 c -0.05,-0.2834 3.2e-4,-0.54416 -0.1017,-0.83011 -0.0975,-0.27448 -0.26682,-0.65798 -0.59644,-0.67009 -0.60856,-0.0223 -0.83171,0.60888 -0.93054,1.09248 -0.0756,0.36915 -0.044,0.50432 0.1017,0.85944 0.18393,0.44917 0.88909,0.27766 1.23624,0.13102 l 0.29074,-0.58274 z m -6.07924,9.22118 c 0.69145,0.24897 2.35104,0.0797 2.93793,-0.40804 0.79154,-0.65829 0.55819,-0.87252 0.37808,-1.71889 -0.10138,-0.47563 -0.0523,-1.46036 -0.62546,-1.67522 -0.9876,-0.37074 -0.77242,1.00322 -1.32328,1.3695 -0.35799,0.23845 -0.84605,0.18841 -1.22158,0.37872 -0.1409,0.0711 -0.31273,0.13517 -0.43642,0.23303 -0.11062,0.088 -0.25885,0.29966 -0.34907,0.34939 -0.0255,0.23048 -0.51452,0.49986 -0.58178,0.78676 -0.12337,0.52409 0.36309,0.57286 0.75616,0.75744 l 0.46542,-0.0727 z m -3.53405,6.0888 0,-1.66055 c 0,-0.34015 0.62227,-0.56744 0.78549,-0.84478 0.12209,-0.20689 0.44757,-0.83873 0.0437,-0.90312 -0.41187,-0.0654 -0.83585,0.23399 -1.2219,0.11636 -0.26459,-0.0803 -1.18843,-1.81836 -1.62868,-0.96146 -0.33121,0.64395 -0.8588,0.64171 -1.5273,0.81577 -1.18205,0.30827 -0.1138,0.49762 0.10202,1.01979 0.17979,0.43419 -0.55437,0.82885 -0.66913,1.23817 -0.10935,0.38923 0.20434,0.67327 -0.37808,0.74308 -0.27894,0.0335 -1.00768,0.46479 -0.43642,0.65543 0.19063,0.0637 0.84287,0.26044 0.91651,0.46606 0.0421,0.11699 -1.47662,0.88304 -0.88718,1.19449 0.54735,0.28946 0.93818,-0.0676 1.19257,0.67008 0.37458,1.08451 1.10555,-0.93818 1.35229,-1.19448 0.28723,-0.29775 0.50942,-0.56712 0.84382,-0.81577 0.19893,-0.14824 0.50082,-0.15621 0.72715,-0.32038 l 0.78517,-0.21869 z m -12.27482,0.51006 c 0.58752,-0.50305 0.93181,-1.26207 1.59998,-1.64621 0.41538,-0.23845 2.49449,-0.60856 2.79224,-0.30572 0,0.60506 -1.29012,1.36058 -1.75969,1.67522 -0.47786,0.31974 -0.97772,0.88208 -1.1199,1.45653 -0.0794,0.32038 -0.20051,0.69431 -0.39274,0.96146 -0.4192,0.58337 -0.80366,-0.13389 -1.19258,0.33504 -0.35385,0.42717 -0.33408,1.00513 -1.10522,1.00513 -0.64522,-0.64522 0.21677,-2.16742 0.59613,-2.73868 l 0.58178,-0.74277 z m -4.84299,6.35115 c -0.4514,0.42016 -0.99142,-0.81003 -1.17791,-0.97612 -0.32293,-0.2869 -0.97325,-0.54608 -1.00353,0.11668 -0.0159,0.38955 -0.38223,0.61462 -0.55278,0.94679 -0.33855,0.66052 -0.29583,1.55408 0.64012,1.52953 0.80653,-0.0223 0.94329,-0.89068 1.585,-1.12148 l 0.5091,-0.4954 z m 0.45077,0.68475 c -0.10329,-0.29997 0.44215,-1.03509 0.52376,-1.39851 0.0516,-0.2292 0.56584,-2.91465 0.87251,-2.02492 0.27097,0.78517 0.12529,1.60795 -0.0287,2.40364 -0.15652,0.80525 -0.13197,1.82249 -0.72714,2.46166 -0.32453,0.34811 -0.42877,0.54958 -1.00354,0.49539 -0.9605,-0.0902 -0.32931,-0.77178 0.0437,-1.26717 l 0.31974,-0.67009 z m 1.51263,2.56367 c 0.65383,-0.20976 0.52982,-0.745 0.68348,-1.28183 0.22633,-0.79154 2.41798,0.10073 1.97806,-0.64108 l -0.59645,-1.00513 c -0.29679,-0.50049 -0.4141,-0.59868 0.20371,-0.9758 0.43641,-0.2665 0.6822,-0.83617 1.11989,-1.01979 0.44725,-0.18777 -0.0695,1.86776 0.0874,2.17061 0.33854,0.65478 0.0386,1.09088 0.24705,1.61687 0.14728,0.37107 2.64178,0.54289 2.70521,-0.17501 0.0434,-0.4938 -0.35831,-0.80461 -0.27638,-1.28183 0.0402,-0.23304 0.91682,-0.78645 1.13455,-0.78645 0,0.64937 -0.14536,1.36377 -0.14536,2.03927 0,0.69304 -1.73738,2.09569 -2.3418,2.49099 -0.34907,0.22793 -1.3966,1.7479 -1.77404,1.31116 -0.25694,-0.29679 -0.0918,-0.72842 -0.55277,-0.85944 -0.94169,-0.26746 -0.65351,0.86773 -1.06156,1.17982 -0.48423,0.37075 -0.68538,0.18968 -0.69813,-0.39338 -0.0287,-1.35547 -0.4683,0.27129 -1.17823,0.0159 -0.51484,-0.18585 -0.53046,-0.94966 -0.36342,-1.35484 l 0.82884,-1.0488 z m -5.73016,4.63227 c 0.34333,-0.39816 0.46957,-0.90089 0.78548,-1.2965 0.47468,-0.59517 1.79572,-0.77337 2.51586,-0.93213 0.86869,-0.1919 0.66435,0.32293 0.11635,0.71376 -0.89674,0.63917 -1.34591,1.60541 -2.15243,2.28697 -0.59007,0.49826 -1.5442,1.27195 -1.4543,-0.16035 l 0.18904,-0.61175 z m -5.67183,1.06347 c 0.38318,-0.40837 1.6223,-2.06669 2.19611,-1.80624 0.35832,0.79601 0.90503,0.34716 1.54133,0.67009 0.006,0.0223 0.01,0.0255 0.0287,0.0437 0,0.32931 -0.78134,0.84861 -1.00354,1.07781 -0.53651,0.5531 -0.90248,1.18174 -1.67266,1.45685 -0.59071,0.21136 -1.43963,0.44056 -1.43963,-0.5244 l 0.34906,-0.91778 z m -4.53759,4.03518 c 0.15972,-0.65765 0.46479,-1.40329 0.85786,-1.95224 0.18202,-0.25375 0.91587,-1.28183 1.30893,-1.0488 0.0921,0.45777 -0.23877,0.80461 -0.37808,1.19449 -0.25694,0.71981 -0.78517,2.98733 -1.94874,2.47664 l 0.16003,-0.67009 z m -6.16658,27.502557 c 0.30923,-0.0692 0.5142,-0.42494 0.74182,-0.64107 0.22952,-0.21837 0.59772,-1.15401 1.01788,-1.0198 0.26363,0.0838 0.11094,0.83841 0.0287,1.00513 -0.11094,0.22475 -0.23271,0.33313 -0.23271,0.59741 0,0.454904 -0.32134,0.455864 -0.63981,0.699094 -0.36756,0.28117 -0.82501,0.54576 -1.1489,0.0583 l 0.23272,-0.699104 z m -33.79919,38.660684 c 0.99971,-0.15015 2.00898,-1.5764 3.08297,-1.3982 0.36979,0.0612 0.19191,0.40518 0.36373,0.65543 0.2155,0.31304 1.27323,0.8164 0.66913,1.26749 -0.49539,0.36947 -1.18811,0.3395 -1.77436,0.40772 -0.46447,0.0542 -0.88654,0.2002 -1.32359,0.34971 -0.48583,0.16577 -0.91077,0.41346 -1.43995,0.2767 -0.77083,-0.19892 -0.50496,-0.93149 -0.0287,-1.29649 l 0.45109,-0.26236 z m 0.24706,-3.4958 c 0.46765,-0.0893 0.96591,-0.30444 1.41062,-0.46639 0.32261,-0.11763 0.68507,-0.2767 1.03286,-0.2767 0.15876,0.22315 0.15971,0.60187 0.15971,0.88877 0,0.60537 -1.02553,0.4514 -1.41062,0.4514 -0.31273,0 -0.57062,0.0704 -0.87251,0.11668 -0.53875,0.0829 -0.672,0.0159 -1.1199,-0.26236 l 0.79984,-0.4514 z m -2.79224,5.215 c -0.60857,0.0902 -0.94106,0.25152 -1.22191,0.81546 -0.0963,0.19382 0.21359,0.56106 0.32006,0.72842 0.33409,0.52376 0.81928,0.30603 1.36727,0.30603 0.36437,0 0.57987,-0.25662 0.59613,-0.62641 0.0191,-0.40581 -0.26874,-0.72332 -0.53811,-0.99046 l -0.52344,-0.23304 z m -27.83664,41.64705 c -0.11253,-0.15811 -0.10584,-0.37489 -0.23272,-0.55373 -0.25471,-0.35959 -1.66597,-2.17092 -2.03608,-1.96626 -0.431,0.23877 0.005,0.96719 0.18904,1.20883 0.40518,0.53269 1.58883,0.96146 1.61433,1.71889 0.022,0.66148 0.004,2.01664 0.85817,2.12694 0.47053,0.0609 1.22318,-0.21997 1.26526,-0.75744 0.051,-0.64713 -0.86933,-0.92479 -1.30893,-1.20915 l -0.34907,-0.56808 z m -2.19611,11.52249 c -0.27129,0.0223 -0.29648,0.0376 -0.46543,-0.16034 -0.0625,-0.0736 -0.15971,-0.37617 -0.17438,-0.48073 -0.0583,-0.41825 0.12433,-0.63917 0.23272,-1.01948 0.0762,-0.2665 0.0931,-0.60728 0.40709,-0.69941 0.44438,-0.13007 0.65446,0.1103 0.65446,0.5244 0,0.21327 0.007,0.40581 0.0583,0.61207 0.074,0.29774 0.0169,0.42366 -0.13102,0.67008 l -0.58178,0.55341 z m -1.42529,0.0727 c -0.29074,-0.15653 -0.34589,-0.46065 -0.55246,-0.6991 -0.15875,-0.18362 -0.70005,-0.65383 -0.85817,-0.21837 -0.10073,0.27703 -0.1307,0.60378 -0.1307,0.90312 0,0.16864 0.0972,0.27224 0.11604,0.43706 0.0332,0.28754 0.066,0.74404 0.36373,0.91746 0.47722,0.27766 0.94839,-0.23431 1.09088,-0.64076 l -0.0293,-0.69941 z m -2.28314,1.2965 c -0.18139,-0.38892 -0.52759,-0.97581 -1.0182,-0.97581 -0.25121,0 -0.29073,0.32676 -0.29073,0.52441 0,0.18649 -0.009,0.36979 -0.0147,0.55341 -0.01,0.31241 -0.17852,0.63597 0.0437,0.91778 0.30636,0.38924 0.84255,-0.17533 1.07622,-0.37872 l 0.20371,-0.64107 z m -1.9634,9.52689 c -0.009,-0.23718 0.10998,-0.66435 0.18904,-0.90312 0.0803,-0.24387 0.39497,-1.04816 0.69814,-1.06346 0.34269,-0.0159 0.3937,0.28435 0.3344,0.56807 -0.0685,0.32676 -0.26299,0.6025 -0.3344,0.91778 -0.0689,0.3054 0.002,0.59677 -0.0437,0.88878 -0.0571,0.36501 -0.59422,0.80939 -0.79984,0.30571 l -0.0437,-0.71376 z m 51.21316,9.87883 c 0.1919,-0.0644 0.33217,-0.146 0.37457,-0.27479 0.14058,-0.42398 -0.89419,-1.21808 -1.22159,-1.31084 -0.39497,-0.11222 -1.01373,-0.0931 -1.25091,-0.49539 -0.31368,-0.53269 -0.34524,-0.6991 -1.04721,-0.6991 -1.21393,0 -1.83939,0.48487 -1.19226,-1.19449 0.17279,-0.44917 -0.30539,-0.53333 -0.46542,-0.87379 -0.19956,-0.42526 -0.0874,-2.59874 -0.0874,-3.20475 0,-0.87474 0.15174,-1.71474 0.17438,-2.59268 0.0255,-0.99843 0.70738,-1.85724 0.75647,-2.68034 0.0364,-0.60697 -1.42528,0.0727 -1.42528,0.81577 0,0.69973 0.21709,2.97108 -0.0874,3.43746 -0.27033,0.41474 -0.96241,0.72364 -1.30893,0.23335 -0.16641,-0.23526 -0.42144,-1.5732 -0.6108,-1.5732 -0.20498,0.62003 -0.47275,1.13965 -0.75615,1.7769 -0.22092,0.49763 0.58337,1.30288 0.52344,2.01026 0,1.80114 -0.44056,2.14734 -1.42529,3.43778 -0.95508,1.25092 0.65192,3.506 -1.54164,3.20443 -0.6245,-0.0857 -3.1123,0.0861 -3.1123,-0.37872 0,-0.54799 0.39689,-1.31148 -0.17438,-1.68956 -0.36756,-0.24291 -1.55408,0.14569 -2.06509,0.14569 0.94074,0.75424 0.32197,2.42181 -0.72715,2.68003 -1.69562,0.41697 -0.65032,1.8821 -2.18176,2.12661 -0.55437,0.0886 -2.18081,-0.36692 -1.30893,0.64108 0.83266,0.96305 -1.19832,1.75778 -2.0941,2.18495 -1.35102,0.64395 -3.39889,3.69982 -4.68296,3.69982 -0.44949,0.50591 -1.79508,1.75651 -2.38515,2.0686 -0.80748,0.42685 -1.04817,-0.80238 -1.51264,-1.0488 -1.28789,-0.68252 -2.7814,1.82855 -4.21752,1.89358 -1.0182,0.0462 -1.75492,-1.12914 -2.55953,-0.99047 -0.77082,0.13262 -0.82023,0.37394 -1.4543,-0.26236 -0.38286,-0.38381 -0.67805,-1.00608 -1.19257,-1.16516 -1.16452,-0.35959 -1.34049,0.35959 -2.32713,0.49508 -0.74692,0.10233 -1.32774,-1.16166 -0.81418,-1.63123 0.66084,-0.60378 1.45972,-0.53779 2.0941,-0.96145 1.09311,-0.72938 -0.6838,-1.0453 -1.19258,-1.19449 -0.9589,-0.28085 -2.1416,-1.25378 -2.79224,-2.01026 -1.06569,-1.23975 -2.59905,-2.07497 -3.66507,-3.3211 -0.86231,-2.09793 -0.85976,-5.02597 -0.2037,-7.16661 0.61175,-1.99655 2.19961,0.86008 2.58885,1.22349 4.03423,3.7639 0.41092,-2.11513 2.79224,-3.90384 0.2885,-0.21645 1.73069,-0.5346 0.98919,-1.13615 -1.05613,-0.85721 -0.85275,-1.22031 0.23271,-2.09761 0.48201,-0.38923 2.35583,-1.45206 2.35583,-2.03926 -0.87507,0 -1.20469,-0.79633 -2.06509,0.69941 -0.38765,0.67423 -2.19548,2.20504 -1.68701,0.29137 0.2885,-1.08706 -0.52568,-0.92129 -0.93086,-0.17501 -0.46192,0.85147 -0.52057,2.66026 -1.4543,1.31116 -1.53016,-2.21173 -1.05964,1.38799 -2.47249,0.55341 -0.85881,-0.50687 -0.74086,-4.56819 -0.23272,-5.3897 0.35035,-0.56616 1.35643,-0.64235 1.97807,-1.10682 0.58018,0.77656 -0.81705,2.14415 -0.43642,2.70935 0.56489,0.83968 1.45621,-0.96273 1.74535,-1.25282 0.46638,-0.46862 1.07845,0.12209 1.36695,-0.43706 0.66339,-1.28661 1.46769,-0.46032 2.2978,-1.07781 0.21518,-0.15971 0.41251,-0.78453 0.0583,-0.87411 l 0,-0.058 c -2.63795,0 -1.91813,-0.52727 -0.58178,-1.86457 1.07622,-0.48966 2.08294,-1.15751 3.02495,-1.86458 0.77656,-0.58337 -0.87666,-0.83936 -0.66881,-1.51486 0.21868,-0.70994 2.78012,-2.65102 3.51939,-2.65102 0.34014,1.37683 -0.17438,2.45401 -0.17438,3.78717 0,1.75555 0.54512,1.05805 0.46543,0.0873 -0.24132,-2.93664 2.01759,-4.69347 4.47925,-5.30203 0,-1.11957 -3.92265,-0.0775 -4.65395,-0.11668 -2.56941,-0.13803 -4.40593,2.22895 -5.35208,4.36991 -0.58338,1.31945 -1.06219,2.54008 -1.59967,0.43706 -0.30284,-1.1862 1.1607,-2.70936 -1.07621,-2.70936 -1.97647,0 -0.059,-1.16325 -0.87252,-1.98093 -1.5646,-1.5732 0.41091,-0.92511 0.69814,-2.0686 0.86518,0 2.15339,1.85406 2.93761,0.81577 l 1.62899,-2.15594 c 0.18521,-0.24546 -0.15111,-1.32933 -0.1747,-1.68956 -0.0829,-1.26972 -2.27007,0.45841 -2.67588,-0.58274 l -0.46543,-1.19449 c -0.20242,-0.51962 1.27961,-0.25152 1.16357,-1.01947 -0.0249,-0.16482 -2.08422,-0.0411 -2.61786,-0.20403 -2.0533,-0.628 -0.19861,-1.80591 0.58178,-2.33063 0.28563,-0.19223 -0.01,-0.89675 0.26172,-0.84479 0.87953,0.16928 1.74631,0.0159 2.58886,0.14569 1.51104,0.21454 2.94812,0.3309 4.30487,1.0488 1.08515,0.57382 1.47183,0.70006 2.70489,0.40773 0.2952,-0.0701 1.11894,-0.73161 1.16357,-0.72811 0.19733,0.0159 1.05486,1.5544 1.19257,1.86426 0.39562,0.891 -0.85051,2.64113 0.66882,2.21428 l 1.658,-0.46606 c 0.18075,-0.0507 -0.85371,-1.18429 -0.93086,-1.3695 -0.44183,-1.05614 3.79355,-1.32679 4.62494,-1.19417 0.8671,0.13803 2.33733,-0.85435 2.93792,-1.45685 0.2952,-0.29647 -2.15084,-0.72588 -2.35614,-1.39819 -0.42462,-1.38863 0.46543,-1.82537 0.46543,-3.08807 -1.65832,0.40995 -2.32713,-0.5005 -2.32713,1.48553 0.0408,-0.0602 0.008,-0.0733 0,-0.14568 0.32452,2.90158 1.49701,4.19234 -2.55953,3.8165 -0.67487,-0.0625 0.0666,-1.42816 0,-1.68957 -0.22092,-0.86614 -1.96148,1.22733 -2.50151,0.72811 -1.16452,-1.07558 0.5091,-2.57897 -0.058,-3.14609 -0.17534,-0.17533 -1.5238,0.94424 -1.68702,1.13615 -0.64171,0.75297 -0.41569,1.98093 -1.54164,1.98093 -1.00386,0 -1.98093,-0.97867 -3.02527,-1.2235 -0.78931,-0.18521 -4.31795,-0.25407 -4.53727,-1.13615 -0.16673,-0.67008 -0.37298,-2.85121 0.31974,-3.14641 l 0,-0.11667 c -1.4221,-0.47053 0.0226,-1.28598 1.13456,-0.84478 0.9334,0.37074 2.82985,0.68283 1.39596,-0.75744 -0.55373,-0.5566 -0.40199,-0.97707 -0.84351,-1.45653 -0.37872,-0.41091 -3.06831,-1.75045 -2.00675,-2.18495 0.48742,-0.19956 1.58404,-0.15238 1.89039,-0.64108 1.47981,-2.35901 1.74886,-1.01278 3.7231,0.26236 1.52188,0.9825 6.15638,1.44824 7.70822,0.49508 0.58083,-0.35672 -2.2197,-0.42112 -2.55984,-0.46607 -1.19194,-0.15843 -3.36351,-0.39848 -4.04284,-1.45653 -0.82948,-1.2914 -4.34344,-0.5126 -4.79931,-1.60253 -0.24419,-0.58465 0.63439,-1.51359 0.52345,-2.2723 -0.12401,-0.84829 -0.096,-1.64493 0.37808,-0.40773 0.1476,0.38605 0.0469,0.85658 0.14536,1.25251 0.18012,0.72524 1.79604,0.54098 1.13456,-0.78644 -0.66116,-1.32615 0.7179,-0.22825 1.51232,-0.29137 0.72587,0 2.23627,-0.70802 2.32713,0.29137 0.15333,1.6902 -0.17055,1.92291 1.4543,1.92291 0.92575,0 0.86486,0.27224 0.58178,-0.69942 -0.19542,-0.67199 -2.02652,-2.20599 -1.42529,-2.68002 0.42749,-0.33664 2.37846,-1.29491 2.73422,-0.81577 0.59262,0.79728 1.06283,3.85698 2.2978,3.58314 0.73927,-0.16417 -0.0236,-1.44091 -0.2037,-1.89358 -0.44662,-1.1234 -1.69466,-1.74822 -0.0873,-2.12662 3.8895,-0.91555 1.91303,4.51559 3.08329,4.51559 0.51803,0 1.12627,0.43291 0.84351,-0.26204 -0.99939,-2.45337 1.48363,-1.90697 1.48363,-2.33064 0,-0.54831 -1.72144,-0.53556 -2.12343,-0.81577 -0.57031,-0.39816 -0.1154,-1.47087 -0.49444,-1.77722 -0.84956,-0.68603 -2.48907,-0.66053 -3.57772,-0.55342 -0.53971,0.0532 -3.56976,-0.0701 -3.19965,-0.81577 0.45969,-0.92511 1.79954,-0.84478 2.61786,-0.84478 2.16838,0 -1.30893,-1.50626 -1.30893,-1.5732 0,-0.99716 3.35235,0.11189 3.83945,0.17469 0.59772,0.0768 1.58277,-0.18171 2.06509,0.0583 0.57668,0.28691 0.72619,1.34846 1.62899,1.13615 0.69177,-0.1629 1.35293,-0.46192 1.80337,0.32038 0.37585,0.65223 0.86741,1.68988 1.74535,1.68988 0.20179,0 1.636,-0.10807 1.39596,-0.37872 -0.46288,-0.52281 -1.56428,-0.54385 -1.94873,-1.07813 -0.33728,-0.46925 0.95157,-0.80684 1.22158,-1.07781 0.54895,-0.55182 2.96948,0.0287 3.83945,0.0287 -0.84064,-0.62801 -0.33313,-1.04912 -1.89072,-1.19417 -0.37011,0.0609 -4.05941,1.1234 -2.64687,-0.29137 0.12879,-0.12911 0.75648,-0.45554 0.75648,-0.58274 0,-0.58848 -4.63068,-0.24642 -4.27587,-1.39851 0.26938,-0.87538 1.97647,-0.79282 1.39628,-1.48554 -1.7938,-2.14224 -0.5617,-1.13169 1.13424,-1.45685 0.95412,-0.18298 0.82087,0.30126 1.27992,1.04881 0.42494,0.69272 1.85724,0.6178 2.55953,0.75743 0.51292,0.10169 2.24393,0.10647 2.5015,0.49539 0.68221,1.02872 1.15464,2.27708 1.89072,3.32111 1.4476,2.05202 0.97676,-0.64873 0.49444,-1.25283 -0.55692,-0.69814 -2.70522,-3.0648 -2.70522,-3.75816 0,-0.7976 2.53562,0.60155 2.76323,0.93245 0.43929,0.63948 0.90089,1.71857 1.80337,1.54388 0.58402,-0.11317 0.1425,-1.50371 -0.23239,-1.80624 -0.83044,-0.67104 -1.10555,-1.54483 -1.10555,-2.59268 0,-1.40521 0.52376,-0.40996 0.52376,0.46606 0.24483,0.12242 0.43291,0.5244 0.75616,0.5244 0.36884,0 0.49603,9.6e-4 0.84351,0.0874 0.73065,0.18139 0.93436,-0.5821 0.11636,-0.99046 -0.71376,-0.35609 -0.65925,-0.83554 -0.72715,-1.60222 0.14696,-0.79154 0.7281,-1.39468 1.57065,-1.13615 0.78899,0.24196 1.60381,-0.21072 2.09442,-0.0874 0,0.57031 -0.79664,2.53562 0.61079,2.12662 0.75233,-0.21869 2.48716,-0.57923 1.27961,-1.48586 -0.89834,-0.67487 0.1715,-0.71535 0.0287,-1.10714 -0.27543,-0.7603 0.49603,-1.21361 1.25059,-1.01947 1.05709,0.2716 2.1247,-0.39657 2.96693,0.72842 1.36536,1.82281 1.39565,0.66084 0.8145,3.29178 -0.27766,1.25665 1.00768,0.64107 1.83238,0.64107 0.17692,0 0.95125,0.065 0.98887,-0.0873 -1.52029,-0.5142 -0.036,-1.63505 0.78549,-1.80624 0.7383,-0.15397 3.21526,0.64522 3.17031,0 -0.0287,-0.4055 0.49412,-1.87637 0.46543,-1.95192 -0.11508,-0.29998 -1.30638,0.0191 -1.57065,0.0287 -2.66154,0.0921 0.9911,-1.3134 1.22158,-1.45653 1.6172,-1.0029 3.78143,-0.49476 3.78143,-3.26309 -0.84829,0.1068 -2.88787,0.53269 -1.8327,-0.96113 0.32006,-0.453 2.34339,-1.51041 2.21078,-1.66056 -0.14951,-0.16991 -0.74596,-1.15527 -0.87283,-1.16547 -0.67009,-0.0548 -1.44219,1.26972 -1.8904,1.71889 -0.45491,0.4565 -4.11743,2.34115 -2.2978,2.65101 0.36851,0.0625 2.09633,-0.17565 1.2796,0.5244 -0.86869,0.74405 -4.69921,3.26309 -5.67183,3.05907 -0.47626,-0.1001 -2.02715,-1.15783 -1.8617,-1.71889 0.0829,-0.28213 2.79033,-1.80273 1.51263,-1.66055 -0.5244,0.0583 -5.43401,1.47756 -3.66507,-0.29137 0.40295,-0.40295 1.48873,-0.32485 1.89072,-0.72843 0.36118,-0.36278 -0.60761,-1.04721 0.11635,-1.36918 0.53779,-0.23941 1.29268,1.02649 1.91973,0.78676 1.16866,-0.4463 0.79058,-1.28343 0.64012,-2.18495 -0.096,-0.577 2.79766,-4.54269 3.28667,-5.79743 1.41318,-0.82087 3.51939,-1.82154 3.51939,-3.52513 0.0583,0 1.27992,2.17316 1.27992,2.59268 0,2.09729 0.61877,1.58469 1.77436,0.81578 0.81195,-0.54066 1.30351,0.41346 1.42529,-1.19449 0.1272,-1.68191 2.36698,-0.35768 0.84351,-2.15563 -0.39275,-0.46383 0.0255,-0.86614 -0.32006,-1.3695 -1.18557,-1.72016 1.16802,-2.35965 2.47249,-2.35965 0.97421,0 -0.56839,-1.35292 0.90153,-1.45653 1.05836,-0.0743 2.13522,0.40773 3.17063,0.40773 -1.04752,-3.09732 -7.2208,1.0488 -8.92981,1.0488 0.47627,-1.43995 1.11384,-1.53048 2.2688,-1.86457 1.58277,-0.45746 1.80751,-2.29972 3.54872,-2.73837 0.60473,-0.15238 2.10015,-1.36918 2.41416,-1.36918 0,0.82374 -0.56712,2.85632 0.81449,1.95192 0.63853,-0.41824 2.7339,-0.87602 2.7339,-1.92291 -1.20787,0 -2.19898,1.20565 -2.03608,-1.10714 0.13963,-1.98507 -1.95606,0.0344 -1.04689,-1.60221 0.19127,-0.34429 0.51356,-0.45427 0.69814,-0.75744 0.88877,-1.46099 -0.0966,0.26969 1.48331,0.1747 0.93181,-0.0558 -1.35229,-2.57037 -1.33794,-2.76738 0.63725,-2.40204 2.00898,-0.0921 2.58853,-0.87411 0.66754,-0.89993 -1.33316,-2.24807 -0.26172,-2.68034 0.26714,-0.10743 1.00099,-0.96114 1.07622,-0.96114 0.67519,0 1.86649,1.97551 2.18145,1.66055 0.46255,-0.46255 -0.30923,-2.01854 -0.11636,-2.56367 0.10711,-0.3038 0.93085,-1.49733 0.93085,-1.60253 0,-0.66467 -2.25285,-0.5295 -2.47218,-0.81545 -0.10743,-0.13963 0.33919,-0.670094 0.46511,-0.699424 0.3988,-0.0928 0.7772,0.0373 1.13456,0.204024 1.11288,0.52026 1.83078,-0.472754 2.55952,-0.262044 0.49954,0.14409 1.19672,0.725564 1.71634,0.378724 0.55182,-0.367884 0.36246,-0.741184 1.22159,-0.815774 0.27893,-0.0223 1.33284,-0.65415 1.39596,-0.84478 -1.01916,0 -2.38037,-0.0223 -3.37403,-0.20402 -1.75714,-0.31911 -1.62771,-0.28819 -0.61079,-1.57321 0.36406,-0.45969 -0.77146,-1.37046 -1.04721,-1.63154 -1.10172,-1.04211 1.44665,-0.34556 2.06541,-0.43706 0.98186,-0.14568 0.4361,-0.0762 0.4361,-0.75743 0,-0.79346 -0.44311,-0.39529 -1.04689,-0.84478 -0.78581,-0.58465 0.90758,-0.81545 1.2796,-0.90312 1.10173,-0.25917 -0.21868,-1.15655 -0.66881,-1.80624 0.99238,0 2.0619,-0.14568 3.02495,-0.14568 0.0159,-0.0446 -6.3e-4,-0.0287 0.058,-0.0287 0,-0.50049 -2.46134,-1.477892 -2.15243,-2.680352 0.0532,-0.20689 1.38384,0.0373 1.59998,0.0287 1.00258,-0.0376 1.30797,-0.96145 2.38515,-0.96145 0.67296,0 1.8464,0.46511 2.47218,0.11635 0.55755,-0.31113 -0.92512,-1.26557 -0.087,-1.63122 0.30922,-0.13516 1.67968,-0.5244 2.00675,-0.5244 0.56075,0 0.66116,0.60952 1.07622,0.64076 0.42972,0.0325 0.57668,-0.50942 0.98919,-0.67009 0.86678,-0.33823 1.83238,0.74883 2.47218,0.0583 0.86901,-0.93723 -0.0287,-1.02745 -0.6398,-1.51487 -0.74405,-0.59262 -0.66658,-2.32299 -2.12343,-1.36918 -1.01692,0.66562 -1.89103,1.47629 -3.22865,1.2235 -1.83238,0.12847 -0.86551,-0.87029 -0.35003,-1.58341 0.54512,-0.75488 1.35356,-0.0287 2.00675,-0.11667 0.63662,-0.0874 1.52379,-0.23112 1.0182,-1.04881 -0.146,-0.2359 -1.08451,-0.20211 -1.42529,-0.40772 -0.94137,-0.56904 -0.22697,-0.47149 0.17438,-0.87411 0.22124,-0.22156 0.7332,-0.96337 1.09088,-0.87411 0.35353,0.088 0.52632,0.63948 0.77082,0.8451 0.65766,0.55245 1.48586,0.0736 2.07976,1.00513 0.20083,0.31464 0.0749,1.16484 0.43642,1.2965 0.48837,0.17756 0.89801,0.2241 1.17791,-0.27703 0.38413,-0.68857 -0.50273,-0.92703 -0.21805,-1.44218 0.24833,-0.45013 0.77082,-0.68348 0.77082,-1.32551 -0.28436,-0.0679 -2.25923,0.57955 -2.22512,-0.17469 0.0159,-0.33919 1.03541,-0.87188 0.49444,-1.00513 -1.06794,-0.263 -1.2914,-1.31021 0.11635,-1.15082 0.36533,0.0414 1.03287,0.32134 1.2506,-0.0437 0.25789,-0.43323 -0.51293,-0.73799 -0.72715,-1.034465 -0.95445,-1.19034 -1.67554,-0.33568 -2.68927,0.17087 -3.02209,1.511045 0.30539,-2.16997 1.25059,-2.447 1.32519,-0.38891 3.46137,1.66853 3.46137,-1.16548 -0.4208,-0.10392 -1.39277,-0.30188 -1.51264,-0.75743 -0.16895,-0.64012 -0.76986,0.15142 -1.19257,0.11668 -0.49954,-0.0408 -0.0255,-1.2235 0.78548,-1.2235 1.22223,0 2.89776,-1.64111 3.19965,-0.69942 0.33473,1.04275 -0.14154,2.51076 0.58147,3.23376 0.16034,0.16035 1.81707,2.35072 1.59998,1.0488 -0.0838,-0.50304 -0.56138,-0.86582 -0.0874,-1.33985 1.15496,-1.15496 -0.56202,-1.05103 -0.32006,-1.74822 0.34588,-0.99779 0.50719,-2.73422 1.62899,-3.20443 0.82247,-0.34492 1.05964,0.26523 1.62868,0.40773 0.76444,0.19191 1.58563,-0.73958 2.03608,-0.0287 0.18521,0.29264 1.33666,1.81357 1.57097,0.6991 0.14792,-0.70516 -0.40773,-1.29491 -0.29105,-1.39851 0.52026,-0.46065 1.26239,-0.33441 1.04721,-1.25251 -0.2375,-1.01438 0.66881,-0.9283 0.66881,-1.77723 -0.52472,0 -1.10427,1.02458 -1.97774,1.13615 -0.79633,0.10137 -1.29969,3.2e-4 -1.94874,-0.26204 -0.0931,-0.0373 -2.92294,0.70165 -3.37402,0.67009 -1.55758,-0.10935 3.76804,-2.82667 4.50826,-3.00073 0.77911,-0.1833 2.39854,-0.85339 2.85058,-1.5732 0.77369,-1.23083 -0.69336,-2.20345 -0.40709,-3.43778 0.24164,-0.94552 -0.33154,-2.6829 1.01788,-2.85504 0.90567,-0.11572 2.24935,0.2681 3.02495,0.0287 1.02745,-0.31592 -0.62928,-1.87669 -0.72715,-2.38898 -0.0896,-0.46734 0.69814,-1.43804 0.69814,-2.2723 0,-2.33064 1.74822,1.45876 2.44317,1.80624 0.25152,0.1256 3.14067,-0.17023 2.2688,-0.75744 -0.79633,-0.53587 -2.06509,-1.04434 -2.06509,-2.21428 0,-1.82696 1.83492,0.29424 2.21077,0.69942 0.31942,0.34492 0.41889,0.92511 0.72715,1.28183 0.47786,0.55373 1.33794,0.55851 1.33794,1.45653 0,0.77561 0.13804,1.17919 0.52345,1.80624 0.27543,0.44885 0.61653,0.67837 1.16356,0.43705 0.24451,-0.10806 -0.13676,-0.42526 -0.2037,-0.5244 -0.68571,-1.0166 0.0778,-2.02237 -1.22159,-2.82603 -0.77177,-0.47754 -0.98887,-1.07462 -0.98887,-1.98093 0,-0.62673 -0.0255,-0.96815 0.34907,-1.42752 0.58912,-0.72045 -0.044,-1.53017 0.69814,-2.2723 0.29456,-0.29456 1.49893,-1.48586 1.86139,-1.48586 0,1.05869 -0.14282,2.04915 -0.34907,3.08807 -0.44152,2.22417 0.37266,2.49832 1.10523,0.23304 0.26618,-0.82279 -0.0191,-1.58469 0.11635,-2.38866 0.22188,-1.30256 -0.003,-0.94839 1.22191,-1.48586 1.03669,-0.36915 1.94746,-1.28152 1.89039,0.23303 -0.0567,1.49797 -0.0159,3.46297 -0.98887,4.66128 -0.11731,0.14505 -0.86136,1.30319 -0.55277,1.45653 0.34971,0.17406 1.1081,-1.39182 1.25091,-1.63122 0.41092,-0.68731 1.01501,-0.98409 1.42529,-1.63155 0.65957,-1.04179 -0.28021,-2.09888 1.30893,-3.29209 0.84478,-0.6347 0.97835,-2.30801 1.39596,-2.56367 1.95288,-1.19449 2.47888,2.13618 2.96694,3.1174 0.22729,0.4565 2.20599,2.33096 2.61786,1.39819 0.0746,-0.16864 -1.37875,-2.0788 -1.59966,-2.41799 -0.63407,-0.97229 1.21202,-2.97872 -0.43642,-3.75815 -1.20437,-0.56967 -3.17064,-1.44091 -3.17064,-3.05875 l 0.0287,-0.0287 c 1.38257,0.59996 1.09057,0.34907 2.35582,0.14569 0.76413,-0.12305 0.85467,0.5821 1.36727,0.55341 0.2952,-0.0159 1.09025,-0.50655 1.27961,-0.11636 0.18999,0.39083 0.40454,2.65293 1.2219,0.99047 0.61621,-1.2541 3.26596,-0.23144 2.55953,0.11667 -0.41538,0.20434 -2.41034,1.52188 -1.77436,1.68956 0.38477,0.1017 2.1789,-0.62737 2.2978,-0.14568 0.77178,0.18968 -0.94838,3.389 0.23272,2.94239 0.49188,-0.18618 0.61557,-0.78007 1.2219,-0.93213 0.69304,-0.17342 2.20631,0.30507 2.32681,-0.75744 0.0638,-0.56074 -1.1234,-0.88718 -1.54164,-1.19448 -1.89646,-1.39501 1.65927,-1.34209 0.58178,-1.98094 -1.26908,-0.75201 -0.90694,-2.17953 0.0873,-3.17573 0.50846,-0.3733 0.74117,-1.14062 1.4543,-1.04881 0.60282,0.0778 3.09285,0.058 3.40303,-0.49507 0.01,-0.0191 -0.9503,-1.28534 -1.19258,-1.86457 -0.0966,-0.23049 -1.00513,-2.14415 0.29105,-1.60222 1.38959,0.58115 2.49258,1.26048 1.59967,-0.93244 -0.29329,-0.72014 -1.34623,-0.39785 -1.91973,-1.16516 -1.17504,-1.57289 1.61624,-2.62584 2.70521,-1.31085 0.43387,0.5244 1.47183,1.344 2.12311,1.54388 1.41318,0.43323 0.61079,-1.26239 0.61079,-1.54388 2.07051,0 2.31311,0.16449 1.629,1.80624 -1.06315,2.54996 -2.23979,5.76778 -2.23979,8.59413 0,0.62003 -0.41824,2.40938 0.23272,2.2723 0.76572,-0.16099 2.05616,0.12496 2.09441,-0.93245 0.0427,-1.17568 -0.34907,-2.03831 -0.34907,-2.9714 0,-0.80078 0.90918,-1.55662 1.04721,-2.44699 0.30508,-1.96882 1.04785,-3.35872 1.97775,-5.12766 0.60537,-1.15113 2.5015,-1.91909 2.5015,0.0583 0,1.00321 -0.23685,0.75074 -0.66913,1.5732 -0.0717,0.13644 1.125,2.20982 1.16357,3.05907 0.0708,1.56523 0.23941,1.98093 1.68701,0.87379 0.55437,-0.42367 2.60671,-0.81099 1.42529,-1.89359 -0.59772,-0.54799 0.38159,-1.23242 -0.0874,-1.86457 -1.14476,-1.5442 0.5837,-1.2133 1.39628,-2.59268 0.32676,-0.55437 -3.46998,-0.97835 -3.22866,-2.68035 0.25535,-1.79954 2.07976,0.24961 2.79224,0.67009 0.45013,0.26523 0.87284,0.0829 0.66913,-0.49508 -0.19477,-0.55373 -0.90184,-0.7807 -0.90184,-1.42752 -0.12018,-0.72555 -0.50209,-1.72175 0.52377,-1.45684 1.9025,0.49124 1.19257,1.73004 3.81043,0.75743 1.23083,-0.45746 -0.61015,1.84832 -0.58178,2.12693 0.0223,0.21869 1.15879,-0.14568 1.36695,-0.14568 1.07335,0 0.90918,1.42465 0.52345,2.03927 -0.5786,0.92288 -1.81612,0.35002 -2.53052,-0.14569 -0.26236,-0.18234 -1.58404,-0.96273 -1.51232,0.0583 0.0571,0.8145 3.52672,1.75045 0.72715,2.62201 -0.73193,0.22793 -1.57288,1.71474 -0.52376,1.89358 0.52089,0.0889 2.02715,-1.20214 2.32713,-1.60253 1.08259,-1.44569 1.56938,-0.18968 0.37808,0.93245 -1.7412,1.63951 0.0644,1.38799 0.93085,1.60221 0.18012,0.91332 -0.12815,2.56495 0.61079,3.11708 0.50113,-0.37425 0.39434,-2.14957 1.07622,-2.65102 0.11668,-0.0861 1.54005,-0.11029 1.04721,-0.46606 -0.76891,-0.55564 -0.7297,-1.47884 -0.32006,-2.21396 0.23941,-0.43036 0.72396,-0.53716 0.84351,-1.0198 0.0944,-0.37999 -0.19064,-0.86295 -0.0874,-1.28183 0.51293,0 1.12659,-0.26013 1.658,-0.20402 0.70037,0.0743 0.28882,0.66817 0.6398,1.0488 0.58242,0.63247 1.23115,-0.74755 2.29813,0.0873 0.67582,0.52918 1.34846,-0.168 2.0941,0.64107 1.5901,1.72623 0.57477,0.66531 3.40303,1.42752 l 2.26879,0.61175 c 0.0373,0.01 0.49539,1.67777 0.29105,1.80624 -1.76479,1.11224 -1.7734,0.93053 -2.82156,2.70935 -1.22318,2.07657 -4.44961,1.98094 -6.54435,1.98094 -0.59836,0.0516 -1.03955,-0.14633 -1.59998,-0.1747 -1.4731,-0.0746 -2.00293,-0.0676 -0.31974,0.99047 1.13169,0.71153 1.43039,0.65893 2.76323,0.93244 1.08674,0.22283 1.18142,-0.13962 0.49444,0.81546 -0.13389,0.18585 -1.38704,1.61783 -0.64012,1.5732 0.36596,-0.0223 1.30351,-0.80143 2.00707,-0.90312 1.73323,-0.25024 0.31273,1.98667 0.14536,2.53466 -0.68889,2.25477 -0.27065,1.00418 1.27993,0.55341 0.80333,-0.23367 1.53973,0.90185 2.61786,0.72843 1.95447,-0.31432 -1.18652,-3.01029 0.29073,-3.43778 2.1891,-0.63311 0.39753,1.9194 1.74535,2.593 0.80015,0.40007 0.25535,-2.06924 1.07622,-2.18496 0.2359,-0.0335 0.52408,-0.0698 0.83139,-0.0931 l 0,0 -0.24961,2.94812 -1.62899,1.86426 c -0.7756,0.77847 -0.78453,0.60474 -1.04721,1.63154 -0.15907,0.62131 -0.83554,0.97867 -0.87251,1.63154 -0.1068,1.88243 -0.0128,2.81647 -2.00708,3.6705 -0.6025,0.25789 -1.80942,-0.0128 -2.00675,0.67008 -0.48806,1.69148 -1.46003,0.89993 -2.44349,2.03927 -0.6143,0.71217 -1.64684,1.17536 -2.55952,1.25283 l 0,0 c 0,-0.69942 0.0587,-1.40744 0.23271,-2.06828 0.13803,-0.52313 0.0972,-1.08387 0.17438,-1.63154 0.0676,-0.47818 0.23271,-0.95094 0.23271,-1.45653 0,-0.76477 -0.12465,-1.47534 -0.14537,-2.21428 -0.0701,-1.71347 0.0328,-4.21817 -0.69814,-5.79743 -0.77433,-1.67394 -3.6045,-1.8209 -5.14838,-2.68003 -0.52217,-0.29073 -1.60476,-1.3695 -2.15243,-1.34017 -1.49638,0.08 -0.60506,1.70677 -1.51232,2.21396 -0.51325,0.28659 -1.20118,0.0128 -1.71634,0.20402 -1.02458,0.37872 -1.22254,1.31212 -1.80337,2.15595 -0.2614,1.05422 -1.89709,2.33255 -1.39596,3.3211 0.45108,0.89069 0.37011,1.40074 0.40709,2.38866 0.0816,2.16296 0.48487,5.06741 -0.2037,7.1376 -0.46384,1.39373 -2.2637,1.51009 -2.35583,3.08807 -0.14122,2.41958 -2.10494,3.01029 -4.04315,3.49612 -2.11259,-0.4989 -2.92549,-0.88431 -4.10117,-2.62201 -0.77752,-1.14858 -2.84101,1.13296 -3.63606,1.48554 -4.15696,1.84513 -6.95717,-3.61821 -9.04585,-6.05947 -0.61048,-0.71312 -3.90321,-5.21469 -4.45024,-4.19521 -0.38605,0.72013 -0.80844,2.64687 -0.95986,3.49612 l -2.61787,0.67008 0,0 -0.93085,0.72811 c 0,1.46003 1.33698,2.31852 1.0182,3.72915 l -1.04721,4.63194 c -1.26877,5.61222 -3.12856,1.73643 -5.90454,1.13615 -1.49255,-0.32292 -5.49586,-1.56906 -6.60268,-0.69909 -1.66724,1.30989 -2.10302,8.50423 -3.86877,8.3611 -1.35994,-0.1103 -2.06956,-1.92515 -3.49038,-1.45653 -1.63601,0.54002 -2.28155,3.466795 -3.78111,4.311575 -2.80786,2.81168 -3.46137,3.75337 -3.46137,7.69101 0,3.25352 -1.07272,5.42317 -2.87959,8.040722 -1.41573,2.05074 -3.62395,1.68764 -3.81044,4.74862 -0.20083,3.29082 -2.88437,2.94717 -5.46844,3.932854 -0.48997,2.35837 -1.3593,4.57202 -1.80337,6.96291 -0.36851,1.98284 -0.33663,3.93094 -0.37808,5.94311 -0.0838,4.0712 -2.42563,7.00435 -4.47925,10.40037 -2.02875,4.73172 4.88507,13.96884 -4.68295,11.50718 -6.38686,-1.64333 -8.48893,7.78888 -11.1696,11.97357 -0.41282,1.66183 0.0386,3.25448 0,4.92364 -0.0328,1.42657 -0.37808,2.82986 -0.37808,4.25323 0,2.56622 0.66818,5.25868 0.58179,7.72034 -0.058,1.66151 -1.4967,3.34183 -1.77436,5.12734 0,3.4177 2.46261,3.37913 3.60673,5.94312 0.56553,1.26685 0.43291,4.5",0,0,middle,,3,4,0 PL,Poland,"m 327.09537,299.82964 -0.63916,1.68669 0,0 c 0.50623,0.40581 2.48333,1.66342 1.658,-0.0727 -0.21614,-0.45427 -0.59613,-0.87635 -0.85817,-1.31117 -0.0567,-0.0944 -0.10998,-0.19701 -0.16067,-0.30284 l 0,0 z m -0.16768,4.37245 c 0.45172,0.1696 0.91013,0.31688 1.37683,0.43196 2.19803,0.54193 1.86266,3.56561 2.85058,5.30235 l 0.0874,0 c 0.32866,-0.33026 0.087,-1.23465 0.087,-1.66055 -0.44629,-0.37425 -0.90152,-3.33736 -0.90152,-3.96218 0,-0.88463 2.6829,-2.45369 2.00675,-3.35043 -0.69431,0 -4.15823,3.08711 -3.31568,-0.20371 0.28691,-1.12021 2.86269,-1.50594 3.72309,-1.98125 3.55796,-0.88686 7.34417,-0.2767 10.7912,-1.45653 2.22225,-0.7603 3.60641,-3.29142 5.2064,-4.89427 1.16675,-1.16835 1.50466,-0.93213 3.17063,-0.93213 2.1365,0 2.46836,-2.0093 4.21753,-2.30163 0.81609,-0.13644 1.65099,0.27798 2.38515,-0.20402 2.7881,-0.31783 6.87174,-1.52539 9.36591,-0.75744 1.03541,0.31879 3.74541,3.94784 1.36695,2.35997 -0.41283,-0.27543 -2.52478,-2.06987 -2.67588,-2.03927 -0.64395,0.1307 -0.21391,1.00386 0.0287,1.33986 0.41442,0.57413 1.08642,0.95508 1.51263,1.60253 2.00325,3.04153 1.01024,4.08265 5.43912,4.57358 3.0071,0.33345 4.55703,-1.74181 5.91984,-3.95036 l 0,0 5.22138,1.67809 c 2.07689,0.5346 4.24526,1.08192 6.36965,1.31113 1.50817,0.1629 3.04216,0.0727 4.53758,0.23303 4.178,0.4479 7.4057,1.08897 11.63471,0.0287 l 0,0 c 2.56239,0 4.39636,-0.31814 6.80574,0.96146 1.07399,0.57062 1.27419,0.93946 1.8327,1.95192 0.29806,0.54002 0.6398,1.84864 0.6398,2.447 l 0,0 c -1.04243,2.65994 1.0335,5.75279 2.35614,7.95337 2.21046,3.67686 2.23979,6.08337 2.23979,10.31302 0,2.62264 -1.37748,2.90764 -2.79224,4.66127 -0.86327,1.07048 -1.49574,2.29876 -2.23979,3.43746 -0.39848,0.61048 -1.176,1.47088 -0.34907,1.95192 1.52539,0.88686 2.71223,1.47502 2.96694,3.32111 0.0886,0.64235 -0.0255,1.35228 0.0873,1.98125 0.10775,0.59676 0.37808,1.09279 0.37808,1.71889 l 0.4361,2.12661 0,0 -0.0874,0.93213 c -0.43068,1.73005 0.42494,2.2841 1.4543,3.52513 0.83649,1.00895 -0.25343,2.61404 0.37808,3.75816 0.46574,0.8435 0.95508,0.54257 1.27992,1.60221 0.41315,1.34623 0.53205,2.26688 1.91973,2.94239 2.04532,0.9962 -1.21872,2.12884 -0.75616,2.91338 0.44821,0.75998 1.42592,1.07366 1.4543,2.06827 -0.22028,3.28508 -2.90063,2.78937 -4.5666,4.98198 l -5.55579,7.31229 c -0.77146,1.01533 -3.1123,2.75526 -3.1123,4.10755 0,1.50116 0.39529,3.96154 0.8145,5.3897 0.32293,1.1014 1.21871,1.99623 1.0182,3.20443 l -3.78143,0.78676 0,0 c -2.13236,-0.95157 -4.26917,-1.38512 -5.93355,-3.1174 -2.1094,-2.19611 -5.22999,-3.18371 -8.23167,-2.41799 -1.39819,0.35672 -4.36035,2.50884 -5.5848,0.99047 -2.27995,-2.56813 -2.99084,-0.18298 -5.09004,1.01979 -1.48937,0.85307 -5.07889,-0.23016 -5.41011,-2.06859 -0.24195,-1.34209 -1.34463,-2.20153 -2.29812,-3.11708 -2.24361,-2.15531 -2.79734,1.22381 -4.07216,2.18495 -0.7552,0.56903 -1.93088,-0.94361 -2.47218,-1.34017 l 0,0 -0.64012,-1.68957 c -0.95189,-0.68538 -1.87796,-2.94844 -2.15244,-4.07853 -0.47754,-1.96659 -2.98765,-0.65415 -4.24653,-1.66055 -0.85754,-0.68507 -0.92671,-2.13332 -2.35614,-1.04881 -0.91587,0.69527 -2.56272,-2.33032 -2.44317,-3.14641 0.11125,-0.76189 0.88367,-1.59775 -0.43642,-1.51486 -1.34974,0.0845 -2.74187,0.41473 -4.13018,0.55341 -1.29778,-0.20371 -2.67493,-1.85693 -3.95581,-1.60222 -1.33124,0.26459 -0.006,2.89521 -0.95986,3.11708 -1.02712,0.23877 -0.47881,0.88113 -1.04721,1.39851 -0.54512,0.49667 -1.93566,-1.47948 -2.12343,-1.83556 -0.35831,-0.67838 -2.38483,-2.7441 -2.38483,-3.00041 0,-0.81035 2.61659,-3.09508 -0.0874,-3.78748 -2.61945,-0.67105 -5.72474,-1.45685 -7.79525,-3.43746 -0.98122,-0.93819 -1.08993,-2.8764 -2.64687,-2.593 -2.43138,0.44311 -2.93665,2.21269 -5.32148,0.0583 l 0,0 c 0.7195,-2.16679 3.13429,-3.51206 3.81012,-5.62274 0.95986,-2.99849 -0.76636,-5.31255 -1.77404,-7.8657 -0.72205,-1.83015 -0.0255,-3.20921 -0.20371,-5.01099 -0.0873,-0.88654 -0.43641,-1.59105 -0.43641,-2.50533 0.2681,-1.71188 0.19796,-1.51965 -0.49444,-2.7967 -0.47371,-0.87315 0.36342,-1.46705 0.72715,-2.15595 0.98823,-1.87222 -2.15371,-3.4942 -3.37402,-4.66127 -2.2315,-2.13459 -1.31085,-1.271 0.26172,-3.14609 0.5735,-0.68348 1.05072,-1.46737 1.27992,-2.33064 0.51867,-1.95384 -0.45108,-4.36927 -0.78548,-6.32183 l -0.41825,-2.96662 0,0 z",374.94434,333.08206,middle,,2,4,3 PT,Portugal,"m 40.713755,433.57277 1.753956,-0.69559 c 1.66119,-0.60506 1.124993,-1.21489 3.170319,-0.61175 1.344954,0.39625 2.137454,-0.34971 3.40335,-0.34971 0.08002,0.32548 -0.76094,1.12722 -0.98919,1.45685 -0.715992,1.03509 -0.187446,2.94398 0.727149,3.64148 1.341448,1.02362 1.917174,-0.0988 3.286994,-0.0287 0.943923,0.0478 3.042167,2.06318 3.752101,2.70936 1.469281,1.33826 3.915957,-1.14922 5.206718,0.46606 1.414769,0.28276 2.378138,1.35994 3.868458,1.66055 0.215818,0.75967 -0.11285,1.11129 -0.291051,1.86426 -0.181388,0.7654 -0.249927,2.59236 0.262042,3.23375 0.680925,0.85371 2.181447,1.13902 2.181447,2.33064 -0.460964,1.20087 -1.236887,2.72848 -2.559845,3.23376 -1.192575,0.45586 -2.166783,0.86614 -3.461051,1.07813 -1.247406,0.20402 -3.135889,0.6602 -3.607054,1.95192 -0.20211,0.55341 0.03092,1.34081 0,1.95161 -0.04304,0.85402 -0.373935,1.82568 -0.523445,2.68034 -0.243552,1.11766 -0.859126,2.85281 -1.774358,3.55414 -0.881441,0.67582 -1.930563,0.19095 -2.559526,0.69941 -0.887498,0.71695 0.03188,3.21081 -0.203704,4.36991 -0.232395,1.14412 -1.76352,3.0071 -2.559526,3.90352 l -0.903437,1.08547 -3.592072,-0.86264 c -0.119863,0.54258 -0.497305,0.83458 -0.391149,1.49606 0.166087,1.03542 -0.344926,1.87159 0,2.94239 0.444068,1.3797 0.307309,2.34658 0.232713,3.78749 0.101692,1.29936 2.07561,2.56558 1.221585,3.29177 l -2.501507,2.12694 c -1.44601,1.22955 -2.153075,2.37973 -2.559527,4.22422 -0.289775,1.31658 -0.610792,2.83272 -0.610792,4.19489 0,2.45465 3.596534,1.81963 2.472498,3.40877 -0.867415,1.22701 -1.442184,1.27929 -2.908915,1.07782 -1.631861,-0.22411 -2.066684,0.72778 -2.879586,1.83524 -0.581146,1.58245 -2.392164,2.11355 -3.053962,3.67081 -0.647453,1.52348 -1.047209,4.19075 -1.047209,5.85577 l 0,0 c -1.825364,0.52472 -3.338,1.89358 -5.352085,1.89358 -1.384802,0 -3.080102,-2.34403 -4.333884,-3.14641 -0.956993,-0.6127 -2.010259,-0.50846 -2.966934,-1.28183 -1.110009,-0.89675 -1.866487,-1.58182 -3.374022,-1.45653 -0.827247,0.0688 -3.972701,0.7077 -4.653944,0.32038 0,-0.84606 2.811366,-2.87832 2.908914,-4.54461 1.471513,-1.84895 4.392541,-6.74772 3.694083,-9.14785 -0.420797,-1.44506 0.589752,-1.06538 1.192256,-1.98094 0.334087,-0.50718 0.906307,-0.90917 1.279923,-1.42752 1.121486,-1.55439 0.449487,-3.15501 0.843505,-4.74862 0.207848,0 0.285951,0.42877 0.407408,0.61175 0.15206,0.22825 0.523126,0.36756 0.756158,0.49539 0.408683,0.22474 1.589144,0.8094 2.036081,0.6991 0,-0.72428 -0.700371,-0.66786 -0.465426,-1.63155 0.31751,-1.30096 -0.767954,-0.0873 -1.279923,-0.0873 -0.800151,0 -0.477859,-0.89993 -1.250594,-0.99047 -0.765084,0 -1.487133,0.55054 -2.239785,0.6991 -0.868689,0.17119 -1.334753,-0.32038 -2.094099,-0.58274 -1.646526,-0.56967 -2.324263,-0.29201 -0.872834,-1.7479 0.440242,-0.4412 0.611111,-1.23689 0.611111,-1.83525 0,-1.08418 1.598708,-0.55086 2.239466,-0.46606 0.539703,0.0717 1.216803,-0.0536 1.570654,-0.46638 1.900916,-2.21907 -0.861038,-0.90312 -2.181447,-0.90312 -3.228337,0 -3.508549,-1.26972 -1.890714,-3.69982 0.688576,-1.03478 1.944908,-1.44219 2.123428,-2.76738 0.19414,-0.27256 0.329942,-0.65669 0.552773,-0.90311 0.08065,-0.0896 0.185533,-0.16482 0.261723,-0.26236 0.345563,-0.44312 0.209123,-1.125 -0.02901,-1.60222 -0.214223,-0.43004 -0.212311,-0.0128 0.174376,-0.67009 1.152727,-0.0944 2.26975,-1.19703 3.141309,-1.86457 1.136469,-0.87092 0.739581,-1.95607 1.599983,-2.88405 0.614617,-0.66243 1.247406,-1.01947 1.657682,-1.89358 l 4.79963,-7.07927 c 1.025532,-1.51263 4.420913,-3.93349 4.420913,-5.65174 l -0.02901,-0.0287 c -0.319741,0 -1.599664,0.71663 -1.599664,0.61175 0,-0.28436 0.359909,-1.17887 0.581783,-1.25251 0.09627,-0.6857 1.247725,-2.84579 1.454298,-3.69982 l 1.39596,-5.76841 c 0.149192,-0.70898 1.218397,-2.87226 1.076219,-3.37945 -0.420796,-1.50147 -0.118269,-1.47151 1.192575,-2.44699 0.128152,-0.0953 0.136122,-0.18107 0.07874,-0.26587 l 0,0 z",42.822109,463.96613,middle,,3,0,6 RO,Romania,"m 414.74854,398.14936 c 2.31438,-0.43419 3.67464,-0.75202 5.93387,0.17469 2.02014,0.82821 3.73743,-0.32835 5.70083,0.0287 1.40393,0.25599 2.9121,0.69081 4.33421,0.32038 2.16997,-0.56489 3.3211,-0.76285 4.45024,1.34017 1.05836,1.97042 3.35776,1.42625 4.79931,0.20371 0.6822,-0.074 2.80467,-1.16389 3.54839,-1.51487 2.27422,-1.07303 3.84838,-0.31815 5.26474,-2.7967 0.409,-0.71536 0.41347,-2.74889 1.658,-2.12662 1.52029,0.75967 3.65105,0.13995 4.91567,-0.93244 1.56492,-1.32711 2.75717,-0.16896 4.50858,-0.49508 l 0,0 c 0.31305,0.5617 0.61812,2.27167 0.98887,2.47633 0.47499,0.26268 2.15244,0.87538 2.15244,1.54387 0,0.3513 1.16548,3.68898 1.39628,3.93317 1.11989,1.1862 2.03066,1.34209 2.67588,3.02974 0.94137,2.46325 1.90124,3.63957 4.10117,5.09801 2.43903,1.61656 1.8904,2.93984 2.82157,5.27303 0.37106,0.83203 1.17153,1.34686 1.13424,2.30163 -0.0335,0.8553 -0.34078,1.51231 0.26172,2.30162 1.22318,1.60286 -0.087,1.93407 -0.52345,3.29178 -0.37297,1.16133 0.45395,1.38799 0.49444,2.33064 0.0287,0.66626 -0.53142,1.31817 -0.61079,2.0686 -0.15334,1.45206 0.60951,2.24775 1.0182,3.5248 0.29264,0.91364 0.17437,2.26178 0.17437,3.23376 l 1.28024,2.04214 0,0 c 0.16545,-0.01 0.34015,-3.2e-4 0.52313,0.0255 1.28215,0.18745 1.48777,3.16936 3.19965,3.23376 2.71892,0.10265 3.76389,-4.60167 6.16626,-4.28256 1.62676,0.21613 1.19417,0.63151 2.90891,-0.0874 0.92735,-0.3886 2.4996,0.11317 3.28668,0.64076 0.39083,0.26204 0.599,0.66753 0.98887,0.93244 l 0,0 c -0.38031,0.90663 0.0287,3.05715 0.0287,4.13688 0,0.86933 0.0781,2.10016 -0.17437,2.88405 -0.52154,1.62038 -3.12792,1.63951 -4.62494,2.38898 -0.8451,0.4227 -1.59584,2.10206 -2.67588,1.83524 0,-0.68347 1.81102,-1.4747 0.52344,-2.06828 -1.66469,-0.76795 0.24738,-2.30768 -0.98887,-2.44731 -1.14125,-0.12911 -1.61879,0.0159 -0.90152,1.25283 0.61557,1.06314 -1.29459,1.67999 -0.49444,2.35964 1.97519,1.67841 0.28117,1.07399 -0.34907,2.70936 -0.21135,0.54926 0.10392,1.99751 0.93053,1.48586 0.85562,-0.52919 0.81673,-1.40999 1.42529,-2.0686 0.69304,-0.74947 -0.43609,2.08135 -0.43609,2.09761 0,2.2876 -1.76193,0.77879 -2.64688,1.36918 -0.51675,0.34492 -0.0972,1.59966 0,1.98125 0.55724,2.00101 1.86936,5.30522 1.65768,7.37031 l 0,0 c -1.88465,0 -4.20923,0.4632 -6.10824,0.40805 -1.99177,-0.058 -3.05013,-1.80401 -4.85733,-2.01026 -1.40265,-0.16035 -2.8697,-0.11764 -4.27586,-0.23304 -0.50878,-0.46319 -1.32105,-0.71376 -1.94395,-1.00927 -4.57872,0.76572 -9.6694,0.22283 -13.3265,4.21402 -1.27227,1.38863 -2.62743,3.47603 -4.1305,4.57361 -3.23376,2.36156 -3.5111,1.12978 -7.15513,0.5244 -2.74825,-0.4565 -5.56535,-0.27224 -8.34803,-0.40772 -2.88979,-0.14091 -5.24402,0.70515 -8.20234,0.0287 -1.33316,-0.30444 -2.84484,-1.2235 -4.18852,-1.2235 -1.49191,0 -4.46395,2.04437 -5.61381,0.40773 -1.42656,-2.03066 1.87829,-3.28763 1.19258,-4.22423 -0.25471,-0.34779 -0.87889,-0.50208 -1.42529,-0.64075 -0.60314,-0.15334 -1.32168,-0.38733 -1.98763,-0.64108 l 0,0 c -0.34843,-0.13293 -0.68347,-0.27192 -0.9793,-0.40773 -0.48392,-0.22187 -1.50308,-0.67423 -1.83238,-1.0488 -0.72779,-0.82757 0.89961,-2.50438 1.4543,-3.05906 0.35991,-0.35991 1.54292,-0.93149 1.25059,-1.45653 -0.18362,-0.32994 -0.81226,-0.69527 -1.16325,-0.84478 -1.47342,-0.62865 -3.28061,-1.52762 -4.50857,-0.43706 -0.7568,0.672 -0.20243,3.26564 -1.4543,3.14641 -0.8467,-0.0806 -2.21397,-2.08326 -3.46137,-2.50533 -0.94584,-0.32006 -2.00707,0.11636 -2.96694,-0.37872 -1.04689,-0.54002 -2.00834,-1.75746 -3.34501,-1.54419 l -0.14536,-1.83525 c 0,-1.53463 -0.25695,-2.73836 -1.01789,-4.04953 -0.72778,-1.25378 -2.62105,-1.93598 -3.57772,-3.17542 -0.64458,-0.83457 -0.89228,-1.72462 -1.48363,-2.53466 -1.27259,-1.70072 -1.38066,-3.69759 -1.89039,-5.68075 -0.45619,-1.77595 -1.48395,-3.27902 -2.53084,-4.77795 l 0,0 c 1.19991,-1.19991 3.47444,-1.57225 5.03202,-2.12662 2.08518,-0.74245 3.28604,-3.94305 3.9268,-5.88477 0.51803,-1.57097 1.69307,-2.51936 2.2978,-3.87483 2.53307,-2.29271 6.47485,-5.90518 5.17771,-9.67195 -0.44056,-1.27896 0.16258,-0.9895 1.16325,-1.28183 1.27865,-0.3733 1.63282,-2.91689 2.09442,-3.96218 0.50687,-1.14699 2.12693,-2.73837 3.46137,-2.73837 1.80878,0 4.04283,0.86582 4.04283,-2.03927 l 0,0 z",435.40967,435.20856,middle,,4,6,6 RS,Serbia,"m 387.55298,429.7314 c 1.04689,1.49893 2.07465,3.002 2.53083,4.77796 0.50974,1.98316 0.61781,3.98003 1.8904,5.68075 0.59135,0.81003 0.83904,1.70008 1.48363,2.53466 0.95667,1.23944 2.84993,1.92164 3.57772,3.17542 0.76094,1.31116 1.01788,2.51489 1.01788,4.04953 l 0.14537,1.83524 c 1.33666,-0.21327 2.29812,1.00418 3.34501,1.5442 0.95986,0.49507 2.0211,0.0587 2.96693,0.37871 1.24741,0.42208 2.61468,2.42468 3.46137,2.50534 1.25187,0.11922 0.69751,-2.47441 1.4543,-3.14641 1.22796,-1.09057 3.03516,-0.19159 4.50858,0.43705 0.35098,0.14951 0.97963,0.51484 1.16325,0.84478 0.29232,0.52504 -0.89069,1.09662 -1.2506,1.45653 -0.55468,0.55469 -2.18208,2.2315 -1.45429,3.05906 0.3293,0.37458 1.34846,0.82693 1.83237,1.04881 0.29584,0.1358 0.63088,0.27479 0.97931,0.40772 l 0,0 -2.37559,3.96218 c -1.23242,1.79636 -1.48681,2.40269 -0.93053,4.71962 0.42462,1.76989 0.89579,3.18658 2.0941,4.57361 1.05454,1.21999 4.58285,2.67971 4.21753,4.60326 -0.4259,2.24297 -5.06295,2.06413 -6.31163,4.04921 -0.0159,0.70674 -0.17469,1.35962 -0.17469,2.0976 0,1.0147 0.37776,2.00389 0.4074,3.00073 0.0287,0.97261 -0.23271,2.0619 -0.0583,3.00072 l -0.55277,2.30131 0,0 c -0.0615,-0.37043 -0.96624,-1.38257 -1.42497,-1.28183 -0.79824,0.17501 -1.34559,1.22445 -2.18176,1.0488 -0.48934,-0.10297 -0.63885,-0.42717 -1.01788,-0.69909 -0.49954,-0.35896 -1.41445,0.68156 -1.65801,1.01979 -0.75743,1.05263 -2.45815,-0.0701 -3.37402,-0.23335 l 0,0 2.15244,-5.15635 c 0.72396,-1.73451 -0.81386,-0.65128 -1.658,-1.19449 -0.42176,-0.27129 -0.71408,-0.61749 -1.22159,-0.78644 -1.95734,-0.65224 0.19287,-2.17284 -1.94873,-2.50565 -1.33954,-0.20785 -1.88434,-3.03325 -2.82157,-3.55414 -0.91077,-0.50591 -2.29812,-0.21614 -2.87959,-1.16516 -0.18011,-0.29456 -0.3344,-1.43453 -0.55277,-1.5442 -0.53715,-0.26937 -2.91306,1.0708 -2.38515,2.12662 1.081,2.16264 -0.39721,1.85278 -1.42497,3.40877 -0.55341,0.83809 0.32165,1.04785 -1.10555,1.7479 l 0,0 c -0.57763,-0.58019 -0.43004,-1.38353 -1.33794,-1.86458 -0.81991,-0.43482 -2.89138,-0.6551 -3.34501,-1.2525 -0.41346,-0.54385 -0.409,-1.28184 -1.2796,-1.28184 -1.49766,0 -1.1285,-1.39883 -2.21078,-1.45685 -1.32742,-0.0714 -2.19579,-1.16101 -2.58853,-2.24329 -0.63184,-1.74248 -3.07501,-1.19002 -3.34502,-3.29177 l 0,0 2.44317,-0.93245 c 1.52985,-1.28534 -0.65893,-2.91561 -1.25059,-3.90384 -1.2184,-2.03576 -0.14824,-1.48841 1.57065,-1.83525 2.39185,-0.48232 -1.6513,-3.23854 -2.32713,-4.0202 -1.98284,-2.29461 -1.93758,-4.0253 -0.4361,-6.75888 l 1.30893,-2.91338 0.0287,-1.92259 0,0 -0.14537,-1.92291 c -0.0663,-0.59263 -0.24292,-1.17377 -0.52376,-1.68957 -0.23081,-0.42462 -0.0819,-1.02935 0.11635,-1.42752 0.17533,-0.3513 0.21773,-0.0873 0.23271,-0.61174 -2.2978,-0.74501 -2.36698,-1.80847 -2.76323,-3.87484 -0.22665,-1.18237 -1.0472,-1.08036 -1.80336,-1.77691 -0.61016,-0.56233 -1.13233,-3.15246 -1.04721,-3.93317 0.0653,-0.60218 0.0797,-1.16994 0.0918,-1.71825 l 0.045,-0.0127 c 1.9975,-0.82566 5.7308,-0.5193 6.52425,-2.78555 0.92193,-2.63412 4.50412,-2.42978 6.57367,-1.45653 l 3.14131,0.61175 1.86139,0.14569 0,0 z",390.29935,454.66956,middle,,3,5,7 RU,Russia,"m 394.14545,279.89157 1.37684,1.4068 c 0.65415,0.53843 0.93372,1.16261 1.77436,1.51486 0.64139,0.26906 1.4951,0.17661 2.12311,0.4954 1.7412,0.88335 2.35199,1.01278 4.3342,0.72842 2.27007,-0.32548 4.2459,-0.2614 4.71196,2.447 0.36756,2.13426 -0.80079,4.27427 -1.30893,6.32182 l 0.17501,2.56364 0,0 c -4.229,1.05996 -7.4567,0.41889 -11.6347,-0.0287 -1.49542,-0.16035 -3.02941,-0.0701 -4.53759,-0.23303 -2.12438,-0.22921 -4.29276,-0.77653 -6.36964,-1.31113 l -5.22139,-1.67809 0,0 c 0.51261,-0.83107 0.99908,-1.68191 1.52667,-2.42946 0.53045,-0.75233 0.32803,-1.84003 0.66881,-2.68034 0.68092,-2.39089 1.57767,-1.10459 3.28699,-1.80624 2.19229,-0.90025 1.14731,-0.77242 2.58854,0.75743 0.41856,0.44407 1.23306,-0.24546 1.83237,-0.0287 5.53316,1.99847 2.32235,-2.95131 3.51971,-4.89431 0.42558,-0.69112 1.14061,-0.43386 1.15368,-1.14475 l 0,0 z m 95.86604,-169.72792 c -0.2375,-0.29488 -0.35545,-0.70324 -0.59645,-1.01979 -0.21008,-0.27543 -0.93117,-1.17313 -0.37808,-1.35484 0.59677,-0.19637 1.15145,-1.0284 1.81803,-0.93213 0.0223,0.0405 0.0191,0.0351 0.058,0.0583 0,0.38318 -0.15907,0.77273 -0.10169,1.16516 0.10839,0.74245 1.56906,0.56552 1.10523,1.23816 -0.25535,0.37011 -0.54991,0.57445 -0.62514,1.0488 -0.0775,0.48615 -0.58019,0.52122 -0.98919,0.53907 l -0.29073,-0.74277 z M 430.51374,55.344709 c 0.067,0.56074 1.15655,0.74818 1.658,1.10714 0.22028,1.78647 -0.53428,3.64786 0.55246,5.36037 1.37619,2.16901 3.5892,3.65583 5.38109,5.44772 0.37936,1.71092 2.12056,4.03646 3.31601,5.30235 2.19642,2.326505 0.0539,6.346065 -0.87252,8.943525 -0.52823,1.48044 -1.70263,2.99754 -1.36727,4.69061 0.43291,2.18367 2.36857,3.372742 3.49038,5.156352 1.31053,3.15151 4.94276,5.79009 5.38109,9.293544 0.20976,1.67617 -10e-4,3.17669 -0.46542,4.80664 -0.5311,1.86649 -0.22092,2.34626 0.69814,3.93317 0.2139,0.95445 0.41474,1.71443 0.52376,2.68003 0.14824,1.31435 0.48455,2.4097 1.04689,3.61247 0.58529,1.25283 2.61659,1.88243 2.70521,3.32111 l 0.0874,1.22381 c 0.0414,2.07147 1.54643,3.21431 2.32681,4.98166 0.81067,1.83684 0.48328,4.53153 0.11636,6.46751 -1.12117,2.73964 0.409,3.18849 1.83238,4.95233 0.49029,0.60792 0.85402,1.36249 1.30893,2.01026 0.65064,0.92575 2.66058,0.70643 3.43236,1.71889 l 2.06509,2.70935 c 2.65388,3.48178 5.00939,4.07057 2.90859,8.97285 -2.13203,3.20347 -3.05778,7.07066 -5.23541,10.34203 -2.38929,3.58888 -5.86086,6.74804 -7.8826,10.48803 -1.28853,1.53846 -2.23691,3.36255 -3.60673,4.95233 -1.75778,2.04054 -6.82041,9.96108 -5.56727,12.96021 l 0,0 c 0.69113,-0.22506 1.89199,1.34145 2.97841,0.90694 0.73098,-0.29264 0.73449,-1.46131 0.93086,-2.06827 0.37935,-1.17377 1.51168,-2.03927 1.83237,-3.05907 0.52377,-0.24068 2.88023,-2.32043 2.2688,0.0287 -0.31974,1.22988 -0.23782,1.95448 0.11635,3.11709 0.066,0.21613 0.59039,1.83173 -0.058,1.66055 -0.51707,-0.13676 -0.76381,-1.16708 -1.16357,-1.45653 -0.28691,-0.20817 -1.86585,0.0928 -1.57065,0.26204 l 1.97774,1.13615 c 0.62705,0.35991 0.12177,2.63858 1.16356,2.21428 2.35264,-0.95795 2.09793,1.67075 4.07217,1.92259 1.081,0.13804 2.13107,-0.40772 3.22865,-0.40772 1.2694,0 1.91208,0.50846 2.82157,1.25282 0.2426,0.85339 0.8671,1.61943 1.77404,1.77691 0.64618,0.11222 1.23115,0.67455 1.80337,0.81577 l 0.0287,0.0287 c 0,0.54608 -3.40399,0.76987 -3.89779,0.69942 -1.02776,-0.14728 -1.78233,-0.55373 -2.87959,-0.55373 -1.36312,0 -3.25639,0.36246 -2.96693,2.09761 0.0784,0.4702 0.54034,1.36057 -0.0287,1.68988 -0.63629,0.36756 -2.15339,-0.12178 -2.82125,-0.23335 -0.63151,0.15811 -1.42529,-0.51165 -2.06541,0.0583 -0.54321,0.48328 0.11508,2.44732 -0.90152,2.44732 -0.69304,0 -0.65925,-1.50116 -0.75616,-1.89359 -4.64821,0 -0.89642,3.27903 -1.61879,4.91822 l 0,0 1.09503,1.14125 c 1.40329,1.44984 -0.63024,1.5391 -1.48331,2.30163 -0.99876,0.89228 -0.19797,1.40871 -0.55278,2.30131 -0.2971,0.74851 -0.97452,1.24071 -1.51231,1.80624 -2.36156,2.48238 -0.0976,4.76584 0.34875,7.31229 0.18011,0.78102 -0.34875,1.51519 -0.34875,2.35997 0,1.54451 0.24227,2.40714 0.58146,3.78717 0.21741,0.8859 0.8993,1.39245 1.36727,2.12661 0.51293,0.80525 0.003,2.79288 -0.66913,3.46679 -1.06187,1.06379 -2.24552,1.71188 -2.73422,3.17542 l -0.14536,1.19449 0,0 0.2037,0.26236 c 1.05868,0.14919 3.3074,1.8735 3.98481,2.65101 0.9825,1.1285 0.72715,2.30769 0.72715,3.69983 0,5.24465 5.87553,6.47133 5.87553,11.1578 l 0.14537,4.83597 0,0 c 1.06538,-0.0434 1.93726,0.32994 2.85058,0.78676 0.74117,0.37106 1.40807,-0.43036 1.97806,-0.14569 0.75998,0.38 1.12882,1.03988 1.77436,1.45653 0.85561,0.55278 1.65577,-0.4651 2.47217,-0.5244 3.88121,-0.2834 2.40078,5.78372 5.32308,3.52513 2.34307,-1.81134 4.38361,-2.91657 7.35884,-3.20475 0.44056,-0.0424 3.05332,1.46832 3.81043,1.77723 2.39153,0.97676 2.06765,5.05306 2.00708,7.05025 -0.0443,1.45366 0.48264,2.52159 0.69782,3.87452 0.15907,0.99875 -0.72269,3.03547 -0.98887,4.10786 1.05358,1.75746 2.7339,0.86997 3.83944,2.03927 1.76448,1.86681 2.46262,3.73871 3.86846,5.73909 1.50467,2.1416 3.4636,1.2745 4.82864,2.70935 0.82151,0.86391 0.34365,2.73008 0.6398,3.90382 0.18139,0.71822 2.11769,0.13452 2.67589,0.2037 0.97835,0.12114 3.52831,1.09917 2.87958,2.44731 -0.98951,2.05744 0.0991,1.89327 1.54165,2.79671 1.41477,1.20245 0.67901,1.33507 -0.34907,2.2723 -1.51901,1.38416 -1.34336,3.86654 -3.83945,3.93317 -1.43167,0.0383 -3.3804,-1.8276 -4.45024,-0.75776 0,1.28088 -0.75616,2.33383 -0.75616,3.61248 0,2.25062 3.53979,2.97299 4.13018,5.27302 0.56489,2.20185 0.44024,4.45311 0.95986,6.67154 l 0.93085,2.12662 0,0 c 0.96369,-0.0469 5.53348,0.39688 5.96193,-0.32038 0.80174,-1.34113 0.9165,-3.76645 2.26879,-4.71962 1.02617,-0.723 2.62551,-0.14568 3.83945,-0.61175 2.50406,-0.96082 5.42413,-1.13551 8.08598,-1.39819 2.40779,-0.23781 2.39854,0.96305 3.22866,2.76738 0.78708,1.71155 5.54208,2.89775 2.61786,5.24401 -1.25091,1.00354 0.18362,1.63633 0.78517,2.50533 0.4581,0.66148 0.0921,2.64401 0.14569,3.49612 1.69816,1.03892 2.89648,0.6414 4.62461,1.42752 1.23625,0.56202 2.78013,-1.01852 4.01383,-1.3695 0.91427,-0.25981 4.8739,1.58755 4.7703,2.50565 -0.22347,1.97583 1.3966,2.18846 2.0941,3.75816 0.45012,1.01342 0.0127,2.52255 0.72715,3.35011 0.62227,0.7195 3.2261,3.52258 4.21784,2.85504 2.4792,-1.66788 4.05941,-0.124 6.22428,-0.99046 3.21176,0.74627 3.39602,-2.11164 5.90454,-2.33064 1.67809,-0.14664 2.08709,-1.60572 2.82157,-2.70936 1.09853,-1.64971 1.19481,-0.94774 2.06509,0.23304 1.09439,1.48426 4.50093,3.57294 6.16626,4.57393 0.42175,0.25375 1.43294,0.86614 1.94874,0.69909 0.70579,-0.22889 -0.0507,-3.09731 2.06509,-1.63154 1.46449,1.01501 4.69761,3.30102 6.45731,2.94271 1.1387,-0.23208 1.69339,-1.30033 2.61786,-1.48586 1.17759,-0.23654 0.77497,1.25378 1.71602,1.77691 1.5901,0.63087 3.10688,0.78931 4.68296,1.39851 1.60986,0.62195 2.01472,-0.67615 3.22865,-1.16548 0.6889,-0.27798 2.46995,0.0319 1.57066,0.99078 -0.83841,0.89419 1.76989,2.37814 0.46542,4.1949 -0.90662,1.26207 -5.52741,4.57393 -1.25091,4.57393 1.30606,0 2.42372,1.05103 1.22159,2.18495 -1.008,0.9503 -3.11103,0.73767 -4.33389,1.68988 0.32963,0.81354 -0.29488,2.498 0.49476,3.05874 0.6755,0.48009 2.26688,-0.20402 3.17031,-0.20402 1.35675,0 2.81902,2.11482 2.99595,3.32142 0.32484,2.21556 0.14281,6.83061 -1.04721,8.68148 -0.49603,0.77114 -3.87675,0.84637 -4.88666,1.01947 -1.43485,0.24579 -3.77027,0.36756 -4.21753,2.03927 0.17693,0.59645 -0.41346,2.0482 -1.0759,2.30163 -1.06888,0.40869 -2.37303,0.44216 -3.08329,1.48586 -0.79696,1.17185 -0.99397,2.54327 -0.49443,3.78717 0.53301,1.32742 1.37938,3.22132 0.90343,4.77763 l 0,0 c 0.4106,-0.21741 2.2213,-1.00513 2.44317,-1.25251 0.0191,-0.0223 1.19258,-2.07752 1.19258,-1.25282 0,0.30826 -0.83044,1.85628 0.11636,1.63154 1.71825,-0.40773 2.61882,-1.39915 3.7521,-2.53466 1.72335,-1.72622 1.35292,-0.72141 1.62899,0.67009 0.15461,0.77911 1.23689,1.68191 1.27992,2.44731 0.0128,0.24546 -1.73196,0.80302 -2.09442,1.04848 -1.4068,0.95381 -1.89773,1.24582 -3.57772,1.68988 -0.41602,0.10999 -1.01597,1.78935 -0.98887,2.2433 0.0456,0.75456 1.43676,0.21549 1.62899,1.01947 0.23335,0.97421 -1.38257,1.943 -2.09442,2.21428 -1.7428,0.66499 -2.08358,-0.21422 -2.79224,-1.63154 -0.35035,0 -1.06187,1.23147 -1.51264,1.45653 -1.59583,0.79633 -2.14415,0.14568 -3.63574,0.14568 -1.29523,0 1.24071,2.62679 1.54164,3.35044 0.53078,1.26015 2.05712,2.41734 2.99595,0.78644 0.53524,-0.92958 2.32298,0.11126 2.9376,0.58274 1.01087,0.77497 1.77564,1.23051 2.90892,1.77723 1.93311,0.93212 2.35295,2.77885 -0.26204,1.57288 -0.97166,-0.44821 -2.49641,-2.14733 -2.15244,-0.0287 0.10615,0.65287 -0.38414,2.83113 0.14568,3.00073 1.66151,0.53141 1.41413,-0.32102 1.13424,1.36918 -0.073,0.44279 0.11636,0.87921 0.11636,1.31084 0,0.56648 -0.49412,0.0944 -0.58179,-0.2037 -0.26491,-0.90057 -0.12687,-1.36313 -1.16356,-1.19449 -0.78198,0.12688 -1.37014,-0.38892 -1.59967,-1.10714 -0.36692,-1.14922 1.04211,-1.30574 0.63981,-2.30131 -0.38,-0.94137 -1.3016,-0.88941 -1.54133,0.0874 -0.20657,0.84032 -0.58306,1.46322 -0.61079,2.38897 -0.044,1.47184 -0.58816,2.24585 -1.48363,3.29178 -0.44056,0.5142 0.0328,3.69249 -0.14536,4.63227 -0.0992,0.4192 -0.56712,2.42372 -0.87252,2.65101 -0.88622,0.65861 -0.81163,-0.30029 -0.75648,1.10715 0.0619,1.56969 -1.83237,2.12374 -1.83237,0.32037 0,-1.14635 0.27893,-1.19448 -0.90153,-1.19448 -1.6937,0 -1.70964,-0.42973 -2.79256,0.78644 -0.18649,0.20912 -1.79699,1.17217 -1.25059,1.5732 0.68602,0.50305 1.76575,-0.7281 2.38515,-0.7281 0,1.16835 -1.33252,2.06828 -2.50151,2.06828 -1.03732,0 0.56138,2.26943 1.01788,2.593 1.06475,0.7552 1.93248,-1.28184 2.85058,-1.28184 1.77468,0 4.62047,0.0255 1.33794,1.13615 -1.44951,0.49093 0.21168,0.64618 0.66913,0.81545 1.71411,0.63534 1.58596,1.90124 3.05396,2.82603 0.88304,0.5566 2.73136,1.34018 3.78143,1.34018 0.53588,0 1.52539,-1.38959 1.71602,-1.28184 0.99079,0.55915 0.77019,1.49702 2.64688,1.19449 2.31597,-0.37298 1.32296,1.5426 2.85057,1.63122 l 7.44619,2.12694 c 1.54738,0.44183 2.51139,1.89326 3.75242,2.85472 1.81867,1.40967 4.82577,1.39405 6.13725,3.49612 0.54576,0.87506 2.35327,1.86393 4.09384,2.6032 l 0,0 1.28725,-2.71988 c 1.46705,-1.4696 3.32621,-1.59488 5.14838,-2.18495 1.50021,-0.48615 3.09955,-1.04817 4.71197,-0.72811 1.66469,0.33058 1.31818,0.85148 3.08329,0 1.50594,-0.72619 3.5146,0.8655 4.71196,-0.55373 1.56301,-1.85342 2.24329,-1.60157 4.59561,-2.00994 3.05237,0.55309 5.88063,-0.94615 8.9008,-1.13615 0.98505,-0.0618 1.66597,0.70356 2.47218,1.19417 2.09601,1.27546 11.77273,1.17154 12.07112,2.88437 0.49858,2.86365 3.48113,0.9028 4.74129,0 1.44314,-1.03414 1.81899,-3.22164 3.22834,-4.16621 2.21364,-1.64269 0.58337,-0.58975 2.70521,0.0877 1.52889,0.48774 2.54709,-0.58274 3.98481,-0.58274 0.94871,0 2.03608,0.61207 3.1123,0.6991 1.65928,0.13389 4.59497,0.0791 5.49745,1.83524 0.5209,1.0131 -0.0223,2.22034 0.49444,3.08808 1.24262,2.07879 3.65296,-0.55692 5.46844,1.01979 1.68063,1.45908 3.73457,0.35162 5.73016,-0.14569 l 2.38515,0.84479 0,0 c 1.59265,0.38891 2.23819,0.72842 4.04284,0.72842 3.67368,0 8.0506,6.57558 11.98377,3.3211 1.68,-1.39022 1.20118,-4.01063 3.25798,-4.92331 2.13076,-0.94552 3.10975,-3.78112 3.10975,-6.1889 l 0,0 c -1.35675,-0.80685 -2.83304,-1.36568 -3.95325,-2.58025 -1.64876,-1.78838 -4.0932,-3.00774 -5.52678,-4.92332 -2.82189,-0.91363 -2.63667,-2.04947 -4.3919,-4.07853 -1.16963,-1.35261 -3.22962,-0.81514 -4.33389,-1.92292 -0.91523,-0.91778 -1.48362,-6.53796 -1.48362,-8.04071 0,-1.66406 0.49029,-3.99183 -0.26173,-5.50606 -0.8961,-1.80528 -1.32487,2.75367 -1.33794,3.17542 -0.0351,1.12914 -0.42271,8.09395 -1.04721,3.20475 -0.17023,-1.33189 0.0873,-2.97682 0.0873,-4.36991 0,-1.32487 -2.16997,-2.68098 -3.08329,-3.52513 -0.76509,-0.43801 -1.49702,-1.68956 -2.32681,-1.68956 -1.1183,0 -0.85817,-0.0386 -1.8327,-0.64108 -0.40964,-0.25343 -2.74506,0.28309 -3.66475,-0.0583 -0.73608,-0.27352 -0.78677,-0.20594 -0.34907,-1.01948 0.56648,-1.05358 0.29073,-2.39599 0.29073,-3.55413 0,-1.14699 0.58656,-1.38863 1.25091,-2.09761 0.46893,-0.50018 0.22602,-1.03956 0.34907,-1.63154 0.21008,-1.00832 1.15719,-1.71571 1.36695,-2.82572 0.25949,-1.37428 0.40709,-2.72593 0.40709,-4.13687 -0.52759,-2.12343 -0.24801,-4.14453 -0.0287,-6.29282 0.0695,-0.68156 0.40581,-1.16197 0.64012,-1.77691 0.31018,-0.81513 -0.42685,-1.48904 -0.26204,-2.15594 0.87506,0 2.91625,3.74987 3.316,1.01947 0.19064,-1.30128 -0.40964,-2.49672 1.54165,-2.7967 1.28725,-0.19765 1.59169,-0.36692 1.54164,-1.7479 -0.0287,-0.78549 -0.27957,-1.48618 0.34907,-2.12661 0.68539,-0.69846 0.37585,-2.49067 1.30893,-1.89359 1.56237,1.00035 1.47184,-0.35544 1.57066,-1.86457 -0.22889,-0.14824 -1.84959,-1.51487 -1.16357,-1.51487 2.06541,0 1.72304,-0.3191 3.31601,-1.39851 1.37651,-0.93308 0.818,-0.77592 0.40708,-1.92259 -0.19828,-0.5531 2.06382,-0.27639 1.59967,-2.12662 -0.16832,-0.6704 -2.58854,-0.0896 -2.58854,-1.5732 1.87318,0 2.3351,0.70005 3.25767,-1.22382 0.22283,-0.46415 0.49443,-0.75329 0.79505,-0.94647 l 0,0 -1.46418,-1.32583 c -3.43746,0.25343 -3.54266,0.19988 -6.63169,2.18495 -1.22796,0.78931 -4.07471,2.26784 -5.35208,0.99047 0,-1.29905 3.64467,-0.82119 2.09442,-3.40845 -0.44822,-0.74787 -2.50056,-1.15624 -3.34502,-2.12662 l -4.36289,-5.01098 c -0.84064,-0.9656 -5.9887,-2.07689 -7.21379,-1.9226 -1.21585,2.44222 -4.11137,0.72269 -6.07892,-0.69909 -1.25123,-0.90376 0.0685,-2.6558 -0.2037,-3.87484 -0.3768,-1.68828 -2.74442,-1.76033 -4.18852,-2.30131 -0.97739,0.0746 -1.83237,-0.23239 -2.79224,-0.26236 -1.43325,-0.0446 -3.15725,0.91587 -4.53758,1.42752 -1.14253,0.42335 -1.01693,0.70643 -1.68702,-0.26204 -0.8129,-1.17536 -1.395,-3.89523 -0.95986,-5.27302 0.577,-1.82824 1.30862,-3.48911 1.68701,-5.3897 0.13389,-1.41445 -1.63345,-2.75399 -1.97806,-4.13688 -0.43418,-1.74375 -0.57955,-5.4372 0.52377,-6.93358 1.65003,-2.23723 2.64687,-3.96632 2.64687,-6.87524 -0.16354,-1.81612 -0.002,-4.54492 0.6398,-6.26349 0.43865,-1.17472 3.38518,0.88941 4.33388,1.25251 1.6749,0.64076 3.09318,1.05167 4.62494,2.03927 0.68475,0.44183 5.15667,3.38199 5.78818,1.71889 0.23048,-0.60665 1.77181,-4.99887 1.59998,-5.18568 -1.43772,-1.56014 -5.54877,-3.91978 -6.05022,-6.05947 -0.0287,-0.11667 2.37846,-1.34463 2.85058,-2.0686 0.76636,-1.17408 0.14122,-2.47852 1.25059,-3.96183 1.72017,-1.65098 -3.05555,-3.43012 -2.15244,-5.24401 0.37936,-0.76254 3.62937,-0.83331 4.65395,-1.54388 1.07972,-0.74851 1.20309,-1.66916 1.71602,-2.79702 0.73863,-1.62485 2.65867,-2.72115 3.54872,-4.31157 1.11096,-1.98444 1.1591,-3.53086 1.80336,-5.65174 0.98027,-1.76671 0.53843,-2.29366 2.79224,-2.62201 0.7517,-0.10966 3.88918,-1.67968 4.21785,-1.48554 0.30763,0.18203 0.56457,1.90283 1.2796,2.47601 2.66951,2.13873 3.63001,-1.19003 4.1305,-3.02974 0.70739,-2.59905 0.17342,-1.56938 2.38515,-2.82571 0.61335,-0.34811 2.15882,-1.35771 2.85026,-1.22382 1.04912,0.20339 1.91208,2.05139 3.51971,2.33064 0.56106,0.0975 3.19996,-1.06028 3.86846,-1.36918 1.87892,0.0743 2.72083,-0.69559 3.92679,1.07813 0.75712,1.11416 2.2315,0.87156 3.43236,0.93213 2.2739,0.11476 4.96444,3.1955 5.23541,5.38938 0.31847,0.18203 0.84574,1.04498 1.27992,0.64108 0.58625,-0.54481 0.58019,-2.89266 0.46543,-3.64148 -0.22347,-1.45398 -2.01122,-1.97169 -1.16357,-3.67082 l 1.73228,-0.91969 0,0 0,-256.1802432 -153.91521,0 -1.45462,1.6637402 c -0.56776,1.21139 -1.00003,2.30705 -1.4543,3.55414 -0.37075,1.01884 -0.99397,1.71028 -1.2796,2.85504 -0.37171,1.49128 0.7179,3.814902 0.058,4.952652 -0.56967,0.98281 -1.46387,1.51837 -2.38515,2.0976 -2.00453,1.2608 -0.8789,2.10462 -1.39533,3.87452 -0.27606,1.27386 -0.78006,2.51107 -1.16356,3.75816 -0.27543,0.89515 -0.20371,1.76128 -0.49444,2.622 -0.0736,0.21805 -0.47754,1.61911 -0.55245,1.5442 -0.50974,1.39883 0.28977,2.16232 -1.57066,2.94239 -1.32232,0.55468 -0.50432,1.65385 -1.54164,2.09728 -0.69655,0.29743 -1.94651,-0.13325 -2.4725,0.14569 -0.88272,0.46766 0.76158,1.09885 1.10523,1.16548 1.21648,0.23558 -0.34652,1.46513 2.09442,1.36918 2.48652,-0.0979 -2.01249,1.585 -2.4725,1.7479 -3.51429,1.24422 -0.66881,3.9319 -0.66881,6.14713 0,1.7903 0.37935,1.64589 1.45429,2.94239 0.9503,1.14571 0.93341,3.49038 0.31975,4.80696 -0.14473,0.31018 -1.78998,1.18716 -2.06509,1.19449 -2.6829,1.19098 -5.79074,3.89651 -8.78413,0.90312 -1.46195,-1.46195 -3.02049,-3.72915 -5.32307,-3.72915 -1.89678,0 -3.54968,-1.18397 -5.23541,-0.6991 -1.7377,0.49954 -1.03797,-3.42789 -0.20371,-3.8455 1.31531,-0.65893 -0.63247,-1.92164 -0.0873,-2.30163 1.07813,-0.75233 6.93867,-1.93407 5.20671,-4.66128 -0.43004,-0.67773 -2.10589,-3.02654 -2.6762,-3.37944 -0.49316,-0.30476 -2.53051,-0.29424 -2.53051,-0.99046 0,-1.21362 0.20816,-1.49415 -1.01788,-1.68957 -3.91564,-0.62513 -6.93868,0.87411 -10.58782,1.86458 -1.96499,0.53333 -3.07627,0.0414 -4.91566,0.14568 -1.0673,0.0606 3.75019,3.28126 4.30487,3.55414 3.49803,1.7224 3.52449,5.48757 4.36321,8.68148 0.90759,1.02489 1.25761,1.7412 0.69814,3.00072 -0.67837,1.52666 -0.61111,1.24135 -0.61111,2.88405 0,3.56274 1.04466,0.98919 2.87959,0.55341 1.56619,-0.3717 1.85883,0.71631 2.70521,1.77723 1.29777,1.62612 3.34182,1.79317 2.38515,4.45725 -0.31273,0.87061 0.27129,1.83557 1.22158,1.83557 1.20693,0 -1.40042,1.8566 0.14537,2.44699 0.15844,0.0606 1.71825,0.66722 0.58178,0.72843 -0.5617,0.0287 -1.30478,-0.052 -1.83237,0.0873 -0.6108,0.16099 -0.23112,1.75906 -0.49444,2.2433 -0.29073,1.268445 1.7275,2.701065 2.32681,3.641485 0.29137,0.45777 0.45236,2.97554 0,2.82603 0,-0.53237 -1.44951,-3.39793 -1.68701,-3.2921 -1.36408,0.60984 -1.93375,2.13491 -1.57065,3.55414 0.0733,0.28691 0.84924,2.69182 -0.26172,1.31116 -1.0673,-1.32582 -1.69307,-1.29426 -1.42529,-3.23375 0.28117,-2.03481 3.80661,-2.01887 0.37808,-2.82603 -0.95827,-0.2257 -1.55568,-0.967845 -2.41416,-1.252835 -0.35513,-0.11795 -3.27297,1.607635 -3.7231,1.951925 -1.29777,0.99174 -1.22604,-1.603815 -3.49037,-0.69909 -1.58405,0.6331 -1.27259,3.22291 -1.86171,4.48658 -0.44343,0.95062 -1.50467,1.30351 -1.77436,2.33064 -0.83681,3.18785 -4.13528,2.49322 -4.53727,4.83597 -0.55819,3.254482 -1.15719,4.116152 -2.99594,6.787892 -0.96337,3.0715 0.45172,4.34217 2.9086,5.884774 1.18906,0.74628 5.35909,3.63766 5.55546,5.01099 0.36151,2.52828 -0.24865,1.05868 1.94874,2.41798 2.04309,1.26431 3.3533,1.93567 5.75949,2.41799 0.97771,0.19605 2.02205,-0.56042 2.85026,0.0287 0.26523,0.18904 1.89071,3.19869 1.89071,3.46679 -1.28948,0 -2.70489,-1.6207 -4.04315,-1.89358 -0.93946,-0.19128 -5.90167,-0.98537 -6.19527,-1.34018 -1.46673,-1.77085 -1.70391,-1.26366 -3.75242,-0.5244 -2.05425,1.09917 -2.9121,0.90631 -5.0027,-0.058 -1.60699,-0.74085 -3.97748,-0.30954 -5.75917,-0.58274 -1.68797,-0.25853 -0.63151,0.81004 -0.55277,1.68956 -0.83394,0.55692 -1.23785,0.11572 -1.77436,1.2235 -0.73193,1.51232 -0.96401,-0.11763 -1.39628,-0.52408 -2.06477,-1.93981 1.26494,-1.93917 1.0182,-2.94271 -0.52631,-0.13006 -1.43931,-0.20976 -1.91972,-0.43673 -0.81354,-0.38478 -1.80273,-1.3542 -2.64688,-1.45685 -0.97516,-0.11859 -6.36996,-1.6631 -6.36996,-0.99047 0,0.96624 0.26236,2.91242 -0.14569,3.72915 -0.87283,0.76509 -2.47791,1.22509 -1.36695,2.21397 0.44088,0.39274 1.84449,1.11096 2.00707,1.60221 0.7144,2.15562 3.20475,2.76705 4.59561,4.42824 0.62801,0.74979 2.99594,-0.10296 2.99594,-0.87379 0,-0.82788 -0.29838,-1.29873 0.6108,-1.16547 1.1964,0.17501 0.76349,-0.42877 1.39627,0.8741 0.44917,0.92448 1.36154,-0.36692 1.13424,1.48554 -0.2343,1.9073 0.2206,1.58979 1.33826,2.593 0.23622,0.21231 2.26338,2.44763 1.59967,2.35965 -1.92642,-0.25567 -2.40301,0.70802 -4.10117,0.43705 -0.94616,-0.1511 -0.19988,1.99305 -0.72715,2.68035 -0.84351,0.28021 -2.38515,0.96879 -2.38515,-0.37872 0,-1.1422 -0.54672,-0.72842 -1.48363,-0.72842 -1.90697,0 -4.46012,1.47821 -5.70084,-0.67009 -0.53492,-0.92607 0.18936,-2.48015 -0.8435,-2.91338 -1.17281,-0.49156 -2.52446,0.73672 -3.14131,-1.28183 -0.67264,-2.20217 -3.38295,-0.30093 -4.30488,-0.0287 -0.31751,0.0934 -2.8528,-1.03797 -3.08329,-1.28184 -0.91395,-0.96847 0.14856,-2.45464 -0.4074,-3.20474 -0.3784,-0.51006 -1.67777,-0.0807 -1.30862,-1.04881 0.44885,-1.17599 1.25315,-0.32356 0.90153,-1.77691 -0.57254,-0.28786 -1.60477,-0.4667 -2.03608,-0.78676 -0.57828,-0.42972 0.26172,-1.13519 0.26172,-1.66055 0,-1.03573 -1.9041,-3.01571 -2.73422,-3.55413 -0.18553,-0.12051 -1.05422,-0.47978 -0.98887,-0.67009 0.33695,-0.98218 1.32551,-1.2557 2.06509,-1.7479 0.93308,-0.62131 -0.26969,-3.06448 -0.58147,-3.87452 -0.2139,-0.555004 -1.60763,-2.020464 -1.54164,-2.126934 0.44343,-0.71759 1.64684,-0.13899 2.38515,-0.32038 0,-1.62038 -3.52481,-1.14284 -3.43236,-2.2723 0.0526,-0.64108 0.74181,-0.46064 0.058,-1.28183 -1.09598,-2.64592 -3.35713,-0.93309 -5.06103,-1.19449 -0.67296,-0.10297 -1.05805,-0.40709 -1.80337,-0.37872 l -3.05396,0.11668 c 0.56393,-1.73005 3.81012,0.0861 3.81012,-2.88437 0,-0.97676 -6.70565,0.45427 -4.01383,-2.884052 0.83873,-1.04052 -3.14258,-0.80844 -4.01414,-0.99047 -1.06697,-0.22251 -0.16354,-0.61844 -0.20339,-1.28183 -0.0532,-0.89164 -1.99049,-1.50307 -2.70521,-1.86458 -2.235,-1.13105 -0.3548,-1.17759 -1.04721,-2.30163 -0.13484,-0.21932 -1.26844,-0.70993 -1.54132,-0.84478 -0.36342,-0.18011 -1.74057,-0.94105 -1.62899,-0.99046 0.67582,-0.29934 1.09502,-0.35098 1.83237,-0.32038 1.36058,0.0564 3.4534,-0.66817 4.1305,0.99046 0.89579,2.19325 3.21113,2.31598 4.85733,3.69983 3.65041,3.06926 1.04817,-3.68134 2.76323,-0.81578 0.30859,0.51612 0.49763,0.94074 1.0182,1.28184 0.74947,0.30954 2.14766,0.51675 2.96694,0.26236 1.00608,-0.31209 1.01788,0.0854 1.01788,1.10682 0,2.42946 2.24361,1.3542 3.60673,1.16548 1.80305,-0.24929 2.26593,1.12563 3.78143,1.5732 0.85913,0.25376 1.23497,0.3274 2.12311,0.26205 3.27807,0 9.10833,-1.42976 11.92575,0.0873 3.21591,1.731962 5.78564,1.292362 9.1332,-0.32038 5.36356,-2.58343 8.26833,-5.7716 9.42424,-11.44917 0.25981,-1.27545 1.04594,-2.333505 1.2506,-3.670815 0.14887,-0.5566 -0.0937,-1.67234 -0.31974,-2.21396 -0.15015,-0.36023 -0.97166,-1.01374 -0.93086,-1.07781 0.23367,-0.36724 0.68571,-0.28563 1.04721,-0.17502 0.57445,0.17534 0.44535,-0.23175 0.31975,-0.61174 -0.25025,-0.75521 -0.42654,-1.30734 -0.58179,-2.12662 -0.20338,-1.07112 -0.0752,-1.76575 -1.51231,-1.51487 -1.85693,0.32389 -1.48108,-2.02173 -2.32714,-3.14641 -0.66307,-0.88112 -1.32997,-1.38416 -1.74503,-2.47632 -0.41665,-1.09694 -0.27001,-1.33826 -1.62899,-1.19449 -1.45302,0.15398 -2.03608,-0.50591 -2.03608,1.28184 0,0.53651 -1.6529,-1.03191 -1.59966,-1.9226 0.0287,-0.50081 -1.04116,-0.13229 -1.4543,-0.32037 -0.64172,-0.21423 -1.86489,-2.74188 -2.23979,-3.49612 -1.39086,0 0.12051,2.57259 -0.52344,3.37944 -1.45079,0 -4.14102,-4.46331 -6.69003,-4.57393 -1.52698,-0.0663 -1.61751,1.37843 -3.28699,0.11668 l -4.50826,-3.40846 c -1.35834,-1.02648 -5.07602,-3.27615 -6.71904,-3.3211 -1.64397,-0.0453 -2.3402,-0.25152 -3.54871,-1.31116 -1.11224,-0.37075 -2.0109,-1.37715 -3.17032,-1.83525 -0.99907,-0.39434 -2.07051,-0.19765 -3.1123,-0.49539 -2.93442,-0.83841 2.16296,2.35168 -0.37808,2.09761 l -1.45462,-0.14569 -4.50826,-0.34971 c -2.26815,-0.17565 -3.64594,-2.11801 -3.83944,0.78676 l -0.1747,2.62201 c -1.6988,0 -0.01,-5.08717 -1.39596,-5.56439 -0.73384,-0.2528 -1.07685,1.14986 -1.51263,1.2525 -0.84096,0.19765 -1.64079,-0.57062 -2.87959,-0.37871 -3.02272,0.46893 -1.53272,-0.52217 -3.316,-1.60222 -1.2031,-0.72842 -1.51455,-0.37648 -0.34907,-1.45653 0.22346,-0.20721 0.13644,-0.57317 0.34907,-0.69909 0.47977,-0.2834 1.58595,0.5142 2.09441,0.61175 0.74979,0.14345 3.17128,0.32516 3.46137,-0.49539 0.84287,-2.38547 -0.57445,-2.31343 -2.47249,-2.18496 -1.87574,0.24292 -2.9765,-1.39819 -4.53759,-1.39819 -1.56938,0 -0.13262,2.15116 -0.58178,2.91306 -0.39498,0.66945 -1.57385,-1.04562 -1.71603,-0.58274 -0.26012,0.84478 0.0402,2.71892 0.95987,3.03005 -0.52122,0.17247 -1.40106,0.34843 -1.91973,0.6991 -0.69814,0.47244 -0.86422,1.0912 -0.55277,-0.46607 0.24419,-1.21967 -1.25091,-1.32136 -2.45528,-1.22923 l 0,0 -0.24961,2.94812 -1.629,1.86426 c -0.7756,0.77847 -0.78453,0.60474 -1.0472,1.63154 -0.15908,0.62131 -0.83554,0.97867 -0.87252,1.63154 -0.10679,1.88243 -0.0127,2.81647 -2.00707,3.6705 -0.60251,0.25789 -1.80943,-0.0128 -2.00675,0.67008 -0.48806,1.69148 -1.46004,0.89993 -2.44349,2.03927 -0.6143,0.71217 -1.64685,1.17536 -2.55953,1.25283 l 0,0 z",550.29962,223.48683,middle,,1,6,3 SE,Sweden,"m 310.2667,229.32204 c -0.24132,0.29009 -0.44725,-0.1374 -0.55245,-0.36437 -0.0947,-0.20339 -0.1849,-0.43451 -0.16003,-0.65542 0.0255,-0.21359 1.05231,-0.44662 1.26525,-0.71376 0.25471,-0.31879 0.48902,-0.56808 0.91619,-0.56808 0.23559,0 0.18872,0.8145 0.27639,1.03414 0.0905,0.2257 0.0746,0.30795 -0.14537,0.43705 -0.33823,0.19797 -0.71057,0.18426 -1.0182,0.46607 l -0.58178,0.36437 z m 39.41428,30.09778 c 0.0928,-1.38703 1.24103,-3.51556 1.57097,-5.01098 0.38286,-1.73706 1.3762,-2.33861 2.18145,-3.78717 0.52217,-0.9401 1.81261,-5.73909 2.9086,-5.73909 0.60314,0 0.15748,2.21205 -0.0287,2.53434 -1.74918,3.01794 -2.37942,6.48186 -4.10118,9.46824 -0.94966,1.64685 -1.23082,6.41778 -3.05428,7.02093 0,-1.02649 0.40709,-2.00771 0.40709,-3.02974 l 0.11636,-1.45653 z m 15.73619,-12.46896 c -0.292,-2.32076 -0.35385,-4.81908 0.87252,-6.8169 0.52759,-0.86008 1.63154,-1.14508 2.15244,-2.03927 0.70865,-1.21744 0.891,-0.47021 1.77435,-0.26236 0.72875,0.17119 1.03478,-0.93914 1.4543,-1.25251 0.44439,-0.33153 0.62801,0.47659 1.07622,-0.0877 0.90535,-1.14062 2.84388,-2.14256 1.01788,0.14568 -0.61972,0.77688 -1.0453,2.17539 -1.71602,2.70936 -0.91109,0.72587 -0.94966,4.23984 -0.11636,4.86529 0.81737,0.61399 0.47404,0.90918 -0.17437,1.36919 -1.24964,0.8859 -0.77306,2.26273 -2.35614,3.00072 -1.62071,0.75584 -1.82313,3.33896 -3.22866,4.22422 -1.4119,0.88973 -0.60123,-0.46447 -0.32006,-1.13615 0.65032,-1.55376 0.13389,-1.26366 -0.40709,-2.622 l -0.0287,-2.09761 z m -54.99968,-32.93657 1.56714,1.06538 c 0.39275,-0.0886 0.36246,-0.12528 0.6108,-0.40772 0,-4.01542 1.41795,-7.3837 3.17032,-10.89576 0.45936,-0.92129 0.69303,-1.88561 1.57065,-2.50533 3.33641,-2.35519 4.02179,-5.3014 4.7703,-9.06051 1.17441,-2.08327 0.67232,-2.805 -0.087,-5.04 -0.57158,-1.68191 -0.49284,-3.27552 -0.66913,-5.01066 -0.13931,-1.37333 1.76799,-1.35452 2.67589,-1.92292 1.27641,-0.79855 1.40903,-4.12253 0.8435,-5.38938 -1.14412,-2.56399 -3.60673,-2.52541 -3.60673,-5.94311 0.27766,-1.78552 1.71634,-3.46583 1.77435,-5.12734 0.0864,-2.46166 -0.58178,-5.15412 -0.58178,-7.72034 0,-1.42337 0.34525,-2.82667 0.37808,-4.25323 0.0386,-1.66916 -0.41283,-3.26181 0,-4.92364 2.68066,-4.18469 4.78273,-13.61691 11.16959,-11.97357 9.56802,2.46166 2.65421,-6.77546 4.68296,-11.50719 2.05361,-3.39602 4.39541,-6.32916 4.47925,-10.40036 0.0414,-2.01217 0.01,-3.96027 0.37808,-5.94311 0.44407,-2.39089 1.31339,-4.60454 1.80337,-6.96291 2.58407,-0.985684 5.2676,-0.642034 5.46844,-3.932854 0.18649,-3.06098 2.39471,-2.69788 3.81044,-4.74863 1.80687,-2.617542 2.87958,-4.787192 2.87958,-8.040722 0,-3.93763 0.65351,-4.87932 3.46137,-7.69101 1.49957,-0.84478 2.14511,-3.771545 3.78111,-4.311575 1.42083,-0.46861 2.13044,1.34623 3.49038,1.45653 1.76575,0.14314 2.20153,-7.05121 3.86878,-8.36109 1.10682,-0.86997 5.11012,0.37616 6.60268,0.69909 2.77598,0.60027 4.63577,4.47606 5.90454,-1.13615 l 1.04721,-4.63195 c 0.31878,-1.41062 -1.0182,-2.26911 -1.0182,-3.72915 l 0.93085,-0.7281 0,0 c 1.25952,1.50148 2.26815,3.30006 3.37402,4.95233 1.46832,2.19451 3.82415,2.73549 5.93387,4.13687 0.68252,1.53017 1.93502,3.25926 2.9376,4.60294 0.4632,0.62131 1.07048,1.40584 1.91973,1.42752 0.65669,0.0159 1.89709,-0.49412 2.44349,-0.26204 0.33982,1.72208 1.3797,3.53246 1.42496,5.331365 0.0395,1.58373 -1.27545,3.94593 0.90185,4.34058 0.55692,0.78166 0.0893,1.76639 -0.23272,2.68035 -0.55914,1.58787 -0.59963,1.48267 -0.46542,3.11708 0.82884,1.5308 2.13682,1.70104 2.76323,3.35043 0.8298,2.183682 -0.78517,4.617922 -0.78517,6.846232 0,3.13812 2.498,5.463024 2.64687,8.273754 l -0.051,1.59233 0,0 c -0.57987,-0.15939 -2.24712,0.77561 -2.79957,0.79633 -1.34846,0.0504 -2.59842,-0.59645 -3.9268,0.17501 -1.92674,1.11862 -1.6784,-1.72208 -2.82125,-1.31116 -0.5872,0.21135 -0.15046,1.60221 -0.81449,1.60221 -0.56393,0 -1.45845,-1.18939 -1.65801,-1.68956 -0.17756,0 -0.88048,1.96404 -0.87251,1.98093 0.1986,0.40868 3.32302,1.30479 1.39596,1.89359 -2.0686,0.63247 -4.01446,-2.56367 -5.67183,-2.56367 0,1.94299 3.79323,1.81994 3.40304,4.31188 -0.53971,0.93054 1.01565,1.8107 0,2.447 -0.76828,0.48105 -2.24903,0.68061 -3.14131,0.99046 -2.53753,0.88081 1.53782,2.8866 0.98887,4.36991 -0.41634,1.12404 -1.80879,2.09283 -2.44317,3.23376 -1.60763,2.89234 0.25311,1.62357 0.66913,3.69982 0.29806,1.48936 -1.82505,0.48105 -2.4725,0.64108 l 0,0.0583 c 0.37553,0.0928 2.16583,1.70295 2.53052,2.06828 0.8926,0.89515 2.74569,2.10016 1.80337,3.43778 -1.15146,1.79476 -3.69026,3.11485 -4.21753,4.98166 -0.41219,1.46035 -0.13995,4.02307 -1.86171,4.83597 -1.25729,0.59326 -1.15113,-1.2031 -2.26847,0.84478 -1.09758,2.01217 -1.55759,1.84576 -3.34502,2.97171 -0.8741,0.55086 -0.61557,1.38002 -1.33826,1.9226 -1.14443,0.85976 -1.55535,-1.58947 -2.21045,-1.42752 -0.35162,1.42975 -1.04275,4.9316 -2.67588,5.44804 -0.53875,0.39178 -1.50116,1.72112 -2.00708,1.86457 -0.65606,0.18649 -1.68223,-0.98218 -2.00707,-0.29137 -1.01055,2.15053 1.82154,2.55985 -0.2037,3.93285 -2.1196,1.43645 -1.4798,-0.27447 -2.99594,-0.61175 -1.13424,-0.25215 -0.97836,-0.10201 -1.86139,-0.84478 -0.34142,-0.2869 -0.86008,-1.38544 -1.30893,-1.22381 -1.17218,0.42303 1.58595,3.37784 1.658,4.13687 0.11667,1.22446 -0.81673,1.94077 -0.72715,2.88437 0.0513,0.5397 0.55054,1.01693 0.23271,1.57289 -1.48362,2.59586 -2.06668,0.41378 -3.14162,-0.43674 -1.42242,-1.12499 -1.5289,2.76132 -1.2506,3.20443 0.15652,0.24897 4.71101,2.70457 1.83238,2.38898 -1.1489,-0.12592 -0.25057,1.68031 -0.29073,2.33063 -0.35449,0.85212 -1.40457,2.5777 -1.25092,3.52513 0.10488,0.6465 0.98983,1.25283 1.22191,2.00994 0.53396,1.74344 -4.12572,-2.99052 -3.14163,-0.64076 0.48232,1.15241 0.97325,1.20852 0.23271,2.38898 -0.7399,1.18014 -0.70292,2.92932 -0.058,4.22422 0.81769,1.6427 -1.59966,1.7632 -1.59966,2.35965 0,0.13484 0.99557,0.34971 1.16325,0.34971 0,0.63916 -0.35513,1.51072 -0.49444,2.15562 -0.21199,0.92607 1.19799,4.53345 2.09442,4.98166 1.39692,0.69814 0.62832,2.00133 -0.0583,2.97171 -0.51707,0.73034 -0.29679,1.47853 -0.6398,2.21397 -0.85211,1.82791 -3.13557,2.26496 -4.27587,3.58346 -0.94934,1.09726 2.01026,-0.36437 2.2688,-0.5244 1.67075,-1.03318 2.50756,-1.79062 3.51939,-3.69982 0.37138,-0.70037 0.58656,-2.57069 1.42528,-2.91338 1.14731,-0.4683 1.80529,2.79575 2.21078,3.52513 1.58851,2.85886 2.33701,-2.83305 3.17032,-0.67009 0.52408,1.35994 0.4836,2.14415 1.94873,2.76769 0.43706,0.18617 2.70521,1.1913 2.70521,1.54388 l -0.0287,0.0287 c -0.62737,0.12369 -3.22961,0.10584 -3.49038,0.26204 0,0.98505 1.54771,1.10714 1.74503,1.7479 0.39147,1.27195 0.99238,1.16102 1.8327,0.3207 0.46861,-0.46862 0.19797,1.85756 0.058,2.21396 -0.5888,0.67391 -2.87002,2.17188 -2.53052,2.30131 0.58529,0.22379 3.12218,0.23845 2.96694,0.67009 -0.16195,0.4514 -1.09726,0.77528 -1.54165,0.96145 -0.58848,0.24611 -0.56871,1.21872 -1.33794,1.77723 -1.42019,1.03063 -2.47792,0.9095 -4.01414,1.54388 -0.54513,0.22474 0.64299,1.43453 0.95986,1.54419 0.67391,0.23303 2.02747,-0.32038 2.38515,0.14569 0.5974,0.77751 -1.04466,1.25314 -1.74535,0.90312 -1.14061,-0.57031 -2.43679,-0.2002 -1.01788,0.93212 1.16867,0.93309 -0.58433,1.76225 -1.39628,2.62201 -0.78007,0.82629 -1.16006,4.86179 -2.70489,3.64148 -0.84956,-0.67072 -0.88782,-3.78716 -1.16357,-3.78716 -0.28659,1.15942 -0.78198,1.68573 -0.95986,3.02973 -0.18043,1.36153 -2.50852,1.2082 -3.316,1.7479 -0.71472,0.47722 -1.22541,1.17632 -2.00676,1.66055 -1.04784,0.64969 -3.00168,-0.20498 -4.15951,0.0877 0,1.02649 2.45943,1.06378 3.17032,1.39819 1.2659,0.59613 2.33957,2.71095 -0.087,2.21428 l -1.4543,-0.0287 c -0.19446,0.77369 1.47278,1.34336 1.97774,1.95192 1.03446,1.24773 -0.48774,1.36217 -1.10523,1.51487 -0.17533,1.24772 2.5184,5.48374 -0.58178,4.42824 -0.39019,-0.13293 -1.27992,-1.3746 -1.27992,-0.49539 0,0.78358 0.61334,1.43007 0.78548,2.15595 0.24802,1.0437 -0.26172,2.37654 -0.26172,3.49579 0,1.4594 0.62099,3.48241 0.087,4.92364 -0.40486,1.09184 -1.66438,2.13172 -2.32681,3.14641 0.1138,1.84704 -0.60091,3.51301 -0.49444,5.38938 0.0803,1.41923 -1.2796,2.28123 -1.658,3.49612 l -0.98887,3.17542 c -0.38924,1.24932 -1.11129,2.40045 -1.27993,3.67081 -0.30412,2.29238 -2.60734,1.2659 -3.86845,0.61175 -1.29236,-0.67072 -2.0517,-0.67296 -3.46137,-0.96146 -0.62514,-0.15652 -5.70466,-2.77662 -4.59561,0.26204 1.00672,2.75909 -1.11989,0.26619 -2.12343,1.0198 -1.47948,1.11128 -1.88402,2.58694 -2.18144,4.28256 -0.45172,2.57228 2.10462,3.11039 0.78516,5.21469 -2.01313,3.20953 -1.1234,0.97388 -4.24653,0.26204 -2.08486,-0.47531 -3.36191,0.89961 -5.32308,1.16548 -1.59361,0.21613 -3.28062,-0.81099 -4.53759,-1.71889 -0.33855,-0.24483 1.25092,-2.85855 1.25092,-3.32111 0,-1.08769 -1.2235,-1.6207 -1.65801,-2.56367 -0.94902,-2.05999 0.12114,-6.6658 -1.27992,-8.06973 -0.58879,-0.58975 -2.4081,-1.87892 -0.40709,-1.77722 1.41031,0.0717 1.11065,1.63983 2.23979,1.92291 0.59166,0.14855 0.2732,-2.4658 0.058,-2.82603 -0.35322,-0.59199 -0.93086,-0.87666 -0.93086,-1.57321 1.57863,-0.38796 2.30259,0.85339 2.44349,-1.28183 0,-1.33507 -0.65701,-1.6698 -1.74535,-2.21396 -1.0437,-0.52186 -0.35321,-2.01409 -1.04721,-2.7677 -0.59995,-0.65096 -1.02935,-0.86677 -1.2796,-1.80623 l -0.8145,-3.05875 c -0.43832,-1.64557 -1.14348,-3.04567 -1.59966,-4.60326 -0.69654,-2.37654 0.58083,-4.43334 0.17438,-6.67121 -0.44407,-1.78998 -0.006,-1.7852 0.72715,-3.32111 0.48519,-1.0131 0.16385,-2.24393 0.34906,-3.3211 0.12114,-0.70356 0.58816,-1.23784 0.75616,-1.89358 0.16896,-0.66053 -0.95635,-0.77306 -1.42529,-1.10715 -0.18202,-1.48107 -2.2978,1.78903 -2.2978,-0.61174 -0.68762,-0.39562 -1.75523,1.30447 -2.15244,0.49507 -0.34333,-0.70037 0.168,-1.96149 0.32006,-2.68003 0.44503,-2.10525 0.77115,-4.91598 0.29074,-7.02124 0.32579,-0.71376 1.37587,-0.75552 1.95256,-0.94871 l 0,0 z",346.43997,161.31322,middle,,4,5,0 SI,Slovenia,"m 313.67451,423.61073 5.67183,0 c 2.12853,0.24961 2.56654,0.60569 4.45024,-0.67009 1.07367,-0.72747 1.90697,-1.61751 3.22866,-1.95192 0.98664,-0.24929 1.73929,-0.14568 2.73422,-0.0287 1.44473,0.16928 3.04057,-1.11256 4.50858,-1.36918 1.75076,-0.30572 2.89457,-0.56202 4.5956,-1.16548 l 2.32714,-1.10714 0,0 0.75615,3.75816 0,0 c -0.6143,0.98632 -0.78548,1.34368 -0.78548,2.53466 0,1.03924 -0.24228,1.55822 -0.8145,2.38897 -1.23752,1.7954 -4.36736,1.03159 -6.10792,2.15563 -0.58019,0.37489 -0.91842,1.07462 -1.59999,1.22382 -0.0813,1.90123 1.8955,3.44606 1.39628,4.95232 -0.54448,1.64398 -2.67365,1.84481 -3.9558,2.53466 -3.21304,1.72814 0.0127,5.93451 -5.81751,3.43778 -0.72811,-0.31177 -4.16238,-3.07596 -4.24654,-3.05906 -0.46351,0.0947 -0.90344,2.04246 -1.25091,2.41799 -1.34528,1.45525 -5.87585,0.80589 -7.44619,0.0873 l -2.43169,-0.92447 0,0 c 0.88877,-0.24706 2.04533,-0.38127 2.43169,-1.1148 l 0,0 1.48363,-0.23303 c 1.68797,-1.54929 -0.97803,-3.98386 -1.658,-5.33136 -0.70005,-1.3864 -0.2681,-2.88788 -0.58178,-4.36991 -0.25631,-1.21234 -0.87316,-3.05842 0.98887,-3.26276 l 2.12342,-0.90312 0,0 z",318.73193,431.71539,middle,,4,4,6 SK,Slovakia,"m 349.27644,387.4573 c 0.77975,-1.14157 1.67904,-2.96821 3.17032,-3.11708 3.12824,-0.31209 5.72443,0.0376 8.46438,-1.92291 2.25477,-1.61369 2.65038,-4.54046 5.09037,-6.26349 l 5.06103,-2.30163 0,0 c 0.5413,0.39657 1.71698,1.9092 2.47218,1.34017 1.27482,-0.96113 1.82855,-4.34026 4.07216,-2.18495 0.95349,0.91555 2.05616,1.77499 2.29812,3.11708 0.33122,1.83843 3.92074,2.92167 5.41011,2.0686 2.0992,-1.20278 2.81009,-3.58793 5.09004,-1.0198 1.22445,1.51838 4.1866,-0.63374 5.5848,-0.99046 3.00168,-0.76572 6.12226,0.22187 8.23167,2.41798 1.66437,1.73228 3.80119,2.16583 5.93354,3.1174 l 0,0 -0.6398,1.7479 c -0.67933,1.27514 -1.28088,2.57292 -1.89071,3.87452 -0.58593,1.25155 -0.99461,2.55442 -1.94874,3.61247 l 0,0 -3.37434,0.11668 c -1.90888,-1.27961 -1.54674,-2.79671 -4.3919,-2.79671 -1.99177,0 -3.89492,0.49508 -5.87553,0.49508 -1.36089,0 -2.00293,-0.42399 -3.17064,0.67008 -1.40903,1.32073 -1.74853,2.73008 -3.43204,3.93286 -2.57164,1.83684 -3.25033,-0.80525 -5.32307,-0.40773 -0.9283,0.1782 -0.70292,1.16994 -1.42529,1.66055 -1.66629,0.92735 -4.97177,1.88466 -6.77705,0.67009 -1.18684,-0.79888 -1.34209,2.29589 -1.36727,2.85504 -0.0338,0.75393 -0.26173,1.48012 -0.26173,2.24329 0,0.7568 0.38733,2.17443 0.0873,2.73836 -1.63792,-0.46287 -2.77216,0.0159 -4.36289,0.20403 -1.91176,0.22761 -4.61633,0.54895 -7.04579,-0.0526 l -5.60712,-2.33638 -2.15307,-3.24013 0,0 -0.75552,-1.97456 c -0.69463,-0.89228 -1.3558,-2.00675 -2.00707,-2.97171 -0.73098,-1.08387 -0.31656,-2.35041 0.2037,-3.40845 0.31942,-0.65032 0.83522,-1.13328 0.6398,-1.89359 l 0,0 z",380.91995,387.30179,middle,,4,5,4 SM,San Marino,"m 294.27325,461.62905 c -0.49284,-0.35768 -1.06761,-0.62641 -1.68701,-0.43706 -0.40582,0.12369 -0.69814,0.71408 -0.69814,1.10714 0,0.53429 0.42239,1.1913 0.87251,1.48554 0.86009,0.5617 2.31789,0.19893 2.09442,-1.07781 l -0.58178,-1.07781 z",305.44485,480.60217,middle,"m 294.102,463.74543 c 4.56797,8.93804 4.24169,8.93804 4.24169,8.93804 l 0,0",2,2,7 TR,Turkey,"m 460.15311,496.32881 4.01414,-1.54419 c 0.83427,-0.25822 1.72495,-0.29902 2.12311,-1.16516 0.64491,-1.4017 0.80015,-3.01284 2.73422,-3.32142 1.38162,-0.22028 3.58092,3.41737 4.945,4.13687 2.18495,1.15273 4.40434,-1.74152 6.1347,-2.75367 l 0,0 c 0.59485,0.85817 1.46928,1.51933 1.80592,2.34594 0.31018,0.76222 -0.96815,0.63502 -1.36727,1.01948 0.25343,1.41764 1.50148,4.01669 3.08329,4.3409 1.69307,0.34684 2.60384,1.25633 4.1305,1.66055 1.16101,0.30763 2.44062,0.20466 3.63574,0.17469 1.12181,-0.0287 2.41289,-0.81545 3.25767,-0.81545 0.26013,1.05263 -0.21996,1.73164 -0.40709,2.70936 -0.20562,1.0759 0.0931,2.30673 0.0287,3.43746 -0.13516,2.37718 -6.70373,-9.6e-4 -7.73723,-0.32038 -3.04472,-0.94201 -5.67279,2.6966 -8.08599,2.0976 -1.77595,-0.44088 -2.257,-0.47881 -3.37402,1.04881 -0.88431,1.20915 -1.11671,3.02272 -1.48363,4.45725 -0.71822,0.76445 -1.53112,1.69052 -2.53051,2.06828 -0.7195,0.2716 -1.61083,0.87825 -2.12311,1.45685 -1.13392,1.2812 -2.74474,2.22958 -3.83945,3.52512 -0.63088,0.74628 -1.56556,2.08741 -2.32713,2.65102 -0.58115,0.42972 -1.14763,0.77943 -1.62868,1.34017 -0.18936,0.22029 -0.51643,0.95349 -0.87283,0.66977 -0.79154,-0.62928 0.64012,-2.11227 0.64012,-2.82571 0,-0.31878 -0.74245,-1.3338 -0.90184,-1.89358 0.89291,-2.01664 2.59969,-0.69942 3.86845,-2.18496 0.78454,-0.9181 2.16679,-1.73355 2.70522,-2.65101 0.87283,-1.4865 -6.25202,0.36628 -6.89373,0.29105 -1.87605,-0.21997 -1.62804,-1.92228 -2.19452,-2.70298 l 0,0 c 0.25694,-0.30349 0.8961,-1.19258 1.1183,-1.52125 0.27224,-0.4023 0.67263,-0.99429 1.0182,-1.33985 0.60983,-0.60984 1.60763,-0.92766 1.51263,-1.95192 0.44471,-1.34432 -1.47502,-2.18719 -1.16356,-3.20475 0.46734,-1.5257 1.98029,-0.49698 2.70489,-1.54388 0.37234,-0.53842 1.45621,-0.46893 1.97806,-0.99078 0.62641,-0.62641 -0.75424,-1.66055 -0.78549,-2.21396 -0.0255,-0.44503 0.12752,-1.05964 -0.058,-1.45653 -0.62227,-1.33221 -2.79352,-1.56077 -3.66508,-3.02974 l 0,0 z m -3.21367,26.5784 c -0.67901,0.21199 -1.29586,0.41633 -2.02174,0.43705 -0.50177,0.0159 -1.0606,0.0883 -0.66913,0.71376 0.19127,0.30508 0.0583,0.82821 0.48009,0.88878 0.40422,0.0583 0.55788,-0.0918 0.91619,-0.23304 0.25758,-0.10169 0.53269,-0.24132 0.8145,-0.24769 0.26969,-0.006 0.75839,0.11444 0.98887,0 0.25567,-0.1272 -0.087,-0.77593 -0.087,-1.0198 l -0.42175,-0.53906 z m 228.65344,-39.57335 -2.02365,2.27389 c 0.27671,0.87889 0.90185,2.19739 1.04689,3.00072 0.32102,1.77532 -3.9185,0.6532 -2.12311,3.99119 0.71058,1.32073 2.23979,2.44764 2.67589,3.8165 0.35927,1.12659 1.27418,2.11578 1.4833,3.14609 0.33569,1.65131 -1.14348,3.98832 0.93086,4.69061 1.58149,0.53556 1.39564,2.38228 1.57065,3.87451 0.1629,0.62004 0.48583,1.46386 0.43642,2.09761 -0.11604,1.48554 -0.0947,2.51776 1.36695,3.29209 0.86168,0.45682 2.31055,0.90918 2.70521,1.86426 0.60187,1.45748 2.34753,1.4272 2.41416,3.26308 0.0529,1.45876 0.87634,2.48525 1.94873,3.43746 l 0.6108,0.61207 0,0 c -1.1607,0.72715 -0.45427,2.25413 -2.00676,2.447 -1.468,0.18202 -1.94618,2.18909 -3.43236,1.95192 -0.8011,-0.12752 -0.85211,-1.2337 -1.39627,-1.71889 -1.01406,-0.90503 -2.62807,0.0127 -3.75211,0.23303 -2.38036,1.28439 -4.79229,2.7712 -7.44618,1.01979 -1.96882,-1.29968 -5.26155,0.22889 -7.62088,-0.0287 -1.30606,-0.14313 -1.59775,1.9532 -1.71602,2.82603 -0.27479,2.02843 -1.25282,3.20507 -3.13174,3.90672 l 0,0 -0.99844,-0.52728 c -1.98221,-1.26366 -7.32058,2.54487 -8.95882,3.52513 -1.51614,0.90758 -3.16171,0.84574 -4.74129,1.42752 -1.83652,0.67678 -3.68006,2.8442 -4.79931,4.39892 -1.30192,1.8091 -2.3995,4.96731 -4.74097,5.09833 -2.12088,-0.10169 -4.14772,-1.32519 -6.37029,-0.96146 -1.72399,0.28181 -2.66664,2.81488 -3.5484,4.10755 -2.6966,3.95389 -7.37509,-0.0255 -10.35509,-0.64076 -3.15279,-0.65128 -4.80314,1.27674 -7.30082,1.34017 -1.63856,1.53942 -2.82093,1.74408 -4.79931,2.53435 -1.96053,0.78357 -2.57419,2.42755 -3.60674,4.04952 -1.7055,2.67939 -8.18959,-1.17376 -10.15107,-0.93212 -1.52954,0.18808 -0.38446,5.23955 -0.26205,6.2925 0.41283,3.55254 0.4428,4.60294 -1.59966,7.39996 -1.05996,1.45111 -0.0481,2.51011 -2.26879,3.11708 l -2.81392,0.25535 0,0 c -0.53205,-1.1387 -1.36313,-1.81517 -2.21811,-2.9357 -0.76126,-0.99748 -1.48968,-2.05648 -0.55245,-3.17542 0.86996,-1.03924 4.66382,-4.42314 4.33388,-5.79742 -0.11699,-0.48838 -2.22384,-2.76674 -2.76323,-2.68003 -0.98026,0.15748 -1.48139,0.95859 -2.12343,1.60221 -0.77433,0.77561 -2.16805,0.58147 -2.61786,1.10715 -0.85976,1.00385 1.2761,1.01947 1.68701,1.01947 0,0.8926 -0.57381,1.53495 -1.33794,1.89358 -0.75106,0.9417 -1.45239,0.83522 -2.41416,1.07814 -0.90471,2.26688 -6.01038,-1.71188 -8.72611,-1.28184 -2.98128,0.47244 -5.53825,5.47386 -6.31194,8.09874 -0.83203,2.82348 -3.27106,-0.29233 -3.63575,2.56367 -0.38158,2.98574 -5.91442,2.56813 -8.20234,3.99119 -0.97644,0.60697 -3.85284,1.25282 -4.97401,1.25282 -2.40045,0.35768 -4.98388,-0.0845 -6.80638,-1.7479 -1.01692,-0.92862 -3.2312,-3.21176 -3.40303,-4.60293 l -0.26172,-0.3207 c -5.84652,-0.64012 -14.23631,-5.47163 -19.42996,-1.34018 -0.17405,1.21234 0.8043,3.63097 0.55246,4.31189 -0.4616,1.24868 -0.73162,2.39695 -0.37808,3.75816 1.27864,4.91918 -0.75106,1.28184 -3.83945,2.65102 -1.96276,0.86996 -3.76326,3.02718 -5.87553,3.40845 -1.33284,0.24036 -6.43053,-1.86681 -7.70791,-2.53466 -1.97615,-1.03382 -1.20692,-1.1964 -1.59998,-2.85472 -0.39274,-1.65832 -2.498,-0.84829 -0.8145,-2.53466 1.03542,-1.03733 -2.90859,-1.97679 -2.90859,-0.64108 0,3.41355 -1.512,0.41283 -3.40303,0.72842 -0.52313,-0.28531 -1.12659,-1.38671 -1.48363,-1.92291 -0.45459,-0.68315 -1.01342,0.48966 -1.68701,0.46638 -0.82119,-0.0287 -0.61844,0.13007 -0.81418,0.93213 -0.12879,0.52664 0.10201,2.03066 -0.49475,2.15595 -0.47754,0.10041 -2.929,0.1935 -2.64688,-0.43706 0.16195,-0.36278 1.00482,-0.98568 0.66913,-1.25282 -0.47626,-0.37872 -5.53411,0.83617 -6.22459,0.96145 -3.98195,0.72333 0.98281,-2.60702 2.09409,-2.21396 0.67009,0.23718 3.51971,0.89228 3.51971,-0.29137 0,-1.42146 -1.09056,-2.50342 1.10523,-2.56367 1.38735,-0.0383 2.85663,-2.46804 0.90184,-1.80624 -2.03002,0.68762 -3.98067,0.20211 -6.02121,0.96114 -1.18971,0.44279 -2.3316,0.90886 -3.66476,0.58274 -1.01724,-0.24865 -2.47983,0.78198 -2.79255,-0.2037 -0.11987,-0.37745 -0.58147,-1.28343 -0.58147,-1.60254 0.56648,-0.18744 2.98957,-0.15301 3.17032,-0.69909 0.38573,0.0953 0.45459,0.80334 1.07622,0.90312 0.86773,0.13962 1.18811,-0.34079 1.30893,-1.10715 0.46415,-2.49258 0.74373,-1.94586 -1.62899,-0.93212 -1.07335,0.45873 -1.88051,-1.89231 -2.44317,-1.7479 -0.89292,0.22889 -1.65577,1.75427 -2.35614,0.23303 -0.59613,-1.29395 0.12433,-1.94013 -0.93054,-3.40877 -1.93885,-2.70011 0.52664,-1.36695 1.30862,-2.94239 0.35608,-0.71695 0.28945,-1.80942 0.52376,-2.62169 0.2375,-0.82214 -1.81548,-0.1205 -2.41416,-1.0488 -0.89993,-1.39628 -2.76769,-0.79505 -4.10149,-0.8451 -0.67901,-0.0255 -0.95763,-0.81195 -1.4543,-1.13615 -0.75201,-0.49157 -2.07114,0.39625 -2.82124,0.58274 -0.82438,0.20466 -1.28056,-1.51519 -1.77436,-2.01026 -0.42367,-0.42526 -2.30641,-0.96592 -1.4543,-1.48554 0.52281,-0.31847 3.16075,2.42086 2.76323,0.46607 -0.15716,-0.7721 -2.47505,-5.73814 -1.54165,-6.17615 0.53142,-0.24961 1.27068,0.90057 1.74535,1.19449 1.22031,0.75488 0.59581,0.86869 0.87252,2.12662 0.32675,1.48362 1.27099,0.20497 1.33794,2.2723 0.0708,2.19388 2.08485,-0.14123 2.50151,-0.52441 0.90439,-0.83139 2.95163,0.0899 3.57772,-1.48585 -0.86582,0 -1.48267,-0.53588 -2.44349,-0.0874 -1.02362,0.47818 -2.51744,0.74086 -2.47218,-0.93213 -0.13102,-0.69527 -0.0159,-2.97171 -0.26172,-2.97171 -1.42975,0 -1.96977,1.15209 -1.71634,-1.16516 0.17629,-1.61146 3.77091,-2.03449 3.287,-3.4958 -0.25152,-0.75903 -2.95387,0.86582 -3.22866,-0.17501 -0.52568,-1.99273 0.60378,-2.56081 -0.72715,-4.54461 -0.8333,-1.24166 -0.16609,-0.75615 0.61079,-1.95192 0.53174,-0.81896 1.65386,-1.95192 2.38515,-2.65102 1.81198,-1.73291 -1.29936,-0.94105 -2.00707,-1.07813 -1.3016,-0.25247 -4.03741,1.95416 -5.26473,2.41831 -2.96566,1.12244 -2.91434,-0.18904 -2.70521,-2.65134 0.30125,-1.20341 0.57476,-2.29971 0.43641,-3.52481 -0.10998,-0.97388 -0.0883,-1.58053 0.66913,-2.27262 1.29555,-1.18428 2.0431,-3.19709 3.46137,-4.16588 1.09694,-0.74883 1.93694,-1.27068 2.64687,-2.41799 0.97421,-1.57479 2.46358,-0.72619 4.01383,-1.77722 0.90184,-0.61111 1.04912,-0.17533 1.94873,-0.32038 1.50849,0.71408 2.25541,1.22636 3.83945,0.40804 1.35898,-0.70228 0.76827,-1.01405 0.40741,-2.18495 -0.14824,-0.482 1.35994,-0.36437 1.658,-0.40805 0.77114,-0.11285 1.92068,-0.49507 2.61755,-0.49507 0.18744,0.74245 -2.59779,2.4505 -0.0287,2.2723 l 5.87553,-0.40804 c 1.65769,-0.11477 3.61248,0.29519 5.20672,-0.0287 0.77051,-0.15685 3.43204,-1.07431 3.43204,-2.0686 -2.71764,0 -3.90097,0.19382 -5.11905,-2.24297 -0.16545,-0.3309 0.73958,-0.60442 0.98887,-0.69942 1.0029,-0.3819 0.94966,-0.7807 1.59967,-1.48554 1.89677,-0.99174 10.423,-1.24549 10.87854,-3.08807 -2.16678,0 -5.12001,0.60474 -7.12612,-0.3207 -2.68194,-1.23688 -1.89072,-2.57419 -1.89072,-5.01066 0,-3.82096 9.43604,0.0319 11.66371,-0.90312 1.53209,-0.64267 1.27132,-2.04086 3.17064,-1.28184 2.41894,0.96624 11.94775,2.25318 10.82021,-2.38897 -0.39721,-1.63537 2.63253,-1.92355 3.9558,-3.40845 l 7.24248,-5.06901 c 2.28697,-1.60062 5.09706,-1.92068 7.53353,-3.52512 1.04976,-0.69113 3.56466,-3.0275 4.42124,-3.37944 1.73227,-0.71249 4.81078,0.31783 6.80638,-0.23304 1.5799,-0.43577 0.70547,-1.48458 2.96693,-0.90311 1.2082,0.31081 3.14514,0.19892 4.18852,-0.55373 1.56651,-0.26045 2.49991,-0.9994 2.9086,-2.41799 l 0.75615,-2.62201 c 0.41219,-1.43007 2.71446,1.73929 4.18852,1.45685 1.17536,-0.22538 1.7071,0.51133 1.0182,0.81577 -5.11778,2.2621 3.28604,5.78372 7.35884,3.11708 0.66658,-0.43609 2.00866,-2.12183 2.38515,-0.96145 0.64713,1.99591 3.053,5.83153 5.4101,5.44804 2.12502,-0.34589 3.16554,-3.18913 6.05023,-1.51487 1.66915,0.96911 1.33602,0.85626 3.1413,1.13615 0.37203,0.0574 2.17284,0.75265 2.29781,1.13615 0.20051,0 0.0586,0.006 0.37808,-0.20402 2.09633,0 1.21776,-2.15053 3.14131,-1.77723 1.76256,0.34174 1.29586,1.21457 2.6762,1.71889 2.92868,1.06952 8.24825,-0.52472 10.50014,-2.41799 1.77022,-1.48777 3.73648,-3.25798 5.93387,-3.96218 1.89486,-0.6076 7.21475,-1.4849 8.46407,0.17502 1.12722,1.49829 2.94972,-0.79856 3.9558,-1.57321 1.47311,-1.04019 3.43332,-2.13012 4.62494,-3.43778 1.22413,-1.34304 2.69022,-2.5965 4.07216,-3.78717 2.42468,-2.08868 3.17797,-3.4738 4.16429,-6.18538 l 0,0 2.84579,0.79568 c 3.4907,1.37779 1.34687,-3.14609 4.13018,-3.14609 2.48494,0 3.16937,0.53206 4.65395,-1.80623 0.38764,-0.61016 0.48296,-3.3957 1.68701,-1.92292 0.56776,0.69496 1.65864,0.31815 2.44317,0.40805 1.07399,0.12273 2.24871,0.24674 3.02527,1.07781 0.74181,0.79346 6.10187,3.04791 7.00977,2.35965 l 0,0 c 2.34211,1.20533 3.34501,5.36515 3.34501,7.80769 0,1.29363 -0.49316,3.02686 -0.32006,4.19521 0.23463,1.58595 2.02397,2.81933 2.87959,4.10755 l 2.63731,3.11963 c 0.40709,-0.15015 0.80174,-0.36533 1.20214,-0.67232 1.96945,-1.50913 5.92717,0.24164 8.65565,1.83365 l 0,0 z",574.15448,528.09125,middle,,2,7,8 UA,Ukraine,"m 583.39546,388.09806 c -1.40393,0.74436 -0.70005,1.55153 -2.76323,0.90312 -2.14128,0.32357 -3.18371,-0.16768 -4.74129,1.66055 -0.92384,1.08483 -0.50113,3.11007 -1.36695,4.04953 -0.87061,0.9452 -0.67296,-0.87475 -1.0182,-0.90312 -0.65606,-0.0535 -2.30705,2.15786 -2.73423,2.65102 -0.26682,0.30858 -2.12852,4.5599 -2.32681,2.47632 -0.0842,-0.88303 -1.54993,0.40837 -1.83238,0.61175 -1.25441,0.90471 -2.33765,1.96117 -3.34501,3.05906 -0.9758,1.06411 0.34907,-1.66055 0.34907,-1.71889 l -0.0287,-0.0287 c -1.60349,0 -2.644,0.34174 -4.15919,0.96146 -1.58819,1.25442 -3.50345,5.29534 -5.7885,4.48626 -2.54422,-0.90057 -2.42723,0.43132 -3.7521,2.38898 -0.80717,1.19321 -2.38292,1.35356 -2.87959,2.38897 -0.27065,0.56489 -0.56265,2.09761 -1.51263,1.95193 -0.99812,-0.1527 -0.70803,-0.87603 -0.63981,-1.5442 0.0612,-0.6025 1.5866,-0.54863 1.30894,-1.10714 -0.22347,-0.44885 -1.19895,-0.99684 -1.629,-1.33985 -1.29905,-1.03733 -1.35101,0.40772 -2.76323,0.40772 -0.56169,2.27167 -1.29426,1.36759 -2.82124,0.72843 -0.82916,-0.34716 -5.84939,-0.46065 -3.83945,1.36918 0.99971,0.91045 1.21808,0.1087 1.62867,-0.40805 0.71886,0.18044 1.3169,4.04507 3.25799,3.2921 1.40297,0.20848 2.19738,-0.0583 3.43204,-0.0583 0.96878,0 0.64458,1.4221 1.77435,1.48586 0.61462,0.0348 0.86327,-0.95508 1.13424,-0.90312 0.35768,0.0682 -0.29966,1.55503 -0.55245,1.7479 -1.33029,1.01629 1.51582,1.38831 2.18144,1.22381 1.06475,-0.26363 0.81641,0.4801 1.33795,0.93213 0.53938,0.46798 1.52315,0.61271 2.21077,0.81577 1.68637,0.49795 3.67878,2.22831 1.94873,3.96187 -1.20596,1.20787 -0.24992,1.25728 1.07622,0.96145 3.02113,-0.67359 4.79804,0.80908 1.39628,-2.59268 -0.93595,-0.93595 -2.08485,-2.27007 -2.90891,-3.35043 -1.03542,-1.35707 -2.56335,-2.7457 -3.34502,-4.22422 -0.73639,-1.39214 -1.82185,-3.87037 0.20371,-1.57321 0.4463,0.50592 0.74086,1.19736 1.25091,1.7479 1.94236,2.09538 6.13024,9.82655 9.48227,8.41944 0.56807,-0.35035 1.18492,-0.59517 1.25059,-1.31085 0.0287,-0.32006 -0.0513,-1.21776 0.49444,-1.07781 1.30606,0.33441 2.3775,2.60511 3.34501,-0.14568 0.4565,-1.29778 0.95859,-0.96816 2.23978,-0.64108 0.87092,0.22251 3.36542,-0.62418 3.69409,-0.0287 1.19927,2.17252 -2.30323,0.39433 -1.97807,2.94238 0.14856,1.16325 0.66053,1.55153 1.80337,1.77691 0,1.0198 -2.96502,1.42625 -3.66475,1.63155 -1.154,0.33823 -3.2701,2.66823 -3.54872,1.13615 -0.57764,-3.17255 -7.73851,-0.78772 -5.90454,1.80623 0.69336,0.98027 -0.77624,1.10396 -1.07622,1.7479 -0.17437,0.37394 -0.13229,0.74118 -0.29105,1.07813 -0.44725,0.94743 -2.26943,0.51612 -3.22865,0.46607 -2.01281,1.51072 -2.28251,2.13681 -3.49038,4.13687 -0.95126,1.57448 -2.37017,2.60575 -3.17032,4.34058 -1.24836,2.70712 -4.8347,3.24396 -6.66102,1.07813 -1.02649,-1.2168 -4.41581,-0.81481 -1.42529,-2.88437 0.91715,-0.63438 0.96337,-4.62493 0.69814,-5.68075 -1.20979,-4.80983 -5.18727,-2.36506 -8.46406,-3.72915 -3.10592,-1.29267 -2.62647,0.80015 -5.29407,0.69942 -2.86173,-0.10839 0.75457,-3.13334 1.13456,-3.87484 0.7874,-1.31371 2.54901,-1.90378 3.34501,-3.23375 0.84574,-1.4135 0.2885,-1.9634 2.21046,-2.38866 0.71472,-0.1578 1.35802,-0.6975 1.94873,-1.13615 1.09535,-0.81418 2.08836,0.18107 2.55985,-1.42752 0.46064,-1.57289 -1.59998,-1.77563 -1.59998,-3.29209 0,-0.49858 -0.13676,-1.19322 -0.75616,-1.13615 -1.06092,0.0982 -0.6516,1.31594 -1.30893,1.80623 -0.23909,0.17852 -0.28436,-1.58691 -1.30894,-1.51486 l -1.658,0.11635 c -0.91459,0 -1.49542,-0.13293 -2.0941,0.6991 -0.28627,0.39752 0.0465,1.28183 -0.17437,1.28183 -0.74532,0 -5.20704,0.4141 -4.7413,1.04881 0.56011,0.76381 1.90985,0.76508 2.76323,0.87411 1.10396,0.14122 2.24011,-0.01 3.19965,0.0873 0.2426,0.0255 0.17278,0.78676 -0.34907,0.78676 -2.13267,0 -3.79641,0.17215 -5.87553,-0.49539 -3.58187,-1.14986 -6.89947,-0.93659 -10.52947,-2.62201 -2.11578,-0.98249 0.80716,-0.1138 1.36695,-0.0873 0.97676,0.0462 3.02272,0.19541 3.89778,0.58274 0.36055,0.15971 2.19452,0.97707 2.44317,0.61174 0.21263,-0.31177 0.0255,-1.01724 -0.26172,-1.19448 -0.63087,-0.39147 -1.68318,-0.41283 -2.18145,-1.13615 -0.62003,-0.8993 -0.21932,-1.42752 -1.77435,-1.42752 -1.50339,0 -2.44126,-0.60346 -3.78143,-1.16516 -0.32453,-0.13612 2.27772,-0.24228 2.79255,-0.26236 1.04211,-0.0408 1.96946,-0.45427 2.96694,-0.49508 1.45748,-0.0596 2.39918,1.64653 2.26847,-0.78676 -0.0159,-0.27288 -2.24648,0.0542 -3.08297,-0.46606 -1.47183,-0.91492 -2.045,-2.3995 -2.64687,-3.96218 -0.0459,-0.11891 -0.28755,-1.0045 -0.3784,-0.87379 -0.9911,1.42592 0.5872,3.411 0,4.19489 -1.31754,1.75969 -2.13873,-0.33058 -2.41416,-1.42752 l -1.74503,3.43778 c -0.30316,0.5974 -3.89492,1.30734 -4.68295,1.42752 -1.1862,0.6347 -1.39182,0.43387 -2.38515,0.67009 -0.70548,0.168 -0.28819,1.11893 -0.0583,1.48585 0.56616,0.90248 -1.20947,1.76544 -1.59967,2.65102 -0.11858,0.26874 -0.17596,2.52414 -0.75615,1.42752 -0.90759,-1.71634 -1.22988,-0.77752 -2.73422,-1.5732 -0.35641,-0.18872 -0.71982,-1.23275 -1.04721,-0.78677 -0.90472,1.23338 1.05709,2.7932 1.94873,3.58347 2.61149,2.31374 -0.34461,4.85701 -1.59966,7.10827 -0.60251,1.08036 -2.55953,2.65484 -2.55953,3.93317 0,1.81357 1.40776,2.52319 -0.40741,3.84551 l 0,0 c -0.38987,-0.26491 -0.59804,-0.67041 -0.98887,-0.93245 -0.78708,-0.52759 -2.35933,-1.02936 -3.28667,-0.64076 -1.71475,0.71886 -1.28216,0.30349 -2.90892,0.0874 -2.40236,-0.3191 -3.44734,4.38521 -6.16626,4.28256 -1.71188,-0.0644 -1.91749,-3.04631 -3.19965,-3.23376 -0.18298,-0.0255 -0.35767,-0.0351 -0.52312,-0.0255 l 0.21231,-0.002 c 0.73543,-0.97198 2.34689,-1.49861 2.34689,-2.85568 0,-0.74436 -0.49921,-1.38576 -0.29073,-2.15594 0.27416,-1.01438 1.66693,-1.73738 1.77404,-2.65102 0.72173,-0.93691 0.83426,-1.67458 1.97806,-2.15595 0.72588,-0.30571 1.39501,-0.95795 1.0182,-1.7769 -0.38095,-0.82885 -0.99014,-4.54269 -0.17469,-5.06933 1.05103,-0.67837 1.98221,0.97772 3.14131,0.90312 1.04976,-0.0673 1.48522,-0.91587 2.44349,-1.2235 0.97325,-0.31209 1.81835,-0.23303 2.82125,-0.23303 0.9385,0 1.40106,-0.40071 2.15243,-0.49539 0.58179,-0.58242 1.45781,-0.60473 2.00707,-1.33985 -0.6331,0 -1.3848,-0.38541 -2.03608,-0.52441 -1.20724,-0.25725 -1.42529,-1.17472 -1.42529,-2.33063 0,-0.63343 0.0733,-1.46163 -0.0287,-2.0686 -0.15238,-0.90567 -1.17121,-2.04788 -1.80336,-2.68003 -2.75176,-1.13073 -2.54742,-4.23506 -4.30488,-5.71008 -0.60282,-0.50559 -3.24969,-1.71092 -3.40335,-2.35996 -0.35863,-1.51551 1.0759,-6.67122 -1.59966,-6.67122 -1.15974,0 -2.51299,0.52854 -2.9086,-0.81577 -0.49826,-1.69148 -1.72941,-1.63027 -3.02495,-2.33064 l -2.42341,0.72779 c -0.0921,-0.0781 -0.16927,-0.14059 -0.25279,-0.20339 -1.68861,-1.2694 -2.45752,0.83617 -4.3629,-0.81577 -0.91332,-0.79186 -3.04726,-1.86457 -4.24685,-1.86457 -0.46798,0 -0.78358,-0.0376 -1.00832,-0.12114 -0.60091,0.34205 -1.0539,0.37553 -1.69657,0.55819 -0.76031,0.21582 -1.01948,0.46288 -1.48363,1.0488 -0.38095,0.48073 -0.11955,1.32041 -0.26172,1.89359 l -0.52345,0.87411 0,0 c -1.7514,0.32611 -2.94366,-0.83203 -4.50858,0.49507 -1.26462,1.07239 -3.39538,1.69211 -4.91566,0.93245 -1.24454,-0.62227 -1.24901,1.41126 -1.65801,2.12661 -1.41636,2.47856 -2.99052,1.72367 -5.26473,2.7967 -0.74373,0.35099 -2.8662,1.44091 -3.5484,1.51487 -1.44155,1.22254 -3.74095,1.76671 -4.79931,-0.2037 -1.12914,-2.10303 -2.28027,-1.90506 -4.45024,-1.34018 -1.4221,0.37043 -2.93028,-0.0644 -4.33421,-0.32037 -1.96339,-0.35768 -3.68069,0.79887 -5.70083,-0.0287 -2.25923,-0.9267 -3.61949,-0.60888 -5.93387,-0.17469 l 0,0 c -1.46705,-2.95259 -4.8806,-3.33003 -6.80606,-5.76842 -0.78389,-0.99238 -0.97453,-1.10395 -2.2688,-1.42752 l 0,0 c 0.95413,-1.05805 1.36281,-2.36092 1.94874,-3.61247 0.60983,-1.3016 1.21138,-2.59938 1.89071,-3.87452 l 0.6398,-1.74789 0,0 3.78143,-0.78677 c 0.20052,-1.20819 -0.69527,-2.10302 -1.0182,-3.20443 -0.4192,-1.42815 -0.81449,-3.88854 -0.81449,-5.3897 0,-1.35228 2.34084,-3.09221 3.1123,-4.10754 l 5.55579,-7.3123 c 1.66597,-2.1926 4.34631,-1.69689 4.56659,-4.98197 -0.0287,-0.99461 -1.00608,-1.3083 -1.45429,-2.06828 -0.46256,-0.78453 2.80148,-1.91717 0.75615,-2.91338 -1.38767,-0.6755 -1.50657,-1.59615 -1.91972,-2.94238 -0.32484,-1.05965 -0.81418,-0.75871 -1.27992,-1.60222 -0.63152,-1.14412 0.45841,-2.7492 -0.37808,-3.75816 -1.02936,-1.24103 -1.88498,-1.79508 -1.4543,-3.52512 l 0.0873,-0.93213 0,0 c 0.61047,-0.22124 1.46003,-1.02203 2.06541,-0.5244 1.01628,0.83617 1.58595,2.51808 3.19932,1.28183 1.39469,-1.06825 1.94459,-1.60285 2.9086,-3.05906 0.69814,-1.05422 1.56619,-0.96146 2.64687,-0.87379 1.75587,0.14218 4.14549,-1.06857 6.07924,-1.19449 2.55793,-0.1664 4.96635,0.76668 7.56254,0.40773 2.0415,-0.38318 3.85794,0.98983 5.78818,1.34017 1.88625,0.34269 3.90926,0.0159 5.72984,0.61175 1.45558,0.47595 1.66725,1.48458 2.76323,1.95192 1.40872,0.60123 1.6647,-0.97484 2.55985,-1.63154 0.87634,-0.64331 3.85602,-0.21614 5.4101,-0.81545 1.20342,-0.46384 2.79001,-1.52571 3.57741,-0.0583 1.62389,3.02718 2.32936,-1.29172 4.15951,-0.5244 2.50597,1.05103 2.09474,2.75876 5.32275,0.75743 1.07463,-0.76891 1.95384,-1.512 3.34502,-1.63154 1.45143,-0.12497 2.78076,0.0488 3.54839,1.36918 0.61367,1.05486 1.70614,0.96146 2.79224,0.96146 l 0.57764,-0.53716 c -0.0663,-0.73384 -0.0669,-1.47693 -0.19892,-2.20121 -0.18808,-1.03127 -0.59007,-2.40778 -0.37808,-3.46679 0.17693,-0.88303 1.00768,-1.25984 1.33794,-2.03927 0.27001,-0.63788 0.33345,-1.28438 0.23813,-1.90697 l 3.36829,-1.96786 5.58512,-1.0488 0,0 c 0.96368,-0.0469 5.53347,0.39688 5.96192,-0.32038 0.80174,-1.34113 0.9165,-3.76645 2.26879,-4.71962 1.02617,-0.723 2.62551,-0.14568 3.83945,-0.61175 2.50406,-0.96081 5.42413,-1.13551 8.08598,-1.39819 2.40779,-0.23781 2.39854,0.96305 3.22866,2.76738 0.78708,1.71155 5.54208,2.89775 2.61786,5.24401 -1.25091,1.00354 0.18362,1.63633 0.78517,2.50534 0.4581,0.66148 0.0921,2.644 0.14569,3.49611 1.69817,1.03892 2.89648,0.6414 4.62461,1.42752 1.23625,0.56202 2.78013,-1.01852 4.01383,-1.3695 0.91427,-0.25981 4.8739,1.58755 4.7703,2.50565 -0.22347,1.97583 1.3966,2.18846 2.0941,3.75816 0.45012,1.01342 0.0127,2.52255 0.72715,3.35011 0.62227,0.7195 3.2261,3.52258 4.21784,2.85504 2.4792,-1.66788 4.05941,-0.124 6.22428,-0.99046 3.21176,0.74628 3.39602,-2.11163 5.90454,-2.33064 1.67809,-0.14664 2.08709,-1.60572 2.82157,-2.70935 1.09853,-1.64972 1.19481,-0.94775 2.06509,0.23303 1.09439,1.48426 4.50093,3.57294 6.16626,4.57393 0.42175,0.25375 1.43294,0.86614 1.94874,0.69909 0.70579,-0.22888 -0.0507,-3.09731 2.06509,-1.63154 1.4645,1.01501 4.69761,3.30102 6.45731,2.94271 1.1387,-0.23208 1.69339,-1.30033 2.61786,-1.48586 1.17759,-0.23654 0.77497,1.25378 1.71602,1.77691 1.5901,0.63087 3.10688,0.78931 4.68296,1.39851 1.60986,0.62195 2.01472,-0.67615 3.22865,-1.16548 0.6889,-0.27798 2.46995,0.0319 1.57066,0.99078 -0.83841,0.8942 1.76989,2.37814 0.46542,4.1949 -0.90662,1.26207 -5.52741,4.57393 -1.25091,4.57393 1.30606,0 2.42372,1.05103 1.22159,2.18495 -1.008,0.9503 -3.11103,0.73767 -4.33389,1.68988 0.32963,0.81354 -0.29487,2.498 0.49476,3.05874 0.6755,0.4801 2.26688,-0.20402 3.17031,-0.20402 1.35675,0 2.81902,2.11482 2.99595,3.32142 0.32484,2.21556 0.14281,6.83061 -1.04721,8.68148 -0.49603,0.77114 -3.87675,0.84638 -4.88666,1.01948 -1.43485,0.24578 -3.77027,0.36756 -4.21753,2.03927 0.17693,0.59644 -0.41346,2.04819 -1.0759,2.30162 -1.06888,0.40869 -2.37303,0.44216 -3.08329,1.48586 -0.79696,1.17186 -0.99397,2.54327 -0.49443,3.78717 0.53301,1.32742 1.37938,3.22132 0.90343,4.77763 l 0,0 z",501.98166,369.09714,middle,,3,7,4 VA,Vatican City,"m 290.49415,491.90519 c -0.0376,0.1731 -0.0363,0.3624 -0.13899,0.51414 -0.0491,0.21868 -0.17629,0.40696 -0.27798,0.60327 -0.0223,0.19095 0.17883,0.31273 0.34572,0.33217 0.44636,0.0893 0.90124,0.16673 1.35809,0.13676 0.15811,0.0287 0.39822,0.0998 0.47719,-0.0966 0.0717,-0.13899 0.12847,-0.28627 0.22028,-0.41388 0.17055,-0.3105 0.13325,-0.7399 -0.12369,-0.99177 -0.1374,-0.0975 -0.29647,-0.15748 -0.44136,-0.24228 -0.23463,-0.0414 -0.4637,0.0979 -0.69763,0.0392 -0.2088,-0.006 -0.41299,0.0545 -0.6034,0.13517 -0.0395,0.006 0.16641,-0.0402 0.13103,-0.0593 z",284.53146,508.48978,middle,"m 290.57582,493.36921 c -5.65029,7.97397 -5.2467,7.97397 -5.2467,7.97397 l 0,0",1,3,8 PKccIeAo<chorogrid/databases/europe_countries_column_descriptions.txtabbrev Two-letter ISO country code full_name Full name map_path SVG path for geographic map map_fill_default Number, 1-4, so that no countries sharing a border will have same fill map_label_x X-coordinate for map label, e.g. country name map_label_y Y-coordinate for map label map_label_text_anchor Text anchor (start, middle, end) for label map_label_line_path Path for line connecting country and label, if applicable hex_x Horizontal position of hex grid hex_y Vertical position of hex gridPKccI}㰝 $chorogrid/databases/usa_counties.csv,fips,middle_x,middle_y,name,map_path,state,fips_integer 0,06083,0.16,0.43,Santa Barbara,"M22.9,250.9 L26.5,252.1 L24.3,253.1 L23.3,251.5 Z M28.8,251.4 L32.2,253.5 L28.2,252.9 L27.7,250.8 Z M37.3,239.1 L37.4,239.1 L37.7,239.2 L35.8,246.4 L34.9,247.6 L26.6,243.7 L21.9,242.8 L20.2,239.9 L21.9,233.6 L29.9,233.5 Z",CA,6083 1,12087,0.35,0.80,Monroe,"M593.5,425.6 L590.2,427.3 L584.4,416.3 L588.0,415.8 L591.5,415.1 L592.8,422.6 Z M583.6,416.5 L583.4,416.7 L583.3,416.5 L583.5,416.5 Z M583.8,416.4 L584.1,416.7 L583.7,416.5 L583.8,416.5 Z M593.9,425.7 L593.8,425.7 L593.8,425.7 L593.8,425.7 Z M594.5,426.1 L594.3,426.0 L594.3,425.8 L594.5,425.6 Z M594.9,426.0 L594.6,425.9 L594.5,426.0 L594.6,425.8 Z M595.5,426.0 L595.5,426.0 L595.5,426.0 Z M595.9,425.8 L596.8,426.3 L595.6,426.0 L595.3,425.6 Z M596.0,425.7 L596.0,425.7 L596.0,425.7 L596.0,425.8 Z M596.3,425.4 L596.1,425.5 L596.1,425.7 L596.1,425.5 Z M596.7,425.4 L596.6,425.5 L596.4,425.4 L596.6,425.3 Z M596.6,425.1 L596.6,425.1 L596.7,425.2 L596.5,425.3 Z M597.0,424.8 L597.0,424.8 L597.0,424.8 L597.0,424.8 Z M597.1,424.7 L597.1,424.7 L597.1,424.7 L597.1,424.7 Z M597.4,424.8 L597.1,424.8 L597.2,424.7 L597.4,424.6 Z M599.0,424.3 L598.4,424.8 L598.5,424.1 L598.6,424.1 Z M598.9,424.2 L599.0,424.2 L599.0,424.3 L599.0,424.3 L598.9,424.2 Z M599.0,424.3 L599.0,424.3 L599.0,424.3 L599.0,424.3 Z M599.0,424.0 L599.6,424.1 L599.1,424.2 L599.0,424.1 Z M599.0,424.0 L599.0,424.0 L599.0,423.9 L599.0,423.9 Z M600.0,423.6 L600.3,424.2 L599.6,423.6 L599.8,423.5 Z M602.1,421.2 L602.3,421.3 L602.3,421.3 L602.4,421.3 L598.5,428.8 L601.9,421.3 Z M595.2,425.8 L595.1,425.8 L595.1,425.8 Z M595.0,425.9 L595.0,425.8 L595.1,425.8 L595.1,425.8 Z",FL,12087 2,26033,0.62,0.55,Chippewa,"M503.7,83.3 L504.0,85.8 L501.2,85.9 L501.9,83.0 Z M497.5,85.7 L496.9,85.8 L496.2,85.7 L496.0,85.7 L494.2,83.2 L485.5,84.2 L483.8,83.0 L483.0,75.9 L482.8,74.2 L486.0,73.5 L485.4,77.9 L491.2,79.0 L496.3,76.8 L496.9,81.3 L500.0,85.6 L497.5,85.8 Z",MI,26033 3,01097,0.69,0.81,Mobile,"M474.3,345.7 L473.9,354.0 L469.3,352.0 L468.8,348.2 L468.5,346.2 L468.3,344.0 L468.0,341.8 L467.8,340.6 L467.7,339.8 L469.2,339.2 L474.3,338.5 L474.9,340.3 Z M474.5,346.5 L474.4,346.3 L474.4,346.1 L474.6,346.3 Z",AL,1097 4,08014,0.55,0.54,Broomfield,"M240.4,191.3 L240.0,191.2 L240.2,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 Z M240.8,190.2 L240.8,190.2 L240.9,190.2 L240.9,190.2 Z M242.6,189.1 L242.6,189.1 L242.7,189.1 L242.7,189.2 Z M242.4,189.5 L242.8,189.7 L242.0,189.9 L241.5,191.0 L240.9,191.2 L240.3,190.9 L240.3,190.9 L241.2,190.5 L241.3,190.2 L241.2,190.2 L241.4,190.0 L241.6,189.5 L241.6,189.5 Z M240.3,190.9 L240.3,190.9 L240.3,190.9 Z",CO,8014 5,55003,0.44,0.13,Ashland,"M417.3,82.8 L418.6,80.0 L421.6,82.5 L421.8,88.6 L424.8,89.9 L425.0,92.8 L421.6,93.0 L420.6,93.0 L417.7,93.2 L417.5,90.3 L417.5,90.3 L417.1,83.0 Z",WI,55003 6,25007,0.53,0.30,Dukes,"M672.0,127.0 L676.3,127.4 L673.7,128.3 L672.6,129.5 Z",MA,25007 7,25019,0.30,0.58,Nantucket,"M681.5,125.8 L682.7,127.1 L680.7,128.2 L681.1,127.3 Z",MA,25019 8,12037,0.50,0.45,Franklin,"M527.7,352.8 L526.0,356.1 L520.8,359.9 L517.0,358.9 L519.6,356.7 L519.2,354.0 L519.4,353.2 L526.2,352.4 L526.7,352.7 L527.4,352.5 L527.4,352.6 L527.5,352.6 L527.5,352.9 Z",FL,12037 9,41007,0.52,0.48,Clatsop,"M32.9,47.8 L34.8,41.0 L41.1,42.4 L41.5,44.1 L41.1,45.8 L39.7,50.0 L35.7,48.9 Z",OR,41007 10,08031,0.15,0.50,Denver,"M240.6,195.6 L240.6,195.6 L240.6,195.6 L240.6,195.6 Z M240.9,195.3 L240.9,195.3 L240.9,195.3 L240.9,195.3 Z M240.9,195.3 L240.9,195.3 L240.9,195.3 L240.9,195.3 Z M242.9,196.0 L242.9,196.0 L242.9,196.0 L242.9,196.0 Z M240.9,195.6 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 Z M241.0,195.1 L241.2,193.0 L241.3,193.0 L246.9,193.0 L243.3,194.1 L243.5,194.8 L243.1,195.0 L243.1,195.0 L243.1,195.0 L243.1,195.0 L243.1,195.0 L243.0,195.0 L242.8,196.0 L241.0,195.7 L241.0,195.7 L241.0,195.7 Z M241.0,195.9 L241.0,195.8 L241.0,195.8 L240.9,195.8 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 Z M241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 Z M241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 Z",CO,8031 11,08005,0.50,0.48,Arapahoe,"M242.7,195.2 L242.8,195.2 L242.8,195.5 L242.7,195.4 Z M242.6,195.2 L242.6,195.2 L242.7,195.2 L242.6,195.2 Z M242.9,195.1 L242.9,195.0 L242.9,195.0 L242.9,195.1 Z M241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L242.8,196.0 L243.1,195.0 L243.1,195.0 L243.1,195.0 L243.3,194.1 L249.7,194.7 L258.5,195.5 L258.3,197.4 L258.2,198.4 L258.2,198.4 L258.1,198.4 L248.9,197.6 L245.9,197.3 L243.1,197.0 L240.9,196.8 L240.9,196.8 L241.0,195.9 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 Z M242.9,196.0 L242.9,196.0 L242.9,196.0 L242.9,196.0 Z M242.5,194.7 L242.6,194.6 L242.7,194.5 L242.7,194.7 L242.6,194.7 L242.7,194.7 L242.7,194.7 L242.7,194.7 L242.6,194.7 L242.6,194.7 L242.6,194.7 Z",CO,8005 12,36085,0.55,0.50,Richmond,"M635.0,151.1 L635.0,152.5 L633.5,153.8 L633.8,151.3 Z",NY,36085 13,34029,0.57,0.95,Ocean,"M637.8,159.7 L638.3,166.0 L635.2,169.9 L635.1,169.8 L635.0,169.7 L634.5,166.1 L631.3,161.6 L632.7,159.7 Z",NJ,34029 14,45019,0.21,0.65,Charleston,"M592.2,288.5 L586.3,296.4 L585.4,294.9 L588.1,289.8 L590.6,287.8 L592.1,288.6 Z M580.1,301.9 L579.9,301.5 L579.8,301.6 L578.0,298.4 L578.3,296.1 L581.8,296.1 L581.3,292.8 L582.7,292.9 L584.9,295.0 L586.1,297.3 L581.4,301.1 L580.9,301.2 Z M593.3,288.9 L593.1,288.6 L592.9,288.5 L593.3,288.6 Z",SC,45019 15,53033,0.21,0.43,King,"M57.9,28.3 L59.0,26.5 L60.2,20.9 L64.7,22.3 L74.4,25.0 L74.6,26.3 L73.6,28.0 L69.3,29.9 L68.3,35.5 L61.2,31.9 Z",WA,53033 16,53055,0.46,0.46,San Juan,"M59.5,3.4 L58.8,9.1 L55.7,6.5 L56.3,4.2 Z",WA,53055 17,23015,0.50,0.47,Lincoln,"M676.7,81.0 L675.8,84.4 L672.8,83.6 L672.7,82.3 L671.7,82.3 L671.6,82.3 L671.6,82.2 L671.7,81.9 L671.5,81.9 L671.4,81.3 L671.4,80.3 L672.0,77.7 L673.4,76.2 L674.1,76.1 L674.6,76.1 L677.2,80.0 Z",ME,23015 18,23009,0.41,0.51,Hancock,"M685.8,72.6 L687.1,70.3 L688.6,72.1 L686.5,75.0 Z M680.5,70.4 L680.4,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 Z M680.5,70.2 L679.6,69.3 L679.7,68.3 L683.5,65.7 L681.8,62.4 L685.5,56.4 L686.5,61.6 L690.2,68.2 L686.0,70.1 L683.3,76.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 Z",ME,23009 19,53035,0.69,0.57,Kitsap,"M52.2,23.0 L59.5,18.4 L56.8,26.5 L56.4,26.4 L55.9,26.2 L55.9,26.2 L55.9,26.2 L54.9,25.9 L54.0,25.7 L54.0,25.7 L54.6,23.8 Z",WA,53035 20,53057,0.09,0.26,Skagit,"M60.4,9.7 L63.3,8.1 L63.5,6.5 L80.6,11.6 L82.4,11.8 L81.9,12.2 L82.4,14.0 L78.6,13.6 L78.0,16.9 L71.2,14.9 L63.0,12.5 L61.7,10.8 L61.1,9.9 L60.9,9.9 L60.6,9.9 L60.5,9.9 L60.5,9.8 Z",WA,53057 21,37019,0.43,0.48,Brunswick,"M608.0,267.7 L608.2,272.8 L600.5,274.5 L599.8,274.1 L599.3,273.7 L600.1,270.1 L604.6,265.6 L604.9,265.3 L606.5,265.6 L607.9,267.0 Z M609.1,271.9 L609.0,272.0 L609.1,271.9 L609.1,271.9 Z",NC,37019 22,13191,0.47,0.50,McIntosh,"M569.7,318.3 L568.7,322.3 L569.7,324.0 L568.0,324.2 L564.9,322.3 L565.0,322.0 L564.1,321.0 L565.4,320.1 L566.1,317.9 L567.1,318.7 Z M570.0,324.2 L569.9,324.2 L569.7,324.0 L570.1,324.2 Z",GA,13191 23,53053,0.20,0.41,Pierce,"M57.9,28.3 L61.2,31.9 L68.3,35.5 L65.7,38.5 L66.0,40.1 L61.5,39.8 L57.6,38.1 L54.9,35.4 L53.7,31.0 L55.9,28.6 L55.9,26.2 L56.4,26.4 L56.8,26.5 L56.0,28.5 L56.5,28.0 Z M54.9,25.9 L55.9,26.2 L53.2,29.5 L53.9,26.2 L53.9,26.0 L54.0,25.7 L54.0,25.7 Z",WA,53053 24,51600,0.55,0.57,Fairfax,"M600.6,189.5 L601.3,189.2 L601.4,189.6 L600.8,189.8 Z M600.8,189.6 L600.9,189.6 L600.9,189.6 L600.9,189.6 Z",VA,51600 25,51059,0.56,0.51,Fairfax,"M600.8,189.6 L600.9,189.6 L600.9,189.6 L600.9,189.6 Z M604.4,189.8 L604.7,190.8 L604.4,191.2 L604.3,191.1 L604.3,191.2 L603.3,191.9 L603.3,192.9 L603.2,192.9 L603.2,193.0 L602.9,192.3 L602.6,192.5 L600.7,191.7 L598.0,190.2 L599.1,187.8 L599.9,186.2 L601.3,187.2 L603.0,187.6 L603.0,187.7 L602.5,188.5 L602.3,188.7 L602.8,188.7 L603.5,189.1 L603.5,189.1 L603.3,189.9 Z M600.6,189.5 L600.8,189.8 L601.4,189.6 L601.3,189.2 Z",VA,51059 26,35003,0.51,0.51,Catron,"M188.9,298.1 L182.6,297.2 L174.3,295.9 L174.7,293.2 L175.6,286.5 L176.2,282.8 L177.6,273.2 L186.9,274.5 L195.7,275.7 L195.2,281.0 L193.5,294.0 L189.5,293.5 Z",NM,35003 27,35017,0.43,0.25,Grant,"M174.3,295.9 L182.6,297.2 L188.9,298.1 L190.5,301.7 L193.1,308.7 L184.2,309.1 L182.9,320.0 L178.5,319.4 L179.8,308.5 L173.2,303.1 L173.8,299.5 Z",NM,35017 28,38019,0.12,0.48,Cavalier,"M324.4,43.3 L336.1,43.6 L336.0,48.3 L336.2,51.2 L333.3,51.2 L331.8,51.1 L328.9,51.1 L324.4,50.9 L324.2,47.9 Z",ND,38019 29,49003,0.53,0.55,Box Elder,"M133.4,141.4 L133.8,139.6 L135.6,140.1 L146.6,142.0 L146.6,142.0 L146.6,142.0 L156.5,143.8 L156.9,144.0 L157.4,149.1 L158.6,154.0 L154.0,154.7 L150.0,158.4 L146.0,158.9 L130.5,155.9 L130.5,155.9 L130.5,155.9 Z",UT,49003 30,32007,0.58,0.52,Elko,"M133.4,141.4 L130.5,155.9 L130.5,155.9 L130.5,155.9 L130.5,155.9 L130.5,155.9 L130.5,155.9 L128.5,165.4 L127.5,170.4 L110.8,166.8 L105.1,165.5 L103.0,165.0 L103.0,155.8 L104.2,150.3 L98.9,149.1 L95.9,148.4 L93.6,147.9 L94.5,144.0 L97.4,131.6 L106.9,133.8 L121.6,137.1 L124.4,137.6 L130.8,139.0 L133.5,139.6 L133.8,139.6 Z",NV,32007 31,41037,0.51,0.50,Lake,"M61.3,122.5 L57.5,121.5 L50.6,119.6 L54.0,107.5 L48.5,105.9 L52.7,91.9 L63.9,95.0 L69.5,96.7 L65.2,110.5 L72.1,112.3 L69.0,124.6 L62.6,122.8 Z",OR,41037 32,06049,0.50,0.50,Modoc,"M50.6,119.6 L57.5,121.5 L61.3,122.5 L59.6,128.6 L57.7,135.6 L49.6,133.4 L41.5,131.1 L40.8,130.9 L40.1,130.7 L42.8,121.2 L43.8,117.6 L47.7,118.7 Z",CA,6049 33,46121,0.14,0.47,Todd,"M294.0,136.7 L299.8,137.0 L306.4,137.3 L306.2,141.7 L306.3,143.9 L301.8,143.7 L293.6,143.2 L293.6,143.2 L293.8,140.4 Z",SD,46121 34,46095,0.14,0.47,Mellette,"M306.4,137.3 L299.8,137.0 L294.0,136.7 L294.3,130.0 L296.4,129.2 L300.3,131.7 L305.1,131.8 L305.7,132.1 L306.4,131.9 L306.2,135.8 Z",SD,46095 35,53047,0.48,0.31,Okanogan,"M82.9,6.0 L104.7,11.8 L103.3,17.4 L100.1,28.8 L98.9,28.8 L98.7,28.7 L98.7,28.6 L98.7,28.4 L98.7,28.4 L98.7,28.4 L98.7,28.4 L97.9,24.9 L88.9,25.8 L87.0,25.3 L82.3,16.4 L82.4,14.0 L81.9,12.2 L82.4,11.8 L83.6,6.9 Z",WA,53047 36,48371,0.41,0.62,Pecos,"M261.4,358.9 L257.7,355.3 L249.5,347.5 L247.8,346.0 L247.5,345.7 L247.5,345.7 L252.9,340.1 L256.6,336.2 L259.2,338.1 L260.1,337.7 L264.8,339.8 L265.3,341.6 L272.5,345.1 L273.7,349.0 L273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L265.4,349.9 L265.0,355.2 L261.7,355.0 Z M273.8,349.5 L273.8,349.5 L273.8,349.5 Z",TX,48371 37,48043,0.46,0.62,Brewster,"M249.5,347.5 L257.7,355.3 L261.4,358.9 L262.7,360.0 L264.7,361.9 L259.3,363.9 L255.4,371.8 L251.5,376.2 L248.2,375.3 L242.3,370.5 L243.1,360.4 L243.9,351.4 L243.9,351.4 L245.1,350.5 Z",TX,48043 38,26141,0.50,0.41,Presque Isle,"M497.2,91.8 L498.8,93.7 L506.0,95.2 L507.8,97.5 L503.7,98.1 L502.0,98.4 L500.3,98.7 L497.6,99.0 L496.7,91.9 Z",MI,26141 39,30005,0.59,0.10,Blaine,"M207.3,32.6 L221.2,34.6 L216.7,51.4 L211.4,51.6 L210.9,54.8 L210.5,53.7 L203.6,53.6 L204.0,51.4 L204.7,47.0 L206.1,39.7 Z",MT,30005 40,30041,0.54,0.21,Hill,"M193.4,30.4 L207.3,32.6 L206.1,39.7 L204.7,47.0 L201.6,43.6 L192.9,42.2 L191.2,43.4 L193.1,31.8 Z",MT,30041 41,27075,0.55,0.72,Lake,"M415.1,67.9 L409.8,74.3 L406.7,77.3 L406.3,67.3 L405.7,56.4 L408.2,58.6 L414.4,56.0 L414.8,61.0 Z",MN,27075 42,35031,0.53,0.31,McKinley,"M178.5,266.8 L179.5,260.1 L181.0,249.5 L193.9,251.3 L200.1,252.2 L200.1,252.2 L204.4,252.8 L203.2,262.4 L203.0,264.3 L203.0,264.3 L203.0,264.3 L187.2,262.2 L186.4,268.0 Z",NM,35031 43,04001,0.30,0.34,Apache,"M181.0,249.5 L179.5,260.1 L178.5,266.8 L178.1,269.5 L177.6,273.2 L176.2,282.8 L175.6,286.5 L171.5,285.9 L169.4,287.0 L169.1,287.6 L169.1,287.6 L169.1,287.6 L164.5,289.7 L163.4,288.2 L164.4,284.8 L169.0,256.0 L167.3,253.2 L170.7,231.1 L179.2,232.4 L183.4,233.0 L183.4,233.0 L181.9,243.4 Z",AZ,4001 44,48243,0.47,0.80,Jeff Davis,"M242.4,351.2 L227.0,346.1 L227.3,346.0 L228.0,345.6 L237.5,340.8 L240.5,339.3 L240.5,339.3 L243.6,342.1 L247.5,345.7 L247.5,345.7 L247.8,346.0 L249.5,347.5 L245.1,350.5 L243.9,351.4 L243.9,351.4 Z",TX,48243 45,48377,0.43,0.69,Presidio,"M227.0,346.1 L242.4,351.2 L243.9,351.4 L243.9,351.4 L243.1,360.4 L242.3,370.5 L238.5,369.1 L232.0,362.9 L230.7,353.9 Z",TX,48377 46,47043,0.48,0.51,Dickson,"M477.8,251.6 L477.8,251.6 L477.9,251.5 L477.9,251.6 Z M475.7,251.4 L475.9,251.3 L475.9,251.3 L477.4,251.2 L477.7,255.7 L477.7,256.8 L477.6,257.2 L476.3,257.2 L473.1,257.1 L472.8,255.4 L472.3,254.0 L472.8,252.7 L472.8,251.3 Z",TN,47043 47,30019,0.11,0.44,Daniels,"M244.9,37.5 L256.6,38.8 L256.3,44.6 L256.8,46.1 L249.6,45.4 L247.5,45.2 L245.1,44.9 Z",MT,30019 48,41035,0.54,0.63,Klamath,"M33.8,114.5 L36.2,106.6 L38.6,98.6 L43.5,95.4 L42.5,92.0 L43.0,90.1 L44.8,89.6 L50.2,91.2 L52.7,91.9 L48.5,105.9 L54.0,107.5 L50.6,119.6 L47.7,118.7 L43.8,117.6 L35.3,114.9 Z",OR,41035 49,41029,0.78,0.48,Jackson,"M38.6,98.6 L36.2,106.6 L33.8,114.5 L24.7,111.8 L22.5,111.1 L24.9,103.5 L25.9,99.9 L31.5,100.3 Z",OR,41029 50,51750,0.54,0.52,Radford,"M564.5,225.7 L564.5,225.7 L564.5,225.7 L564.5,225.7 Z M564.4,225.7 L564.4,226.1 L563.8,226.6 L563.5,226.1 Z",VA,51750 51,47105,0.57,0.70,Loudon,"M516.9,258.3 L516.8,258.1 L516.9,258.1 L517.0,258.2 Z M514.3,258.0 L514.3,258.0 L514.3,258.0 L516.5,254.9 L517.5,253.7 L519.1,255.0 L519.0,255.1 L519.8,257.4 L519.2,258.3 L515.8,257.7 L514.6,258.7 L514.1,258.7 L513.7,258.5 L513.8,258.2 Z M514.3,258.0 L514.3,258.0 L514.3,258.0 L514.2,258.0 Z M514.6,258.8 L514.6,258.8 L514.6,259.0 L514.4,258.8 Z M514.3,258.0 L514.3,258.0 L514.3,258.0 Z",TN,47105 52,51580,0.31,0.53,Covington,"M569.4,214.2 L569.6,213.4 L570.0,214.1 L569.6,214.3 Z",VA,51580 53,38023,0.16,0.44,Divide,"M267.9,39.8 L280.3,40.9 L279.9,45.5 L280.4,47.0 L270.1,46.2 L267.3,45.9 L267.7,41.9 Z",ND,38023 54,08097,0.82,0.60,Pitkin,"M209.8,196.6 L212.2,196.9 L213.9,197.1 L219.1,197.8 L222.8,198.3 L221.4,201.4 L220.2,203.1 L220.0,203.3 L219.9,204.1 L215.8,203.7 L210.1,198.5 L209.3,197.3 Z",CO,8097 55,08045,0.67,0.44,Garfield,"M213.9,197.1 L212.2,196.9 L209.8,196.6 L196.1,194.8 L189.0,193.8 L189.0,193.7 L189.3,191.6 L189.3,191.6 L189.7,188.9 L204.0,190.3 L204.3,188.2 L210.8,189.0 L212.8,184.8 L216.4,185.2 L216.2,186.7 L216.1,188.1 L215.1,188.0 Z",CO,8045 56,08113,0.51,0.43,San Miguel,"M186.2,213.9 L192.8,214.9 L200.3,215.9 L200.9,218.1 L202.7,220.4 L202.7,220.4 L201.8,221.6 L200.8,222.3 L195.9,219.6 L185.6,218.4 L185.7,217.1 Z",CO,8113 57,08085,0.06,0.36,Montrose,"M200.3,215.9 L192.8,214.9 L186.2,213.9 L186.3,211.9 L186.8,208.1 L195.7,209.4 L196.0,206.6 L201.0,207.3 L207.5,208.1 L206.7,214.2 L204.9,214.0 L198.5,212.6 Z",CO,8085 58,51690,0.38,0.50,Martinsville,"M574.3,231.9 L574.2,231.1 L574.8,231.2 L574.6,232.1 Z",VA,51690 59,22113,0.66,0.95,Vermilion,"M417.4,364.7 L413.1,370.0 L408.0,369.3 L407.8,361.7 L406.0,361.7 L407.2,361.0 L407.6,360.8 L410.6,361.4 L412.6,359.6 L414.9,360.1 L417.4,361.3 L417.0,362.4 Z M416.6,369.0 L416.6,368.8 L417.2,368.4 L416.8,368.9 Z",LA,22113 60,06069,0.50,0.49,San Benito,"M17.9,198.8 L18.5,199.2 L20.1,198.1 L23.5,199.5 L23.9,201.8 L26.3,204.2 L29.3,209.4 L27.3,212.7 L22.9,210.4 L17.7,199.9 L17.7,199.0 L17.7,199.0 L17.7,199.0 Z",CA,6069 61,06053,0.10,0.56,Monterey,"M17.7,199.0 L22.9,210.4 L27.3,212.7 L27.0,215.3 L30.5,219.8 L31.3,220.5 L31.3,222.1 L25.1,220.3 L16.4,217.8 L11.6,207.5 L11.8,202.9 L15.3,199.1 L16.4,198.4 L17.5,198.6 L17.7,199.0 L17.7,199.0 L17.7,199.0 L17.7,199.0 Z",CA,6053 62,27135,0.50,0.50,Roseau,"M353.4,43.8 L365.6,43.8 L368.2,45.0 L368.2,48.5 L365.4,48.6 L365.4,51.5 L363.7,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L357.9,51.5 L353.6,51.4 L353.4,48.5 Z",MN,27135 63,48323,0.47,0.50,Maverick,"M295.2,392.4 L289.0,379.7 L288.6,377.0 L292.8,377.1 L296.8,377.3 L296.4,384.4 L296.4,384.7 L296.4,385.3 L296.0,392.4 L295.9,392.4 Z",TX,48323 64,33007,0.12,0.29,Coos,"M647.2,72.0 L647.7,67.4 L650.7,65.9 L654.0,75.6 L656.2,82.2 L653.6,83.7 L651.8,84.7 L649.8,84.5 L646.9,82.7 L648.7,79.1 L646.9,76.6 Z",NH,33007 65,48261,0.40,0.50,Kenedy,"M331.8,409.4 L336.0,409.4 L334.2,417.0 L335.8,420.8 L329.4,420.8 L327.9,420.5 L327.5,420.4 L327.6,417.6 L327.6,415.2 L327.7,410.3 L329.9,409.7 L331.1,409.1 L331.2,409.2 L331.5,409.3 L331.6,409.4 Z M337.5,409.3 L336.7,410.1 L336.9,409.3 L337.1,409.3 Z M337.8,420.9 L336.9,415.2 L338.2,420.9 L337.9,420.9 Z",TX,48261 66,37029,0.52,0.40,Camden,"M621.9,224.4 L625.2,226.9 L627.0,227.4 L627.5,227.7 L627.5,227.8 L627.6,228.0 L627.6,228.1 L627.6,228.2 L627.1,229.4 L624.4,227.9 L623.6,227.1 L619.7,225.6 L619.6,225.5 L618.9,225.1 L619.6,224.9 L620.7,224.7 Z",NC,37029 67,37053,0.58,0.46,Currituck,"M627.0,227.4 L625.2,226.9 L621.9,224.4 L623.5,224.0 L624.4,223.8 L625.4,223.6 L625.6,223.6 L630.6,230.5 L627.5,227.8 Z M627.6,228.0 L627.6,228.2 L627.6,228.1 L627.6,228.0 Z M626.5,223.4 L626.6,223.5 L626.8,223.3 L627.0,223.3 L627.2,223.2 L627.5,224.1 L625.9,223.5 L626.1,223.5 Z M628.0,223.0 L629.9,227.2 L630.4,227.9 L630.2,228.0 L630.2,228.0 L628.9,225.5 L627.6,223.1 L627.8,223.1 Z",NC,37053 68,56001,0.47,0.68,Albany,"M233.0,147.6 L239.4,148.4 L242.2,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.8,148.7 L242.3,154.4 L241.5,161.6 L240.9,167.2 L240.4,172.6 L240.4,172.6 L234.5,172.0 L228.9,171.4 L228.2,171.3 L227.3,171.2 L228.0,164.6 L231.2,164.9 L233.0,147.6 L233.0,147.6 L233.0,147.6 L233.0,147.6 Z",WY,56001 69,56007,0.48,0.68,Carbon,"M233.0,147.6 L231.2,164.9 L228.0,164.6 L227.3,171.2 L225.8,171.0 L220.5,170.3 L218.7,170.1 L214.7,169.6 L209.3,168.9 L207.1,168.7 L208.4,157.7 L213.7,158.4 L214.8,148.4 L215.0,146.9 L215.2,145.5 L226.2,146.9 L233.0,147.6 L233.0,147.6 L233.0,147.6 L233.0,147.6 L233.0,147.6 Z",WY,56007 70,06027,0.34,0.60,Inyo,"M90.7,236.6 L65.5,230.7 L61.6,229.8 L60.4,229.6 L60.9,220.9 L59.7,213.0 L60.0,207.6 L57.5,205.5 L57.2,199.9 L64.6,201.8 L69.4,203.0 L72.8,208.0 L76.2,213.1 L83.1,223.5 L89.8,233.5 L91.4,235.9 L91.9,236.6 L91.9,236.6 L90.7,236.4 Z M91.9,236.6 L91.9,236.6 L91.9,236.6 Z",CA,6027 71,06071,0.46,0.52,San Bernardino,"M65.5,230.7 L90.7,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L98.8,247.0 L102.7,252.8 L104.8,262.6 L107.1,265.6 L105.0,267.4 L102.2,268.5 L90.0,266.7 L59.5,259.7 L57.3,262.0 L57.2,261.9 L56.1,260.4 L59.3,255.3 L61.1,246.5 L61.6,246.6 Z",CA,6071 72,16013,0.29,0.34,Blaine,"M141.7,120.6 L135.2,119.3 L133.8,119.0 L131.4,111.8 L131.9,108.1 L128.7,106.6 L128.8,105.7 L129.2,105.3 L137.1,107.8 L141.9,114.3 L143.2,118.0 L150.5,120.8 L150.3,121.7 L150.0,123.7 L147.1,123.1 L145.7,131.2 L144.2,129.8 L142.9,129.9 L145.3,121.3 Z",ID,16013 73,16063,0.10,0.41,Lincoln,"M133.8,119.0 L135.2,119.3 L141.7,120.6 L140.6,126.3 L137.6,127.2 L136.4,126.2 L129.9,124.2 L130.5,121.3 L131.1,118.4 L132.3,118.7 Z",ID,16063 74,51515,0.50,0.36,Bedford,"M576.5,220.1 L576.8,219.7 L577.5,219.8 L577.3,220.3 Z",VA,51515 75,35025,0.82,0.69,Lea,"M247.3,324.8 L248.0,316.0 L246.7,315.9 L247.4,308.5 L249.5,298.5 L252.5,298.7 L253.5,298.8 L258.9,299.2 L258.9,299.7 L258.8,300.3 L258.7,301.2 L258.6,302.3 L258.6,302.3 L258.1,308.1 L257.9,309.4 L257.7,312.9 L257.4,316.8 L257.0,321.7 L256.8,324.1 L256.7,325.5 L252.9,325.2 L252.9,325.2 L250.5,325.0 Z",NM,35025 76,35015,0.52,0.50,Eddy,"M247.4,308.5 L246.7,315.9 L248.0,316.0 L247.3,324.8 L245.1,324.6 L243.6,324.5 L243.3,324.4 L243.0,324.4 L239.7,324.1 L231.2,323.3 L231.6,319.1 L232.0,314.6 L232.9,307.2 Z",NM,35015 77,18033,0.50,0.50,DeKalb,"M496.0,161.4 L498.6,161.0 L498.7,161.9 L498.8,162.8 L499.0,164.3 L499.2,165.3 L496.8,165.7 L494.3,166.1 L494.1,164.2 L493.8,161.7 L493.8,161.7 L493.8,161.7 Z M493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 Z",IN,18033 78,18151,0.50,0.50,Steuben,"M496.0,161.4 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.4,158.9 L493.3,157.8 L496.0,157.5 L497.9,157.2 L498.1,157.2 L498.3,158.3 L498.4,159.7 L498.6,161.0 Z",IN,18151 79,53029,0.18,0.67,Island,"M60.2,12.2 L61.7,18.3 L59.5,17.0 L59.7,13.9 Z M60.5,9.9 L60.5,9.8 L60.4,9.7 L60.5,9.8 Z M61.1,9.9 L60.8,10.0 L60.6,9.9 L60.9,9.9 Z M62.4,13.7 L61.1,12.8 L62.6,13.5 L62.6,13.5 Z",WA,53029 80,51153,0.45,0.58,Prince William,"M599.4,194.3 L599.0,194.9 L599.0,194.9 L599.0,194.9 L595.7,190.9 L596.1,188.9 L597.6,189.6 L598.0,190.2 L600.7,191.7 L602.6,192.5 L602.3,193.8 L602.1,195.2 L601.2,195.1 Z M599.0,191.6 L599.1,191.6 L599.1,191.6 L599.0,191.5 Z M599.0,191.1 L598.5,192.0 L599.2,191.2 L599.7,191.2 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 Z",VA,51153 81,51179,0.57,0.51,Stafford,"M599.4,194.3 L602.1,195.2 L602.1,195.2 L602.1,195.3 L602.1,195.7 L602.1,195.8 L602.0,196.1 L602.1,196.4 L602.1,196.4 L602.3,196.7 L601.9,196.9 L602.6,197.3 L602.6,197.3 L602.6,197.3 L602.8,197.6 L602.5,197.9 L602.4,199.3 L602.7,199.5 L602.5,199.4 L602.2,199.6 L602.2,199.6 L601.5,199.5 L601.0,199.2 L600.7,198.7 L599.9,199.0 L599.9,199.0 L599.1,198.5 L598.5,198.3 L598.4,197.9 L598.2,197.6 L598.0,196.7 L599.0,194.9 L599.0,194.9 L599.0,194.9 Z",VA,51179 82,53065,0.67,0.08,Stevens,"M111.4,13.5 L120.0,15.6 L116.5,20.7 L117.9,21.0 L116.2,31.2 L114.1,35.1 L111.0,33.9 L108.1,33.6 L105.5,31.3 L109.3,25.7 L111.2,19.4 Z",WA,53065 83,13097,0.53,0.49,Douglas,"M517.1,289.2 L517.8,290.1 L516.9,291.2 L514.9,293.3 L513.6,293.5 L513.2,290.0 L515.7,289.6 L515.6,289.3 L515.6,289.3 Z",GA,13097 84,13067,0.55,0.50,Cobb,"M517.1,289.2 L515.6,289.3 L515.6,289.3 L515.4,287.0 L514.9,284.8 L515.5,284.7 L516.0,284.7 L518.5,284.4 L519.3,284.3 L520.1,286.1 L517.8,290.1 Z",GA,13067 85,53051,0.51,0.21,Pend Oreille,"M116.2,31.2 L117.9,21.0 L116.5,20.7 L120.0,15.6 L124.3,16.7 L123.9,18.6 L123.8,19.1 L121.9,26.7 L120.5,32.3 L119.0,32.0 Z",WA,53051 86,30053,0.56,0.32,Lincoln,"M135.1,19.1 L149.4,22.2 L149.4,28.0 L146.6,27.5 L145.5,34.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L136.9,38.4 L135.6,31.9 L132.2,32.0 L132.5,30.5 L133.2,27.3 L134.0,23.7 Z M143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 Z",MT,30053 87,16021,0.85,0.60,Boundary,"M124.3,16.7 L135.1,19.1 L134.0,23.7 L133.2,27.3 L125.1,25.4 L126.5,19.7 L123.8,19.1 L123.9,18.6 Z",ID,16021 88,13145,0.50,0.53,Harris,"M511.1,305.7 L515.7,305.2 L515.7,305.1 L515.7,305.1 L515.7,305.1 L517.0,305.0 L518.0,305.3 L518.1,305.5 L518.6,309.6 L515.6,310.0 L513.1,309.9 L512.7,309.3 L512.1,307.7 L511.5,306.7 Z M515.7,305.1 L515.7,305.1 L515.7,305.1 L515.7,305.1 L515.6,305.1 Z",GA,13145 89,13285,0.48,0.51,Troup,"M515.7,305.2 L511.1,305.7 L511.1,305.7 L510.0,301.8 L509.9,301.8 L509.9,301.5 L509.9,301.5 L509.9,301.5 L510.0,301.4 L511.9,300.5 L513.8,299.4 L514.9,299.3 L515.0,299.8 L515.4,303.7 L515.6,305.1 L515.6,305.1 Z",GA,13285 90,55107,0.05,0.54,Rusk,"M418.3,103.4 L418.3,104.8 L414.9,105.0 L411.0,105.2 L410.8,101.1 L410.7,99.4 L410.7,99.4 L410.7,99.4 L413.6,99.2 L420.9,98.8 L421.1,101.3 L421.2,103.2 L421.2,103.2 Z",WI,55107 91,55119,0.94,0.45,Taylor,"M418.3,103.4 L421.2,103.2 L423.8,103.1 L428.7,102.7 L428.7,103.8 L429.0,107.1 L429.0,107.1 L429.0,107.1 L429.0,107.1 L429.0,107.1 L429.0,107.1 L427.2,107.2 L427.3,108.6 L425.9,108.7 L424.4,108.9 L418.6,109.2 L418.5,107.7 L418.3,104.8 Z",WI,55119 92,18025,0.55,0.54,Crawford,"M483.7,218.8 L480.8,218.1 L480.7,217.5 L480.5,215.9 L485.4,215.4 L485.3,214.9 L485.6,214.9 L486.0,214.9 L486.0,218.6 L485.5,219.0 L484.7,220.4 L483.9,220.2 L483.9,220.2 Z",IN,18025 93,53037,0.51,0.52,Kittitas,"M68.3,35.5 L69.3,29.9 L73.6,28.0 L80.1,35.7 L83.4,36.6 L83.4,37.3 L84.1,37.5 L83.1,39.8 L82.4,45.5 L76.4,43.9 L75.8,40.7 L71.4,39.4 Z",WA,53037 94,53007,0.09,0.58,Chelan,"M83.4,36.6 L80.1,35.7 L73.6,28.0 L74.6,26.3 L74.4,25.0 L75.2,20.6 L78.5,19.4 L78.0,16.9 L78.6,13.6 L82.4,14.0 L82.3,16.4 L87.0,25.3 L88.9,25.8 L84.3,28.3 L81.7,32.7 Z",WA,53007 95,51820,0.66,0.56,Waynesboro,"M582.3,206.6 L583.3,206.0 L583.4,206.9 L582.8,207.1 Z",VA,51820 96,51790,0.56,0.52,Staunton,"M580.4,205.9 L580.0,205.0 L581.1,204.9 L581.1,205.7 Z",VA,51790 97,51540,0.50,0.51,Charlottesville,"M588.0,206.3 L588.3,205.4 L588.8,205.5 L588.7,206.3 Z",VA,51540 98,24037,0.35,0.42,St. Mary's,"M610.3,193.5 L616.1,198.4 L609.5,197.9 L608.2,195.8 L608.9,193.7 Z M608.1,195.9 L608.2,196.1 L608.1,196.1 L608.1,196.0 Z M614.1,200.9 L614.7,200.9 L614.8,201.0 L614.7,200.9 Z M612.8,199.8 L613.6,200.1 L613.8,200.5 L613.6,200.1 Z M612.4,199.1 L612.5,199.3 L612.5,199.4 L612.4,199.3 Z M612.2,199.1 L612.3,199.1 L612.3,199.1 L612.3,199.1 Z M611.4,199.1 L611.4,199.1 L611.5,199.1 L611.5,199.1 Z M608.9,199.4 L609.4,199.4 L609.9,199.3 L609.3,199.5 L608.9,199.4 Z M608.5,196.6 L608.6,196.8 L608.7,196.9 L608.5,196.8 Z M615.2,201.3 L616.5,201.7 L616.5,201.7 L615.5,201.5 Z M616.6,201.7 L616.5,201.7 L616.5,201.7 L616.6,201.7 Z M616.6,201.7 L617.7,201.9 L618.0,202.2 L616.6,201.7 Z",MD,24037 99,30101,0.14,0.13,Toole,"M177.4,27.7 L187.6,29.5 L185.4,42.4 L183.9,42.2 L181.4,39.5 L176.0,36.3 L176.2,34.8 Z",MT,30101 100,32021,0.55,0.39,Mineral,"M64.2,173.9 L70.7,175.5 L75.4,176.7 L70.6,178.2 L75.3,187.0 L64.5,194.3 L63.5,194.0 L60.7,189.8 L56.3,183.2 L59.5,184.1 L62.0,173.3 Z",NV,32021 101,32001,0.46,0.53,Churchill,"M75.4,176.7 L70.7,175.5 L64.2,173.9 L60.9,167.6 L61.1,163.1 L61.6,160.5 L62.2,157.3 L74.4,160.4 L83.2,162.6 L82.1,170.2 L77.8,172.5 L76.7,176.7 L76.1,176.7 Z",NV,32001 102,51595,0.55,0.50,Emporia,"M604.9,225.4 L605.5,225.0 L605.7,225.6 L605.1,225.8 Z",VA,51595 103,47037,0.56,0.53,Davidson,"M486.5,253.3 L486.5,253.3 L486.5,253.2 L486.5,253.2 Z M480.8,249.8 L482.1,250.2 L482.9,249.2 L483.5,250.1 L485.4,251.6 L486.1,253.4 L486.7,253.9 L485.5,255.6 L485.5,256.3 L485.5,256.3 L481.2,255.3 L479.5,255.6 L480.1,254.1 L480.8,249.8 Z",TN,47037 104,55007,0.50,0.16,Bayfield,"M410.2,90.6 L409.9,84.8 L409.7,80.3 L416.3,76.9 L418.7,77.6 L417.3,82.8 L417.1,83.0 L417.5,90.3 L417.5,90.3 L414.6,90.4 Z",WI,55007 105,55031,0.49,0.50,Douglas,"M409.7,80.3 L409.9,84.8 L410.2,90.6 L410.1,90.6 L404.3,90.9 L403.0,91.0 L401.5,91.0 L401.4,89.4 L401.3,86.6 L401.2,83.0 L401.1,82.5 L401.1,82.5 L401.1,82.5 L402.3,81.5 L403.4,80.9 L403.8,81.3 L403.9,81.4 L404.3,81.6 L404.4,81.6 L406.9,81.5 Z",WI,55031 106,39065,0.50,0.52,Hardin,"M512.4,176.1 L512.4,176.0 L512.2,175.0 L512.1,174.3 L512.0,172.9 L511.8,171.3 L515.0,170.9 L516.4,170.8 L516.9,172.6 L517.9,172.8 L518.1,174.1 L518.3,175.8 L517.2,175.9 L517.0,176.0 L517.0,176.0 Z",OH,39065 107,39091,0.50,0.50,Logan,"M512.4,176.1 L517.0,176.0 L517.0,176.0 L517.0,176.2 L517.3,180.6 L514.2,180.7 L511.3,180.6 L511.3,180.0 L511.0,177.1 L510.9,176.3 L512.4,176.0 Z",OH,39091 108,51678,0.40,0.39,Lexington,"M576.5,212.5 L576.8,212.3 L577.0,212.3 L576.6,212.8 Z",VA,51678 109,51530,0.58,0.54,Buena Vista,"M577.7,213.6 L578.1,212.6 L578.3,213.0 L578.1,213.6 Z",VA,51530 110,40045,0.51,0.51,Ellis,"M312.0,261.2 L307.3,263.6 L303.5,263.1 L303.5,262.4 L303.6,260.2 L303.9,252.8 L303.9,252.7 L303.9,252.5 L303.9,251.2 L309.0,251.4 L309.3,251.4 L309.1,258.6 L312.1,258.7 L312.0,260.0 Z",OK,40045 111,40129,0.50,0.49,Roger Mills,"M303.5,263.1 L307.3,263.6 L312.0,261.2 L311.9,263.2 L311.9,264.6 L311.7,269.0 L311.9,269.7 L308.9,271.0 L303.1,270.8 L303.2,269.2 L303.3,267.5 L303.4,265.1 Z",OK,40129 112,51720,0.59,0.63,Norton,"M536.6,233.8 L537.3,233.0 L537.6,233.4 L537.3,233.9 Z",VA,51720 113,16073,0.53,0.64,Owyhee,"M103.8,104.1 L105.9,108.1 L108.4,111.9 L109.6,113.8 L110.7,115.5 L113.7,119.1 L120.0,120.7 L119.2,123.3 L124.3,124.4 L121.9,135.4 L121.6,137.1 L106.9,133.8 L97.4,131.6 L97.4,131.6 L97.3,131.6 L99.7,121.3 L100.3,119.1 L101.7,113.1 L103.8,104.1 Z",ID,16073 114,41045,0.42,0.71,Malheur,"M103.8,104.1 L101.7,113.1 L100.3,119.1 L97.3,131.6 L90.0,129.8 L83.1,128.1 L86.4,113.1 L91.0,94.8 L91.7,92.0 L91.8,91.2 L95.7,88.9 L100.1,90.0 L103.9,93.4 L106.6,95.0 L107.1,96.7 L106.2,98.8 L105.1,100.9 L104.6,101.2 L103.8,104.1 Z",OR,41045 115,36057,0.52,0.55,Montgomery,"M617.2,113.8 L620.0,114.2 L625.4,113.0 L625.5,113.3 L625.5,113.4 L625.9,114.3 L624.1,116.5 L621.9,117.4 L619.4,117.1 L618.5,117.0 L617.8,116.9 L617.6,114.6 Z",NY,36057 116,36035,0.49,0.53,Fulton,"M625.4,113.0 L620.0,114.2 L617.2,113.8 L617.4,111.6 L616.8,109.8 L619.2,110.2 L623.8,108.7 L624.3,110.1 Z",NY,36035 117,38075,0.50,0.50,Renville,"M296.4,42.0 L296.5,49.6 L300.9,49.8 L300.8,51.1 L300.8,51.3 L292.0,50.8 L292.2,46.3 L290.3,44.7 L290.5,42.4 L290.5,41.6 Z",ND,38075 118,38009,0.50,0.50,Bottineau,"M300.9,49.8 L296.5,49.6 L296.4,42.0 L311.1,42.7 L310.9,47.4 L311.2,50.4 L310.4,50.3 L309.7,50.3 L309.7,50.3 L308.3,48.8 L301.0,48.4 Z",ND,38009 119,06011,0.43,0.50,Colusa,"M18.4,163.8 L17.9,159.3 L15.6,154.9 L23.1,157.1 L26.2,158.1 L25.9,158.7 L25.6,159.3 L24.5,161.1 L24.7,165.7 L22.4,165.0 Z",CA,6011 120,06033,0.48,0.51,Lake,"M15.6,154.9 L17.9,159.3 L18.4,163.8 L17.6,163.5 L17.4,164.5 L15.8,166.8 L13.6,166.8 L12.7,164.2 L12.0,163.2 L9.7,158.6 L12.2,151.8 L14.8,151.2 L16.6,151.8 Z",CA,6033 121,04017,0.75,0.59,Navajo,"M160.8,229.5 L164.5,230.2 L170.7,231.1 L167.3,253.2 L169.0,256.0 L164.4,284.8 L163.9,284.7 L163.4,288.2 L163.4,288.2 L162.5,287.9 L161.9,287.8 L163.0,280.8 L152.6,279.1 L153.3,274.8 L155.4,262.2 Z",AZ,4017 122,49037,0.62,0.65,San Juan,"M170.7,231.1 L164.5,230.2 L160.8,229.5 L153.8,228.4 L152.0,228.0 L158.3,227.0 L163.6,220.8 L167.7,215.7 L170.2,215.9 L174.6,212.2 L174.0,208.5 L174.2,206.2 L181.1,207.3 L186.8,208.1 L186.3,211.9 L186.2,213.9 L185.7,217.1 L185.6,218.4 L184.7,224.2 L184.6,225.0 L184.3,226.8 L183.4,233.0 L183.4,233.0 L179.2,232.4 Z",UT,49037 123,08011,0.51,0.50,Bent,"M260.4,220.4 L267.0,220.9 L269.1,221.1 L268.6,228.5 L268.2,231.5 L267.0,231.4 L263.9,231.1 L263.9,231.1 L262.2,231.0 L259.5,230.8 L259.8,227.8 Z",CO,8011 124,08061,0.50,0.48,Kiowa,"M269.1,221.1 L267.0,220.9 L260.4,220.4 L259.9,220.4 L259.1,220.3 L259.1,219.0 L259.4,216.1 L263.8,216.3 L263.9,214.9 L271.1,215.4 L278.7,215.9 L278.4,219.7 L278.3,221.7 L272.7,221.3 Z",CO,8061 125,41049,0.12,0.37,Morrow,"M84.9,60.5 L83.5,65.7 L86.5,68.0 L84.1,76.4 L81.2,75.7 L78.2,74.9 L76.8,74.5 L77.1,73.3 L75.5,69.6 L78.0,60.5 L78.4,60.5 L79.6,60.6 L82.0,60.8 Z",OR,41049 126,41059,0.43,0.51,Umatilla,"M84.1,76.4 L86.5,68.0 L83.5,65.7 L84.9,60.5 L88.5,61.2 L90.4,60.5 L92.9,61.2 L101.7,63.4 L101.7,63.4 L101.9,63.4 L101.3,65.7 L101.4,65.7 L98.1,71.7 L90.9,72.1 L91.5,78.3 L87.3,77.2 Z",OR,41059 127,30071,0.44,0.63,Phillips,"M221.2,34.6 L233.0,36.1 L231.8,44.3 L228.8,48.9 L227.6,57.7 L224.3,58.4 L221.4,61.1 L221.5,59.0 L217.2,58.2 L212.1,56.4 L210.9,54.8 L211.4,51.6 L216.7,51.4 Z",MT,30071 128,51660,0.56,0.55,Harrisonburg,"M581.7,201.1 L581.9,199.5 L582.6,199.9 L582.8,200.5 Z",VA,51660 129,51683,0.37,0.47,Manassas,"M599.0,191.6 L599.0,191.5 L599.1,191.6 L599.1,191.6 Z M599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 L599.2,191.2 L598.5,192.0 Z",VA,51683 130,49019,0.47,0.48,Grand,"M186.8,208.1 L181.1,207.3 L174.2,206.2 L173.4,200.0 L176.7,190.3 L176.7,190.3 L176.7,190.3 L188.5,192.1 L189.3,191.6 L189.0,193.7 L189.0,193.8 L187.8,201.9 Z",UT,49019 131,51840,0.41,0.51,Winchester,"M588.4,186.4 L588.5,186.0 L589.2,186.2 L588.9,187.0 Z",VA,51840 132,30105,0.53,0.52,Valley,"M233.0,36.1 L244.9,37.5 L245.1,44.9 L247.5,45.2 L246.9,51.0 L246.0,54.5 L239.9,52.8 L239.4,54.6 L233.7,58.6 L227.6,57.7 L228.8,48.9 L231.8,44.3 Z",MT,30105 133,06099,0.67,0.42,Stanislaus,"M37.2,191.7 L28.5,193.3 L24.2,196.7 L22.0,195.7 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L27.0,187.7 L30.8,188.1 L32.3,182.6 L33.8,185.7 L34.7,187.5 L35.7,189.2 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 Z M37.2,191.7 L37.2,191.7 L37.2,191.7 Z",CA,6099 134,06047,0.46,0.48,Merced,"M24.2,196.7 L28.5,193.3 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.8,195.1 L38.2,196.9 L38.6,198.9 L39.5,200.1 L33.7,200.0 L32.6,200.6 L30.7,201.7 L26.3,204.2 L23.9,201.8 L23.5,199.5 L23.4,198.4 Z",CA,6047 135,38001,0.11,0.45,Adams,"M275.7,92.3 L275.8,90.1 L276.1,86.7 L276.4,86.7 L276.9,86.7 L281.8,88.4 L287.7,88.8 L287.6,90.6 L287.5,91.3 L287.4,92.7 L287.4,93.2 L287.4,93.2 L287.4,93.2 L285.9,93.1 L276.3,92.4 L275.8,92.3 Z",ND,38001 136,38011,0.14,0.44,Bowman,"M276.1,86.7 L275.8,90.1 L275.7,92.3 L269.1,91.8 L263.3,91.3 L263.6,88.3 L263.8,85.7 L275.5,86.6 Z",ND,38011 137,08033,0.51,0.62,Dolores,"M199.1,224.4 L186.6,222.8 L184.6,225.0 L184.7,224.2 L185.6,218.4 L195.9,219.6 L200.8,222.3 L199.2,223.4 Z",CO,8033 138,08083,0.50,0.52,Montezuma,"M184.6,225.0 L186.6,222.8 L199.1,224.4 L195.3,228.9 L192.2,234.3 L186.8,233.5 L183.4,233.0 L183.4,233.0 L184.3,226.8 Z",CO,8083 139,08067,0.85,0.52,La Plata,"M192.2,234.3 L195.3,228.9 L199.1,224.4 L202.1,224.8 L205.5,225.2 L205.3,227.5 L205.1,228.8 L204.5,233.8 L204.2,235.8 L197.3,234.9 Z",CO,8067 140,30081,0.26,0.48,Ravalli,"M151.7,63.1 L150.3,70.5 L152.9,75.8 L152.9,75.8 L152.9,75.8 L150.5,76.9 L147.3,78.8 L141.7,81.8 L139.5,79.6 L142.7,74.7 L142.2,69.7 L145.9,61.9 L147.8,62.3 Z",MT,30081 141,30039,0.47,0.50,Granite,"M152.9,75.8 L150.3,70.5 L151.7,63.1 L156.0,62.5 L158.3,61.4 L161.0,63.6 L159.5,71.4 L156.5,71.6 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 Z",MT,30039 142,04027,0.54,0.58,Yuma,"M112.3,297.5 L111.3,302.7 L110.8,305.2 L91.6,293.4 L93.7,290.1 L96.5,290.0 L97.6,285.6 L101.0,286.2 L102.5,279.1 L106.5,281.4 L115.1,283.1 L115.1,283.1 L113.1,293.6 Z",AZ,4027 143,04019,0.59,0.58,Pima,"M110.8,305.2 L111.3,302.7 L112.3,297.5 L122.9,299.5 L128.2,300.4 L142.8,303.0 L152.8,304.5 L152.7,304.8 L152.6,305.9 L151.9,310.5 L150.7,317.5 L140.6,315.9 L140.0,319.3 L136.9,320.3 L135.0,319.3 Z",AZ,4019 144,04013,0.42,0.34,Maricopa,"M128.2,300.4 L122.9,299.5 L112.3,297.5 L113.1,293.6 L115.1,283.1 L115.1,283.1 L115.5,281.0 L117.1,272.8 L125.2,274.3 L131.3,277.5 L133.3,275.0 L142.4,277.4 L145.0,284.6 L147.2,287.3 L139.7,286.1 L138.9,290.4 L131.9,289.2 L130.5,287.4 Z",AZ,4013 145,32033,0.47,0.50,White Pine,"M100.6,181.1 L103.4,174.3 L105.1,165.5 L110.8,166.8 L127.5,170.4 L127.1,172.4 L126.8,173.9 L126.3,176.3 L125.6,179.9 L125.5,180.6 L122.7,194.0 L114.3,192.3 L110.5,191.5 L104.3,184.9 Z",NV,32033 146,32011,0.13,0.76,Eureka,"M105.1,165.5 L103.4,174.3 L100.6,181.1 L96.3,180.1 L91.8,179.1 L95.4,164.3 L98.9,149.1 L104.2,150.3 L103.0,155.8 L103.0,165.0 Z",NV,32011 147,30063,0.49,0.79,Missoula,"M149.2,54.4 L153.5,54.5 L153.6,47.3 L157.0,47.9 L157.3,48.0 L158.9,48.3 L157.5,55.3 L159.4,55.7 L158.3,61.4 L156.0,62.5 L151.7,63.1 L147.8,62.3 L145.9,61.9 L144.3,62.1 L142.9,61.8 L142.8,60.5 L142.3,59.9 L143.8,60.0 L145.6,54.8 L142.8,50.8 L145.5,51.6 Z",MT,30063 148,30047,0.91,0.50,Lake,"M157.0,47.9 L153.6,47.3 L153.5,54.5 L149.2,54.4 L148.9,46.3 L146.3,45.7 L146.7,42.6 L148.6,40.0 L153.7,41.0 L155.7,39.9 L157.6,43.2 Z",MT,30047 149,06111,0.34,0.87,Ventura,"M40.7,254.8 L37.6,252.2 L34.9,247.6 L35.8,246.4 L37.7,239.2 L40.0,241.3 L44.7,242.9 L45.9,251.9 Z",CA,6111 150,06075,0.42,0.54,San Francisco,"M10.9,180.8 L10.8,180.8 L10.7,180.8 L10.8,180.7 Z M12.3,180.5 L12.3,180.5 L12.3,180.6 L12.3,180.6 Z M13.1,182.2 L13.0,182.1 L13.1,182.1 Z M12.0,183.1 L11.9,183.1 L11.9,183.1 L10.9,182.8 L10.5,182.7 L10.7,181.5 L10.9,180.8 L11.4,180.9 L11.5,180.8 L11.4,180.9 L12.8,181.2 L12.1,183.1 L12.1,183.1 Z M10.9,180.8 L11.0,180.9 L11.0,180.8 L11.0,180.8 Z M11.0,180.9 L11.0,180.9 L11.1,180.9 L11.1,180.9 Z M11.1,180.9 L11.1,180.9 L11.1,180.9 L11.1,180.9 Z",CA,6075 151,06041,0.46,0.47,Marin,"M11.1,180.9 L11.1,180.9 L11.1,180.9 L11.1,180.9 L11.0,180.9 L11.0,180.9 L11.0,180.8 L10.9,180.8 L10.9,180.8 L10.9,180.8 L10.8,180.7 L10.7,180.8 L6.9,175.9 L7.0,171.3 L8.4,171.4 L12.5,176.2 L11.5,179.2 L11.5,180.8 L11.4,180.9 L11.4,180.9 L11.2,180.9 L11.1,180.9 Z M12.3,180.6 L12.0,180.5 L12.3,180.5 L12.3,180.6 Z",CA,6041 152,44009,0.51,0.50,Washington,"M663.3,126.1 L663.6,131.0 L659.4,133.0 L659.7,131.2 L659.0,128.3 L662.7,127.1 Z",RI,44009 153,12086,0.25,0.85,Miami-Dade,"M596.0,425.7 L596.0,425.8 L595.9,425.8 L595.3,425.6 L595.6,426.0 L595.5,426.0 L595.5,426.0 L595.5,426.0 L595.4,426.0 L595.4,426.0 L595.2,425.8 L595.1,425.8 L595.1,425.8 L595.1,425.8 L595.0,425.9 L594.9,426.0 L594.9,426.0 L594.6,425.8 L594.5,426.0 L594.5,426.1 L594.5,425.6 L594.3,425.8 L593.9,425.7 L593.8,425.7 L593.8,425.7 L593.5,425.6 L593.5,425.6 L592.8,422.6 L591.5,415.1 L591.2,413.4 L591.0,412.2 L594.0,412.1 L602.5,410.3 L600.5,419.0 L600.0,423.6 L599.8,423.5 L599.6,423.6 L599.4,423.6 L599.0,423.9 L599.0,423.9 L599.0,424.0 L598.9,424.1 L599.0,424.0 L599.0,424.1 L599.1,424.2 L599.0,424.3 L599.0,424.3 L599.0,424.3 L599.0,424.3 L598.9,424.2 L599.0,424.3 L599.0,424.3 L599.0,424.3 L598.6,424.1 L598.5,424.1 L597.6,423.9 L597.4,424.8 L597.4,424.6 L597.2,424.7 L597.1,424.7 L597.1,424.7 L597.1,424.7 L597.0,424.8 L597.0,424.8 L597.0,424.8 L596.7,424.9 L596.6,425.1 L596.5,425.3 L596.7,425.2 L596.7,425.3 L596.7,425.4 L596.6,425.3 L596.4,425.4 L596.3,425.4 L596.3,425.4 L596.1,425.5 L596.1,425.7 L596.0,425.7 Z M602.4,421.3 L602.3,421.3 L602.3,421.3 L602.7,418.7 Z M601.9,421.3 L602.0,421.2 L602.1,421.2 Z",FL,12086 154,12053,0.47,0.42,Hernando,"M557.4,375.1 L557.4,373.2 L557.3,370.7 L560.5,370.2 L562.9,370.3 L563.9,371.8 L566.4,373.0 L563.6,374.2 Z",FL,12053 155,26019,0.49,0.50,Benzie,"M476.6,108.7 L478.4,108.5 L479.9,108.4 L480.1,110.1 L480.4,112.8 L478.7,113.0 L475.1,113.3 L474.6,110.4 Z",MI,26019 156,26089,0.74,0.65,Leelanau,"M479.9,108.4 L478.4,108.5 L476.6,108.7 L481.2,101.3 L482.3,107.9 L482.2,108.1 Z",MI,26089 157,26163,0.56,0.55,Wayne,"M517.5,150.0 L517.5,150.0 L517.5,150.0 L516.2,149.2 L513.2,149.7 L512.6,146.1 L512.2,144.0 L513.8,143.7 L517.9,143.0 L519.4,142.7 L520.5,142.5 L517.7,146.6 L517.7,150.1 L517.6,150.0 Z",MI,26163 158,12017,0.54,0.51,Citrus,"M557.3,370.7 L556.8,368.0 L554.8,365.7 L556.8,365.3 L557.9,364.6 L558.8,364.3 L561.4,365.5 L563.9,368.0 L562.9,370.3 L560.5,370.2 Z",FL,12017 159,36103,0.53,0.40,Suffolk,"M643.1,149.3 L644.9,148.4 L643.2,149.5 L643.2,149.4 Z M641.4,145.3 L641.0,144.6 L641.1,144.3 L641.2,144.3 L641.2,144.3 L641.2,144.3 L641.2,144.3 L641.2,144.3 L641.4,144.3 L641.7,144.3 L641.7,144.3 L641.8,144.3 L651.7,140.8 L654.3,137.5 L656.7,139.1 L660.5,137.0 L648.6,146.3 L643.0,148.8 L641.8,145.8 Z",NY,36103 160,36059,0.40,0.53,Nassau,"M641.1,144.3 L641.2,144.3 L641.2,144.3 L641.1,144.3 Z M641.2,144.3 L641.2,144.3 L641.2,144.3 L641.2,144.3 Z M641.7,144.3 L641.8,144.3 L641.8,144.3 L641.7,144.3 Z M643.0,148.8 L641.4,149.5 L639.2,150.9 L639.2,148.1 L638.4,147.7 L639.4,145.5 L641.4,145.3 L641.8,145.8 Z M643.2,149.5 L641.5,150.6 L643.1,149.3 L643.2,149.4 Z",NY,36059 161,08069,0.46,0.51,Larimer,"M237.9,184.8 L234.4,184.4 L232.6,181.5 L232.2,180.4 L230.3,174.8 L228.9,171.4 L234.5,172.0 L240.4,172.6 L240.5,172.6 L240.4,172.6 L240.8,172.7 L244.6,173.0 L243.6,183.9 L242.0,185.2 L242.0,185.2 Z",CO,8069 162,08013,0.50,0.51,Boulder,"M237.9,184.8 L242.0,185.2 L242.0,185.2 L241.6,189.5 L241.6,189.5 L241.6,189.5 L241.4,190.0 L241.2,190.2 L241.3,190.2 L241.2,190.5 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.2,190.9 L240.2,190.9 L239.1,190.7 L237.0,190.5 L237.1,190.2 L233.5,189.8 L234.2,188.1 L234.4,184.4 Z M240.8,190.2 L240.9,190.2 L240.9,190.2 L240.8,190.2 Z",CO,8013 163,08059,0.51,0.51,Jefferson,"M240.3,190.9 L240.4,191.3 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.3,190.9 L240.9,191.2 L241.5,191.0 L241.4,191.9 L241.3,193.0 L241.2,193.0 L241.0,195.1 L241.0,195.7 L241.0,195.7 L241.0,195.7 L240.9,195.6 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.9 L240.9,196.8 L240.9,196.8 L237.6,202.4 L236.6,203.7 L236.6,203.7 L236.6,203.7 L236.6,203.7 L236.6,203.7 L236.6,203.7 L235.7,203.6 L236.4,196.3 L236.6,195.1 L236.7,193.3 L236.9,191.4 L237.0,190.5 L239.1,190.7 L240.2,190.9 L240.2,190.9 Z M240.6,195.6 L240.6,195.6 L240.6,195.6 L240.6,195.6 Z M240.9,195.3 L240.9,195.3 L240.9,195.3 L240.9,195.3 Z M240.9,195.3 L240.9,195.3 L240.9,195.3 L240.9,195.3 Z M241.0,195.8 L241.0,195.8 L241.0,195.8 L241.0,195.8 Z M241.0,195.7 L241.0,195.7 L241.0,195.7 L241.0,195.7 Z M240.3,190.9 L240.3,190.9 L240.3,190.9 Z",CO,8059 164,37049,0.81,0.82,Craven,"M617.7,255.3 L616.5,251.0 L611.1,249.3 L611.1,249.3 L611.1,249.3 L611.1,249.3 L611.6,248.7 L611.1,248.1 L611.8,247.3 L613.6,246.7 L614.2,245.4 L617.7,246.7 L618.8,247.3 L618.8,247.3 L617.9,249.2 L618.8,250.5 L619.1,251.9 L622.7,251.5 L622.8,253.0 L617.7,255.3 L617.7,255.3 Z",NC,37049 165,37031,0.95,0.14,Carteret,"M617.7,255.3 L622.8,253.0 L622.7,251.5 L627.4,250.2 L626.1,256.7 L617.3,256.1 L617.0,256.0 L616.7,255.8 L616.8,255.6 L617.7,255.3 Z",NC,37031 166,48007,0.69,0.29,Aransas,"M340.9,398.6 L340.8,398.7 L340.8,398.7 L340.8,398.7 L339.3,396.3 L339.0,395.7 L339.3,396.0 L339.6,395.7 L340.9,396.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 Z M346.0,391.9 L345.9,392.4 L346.0,392.4 L345.9,392.8 L345.8,393.4 L345.2,395.9 L342.6,393.6 L341.1,392.4 L346.1,391.7 L346.1,391.7 Z M342.0,399.7 L342.1,399.7 L342.1,399.8 L342.0,399.7 Z M341.4,397.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 Z",TX,48007 167,55113,0.94,0.46,Sawyer,"M417.7,93.2 L420.6,93.0 L420.6,93.5 L420.9,98.8 L413.6,99.2 L410.8,99.4 L410.7,99.4 L410.7,99.4 L410.7,99.4 L410.4,93.6 L410.2,90.6 L414.6,90.4 L417.5,90.3 Z",WI,55113 168,22087,0.54,0.62,St. Bernard,"M453.7,365.7 L453.5,365.6 L452.7,365.5 L448.4,363.6 L447.7,362.5 L447.2,362.1 L447.2,362.1 L447.2,362.1 L447.2,362.1 L446.1,361.2 L448.7,359.6 L452.0,362.0 L454.4,357.3 L456.2,361.7 L453.8,365.8 L453.8,365.8 Z M448.7,359.6 L448.7,359.6 L448.7,359.6 Z M450.6,358.8 L450.3,359.0 L450.3,359.5 L450.3,358.9 Z M450.8,358.7 L450.8,358.7 L450.8,358.7 Z M451.0,358.1 L450.9,358.3 L450.8,358.7 L450.9,358.2 Z M451.3,357.8 L451.3,357.7 L451.3,357.7 L451.2,357.8 Z",LA,22087 169,24025,0.53,0.38,Harford,"M611.0,177.9 L608.4,176.1 L607.3,173.3 L608.4,173.0 L611.4,172.3 L611.5,172.3 L612.7,173.3 L614.0,174.6 L612.4,179.2 Z",MD,24025 170,24005,0.44,0.49,Baltimore,"M607.3,173.3 L608.4,176.1 L611.0,177.9 L611.4,180.6 L609.5,180.9 L606.7,179.4 L608.4,181.3 L607.8,181.5 L607.4,181.9 L606.0,181.3 L604.6,180.2 L604.2,178.7 L604.5,173.9 L606.9,173.3 Z",MD,24005 171,53031,0.27,0.49,Jefferson,"M56.3,14.6 L58.4,18.4 L53.1,21.8 L47.3,20.0 L46.9,21.4 L41.0,19.6 L37.7,18.2 L38.0,14.6 L36.7,11.7 L54.7,17.7 Z",WA,53031 172,24041,0.55,0.43,Talbot,"M618.9,189.1 L618.9,189.0 L618.9,189.0 L618.9,189.1 Z M618.9,189.0 L614.0,188.2 L616.1,185.7 L615.9,185.2 L616.1,184.6 L618.0,184.6 L618.0,184.6 L619.1,186.2 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L618.9,188.8 Z",MD,24041 173,24019,0.55,0.46,Dorchester,"M618.9,189.1 L618.9,189.0 L618.9,189.0 L618.9,189.0 L618.9,189.0 L618.9,188.8 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.5,188.1 L621.3,187.9 L622.2,188.6 L622.4,189.2 L622.5,189.8 L621.3,191.4 L621.2,192.7 L617.5,196.2 L614.9,193.0 Z M621.4,193.0 L621.4,193.0 L621.3,193.1 L621.3,192.9 Z M621.2,193.7 L621.3,193.5 L621.3,193.5 L621.3,193.5 Z M619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 Z M619.0,188.6 L619.0,188.6 L619.0,188.6 Z",MD,24019 174,24045,0.51,0.54,Wicomico,"M621.4,193.0 L621.3,192.9 L621.3,192.8 L621.2,192.7 L621.3,191.4 L622.5,189.8 L623.0,191.4 L627.5,190.5 L627.9,193.2 L624.7,194.1 L624.7,194.1 L622.7,194.5 L621.7,195.4 L621.0,195.1 L621.2,193.7 L621.3,193.5 L621.3,193.5 L621.3,193.2 L621.3,193.1 Z",MD,24045 175,41057,0.53,0.56,Tillamook,"M32.9,47.8 L35.7,48.9 L39.7,50.0 L39.6,53.0 L36.8,55.2 L35.8,58.7 L32.1,57.6 L32.1,60.0 L32.1,60.1 L31.9,60.6 L30.8,60.2 L28.7,59.5 L32.6,51.6 Z",OR,41057 176,08001,0.50,0.49,Adams,"M241.4,191.9 L241.5,191.0 L242.0,189.9 L242.8,189.7 L245.0,189.9 L253.2,190.6 L254.6,190.8 L258.9,191.1 L258.7,192.7 L258.5,195.5 L249.7,194.7 L243.3,194.1 L246.9,193.0 L241.3,193.0 L241.2,193.0 Z",CO,8001 177,08035,0.50,0.48,Douglas,"M237.6,202.4 L240.9,196.8 L243.1,197.0 L245.9,197.3 L245.6,200.6 L245.2,204.5 L241.6,204.2 L240.4,204.1 L238.7,203.9 L236.6,203.7 L236.6,203.7 Z",CO,8035 178,08093,0.92,0.52,Park,"M236.6,203.7 L236.1,207.9 L235.8,210.9 L231.4,210.5 L227.5,210.0 L228.5,208.3 L225.3,203.7 L225.8,199.5 L226.6,198.4 L226.6,198.4 L228.1,198.8 L230.9,195.8 L234.0,196.0 L236.4,196.3 L235.7,203.6 L236.6,203.7 L236.6,203.7 L236.6,203.7 Z",CO,8093 179,48167,0.27,0.44,Galveston,"M372.5,370.8 L372.4,370.9 L372.7,371.1 L372.9,371.3 L373.0,371.4 L373.0,371.4 L373.0,371.4 L373.4,371.5 L374.1,371.7 L376.9,374.4 L371.9,376.6 L369.3,372.2 L369.6,370.7 L370.4,371.7 Z M372.5,370.7 L372.5,370.7 L372.5,370.7 L372.5,370.7 Z M376.0,371.0 L375.9,370.9 L375.9,370.9 L376.0,370.9 Z M376.0,371.0 L376.0,371.0 L376.0,371.0 L376.0,371.0 Z M376.1,371.1 L376.1,371.1 L376.1,371.1 L376.1,371.1 Z M376.6,371.1 L376.4,371.2 L376.4,371.2 L376.5,371.1 Z M377.2,370.9 L376.7,371.1 L376.7,371.1 L377.1,370.9 Z M377.2,370.9 L377.2,370.9 L377.2,370.9 L377.2,370.9 Z M379.3,370.3 L378.6,370.6 L377.6,370.8 L378.5,370.6 Z M379.6,370.5 L379.5,370.4 L379.3,370.3 L379.5,370.3 Z M379.6,370.5 L379.6,370.5 L379.6,370.5 L379.6,370.5 Z M379.8,370.6 L379.8,370.6 L379.7,370.5 L379.7,370.5 Z M382.1,370.4 L376.1,373.4 L379.3,370.3 L379.9,371.1 L380.4,370.6 L382.1,369.8 Z",TX,48167 180,48071,0.53,0.46,Chambers,"M372.7,371.1 L373.0,371.4 L372.9,371.3 L372.7,371.2 Z M373.4,371.5 L373.0,371.4 L374.1,371.7 L374.0,371.6 Z M376.0,371.0 L376.0,371.0 L376.0,371.0 L376.0,370.9 L375.9,370.9 L375.9,370.9 L375.9,370.9 L377.1,367.3 L373.7,368.6 L374.0,366.0 L373.0,365.1 L380.1,364.9 L380.9,364.9 L382.2,364.9 L382.4,370.3 L382.1,370.4 L382.1,369.8 L380.4,370.6 L380.0,370.7 L379.8,370.6 L379.7,370.5 L379.7,370.5 L379.6,370.5 L379.6,370.5 L379.6,370.5 L379.6,370.5 L379.5,370.3 L379.3,370.3 L379.3,370.3 L379.3,370.3 L378.5,370.6 L377.6,370.8 L377.3,370.9 L377.2,370.9 L377.2,370.9 L377.2,370.9 L377.2,370.9 L377.1,370.9 L376.7,371.1 L376.6,371.1 L376.5,371.1 L376.4,371.2 L376.1,371.1 L376.1,371.1 L376.1,371.1 L376.0,371.0 Z M372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 Z M372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 Z M372.8,369.7 L372.8,369.6 L372.8,369.6 L372.9,369.7 Z M372.9,370.1 L372.9,370.1 L372.9,370.1 L372.9,370.0 Z M372.8,370.2 L372.8,370.2 L372.8,370.2 L372.8,370.2 Z M372.9,370.0 L372.9,370.0 L372.9,370.0 L372.9,370.0 Z M372.9,369.8 L373.0,369.8 L373.0,369.8 L373.0,369.8 Z M372.8,368.8 L372.8,368.8 L372.8,368.8 L372.8,368.8 Z M372.6,369.2 L372.6,369.5 L372.6,369.5 L372.5,369.4 Z M372.8,369.6 L372.6,369.5 L372.6,369.5 L372.6,369.5 Z",TX,48071 181,48201,0.50,0.50,Harris,"M372.5,370.7 L372.5,370.8 L370.4,371.7 L369.6,370.7 L368.9,370.1 L366.5,370.3 L363.7,368.9 L360.5,366.8 L358.6,360.5 L360.9,361.7 L364.6,360.3 L368.8,362.6 L371.3,360.3 L372.2,363.3 L373.0,365.1 L374.0,366.0 L373.7,368.6 L372.0,367.4 L372.8,368.8 L372.8,368.8 L372.8,368.8 L372.6,368.9 L372.6,369.2 L372.5,369.4 L372.6,369.5 L372.6,369.5 L372.6,369.5 L372.6,369.5 L372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.6 L372.8,369.7 L372.9,369.7 L372.9,369.8 L373.0,369.8 L373.0,369.8 L372.9,370.0 L372.9,370.0 L372.9,370.0 L372.9,370.0 L372.9,370.1 L372.9,370.1 L372.8,370.2 L372.8,370.2 L372.8,370.2 L372.5,370.5 L372.5,370.7 L372.5,370.7 Z",TX,48201 182,13039,0.49,0.53,Camden,"M568.4,328.8 L569.2,330.6 L568.6,334.2 L565.4,334.3 L562.5,333.3 L562.4,331.1 L561.5,329.7 L562.7,328.7 L563.6,327.3 L566.6,328.1 Z",GA,13039 183,22075,0.68,0.76,Plaquemines,"M447.7,362.5 L448.4,363.6 L452.7,365.5 L453.7,369.9 L461.5,372.5 L460.0,375.5 L448.7,371.6 L447.2,369.1 L445.6,364.8 L446.3,362.1 L447.2,362.1 L447.2,362.1 L447.2,362.1 L447.2,362.1 L447.3,362.1 Z M453.8,365.8 L453.8,365.8 L453.7,365.7 L453.8,365.8 Z",LA,22075 184,23031,0.88,0.60,York,"M667.4,92.1 L667.7,93.6 L664.8,100.8 L664.5,100.7 L663.8,100.4 L660.5,96.2 L660.2,94.1 L659.9,93.6 L658.7,90.1 L659.9,89.4 L661.0,89.1 L664.2,89.9 Z",ME,23031 185,23027,0.54,0.55,Waldo,"M680.5,70.2 L680.5,70.2 L680.5,70.2 Z M680.5,70.4 L679.0,73.1 L679.4,76.1 L676.0,75.0 L674.6,76.1 L674.1,76.1 L673.4,76.2 L674.1,74.0 L672.1,70.4 L672.7,69.3 L674.3,69.2 L675.6,70.2 L679.7,68.3 L679.6,69.3 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.4,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 L680.5,70.2 Z",ME,23027 186,12071,0.65,0.52,Lee,"M567.6,401.9 L568.6,404.5 L567.4,401.9 L567.6,401.9 Z M575.3,401.1 L578.3,400.6 L578.3,400.6 L578.5,402.0 L579.0,404.9 L578.1,408.4 L575.2,408.7 L571.1,407.7 L570.7,401.8 Z",FL,12071 187,12015,0.93,0.40,Charlotte,"M575.3,401.1 L570.7,401.8 L569.9,399.5 L567.2,398.2 L567.2,397.8 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L571.3,397.1 L577.6,396.1 L577.7,396.6 L578.3,400.6 L578.3,400.6 Z M565.7,399.5 L566.1,400.1 L565.5,399.5 L565.6,399.5 Z M567.3,398.6 L569.4,401.4 L565.9,399.5 L567.4,399.3 Z M567.4,401.9 L567.4,401.6 L567.6,401.9 L567.6,401.9 Z",FL,12015 188,34025,0.45,0.45,Monmouth,"M637.8,159.7 L632.7,159.7 L631.3,161.6 L630.8,161.0 L630.6,160.8 L630.7,159.8 L631.5,158.6 L632.5,157.9 L633.9,154.6 L637.0,154.7 Z",NJ,34025 189,08075,0.87,0.53,Logan,"M261.5,179.6 L262.0,174.6 L263.1,174.7 L264.4,174.8 L269.2,175.1 L273.6,175.5 L273.5,177.8 L273.3,179.7 L273.1,180.4 L272.8,184.9 L271.5,184.8 L271.3,184.8 L271.3,184.8 L271.3,184.8 L271.3,184.8 L263.8,184.2 L262.6,184.1 L262.7,182.7 L261.2,182.5 L261.2,182.5 Z",CO,8075 190,08123,0.50,0.51,Weld,"M261.5,179.6 L261.2,182.5 L261.2,182.5 L254.0,181.9 L253.2,190.6 L245.0,189.9 L242.8,189.7 L242.4,189.5 L241.6,189.5 L241.6,189.5 L241.6,189.5 L242.0,185.2 L242.0,185.2 L243.6,183.9 L244.6,173.0 L248.7,173.4 L255.9,174.0 L259.2,174.3 L262.0,174.6 Z M242.6,189.1 L242.7,189.2 L242.7,189.1 L242.6,189.1 Z",CO,8123 191,13179,0.87,0.88,Liberty,"M569.1,316.2 L571.0,317.1 L569.7,318.3 L567.1,318.7 L566.1,317.9 L561.8,315.6 L560.6,313.4 L560.8,313.3 L561.4,312.7 L561.5,312.5 L561.9,311.9 L566.7,313.6 Z",GA,13179 192,12075,0.18,0.21,Levy,"M557.9,364.6 L556.8,365.3 L554.8,365.7 L553.7,363.0 L548.1,361.6 L549.4,360.5 L550.6,356.3 L553.1,356.0 L554.8,356.1 L556.5,357.3 L558.7,356.9 L559.4,361.4 Z",FL,12075 193,37095,0.54,0.54,Hyde,"M627.3,237.8 L627.9,238.2 L628.6,238.0 L628.6,238.0 L628.7,238.1 L628.7,238.1 L628.7,238.1 L628.9,238.3 L629.0,238.0 L630.6,237.6 L630.9,238.1 L629.4,242.7 L626.8,243.9 L623.4,241.4 L622.0,240.7 L620.6,239.2 L621.8,238.9 L623.9,238.6 L626.7,239.7 Z M630.9,238.1 L631.0,238.1 L631.1,238.2 L631.1,238.4 Z",NC,37095 194,37055,0.33,0.72,Dare,"M630.9,238.1 L630.9,238.1 L630.6,237.6 L629.0,238.0 L630.1,232.4 L632.4,234.4 L631.1,238.4 L631.1,238.2 Z M628.7,238.1 L628.7,238.1 L628.7,238.1 L628.7,238.1 L628.7,238.1 Z M630.4,227.9 L635.1,234.4 L630.2,228.0 L630.2,228.0 Z",NC,37055 195,24047,0.44,0.48,Worcester,"M624.7,194.1 L627.9,193.2 L627.5,190.5 L629.0,190.2 L630.9,189.7 L630.7,193.4 L628.7,197.7 L627.6,198.1 L625.6,198.8 L625.6,198.8 L625.6,198.8 L626.3,197.0 L624.7,194.1 Z M630.2,197.2 L630.7,195.7 L630.4,197.1 L630.3,197.1 Z M631.4,189.6 L631.4,191.6 L631.2,189.7 L631.3,189.6 Z",MD,24047 196,24039,0.66,0.46,Somerset,"M624.7,194.1 L626.3,197.0 L625.0,198.1 L625.6,198.8 L625.6,198.8 L625.6,198.8 L625.6,198.8 L625.6,198.8 L625.6,198.8 L625.5,199.1 L625.4,199.3 L622.8,200.5 L621.7,195.4 L622.7,194.5 L624.7,194.1 Z M625.5,199.6 L625.4,199.7 L625.4,199.7 L625.5,199.6 Z M620.8,200.6 L620.6,200.5 L620.7,200.6 L620.6,200.6 L620.5,200.6 L620.5,200.6 L620.5,200.6 L620.4,200.7 L620.3,200.7 L620.0,197.7 L621.0,200.5 L620.9,200.5 Z",MD,24039 197,51001,0.55,0.48,Accomack,"M625.5,199.6 L625.5,199.6 L625.6,199.4 L625.4,199.3 L625.5,199.1 L625.6,198.8 L625.6,198.8 L627.6,198.1 L628.7,197.7 L628.7,199.9 L625.2,208.0 L625.2,206.9 L623.5,206.8 L624.1,202.5 L625.4,199.7 Z M620.5,200.6 L620.4,200.7 L620.3,200.7 L620.4,200.7 Z M620.7,200.6 L620.7,201.3 L620.5,200.6 L620.6,200.6 Z M621.0,200.5 L621.0,200.7 L620.8,200.6 L620.9,200.5 Z M630.4,197.1 L629.9,199.6 L630.2,197.2 L630.3,197.1 Z",VA,51001 198,22051,0.48,0.32,Jefferson,"M447.2,369.1 L445.6,368.2 L444.3,367.8 L444.3,365.9 L443.2,365.7 L444.0,363.6 L442.1,359.6 L443.8,360.1 L444.5,359.9 L444.3,361.8 L446.3,362.1 L445.6,364.8 Z M446.2,373.8 L446.0,374.3 L445.9,374.5 L445.8,374.3 Z M446.3,373.4 L447.8,372.8 L446.2,373.8 L446.2,373.7 Z M446.4,371.1 L446.4,371.1 L446.4,371.1 Z M446.5,369.9 L446.5,369.9 L446.3,369.9 L446.3,369.8 Z M446.1,369.5 L445.6,368.7 L446.1,369.5 L446.1,369.5 Z M445.0,369.4 L445.5,369.4 L445.6,369.5 L445.5,369.5 Z",LA,22051 199,22057,0.83,0.64,Lafourche,"M446.5,369.9 L446.2,370.7 L446.4,371.1 L446.4,371.1 L446.4,371.1 L446.1,372.5 L446.3,373.4 L446.2,373.7 L446.2,373.8 L446.2,373.8 L445.8,374.3 L445.9,374.5 L443.6,375.1 L441.2,373.0 L441.3,371.4 L434.6,364.8 L431.7,366.0 L432.8,364.0 L433.3,362.7 L434.8,362.6 L435.7,362.6 L436.2,362.6 L436.7,362.8 L436.7,362.8 L437.0,362.7 L438.6,362.8 L441.5,365.8 L443.2,365.7 L444.3,365.9 L444.3,367.8 L443.7,368.3 L445.0,369.4 L445.5,369.5 L445.6,369.5 L445.8,369.5 L446.3,369.8 L446.3,369.9 Z M436.7,362.8 L436.7,362.8 L436.7,362.8 Z M446.1,369.5 L446.1,369.5 L446.1,369.5 L446.1,369.5 Z",LA,22057 200,37129,0.74,0.48,New Hanover,"M609.1,271.9 L608.7,269.0 L608.0,267.7 L607.9,267.0 L606.5,265.6 L609.2,264.1 L610.6,265.3 L609.6,267.1 L609.1,271.9 L609.1,271.9 Z",NC,37129 201,53069,0.46,0.49,Wahkiakum,"M38.2,40.5 L38.7,39.0 L42.8,40.3 L44.0,40.6 L44.4,40.7 L43.7,42.9 L43.4,44.1 L40.9,41.6 Z",WA,53069 202,53049,0.48,0.56,Pacific,"M42.8,40.3 L38.7,39.0 L38.2,40.5 L34.8,38.2 L38.6,32.5 L36.6,31.1 L38.9,31.8 L44.7,33.6 L43.7,37.4 Z",WA,53049 203,12021,0.25,0.94,Collier,"M591.0,412.2 L591.2,413.4 L591.5,415.1 L588.0,415.8 L584.4,416.3 L583.3,416.3 L583.6,416.5 L583.5,416.5 L583.3,416.5 L583.0,416.3 L578.7,416.2 L575.2,408.7 L578.1,408.4 L579.0,404.9 L583.4,404.1 L584.2,408.6 L590.1,407.5 L590.5,409.7 Z M583.7,416.5 L583.8,416.4 L583.8,416.4 L583.8,416.5 Z",FL,12021 204,12051,0.87,0.47,Hendry,"M578.3,400.6 L587.7,399.1 L588.1,395.7 L589.1,401.9 L589.9,406.2 L590.0,406.8 L590.1,407.5 L584.2,408.6 L583.4,404.1 L579.0,404.9 L578.5,402.0 Z",FL,12051 205,28059,0.50,0.51,Jackson,"M468.5,346.2 L468.8,348.2 L469.3,352.0 L464.3,353.0 L462.1,351.9 L461.9,349.2 L461.7,347.7 L461.7,347.1 L461.7,346.7 L462.4,346.7 Z",MS,28059 206,28047,0.51,0.51,Harrison,"M461.7,347.7 L461.9,349.2 L462.1,351.9 L457.0,354.1 L455.5,353.4 L455.3,351.4 L455.1,348.7 L456.6,348.1 Z",MS,28047 207,22109,0.71,0.87,Terrebonne,"M428.1,372.6 L428.2,372.4 L428.3,372.2 L428.6,372.0 L428.7,371.9 L430.4,372.5 L428.9,371.5 L429.0,371.1 L428.8,370.9 L428.2,370.4 L428.1,369.7 L428.1,369.7 L428.1,369.7 L428.1,369.5 L428.3,369.1 L428.6,368.9 L428.7,368.7 L428.7,368.7 L428.7,368.4 L429.5,368.2 L430.7,367.6 L431.3,366.7 L431.7,366.0 L434.6,364.8 L441.3,371.4 L441.2,373.0 L437.7,376.6 L427.3,373.2 L427.9,373.1 Z",LA,22109 208,22101,0.19,0.15,St. Mary,"M428.1,369.7 L428.1,369.7 L428.1,369.7 L428.1,369.7 Z M430.7,367.6 L429.5,368.2 L428.7,368.4 L424.1,369.5 L421.7,365.9 L419.0,366.4 L422.4,362.6 L424.7,362.3 L426.1,365.2 L430.4,366.4 L430.3,367.3 Z M428.3,369.1 L428.6,368.8 L428.7,368.7 L428.6,368.9 Z M428.9,371.5 L428.8,371.0 L428.8,370.9 L429.0,371.1 Z M428.3,372.2 L428.5,371.9 L428.7,371.9 L428.6,372.0 Z M427.3,373.2 L427.3,372.9 L428.1,372.6 L427.9,373.1 Z",LA,22101 209,36005,0.50,0.47,Bronx,"M636.1,146.7 L636.1,146.7 L635.9,146.6 L636.0,146.1 L636.9,146.2 L637.7,146.2 L637.7,147.4 L636.1,147.7 L636.1,147.7 L636.1,147.7 L636.1,147.4 L636.1,146.8 Z",NY,36005 210,36061,0.88,0.02,New York,"M636.1,146.7 L636.1,146.7 L636.1,146.8 L636.1,146.7 Z M636.1,147.7 L636.1,147.7 L636.1,147.7 L635.9,147.6 L636.1,147.7 Z M636.0,149.6 L636.0,149.6 L636.0,149.6 L636.0,149.6 Z",NY,36061 211,36047,0.53,0.56,Kings,"M636.0,149.6 L636.0,149.6 L636.1,149.3 L636.1,149.1 L637.0,149.8 L637.7,150.3 L635.7,151.5 L636.0,149.6 Z",NY,36047 212,26097,0.46,0.50,Mackinac,"M496.9,85.8 L497.4,85.7 L497.5,85.7 L497.5,85.8 Z M476.5,83.8 L480.7,83.3 L483.8,83.0 L485.5,84.2 L494.2,83.2 L496.0,85.7 L491.0,85.3 L490.5,88.7 L486.8,86.3 L480.5,85.8 L477.0,88.3 L476.9,86.7 Z",MI,26097 213,23003,0.41,0.31,Aroostook,"M686.1,48.6 L685.4,49.1 L683.6,50.2 L679.5,52.5 L675.5,39.6 L671.1,40.7 L670.2,37.8 L660.2,40.9 L659.1,41.2 L656.8,41.9 L656.5,39.8 L661.3,24.9 L666.3,28.3 L672.8,23.2 L679.1,26.8 Z",ME,23003 214,23029,0.84,0.51,Washington,"M683.6,50.2 L685.4,49.1 L686.1,48.6 L690.5,48.6 L691.8,53.7 L696.0,54.7 L700.0,59.4 L697.7,64.0 L690.2,68.2 L686.5,61.6 L685.5,56.4 L686.7,55.8 Z",ME,23029 215,23013,0.58,0.41,Knox,"M674.6,76.1 L676.0,75.0 L679.4,76.1 L679.8,79.4 L676.7,81.0 L677.2,80.0 Z",ME,23013 216,26029,0.48,0.47,Charlevoix,"M484.0,100.6 L484.6,98.7 L487.2,97.2 L488.4,98.8 L491.7,98.2 L491.8,99.3 L491.9,99.7 L492.1,101.2 L490.6,101.3 L486.3,101.8 Z",MI,26029 217,44005,0.65,0.41,Newport,"M665.4,125.6 L666.2,128.1 L665.2,125.8 L665.3,125.8 Z M667.5,127.4 L666.6,127.8 L665.9,125.0 L666.7,125.0 Z",RI,44005 218,53045,0.52,0.55,Mason,"M49.5,29.6 L49.5,29.7 L49.5,29.7 L49.4,29.9 L48.0,29.5 L44.9,28.5 L46.9,21.4 L47.3,20.0 L53.1,21.8 L50.8,23.9 L52.2,23.0 L54.6,23.8 L54.0,25.7 L54.0,25.7 L53.9,26.0 L53.9,26.2 L52.7,27.5 L49.6,29.6 L49.6,29.6 Z M50.3,29.5 L50.3,29.5 L50.1,29.6 L50.0,29.6 Z",WA,53045 219,53067,0.15,0.27,Thurston,"M50.3,29.5 L52.7,29.5 L53.7,31.0 L54.9,35.4 L57.6,38.1 L46.9,34.8 L47.1,34.3 L47.1,34.3 L48.1,31.1 L48.0,29.5 L49.4,29.9 L49.5,29.7 L49.7,29.7 L50.0,29.6 L50.1,29.6 Z M49.5,29.6 L49.6,29.6 L49.6,29.6 Z",WA,53067 220,51131,0.74,0.48,Northampton,"M623.5,206.8 L625.2,206.9 L625.2,208.0 L624.3,213.8 Z",VA,51131 221,13127,0.45,0.50,Glynn,"M570.0,324.2 L570.1,324.2 L569.1,326.9 L568.4,328.8 L566.6,328.1 L563.6,327.3 L563.5,327.2 L563.7,324.6 L564.1,323.3 L564.9,322.3 L568.0,324.2 L569.7,324.0 L569.7,324.0 Z",GA,13127 222,34001,0.53,0.58,Atlantic,"M635.0,169.7 L635.1,169.8 L635.2,169.9 L635.9,172.9 L633.0,174.8 L630.9,175.0 L630.3,174.8 L630.0,173.2 L628.0,172.1 L628.3,171.5 L629.0,170.3 L629.2,169.9 L630.3,167.9 L631.8,169.3 Z M633.1,174.8 L633.1,174.8 L633.1,174.8 L633.1,174.8 Z",NJ,34001 223,34009,0.30,0.45,Cape May,"M633.1,174.8 L631.6,181.1 L630.2,177.3 L630.1,175.2 L630.3,174.8 L630.9,175.0 L633.0,174.8 L633.0,174.8 L633.1,174.8 L633.1,174.8 Z",NJ,34009 224,55029,0.71,0.36,Door,"M457.0,112.4 L458.3,109.4 L461.8,109.8 L461.4,112.0 L458.3,112.3 Z M462.3,103.4 L465.3,99.9 L462.1,109.5 L460.7,107.9 Z",WI,55029 225,24033,0.51,0.50,Prince George's,"M604.4,191.2 L604.3,191.2 L604.3,191.1 L604.4,191.1 Z M609.6,190.9 L609.6,191.0 L609.5,191.3 L609.7,191.4 L609.9,192.1 L610.0,192.4 L610.0,192.6 L610.1,192.9 L610.1,192.9 L610.1,192.9 L610.1,192.9 L610.1,192.9 L607.3,191.5 L604.4,191.5 L604.9,191.1 L604.7,189.5 L605.9,187.7 L604.4,186.8 L604.5,186.3 L605.3,183.8 L605.6,184.0 L606.0,184.1 L608.9,186.9 L609.2,189.5 L609.2,189.5 L609.2,190.2 Z",MD,24033 226,48057,0.42,0.43,Calhoun,"M345.8,393.4 L345.9,392.8 L346.0,392.4 L347.3,393.5 Z M346.1,391.1 L346.2,391.5 L346.0,391.9 L346.1,391.7 L346.1,391.7 L346.0,391.3 Z M346.5,390.1 L346.3,390.3 L346.3,390.3 L346.3,390.2 Z M346.4,389.9 L346.4,389.9 L346.4,389.9 L346.4,390.0 L346.4,390.0 L346.4,389.9 Z M346.4,389.8 L346.4,389.8 L346.4,389.8 L346.4,389.8 Z M349.3,385.0 L349.1,384.9 L349.0,384.8 L349.2,384.8 Z M351.6,385.0 L351.6,385.1 L352.0,385.0 L352.0,385.2 L351.3,387.0 L349.4,385.1 L351.6,385.2 Z M353.1,386.2 L352.8,386.4 L352.3,385.7 L352.6,385.7 L353.1,385.7 L353.1,386.0 Z M346.1,389.5 L345.8,389.8 L344.6,388.5 L344.0,387.1 L348.3,385.1 L351.9,389.8 L348.1,391.7 L346.4,389.8 Z M346.4,389.8 L346.4,389.8 L346.4,389.8 L346.4,389.8 Z M346.4,389.7 L346.3,389.7 L346.3,389.6 L346.3,389.7 Z",TX,48057 227,48391,0.48,0.48,Refugio,"M346.4,389.9 L346.4,390.0 L346.4,389.9 L346.4,389.9 Z M346.4,389.8 L346.4,389.8 L346.4,389.8 L346.4,389.8 L346.4,389.8 L346.4,389.8 L346.4,389.9 L346.4,389.9 L346.4,389.9 L346.4,390.0 L346.5,390.1 L346.3,390.2 L346.3,390.3 L345.3,390.0 L346.1,391.1 L346.0,391.3 L346.1,391.7 L341.1,392.4 L342.6,393.6 L340.8,394.5 L339.6,395.7 L339.3,396.0 L339.0,395.7 L338.1,394.7 L334.8,394.2 L335.7,392.7 L337.3,390.4 L339.2,388.8 L340.6,387.6 L342.3,387.7 L344.6,388.5 L345.8,389.8 L346.1,389.5 L346.3,389.6 L346.3,389.7 L346.4,389.7 L346.4,389.8 Z",TX,48391 228,48321,0.03,0.64,Matagorda,"M353.1,386.2 L353.1,386.0 L353.1,385.7 L353.2,383.5 L353.4,380.8 L358.5,377.7 L359.9,376.3 L361.5,380.7 L365.4,383.2 L358.7,385.5 L353.8,389.0 Z",TX,48321 229,04011,0.49,0.29,Greenlee,"M175.6,286.5 L174.7,293.2 L174.3,295.9 L173.8,299.5 L173.2,303.1 L172.6,307.7 L172.4,309.0 L171.6,308.8 L171.4,308.8 L167.7,297.2 L169.1,287.6 L169.1,287.6 L171.5,285.9 Z",AZ,4011 230,32015,0.41,0.77,Lander,"M93.6,147.9 L95.9,148.4 L98.9,149.1 L95.4,164.3 L91.8,179.1 L82.6,176.9 L76.7,176.7 L77.8,172.5 L82.1,170.2 L83.2,162.6 L87.5,155.9 L88.3,154.8 L92.2,153.7 Z",NV,32015 231,56031,0.50,0.50,Platte,"M242.8,148.7 L243.1,145.8 L247.9,146.2 L249.5,146.4 L250.9,146.5 L250.0,156.1 L249.4,162.5 L249.4,162.5 L243.6,161.9 L241.5,161.6 L242.3,154.4 L242.8,148.7 L242.8,148.7 Z",WY,56031 232,56021,0.51,0.51,Laramie,"M240.5,172.6 L240.4,172.6 L240.4,172.6 L240.9,167.2 L241.5,161.6 L243.6,161.9 L249.4,162.5 L249.4,162.5 L249.2,163.9 L256.7,164.7 L256.6,166.0 L256.5,167.5 L256.1,171.4 L255.9,174.0 L248.7,173.4 L244.6,173.0 L240.8,172.7 Z",WY,56021 233,47149,0.51,0.51,Rutherford,"M485.5,255.6 L486.7,253.9 L489.7,255.6 L491.8,255.8 L491.8,257.0 L491.6,260.1 L491.1,260.4 L491.2,261.3 L489.1,261.8 L485.7,261.0 L485.2,260.9 L485.0,260.7 L485.9,259.2 L485.5,256.3 L485.5,256.3 Z",TN,47149 234,31031,0.50,0.50,Cherry,"M301.8,143.7 L306.3,143.9 L306.2,145.3 L306.1,146.4 L306.0,153.4 L305.9,159.2 L304.9,159.2 L304.7,159.1 L300.4,158.9 L297.5,158.7 L293.2,158.5 L290.2,158.3 L285.9,158.0 L283.0,157.7 L282.6,157.7 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L288.6,143.0 L293.6,143.2 L293.6,143.2 Z M283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 Z",NE,31031 235,32023,0.59,0.28,Nye,"M92.3,219.0 L92.3,219.0 L92.3,219.0 L92.3,219.0 L92.3,219.0 L89.9,230.0 L89.8,233.5 L83.1,223.5 L76.2,213.1 L80.2,196.3 L75.3,187.0 L70.6,178.2 L75.4,176.7 L76.1,176.7 L76.7,176.7 L82.6,176.9 L91.8,179.1 L96.3,180.1 L100.6,181.1 L104.3,184.9 L110.5,191.5 L108.3,201.8 L96.8,199.3 L92.3,218.9 L92.3,219.0 L92.3,219.0 Z M92.3,219.0 L92.3,219.0 L92.3,219.0 Z",NV,32023 236,32017,0.47,0.60,Lincoln,"M92.3,219.0 L92.3,219.0 L92.3,219.0 Z M92.3,219.0 L92.3,219.0 L92.3,219.0 Z M122.7,194.0 L122.5,194.9 L122.4,195.8 L121.4,200.8 L121.0,202.7 L119.9,208.1 L119.1,211.6 L117.9,217.7 L117.2,221.6 L117.0,222.3 L116.7,224.1 L94.4,219.3 L92.3,219.0 L92.3,219.0 L92.3,219.0 L92.3,218.9 L94.3,210.3 L96.8,199.3 L108.3,201.8 L110.5,191.5 L114.3,192.3 Z",NV,32017 237,32003,0.50,0.25,Clark,"M92.3,219.0 L94.4,219.3 L116.7,224.1 L114.6,234.8 L112.6,237.3 L110.1,234.8 L104.8,234.6 L104.1,250.3 L102.7,252.8 L98.8,247.0 L94.3,240.3 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.9,236.6 L91.4,235.9 L89.8,233.5 L89.9,230.0 L92.3,219.0 L92.3,219.0 L92.3,219.0 Z M92.3,219.0 L92.3,219.0 L92.3,219.0 Z",NV,32003 238,49027,0.51,0.52,Millard,"M122.4,195.8 L122.5,194.9 L122.7,194.0 L125.5,180.6 L125.6,179.9 L148.9,184.1 L148.5,187.9 L150.8,188.5 L150.5,190.4 L150.0,193.0 L150.0,193.0 L146.5,197.7 L142.2,199.6 L137.0,198.5 Z",UT,49027 239,12029,0.52,0.52,Dixie,"M550.3,352.3 L550.1,353.6 L550.6,356.3 L549.4,360.5 L548.1,361.6 L543.9,358.3 L543.5,356.0 L544.1,355.9 L544.5,353.2 L549.8,352.4 L550.3,352.3 Z M550.4,352.3 L550.4,352.3 L550.6,352.3 L550.4,352.4 Z",FL,12029 240,12067,0.50,0.46,Lafayette,"M550.3,352.3 L549.8,352.4 L544.5,353.2 L543.6,352.2 L542.8,346.0 L543.7,345.8 L544.5,345.7 L545.2,348.1 L550.8,351.2 L550.9,351.5 L550.6,352.3 L550.4,352.3 L550.4,352.3 L550.3,352.3 Z",FL,12067 241,12121,0.49,0.52,Suwannee,"M550.8,351.2 L545.2,348.1 L544.5,345.7 L544.8,344.2 L545.3,343.5 L547.7,342.4 L550.9,343.5 L551.8,349.4 L551.8,350.3 L550.9,350.8 Z",FL,12121 242,49023,0.78,0.58,Juab,"M125.6,179.9 L126.3,176.3 L126.8,173.9 L148.4,178.1 L150.8,176.7 L151.2,180.7 L155.4,178.9 L157.0,181.1 L154.4,188.0 L150.8,188.5 L148.5,187.9 L148.9,184.1 Z",UT,49023 243,53019,0.75,0.07,Ferry,"M100.1,28.8 L103.3,17.4 L104.7,11.8 L111.4,13.5 L111.2,19.4 L109.3,25.7 L105.5,31.3 L105.1,32.1 Z",WA,53019 244,53073,0.04,0.29,Whatcom,"M82.9,6.0 L83.6,6.9 L82.4,11.8 L80.6,11.6 L63.5,6.5 L62.4,0.0 Z",WA,53073 245,39003,0.48,0.55,Allen,"M505.9,171.5 L508.8,171.0 L511.5,169.7 L511.7,171.0 L511.8,171.3 L512.0,172.9 L512.1,174.3 L509.3,174.7 L505.5,174.4 L505.2,172.3 Z",OH,39003 246,39137,0.48,0.51,Putnam,"M511.5,169.7 L508.8,171.0 L505.9,171.5 L505.0,170.8 L504.8,169.4 L505.6,169.3 L505.2,166.4 L505.6,166.3 L506.6,166.2 L509.7,165.8 L511.0,165.6 L511.1,166.7 Z",OH,39137 247,18135,0.51,0.50,Randolph,"M496.5,187.0 L496.4,185.9 L496.4,185.8 L496.4,185.8 L496.4,185.8 L496.4,185.8 L496.4,185.8 L496.0,183.1 L495.9,182.0 L498.4,181.7 L501.1,181.3 L501.4,183.3 L501.7,186.4 L499.3,186.7 L496.7,187.0 Z",IN,18135 248,18065,0.49,0.50,Henry,"M496.4,185.8 L496.5,187.0 L496.7,187.0 L497.0,189.2 L496.9,190.6 L496.3,190.7 L495.8,190.8 L494.0,191.0 L492.1,191.2 L491.9,189.8 L492.0,188.6 L491.9,187.6 L491.8,186.4 L494.5,186.1 L496.4,185.8 L496.4,185.8 L496.4,185.8 Z",IN,18065 249,18177,0.48,0.51,Wayne,"M496.7,187.0 L499.3,186.7 L501.7,186.4 L501.7,186.6 L501.8,187.9 L502.0,189.6 L502.2,191.0 L499.4,191.3 L499.4,191.6 L497.5,191.8 L496.9,190.6 L497.0,189.2 Z",IN,18177 250,48443,0.74,0.82,Terrell,"M273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L273.8,349.5 L274.6,349.5 L274.8,349.9 L275.3,350.8 L275.5,351.2 L273.6,355.7 L273.1,361.9 L273.0,364.1 L267.9,363.6 L264.7,361.9 L262.7,360.0 L261.4,358.9 L261.7,355.0 L265.0,355.2 L265.4,349.9 L268.4,349.1 Z",TX,48443 251,48105,0.94,0.55,Crockett,"M273.8,349.5 L273.7,349.0 L272.5,345.1 L265.3,341.6 L265.9,341.7 L266.5,341.7 L271.5,342.1 L274.1,342.3 L278.1,342.6 L281.4,342.8 L283.6,342.9 L286.0,343.0 L285.8,346.3 L285.6,349.3 L285.5,352.3 L285.2,356.4 L281.0,356.1 L273.6,355.7 L275.3,350.8 L275.5,350.2 L274.8,349.9 L273.8,349.5 Z",TX,48105 252,47125,0.52,0.54,Montgomery,"M475.7,251.4 L472.8,251.3 L471.8,251.3 L471.7,250.9 L471.0,248.1 L470.6,246.4 L472.9,246.2 L474.7,246.0 L475.9,245.9 L477.7,245.7 L477.8,247.2 L477.9,248.8 L475.9,250.7 L475.9,251.3 L475.9,251.3 Z",TN,47125 253,51685,0.52,0.70,Manassas Park,"M599.0,191.1 L599.0,191.1 L599.0,191.1 L599.0,191.1 Z M599.0,191.1 L599.7,191.2 L599.2,191.2 L599.0,191.1 L599.0,191.1 Z",VA,51685 254,18119,0.51,0.50,Owen,"M479.5,200.0 L478.8,200.3 L479.2,203.1 L476.4,203.3 L474.3,203.5 L474.1,200.6 L475.3,198.3 L477.3,198.1 L478.6,198.0 L479.3,198.0 Z",IN,18119 255,18105,0.50,0.49,Monroe,"M479.2,203.1 L478.8,200.3 L479.5,200.0 L479.5,200.1 L482.8,199.8 L483.4,204.6 L484.1,204.5 L484.2,205.3 L484.2,205.5 L482.0,205.7 L479.5,206.0 L479.4,204.8 Z",IN,18105 256,18093,0.51,0.50,Lawrence,"M479.5,206.0 L482.0,205.7 L484.2,205.5 L484.7,205.5 L485.2,209.2 L485.2,209.2 L484.8,209.8 L484.9,210.5 L482.9,210.7 L480.0,211.1 L479.9,209.8 L479.6,207.4 L479.6,206.8 Z",IN,18093 257,18071,0.52,0.57,Jackson,"M484.7,205.5 L484.2,205.5 L484.2,205.3 L484.1,204.5 L486.0,204.3 L487.2,204.2 L490.1,204.0 L490.8,203.5 L491.1,205.9 L491.3,207.8 L490.9,209.0 L490.3,209.2 L490.3,209.2 L486.3,208.8 L485.2,209.2 Z",IN,18071 258,18101,0.48,0.50,Martin,"M479.6,207.4 L479.9,209.8 L480.0,211.1 L480.2,212.6 L480.3,213.7 L478.2,213.9 L477.1,214.4 L477.1,214.4 L476.6,209.2 L476.7,207.7 L476.7,207.7 L478.7,207.5 Z",IN,18101 259,08009,0.50,0.50,Baca,"M263.9,231.1 L264.1,231.1 L267.0,231.4 L268.2,231.5 L272.9,231.8 L277.6,232.1 L277.5,233.9 L277.3,236.4 L277.3,237.0 L276.9,243.0 L268.1,242.3 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L263.9,241.9 L262.9,241.9 L263.5,235.5 L263.9,231.1 L263.9,231.1 Z",CO,8009 260,08071,0.51,0.47,Las Animas,"M263.5,235.5 L262.9,241.9 L254.7,241.2 L250.6,240.9 L246.1,240.5 L235.2,239.5 L235.5,237.3 L235.7,234.5 L241.3,233.1 L247.2,226.8 L250.1,228.1 L251.0,228.5 L250.9,230.0 L259.5,230.8 L262.2,231.0 L263.9,231.1 L263.9,231.1 L263.9,231.1 L263.6,235.5 Z",CO,8071 261,37137,0.47,0.47,Pamlico,"M622.3,245.1 L624.3,246.5 L621.5,251.3 L618.8,250.5 L617.9,249.2 L618.8,247.3 L618.8,247.3 L622.4,246.8 Z",NC,37137 262,37013,0.54,0.52,Beaufort,"M618.8,247.3 L617.7,246.7 L614.2,245.4 L615.2,242.9 L613.4,240.2 L616.1,240.9 L617.9,239.8 L619.2,239.5 L620.6,239.2 L622.0,240.7 L623.4,241.4 L622.2,244.1 L622.3,245.1 L622.4,246.8 L618.8,247.3 Z",NC,37013 263,35043,0.48,0.50,Sandoval,"M204.4,252.8 L200.1,252.2 L200.1,252.2 L200.1,252.2 L200.4,250.4 L200.6,248.6 L210.6,249.8 L210.1,253.5 L218.7,255.0 L216.3,257.4 L218.3,258.5 L217.4,266.0 L217.3,267.5 L217.3,267.5 L211.7,266.8 L204.3,265.9 L203.9,264.4 L203.0,264.3 L203.0,264.3 L203.5,259.9 Z M218.1,256.8 L218.5,256.9 L218.5,256.9 L218.5,256.9 L218.5,257.1 Z",NM,35043 264,42101,0.41,0.43,Philadelphia,"M625.3,164.3 L624.6,165.0 L624.5,165.4 L624.5,165.4 L624.5,165.6 L624.6,166.1 L623.6,166.9 L623.3,165.9 L622.6,165.4 L622.8,163.4 L625.3,162.0 L626.0,162.2 L626.1,163.4 L625.7,163.9 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 Z M625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 Z",PA,42101 265,34007,0.46,0.50,Camden,"M624.5,165.4 L624.5,165.6 L624.5,165.4 L624.5,165.4 Z M624.8,166.5 L624.7,165.4 L625.4,164.5 L628.0,167.3 L630.3,167.9 L629.2,169.9 L629.0,170.3 L625.7,168.1 Z",NJ,34007 266,37133,0.41,0.31,Onslow,"M609.2,254.1 L615.6,254.3 L616.7,255.8 L617.0,256.0 L617.3,256.1 L617.5,257.4 L612.7,262.1 L612.2,262.0 L610.0,258.3 L609.7,254.9 Z M612.9,262.3 L614.7,261.0 L613.0,262.3 L613.0,262.3 Z",NC,37133 267,37103,0.55,0.50,Jones,"M616.7,255.8 L615.6,254.3 L609.2,254.1 L609.1,254.0 L608.3,253.7 L610.5,250.9 L610.8,250.4 L610.7,250.2 L610.3,249.3 L611.1,249.3 L611.1,249.3 L611.1,249.3 L616.5,251.0 L617.7,255.3 L617.7,255.3 L616.8,255.6 Z",NC,37103 268,24035,0.53,0.47,Queen Anne's,"M616.1,185.7 L614.1,185.0 L615.6,181.3 L616.1,179.6 L619.3,178.7 L619.5,179.5 L619.8,180.4 L618.8,181.2 L618.0,184.6 L618.0,184.6 L616.1,184.6 Z",MD,24035 269,55117,0.52,0.50,Sheboygan,"M458.4,125.5 L459.0,128.5 L458.0,131.4 L456.8,131.5 L455.1,131.7 L454.5,131.7 L453.7,131.8 L453.5,130.2 L453.2,126.0 L454.3,125.9 L454.6,125.8 L457.1,125.6 Z",WI,55117 270,31105,0.50,0.50,Kimball,"M264.4,174.8 L263.1,174.7 L262.0,174.6 L259.2,174.3 L255.9,174.0 L256.1,171.4 L256.5,167.5 L261.9,168.0 L265.0,168.2 L265.0,168.2 L264.5,174.0 Z",NE,31105 271,08125,0.94,0.52,Yuma,"M271.5,184.8 L272.8,184.9 L276.0,185.1 L280.6,185.4 L280.6,186.2 L280.5,186.9 L280.4,189.1 L280.1,192.7 L279.9,195.4 L279.7,199.9 L275.5,199.6 L269.9,199.3 L270.5,192.0 L271.3,184.8 L271.3,184.8 Z",CO,8125 272,48389,0.53,0.65,Reeves,"M240.5,339.3 L242.6,326.6 L243.0,324.4 L243.3,324.4 L243.6,324.5 L245.9,328.5 L248.4,330.8 L250.3,334.7 L256.6,336.2 L252.9,340.1 L247.5,345.7 L247.5,345.7 L243.6,342.1 L240.5,339.3 Z",TX,48389 273,37187,0.45,0.50,Washington,"M623.9,238.6 L621.8,238.9 L620.6,239.2 L619.2,239.5 L617.9,239.8 L618.3,238.2 L618.4,236.9 L618.7,236.6 L619.0,235.4 L623.0,234.1 L623.4,234.5 L623.4,237.2 Z",NC,37187 274,45015,0.46,0.42,Berkeley,"M585.4,294.9 L585.3,295.2 L584.9,295.0 L582.7,292.9 L581.3,292.8 L578.5,291.1 L577.7,289.4 L579.1,288.4 L579.1,285.9 L580.1,285.7 L580.6,284.8 L582.4,284.4 L587.1,286.9 L590.1,287.6 L590.6,287.8 L588.1,289.8 Z",SC,45015 275,47021,0.44,0.51,Cheatham,"M477.7,255.7 L477.4,251.2 L475.9,251.3 L475.9,251.3 L475.9,250.7 L477.9,248.8 L479.8,250.1 L480.8,249.8 L480.8,249.8 L480.1,254.1 L479.5,255.6 L479.1,255.6 Z M477.8,251.6 L477.9,251.6 L477.9,251.5 L477.8,251.6 Z",TN,47021 276,22095,0.43,0.47,St. John the Baptist,"M441.3,355.6 L440.1,357.0 L440.4,359.1 L438.3,360.5 L438.6,362.8 L437.0,362.7 L436.7,362.8 L436.7,362.8 L436.7,362.8 L436.1,360.3 L436.7,358.1 L436.7,357.3 L436.7,357.2 L437.9,357.5 L438.8,356.1 L440.5,355.9 Z",LA,22095 277,25005,0.49,0.53,Bristol,"M665.9,125.0 L665.8,124.2 L665.2,124.4 L664.7,124.0 L663.9,123.8 L663.9,123.8 L663.1,121.9 L662.2,120.6 L662.4,120.6 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L667.7,121.3 L670.3,124.5 L669.7,126.1 L667.5,127.4 L666.7,125.0 Z M665.3,117.8 L665.3,117.8 L665.3,117.8 Z",MA,25005 278,44001,0.59,0.39,Bristol,"M664.7,124.0 L665.2,124.4 L665.2,125.6 L663.6,124.4 L663.6,124.3 L663.9,123.8 L663.9,123.8 Z M665.2,125.8 L665.3,125.8 L665.4,125.6 L665.3,125.8 Z",RI,44001 279,25023,0.49,0.46,Plymouth,"M665.3,117.8 L666.9,116.3 L666.4,114.9 L666.9,114.2 L667.6,114.2 L667.9,115.3 L668.2,114.2 L672.2,118.3 L673.2,120.5 L672.3,121.7 L672.4,122.0 L671.3,122.2 L670.3,124.5 L667.7,121.3 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 Z",MA,25023 280,53041,0.51,0.53,Lewis,"M46.9,34.8 L57.6,38.1 L61.5,39.8 L66.0,40.1 L66.8,41.6 L63.4,46.4 L57.2,44.6 L55.3,44.0 L45.8,41.1 L44.4,40.7 L44.0,40.6 L42.8,40.3 L43.7,37.4 L44.7,33.6 L46.0,34.0 L47.1,34.3 Z",WA,53041 281,53027,0.11,0.42,Grays Harbor,"M47.1,34.3 L46.0,34.0 L44.7,33.6 L38.9,31.8 L36.6,31.1 L40.7,29.4 L37.1,26.8 L37.7,18.2 L41.0,19.6 L46.9,21.4 L44.9,28.5 L48.0,29.5 L48.1,31.1 L47.1,34.3 Z",WA,53027 282,30091,0.91,0.12,Sheridan,"M256.6,38.8 L267.9,39.8 L267.7,41.9 L267.3,45.9 L267.1,48.3 L267.0,50.1 L260.4,49.5 L256.8,46.1 L256.3,44.6 Z",MT,30091 283,24003,0.70,0.49,Anne Arundel,"M608.9,186.9 L606.0,184.1 L606.6,183.6 L607.4,181.9 L607.8,181.5 L608.4,181.3 L608.9,181.7 L609.6,181.6 L611.4,183.2 L611.4,189.6 L610.2,189.8 L609.2,189.5 L609.2,189.5 Z",MD,24003 284,01095,0.49,0.49,Marshall,"M494.5,279.5 L494.5,279.5 L494.5,279.5 L495.2,279.6 L495.8,280.3 L495.2,281.2 L495.7,285.0 L494.4,285.5 L493.1,287.0 L491.5,285.4 L490.8,284.5 L490.4,283.8 L488.9,283.9 L488.8,282.8 L488.9,279.9 L490.8,280.8 L491.9,278.7 L494.4,278.4 L494.5,279.5 L494.5,279.5 L494.5,279.5 L494.4,279.6 Z",AL,1095 285,01071,0.05,0.56,Jackson,"M494.5,279.5 L494.5,279.5 L494.5,279.5 L494.4,279.6 Z M495.8,280.3 L494.4,278.4 L491.9,278.7 L491.4,278.2 L491.4,272.1 L492.3,272.0 L497.6,271.5 L499.1,271.3 L501.1,271.1 L501.3,272.0 L501.7,273.2 L499.3,277.4 Z",AL,1071 286,47051,0.47,0.47,Franklin,"M497.6,271.5 L492.3,272.0 L491.4,272.1 L491.3,272.1 L491.3,272.1 L491.2,270.9 L491.1,269.8 L491.1,268.0 L491.5,266.3 L491.5,266.3 L492.9,265.7 L496.3,266.5 L496.8,267.2 L497.0,267.6 L497.1,267.6 Z",TN,47051 287,47031,0.50,0.50,Coffee,"M491.5,266.3 L491.1,265.4 L491.4,265.0 L491.5,263.4 L491.2,261.3 L491.1,260.4 L491.6,260.1 L492.5,260.7 L494.7,260.5 L495.3,261.9 L496.4,262.6 L496.5,265.0 L496.3,266.5 L492.9,265.7 L491.5,266.3 Z",TN,47031 288,47145,0.55,0.47,Roane,"M514.3,258.0 L514.3,258.0 L513.8,258.2 L513.7,258.5 L513.4,258.5 L513.2,258.5 L513.1,257.5 L511.6,256.9 L511.4,256.5 L510.7,255.8 L511.3,255.1 L511.9,254.2 L514.9,252.6 L516.1,251.3 L516.6,252.2 L517.4,253.5 L517.5,253.6 L517.5,253.7 L516.5,254.9 L514.3,258.0 L514.3,258.0 L514.3,258.0 L514.3,258.0 L514.3,258.0 L514.3,258.0 L514.3,258.0 L514.2,258.0 Z",TN,47145 289,13293,0.52,0.54,Upson,"M523.3,302.0 L523.3,302.0 L523.3,302.0 L523.2,301.9 Z M523.3,302.0 L523.3,302.0 L523.3,302.0 L523.5,302.1 L523.7,302.1 L525.8,301.8 L525.9,302.8 L526.0,303.8 L526.1,304.2 L525.8,305.0 L525.3,307.0 L524.7,306.3 L524.0,306.2 L522.5,305.7 L520.6,304.3 L520.3,303.8 L520.2,302.9 L520.6,302.4 Z",GA,13293 290,13231,0.48,0.46,Pike,"M523.3,302.0 L523.3,302.0 L520.6,302.4 L520.2,302.9 L519.9,301.7 L520.1,299.3 L520.7,298.8 L523.6,298.7 L523.9,301.2 L523.7,302.1 L523.5,302.1 L523.3,302.0 L523.3,302.0 L523.2,301.9 Z",GA,13231 291,51191,0.47,0.49,Washington,"M544.5,237.2 L543.8,237.7 L543.0,238.3 L542.8,238.3 L542.4,238.4 L542.1,238.0 L541.6,236.6 L544.6,233.7 L547.6,231.9 L549.8,234.0 L551.4,236.3 L551.4,236.6 L551.0,236.8 L549.8,237.0 L548.5,237.1 L547.2,237.7 L544.3,238.1 L544.8,237.5 L544.6,237.3 L544.5,237.2 L544.5,237.2 Z",VA,51191 292,51520,0.51,0.68,Bristol,"M544.5,237.2 L544.4,237.2 L544.5,237.2 L544.5,237.2 L544.5,237.2 L544.5,237.2 L544.5,237.2 Z M543.8,237.7 L544.6,237.3 L544.6,237.3 L544.8,237.5 L544.3,238.1 L543.4,238.2 L543.0,238.3 Z",VA,51520 293,13249,0.45,0.47,Schley,"M523.7,312.2 L523.7,312.2 L523.7,312.2 L524.3,312.5 L525.3,312.4 L525.4,313.7 L526.6,314.6 L526.8,315.8 L523.2,316.1 L523.2,316.1 L523.2,316.1 L523.2,313.9 L523.2,311.9 L523.6,311.7 L523.7,312.0 L523.7,312.2 L523.7,312.2 L523.7,312.2 L523.6,312.3 Z",GA,13249 294,13269,0.40,0.49,Taylor,"M523.7,312.2 L523.7,312.2 L523.7,312.2 L523.6,312.3 Z M524.0,306.2 L524.7,306.3 L525.3,307.0 L526.7,307.1 L528.5,309.3 L527.8,309.4 L527.8,309.5 L527.8,309.5 L527.8,309.5 L527.8,309.5 L527.8,309.5 L526.9,309.9 L525.3,312.4 L524.3,312.1 L523.7,312.0 L523.2,311.9 L522.9,310.8 L522.2,309.6 L523.3,306.7 Z M527.8,309.5 L527.8,309.5 L527.8,309.5 L527.8,309.5 L527.8,309.5 L527.8,309.5 Z M527.8,309.5 L527.8,309.5 L527.8,309.5 L528.0,309.5 L528.4,309.4 L528.4,309.5 L528.3,309.7 L528.1,309.6 Z",GA,13269 295,13079,0.44,0.44,Crawford,"M528.5,309.3 L526.7,307.1 L525.3,307.0 L525.8,305.0 L526.1,304.2 L528.1,303.9 L529.4,303.8 L530.8,305.6 L532.4,306.0 L532.4,306.0 L532.4,306.0 L531.5,306.1 Z",GA,13079 296,13197,0.55,0.51,Marion,"M522.2,309.6 L522.9,310.8 L523.2,311.9 L523.2,313.9 L523.2,316.1 L523.2,316.1 L523.2,316.1 L523.2,316.1 L523.2,316.3 L523.3,316.7 L521.9,316.9 L520.0,315.4 L519.9,315.4 L519.8,315.4 L519.3,311.1 L519.5,310.4 L520.6,310.3 Z",GA,13197 297,51095,0.47,0.60,James City,"M611.9,213.8 L612.0,214.1 L611.9,214.3 L611.8,214.0 Z M612.9,210.7 L613.4,211.2 L614.4,211.9 L613.4,212.2 L613.8,213.2 L613.6,213.2 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 L614.0,214.1 L614.6,213.7 L615.0,214.1 L615.7,214.0 L615.9,214.3 L615.9,214.3 L615.9,214.3 L615.9,214.3 L615.9,214.3 L616.1,214.7 L615.8,215.2 L614.1,214.6 L611.9,213.7 L611.7,212.7 L611.2,212.5 L611.2,211.6 Z M613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 Z",VA,51095 298,51830,0.49,0.39,Williamsburg,"M613.7,213.8 L613.7,213.8 L613.6,213.2 L613.8,213.2 L614.4,213.3 L614.6,213.7 L614.0,214.1 L613.7,213.8 L613.7,213.8 L613.7,213.8 Z M613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 Z M613.7,213.8 L613.7,213.8 L613.7,213.8 Z M613.7,213.8 L613.7,213.8 L613.7,213.8 L613.7,213.8 Z",VA,51830 299,13273,0.53,0.48,Terrell,"M526.0,323.9 L526.0,323.9 L526.0,323.9 L526.2,323.8 L526.3,325.0 L525.6,325.1 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L522.7,325.5 L521.6,323.0 L521.3,320.6 L523.4,320.3 L523.5,319.5 L523.5,319.6 L525.2,320.9 L526.4,321.5 L526.2,323.1 L526.0,323.8 L526.0,323.8 L526.0,323.9 L525.9,324.0 Z M524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 Z",GA,13273 300,13037,0.50,0.52,Calhoun,"M524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.2,326.5 L524.8,328.3 L523.9,328.6 L521.8,328.8 L519.6,329.0 L519.1,328.0 L519.0,327.2 L518.9,326.0 L521.2,325.7 L522.7,325.5 L524.1,325.3 L524.1,325.3 L524.1,325.3 Z M524.1,325.3 L524.1,325.3 L524.1,325.3 Z",GA,13037 301,13177,0.55,0.50,Lee,"M526.0,323.9 L526.0,323.9 L526.0,323.9 L525.9,324.0 Z M525.2,320.9 L525.1,320.2 L531.0,319.5 L530.9,320.0 L530.9,320.5 L529.9,322.9 L530.2,324.0 L529.9,324.5 L526.3,325.0 L526.2,323.1 L526.1,322.1 Z",GA,13177 302,39063,0.53,0.50,Hancock,"M516.7,164.8 L516.8,165.2 L517.2,167.7 L516.6,169.2 L516.4,170.8 L515.0,170.9 L511.8,171.3 L511.7,171.0 L511.5,169.7 L511.1,166.7 L511.0,165.6 L512.9,165.3 L516.7,164.8 Z",OH,39063 303,39173,0.47,0.50,Wood,"M516.7,164.8 L516.7,164.8 L512.9,165.3 L511.0,165.6 L510.5,162.6 L510.4,161.5 L513.8,157.6 L515.8,157.3 L516.0,159.0 L516.1,159.3 L516.2,160.4 L516.3,161.2 L516.4,161.8 L516.5,163.2 L516.5,163.3 L516.6,163.3 L516.6,163.3 L516.6,163.6 L516.7,164.8 Z",OH,39173 304,39175,0.47,0.51,Wyandot,"M516.4,170.8 L516.6,169.2 L517.2,167.7 L519.1,167.4 L521.0,167.1 L521.3,169.3 L521.7,171.9 L519.3,172.3 L517.9,172.8 L516.9,172.6 Z",OH,39175 305,49033,0.45,0.51,Rich,"M170.6,146.3 L170.0,150.4 L169.5,153.2 L168.9,156.9 L168.6,158.7 L167.8,159.3 L165.9,160.1 L165.6,160.0 L165.6,160.0 L165.6,160.0 L165.6,160.0 L166.3,158.9 L164.2,156.1 L163.6,155.6 L163.3,154.9 L165.0,150.8 L165.0,145.3 L167.4,145.7 Z M165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 Z",UT,49033 306,56023,0.17,0.78,Lincoln,"M169.5,153.2 L170.0,150.4 L170.6,146.3 L171.2,142.9 L172.1,137.8 L172.7,134.4 L173.5,129.4 L173.7,128.2 L174.3,124.5 L176.9,126.3 L179.7,126.8 L177.5,139.8 L177.6,142.7 L183.6,143.8 L183.0,148.2 L181.9,155.3 L181.9,155.3 L177.8,154.6 Z",WY,56023 307,56037,0.50,0.51,Sweetwater,"M183.0,148.2 L183.6,143.8 L190.4,145.0 L196.0,145.8 L204.3,146.9 L214.8,148.4 L213.7,158.4 L208.4,157.7 L207.1,168.7 L203.0,168.1 L192.9,166.7 L187.3,165.9 L181.0,165.0 L180.9,165.0 L180.4,164.9 L181.0,160.8 L181.9,155.3 L181.9,155.3 Z",WY,56037 308,16007,0.48,0.50,Bear Lake,"M172.1,137.8 L171.2,142.9 L170.6,146.3 L167.4,145.7 L165.0,145.3 L164.1,141.6 L165.0,138.3 L165.5,135.4 Z",ID,16007 309,56039,0.22,0.49,Teton,"M179.7,126.8 L176.9,126.3 L174.3,124.5 L174.5,123.5 L174.8,121.4 L175.5,117.5 L176.1,113.4 L177.1,107.3 L177.5,105.3 L177.8,102.9 L177.9,102.1 L185.8,104.8 L188.1,115.0 L187.6,118.2 L186.7,124.0 L182.9,124.9 Z",WY,56039 310,16081,0.47,0.46,Teton,"M176.1,113.4 L175.5,117.5 L174.8,121.4 L172.7,119.0 L170.9,118.7 L171.6,114.4 L171.7,113.7 L174.3,114.0 Z",ID,16081 311,22023,0.51,0.42,Cameron,"M391.5,361.9 L400.2,361.7 L402.2,361.9 L405.7,361.7 L406.0,361.7 L407.8,361.7 L408.0,369.3 L399.3,366.4 L390.0,367.9 L390.5,363.1 L391.2,362.4 L391.5,362.0 L391.5,362.0 L391.5,362.0 L391.5,362.0 L391.5,362.0 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 Z",LA,22023 312,22019,0.50,0.50,Calcasieu,"M391.5,361.9 L391.5,362.0 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.8,361.8 L391.9,360.5 L391.6,358.7 L390.7,357.2 L391.1,356.0 L394.8,355.9 L400.0,355.8 L401.5,356.1 L402.2,361.9 L400.2,361.7 Z M391.5,362.0 L391.5,362.0 L391.5,362.0 Z M391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 Z",LA,22019 313,48361,0.51,0.51,Orange,"M391.5,361.9 L391.5,361.9 L391.5,362.0 L391.5,362.0 L391.5,362.0 L391.2,362.4 L390.5,363.1 L389.6,363.1 L389.5,363.3 L386.9,362.4 L385.7,360.2 L386.0,359.6 L385.6,358.9 L387.4,358.8 L388.8,358.8 L391.0,358.7 L391.6,358.7 L391.9,360.5 L391.8,361.8 L391.5,361.9 L391.5,361.9 L391.5,361.9 Z M391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 L391.5,361.9 Z",TX,48361 314,26007,0.49,0.49,Alpena,"M507.8,97.5 L507.4,101.1 L509.4,103.2 L506.9,103.6 L502.6,104.2 L502.2,101.3 L502.0,98.4 L503.7,98.1 Z",MI,26007 315,47137,0.20,0.55,Pickett,"M502.4,243.3 L503.7,243.2 L506.5,243.0 L508.4,242.9 L509.0,242.9 L509.6,243.6 L509.9,244.1 L505.6,244.0 L504.9,246.7 L503.9,245.4 L502.5,244.9 L502.6,244.2 Z",TN,47137 316,21053,0.46,0.49,Clinton,"M506.5,243.0 L503.7,243.2 L502.4,243.3 L502.2,243.3 L502.1,243.3 L502.6,241.3 L502.8,239.4 L504.1,239.7 L504.8,239.1 L505.8,240.7 Z",KY,21053 317,21231,0.52,0.52,Wayne,"M506.5,243.0 L505.8,240.7 L504.8,239.1 L506.7,237.4 L507.5,236.4 L509.7,236.4 L511.2,238.1 L510.2,240.4 L509.1,242.9 L509.1,242.9 L509.0,242.9 L508.4,242.9 Z",KY,21231 318,12129,0.51,0.49,Wakulla,"M527.5,352.6 L527.6,352.6 L527.7,352.8 L527.5,352.9 Z M532.8,350.2 L530.1,350.4 L527.4,352.5 L526.7,352.7 L526.2,352.4 L524.1,350.7 L523.1,347.9 L529.9,347.0 L532.4,347.1 L532.6,348.2 Z",FL,12129 319,12131,0.57,0.90,Walton,"M498.4,349.0 L502.6,348.6 L498.3,347.9 L497.9,344.1 L497.5,339.1 L498.9,338.9 L500.4,338.7 L501.3,338.7 L502.6,338.5 L503.1,343.4 L505.9,343.1 L506.1,346.6 L504.3,348.6 L504.3,348.6 L504.4,349.9 L504.5,350.5 L503.4,350.1 L498.4,349.3 L498.4,349.1 Z",FL,12131 320,12059,0.53,0.50,Holmes,"M505.9,343.1 L503.1,343.4 L502.6,338.5 L504.9,338.3 L510.3,337.6 L509.4,339.4 L509.2,340.5 L506.0,341.6 Z",FL,12059 321,12133,0.46,0.47,Washington,"M506.1,346.6 L505.9,343.1 L506.0,341.6 L509.2,340.5 L511.7,341.0 L512.1,344.7 L511.6,347.0 L504.3,348.6 L504.3,348.6 Z",FL,12133 322,31059,0.50,0.50,Fillmore,"M334.7,183.4 L336.8,183.5 L340.5,183.5 L340.5,183.5 L340.5,183.5 L340.5,183.5 L340.5,183.5 L340.5,183.5 L340.4,188.9 L340.4,189.3 L340.4,189.3 L340.4,189.3 L339.5,189.3 L334.7,189.2 L334.6,189.2 L334.6,189.2 L334.7,184.3 L334.7,183.4 Z",NE,31059 323,31035,0.50,0.50,Clay,"M334.7,183.4 L334.7,184.3 L334.6,189.2 L331.6,189.2 L328.9,189.1 L328.9,189.1 L328.8,189.1 L328.8,189.1 L328.9,185.9 L328.9,183.3 L331.0,183.3 L334.7,183.4 L334.7,183.4 Z",NE,31035 324,31181,0.50,0.50,Webster,"M328.9,189.1 L328.9,189.1 L328.8,189.5 L328.8,192.9 L328.7,194.9 L328.7,194.9 L326.9,194.9 L325.7,194.9 L324.8,194.8 L322.9,194.8 L323.0,191.1 L323.0,189.0 L323.1,189.0 L323.1,189.0 L326.2,189.0 L328.8,189.1 L328.8,189.1 Z",NE,31181 325,31129,0.50,0.50,Nuckolls,"M328.9,189.1 L328.9,189.1 L328.9,189.1 L331.6,189.2 L334.6,189.2 L334.6,189.2 L334.7,189.2 L334.5,194.3 L334.5,195.1 L333.9,195.1 L333.1,195.0 L330.2,195.0 L328.7,194.9 L328.7,194.9 L328.8,192.9 L328.8,192.9 L328.8,192.0 L328.8,189.5 L328.8,189.5 Z",NE,31129 326,20157,0.50,0.50,Republic,"M333.1,195.0 L333.9,195.1 L334.5,195.1 L335.5,195.1 L340.4,195.2 L340.3,197.9 L340.3,201.0 L337.3,201.0 L333.0,200.9 L333.0,198.0 Z",KS,20157 327,31001,0.50,0.50,Adams,"M328.9,183.3 L328.9,183.3 L328.9,183.3 L328.9,185.9 L328.8,189.1 L326.2,189.0 L323.1,189.0 L323.2,186.3 L323.3,183.3 L323.3,183.1 L323.3,183.1 L327.1,183.2 L328.8,183.3 Z",NE,31001 328,26109,0.51,0.81,Menominee,"M456.5,90.2 L458.0,90.1 L459.4,90.0 L460.6,97.2 L461.2,97.2 L460.6,99.4 L458.1,105.2 L457.1,101.1 L454.3,101.1 L454.2,94.9 L456.0,94.8 Z",MI,26109 329,26103,0.94,0.41,Marquette,"M459.4,90.0 L458.0,90.1 L456.5,90.2 L456.5,90.2 L456.1,85.9 L450.3,86.4 L450.1,84.9 L450.0,83.5 L449.6,79.1 L450.1,74.8 L455.1,76.1 L458.8,81.0 L461.5,80.8 L461.7,82.9 L462.1,86.8 L460.6,86.9 Z",MI,26103 330,26043,0.52,0.51,Dickinson,"M456.5,90.2 L456.0,94.8 L454.2,94.9 L452.8,94.4 L451.6,94.2 L450.7,93.5 L450.7,91.9 L450.4,88.3 L450.3,86.4 L456.1,85.9 Z",MI,26043 331,26003,0.52,0.54,Alger,"M462.1,86.8 L461.7,82.9 L461.5,80.8 L467.6,81.0 L472.5,76.7 L475.7,76.0 L475.9,77.7 L476.0,79.4 L470.2,80.1 L470.6,83.0 L467.6,83.3 L467.9,86.2 L464.3,86.6 Z",MI,26003 332,56041,0.83,0.56,Uinta,"M168.6,158.7 L168.9,156.9 L169.5,153.2 L177.8,154.6 L181.9,155.3 L181.9,155.3 L181.0,160.8 L180.4,164.9 L167.9,162.9 Z",WY,56041 333,46067,0.50,0.50,Hutchinson,"M332.1,141.5 L332.1,136.6 L332.1,136.4 L333.8,136.4 L333.9,136.4 L336.7,136.5 L338.3,136.5 L339.9,136.5 L340.8,136.5 L340.8,140.0 L340.8,142.1 L338.5,142.1 L337.9,142.0 L335.9,142.0 L332.5,141.9 L332.6,141.7 Z",SD,46067 334,46043,0.50,0.50,Douglas,"M332.1,136.4 L332.1,136.6 L332.1,141.5 L325.1,138.3 L324.9,136.2 L327.8,136.3 L329.6,136.3 L330.9,136.4 Z",SD,46043 335,18069,0.50,0.50,Huntington,"M493.0,170.6 L493.0,170.6 L493.2,172.0 L493.7,176.4 L492.3,176.6 L490.8,176.8 L489.9,176.9 L489.5,173.6 L489.1,171.1 L491.5,170.8 Z",IN,18069 336,18003,0.49,0.50,Allen,"M493.2,172.0 L493.0,170.6 L493.0,170.6 L492.6,167.7 L492.9,166.2 L493.8,166.1 L494.3,166.1 L496.8,165.7 L499.2,165.3 L499.2,165.5 L499.2,165.7 L499.5,167.8 L499.8,170.0 L499.8,170.5 L499.9,171.1 L498.9,171.3 L496.5,171.6 L495.2,171.8 Z",IN,18003 337,13025,0.58,0.40,Brantley,"M563.6,327.3 L562.7,328.7 L561.5,329.7 L559.6,329.6 L558.8,330.8 L557.5,329.7 L556.1,327.6 L559.9,326.1 L559.2,324.6 L560.9,324.8 L563.7,324.6 L563.5,327.2 Z",GA,13025 338,13049,0.63,0.89,Charlton,"M558.8,330.8 L559.6,329.6 L561.5,329.7 L562.4,331.1 L562.5,333.3 L560.9,334.3 L561.6,341.4 L559.9,341.8 L558.7,338.4 L559.1,334.6 L555.2,335.0 L554.7,331.4 Z",GA,13049 339,13015,0.45,0.50,Bartow,"M510.5,280.0 L514.3,279.5 L515.4,279.1 L515.7,282.2 L516.0,284.7 L515.5,284.7 L514.9,284.8 L514.9,284.7 L512.3,285.0 L510.6,285.3 L510.6,285.0 L510.7,283.0 L510.5,280.0 Z",GA,13015 340,13129,0.47,0.48,Gordon,"M515.4,279.1 L514.3,279.5 L510.5,280.0 L510.5,280.0 L509.4,280.0 L509.3,276.9 L509.3,276.3 L509.5,276.3 L511.2,276.2 L511.3,275.8 L514.1,275.7 L515.0,276.3 L515.0,276.3 L515.1,276.8 L515.3,278.2 Z",GA,13129 341,13115,0.49,0.50,Floyd,"M510.5,280.0 L510.7,283.0 L510.6,285.0 L507.6,285.3 L505.4,285.9 L505.2,285.2 L504.4,282.5 L508.0,279.6 L508.7,276.9 L509.2,276.9 L509.3,276.9 L509.4,280.0 L510.5,280.0 Z",GA,13115 342,13233,0.52,0.48,Polk,"M505.4,285.9 L507.6,285.3 L510.6,285.0 L510.6,285.3 L512.3,285.0 L511.8,287.3 L510.9,288.2 L508.7,288.6 L506.2,288.8 L506.2,288.6 L505.9,287.8 L505.8,287.2 Z",GA,13233 343,31089,0.11,0.49,Holt,"M317.7,147.6 L321.5,146.2 L329.5,148.7 L329.3,154.1 L329.4,154.1 L329.4,155.5 L329.2,160.0 L328.2,160.0 L323.5,159.8 L320.0,159.7 L317.7,159.7 L317.7,159.6 L317.6,159.6 L317.9,148.0 Z",NE,31089 344,31015,0.11,0.35,Boyd,"M329.5,148.7 L321.5,146.2 L317.7,147.6 L317.8,146.0 L317.9,144.4 L317.9,144.4 L322.4,144.5 L327.2,144.7 L327.6,145.5 L329.5,146.7 L329.4,148.3 Z",NE,31015 345,31103,0.89,0.55,Keya Paha,"M317.8,146.0 L317.7,147.6 L314.2,148.9 L312.5,148.7 L306.9,147.1 L306.1,146.4 L306.2,145.3 L306.3,143.9 L308.3,144.0 L314.4,144.2 L315.2,144.3 L317.9,144.4 L317.9,144.4 Z",NE,31103 346,29083,0.50,0.50,Henry,"M383.4,219.1 L389.3,219.1 L390.7,219.1 L390.7,219.5 L390.7,219.8 L390.7,220.9 L390.7,224.9 L390.2,225.0 L383.7,225.0 L383.4,225.0 L383.4,221.1 L383.4,220.8 Z",MO,29083 347,29101,0.50,0.50,Johnson,"M390.7,219.1 L389.3,219.1 L383.4,219.1 L382.7,219.1 L382.6,214.6 L382.6,214.0 L382.6,213.2 L386.3,212.8 L390.7,212.8 L390.7,212.8 L390.8,213.3 Z",MO,29101 348,29107,0.50,0.50,Lafayette,"M386.3,212.8 L382.6,213.2 L382.7,211.9 L382.7,209.4 L386.1,208.1 L387.2,208.3 L390.7,207.8 L390.8,206.7 L390.7,209.5 L390.7,212.6 L390.7,212.7 L390.7,212.8 L390.7,212.8 Z",MO,29107 349,55093,0.50,0.51,Pierce,"M404.3,112.8 L404.3,114.3 L404.4,115.8 L404.5,118.2 L402.3,118.3 L399.6,117.9 L397.2,115.5 L396.9,115.4 L396.3,115.0 L396.3,114.7 L396.7,113.1 L401.4,112.9 Z",WI,55093 350,55033,0.50,0.50,Dunn,"M404.4,115.8 L404.3,114.3 L404.3,112.8 L404.1,108.4 L403.8,106.9 L407.7,106.8 L409.6,106.7 L409.8,108.2 L410.1,112.6 L410.1,113.8 L410.2,115.5 L405.7,115.7 Z",WI,55033 351,08109,0.52,0.49,Saguache,"M224.8,225.7 L217.6,224.9 L216.3,223.2 L214.2,220.9 L212.5,220.7 L212.8,218.5 L212.9,217.6 L213.5,212.9 L223.3,214.1 L225.4,214.4 L226.5,214.1 L227.9,216.0 L228.9,217.4 L231.0,222.0 L232.6,224.0 L233.1,224.8 L232.5,226.5 L230.4,226.2 L224.8,225.7 L224.8,225.7 Z",CO,8109 352,08003,0.50,0.53,Alamosa,"M224.8,225.7 L230.4,226.2 L232.5,226.5 L231.7,228.9 L231.8,229.3 L231.7,229.5 L228.0,232.6 L224.1,232.2 L224.2,231.5 L224.6,227.4 L224.8,225.7 L224.8,225.7 L224.8,225.7 Z",CO,8003 353,08027,0.94,0.60,Custer,"M232.6,224.0 L231.0,222.0 L228.9,217.4 L235.4,218.2 L238.8,218.6 L238.5,221.0 L238.2,224.3 L236.8,222.4 Z",CO,8027 354,55063,0.49,0.50,La Crosse,"M416.7,125.4 L416.7,125.5 L418.9,125.4 L419.6,125.3 L420.0,131.1 L417.4,131.3 L415.8,131.4 L415.9,130.5 L415.3,129.3 L414.4,128.2 L413.5,127.1 L414.5,126.2 Z",WI,55063 355,55053,0.07,0.51,Jackson,"M418.9,125.4 L416.7,125.5 L416.7,125.4 L416.4,122.5 L416.1,116.7 L416.7,116.7 L419.0,116.5 L420.6,119.4 L426.5,119.0 L426.6,121.9 L426.7,121.9 L426.7,122.1 L426.8,123.5 L419.6,123.9 Z",WI,55053 356,36101,0.04,0.56,Steuben,"M584.7,139.0 L583.6,132.3 L583.5,131.2 L583.9,129.2 L585.9,128.9 L586.5,128.8 L587.4,128.6 L590.1,128.0 L590.9,129.4 L591.7,132.9 L593.4,132.4 L594.2,136.6 L594.3,137.0 L592.4,137.4 L586.4,138.7 L585.9,138.8 Z",NY,36101 357,36003,0.52,0.48,Allegany,"M583.5,131.2 L583.6,132.3 L584.7,139.0 L581.7,139.6 L579.1,140.1 L578.3,140.3 L577.9,140.4 L576.8,135.1 L576.2,131.8 L577.0,131.6 L579.5,131.1 L579.5,131.1 L579.5,131.1 L581.9,130.7 Z",NY,36003 358,36121,0.53,0.49,Wyoming,"M579.5,131.1 L577.0,131.6 L576.2,131.8 L574.3,132.2 L574.2,131.9 L573.5,127.9 L573.2,126.5 L577.9,125.5 L579.3,125.3 L580.0,128.5 L579.5,131.1 L579.5,131.1 Z",NY,36121 359,36051,0.50,0.50,Livingston,"M579.5,131.1 L579.5,131.1 L580.0,128.5 L579.3,125.3 L579.2,124.6 L579.5,123.1 L581.6,122.7 L583.6,123.1 L584.3,127.6 L585.9,128.9 L583.9,129.2 L583.5,131.2 L581.9,130.7 L579.5,131.1 Z",NY,36051 360,13063,0.56,0.51,Clayton,"M521.2,291.3 L521.5,291.3 L522.1,291.2 L522.4,294.7 L521.8,296.2 L521.5,296.3 L521.3,296.3 L521.1,294.4 L519.9,293.1 L519.7,291.5 Z",GA,13063 361,13089,0.53,0.49,DeKalb,"M522.1,291.2 L521.5,291.3 L521.2,291.3 L520.5,286.0 L521.5,286.0 L521.9,286.6 L525.5,288.9 L524.5,291.4 L523.5,291.0 L522.9,291.1 Z",GA,13089 362,20111,0.50,0.50,Lyon,"M358.5,226.0 L358.5,226.0 L354.6,225.9 L353.3,225.9 L353.3,224.5 L353.3,220.1 L353.3,218.6 L353.4,216.4 L354.6,216.5 L358.7,216.5 L358.6,217.2 L358.6,221.6 L358.6,224.5 L358.5,226.0 L358.5,226.0 Z",KS,20111 363,20073,0.50,0.50,Greenwood,"M358.5,226.0 L358.5,227.4 L358.5,228.2 L358.5,228.2 L358.5,231.8 L358.5,233.3 L358.5,233.8 L358.5,235.5 L355.0,235.4 L351.0,235.4 L351.0,232.2 L351.1,227.4 L353.2,227.4 L353.3,225.9 L354.6,225.9 L358.5,226.0 L358.5,226.0 Z",KS,20073 364,20031,0.50,0.50,Coffey,"M358.5,227.4 L358.5,226.0 L358.5,226.0 L358.5,226.0 L358.5,226.0 L358.6,224.5 L358.6,221.6 L360.8,221.6 L364.5,221.5 L364.5,221.8 L364.5,222.3 L364.4,224.5 L364.3,228.2 L361.9,228.2 L358.5,228.2 L358.5,228.2 Z",KS,20031 365,20207,0.50,0.50,Woodson,"M358.5,228.2 L361.9,228.2 L364.3,228.2 L364.4,231.8 L364.3,233.3 L362.4,233.3 L358.5,233.3 L358.5,231.8 L358.5,228.2 Z",KS,20207 366,18111,0.48,0.50,Newton,"M465.6,176.3 L465.4,173.4 L465.4,173.4 L465.3,173.2 L465.1,170.8 L466.5,170.7 L468.2,169.6 L468.2,169.6 L468.2,169.6 L468.7,174.8 L468.8,174.8 L469.1,177.4 L469.1,177.7 L469.1,177.7 L467.4,177.8 L465.8,178.0 Z",IN,18111 367,17091,0.49,0.50,Kankakee,"M465.4,173.4 L460.9,173.9 L457.7,174.3 L456.8,174.4 L456.3,174.5 L456.1,172.8 L456.0,172.5 L456.2,172.5 L456.0,171.0 L458.8,169.3 L464.9,168.6 L465.0,169.6 L465.1,170.8 L465.3,173.2 L465.4,173.4 Z",IL,17091 368,18073,0.52,0.49,Jasper,"M468.2,169.6 L468.8,169.3 L468.9,169.2 L469.9,168.3 L472.5,168.9 L472.5,169.0 L472.6,170.0 L473.0,173.6 L473.0,174.3 L473.0,174.3 L473.0,174.3 L471.0,175.8 L471.2,177.5 L470.1,177.6 L469.1,177.7 L469.1,177.7 L468.7,174.8 L468.2,169.6 Z M473.0,174.3 L473.0,174.3 L473.0,174.3 L473.0,174.3 Z",IN,18073 369,18131,0.50,0.50,Pulaski,"M473.0,174.3 L473.0,174.3 L473.0,173.6 L472.6,170.0 L477.4,169.5 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.6,171.2 L478.9,173.8 L478.5,173.8 L477.5,173.9 L475.9,174.0 L473.0,174.3 L473.0,174.3 Z",IN,18131 370,18149,0.47,0.50,Starke,"M477.4,169.5 L472.6,170.0 L472.5,169.0 L472.5,168.9 L475.1,165.9 L477.3,165.1 L477.6,165.1 L478.0,165.0 L478.1,166.2 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 Z",IN,18149 371,18007,0.50,0.50,Benton,"M465.8,178.0 L467.4,177.8 L469.1,177.7 L469.1,177.7 L470.1,177.6 L471.2,177.5 L471.4,178.8 L471.5,180.4 L471.6,180.6 L471.7,181.8 L469.8,182.0 L466.2,182.3 L466.2,182.2 L466.2,182.1 L466.0,180.1 Z",IN,18007 372,48245,0.52,0.45,Jefferson,"M385.7,360.2 L386.9,362.4 L389.5,363.3 L388.5,366.7 L382.4,370.3 L382.2,364.9 L380.9,364.9 L380.9,363.0 L380.8,361.1 L383.1,361.0 Z",TX,48245 373,01049,0.55,0.57,DeKalb,"M495.7,285.0 L495.2,281.2 L495.8,280.3 L499.3,277.4 L501.7,273.2 L502.2,275.0 L502.8,277.0 L502.8,277.2 L503.0,277.6 L503.2,278.4 L503.3,278.7 L501.9,281.5 L499.3,284.6 L496.5,284.9 Z",AL,1049 374,01019,0.41,0.55,Cherokee,"M499.3,284.6 L501.9,281.5 L503.3,278.7 L503.8,280.4 L504.4,282.5 L505.2,285.2 L505.4,285.9 L505.8,287.2 L505.9,287.8 L504.6,288.1 L504.2,288.4 L504.1,288.2 L501.2,288.3 L500.2,286.2 Z",AL,1019 375,30065,0.13,0.49,Musselshell,"M220.8,72.8 L221.1,74.2 L220.8,77.3 L217.4,80.8 L212.8,82.4 L208.4,81.8 L208.0,74.1 L207.2,71.1 L209.7,71.4 L211.6,71.7 L215.8,72.2 Z",MT,30065 376,30087,0.47,0.20,Rosebud,"M220.8,77.3 L221.1,74.2 L220.8,72.8 L220.8,71.8 L220.3,71.1 L233.8,72.7 L241.1,73.8 L239.0,85.6 L237.9,91.4 L236.6,98.7 L235.7,101.5 L229.9,100.8 L231.4,92.6 L229.3,89.0 L229.3,80.1 L227.8,78.4 L221.3,77.6 L221.1,77.3 Z",MT,30087 377,08017,0.50,0.49,Cheyenne,"M279.1,208.7 L278.9,211.9 L278.7,214.5 L278.7,215.0 L278.7,215.9 L271.1,215.4 L263.9,214.9 L264.1,213.6 L264.6,207.8 L273.2,208.4 Z",CO,8017 378,20199,0.50,0.50,Wallace,"M278.7,214.5 L278.9,211.9 L279.1,208.7 L279.2,207.4 L279.2,207.2 L282.0,207.4 L286.6,207.7 L286.2,212.9 L286.1,214.9 L285.3,214.9 L285.0,214.9 L282.1,214.7 Z",KS,20199 379,08111,0.52,0.44,San Juan,"M205.5,225.2 L202.1,224.8 L199.1,224.4 L199.2,223.4 L200.8,222.3 L201.8,221.6 L202.7,220.4 L202.7,220.4 L204.1,220.3 L205.1,219.7 L206.1,222.4 Z",CO,8111 380,49057,0.49,0.54,Weber,"M158.6,154.0 L160.5,155.2 L163.3,154.9 L163.6,155.6 L164.2,156.1 L162.9,158.1 L158.2,158.8 L154.0,157.8 L150.0,158.4 L154.0,154.7 Z",UT,49057 381,49005,0.51,0.50,Cache,"M163.3,154.9 L160.5,155.2 L158.6,154.0 L157.4,149.1 L156.9,144.0 L157.2,144.0 L157.5,144.1 L162.0,144.8 L165.0,145.3 L165.0,150.8 Z",UT,49005 382,16041,0.56,0.47,Franklin,"M165.0,145.3 L162.0,144.8 L157.5,144.1 L158.0,141.2 L158.2,139.3 L160.9,140.3 L161.6,137.7 L163.3,138.0 L165.0,138.3 L164.1,141.6 Z",ID,16041 383,48327,0.50,0.50,Menard,"M297.9,349.9 L298.0,348.2 L298.2,343.5 L299.9,343.6 L305.7,343.8 L305.6,346.3 L307.3,346.4 L307.3,347.5 L307.2,350.2 L305.2,350.2 Z",TX,48327 384,48413,0.13,0.46,Schleicher,"M298.2,343.5 L298.0,348.2 L297.9,349.9 L288.7,349.5 L285.6,349.3 L285.8,346.3 L286.0,343.0 L289.3,343.1 L289.9,343.1 L296.3,343.4 Z",TX,48413 385,23023,0.49,0.53,Sagadahoc,"M671.4,80.3 L671.4,81.3 L671.5,81.9 L671.6,82.2 L671.7,82.3 L672.7,82.3 L672.8,83.6 L673.3,86.5 L672.0,83.4 L673.0,86.5 L671.2,85.2 L670.0,84.7 L669.0,83.9 L668.9,83.5 L668.6,81.4 L668.6,81.4 L670.0,81.3 Z",ME,23023 386,23001,0.57,0.50,Androscoggin,"M668.9,83.5 L669.0,83.9 L668.4,85.3 L663.5,84.5 L664.4,81.2 L664.3,76.8 L664.7,76.4 L665.5,76.0 L665.5,76.0 L667.4,80.3 L668.6,81.4 L668.6,81.4 Z",ME,23001 387,23011,0.56,0.53,Kennebec,"M665.5,76.0 L666.0,74.1 L667.2,73.3 L671.1,72.8 L672.1,70.4 L674.1,74.0 L673.4,76.2 L672.0,77.7 L671.4,80.3 L670.0,81.3 L668.6,81.4 L668.6,81.4 L667.4,80.3 L665.5,76.0 Z",ME,23011 388,30059,0.46,0.49,Meagher,"M191.2,77.7 L191.1,78.2 L191.1,78.3 L189.6,77.9 L185.3,77.2 L184.2,77.0 L182.1,76.7 L180.8,72.4 L178.7,66.3 L177.2,64.7 L177.3,63.5 L178.9,62.3 L186.0,63.8 L188.5,66.9 L190.4,69.7 L192.6,69.5 L191.9,73.2 Z",MT,30059 389,30097,0.17,0.23,Sweet Grass,"M191.1,78.3 L191.1,78.2 L191.2,77.7 L197.0,78.6 L198.5,78.8 L198.6,81.8 L200.8,82.2 L198.0,89.2 L193.4,90.0 L191.0,95.6 L189.1,95.3 L190.8,85.1 Z",MT,30097 390,40095,0.50,0.50,Marshall,"M349.7,297.6 L345.6,298.0 L344.9,296.5 L344.9,295.6 L344.4,294.6 L344.5,292.9 L345.0,292.9 L348.6,292.9 L349.8,293.9 L350.3,294.8 Z",OK,40095 391,48181,0.50,0.50,Grayson,"M344.9,296.5 L345.6,298.0 L349.7,297.6 L349.2,298.3 L352.7,300.4 L352.6,302.6 L352.6,306.0 L349.2,305.9 L346.2,305.8 L346.1,305.6 L344.7,305.6 L344.7,302.1 L344.8,296.6 L344.8,296.6 Z",TX,48181 392,54103,0.56,0.35,Wetzel,"M557.1,183.0 L557.5,183.0 L558.4,182.8 L558.8,183.4 L559.0,184.1 L557.9,185.6 L558.2,187.1 L558.0,187.7 L557.7,187.9 L557.1,187.6 L556.6,187.7 L553.2,185.7 L552.1,185.8 L552.8,185.5 L553.1,183.7 L555.4,183.3 Z",WV,54103 393,42059,0.49,0.45,Greene,"M558.4,182.8 L557.5,183.0 L557.1,183.0 L556.7,180.2 L556.5,179.0 L559.0,177.9 L563.0,177.5 L564.4,179.0 L564.8,181.7 L564.8,181.7 L562.8,182.0 Z",PA,42059 394,42051,0.53,0.49,Fayette,"M564.4,179.0 L563.0,177.5 L564.4,176.4 L564.1,174.9 L569.0,173.7 L571.8,175.0 L570.8,178.3 L571.5,180.4 L571.2,180.5 L570.4,180.6 L569.1,180.9 L566.8,181.3 L565.4,181.6 L564.8,181.7 L564.8,181.7 Z",PA,42051 395,01091,0.50,0.50,Marengo,"M474.5,315.4 L475.8,316.0 L478.7,315.7 L479.0,318.7 L479.7,318.6 L479.7,318.7 L479.8,319.3 L477.8,321.7 L477.4,324.1 L476.2,324.3 L471.6,324.7 L472.0,319.7 L473.2,319.1 L471.6,317.2 L473.9,315.3 L474.4,315.1 Z",AL,1091 396,01065,0.53,0.50,Hale,"M478.7,315.7 L475.8,316.0 L474.5,315.4 L474.1,309.1 L475.2,307.2 L476.5,307.1 L479.3,306.9 L479.5,308.5 L479.5,309.0 L479.1,312.8 Z",AL,1065 397,01105,0.49,0.50,Perry,"M479.7,318.6 L479.0,318.7 L478.7,315.7 L479.1,312.8 L479.5,309.0 L481.0,309.6 L485.3,309.1 L485.4,310.5 L485.5,310.9 L484.5,315.1 L480.1,315.6 Z",AL,1105 398,21209,0.41,0.51,Scott,"M510.0,214.4 L510.4,214.8 L510.7,215.6 L508.0,217.2 L508.0,217.5 L507.5,216.6 L506.5,216.3 L506.4,216.1 L506.0,213.7 L507.4,212.2 L507.8,211.5 L508.1,211.1 L508.1,211.1 L509.5,212.6 Z",KY,21209 399,21017,0.50,0.50,Bourbon,"M510.7,215.6 L510.4,214.8 L510.0,214.4 L511.3,214.2 L513.1,212.5 L514.3,214.0 L516.3,215.1 L516.2,215.4 L515.1,216.6 L514.5,216.9 L512.6,217.7 L511.2,217.1 Z",KY,21017 400,17113,0.93,0.45,McLean,"M453.1,186.7 L447.0,187.2 L445.8,187.3 L444.3,187.4 L444.2,186.7 L444.0,184.4 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L445.6,182.0 L447.4,180.8 L447.2,179.3 L447.9,179.2 L447.9,179.2 L448.0,179.2 L448.0,179.2 L452.3,178.8 L454.1,181.0 L454.3,183.2 L454.4,184.7 L454.5,185.4 L454.6,186.6 L454.3,186.7 L453.1,186.7 Z",IL,17113 401,17147,0.47,0.50,Piatt,"M453.1,186.7 L454.3,186.7 L454.6,186.6 L454.6,187.6 L455.1,193.3 L455.2,194.8 L455.1,194.8 L453.1,195.0 L451.6,195.1 L451.5,194.1 L451.2,190.7 L451.8,189.2 L453.1,186.7 Z",IL,17147 402,17203,0.50,0.53,Woodford,"M443.8,182.2 L443.8,182.2 L443.8,182.2 L442.9,179.7 L440.0,179.9 L440.0,178.9 L440.9,176.9 L445.0,176.5 L446.2,176.5 L446.8,176.4 L447.7,176.3 L447.8,177.0 L448.0,179.2 L447.4,180.8 L445.6,182.0 L443.8,182.2 L443.8,182.2 L443.8,182.2 Z M443.8,182.2 L443.8,182.2 L443.8,182.2 Z",IL,17203 403,17019,0.50,0.50,Champaign,"M455.1,193.3 L454.6,187.6 L454.6,186.6 L454.5,185.4 L454.4,184.7 L458.8,184.3 L461.1,184.1 L461.1,184.1 L461.3,187.0 L461.8,192.7 L459.5,193.0 Z",IL,17019 404,17053,0.46,0.49,Ford,"M458.8,184.3 L454.4,184.7 L454.3,183.2 L454.1,181.0 L457.0,180.8 L456.3,174.5 L456.8,174.4 L457.7,174.3 L458.6,182.8 L461.0,182.6 L461.1,184.1 L461.1,184.1 Z",IL,17053 405,17139,0.49,0.52,Moultrie,"M451.6,195.1 L453.1,195.0 L455.1,194.8 L455.2,195.7 L455.3,197.1 L455.4,198.4 L455.6,200.6 L454.1,200.7 L450.9,197.5 L450.8,196.0 Z",IL,17139 406,01063,0.65,0.53,Greene,"M474.5,315.4 L474.4,315.1 L473.9,315.3 L471.0,314.6 L468.8,307.9 L470.5,307.1 L473.2,304.9 L473.5,307.2 L475.2,307.2 L474.1,309.1 Z",AL,1063 407,16051,0.19,0.41,Jefferson,"M156.4,110.2 L156.7,108.7 L163.1,109.9 L162.8,111.3 L164.8,112.5 L164.9,115.2 L168.2,118.2 L162.6,117.2 L157.4,116.3 L156.0,116.0 L155.3,115.9 L155.8,113.0 Z",ID,16051 408,16033,0.50,0.49,Clark,"M163.1,109.9 L156.7,108.7 L156.4,110.2 L152.8,109.5 L153.6,105.2 L155.8,105.6 L156.2,103.2 L156.9,101.5 L161.5,103.0 L163.1,101.2 L170.9,102.9 L167.0,108.4 Z",ID,16033 409,37037,0.50,0.49,Chatham,"M588.3,243.0 L588.5,243.0 L589.7,242.7 L589.3,247.1 L590.5,247.4 L590.3,247.7 L590.0,248.5 L587.6,247.2 L584.9,249.5 L582.9,249.9 L582.1,250.1 L581.9,248.8 L581.3,244.7 L585.4,243.9 L585.1,243.4 L587.4,243.2 Z",NC,37037 410,37063,0.51,0.49,Durham,"M589.7,242.7 L588.5,243.0 L588.3,243.0 L588.0,238.1 L588.0,236.7 L588.0,236.7 L590.0,236.3 L590.4,238.7 L591.2,238.9 L592.1,239.8 Z",NC,37063 411,19151,0.50,0.50,Pocahontas,"M377.3,150.9 L377.3,151.1 L377.3,152.3 L373.8,152.3 L371.4,152.4 L371.4,149.4 L371.4,146.5 L374.3,146.5 L377.2,146.4 L377.2,149.2 Z",IA,19151 412,19187,0.50,0.50,Webster,"M377.3,152.3 L377.3,151.1 L377.3,150.9 L380.7,150.8 L383.1,150.7 L383.1,151.1 L383.1,152.2 L383.7,153.6 L383.8,158.0 L382.5,158.1 L380.9,158.1 L379.7,158.1 L378.0,158.2 L378.0,158.2 L378.0,158.2 L377.9,153.7 Z",IA,19187 413,19025,0.50,0.50,Calhoun,"M375.1,158.2 L375.1,158.2 L373.6,158.2 L372.2,158.2 L372.2,153.8 L371.4,152.4 L373.8,152.3 L377.3,152.3 L377.9,153.7 L378.0,158.2 L378.0,158.2 L378.0,158.2 Z M375.1,158.2 L375.1,158.2 L375.1,158.2 Z",IA,19025 414,19027,0.50,0.50,Carroll,"M375.1,158.2 L375.1,163.2 L375.2,164.0 L374.6,164.0 L373.7,164.0 L371.5,164.1 L369.3,164.1 L369.3,161.9 L369.3,158.3 L371.0,158.2 L372.2,158.2 L373.6,158.2 L375.1,158.2 Z",IA,19027 415,48147,0.50,0.50,Fannin,"M352.6,306.0 L352.6,302.6 L352.7,300.4 L355.9,298.6 L360.1,298.5 L360.0,298.8 L360.0,304.9 L360.0,305.3 L360.0,305.8 L357.8,306.1 L353.8,306.7 L352.6,306.9 Z",TX,48147 416,48119,0.42,0.27,Delta,"M360.0,305.8 L360.0,305.3 L360.0,304.9 L364.1,304.6 L367.7,306.2 L367.7,306.2 L367.8,306.3 L367.7,306.3 L367.7,306.3 L363.8,306.6 L359.9,309.0 L359.9,307.9 Z",TX,48119 417,47159,0.50,0.45,Smith,"M491.5,250.1 L492.1,249.0 L493.3,247.7 L494.7,247.7 L495.4,247.7 L495.4,249.8 L496.4,250.5 L496.2,251.3 L496.2,252.3 L494.8,252.7 L492.9,253.5 L492.5,252.7 Z",TN,47159 418,47169,0.45,0.53,Trousdale,"M493.3,247.7 L492.1,249.0 L491.5,250.1 L490.4,249.4 L489.4,249.5 L489.4,247.7 L489.9,247.0 L490.8,247.7 Z",TN,47169 419,41019,0.54,0.75,Douglas,"M42.5,92.0 L43.5,95.4 L38.6,98.6 L31.5,100.3 L25.9,99.9 L20.4,97.5 L20.6,96.8 L20.6,96.8 L20.6,96.8 L20.0,96.4 L19.5,96.4 L22.3,92.0 L22.9,83.0 L18.9,81.7 L19.5,80.7 L21.0,77.9 L25.2,77.8 L32.4,83.0 L31.5,86.9 L35.3,89.9 Z",OR,41019 420,48127,0.08,0.48,Dimmit,"M296.4,384.7 L300.0,385.0 L306.9,385.3 L307.1,385.3 L307.1,385.3 L307.0,387.7 L306.9,392.7 L305.3,392.7 L296.0,392.4 L296.4,385.3 Z",TX,48127 421,48507,0.07,0.48,Zavala,"M306.9,385.3 L300.0,385.0 L296.4,384.7 L296.4,384.4 L296.8,377.3 L300.5,377.4 L307.1,377.7 L307.1,377.7 L307.1,377.7 L307.0,383.5 Z",TX,48507 422,12011,0.89,0.41,Broward,"M591.0,412.2 L590.5,409.7 L590.1,407.5 L590.0,406.8 L589.9,406.2 L598.8,404.7 L602.1,404.3 L602.3,408.7 L602.5,410.3 L594.0,412.1 Z",FL,12011 423,26151,0.48,0.50,Sanilac,"M520.7,121.5 L522.0,125.3 L523.4,129.9 L519.7,130.6 L517.3,131.1 L516.9,128.9 L515.4,128.4 L515.6,128.4 L514.6,122.6 L517.5,122.1 Z",MI,26151 424,37145,0.49,0.50,Person,"M590.0,236.3 L588.0,236.7 L588.0,236.7 L587.2,236.8 L585.3,237.1 L584.9,234.7 L584.5,232.2 L586.8,231.7 L589.1,231.3 L589.1,231.5 Z",NC,37145 425,28151,0.52,0.49,Washington,"M430.0,310.5 L429.3,310.5 L426.4,310.6 L427.4,308.3 L425.3,302.0 L429.9,301.7 L431.6,301.6 L431.9,306.0 L432.5,305.9 L433.1,307.1 L432.9,308.8 L429.9,309.0 Z",MS,28151 426,28055,0.12,0.03,Issaquena,"M426.4,310.6 L429.3,310.5 L430.0,310.5 L429.6,316.3 L433.0,316.2 L433.4,316.8 L433.1,316.9 L431.3,320.0 L428.6,317.9 L426.7,314.9 L426.4,310.8 L426.4,310.7 Z",MS,28055 427,22035,0.47,0.49,East Carroll,"M426.4,310.8 L426.7,314.9 L428.6,317.9 L428.5,317.9 L428.2,318.1 L427.3,318.6 L422.7,318.8 L423.1,318.4 L422.8,318.1 L424.1,315.0 L425.0,310.8 L425.6,310.8 Z",LA,22035 428,28125,0.51,0.50,Sharkey,"M433.0,316.2 L429.6,316.3 L430.0,310.5 L429.9,309.0 L432.9,308.8 L433.5,308.8 L433.7,311.7 L433.3,313.6 Z",MS,28125 429,05085,0.49,0.50,Lonoke,"M418.0,286.3 L417.9,286.3 L417.6,286.3 L414.6,286.4 L413.1,286.4 L411.9,284.2 L411.5,277.7 L411.5,277.2 L411.5,276.8 L412.9,276.6 L415.9,277.2 L417.4,279.0 Z",AR,5085 430,05001,0.48,0.47,Arkansas,"M417.6,286.3 L417.9,286.3 L418.0,286.3 L419.1,284.8 L422.1,284.8 L424.5,286.0 L426.8,288.3 L426.5,289.8 L426.5,291.0 L426.5,291.6 L426.1,292.0 L426.1,292.0 L426.0,294.8 L422.0,294.0 L421.7,293.7 L421.6,292.9 L417.7,290.5 Z M426.1,292.0 L426.1,292.0 L426.1,292.0 Z",AR,5001 431,48027,0.85,0.35,Bell,"M337.4,340.8 L338.5,342.1 L339.5,341.5 L341.7,345.3 L342.4,346.5 L339.7,348.1 L338.8,350.4 L334.3,348.3 L331.4,347.7 L330.6,346.0 L330.2,345.5 L330.2,344.9 L330.3,344.9 L332.2,343.8 Z",TX,48027 432,48309,0.15,0.72,McLennan,"M339.5,341.5 L338.5,342.1 L337.4,340.8 L336.3,338.8 L334.8,336.2 L336.7,335.2 L339.6,333.6 L343.1,331.7 L344.6,334.3 L345.4,335.7 L346.4,337.5 L343.8,339.0 Z",TX,48309 433,12099,0.85,0.44,Palm Beach,"M600.2,393.4 L602.0,399.7 L602.1,404.3 L598.8,404.7 L589.9,406.2 L589.1,401.9 L588.1,395.7 L599.3,393.8 Z",FL,12099 434,13073,0.40,0.39,Columbia,"M548.0,287.5 L549.5,286.4 L550.7,286.5 L551.2,287.4 L552.4,287.7 L553.4,288.1 L553.7,288.4 L551.9,290.5 L550.5,292.1 L548.0,289.2 Z",GA,13073 435,13181,0.46,0.41,Lincoln,"M550.7,286.5 L549.5,286.4 L548.0,287.5 L547.6,287.6 L547.2,287.8 L545.2,284.9 L544.1,282.4 L544.7,282.4 L545.3,282.7 L549.3,284.7 Z",GA,13181 436,13189,0.50,0.55,McDuffie,"M547.2,287.8 L547.6,287.6 L548.0,287.5 L548.0,289.2 L550.5,292.1 L549.8,292.9 L549.8,293.0 L549.6,293.0 L549.4,293.0 L547.0,292.6 L544.9,288.7 L546.8,287.5 Z",GA,13189 437,21003,0.44,0.77,Allen,"M489.9,244.5 L488.2,244.5 L487.1,244.6 L487.0,244.1 L487.0,242.5 L488.7,240.7 L489.9,239.5 L491.4,241.5 L492.8,242.8 L493.3,243.7 L493.0,244.3 L491.7,244.4 Z",KY,21003 438,47165,0.55,0.43,Sumner,"M487.1,244.6 L488.2,244.5 L489.9,244.5 L489.8,246.4 L489.9,247.0 L489.4,247.7 L489.4,249.5 L485.9,250.3 L485.4,251.6 L483.5,250.1 L482.9,249.2 L483.7,249.0 L485.1,245.1 L485.8,244.7 Z",TN,47165 439,41051,0.90,0.64,Multnomah,"M55.7,60.4 L46.3,57.6 L45.0,57.7 L43.9,53.9 L44.3,52.4 L46.0,52.9 L46.3,52.9 L46.7,55.0 L51.2,57.6 L53.1,57.5 L55.4,57.0 L55.0,59.2 Z",OR,41051 440,41005,0.79,0.58,Clackamas,"M45.0,57.7 L46.3,57.6 L55.7,60.4 L56.7,62.2 L56.1,64.1 L55.6,67.3 L53.9,70.0 L46.3,67.8 L43.0,60.2 L42.8,60.1 L43.0,59.2 L44.5,59.4 Z",OR,41005 441,47115,0.50,0.49,Marion,"M497.6,271.5 L497.1,267.6 L497.0,267.6 L499.1,266.2 L501.1,265.5 L502.8,266.2 L503.8,268.1 L504.3,269.0 L502.9,271.0 L502.3,271.0 L501.1,271.1 L499.1,271.3 Z",TN,47115 442,47061,0.40,0.38,Grundy,"M501.1,265.5 L499.1,266.2 L497.0,267.6 L496.8,267.2 L496.3,266.5 L496.5,265.0 L496.4,262.6 L497.2,262.7 L500.0,262.0 L501.9,263.9 Z",TN,47061 443,18179,0.45,0.50,Wells,"M492.3,176.6 L493.7,176.4 L493.2,172.0 L495.2,171.8 L496.5,171.6 L497.1,176.0 L497.3,177.4 L496.3,177.6 L495.6,177.7 L495.6,177.7 L493.9,177.9 L492.5,178.0 L492.4,177.5 Z",IN,18179 444,18009,0.51,0.50,Blackford,"M495.6,177.7 L495.9,180.8 L495.7,180.8 L494.3,181.0 L492.9,181.2 L492.6,178.8 L492.5,178.0 L493.9,177.9 L495.6,177.7 Z",IN,18009 445,51121,0.48,0.51,Montgomery,"M563.8,226.6 L564.4,226.1 L564.4,225.7 L563.4,225.0 L563.0,224.1 L564.6,223.1 L565.1,222.5 L566.3,221.4 L567.3,221.7 L568.5,223.3 L569.1,225.2 L567.1,227.1 L564.6,228.2 L564.4,227.1 Z M564.5,225.7 L564.5,225.7 L564.5,225.7 L564.5,225.7 Z",VA,51121 446,51063,0.64,0.46,Floyd,"M564.6,228.2 L567.1,227.1 L569.1,225.2 L569.1,225.3 L569.7,225.0 L570.2,227.1 L569.0,229.4 L567.2,230.9 L566.4,232.6 L565.8,231.9 L563.5,229.3 L564.0,229.0 Z",VA,51063 447,28145,0.51,0.52,Union,"M451.6,282.6 L451.6,282.3 L453.8,282.2 L456.3,282.0 L458.6,281.8 L458.7,282.8 L458.8,283.3 L458.0,283.6 L457.7,285.8 L456.3,285.7 L451.9,286.0 L451.8,285.0 L451.7,284.0 L451.7,283.2 Z",MS,28145 448,28009,0.56,0.51,Benton,"M453.8,282.2 L451.6,282.3 L451.6,282.6 L450.5,278.3 L449.6,275.8 L451.5,275.7 L451.7,275.7 L452.8,275.6 L454.2,275.5 L453.5,278.5 Z",MS,28009 449,19109,0.50,0.50,Kossuth,"M377.2,146.4 L377.1,141.6 L377.1,140.6 L377.1,137.9 L377.0,136.5 L377.8,136.5 L379.4,136.5 L380.9,136.4 L382.8,136.4 L382.8,138.5 L382.9,140.5 L383.0,143.7 L383.0,146.3 L381.1,146.4 Z",IA,19109 450,19147,0.50,0.50,Palo Alto,"M377.1,140.6 L377.1,141.6 L377.2,146.4 L374.3,146.5 L371.4,146.5 L371.4,143.6 L371.3,140.7 L371.3,140.7 L374.3,140.7 Z",IA,19147 451,19063,0.50,0.50,Emmet,"M377.1,140.6 L374.3,140.7 L371.3,140.7 L371.3,138.5 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.6,136.6 L372.0,136.6 L373.7,136.5 L377.0,136.5 L377.1,137.9 Z",IA,19063 452,19059,0.50,0.50,Dickinson,"M371.3,136.6 L371.3,136.6 L371.3,138.5 L371.3,140.7 L368.9,140.7 L365.6,140.7 L365.5,140.7 L365.5,138.1 L365.5,136.6 L368.2,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 Z",IA,19059 453,19053,0.50,0.50,Decatur,"M383.3,185.5 L383.2,181.3 L383.2,180.0 L386.0,179.9 L389.0,179.9 L389.1,182.1 L389.2,185.2 L388.3,185.3 L386.4,185.3 L385.9,185.3 Z",IA,19053 454,19159,0.50,0.50,Ringgold,"M383.2,180.0 L383.2,181.3 L383.3,185.5 L382.6,185.5 L380.6,185.6 L378.7,185.6 L377.5,185.6 L377.4,180.7 L377.4,180.1 L380.3,180.1 Z",IA,19159 455,37001,0.49,0.49,Alamance,"M581.3,244.7 L581.2,244.0 L581.1,243.7 L580.6,240.7 L580.2,238.1 L580.2,238.0 L580.2,237.9 L580.7,237.8 L583.9,237.4 L584.8,242.8 L585.1,243.4 L585.4,243.9 Z",NC,37001 456,37151,0.50,0.49,Randolph,"M581.1,243.7 L581.2,244.0 L581.3,244.7 L581.9,248.8 L582.1,250.1 L580.1,250.5 L579.2,250.7 L577.4,251.0 L575.2,251.5 L574.8,248.6 L574.3,244.6 L578.4,244.1 Z",NC,37151 457,18171,0.53,0.50,Warren,"M466.2,182.3 L469.8,182.0 L471.7,181.8 L471.7,181.8 L471.9,183.6 L467.8,187.4 L468.3,188.0 L467.2,188.1 L467.2,187.7 L466.6,187.8 L466.5,185.6 Z",IN,18171 458,31109,0.51,0.50,Lancaster,"M346.3,186.5 L346.3,185.1 L346.3,183.6 L346.4,183.6 L346.4,177.8 L346.5,177.8 L352.1,177.8 L352.1,178.3 L352.1,181.2 L352.1,182.2 L352.1,184.4 L352.1,186.6 L349.1,186.6 Z",NE,31109 459,31151,0.50,0.50,Saline,"M346.3,183.6 L346.3,185.1 L346.3,186.5 L346.3,189.3 L346.2,189.4 L344.6,189.4 L340.4,189.3 L340.4,189.3 L340.4,189.3 L340.4,188.9 L340.5,183.5 L340.5,183.5 L340.5,183.5 L344.2,183.6 Z M340.5,183.5 L340.5,183.5 L340.5,183.5 Z M340.4,189.3 L340.5,189.3 L340.4,189.3 Z",NE,31151 460,19031,0.50,0.50,Cedar,"M421.8,160.9 L421.9,162.5 L422.0,163.9 L422.0,164.2 L422.1,166.8 L420.1,166.9 L416.3,167.1 L416.1,164.3 L416.0,162.7 L416.0,162.4 L416.0,161.2 L417.5,161.2 Z",IA,19031 461,19045,0.02,0.58,Clinton,"M422.0,163.9 L421.9,162.5 L421.8,160.9 L421.8,160.1 L421.7,159.5 L423.3,159.4 L431.0,158.9 L431.2,159.5 L431.2,160.7 L430.8,162.8 L430.2,163.2 L429.7,163.5 L429.3,164.2 L427.3,163.5 Z",IA,19045 462,51073,0.52,0.41,Gloucester,"M617.5,210.6 L617.6,210.6 L617.7,210.8 L617.7,210.9 L617.7,210.9 L617.0,213.5 L613.6,210.8 L614.2,210.1 L613.8,209.4 L613.7,208.1 L613.7,208.1 L613.7,208.1 L614.5,208.2 L616.8,209.0 L617.1,210.6 Z M613.7,208.1 L613.7,208.1 L613.7,208.1 Z",VA,51073 463,51097,0.05,0.11,King and Queen,"M613.7,208.1 L613.8,209.4 L614.2,210.1 L613.6,210.8 L613.1,210.1 L612.2,209.7 L608.3,207.3 L605.8,204.9 L606.0,203.5 L607.0,203.4 L609.3,206.0 L612.0,206.4 L612.7,207.4 L613.7,208.1 L613.7,208.1 L613.7,208.1 L613.7,208.1 Z M613.7,208.1 L613.7,208.1 L613.7,208.1 Z",VA,51097 464,51119,0.47,0.62,Middlesex,"M613.7,208.1 L612.7,207.4 L612.0,206.4 L612.2,205.8 L612.8,205.4 L615.4,207.6 L617.4,208.6 L617.1,209.0 L616.8,209.0 L614.5,208.2 L613.7,208.1 L613.7,208.1 L613.7,208.1 L613.7,208.1 L613.7,208.1 Z",VA,51119 465,42123,0.52,0.50,Warren,"M568.6,148.5 L564.2,149.4 L563.7,149.5 L563.0,149.6 L562.5,146.8 L562.3,145.9 L562.2,145.3 L561.9,143.4 L563.6,143.1 L568.6,142.2 L569.3,142.0 L570.4,141.8 L570.5,144.7 L571.1,148.1 L571.1,148.1 Z",PA,42123 466,42053,0.52,0.57,Forest,"M568.6,148.5 L571.1,148.1 L571.1,148.1 L571.6,151.2 L570.3,153.1 L570.1,153.4 L568.9,153.5 L568.6,151.9 L565.4,153.2 L564.7,152.0 L564.2,149.4 Z",PA,42053 467,42065,0.55,0.47,Jefferson,"M568.9,153.5 L570.1,153.4 L570.3,153.1 L571.6,152.2 L575.5,154.5 L574.5,155.8 L575.2,159.6 L573.4,159.9 L570.1,160.4 L569.7,158.2 L569.7,158.1 L569.6,157.7 Z",PA,42065 468,18089,0.51,0.48,Lake,"M468.2,169.6 L466.5,170.7 L465.1,170.8 L465.0,169.6 L464.9,168.6 L464.7,166.8 L464.6,165.7 L464.3,162.1 L464.3,161.4 L465.6,162.6 L468.2,162.7 L468.6,166.0 L468.9,169.2 L468.8,169.3 L468.2,169.6 Z",IN,18089 469,17197,0.51,0.46,Will,"M464.6,165.7 L464.7,166.8 L464.9,168.6 L458.8,169.3 L456.0,171.0 L456.0,171.0 L455.8,169.4 L455.5,166.7 L455.2,163.8 L455.0,162.3 L457.9,162.0 L458.0,162.7 L461.3,166.1 Z",IL,17197 470,47003,0.49,0.51,Bedford,"M485.7,261.0 L489.1,261.8 L491.2,261.3 L491.5,263.4 L491.4,265.0 L489.0,266.8 L487.9,266.3 L487.0,266.2 L486.8,266.3 L485.9,265.2 Z",TN,47003 471,47027,0.51,0.56,Clay,"M502.1,243.3 L502.2,243.3 L502.4,243.3 L502.6,244.2 L502.5,244.9 L500.5,245.6 L499.9,247.3 L496.9,245.7 L495.4,246.2 L495.4,244.3 L495.5,244.2 L499.4,243.8 L500.3,243.7 L501.6,243.4 Z",TN,47027 472,53013,0.50,0.48,Columbia,"M106.1,64.5 L104.8,64.2 L101.9,63.4 L101.7,63.4 L101.7,63.4 L102.6,60.0 L100.1,57.9 L101.4,53.0 L101.5,53.1 L101.6,53.1 L101.9,53.8 L105.8,53.5 L105.1,56.0 L107.4,58.9 Z",WA,53013 473,41063,0.52,0.28,Wallowa,"M101.9,63.4 L104.8,64.2 L106.1,64.5 L106.8,64.7 L107.6,64.9 L109.2,65.2 L114.0,66.4 L114.3,67.9 L114.9,69.1 L117.8,73.9 L113.9,79.0 L112.9,80.9 L112.0,81.8 L109.4,81.2 L106.4,80.5 L103.0,75.2 L102.8,69.1 L101.4,65.7 L101.3,65.7 Z",OR,41063 474,16049,0.49,0.44,Idaho,"M113.9,79.0 L117.8,73.9 L114.9,69.1 L115.7,68.6 L116.5,67.0 L120.4,64.3 L125.2,65.0 L123.9,62.2 L128.0,64.9 L130.5,61.9 L142.9,61.8 L144.3,62.1 L145.9,61.9 L142.2,69.7 L142.7,74.7 L139.5,79.6 L136.4,81.1 L136.8,85.3 L121.8,82.1 L119.6,83.1 L117.8,79.9 Z",ID,16049 475,41001,0.54,0.19,Baker,"M106.4,80.5 L109.4,81.2 L112.0,81.8 L110.9,84.1 L109.7,85.4 L104.6,90.4 L103.9,93.4 L100.1,90.0 L95.7,88.9 L91.8,91.2 L88.7,90.5 L92.3,85.6 L94.6,79.7 L96.2,78.6 L102.6,81.1 Z",OR,41001 476,21127,0.53,0.47,Lawrence,"M529.8,217.1 L529.4,217.0 L529.3,216.5 L530.8,214.5 L530.1,213.5 L531.0,213.1 L531.7,212.1 L532.9,211.6 L534.2,211.7 L534.0,213.5 L536.3,216.5 L535.2,216.5 L535.0,217.8 L530.3,216.4 Z",KY,21127 477,21175,0.46,0.47,Morgan,"M529.3,216.5 L529.4,217.0 L529.8,217.1 L530.3,217.9 L529.9,218.9 L528.4,219.0 L526.8,221.8 L524.9,220.3 L523.4,219.7 L523.9,218.3 L523.8,216.8 L524.5,216.4 L525.9,215.1 L527.0,216.7 Z",KY,21175 478,17025,0.50,0.49,Clay,"M453.4,209.7 L453.4,209.7 L453.4,209.7 Z M453.4,209.7 L455.2,209.5 L457.7,209.4 L457.8,210.4 L459.2,210.3 L459.0,213.9 L459.6,214.5 L455.3,214.7 L453.8,214.8 L453.6,212.5 L453.5,211.2 L453.5,210.3 L453.4,209.7 L453.4,209.7 L453.4,209.7 L453.4,209.7 Z",IL,17025 479,17049,0.50,0.49,Effingham,"M453.4,209.7 L453.4,209.7 L453.4,209.7 L453.4,209.7 L453.4,209.7 L453.4,209.7 L453.4,209.7 L451.9,209.8 L451.6,204.8 L453.2,204.6 L455.9,204.4 L456.0,205.2 L457.4,205.0 L457.4,205.0 L457.6,207.9 L457.7,209.4 L455.2,209.5 Z",IL,17049 480,17051,0.50,0.49,Fayette,"M451.6,204.8 L451.9,209.8 L453.4,209.7 L453.4,209.7 L453.4,209.7 L453.5,210.3 L453.5,211.2 L447.7,211.6 L447.8,213.1 L446.4,213.1 L446.3,213.1 L446.0,208.8 L446.0,208.3 L445.8,205.2 L447.2,205.1 L448.7,205.0 Z",IL,17051 481,17035,0.50,0.50,Cumberland,"M456.0,205.2 L455.9,204.4 L455.7,202.3 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,201.8 L459.1,201.5 L461.6,201.2 L461.7,201.7 L462.0,204.6 L459.9,204.8 L457.4,205.0 L457.4,205.0 Z",IL,17035 482,47123,0.45,0.52,Monroe,"M514.6,259.0 L514.6,258.8 L514.6,258.8 L514.6,258.7 L514.6,258.7 L515.8,257.7 L519.2,258.3 L521.9,259.0 L522.6,260.4 L521.8,261.4 L522.0,263.4 L519.4,264.1 L518.6,265.2 L517.7,264.9 L515.7,264.3 L516.9,263.4 Z M516.9,258.3 L517.0,258.2 L516.9,258.1 L516.8,258.1 Z",TN,47123 483,18157,0.50,0.50,Tippecanoe,"M471.9,183.6 L471.7,181.8 L471.7,181.8 L471.6,180.6 L471.5,180.4 L473.9,180.1 L475.7,180.0 L476.6,179.9 L476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 L477.0,183.7 L477.2,185.6 L474.3,185.9 L472.1,186.2 L471.9,184.2 Z",IN,18157 484,18107,0.50,0.50,Montgomery,"M472.1,186.2 L474.3,185.9 L477.2,185.6 L477.2,185.9 L477.3,186.2 L477.6,189.0 L477.7,190.5 L477.7,190.8 L477.8,191.5 L477.8,191.5 L476.7,191.6 L473.8,191.8 L472.7,191.9 L472.6,190.5 L472.4,189.1 Z",IN,18107 485,18063,0.50,0.51,Hendricks,"M477.7,190.8 L477.7,190.5 L480.2,190.2 L482.4,190.0 L482.5,191.0 L483.0,194.8 L481.2,195.6 L478.8,195.8 L478.3,195.4 L477.8,191.5 L477.8,191.5 Z",IN,18063 486,48277,0.50,0.50,Lamar,"M367.7,306.2 L364.1,304.6 L360.0,304.9 L360.0,298.8 L360.1,298.5 L361.2,298.4 L361.3,298.0 L363.2,297.4 L367.6,297.9 L367.6,300.0 Z",TX,48277 487,38035,0.09,0.49,Grand Forks,"M336.4,57.2 L336.4,57.2 L336.4,57.2 L342.3,57.3 L345.0,57.3 L345.1,57.5 L345.0,57.7 L346.3,62.8 L347.8,66.2 L343.8,66.2 L341.1,66.1 L339.6,66.1 L336.4,66.0 L336.5,60.1 L336.4,57.2 L336.4,57.2 Z",ND,38035 488,38099,0.50,0.50,Walsh,"M336.4,57.2 L334.6,57.1 L331.9,57.1 L332.0,54.1 L331.8,51.1 L333.3,51.2 L336.2,51.2 L342.5,51.4 L344.9,51.4 L344.9,51.4 L345.3,55.1 L345.0,57.3 L342.3,57.3 L336.4,57.2 L336.4,57.2 L336.4,57.2 Z",ND,38099 489,38067,0.02,0.49,Pembina,"M342.5,51.4 L336.2,51.2 L336.0,48.3 L336.1,43.6 L344.2,43.7 L345.7,49.0 L344.8,51.4 L344.9,51.4 L344.9,51.4 Z",ND,38067 490,20071,0.50,0.50,Greeley,"M278.7,215.9 L278.7,215.0 L278.7,214.5 L282.1,214.7 L285.0,214.9 L284.8,217.7 L284.6,222.2 L281.7,222.0 L278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.7 L278.3,221.7 L278.4,219.7 Z M278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.8 Z",KS,20071 491,08099,0.94,0.95,Prowers,"M278.3,221.8 L278.0,226.4 L277.7,230.5 L277.7,231.2 L277.6,232.1 L272.9,231.8 L268.2,231.5 L268.6,228.5 L269.1,221.1 L272.7,221.3 L278.3,221.7 L278.3,221.7 L278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.8 L278.3,221.8 Z",CO,8099 492,20075,0.51,0.50,Hamilton,"M278.3,221.8 L278.3,221.8 L278.3,221.8 L281.7,222.0 L284.6,222.2 L284.6,222.2 L284.9,222.2 L284.4,229.5 L284.6,231.0 L281.6,230.8 L277.7,230.5 L278.0,226.4 Z",KS,20075 493,29057,0.50,0.50,Dade,"M389.7,235.6 L389.7,235.6 L389.7,235.6 L389.7,235.6 L389.7,235.6 L389.7,235.6 L389.7,235.6 L389.7,235.6 L389.7,237.5 L389.7,238.0 L389.7,238.7 L389.7,240.4 L386.9,240.4 L384.0,240.4 L383.6,240.4 L383.6,239.4 L383.6,238.1 L383.6,235.6 L387.3,235.5 Z",MO,29057 494,29167,0.50,0.50,Polk,"M389.7,235.6 L389.8,232.7 L389.5,231.3 L390.0,231.3 L390.2,231.3 L390.2,231.5 L395.3,231.5 L395.6,232.8 L395.6,238.0 L391.2,238.0 L389.7,238.0 L389.7,237.5 L389.7,235.6 L389.7,235.6 Z",MO,29167 495,29109,0.50,0.50,Lawrence,"M384.0,240.4 L386.9,240.4 L389.7,240.4 L390.0,240.4 L390.0,243.5 L390.1,244.9 L390.1,245.2 L390.1,246.1 L390.1,246.4 L388.1,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.3 L384.0,246.3 L384.0,244.5 L384.0,244.5 L384.0,242.3 Z M384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 Z M384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 Z",MO,29109 496,17029,0.50,0.51,Coles,"M461.6,201.2 L459.1,201.5 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,201.7 L455.7,201.5 L455.6,200.8 L455.6,200.6 L455.4,198.4 L455.3,197.1 L460.6,196.7 L461.8,196.0 L462.0,198.7 L462.1,199.4 L461.4,199.5 Z",IL,17029 497,17033,0.50,0.48,Crawford,"M463.3,209.9 L462.9,206.0 L462.7,204.5 L465.4,204.2 L466.9,204.4 L467.8,206.0 L468.7,208.6 L468.4,209.3 L468.7,209.4 L466.7,209.6 L463.8,209.9 L463.5,209.9 Z",IL,17033 498,17079,0.50,0.51,Jasper,"M462.7,204.5 L462.9,206.0 L463.3,209.9 L460.6,210.2 L459.2,210.3 L457.8,210.4 L457.7,209.4 L457.6,207.9 L457.4,205.0 L457.4,205.0 L459.9,204.8 L462.0,204.6 L462.5,204.5 Z",IL,17079 499,19073,0.50,0.50,Greene,"M378.0,158.2 L378.0,158.2 L378.0,158.2 L378.0,158.2 L378.0,158.2 L378.0,158.2 L379.7,158.1 L380.9,158.1 L381.0,163.2 L381.0,163.9 L380.5,163.9 L379.5,163.9 L376.7,164.0 L375.2,164.0 L375.1,163.2 L375.1,158.2 L375.1,158.2 L375.1,158.2 L378.0,158.2 Z",IA,19073 500,42031,0.52,0.50,Clarion,"M565.4,153.2 L568.6,151.9 L568.9,153.5 L569.6,157.7 L569.7,158.1 L564.9,160.3 L563.4,157.3 L563.3,157.2 L563.3,157.2 L564.0,154.6 Z",PA,42031 501,18117,0.50,0.50,Orange,"M480.0,211.1 L482.9,210.7 L484.9,210.5 L485.0,211.3 L485.3,214.9 L485.4,215.4 L480.5,215.9 L480.4,215.0 L480.3,213.7 L480.2,212.6 Z",IN,18117 502,18037,0.50,0.50,Dubois,"M480.3,213.7 L480.4,215.0 L480.5,215.9 L480.7,217.5 L480.8,218.1 L479.3,218.5 L479.4,219.2 L477.4,219.5 L476.4,219.6 L475.7,219.6 L475.6,219.1 L475.4,216.2 L475.2,214.4 L476.2,214.4 L477.1,214.4 L477.1,214.4 L478.2,213.9 Z",IN,18037 503,18027,0.48,0.51,Daviess,"M476.2,214.4 L475.2,214.4 L474.2,214.5 L472.9,214.2 L472.9,214.2 L472.2,211.8 L474.2,208.0 L475.0,207.9 L476.7,207.7 L476.7,207.7 L476.6,209.2 L477.1,214.4 L477.1,214.4 Z",IN,18027 504,18083,0.51,0.50,Knox,"M472.9,214.2 L471.5,214.3 L470.1,214.6 L468.4,216.2 L466.6,217.0 L466.4,215.9 L467.5,214.3 L469.1,212.0 L468.7,209.4 L468.4,209.3 L468.7,208.6 L472.4,208.2 L472.4,208.1 L472.4,208.1 L473.8,208.0 L474.2,208.0 L472.2,211.8 L472.9,214.2 Z",IN,18083 505,18123,0.51,0.50,Perry,"M479.4,219.2 L479.3,218.5 L480.8,218.1 L482.3,218.9 L483.7,218.8 L483.9,220.2 L483.9,220.2 L483.9,220.2 L483.9,220.2 L484.3,220.7 L483.6,221.5 L483.6,223.4 L481.8,225.1 L480.9,224.3 L479.4,222.7 L480.0,222.7 Z",IN,18123 506,18173,0.39,0.39,Warrick,"M475.6,219.1 L475.7,219.6 L476.4,219.6 L474.9,222.2 L473.6,225.3 L473.5,225.2 L473.2,225.0 L472.0,224.5 L471.1,224.5 L470.7,222.9 L470.6,220.8 L470.6,220.8 L472.5,220.0 L472.4,219.2 L472.7,219.5 Z",IN,18173 507,18147,0.57,0.49,Spencer,"M473.6,225.3 L474.9,222.2 L476.4,219.6 L477.4,219.5 L479.4,219.2 L480.0,222.7 L479.4,222.7 L478.2,223.9 L477.4,224.1 L476.4,226.3 Z",IN,18147 508,18163,0.49,0.49,Vanderburgh,"M470.7,222.9 L471.1,224.5 L469.1,224.2 L467.9,225.5 L467.6,221.7 L467.7,221.0 L469.8,220.8 L470.6,220.8 L470.6,220.8 Z",IN,18163 509,51057,0.46,0.54,Essex,"M612.0,206.4 L609.3,206.0 L607.0,203.4 L605.3,201.8 L605.8,200.5 L605.8,200.5 L605.8,200.5 L605.9,200.5 L606.2,200.5 L606.3,200.5 L606.4,200.4 L606.6,200.3 L606.7,200.5 L606.8,201.0 L607.0,201.0 L607.0,201.0 L607.0,201.0 L607.0,201.0 L607.0,201.0 L607.0,201.0 L607.3,201.0 L607.6,201.0 L607.7,201.1 L608.2,201.2 L608.9,202.7 L612.8,205.2 L612.8,205.2 L612.8,205.2 L612.8,205.4 L612.2,205.8 Z",VA,51057 510,27043,0.50,0.50,Faribault,"M382.8,136.4 L380.9,136.4 L379.4,136.5 L379.3,132.3 L379.3,130.6 L382.8,130.5 L385.1,130.5 L385.9,130.5 L386.6,130.4 L386.6,130.4 L386.7,132.9 L386.7,136.3 L383.2,136.4 Z",MN,27043 511,27147,0.50,0.50,Steele,"M391.0,130.3 L389.5,130.4 L389.5,127.7 L389.4,124.5 L390.3,124.5 L393.7,124.4 L393.9,128.8 L393.9,130.2 L393.9,130.2 L393.9,130.2 Z",MN,27147 512,27047,0.50,0.50,Freeborn,"M391.0,130.3 L393.9,130.2 L393.9,130.2 L394.0,132.7 L394.1,136.1 L391.0,136.2 L388.6,136.2 L387.3,136.3 L386.7,136.3 L386.7,132.9 L386.6,130.4 L386.6,130.4 L386.6,130.4 L386.6,130.4 L386.6,130.4 L388.2,130.4 L389.5,130.4 Z M386.6,130.4 L386.6,130.4 L386.6,130.4 Z",MN,27047 513,19195,0.50,0.50,Worth,"M388.6,136.2 L391.0,136.2 L394.1,136.1 L394.2,136.1 L394.4,136.1 L394.4,138.0 L394.5,140.2 L392.6,140.2 L388.7,140.3 L388.6,137.8 Z",IA,19195 514,51167,0.46,0.48,Russell,"M540.2,234.0 L541.5,233.3 L541.0,232.3 L541.8,231.8 L543.2,230.7 L544.8,230.0 L546.2,228.5 L547.4,229.9 L548.3,231.3 L547.8,231.6 L547.6,231.9 L544.6,233.7 L541.6,236.6 L541.1,235.5 Z",VA,51167 515,51027,0.47,0.51,Buchanan,"M546.2,228.5 L544.8,230.0 L543.2,230.7 L543.3,230.4 L540.3,226.9 L542.5,224.3 L544.3,222.1 L544.6,222.3 L544.9,222.5 L544.1,223.2 L548.1,226.6 L547.9,227.2 Z",VA,51027 516,54047,0.47,0.49,McDowell,"M544.1,223.2 L544.9,222.5 L544.9,222.5 L545.1,222.2 L545.7,221.7 L548.5,221.7 L553.2,222.6 L553.0,223.5 L552.8,224.2 L550.5,226.8 L548.1,226.6 L546.4,226.0 Z",WV,54047 517,08089,0.50,0.47,Otero,"M260.4,220.4 L259.8,227.8 L259.5,230.8 L250.9,230.0 L251.0,228.5 L251.1,227.0 L251.6,221.7 L257.3,222.7 L259.1,220.3 L259.9,220.4 Z",CO,8089 518,40089,0.99,0.50,McCurtain,"M372.7,287.3 L373.9,287.2 L379.4,287.2 L379.3,289.8 L379.3,292.5 L379.3,294.2 L379.3,296.7 L379.3,299.2 L379.3,301.8 L378.2,302.0 L375.6,300.7 L372.4,298.1 L369.8,296.9 L369.8,296.1 L369.7,293.2 L371.3,291.7 Z",OK,40089 519,40079,0.50,0.50,Le Flore,"M379.4,287.2 L373.9,287.2 L372.7,287.3 L372.7,284.3 L371.0,284.4 L371.0,281.4 L372.8,280.0 L372.8,278.0 L372.8,278.0 L372.7,275.6 L374.3,273.5 L374.3,273.5 L378.7,273.9 L379.5,272.4 L379.5,272.8 L379.4,280.0 L379.4,281.7 L379.4,283.4 L379.4,284.8 Z",OK,40079 520,40135,0.50,0.50,Sequoyah,"M374.3,273.5 L373.1,272.3 L371.0,271.3 L369.9,270.2 L369.9,268.3 L371.6,268.3 L374.3,268.3 L376.0,268.2 L378.9,268.2 L379.2,270.5 L379.5,272.2 L379.5,272.3 L379.5,272.4 L378.7,273.9 L374.3,273.5 Z",OK,40135 521,40101,0.52,0.48,Muskogee,"M369.9,268.3 L369.9,270.2 L371.0,271.3 L368.4,274.6 L367.0,274.1 L367.0,269.8 L361.9,269.8 L361.9,266.9 L361.2,264.7 L362.9,265.9 L368.0,265.4 L369.9,265.4 Z",OK,40101 522,29043,0.50,0.50,Christian,"M390.1,245.2 L390.1,244.9 L390.0,243.5 L394.3,243.4 L397.3,243.4 L399.5,243.4 L399.5,243.7 L399.5,245.1 L399.6,248.1 L399.6,248.1 L397.3,248.1 L394.3,248.1 L393.7,245.2 Z",MO,29043 523,29067,0.93,0.48,Douglas,"M399.5,245.1 L399.5,243.7 L400.7,243.7 L402.4,243.6 L404.9,243.6 L408.3,243.5 L410.0,243.5 L410.4,243.5 L410.4,243.5 L410.5,247.9 L410.3,247.9 L406.8,247.9 L401.5,248.0 L400.1,248.1 L399.6,248.1 L399.6,248.1 Z",MO,29067 524,29215,0.50,0.50,Texas,"M410.0,243.5 L408.3,243.5 L408.1,240.3 L408.0,236.6 L407.9,234.9 L407.9,234.4 L407.9,234.4 L407.9,234.4 L408.8,234.4 L410.8,234.3 L413.1,234.3 L413.8,234.3 L414.6,237.1 L416.1,237.1 L416.2,240.0 L416.3,243.4 L413.3,243.5 L410.4,243.5 L410.4,243.5 Z",MO,29215 525,18115,0.49,0.71,Ohio,"M499.7,204.8 L499.7,204.5 L499.7,204.5 L501.3,203.5 L502.8,202.7 L503.5,203.8 L503.2,204.8 L499.7,205.2 Z",IN,18115 526,18137,0.55,0.50,Ripley,"M499.7,204.5 L499.7,204.5 L499.7,204.8 L498.8,204.9 L498.8,205.2 L498.3,205.2 L495.7,205.5 L495.5,204.1 L495.2,200.8 L496.0,200.2 L496.9,199.4 L497.9,198.6 L499.8,198.4 L499.8,200.3 Z",IN,18137 527,18031,0.50,0.50,Decatur,"M496.9,199.4 L496.0,200.2 L495.2,200.8 L493.7,202.1 L492.1,202.3 L491.9,200.0 L491.8,198.6 L492.5,198.5 L492.3,196.8 L492.3,196.8 L494.5,196.6 L496.5,196.3 L496.8,198.0 Z",IN,18031 528,18139,0.50,0.50,Rush,"M492.3,196.8 L491.9,194.2 L491.8,192.8 L491.6,191.3 L492.1,191.2 L494.0,191.0 L495.8,190.8 L496.0,192.2 L496.4,195.1 L496.4,195.2 L496.5,196.3 L494.5,196.6 L492.3,196.8 Z",IN,18139 529,22021,0.50,0.49,Caldwell,"M410.8,325.9 L410.8,324.6 L410.7,323.7 L412.8,323.7 L414.7,323.6 L415.5,325.4 L416.8,325.6 L416.6,326.7 L417.0,328.6 L416.8,329.4 L415.3,329.4 L413.4,329.5 L410.9,329.6 L410.8,326.9 Z",LA,22021 530,22049,0.49,0.50,Jackson,"M410.7,323.7 L410.8,324.6 L410.8,325.9 L409.2,326.0 L403.6,326.2 L404.1,324.7 L404.0,321.0 L406.1,320.2 L409.1,320.1 L409.1,321.6 Z",LA,22049 531,30015,0.49,0.49,Chouteau,"M182.4,50.9 L182.9,48.0 L183.2,46.1 L183.3,45.2 L183.6,43.6 L190.1,44.7 L191.2,43.4 L192.9,42.2 L201.6,43.6 L204.7,47.0 L204.0,51.4 L203.6,53.6 L200.3,53.5 L199.7,56.3 L195.1,57.8 L193.3,57.5 L190.3,57.1 L186.1,53.3 L187.3,51.7 L182.4,50.9 Z",MT,30015 532,30013,0.21,0.43,Cascade,"M182.4,50.9 L187.3,51.7 L186.1,53.3 L190.3,57.1 L187.9,62.2 L188.5,66.9 L186.0,63.8 L178.9,62.3 L177.3,63.5 L176.4,59.7 L173.7,58.1 L174.6,52.7 L179.5,50.4 L182.4,50.9 Z",MT,30013 533,30073,0.52,0.39,Pondera,"M183.6,43.6 L183.3,45.2 L183.2,46.1 L176.7,45.0 L175.0,42.1 L165.6,40.4 L163.3,39.3 L162.5,36.7 L171.0,38.3 L171.6,35.4 L176.0,36.3 L181.4,39.5 L183.9,42.2 L183.8,42.7 Z",MT,30073 534,09007,0.64,0.46,Middlesex,"M652.9,133.9 L652.7,134.0 L652.9,134.2 L652.9,134.2 L653.0,134.3 L653.3,135.3 L651.2,136.1 L649.2,133.6 L647.4,131.7 L650.1,129.8 L650.8,130.7 L652.8,131.0 Z M653.4,134.7 L653.4,134.7 L653.4,134.5 L653.4,134.6 Z",CT,9007 535,09011,0.52,0.43,New London,"M652.9,134.2 L652.9,134.2 L653.0,134.3 L653.0,134.3 Z M653.4,134.5 L653.4,134.3 L652.9,133.9 L652.8,131.0 L650.8,130.7 L651.4,130.4 L651.4,130.2 L652.2,129.3 L653.0,127.8 L656.9,128.2 L658.8,127.6 L658.9,127.9 L659.0,128.3 L659.7,131.2 L659.4,133.0 L654.3,135.0 L653.4,134.7 L653.4,134.6 Z",CT,9011 536,09015,0.46,0.56,Windham,"M658.8,127.6 L656.9,128.2 L653.0,127.8 L652.3,123.8 L653.3,122.3 L657.0,121.4 L657.1,121.6 L657.4,122.9 L658.4,126.2 L658.8,127.3 Z",CT,9015 537,18161,0.50,0.50,Union,"M499.4,191.6 L499.4,191.3 L502.2,191.0 L502.3,192.1 L502.5,193.7 L502.5,193.7 L502.5,193.8 L502.6,194.4 L501.2,194.6 L499.8,194.7 L499.6,193.3 Z",IN,18161 538,39017,0.51,0.50,Butler,"M502.5,193.7 L506.8,193.1 L506.8,192.7 L506.9,192.8 L508.3,192.6 L508.8,193.2 L509.1,197.5 L505.4,197.6 L503.0,198.0 L502.9,196.7 L502.6,194.4 L502.5,193.8 L502.5,193.7 Z",OH,39017 539,39165,0.50,0.51,Warren,"M509.1,197.5 L508.8,193.2 L508.3,192.6 L509.3,192.5 L511.5,192.4 L513.0,192.3 L513.3,192.3 L513.5,195.3 L513.6,197.5 L513.3,197.6 L510.3,197.7 L510.2,197.4 L509.1,197.5 Z",OH,39165 540,29145,0.50,0.50,Newton,"M384.0,249.5 L381.1,249.5 L376.6,249.3 L376.6,248.5 L376.5,245.4 L376.5,244.9 L376.5,244.5 L381.3,244.5 L384.0,244.5 L384.0,244.5 L384.0,246.3 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,246.4 L384.0,248.1 Z",MO,29145 541,29119,0.50,0.50,McDonald,"M376.6,249.3 L381.1,249.5 L384.0,249.5 L384.0,251.0 L384.0,253.7 L380.0,253.7 L376.7,253.8 L376.6,252.0 L376.6,251.0 L376.6,249.8 Z",MO,29119 542,31033,0.96,0.54,Cheyenne,"M273.6,175.5 L269.2,175.1 L264.4,174.8 L264.5,174.0 L265.0,168.2 L265.0,168.2 L265.1,168.2 L265.1,167.5 L271.2,167.9 L274.4,168.2 L274.6,168.9 L274.4,171.8 L274.2,174.7 L274.0,175.5 L274.0,175.5 Z",NE,31033 543,31007,0.50,0.50,Banner,"M265.0,168.2 L261.9,168.0 L256.5,167.5 L256.6,166.0 L256.7,164.7 L256.8,164.2 L256.9,162.4 L261.7,162.8 L265.5,163.1 L265.3,165.9 L265.1,167.5 L265.1,168.2 L265.0,168.2 Z",NE,31007 544,31157,0.50,0.50,Scotts Bluff,"M265.5,163.1 L261.7,162.8 L256.9,162.4 L257.0,161.9 L257.4,157.4 L257.4,157.4 L257.4,157.4 L259.9,157.6 L265.5,158.0 L265.7,158.0 L266.0,158.1 L265.6,162.4 Z",NE,31157 545,56015,0.50,0.50,Goshen,"M257.0,161.9 L256.9,162.4 L256.8,164.2 L256.7,164.7 L249.2,163.9 L249.4,162.5 L249.4,162.5 L250.0,156.1 L250.9,146.5 L256.0,146.9 L258.3,147.2 L257.8,153.0 L257.4,157.4 L257.4,157.4 Z",WY,56015 546,31165,0.58,0.50,Sioux,"M257.4,157.4 L257.8,153.0 L258.3,147.2 L258.5,144.8 L258.9,140.7 L263.8,141.1 L265.6,141.2 L265.1,150.7 L265.6,150.7 L265.1,156.5 L265.5,158.0 L259.9,157.6 L257.4,157.4 Z",NE,31165 547,13263,0.54,0.47,Talbot,"M518.6,309.6 L518.1,305.5 L518.0,305.3 L519.8,305.1 L520.6,304.3 L520.6,304.3 L522.5,305.7 L524.0,306.2 L523.3,306.7 L522.2,309.6 L520.6,310.3 L519.5,310.4 L519.0,310.7 L518.7,310.7 L519.0,309.9 Z",GA,13263 548,01081,0.48,0.45,Lee,"M512.1,307.7 L512.7,309.3 L513.1,309.9 L513.3,310.4 L514.4,311.4 L509.8,312.7 L508.5,313.8 L507.5,312.5 L504.4,311.1 L504.2,309.4 L505.6,308.8 L510.0,308.2 Z",AL,1081 549,38081,0.51,0.50,Sargent,"M334.3,95.4 L334.4,92.9 L334.5,89.5 L335.8,89.6 L343.0,89.7 L343.2,94.5 L343.5,95.6 L340.5,95.5 L334.7,95.4 L334.6,95.4 Z",ND,38081 550,38021,0.11,0.47,Dickey,"M334.5,89.5 L334.4,92.9 L334.3,95.4 L329.5,95.3 L325.9,95.1 L323.9,95.0 L322.6,95.0 L322.7,92.4 L322.8,89.2 L329.7,89.4 L334.1,89.5 L334.2,89.5 Z",ND,38021 551,27085,0.50,0.50,McLeod,"M381.9,115.9 L379.0,117.5 L376.0,116.0 L376.0,113.1 L375.9,113.1 L375.9,111.6 L378.8,111.6 L379.9,111.6 L381.7,111.5 L381.8,113.0 Z",MN,27085 552,27143,0.05,0.52,Sibley,"M376.0,116.0 L379.0,117.5 L381.9,115.9 L383.3,115.9 L384.8,117.2 L383.7,117.5 L383.1,118.8 L383.4,119.5 L382.9,120.3 L377.9,120.4 L374.6,120.5 L374.4,116.1 Z",MN,27143 553,13171,0.46,0.53,Lamar,"M525.9,302.8 L525.8,301.8 L523.7,302.1 L523.9,301.2 L523.6,298.7 L525.4,298.7 L525.3,298.3 L525.8,298.2 L526.5,298.1 L527.0,302.4 Z",GA,13171 554,06097,0.44,0.16,Sonoma,"M13.9,176.0 L13.7,176.2 L12.5,176.2 L8.4,171.4 L7.0,171.3 L4.2,165.7 L2.7,161.7 L7.9,162.6 L12.0,163.2 L12.7,164.2 L13.6,166.8 L14.8,174.6 L13.9,175.9 L13.9,175.9 Z",CA,6097 555,06045,0.09,0.47,Mendocino,"M12.0,163.2 L7.9,162.6 L2.7,161.7 L2.0,151.3 L4.1,143.5 L2.9,140.1 L6.2,141.2 L8.7,142.0 L8.6,142.4 L16.1,144.7 L15.6,145.7 L15.2,147.5 L15.3,149.1 L14.8,151.2 L12.2,151.8 L9.7,158.6 Z",CA,6045 556,16065,0.44,0.50,Madison,"M170.9,118.7 L168.9,118.4 L168.2,118.2 L164.9,115.2 L164.8,112.5 L169.7,114.1 L171.7,113.7 L171.6,114.4 Z",ID,16065 557,16019,0.74,0.56,Bonneville,"M168.2,118.2 L168.9,118.4 L170.9,118.7 L172.7,119.0 L174.8,121.4 L174.5,123.5 L174.3,124.5 L173.7,128.2 L173.5,129.4 L169.4,128.7 L166.9,128.3 L167.6,124.0 L161.8,120.5 L156.8,119.6 L157.4,116.3 L162.6,117.2 Z",ID,16019 558,13297,0.52,0.39,Walton,"M528.2,285.6 L528.8,286.1 L530.4,285.7 L531.5,286.5 L532.5,286.9 L532.2,287.5 L530.6,290.9 L529.4,290.2 L527.0,288.9 L526.6,288.7 L526.0,288.3 L527.0,287.1 Z",GA,13297 559,13013,0.47,0.59,Barrow,"M530.4,285.7 L528.8,286.1 L528.2,285.6 L527.1,284.4 L527.5,282.3 L527.5,282.3 L527.5,282.3 L531.3,283.4 L531.8,284.5 L531.3,284.9 Z",GA,13013 560,40115,0.50,0.50,Ottawa,"M376.6,249.3 L376.6,249.8 L376.6,251.0 L374.4,251.0 L371.5,251.0 L371.4,246.4 L371.0,245.6 L371.3,245.5 L371.3,245.5 L371.3,245.5 L371.3,245.5 L374.7,245.5 L376.5,245.4 L376.6,248.5 Z",OK,40115 561,40035,0.50,0.50,Craig,"M371.4,246.4 L371.5,251.0 L371.4,252.2 L371.4,253.7 L369.8,253.7 L367.1,253.7 L367.0,252.3 L365.7,252.3 L365.6,246.5 L365.9,245.6 L369.2,245.5 L370.4,245.5 L370.9,245.5 L371.3,245.5 L371.3,245.5 Z",OK,40035 562,20021,0.50,0.50,Cherokee,"M370.9,245.5 L370.4,245.5 L370.4,241.4 L370.3,239.8 L372.6,239.8 L376.5,239.8 L376.5,242.9 L376.5,244.5 L376.5,244.9 L376.5,245.4 L374.7,245.5 L371.3,245.5 L371.3,245.5 L371.3,245.5 Z",KS,20021 563,42033,0.06,0.55,Clearfield,"M575.2,159.6 L574.5,155.8 L575.5,154.5 L576.1,153.5 L581.3,152.8 L581.9,152.8 L583.1,152.7 L583.6,153.3 L584.0,153.6 L584.1,156.9 L581.3,161.3 L581.5,161.4 L581.5,161.4 L579.6,161.8 L575.8,162.5 L575.8,162.5 Z",PA,42033 564,17167,0.05,0.53,Sangamon,"M439.6,200.5 L438.3,200.6 L436.7,200.7 L436.7,200.7 L435.7,197.5 L435.4,194.9 L435.4,194.6 L435.4,194.4 L439.1,193.9 L440.6,192.8 L441.9,193.5 L445.3,193.5 L445.3,193.5 L445.4,194.2 L445.5,195.2 L441.6,198.4 L441.7,200.3 L441.0,200.4 L439.6,200.5 L439.6,200.5 Z",IL,17167 565,17135,0.52,0.48,Montgomery,"M439.6,200.5 L441.0,200.4 L441.7,200.3 L442.0,203.3 L447.1,202.9 L447.2,204.6 L447.2,205.1 L445.8,205.2 L446.0,208.3 L441.6,208.7 L441.0,209.2 L441.0,209.2 L440.8,209.2 L440.2,209.3 L439.7,203.4 L439.6,200.5 Z",IL,17135 566,17005,0.50,0.51,Bond,"M441.6,208.7 L446.0,208.3 L446.0,208.8 L446.3,213.1 L443.1,213.4 L441.8,213.4 L441.7,211.2 L441.0,209.2 L441.0,209.2 Z",IL,17005 567,28071,0.50,0.50,Lafayette,"M451.7,284.0 L451.8,285.0 L451.9,286.0 L452.1,289.3 L452.1,289.6 L452.1,289.6 L450.3,289.8 L448.5,289.9 L448.4,289.4 L445.5,289.6 L445.3,287.2 L445.1,283.5 L445.5,283.5 L445.8,283.5 L448.4,283.3 Z",MS,28071 568,28115,0.50,0.49,Pontotoc,"M452.1,289.3 L451.9,286.0 L456.3,285.7 L457.7,285.8 L457.8,287.4 L458.1,290.6 L455.7,290.8 L453.7,291.0 L452.3,291.1 L452.1,289.6 L452.1,289.6 Z",MS,28115 569,27055,0.50,0.50,Houston,"M415.3,129.3 L415.9,130.5 L415.8,131.4 L415.7,133.2 L416.4,135.1 L415.8,135.1 L411.6,135.4 L411.4,135.4 L410.2,135.4 L410.2,135.4 L410.2,135.4 L410.2,135.0 L409.9,129.6 L412.7,129.5 Z",MN,27055 570,27045,0.50,0.50,Fillmore,"M410.2,135.4 L410.2,135.4 L410.2,135.4 Z M410.2,135.4 L408.0,135.5 L405.9,135.6 L405.9,135.6 L405.9,135.6 L405.7,135.6 L405.5,135.6 L404.2,135.7 L401.4,135.8 L401.3,132.7 L401.2,130.2 L401.2,130.0 L405.7,129.8 L408.1,129.7 L409.9,129.6 L410.2,135.0 L410.2,135.4 L410.2,135.4 Z",MN,27045 571,19191,0.50,0.50,Winneshiek,"M410.2,135.4 L410.2,135.4 L410.2,135.4 L410.2,135.4 L410.2,135.4 L411.4,135.4 L411.6,135.4 L411.9,138.0 L412.0,142.4 L409.0,142.5 L406.2,142.6 L406.1,141.4 L406.1,140.4 L406.0,137.9 L405.9,135.6 L405.9,135.6 L408.0,135.5 Z",IA,19191 572,27099,0.50,0.49,Mower,"M398.3,130.3 L401.2,130.2 L401.3,132.7 L401.4,135.8 L401.2,135.8 L400.1,135.9 L396.8,136.0 L394.4,136.1 L394.2,136.1 L394.1,136.1 L394.0,132.7 L393.9,130.2 L393.9,130.2 L393.9,130.2 L396.1,130.1 L398.2,130.1 L398.2,130.1 Z",MN,27099 573,27109,0.49,0.48,Olmsted,"M398.3,130.3 L398.2,130.1 L398.2,130.1 L398.4,130.1 L398.2,124.2 L399.5,124.2 L399.7,124.2 L402.6,125.5 L405.5,125.4 L405.5,125.9 L405.7,129.8 L401.2,130.0 L401.2,130.2 Z",MN,27109 574,27039,0.50,0.50,Dodge,"M398.2,124.2 L398.4,130.1 L398.2,130.1 L398.2,130.1 L396.1,130.1 L393.9,130.2 L393.9,128.8 L393.7,124.4 L393.8,124.4 L393.8,124.4 L396.6,124.3 Z",MN,27039 575,46097,0.50,0.50,Miner,"M341.3,130.7 L339.3,130.6 L338.4,130.6 L336.2,130.6 L335.5,130.6 L335.5,126.9 L335.6,124.7 L337.6,124.8 L341.4,124.9 L341.3,128.5 Z",SD,46097 576,46087,0.50,0.50,McCook,"M338.4,130.6 L339.3,130.6 L341.3,130.7 L342.6,130.7 L344.2,130.7 L344.2,134.7 L344.2,136.6 L342.8,136.6 L340.8,136.5 L339.9,136.5 L338.3,136.5 L338.4,132.6 Z",SD,46087 577,46099,0.50,0.50,Minnehaha,"M344.2,136.6 L344.2,134.7 L344.2,130.7 L346.1,130.7 L347.2,130.8 L351.8,130.8 L352.5,130.8 L352.4,134.1 L352.4,136.6 L351.3,136.6 L350.7,136.6 L348.1,136.6 L346.7,136.6 L345.6,136.6 Z",SD,46099 578,46101,0.50,0.50,Moody,"M352.5,130.8 L351.8,130.8 L347.2,130.8 L347.2,125.9 L347.2,124.9 L350.5,124.9 L352.5,124.9 L352.5,129.8 Z",SD,46101 579,01017,0.50,0.49,Chambers,"M511.1,305.7 L511.5,306.7 L512.1,307.7 L510.0,308.2 L505.6,308.8 L505.4,307.0 L504.9,302.4 L506.9,302.2 L510.0,301.8 L511.1,305.7 Z",AL,1017 580,18047,0.51,0.49,Franklin,"M499.8,194.7 L501.2,194.6 L502.6,194.4 L502.9,196.7 L503.0,198.0 L502.4,198.1 L499.8,198.4 L497.9,198.6 L496.9,199.4 L496.8,198.0 L496.5,196.3 L496.4,195.2 L496.4,195.1 L498.6,194.8 Z",IN,18047 581,27121,0.50,0.50,Pope,"M361.0,104.5 L361.0,101.6 L360.8,101.6 L360.8,98.7 L360.8,98.7 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L363.9,98.6 L368.1,98.6 L368.2,101.5 L368.3,104.4 L367.2,104.4 L366.8,104.4 L363.9,104.5 Z",MN,27121 582,27067,0.50,0.50,Kandiyohi,"M366.8,104.4 L367.2,104.4 L368.3,104.4 L372.7,104.4 L372.7,105.8 L372.8,107.3 L372.8,113.1 L371.2,113.2 L367.0,113.2 L367.0,111.8 L367.0,108.8 L366.8,107.4 Z",MN,27067 583,48177,0.19,0.71,Gonzales,"M338.5,366.7 L341.3,369.2 L341.1,369.4 L340.2,370.2 L339.6,373.5 L335.8,376.6 L334.0,378.1 L333.7,377.8 L332.3,376.2 L330.4,373.9 L330.7,373.5 L332.1,371.4 L333.8,368.9 L334.3,369.3 Z",TX,48177 584,48149,0.26,0.88,Fayette,"M341.1,369.4 L341.3,369.2 L338.5,366.7 L338.5,366.7 L338.6,366.7 L341.7,363.5 L342.9,362.3 L343.0,362.6 L346.3,360.5 L348.5,360.7 L348.8,362.5 L349.2,363.2 L349.6,363.9 L347.4,366.7 L345.0,369.4 L343.3,369.4 Z",TX,48149 585,48011,0.50,0.50,Armstrong,"M287.5,281.3 L283.6,281.1 L282.3,281.0 L281.1,281.0 L280.1,280.9 L280.4,276.8 L280.6,273.6 L284.2,273.8 L288.0,274.1 L287.8,277.1 Z",TX,48011 586,48045,0.50,0.50,Briscoe,"M282.3,281.0 L283.6,281.1 L287.5,281.3 L288.8,281.4 L289.6,281.4 L289.3,286.0 L289.1,288.7 L288.9,288.7 L287.8,288.7 L286.9,288.6 L281.8,288.3 L282.0,285.3 Z",TX,48045 587,26071,0.07,0.60,Iron,"M450.3,86.4 L450.4,88.3 L450.7,91.9 L446.0,90.6 L444.0,90.9 L442.4,90.9 L441.0,90.1 L440.6,89.9 L440.3,89.7 L440.1,87.7 L439.9,85.8 L439.9,84.8 L439.8,84.3 L441.8,84.2 L443.5,84.0 L447.6,83.7 L450.0,83.5 L450.1,84.9 Z",MI,26071 588,26131,0.14,0.45,Ontonagon,"M439.8,84.3 L439.9,84.8 L439.9,85.8 L435.6,86.1 L435.4,83.2 L431.0,83.5 L428.7,79.2 L434.5,77.2 L439.7,73.6 L440.1,78.4 Z",MI,26131 589,27133,0.50,0.50,Rock,"M352.4,136.6 L352.4,134.1 L352.5,130.8 L354.4,130.8 L357.2,130.8 L357.3,130.8 L357.3,130.8 L357.3,134.7 L357.3,136.7 L355.3,136.7 Z",MN,27133 590,27105,0.50,0.50,Nobles,"M357.3,136.7 L357.3,134.7 L357.3,130.8 L362.7,130.8 L364.5,130.8 L364.6,130.8 L364.6,130.8 L364.7,132.3 L364.7,136.6 L364.1,136.6 L359.7,136.7 L358.2,136.7 L357.3,136.7 Z",MN,27105 591,19119,0.50,0.50,Lyon,"M358.2,136.7 L359.7,136.7 L359.7,139.2 L359.7,140.7 L353.7,140.7 L351.2,140.7 L351.5,138.4 L350.7,136.6 L351.3,136.6 L352.4,136.6 L355.3,136.7 L357.3,136.7 Z",IA,19119 592,22111,0.01,0.53,Union,"M409.0,318.7 L409.0,317.2 L404.5,315.9 L404.5,314.9 L404.4,311.6 L410.5,311.4 L413.6,311.3 L413.6,313.7 L413.9,316.1 L411.1,318.6 Z",LA,22111 593,22061,0.49,0.49,Lincoln,"M404.5,315.9 L409.0,317.2 L409.0,318.7 L409.1,319.5 L409.1,320.1 L406.1,320.2 L404.0,321.0 L402.5,321.1 L402.4,318.9 L402.4,318.9 L402.4,318.9 L403.0,315.9 Z",LA,22061 594,22027,0.51,0.50,Claiborne,"M402.4,318.9 L400.7,318.9 L398.2,319.0 L397.3,316.8 L397.1,311.8 L399.0,311.7 L400.6,311.7 L402.5,311.6 L404.4,311.6 L404.5,314.9 L404.5,315.9 L403.0,315.9 L402.7,317.9 L402.4,318.9 L402.4,318.9 Z",LA,22027 595,42043,0.46,0.52,Dauphin,"M602.3,158.3 L604.0,159.2 L604.7,159.5 L603.2,161.2 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.1,165.7 L603.9,167.1 L603.4,166.5 L601.8,165.8 L601.8,165.8 L601.8,165.8 L600.8,164.9 L600.8,164.3 L599.1,163.5 L599.3,159.4 L599.3,159.4 L600.1,159.6 L601.7,158.5 L602.3,158.3 L602.3,158.3 L602.3,158.3 Z M605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 Z",PA,42043 596,42097,0.27,0.47,Northumberland,"M602.3,158.3 L600.1,159.6 L599.3,159.4 L599.3,159.4 L599.3,159.4 L599.4,159.2 L600.1,157.5 L600.3,154.9 L598.9,153.6 L598.2,150.9 L598.3,150.6 L600.1,150.0 L600.1,153.8 L603.7,154.1 L605.3,154.6 L605.9,155.5 L603.8,157.1 L602.3,158.3 L602.3,158.3 Z",PA,42097 597,42067,0.44,0.39,Juniata,"M599.3,159.4 L596.5,160.8 L591.4,166.9 L591.3,167.1 L591.1,167.4 L590.5,166.3 L590.1,165.6 L592.6,161.6 L594.9,159.3 L598.1,158.9 L599.4,159.2 L599.3,159.4 L599.3,159.4 Z",PA,42067 598,42099,0.46,0.51,Perry,"M599.1,163.5 L600.8,164.3 L594.7,166.6 L592.4,168.2 L592.1,168.0 L591.4,166.9 L596.5,160.8 L599.3,159.4 L599.3,159.4 L599.3,160.0 Z",PA,42099 599,42071,0.61,0.43,Lancaster,"M605.6,165.5 L608.7,163.8 L610.4,162.4 L613.3,163.9 L614.5,164.5 L614.0,169.2 L612.7,172.1 L612.6,172.1 L611.5,172.3 L611.4,172.3 L606.5,167.8 L603.9,167.1 L605.1,165.7 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 Z",PA,42071 600,42041,0.53,0.41,Cumberland,"M592.4,168.2 L594.7,166.6 L600.8,164.3 L600.8,164.9 L601.8,165.8 L601.8,165.8 L600.0,167.5 L598.9,169.1 L595.8,171.0 L595.1,172.0 L594.0,170.5 Z",PA,42041 601,40027,0.49,0.50,Cleveland,"M335.0,273.0 L335.0,272.5 L340.9,272.6 L342.3,272.7 L342.2,278.9 L342.2,280.2 L339.3,277.6 L335.0,273.2 L335.0,273.2 L335.0,273.2 L335.0,273.2 Z",OK,40027 602,40017,0.50,0.50,Canadian,"M335.0,273.0 L335.0,273.2 L335.0,273.2 L335.0,273.2 L335.0,273.2 L333.6,273.2 L332.7,273.2 L329.2,272.4 L326.3,272.3 L326.3,269.4 L326.4,266.5 L327.8,266.6 L331.2,266.6 L335.1,266.7 L335.1,269.6 L335.0,272.5 Z",OK,40017 603,40015,0.51,0.50,Caddo,"M326.3,269.4 L326.3,272.3 L329.2,272.4 L329.2,275.3 L329.1,281.2 L324.8,281.1 L321.8,281.0 L321.8,278.3 L321.9,276.9 L321.9,275.1 L322.0,270.8 L322.0,269.8 L322.1,269.3 L323.9,269.4 Z",OK,40015 604,54079,0.62,0.49,Putnam,"M541.1,208.5 L541.0,208.0 L540.7,206.8 L540.3,204.6 L543.9,202.8 L544.2,202.7 L545.0,203.6 L545.0,206.3 L542.9,209.0 L542.1,210.1 Z",WV,54079 605,54011,0.55,0.49,Cabell,"M540.7,206.8 L541.0,208.0 L541.1,208.5 L539.5,209.3 L538.6,211.3 L537.4,210.2 L535.0,208.8 L537.3,207.8 L537.5,205.5 L537.9,205.2 L538.3,205.2 L540.2,206.5 Z",WV,54011 606,05137,0.50,0.49,Stone,"M409.3,266.1 L406.9,266.1 L406.9,264.9 L406.8,263.2 L406.8,261.8 L408.2,260.3 L409.7,259.0 L411.0,262.3 L414.6,263.2 L414.3,264.2 L414.9,266.0 L413.2,266.0 Z",AR,5137 607,05141,0.50,0.50,Van Buren,"M406.9,264.9 L406.9,266.1 L409.3,266.1 L409.4,269.0 L409.4,271.9 L407.1,271.9 L406.3,272.0 L406.2,270.5 L401.2,270.6 L401.6,269.1 L401.6,266.2 L404.0,265.0 Z",AR,5141 608,08119,0.56,0.50,Teller,"M236.6,203.7 L238.7,203.9 L240.4,204.1 L240.0,208.4 L240.8,212.2 L236.9,211.8 L235.8,210.9 L236.1,207.9 L236.6,203.7 L236.6,203.7 L236.6,203.7 L236.6,203.7 Z",CO,8119 609,08065,0.50,0.46,Lake,"M225.8,199.5 L225.3,203.7 L222.7,203.4 L220.2,203.1 L221.4,201.4 L222.8,198.3 L224.6,198.7 L225.7,198.3 L226.6,198.4 L226.6,198.4 Z",CO,8065 610,08117,0.72,0.83,Summit,"M230.9,195.8 L228.1,198.8 L226.6,198.4 L226.6,198.4 L225.7,198.3 L226.5,194.5 L223.8,188.9 L226.1,189.3 L229.9,193.4 L231.5,194.6 Z",CO,8117 611,36089,0.15,0.67,St. Lawrence,"M606.3,97.2 L604.5,96.6 L604.5,96.6 L601.1,95.4 L599.1,94.7 L603.8,86.1 L610.0,81.9 L611.1,82.3 L615.7,96.0 L613.4,96.9 L612.1,97.4 L609.7,98.3 L608.2,97.8 Z",NY,36089 612,36045,0.47,0.52,Jefferson,"M599.1,94.7 L601.1,95.4 L604.5,96.6 L604.3,101.0 L601.1,103.1 L602.6,106.2 L599.6,106.5 L597.4,107.5 L597.6,101.8 L594.1,100.4 Z",NY,36045 613,36041,0.57,0.50,Hamilton,"M623.0,106.8 L623.4,107.7 L623.8,108.7 L619.2,110.2 L616.8,109.8 L615.3,106.7 L612.1,97.4 L613.4,96.9 L615.7,96.0 L617.6,95.3 L618.6,94.9 L618.7,98.3 L622.8,100.4 L621.0,101.1 Z",NY,36041 614,36091,0.41,0.06,Saratoga,"M623.8,108.7 L623.4,107.7 L623.0,106.8 L626.2,105.6 L630.0,106.2 L631.1,109.5 L631.1,112.3 L630.7,113.2 L631.2,115.0 L630.4,114.5 L629.6,115.4 L627.4,113.9 L625.5,113.4 L625.5,113.3 L625.4,113.0 L624.3,110.1 Z",NY,36091 615,51005,0.44,0.35,Alleghany,"M569.6,216.1 L568.1,217.2 L567.0,216.9 L566.3,216.7 L565.8,216.0 L566.2,214.6 L568.2,211.1 L570.6,211.7 L573.7,211.5 L574.2,212.1 L573.8,213.4 L571.8,213.1 Z M569.4,214.2 L569.6,214.3 L570.0,214.1 L569.6,213.4 Z",VA,51005 616,51045,0.52,0.52,Craig,"M567.0,216.9 L568.1,217.2 L569.6,216.1 L570.5,217.7 L569.5,219.9 L569.5,219.9 L568.7,220.7 L567.3,221.7 L566.3,221.4 L565.1,222.5 L565.0,222.2 L564.2,220.8 L566.3,219.0 Z",VA,51045 617,51023,0.38,0.50,Botetourt,"M570.5,217.7 L569.6,216.1 L571.8,213.1 L573.8,213.4 L573.9,215.0 L576.8,216.7 L573.0,219.6 L572.8,221.2 L572.6,221.0 L569.5,219.9 L569.5,219.9 Z",VA,51023 618,29081,0.50,0.51,Harrison,"M380.6,185.6 L382.6,185.5 L383.3,185.5 L385.9,185.3 L386.4,185.3 L386.6,187.1 L386.7,190.6 L386.7,191.1 L386.7,192.8 L382.4,192.8 L380.9,192.8 L380.9,189.9 L380.8,188.7 L380.6,187.3 Z",MO,29081 619,13045,0.47,0.54,Carroll,"M511.3,289.8 L512.2,289.8 L513.2,290.0 L513.6,293.5 L514.9,293.3 L514.7,293.8 L514.5,294.4 L513.2,295.8 L512.4,296.2 L510.9,296.3 L508.5,296.6 L508.4,296.4 L508.2,295.7 L508.0,294.8 L507.4,292.9 L511.3,291.4 Z",GA,13045 620,13223,0.46,0.52,Paulding,"M513.2,290.0 L512.2,289.8 L511.3,289.8 L511.1,288.2 L510.9,288.2 L511.8,287.3 L512.3,285.0 L514.9,284.7 L514.9,284.8 L515.1,287.0 L515.4,287.0 L515.6,289.3 L515.6,289.3 L515.6,289.3 L515.6,289.3 L515.7,289.6 Z",GA,13223 621,47041,0.55,0.55,DeKalb,"M496.2,252.3 L496.7,253.2 L498.6,254.0 L499.0,256.2 L498.5,257.2 L497.5,257.0 L495.7,257.3 L495.3,256.8 L493.7,255.5 L493.3,254.4 L492.9,253.5 L494.8,252.7 Z",TN,47041 622,47141,0.46,0.59,Putnam,"M498.6,254.0 L496.7,253.2 L496.2,252.3 L496.2,251.3 L496.4,250.5 L498.4,250.7 L500.1,249.0 L501.2,250.0 L505.5,251.0 L505.5,251.1 L505.7,251.1 L503.8,252.0 L503.8,254.0 L500.3,252.7 Z",TN,47141 623,38013,0.05,0.47,Burke,"M280.4,47.0 L279.9,45.5 L280.3,40.9 L286.0,41.3 L290.5,41.6 L290.5,42.4 L290.3,44.7 L287.8,46.1 L287.6,49.0 L284.6,48.8 L280.3,48.5 L280.3,48.0 Z",ND,38013 624,38101,0.50,0.50,Ward,"M287.6,49.0 L287.8,46.1 L290.3,44.7 L292.2,46.3 L292.0,50.8 L300.8,51.3 L301.2,52.8 L301.2,61.7 L296.1,61.4 L291.0,61.1 L290.6,49.2 Z",ND,38101 625,25027,0.14,0.57,Worcester,"M652.4,110.7 L652.6,110.6 L652.8,110.6 L657.8,112.1 L657.7,115.5 L660.3,118.2 L660.2,118.9 L660.7,120.5 L660.5,120.6 L657.1,121.6 L657.0,121.4 L653.3,122.3 L653.1,122.3 L652.9,122.4 L652.4,120.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 L650.8,118.4 L650.8,118.1 L649.4,117.9 L649.0,112.4 L648.1,111.7 L650.1,111.2 L652.4,110.7 L652.4,110.7 L652.4,110.7 Z M651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 Z",MA,25027 626,33011,0.50,0.42,Hillsborough,"M652.4,110.7 L650.5,107.2 L649.3,104.3 L649.3,103.7 L649.4,103.2 L653.6,102.7 L657.5,104.1 L657.5,104.1 L657.9,107.2 L660.4,107.9 L660.4,108.0 L660.4,108.1 L660.4,108.1 L660.4,108.1 L660.4,108.1 L660.4,108.1 L660.4,108.1 L660.4,108.1 L660.1,108.8 L652.8,110.6 L652.6,110.6 L652.4,110.7 L652.4,110.7 Z M660.4,108.1 L660.4,108.1 L660.4,108.1 Z",NH,33011 627,33005,0.40,0.52,Cheshire,"M652.4,110.7 L650.1,111.2 L648.1,111.7 L647.3,111.8 L646.0,112.1 L644.3,110.4 L644.2,105.1 L647.7,103.8 L649.3,104.3 L650.5,107.2 L652.4,110.7 L652.4,110.7 Z",NH,33005 628,36111,0.87,0.44,Ulster,"M631.0,127.2 L631.7,130.6 L632.7,135.2 L628.7,135.5 L627.6,136.4 L624.5,134.5 L625.5,132.1 L620.9,130.7 L623.3,128.4 L624.3,127.3 L629.2,127.3 L631.0,126.4 L631.0,126.7 Z",NY,36111 629,36027,0.52,0.50,Dutchess,"M632.7,135.2 L631.7,130.6 L631.0,127.2 L636.3,127.6 L636.4,126.4 L636.5,126.3 L636.5,126.3 L636.7,127.1 L637.7,132.6 L637.8,133.4 L638.1,135.0 L633.3,136.8 L633.0,137.8 L632.4,136.5 Z",NY,36027 630,48225,0.67,0.09,Houston,"M363.5,347.5 L362.9,344.9 L361.4,344.7 L362.9,341.0 L361.7,337.8 L363.0,337.2 L368.5,336.3 L369.9,336.4 L372.4,339.1 L372.8,339.4 L373.1,339.7 L372.4,340.2 L366.2,345.3 L364.7,346.6 Z",TX,48225 631,48313,0.49,0.44,Madison,"M361.4,344.7 L362.9,344.9 L363.5,347.5 L362.1,347.8 L360.0,348.6 L356.2,349.3 L355.5,349.3 L354.9,347.8 L355.0,347.2 L354.5,346.8 L354.5,346.8 L354.5,346.8 L358.4,344.8 Z M354.5,346.8 L354.5,346.8 L354.5,346.8 Z",TX,48313 632,48041,0.82,0.53,Brazos,"M355.0,347.2 L354.9,347.8 L355.5,349.3 L355.2,353.1 L355.7,357.6 L355.1,356.8 L353.6,356.8 L352.7,354.1 L349.7,351.5 L351.3,350.6 L354.5,346.8 L354.5,346.8 L354.5,346.8 L354.5,346.8 L354.5,346.8 L354.5,346.8 Z",TX,48041 633,48477,0.95,0.46,Washington,"M353.6,356.8 L355.1,356.8 L355.7,357.6 L356.7,358.3 L356.6,359.4 L355.2,361.0 L355.8,362.0 L353.8,361.6 L348.8,362.5 L348.5,360.7 L346.3,360.5 L347.2,359.1 L348.6,358.2 L351.8,357.4 Z",TX,48477 634,08101,0.82,0.52,Pueblo,"M238.2,224.3 L238.5,221.0 L238.8,218.6 L240.2,218.7 L240.6,214.3 L249.0,215.1 L252.2,215.4 L252.2,215.4 L251.8,219.7 L251.6,221.7 L251.1,227.0 L251.0,228.5 L250.1,228.1 L247.2,226.8 L243.5,225.0 Z",CO,8101 635,08041,0.12,0.46,El Paso,"M249.0,215.1 L240.6,214.3 L240.8,212.6 L240.8,212.2 L240.0,208.4 L240.4,204.1 L241.6,204.2 L245.2,204.5 L253.1,205.3 L252.7,209.6 L252.5,212.5 L252.2,215.4 L252.2,215.4 Z",CO,8041 636,29105,0.50,0.50,Laclede,"M407.9,234.9 L408.0,236.6 L404.8,236.7 L402.2,236.7 L401.2,236.7 L399.9,236.7 L399.9,232.8 L399.7,229.8 L402.8,229.8 L405.6,230.2 L405.7,232.7 L407.9,234.4 L407.9,234.4 Z",MO,29105 637,45033,0.39,0.67,Dillon,"M586.2,264.6 L589.4,266.8 L592.4,268.9 L592.1,269.3 L591.8,269.8 L588.2,269.7 L586.1,271.3 L585.2,270.4 L584.7,270.4 L585.7,266.8 Z",SC,45033 638,37155,0.57,0.44,Robeson,"M592.4,268.9 L589.4,266.8 L586.2,264.6 L586.1,264.5 L586.0,264.5 L587.4,261.8 L586.9,260.7 L589.1,260.4 L590.9,258.1 L592.0,258.5 L593.0,259.7 L594.8,261.8 L594.5,265.4 L593.5,267.0 Z",NC,37155 639,37051,0.47,0.57,Cumberland,"M593.0,259.7 L592.0,258.5 L590.9,258.1 L589.8,256.7 L589.3,254.6 L589.3,254.4 L589.3,254.3 L594.0,252.1 L595.6,252.2 L596.0,256.4 L598.5,258.2 L593.8,259.3 Z",NC,37051 640,26001,0.52,0.49,Alcona,"M509.4,103.2 L510.1,105.8 L510.2,109.0 L506.6,109.5 L503.4,110.0 L503.0,106.9 L502.6,104.2 L506.9,103.6 Z",MI,26001 641,06067,0.63,0.61,Sacramento,"M22.5,179.4 L22.8,179.1 L22.9,178.7 L24.1,178.2 L24.9,176.4 L27.3,172.3 L26.8,169.5 L27.8,169.8 L28.2,170.0 L32.3,171.6 L32.5,171.6 L32.5,171.6 L32.8,171.6 L33.0,175.3 L32.9,175.6 L32.0,178.6 L26.2,177.7 L24.2,179.9 L22.8,179.6 L22.3,179.6 L22.3,179.6 L22.3,179.6 Z M23.3,179.8 L23.3,179.9 L23.3,179.9 L23.3,179.9 Z M20.7,179.4 L20.6,179.3 L20.4,179.3 L20.6,179.2 Z M22.1,179.6 L22.3,179.6 L22.3,179.6 L22.3,179.6 L22.3,179.6 Z",CA,6067 642,06017,0.50,0.47,El Dorado,"M33.0,175.3 L32.8,171.6 L32.5,171.6 L34.7,168.7 L39.0,168.3 L48.4,169.8 L48.1,170.9 L49.1,172.3 L49.1,173.5 L45.9,175.5 L38.0,176.8 Z",CA,6017 643,06061,0.50,0.48,Placer,"M32.5,171.6 L32.3,171.6 L28.2,170.0 L29.3,167.0 L30.3,166.0 L32.0,165.5 L32.2,165.9 L32.2,165.9 L35.1,167.1 L41.4,163.6 L49.5,165.8 L49.3,166.5 L48.8,168.2 L48.7,168.9 L48.6,169.1 L48.5,169.5 L48.4,169.8 L39.0,168.3 L34.7,168.7 Z",CA,6061 644,06115,0.09,0.72,Yuba,"M32.0,165.5 L30.3,166.0 L28.1,166.4 L29.1,160.5 L32.0,160.5 L37.3,157.6 L37.7,157.4 L38.4,157.1 L37.5,159.0 L37.1,161.1 L33.5,162.1 L32.2,165.9 L32.2,165.9 Z",CA,6115 645,05129,0.50,0.49,Searcy,"M406.8,261.8 L406.8,263.2 L406.9,264.9 L404.0,265.0 L401.6,266.2 L400.7,266.2 L399.6,266.2 L399.6,260.4 L399.5,259.7 L399.8,259.7 L400.2,259.7 L401.0,260.4 L406.8,260.3 L406.8,260.9 Z",AR,5129 646,37093,0.54,0.51,Hoke,"M589.3,254.6 L589.8,256.7 L590.9,258.1 L589.1,260.4 L586.9,260.7 L586.5,259.0 L584.8,257.6 L584.8,257.6 L587.4,254.3 Z",NC,37093 647,37165,0.61,0.50,Scotland,"M586.5,259.0 L586.9,260.7 L587.4,261.8 L586.0,264.5 L582.6,262.1 L582.4,262.2 L583.8,260.1 L584.8,257.6 L584.8,257.6 Z",NC,37165 648,29005,0.50,0.50,Atchison,"M366.0,185.6 L366.0,185.6 L366.1,185.6 L366.7,185.6 L367.6,185.6 L368.2,185.6 L368.5,187.3 L368.5,190.9 L366.5,190.9 L363.7,190.9 L363.7,190.9 L362.8,189.8 L361.7,186.6 L361.2,186.6 L361.1,186.5 L361.0,185.5 L362.9,185.6 L366.0,185.6 L366.0,185.6 L366.0,185.6 Z",MO,29005 649,19071,0.50,0.50,Fremont,"M366.0,185.6 L362.9,185.6 L361.0,185.5 L359.5,182.8 L360.1,182.2 L359.9,180.9 L360.4,180.2 L363.0,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 L365.8,183.1 L366.0,185.6 L366.0,185.6 Z M365.8,180.2 L365.8,180.2 L365.8,180.2 Z",IA,19071 650,29087,0.50,0.50,Holt,"M366.5,190.9 L368.5,190.9 L369.9,190.9 L370.3,193.1 L370.7,194.5 L371.0,197.0 L368.3,196.9 L366.9,195.3 L365.7,193.2 L363.7,190.9 L363.7,190.9 L363.7,190.9 Z",MO,29087 651,31131,0.01,0.50,Otoe,"M361.2,186.6 L357.1,186.6 L355.0,186.6 L352.1,186.6 L352.1,184.4 L352.1,182.2 L356.4,182.2 L360.1,182.2 L359.5,182.8 L361.0,185.5 L361.1,186.5 L361.7,186.6 Z",NE,31131 652,42023,0.54,0.51,Cameron,"M583.1,152.7 L581.9,152.8 L581.3,152.8 L578.4,150.4 L577.8,147.2 L577.7,146.9 L580.4,146.4 L582.8,148.4 L583.5,148.2 L583.9,150.0 Z",PA,42023 653,46073,0.50,0.50,Jerauld,"M323.9,128.8 L323.4,128.8 L322.4,128.8 L322.5,127.1 L322.6,124.4 L323.8,124.4 L325.3,124.5 L326.2,124.5 L329.8,124.6 L329.7,126.0 L329.7,128.9 L326.9,128.9 Z",SD,46073 654,46015,0.50,0.50,Brule,"M322.4,128.8 L323.4,128.8 L323.9,128.8 L324.0,130.3 L323.8,136.2 L320.5,136.0 L317.7,135.9 L317.7,135.9 L315.8,133.2 L317.2,128.6 L319.3,128.7 Z",SD,46015 655,46023,0.53,0.38,Charles Mix,"M320.5,136.0 L323.8,136.2 L324.8,136.2 L324.9,136.2 L325.1,138.3 L332.1,141.5 L332.6,141.7 L332.5,141.9 L332.2,145.2 L331.4,147.4 L330.6,147.2 L329.5,146.7 L327.6,145.5 L327.2,144.7 L322.7,141.8 L317.7,135.9 L317.7,135.9 Z",SD,46023 656,47177,0.46,0.50,Warren,"M500.0,262.0 L497.2,262.7 L496.4,262.6 L495.3,261.9 L494.7,260.5 L494.5,259.2 L495.7,257.3 L497.5,257.0 L498.5,257.2 L499.0,257.3 L499.6,257.6 L500.1,260.6 L500.7,261.9 L500.4,262.0 Z",TN,47177 657,47185,0.51,0.52,White,"M499.6,257.6 L499.0,257.3 L498.5,257.2 L499.0,256.2 L498.6,254.0 L500.3,252.7 L503.8,254.0 L504.7,255.1 L504.1,257.1 L501.3,257.0 Z M504.4,257.6 L504.3,257.3 L504.1,257.2 L504.4,257.2 Z",TN,47185 658,17023,0.52,0.51,Clark,"M466.9,204.4 L465.4,204.2 L462.7,204.5 L462.5,204.5 L462.0,204.6 L461.7,201.7 L461.6,201.2 L461.4,199.5 L462.1,199.4 L465.7,199.0 L467.7,199.0 L467.9,201.1 L467.1,202.7 L467.5,203.5 Z",IL,17023 659,45035,0.98,0.89,Dorchester,"M581.3,292.8 L581.8,296.1 L578.3,296.1 L578.0,293.2 L572.0,291.7 L575.5,288.4 L577.7,289.4 L578.5,291.1 Z",SC,45035 660,20139,0.50,0.50,Osage,"M360.6,214.3 L364.5,214.2 L364.5,215.6 L364.5,216.4 L364.4,217.2 L364.5,221.5 L360.8,221.6 L358.6,221.6 L358.6,217.2 L358.7,216.5 L358.7,214.7 L358.7,214.3 Z",KS,20139 661,39133,0.50,0.50,Portage,"M546.5,157.2 L547.1,160.7 L547.5,163.1 L546.5,163.3 L543.4,163.8 L542.6,163.9 L542.2,161.5 L541.7,158.0 L542.8,157.8 Z",OH,39133 662,39155,0.50,0.50,Trumbull,"M547.1,160.7 L546.5,157.2 L546.4,156.3 L546.1,154.6 L550.3,154.0 L552.1,153.6 L552.1,153.6 L552.1,153.7 L552.1,153.8 L552.4,155.2 L553.1,159.7 L548.4,160.5 Z",OH,39155 663,39007,0.47,0.50,Ashtabula,"M550.3,154.0 L546.1,154.6 L545.9,153.6 L545.5,151.1 L545.4,150.5 L545.1,148.9 L546.7,147.9 L550.7,145.6 L550.9,146.7 L551.1,147.9 L551.8,151.9 L552.1,153.6 L552.1,153.6 Z",OH,39007 664,39085,0.53,0.57,Lake,"M545.1,148.9 L545.4,150.5 L545.5,151.1 L544.5,152.5 L541.1,154.3 L539.9,154.5 L539.7,153.3 L541.2,151.6 Z",OH,39085 665,42019,0.46,0.50,Butler,"M563.3,157.2 L563.3,157.2 L563.4,157.3 L564.0,160.8 L564.8,165.5 L564.8,165.5 L563.3,165.8 L559.1,166.5 L559.0,165.8 L558.4,163.5 L557.9,161.1 L558.6,159.8 L559.1,158.9 L559.5,157.9 L562.0,157.5 Z",PA,42019 666,42005,0.55,0.47,Armstrong,"M564.0,160.8 L563.4,157.3 L564.9,160.3 L569.7,158.1 L569.7,158.2 L570.1,160.4 L570.5,162.7 L568.3,167.3 L566.8,167.0 L564.8,165.5 L564.8,165.5 Z",PA,42005 667,42073,0.55,0.48,Lawrence,"M558.6,159.8 L557.9,161.1 L558.4,163.5 L556.3,163.9 L553.9,164.4 L553.9,164.4 L553.9,164.1 L553.8,163.5 L553.4,161.2 L553.2,159.8 L557.8,159.2 Z",PA,42073 668,42007,0.55,0.50,Beaver,"M553.9,164.4 L556.3,163.9 L558.4,163.5 L559.0,165.8 L559.1,166.5 L558.9,167.6 L557.0,170.2 L556.0,170.3 L555.0,170.5 L554.8,169.2 L554.5,167.9 L554.2,166.0 L553.9,164.4 Z",PA,42007 669,20113,0.50,0.50,McPherson,"M340.0,218.5 L339.9,221.8 L339.9,225.8 L336.7,225.7 L335.5,225.7 L333.9,225.7 L332.6,225.6 L332.6,224.2 L332.7,219.8 L332.7,219.1 L332.7,218.3 L336.0,218.4 Z",KS,20113 670,20115,0.50,0.50,Marion,"M339.9,225.8 L339.9,221.8 L340.0,218.5 L342.9,218.5 L345.8,218.6 L345.8,220.0 L347.2,220.0 L346.9,222.9 L346.9,227.3 L345.7,227.3 L342.7,227.3 L342.7,225.8 Z",KS,20115 671,29225,0.50,0.50,Webster,"M402.4,243.6 L400.7,243.7 L399.5,243.7 L399.5,243.4 L397.3,243.4 L397.3,240.4 L397.1,238.0 L397.0,236.8 L399.9,236.7 L401.2,236.7 L402.2,236.7 L402.2,240.3 Z",MO,29225 672,27033,0.50,0.50,Cottonwood,"M364.6,130.8 L364.6,130.8 L364.5,130.8 L364.5,126.9 L364.5,124.9 L367.4,124.9 L368.8,124.9 L368.9,126.4 L371.8,126.4 L371.8,126.6 L371.9,130.7 L368.0,130.8 Z",MN,27033 673,01057,0.51,0.47,Fayette,"M478.4,296.8 L475.4,297.0 L472.6,298.7 L472.4,298.7 L471.1,298.8 L470.9,295.9 L470.5,292.2 L473.5,292.0 L474.9,291.9 L476.4,292.6 Z",AL,1057 674,01125,0.10,0.52,Tuscaloosa,"M472.6,298.7 L475.4,297.0 L478.4,296.8 L479.8,297.0 L480.7,298.1 L479.8,298.6 L483.9,302.3 L481.1,304.5 L479.3,306.9 L476.5,307.1 L475.2,307.2 L473.5,307.2 L473.2,304.9 L472.8,300.6 Z",AL,1125 675,01099,0.66,0.06,Monroe,"M488.7,327.1 L486.7,327.9 L482.0,336.1 L480.2,336.8 L479.3,336.6 L477.8,335.8 L477.1,335.9 L479.7,332.6 L480.1,326.6 L484.2,326.3 L488.6,325.8 L488.6,326.6 L488.7,327.1 Z",AL,1099 676,01013,0.52,0.51,Butler,"M488.7,327.1 L488.6,326.6 L488.6,325.8 L488.3,323.6 L489.0,323.5 L490.6,323.4 L494.9,322.9 L495.4,328.1 L494.9,330.3 L493.8,330.4 L492.0,330.6 L490.0,330.8 L488.9,329.1 L488.7,327.1 Z",AL,1013 677,01035,0.94,0.51,Conecuh,"M482.0,336.1 L486.7,327.9 L488.7,327.1 L488.7,327.1 L488.9,329.1 L490.0,330.8 L492.0,330.6 L492.8,333.2 L492.6,336.2 L491.6,335.1 Z",AL,1035 678,01131,0.09,0.51,Wilcox,"M489.0,323.5 L488.3,323.6 L488.6,325.8 L484.2,326.3 L480.1,326.6 L478.4,326.8 L477.4,324.1 L477.8,321.7 L479.8,319.3 L484.3,322.5 L488.2,322.2 L488.9,322.1 Z",AL,1131 679,01025,0.62,0.42,Clarke,"M477.4,324.1 L478.4,326.8 L480.1,326.6 L479.7,332.6 L477.1,335.9 L476.2,337.1 L474.6,337.9 L474.7,332.8 L471.8,329.6 L470.3,327.8 L471.6,324.7 L476.2,324.3 Z",AL,1025 680,28015,0.52,0.49,Carroll,"M445.2,298.3 L445.5,302.7 L447.6,304.7 L446.8,304.8 L446.2,306.0 L444.4,305.6 L440.1,304.4 L441.0,302.2 L440.4,298.6 L442.2,298.5 Z",MS,28015 681,28097,0.52,0.50,Montgomery,"M447.6,304.7 L445.5,302.7 L445.2,298.3 L447.5,298.1 L449.1,298.0 L449.3,301.7 L451.1,301.5 L451.1,301.5 L451.1,301.5 L450.1,302.1 L450.3,304.5 L447.9,304.7 Z",MS,28097 682,31099,0.50,0.48,Kearney,"M323.3,183.3 L323.2,186.3 L323.1,189.0 L323.1,189.0 L323.0,189.0 L321.5,188.9 L317.3,188.8 L317.4,185.0 L317.4,183.6 L320.9,183.8 Z",NE,31099 683,17161,0.92,0.39,Rock Island,"M429.3,164.2 L429.7,163.5 L430.2,163.2 L430.5,165.0 L431.1,166.5 L428.1,168.8 L428.2,171.0 L424.3,171.2 L420.2,171.3 L420.2,171.3 L420.4,170.0 L423.7,169.1 L429.1,166.5 Z",IL,17161 684,05113,0.50,0.50,Polk,"M379.4,287.2 L379.4,284.8 L379.4,283.4 L381.3,283.9 L386.7,284.4 L386.7,287.1 L386.7,289.6 L382.3,289.7 L382.5,292.4 L380.6,292.5 L379.3,292.5 L379.3,289.8 Z",AR,5113 685,05133,0.49,0.51,Sevier,"M379.3,292.5 L380.6,292.5 L382.5,292.4 L384.5,292.4 L386.6,299.7 L382.7,298.9 L379.3,296.7 L379.3,294.2 Z",AR,5133 686,56043,0.47,0.50,Washakie,"M217.3,127.7 L216.8,127.6 L216.5,127.6 L215.6,123.5 L208.7,120.7 L206.3,116.4 L206.4,115.7 L206.5,114.9 L220.6,116.8 L223.4,117.2 L223.6,117.2 L222.4,128.4 L220.7,128.1 Z",WY,56043 687,56013,0.61,0.66,Fremont,"M216.5,127.6 L216.8,127.6 L217.3,127.7 L216.2,139.7 L215.2,145.5 L215.0,146.9 L214.8,148.4 L204.3,146.9 L196.0,145.8 L196.7,138.6 L191.6,132.4 L190.3,124.6 L186.7,124.0 L187.6,118.2 L188.1,115.0 L190.7,118.9 L194.1,116.7 L196.5,119.5 L197.7,123.0 L202.0,123.9 L207.4,127.1 Z",WY,56013 688,36097,0.42,0.50,Schuyler,"M593.4,132.4 L591.7,132.9 L590.9,129.4 L593.6,129.2 L593.3,127.9 L594.8,127.6 L595.7,127.3 L596.7,131.5 L596.6,131.5 L596.6,131.5 L596.1,131.6 Z M596.7,131.5 L597.6,131.5 L596.7,131.6 L596.7,131.5 L596.7,131.5 Z",NY,36097 689,05069,0.49,0.48,Jefferson,"M413.1,286.4 L414.6,286.4 L417.6,286.3 L417.7,290.5 L421.6,292.9 L417.6,291.5 L414.5,293.5 L412.2,293.6 L410.6,293.7 L410.8,290.9 L410.6,286.5 L412.2,286.4 Z",AR,5069 690,55123,0.90,0.45,Vernon,"M416.4,135.1 L415.7,133.2 L415.8,131.4 L417.4,131.3 L420.0,131.1 L425.8,130.8 L427.3,130.6 L427.3,132.0 L427.4,132.1 L427.4,132.6 L427.5,133.6 L427.5,133.6 L423.1,133.9 L423.2,136.0 L422.3,136.1 L416.7,136.4 L416.3,135.8 Z",WI,55123 691,55111,0.53,0.49,Sauk,"M427.4,132.6 L427.4,132.1 L429.0,132.0 L433.8,131.7 L436.1,132.9 L435.0,137.5 L434.9,138.1 L433.6,139.0 L431.6,139.4 L429.3,140.0 L429.3,140.0 L428.9,133.5 L427.5,133.6 L427.5,133.6 Z",WI,55111 692,55049,0.50,0.50,Iowa,"M431.6,139.4 L433.6,139.0 L433.8,142.2 L434.0,144.9 L434.0,144.9 L434.1,145.6 L429.0,145.9 L426.8,146.1 L426.6,142.5 L426.4,139.6 L428.1,139.4 L429.3,140.0 L429.3,140.0 Z",WI,55049 693,55025,0.94,0.46,Dane,"M434.0,144.9 L433.8,142.2 L433.6,139.0 L434.9,138.1 L435.0,137.5 L439.3,137.2 L443.7,137.0 L443.7,137.8 L443.8,138.4 L443.9,140.7 L444.2,144.3 L440.2,144.6 L439.8,144.7 L439.8,144.7 L439.8,144.5 Z",WI,55025 694,55043,0.49,0.52,Grant,"M426.4,139.6 L426.6,142.5 L426.8,146.1 L427.1,150.1 L427.1,151.2 L425.7,151.3 L424.4,151.4 L423.4,149.2 L421.1,148.7 L419.0,147.6 L417.6,143.7 L418.8,143.5 L423.5,140.3 L424.9,139.5 Z",WI,55043 695,29123,0.50,0.50,Madison,"M430.8,238.1 L430.6,233.4 L430.7,232.6 L435.0,232.4 L435.8,232.3 L435.9,232.8 L435.9,233.1 L436.2,237.8 L435.2,237.8 L433.5,237.9 Z",MO,29123 696,29093,0.79,0.80,Iron,"M430.7,232.6 L430.6,233.4 L430.8,238.1 L430.8,238.8 L428.4,239.0 L427.6,233.5 L422.5,234.0 L422.4,232.7 L422.4,232.2 L422.5,231.4 L423.1,231.4 L426.1,231.4 L429.1,231.2 L429.2,232.7 Z",MO,29093 697,48289,0.06,0.61,Leon,"M361.4,344.7 L358.4,344.8 L355.5,346.4 L354.5,346.8 L354.5,346.8 L354.5,346.8 L354.5,346.8 L354.5,346.8 L353.2,342.1 L353.4,340.3 L353.3,340.0 L354.6,339.4 L358.0,337.5 L361.0,335.9 L362.2,335.9 L361.7,337.8 L362.9,341.0 Z",TX,48289 698,48005,0.84,0.77,Angelina,"M373.1,339.7 L372.8,339.4 L372.4,339.1 L372.6,338.9 L374.4,337.3 L379.6,339.2 L382.2,342.3 L383.7,343.1 L385.1,344.4 L383.3,344.8 L380.4,345.6 L379.3,345.2 L378.9,345.2 L378.1,344.7 L377.5,344.8 L376.6,344.4 L376.3,344.5 L374.8,343.8 L374.8,343.8 L374.8,343.8 L373.8,340.6 Z",TX,48005 699,20195,0.50,0.50,Trego,"M310.8,216.2 L305.0,216.0 L303.5,215.9 L303.7,213.0 L303.9,208.6 L304.5,208.7 L311.0,208.9 L311.1,208.9 L311.2,208.9 L311.0,211.8 L310.8,216.2 Z",KS,20195 700,20051,0.50,0.50,Ellis,"M310.8,216.2 L311.0,211.8 L311.1,208.9 L311.2,208.9 L316.3,209.1 L318.3,209.2 L318.4,209.2 L318.2,213.4 L318.1,216.5 L316.6,216.4 L311.0,216.2 L310.8,216.2 Z",KS,20051 701,20165,0.50,0.50,Rush,"M311.0,216.2 L316.6,216.4 L318.1,216.5 L318.1,216.5 L318.2,216.5 L318.1,220.9 L318.0,222.3 L315.2,222.2 L310.7,222.0 L310.9,217.7 Z",KS,20165 702,20187,0.50,0.50,Stanton,"M277.6,232.1 L277.7,231.2 L277.7,230.5 L281.6,230.8 L284.6,231.0 L284.5,232.5 L284.2,236.8 L284.0,236.8 L283.8,236.8 L282.3,236.7 L277.3,236.4 L277.5,233.9 Z",KS,20187 703,48463,0.94,0.52,Uvalde,"M307.1,377.7 L300.5,377.4 L296.8,377.3 L297.0,372.6 L297.2,368.2 L298.0,368.3 L298.6,368.3 L302.5,368.4 L304.7,368.5 L306.4,368.5 L307.5,368.6 L307.3,373.4 L307.1,377.7 L307.1,377.7 Z",TX,48463 704,48325,0.49,0.95,Medina,"M307.1,377.7 L307.3,373.4 L307.5,368.6 L313.8,368.9 L316.5,367.8 L316.3,374.0 L316.3,375.3 L316.3,375.3 L316.3,375.8 L316.2,378.0 L313.6,377.9 L307.1,377.7 L307.1,377.7 Z",TX,48325 705,48019,0.12,0.48,Bandera,"M316.5,367.8 L313.8,368.9 L307.5,368.6 L306.4,368.5 L304.7,368.5 L304.8,366.4 L304.9,363.7 L311.1,364.2 L314.9,366.2 L315.6,366.6 L316.9,367.3 L316.6,367.7 Z",TX,48019 706,48029,0.49,0.51,Bexar,"M316.5,367.8 L316.6,367.7 L316.9,367.3 L317.5,367.4 L318.9,367.0 L323.4,367.5 L323.8,369.7 L324.9,370.4 L326.3,372.3 L323.9,375.5 L322.1,377.8 L319.0,376.4 L316.3,375.3 L316.3,375.3 L316.3,374.0 Z",TX,48029 707,48013,0.05,0.47,Atascosa,"M319.0,376.4 L322.1,377.8 L324.1,380.3 L325.3,381.8 L325.6,382.1 L326.6,383.4 L325.8,384.1 L323.0,386.3 L323.0,385.7 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.2,379.1 L316.2,378.0 L316.3,375.8 L316.3,375.3 L316.3,375.3 Z M316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 Z",TX,48013 708,27063,0.50,0.50,Jackson,"M364.6,130.8 L368.0,130.8 L371.9,130.7 L371.9,130.7 L371.9,130.7 L371.9,133.2 L372.0,136.6 L371.6,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 L368.2,136.6 L365.5,136.6 L364.9,136.6 L364.7,136.6 L364.7,132.3 Z M371.3,136.6 L371.3,136.6 L371.3,136.6 L371.3,136.6 Z",MN,27063 709,27165,0.50,0.50,Watonwan,"M371.9,130.7 L371.9,130.7 L371.9,130.7 L371.8,126.6 L371.8,126.4 L373.3,126.3 L377.7,126.3 L377.8,126.7 L377.8,130.6 L373.0,130.7 Z",MN,27165 710,40063,0.50,0.50,Hughes,"M356.7,283.0 L353.6,283.0 L352.4,283.0 L352.4,280.6 L351.2,280.6 L351.2,277.1 L351.9,274.2 L355.4,274.2 L358.2,274.2 L358.2,275.5 L358.2,276.5 L356.8,278.2 Z",OK,40063 711,40029,0.50,0.50,Coal,"M352.4,283.0 L353.6,283.0 L356.7,283.0 L356.7,283.9 L356.7,284.4 L356.0,288.8 L352.3,288.8 L350.8,288.8 L350.8,287.3 L350.9,284.4 Z",OK,40029 712,48103,0.50,0.50,Crane,"M265.3,341.6 L264.8,339.8 L260.1,337.7 L260.2,336.4 L260.5,331.7 L262.9,331.9 L267.0,332.2 L266.7,336.8 L266.5,341.7 L265.9,341.7 Z",TX,48103 713,48461,0.49,0.50,Upton,"M266.5,341.7 L266.7,336.8 L267.0,332.2 L267.4,332.2 L267.4,332.2 L271.4,332.5 L274.8,332.7 L274.3,340.3 L274.1,342.3 L271.5,342.1 Z",TX,48461 714,18051,0.46,0.71,Gibson,"M472.4,219.2 L472.5,220.0 L470.6,220.8 L470.6,220.8 L469.8,220.8 L467.7,221.0 L466.1,220.1 L463.7,220.3 L463.7,220.1 L463.6,219.9 L465.4,219.4 L466.6,217.0 L468.4,216.2 L470.1,214.6 L471.0,217.2 Z",IN,18051 715,18129,0.48,0.50,Posey,"M463.7,220.3 L466.1,220.1 L467.7,221.0 L467.6,221.7 L467.9,225.5 L466.2,226.0 L464.9,225.7 L465.3,227.3 L463.7,227.5 L463.5,227.2 L462.7,226.1 L464.7,221.4 Z",IN,18129 716,51510,0.47,0.50,Alexandria,"M604.4,189.1 L604.4,189.2 L604.4,189.2 L604.4,189.3 L604.5,189.4 L604.5,189.4 L604.5,189.5 L604.5,189.6 L604.5,189.7 L604.5,189.8 L604.4,189.8 L603.3,189.9 L603.5,189.1 L603.8,189.0 L604.3,189.0 L604.3,189.0 Z",VA,51510 717,11001,0.44,0.47,District of Columbia,"M604.4,189.2 L604.5,189.4 L604.4,189.3 L604.4,189.2 Z M604.5,189.5 L604.5,189.7 L604.5,189.7 L604.5,189.6 Z M604.4,189.0 L604.3,189.0 L604.4,189.1 L604.3,189.0 L604.3,189.0 L604.3,189.0 Z M604.4,189.0 L604.4,189.0 L604.4,189.0 L604.4,189.0 Z M604.4,188.9 L604.4,188.9 L604.4,188.9 L604.4,188.9 Z M604.3,188.5 L604.4,188.6 L604.4,188.7 L604.3,188.6 Z M604.7,189.5 L604.6,188.7 L604.2,188.4 L603.5,188.0 L603.0,187.6 L603.8,186.4 L604.4,186.8 L605.9,187.7 Z",DC,11001 718,51013,0.54,0.63,Arlington,"M604.4,189.0 L604.4,189.0 L604.3,189.0 L604.3,189.0 L603.8,189.0 L603.5,189.1 L603.5,189.1 L602.8,188.7 L602.7,188.6 L602.5,188.5 L603.0,187.7 L603.0,187.6 L603.5,188.0 L604.2,188.4 L604.3,188.5 L604.3,188.5 L604.3,188.6 L604.4,188.7 L604.4,188.7 L604.4,188.9 L604.4,188.9 L604.4,188.9 L604.4,189.0 L604.4,189.0 L604.4,189.0 Z",VA,51013 719,08037,0.15,0.45,Eagle,"M223.8,188.9 L226.5,194.5 L225.7,198.3 L224.6,198.7 L222.8,198.3 L219.1,197.8 L213.9,197.1 L215.1,188.0 L216.1,188.1 L220.0,188.5 L221.3,188.6 L223.1,188.8 Z",CO,8037 720,12109,0.46,0.54,St. Johns,"M571.6,341.7 L572.9,345.0 L575.7,351.1 L574.2,352.1 L571.2,352.6 L570.9,350.3 L569.8,349.1 L567.8,346.2 L567.6,344.6 L571.3,344.3 Z",FL,12109 721,28019,0.62,0.49,Choctaw,"M450.3,304.5 L450.1,302.1 L450.6,302.1 L451.1,301.5 L451.1,301.5 L451.1,301.5 L451.1,301.5 L453.8,300.1 L455.1,300.0 L455.3,302.0 L455.4,304.1 L453.8,305.8 L452.4,307.3 L452.2,304.4 Z",MS,28019 722,29079,0.50,0.50,Grundy,"M386.7,192.8 L386.7,191.1 L386.7,190.6 L387.6,190.6 L391.7,190.4 L391.9,194.3 L391.9,194.3 L391.9,194.4 L392.0,195.4 L388.8,195.6 L386.8,195.7 L386.8,195.7 L386.7,193.3 Z",MO,29079 723,29117,0.50,0.50,Livingston,"M388.8,195.6 L392.0,195.4 L392.1,199.8 L393.3,199.8 L393.1,200.1 L393.2,201.3 L389.3,201.4 L387.0,201.5 L387.0,200.0 L386.9,198.6 L386.9,197.0 L386.8,195.7 L386.8,195.7 Z",MO,29117 724,26123,0.50,0.50,Newaygo,"M479.0,124.7 L481.0,124.5 L484.8,124.1 L485.0,125.9 L485.4,129.9 L485.7,132.1 L485.8,132.8 L484.6,132.9 L483.0,133.1 L479.9,133.4 L479.6,130.5 L479.1,125.5 Z",MI,26123 725,26085,0.50,0.50,Lake,"M484.8,124.1 L481.0,124.5 L479.0,124.7 L478.7,121.8 L478.3,118.8 L480.0,118.7 L481.0,118.6 L481.8,118.5 L484.1,118.2 L484.1,118.2 L484.6,122.4 Z",MI,26085 726,26133,0.50,0.50,Osceola,"M484.8,124.1 L484.6,122.4 L484.1,118.2 L484.8,118.2 L486.8,117.9 L488.4,117.7 L489.8,117.6 L490.3,121.5 L490.5,123.4 L486.2,123.9 Z",MI,26133 727,17031,0.52,0.50,Cook,"M464.3,161.4 L464.3,162.1 L464.6,165.7 L461.3,166.1 L458.0,162.7 L458.9,157.4 L454.7,158.0 L454.9,156.6 L454.7,155.1 L454.7,155.1 L455.2,155.1 L457.9,154.8 L460.7,154.6 L461.7,155.7 Z",IL,17031 728,17059,0.53,0.51,Gallatin,"M462.7,226.1 L463.5,227.2 L463.7,227.5 L462.2,230.1 L462.7,231.4 L462.0,231.1 L459.4,231.3 L459.2,229.1 L459.0,226.1 L459.0,226.1 L462.1,225.9 Z",IL,17059 729,01033,0.99,0.56,Colbert,"M467.0,276.1 L471.3,278.5 L476.4,276.8 L476.3,279.4 L475.4,280.9 L469.5,281.3 L466.9,281.4 L467.0,279.0 Z",AL,1033 730,28141,0.57,0.50,Tishomingo,"M467.0,276.1 L467.0,276.1 L467.0,279.0 L466.9,281.4 L466.9,282.8 L466.8,283.4 L466.0,283.4 L464.5,283.6 L464.0,278.9 L463.5,278.7 L463.5,278.7 L463.3,276.3 L463.2,274.7 L463.2,274.7 L464.3,274.6 L465.5,274.5 L466.2,275.7 Z",MS,28141 731,28003,0.50,0.52,Alcorn,"M463.3,276.3 L463.5,278.7 L463.5,278.7 L463.5,278.7 L463.5,278.7 L463.5,278.7 L460.1,279.0 L458.7,279.1 L457.1,277.5 L456.9,275.2 L457.1,275.2 L457.4,275.2 L461.8,274.8 L463.0,274.7 L463.1,274.7 L463.2,274.7 L463.2,274.7 Z M463.5,278.7 L463.5,278.7 L463.5,278.7 Z M463.5,278.7 L463.5,278.7 L463.5,278.7 Z",MS,28003 732,28139,0.48,0.49,Tippah,"M456.9,275.2 L457.1,277.5 L458.7,279.1 L458.9,281.8 L458.6,281.8 L456.3,282.0 L453.8,282.2 L453.5,278.5 L454.2,275.5 L455.5,275.4 Z",MS,28139 733,54051,0.42,0.48,Marshall,"M556.5,179.0 L556.7,180.2 L557.1,183.0 L555.4,183.3 L553.1,183.7 L552.6,183.1 L552.9,181.5 L553.6,180.4 L553.5,178.3 L554.1,178.3 L556.3,178.1 L556.4,178.4 Z",WV,54051 734,54035,0.57,0.47,Jackson,"M545.0,203.6 L544.2,202.7 L543.9,202.8 L543.5,202.0 L541.6,199.9 L543.1,197.3 L543.1,195.9 L544.1,196.3 L545.4,196.7 L546.0,197.7 L546.7,198.4 L546.8,202.5 L547.3,203.5 L546.0,204.7 Z",WV,54035 735,16037,0.50,0.47,Custer,"M129.2,105.3 L129.1,105.2 L129.0,105.1 L129.3,101.6 L126.7,97.9 L127.5,93.9 L130.7,91.3 L134.1,91.4 L136.1,95.8 L141.5,92.0 L144.7,99.0 L148.9,100.5 L149.7,104.4 L148.6,104.2 L147.8,111.3 L141.9,114.3 L137.1,107.8 Z",ID,16037 736,16039,0.73,0.49,Elmore,"M129.0,105.1 L129.1,105.2 L129.2,105.3 L128.8,105.7 L128.7,106.6 L126.7,110.5 L125.2,117.2 L124.2,121.9 L124.8,122.0 L124.6,122.9 L124.3,124.4 L119.2,123.3 L120.0,120.7 L113.7,119.1 L110.7,115.5 L114.2,116.2 L116.0,108.4 L120.3,107.5 L127.3,102.4 Z",ID,16039 737,39131,0.49,0.52,Pike,"M529.8,200.5 L524.5,201.0 L523.7,200.2 L523.0,199.7 L522.1,199.8 L522.1,198.5 L522.2,197.3 L523.0,197.3 L529.6,196.8 L529.7,199.0 Z",OH,39131 738,39145,0.50,0.50,Scioto,"M523.7,200.2 L524.5,201.0 L529.8,200.5 L530.6,201.9 L532.1,201.8 L532.1,201.8 L531.5,206.1 L530.6,206.7 L529.2,203.8 L527.4,204.6 L526.3,206.3 L524.6,206.8 L524.0,202.5 Z",OH,39145 739,39087,0.51,0.55,Lawrence,"M532.1,201.8 L532.4,201.8 L533.1,201.7 L534.8,204.2 L537.5,205.5 L537.3,207.8 L535.0,208.8 L534.2,209.0 L533.9,208.8 L533.5,208.0 L532.7,207.5 L531.8,206.8 L530.6,206.7 L531.5,206.1 L532.1,201.8 Z",OH,39087 740,39001,0.47,0.50,Adams,"M522.1,199.8 L523.0,199.7 L523.7,200.2 L524.0,202.5 L524.6,206.8 L521.1,205.8 L519.7,207.2 L519.4,207.4 L518.9,207.2 L518.8,206.6 L518.4,200.8 L518.4,200.8 L519.2,200.8 Z",OH,39001 741,39015,0.47,0.51,Brown,"M518.8,206.6 L518.9,207.2 L517.7,206.4 L516.0,205.4 L515.0,205.2 L514.1,205.6 L513.9,199.6 L513.8,197.5 L514.3,197.5 L515.4,197.4 L515.9,201.2 L518.4,200.8 L518.4,200.8 Z",OH,39015 742,12055,0.52,0.48,Highlands,"M577.6,396.1 L577.3,394.2 L576.8,391.0 L576.5,389.0 L576.0,385.8 L580.7,385.1 L582.3,384.9 L581.6,387.0 L586.5,391.6 L583.1,392.2 L582.1,395.4 Z",FL,12055 743,12027,0.50,0.50,DeSoto,"M576.8,391.0 L577.3,394.2 L577.6,396.1 L571.3,397.1 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L569.9,395.8 L569.7,394.4 L569.6,393.2 L569.4,392.2 L572.4,391.7 Z M570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 Z M570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 Z",FL,12027 744,29209,0.54,0.50,Stone,"M390.1,245.2 L393.7,245.2 L394.3,248.1 L394.2,249.5 L394.3,253.4 L392.8,253.5 L390.6,253.5 L390.6,248.1 L390.1,246.4 L390.1,246.1 Z",MO,29209 745,05015,0.50,0.51,Carroll,"M390.6,253.5 L392.8,253.5 L394.3,253.4 L394.4,253.4 L394.6,253.4 L394.6,255.9 L394.7,259.7 L393.7,259.7 L392.2,259.7 L389.7,256.8 L387.6,256.8 L386.9,256.3 L386.8,253.6 L388.8,253.6 Z",AR,5015 746,51089,0.62,0.55,Henry,"M572.7,234.3 L572.4,234.4 L572.4,234.4 L571.1,230.6 L571.8,230.2 L575.5,229.6 L576.9,228.2 L576.9,230.9 L576.9,233.6 L574.6,234.0 Z M574.3,231.9 L574.6,232.1 L574.8,231.2 L574.2,231.1 Z",VA,51089 747,37169,0.49,0.50,Stokes,"M572.4,234.4 L572.4,234.4 L572.7,234.3 L573.1,237.1 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L569.4,239.7 L567.9,239.9 L567.5,237.2 L567.2,235.1 L569.2,234.9 Z",NC,37169 748,37157,0.51,0.51,Rockingham,"M572.7,234.3 L574.6,234.0 L576.9,233.6 L577.6,233.4 L579.6,233.1 L579.7,234.7 L580.2,237.9 L580.2,238.0 L580.2,238.1 L576.6,238.6 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.1,237.1 Z",NC,37157 749,19121,0.50,0.50,Madison,"M386.0,175.5 L384.6,175.7 L383.1,175.7 L381.4,175.7 L380.2,175.8 L380.2,172.8 L380.1,169.9 L384.5,169.9 L385.8,169.7 L385.9,171.9 Z",IA,19121 750,19039,0.50,0.50,Clarke,"M383.1,175.7 L384.6,175.7 L386.0,175.5 L388.3,175.5 L388.9,175.5 L389.0,178.4 L389.0,179.9 L386.0,179.9 L383.2,180.0 L383.2,178.4 Z",IA,19039 751,48203,0.97,0.64,Harrison,"M379.5,322.7 L378.6,322.5 L378.3,322.7 L376.5,322.2 L376.5,318.4 L376.4,317.3 L376.4,316.0 L379.2,317.6 L385.8,317.5 L385.9,319.5 L385.9,322.6 L381.6,323.7 Z",TX,48203 752,48401,0.50,0.50,Rusk,"M378.3,322.7 L378.6,322.5 L379.5,322.7 L378.1,329.8 L379.4,329.7 L379.4,330.6 L380.2,331.9 L376.0,332.0 L373.3,332.0 L372.6,332.0 L372.5,327.1 L372.5,324.1 L372.5,323.2 L377.4,323.1 Z",TX,48401 753,19181,0.50,0.49,Warren,"M388.9,175.5 L388.3,175.5 L386.0,175.5 L385.9,171.9 L385.8,169.7 L390.6,169.7 L391.6,169.9 L391.7,172.2 L391.8,175.4 L390.1,175.5 Z",IA,19181 754,39161,0.53,0.54,Van Wert,"M499.9,171.1 L499.8,170.5 L499.8,170.0 L501.8,169.8 L504.8,169.4 L505.0,170.8 L505.9,171.5 L505.2,172.3 L505.5,174.4 L505.3,174.5 L504.8,174.5 L504.7,173.8 L500.3,174.4 L500.0,172.3 Z",OH,39161 755,39125,0.50,0.48,Paulding,"M504.8,169.4 L501.8,169.8 L499.8,170.0 L499.5,167.8 L499.2,165.7 L503.6,165.1 L505.2,166.4 L505.6,169.3 Z",OH,39125 756,12043,0.06,0.57,Glades,"M588.1,395.7 L587.7,399.1 L578.3,400.6 L577.7,396.6 L577.6,396.1 L582.1,395.4 L583.1,392.2 L586.5,391.6 L587.7,392.4 Z",FL,12043 757,13199,0.51,0.52,Meriwether,"M520.2,302.9 L520.3,303.8 L520.6,304.3 L519.8,305.1 L518.0,305.3 L517.0,305.0 L515.7,305.1 L515.6,305.1 L515.4,303.7 L515.0,299.8 L515.1,299.2 L520.0,298.7 L520.0,298.7 L520.1,299.0 L520.1,299.3 L519.9,301.7 Z",GA,13199 758,13077,0.49,0.48,Coweta,"M515.1,299.2 L515.0,299.8 L514.9,299.3 L513.8,299.4 L513.5,298.5 L512.4,296.2 L513.2,295.8 L514.5,294.4 L517.7,294.1 L517.9,294.2 L517.8,295.2 L520.0,298.1 L519.8,298.3 L520.0,298.7 L520.0,298.7 Z",GA,13077 759,08007,0.18,0.43,Archuleta,"M215.7,230.4 L215.4,233.3 L217.6,237.6 L212.3,236.8 L205.0,235.9 L205.0,235.9 L204.2,235.8 L204.5,233.8 L205.1,228.8 L206.8,229.0 L209.8,229.4 L209.7,229.9 L215.3,230.4 L215.3,230.4 L215.7,230.4 Z",CO,8007 760,08105,0.51,0.50,Rio Grande,"M215.7,230.4 L215.3,230.4 L215.3,230.4 L215.8,226.1 L216.3,223.2 L217.6,224.9 L224.8,225.7 L224.8,225.7 L224.6,227.4 L224.2,231.5 L218.2,230.8 L215.7,230.4 Z",CO,8105 761,08023,0.52,0.46,Costilla,"M228.0,232.6 L231.7,229.5 L231.8,229.3 L235.9,229.0 L235.7,234.5 L235.5,237.3 L235.2,239.5 L235.2,239.4 L234.4,239.4 L230.8,239.0 L227.7,238.7 L227.1,237.5 Z",CO,8023 762,48099,0.50,0.50,Coryell,"M334.8,336.2 L336.3,338.8 L337.4,340.8 L332.2,343.8 L330.3,344.9 L329.8,344.0 L326.5,338.1 L328.8,336.8 L332.5,334.7 L333.6,334.1 Z",TX,48099 763,29019,0.47,0.46,Boone,"M402.9,211.7 L402.8,211.3 L404.4,207.0 L405.2,207.0 L405.9,207.0 L408.7,207.0 L408.7,209.9 L408.1,212.8 L407.6,217.0 L405.8,216.5 L405.2,215.5 L405.4,214.5 L403.8,212.5 L403.2,212.0 Z",MO,29019 764,29089,0.46,0.57,Howard,"M404.4,207.0 L402.8,211.3 L402.9,211.7 L399.2,211.7 L398.0,210.3 L397.8,209.3 L399.0,207.6 L399.7,205.6 L400.8,205.9 L403.5,206.7 Z",MO,29089 765,26139,0.49,0.51,Ottawa,"M478.7,142.5 L478.3,139.2 L477.3,136.7 L481.9,136.2 L483.1,134.6 L483.8,139.4 L484.1,141.9 L480.8,142.2 Z",MI,26139 766,26009,0.51,0.52,Antrim,"M483.9,106.5 L484.5,103.9 L484.0,100.6 L486.3,101.8 L490.6,101.3 L490.9,102.8 L491.2,105.6 L486.0,106.2 L485.6,107.1 L484.9,106.4 Z",MI,26009 767,37153,0.58,0.40,Richmond,"M584.8,257.6 L584.8,257.6 L583.8,260.1 L582.4,262.2 L581.4,262.3 L579.9,262.6 L579.2,262.7 L579.2,262.7 L579.2,262.7 L579.2,262.7 L579.4,261.8 L578.2,257.6 L576.2,257.5 L579.1,256.3 L582.4,256.0 L583.2,257.5 Z",NC,37153 768,45069,0.59,0.38,Marlboro,"M581.4,262.3 L582.4,262.2 L582.6,262.1 L586.0,264.5 L586.1,264.5 L586.2,264.6 L585.7,266.8 L584.7,270.4 L584.6,270.4 L584.3,270.3 L582.7,268.4 L581.3,267.0 L581.8,265.5 L579.2,262.7 L579.2,262.7 Z",SC,45069 769,37007,0.50,0.46,Anson,"M579.2,262.7 L579.2,262.7 L575.9,263.2 L573.8,263.5 L573.4,258.3 L573.3,257.1 L574.8,257.7 L576.2,257.5 L578.2,257.6 L579.4,261.8 Z",NC,37007 770,16055,0.52,0.53,Kootenai,"M126.0,44.6 L122.5,44.5 L117.9,43.5 L119.7,35.7 L120.3,33.4 L126.3,34.6 L127.9,36.7 L126.5,42.7 Z",ID,16055 771,16009,0.48,0.45,Benewah,"M117.9,43.5 L122.5,44.5 L126.0,44.6 L124.8,50.2 L124.6,51.1 L118.9,49.6 L117.0,47.5 L117.2,46.7 L117.5,45.3 L117.8,43.8 Z",ID,16009 772,17011,0.51,0.51,Bureau,"M435.2,166.2 L436.1,166.1 L438.1,166.0 L442.0,165.7 L443.9,165.6 L443.9,165.6 L443.9,165.6 L444.0,167.1 L444.3,170.2 L440.6,171.7 L440.7,173.1 L439.9,173.2 L438.5,173.3 L438.4,171.9 L435.6,172.0 L435.3,167.3 L435.2,166.2 Z M443.9,165.6 L443.9,165.6 L443.9,165.6 Z",IL,17011 773,17073,0.50,0.50,Henry,"M435.2,166.2 L435.3,167.3 L435.6,172.0 L435.6,173.5 L434.1,173.6 L431.3,173.7 L428.4,173.9 L428.3,172.3 L428.2,171.0 L428.1,168.8 L431.1,166.5 L433.7,166.3 L435.2,166.2 Z",IL,17073 774,17037,0.51,0.50,DeKalb,"M446.3,160.2 L446.1,157.3 L446.0,155.9 L447.7,155.7 L448.9,155.6 L450.0,155.5 L450.4,155.5 L450.3,157.0 L450.8,162.8 L450.8,162.8 L450.9,164.2 L448.2,164.5 L446.7,164.6 L446.5,163.1 L446.3,160.2 L446.3,160.2 Z",IL,17037 775,17103,0.50,0.49,Lee,"M446.3,160.2 L446.5,163.1 L446.7,164.6 L443.8,164.8 L443.9,165.6 L443.9,165.6 L443.9,165.6 L442.0,165.7 L438.1,166.0 L437.9,164.5 L437.7,160.7 L441.1,160.7 L446.3,160.2 Z",IL,17103 776,31127,0.50,0.50,Nemaha,"M357.1,186.6 L361.2,186.6 L361.7,186.6 L362.8,189.8 L363.7,190.9 L363.7,190.9 L363.7,190.9 L359.3,191.0 L357.8,191.0 L357.6,191.0 L357.1,191.0 L357.1,189.5 Z",NE,31127 777,26035,0.50,0.50,Clare,"M490.5,123.4 L490.3,121.5 L489.8,117.6 L492.2,117.3 L492.6,117.3 L493.6,117.2 L495.6,116.9 L495.7,117.6 L496.3,122.6 L496.3,122.7 L496.3,122.7 L496.3,122.7 L496.3,122.7 L496.3,122.7 L496.3,122.7 L492.4,123.2 Z M496.3,122.7 L496.3,122.7 L496.3,122.7 Z",MI,26035 778,26143,0.50,0.50,Roscommon,"M495.6,116.9 L493.6,117.2 L492.6,117.3 L492.0,112.7 L491.9,111.4 L496.5,110.9 L497.7,110.8 L498.1,113.7 L498.4,116.6 L496.5,116.8 Z",MI,26143 779,06091,0.50,0.46,Sierra,"M37.1,161.1 L37.5,159.0 L38.4,157.1 L41.4,156.7 L49.4,159.0 L51.1,159.4 L51.3,159.3 L50.8,161.1 L50.0,163.7 L43.8,162.0 L42.2,160.2 Z",CA,6091 780,06035,0.48,0.34,Lassen,"M51.3,159.3 L51.1,159.4 L49.4,159.0 L50.3,152.7 L44.5,147.1 L41.9,148.5 L41.4,143.9 L38.1,143.0 L40.3,135.6 L41.5,131.1 L49.6,133.4 L57.7,135.6 L54.2,148.7 Z",CA,6035 781,12081,0.48,0.59,Manatee,"M569.4,392.2 L569.6,393.2 L569.7,394.4 L566.3,391.8 L561.5,392.5 L559.4,391.7 L561.2,388.1 L565.2,387.5 L568.6,387.0 L569.1,389.9 Z M560.3,392.7 L559.8,392.0 L560.5,392.6 L560.4,392.6 Z",FL,12081 782,08015,0.76,0.82,Chaffee,"M226.5,214.1 L225.4,214.4 L223.3,214.1 L221.2,209.3 L223.2,205.9 L219.9,204.1 L220.0,203.3 L220.2,203.1 L222.7,203.4 L225.3,203.7 L228.5,208.3 L227.5,210.0 L228.5,211.6 Z",CO,8015 783,08043,0.49,0.50,Fremont,"M240.8,212.2 L240.8,212.6 L240.6,214.3 L240.2,218.7 L238.8,218.6 L235.4,218.2 L228.9,217.4 L227.9,216.0 L226.5,214.1 L228.5,211.6 L227.5,210.0 L231.4,210.5 L235.8,210.9 L236.9,211.8 Z",CO,8043 784,19089,0.50,0.50,Howard,"M405.9,135.6 L406.0,137.9 L406.1,140.4 L404.9,140.5 L400.3,140.7 L400.2,137.8 L400.1,135.9 L401.2,135.8 L401.4,135.8 L404.2,135.7 L405.7,135.6 L405.9,135.6 L405.9,135.6 Z",IA,19089 785,19037,0.50,0.50,Chickasaw,"M400.3,140.7 L404.9,140.5 L406.1,140.4 L406.1,141.4 L406.2,142.6 L406.2,143.6 L406.3,145.6 L403.8,145.7 L400.5,145.8 L400.5,145.8 L400.5,145.8 L400.4,142.2 Z M400.5,145.8 L400.5,145.8 L400.5,145.8 Z",IA,19037 786,19017,0.50,0.50,Bremer,"M400.5,145.8 L403.8,145.7 L406.3,145.6 L406.4,148.2 L406.5,150.0 L403.1,150.2 L400.7,150.3 L400.7,150.3 L400.5,146.8 L400.5,145.8 Z",IA,19017 787,19065,0.50,0.50,Fayette,"M406.3,145.6 L406.2,143.6 L406.2,142.6 L409.0,142.5 L412.0,142.4 L412.3,147.2 L412.4,149.7 L412.4,149.7 L409.4,149.9 L406.5,150.0 L406.4,148.2 Z",IA,19065 788,19043,0.50,0.49,Clayton,"M412.3,147.2 L412.0,142.4 L415.8,142.2 L417.3,142.1 L417.4,142.8 L417.6,143.7 L419.0,147.6 L421.1,148.7 L421.2,149.2 L418.3,149.4 L418.3,149.4 L418.2,149.4 L418.2,149.4 L413.8,149.6 L412.4,149.7 L412.4,149.7 Z",IA,19043 789,17093,0.50,0.50,Kendall,"M450.9,164.2 L450.8,162.8 L450.8,162.8 L454.9,162.3 L455.0,162.3 L455.0,162.3 L455.2,163.8 L455.5,166.7 L452.7,167.0 L451.2,167.1 L451.0,165.5 Z",IL,17093 790,38089,0.85,0.52,Stark,"M286.9,75.1 L286.9,75.1 L286.9,75.1 L286.8,75.6 L287.4,75.6 L287.4,75.6 L287.1,80.1 L287.1,80.6 L287.0,81.5 L281.8,81.2 L277.3,80.8 L275.4,80.7 L273.8,80.6 L274.3,74.7 L276.6,74.8 L282.4,75.3 L286.9,75.1 Z",ND,38089 791,38057,0.07,0.49,Mercer,"M286.9,75.1 L287.2,69.7 L286.5,69.7 L286.8,65.5 L291.2,67.1 L295.6,66.2 L297.4,71.4 L291.5,71.5 L291.2,75.9 L288.6,75.7 L287.4,75.6 L286.8,75.6 L286.9,75.1 Z",ND,38057 792,38025,0.07,0.51,Dunn,"M287.2,69.7 L286.9,75.1 L286.9,75.1 L282.4,75.3 L276.6,74.8 L277.0,69.0 L276.3,68.9 L276.7,63.1 L281.9,63.5 L282.1,60.9 L283.0,61.7 L285.0,62.2 L286.4,61.9 L286.8,65.5 Z",ND,38025 793,26095,0.49,0.50,Luce,"M476.0,79.4 L475.9,77.7 L475.7,76.0 L479.7,76.0 L482.8,74.2 L483.0,75.9 L483.8,83.0 L480.7,83.3 L476.5,83.8 L476.3,81.6 Z",MI,26095 794,26153,0.50,0.51,Schoolcraft,"M476.0,79.4 L476.3,81.6 L476.5,83.8 L476.9,86.7 L477.0,88.3 L472.6,89.2 L470.4,92.5 L469.4,86.1 L467.9,86.2 L467.6,83.3 L470.6,83.0 L470.2,80.1 Z",MI,26153 795,40019,0.50,0.50,Carter,"M345.0,292.9 L344.5,292.9 L344.4,294.6 L340.1,294.5 L336.2,294.5 L336.2,294.5 L336.2,290.8 L336.2,290.1 L336.3,287.2 L338.0,287.2 L339.2,287.2 L339.2,289.4 L345.0,290.2 L345.0,291.6 Z",OK,40019 796,40099,0.50,0.44,Murray,"M345.0,290.2 L339.2,289.4 L339.2,287.2 L341.3,285.3 L345.1,285.1 L346.5,285.8 L346.5,287.3 L345.7,287.3 Z",OK,40099 797,35055,0.16,0.18,Taos,"M227.7,238.7 L230.8,239.0 L234.4,239.4 L231.8,244.4 L231.5,251.4 L230.2,253.5 L228.5,255.3 L221.9,249.8 L223.8,247.2 L223.9,238.3 L225.3,238.4 Z",NM,35055 798,05017,0.50,0.49,Chicot,"M425.0,301.6 L425.3,302.0 L427.4,308.3 L426.4,310.6 L426.4,310.7 L426.4,310.8 L425.6,310.8 L425.0,310.8 L423.7,310.9 L422.6,310.9 L422.4,310.9 L422.3,310.9 L422.0,306.4 L422.0,304.5 L421.9,302.8 L421.9,301.6 L424.9,302.2 L425.0,301.5 L425.0,301.5 Z",AR,5017 799,28011,0.47,0.50,Bolivar,"M425.0,301.6 L425.0,301.5 L425.0,301.5 L426.7,294.7 L428.4,291.9 L428.4,291.9 L432.5,291.7 L432.7,293.9 L433.0,300.1 L431.6,301.6 L429.9,301.7 L425.3,302.0 Z",MS,28011 800,54027,0.55,0.46,Hampshire,"M583.9,181.6 L584.3,181.8 L585.6,182.1 L585.8,187.2 L584.7,188.7 L579.4,187.9 L578.2,187.4 L579.6,185.6 L581.4,181.7 L582.6,181.8 L583.1,181.6 L583.9,181.6 L583.9,181.6 Z",WV,54027 801,24001,0.48,0.45,Allegany,"M583.9,181.6 L582.6,181.8 L581.4,181.7 L579.6,180.6 L576.4,183.7 L576.5,183.2 L577.3,179.3 L578.3,179.1 L578.9,179.0 L582.9,178.3 L584.3,178.0 L584.7,177.9 L584.8,177.9 L585.3,178.3 L585.2,179.3 L584.6,180.2 L583.9,181.6 Z",MD,24001 802,54057,0.54,0.56,Mineral,"M576.4,183.7 L579.6,180.6 L581.4,181.7 L579.6,185.6 L578.2,187.4 L576.0,186.6 L574.2,186.6 L575.4,185.4 Z",WV,54057 803,42057,0.51,0.55,Fulton,"M584.8,177.9 L584.7,177.9 L584.3,178.0 L585.0,176.1 L586.0,170.1 L588.8,170.6 L589.8,171.1 L588.8,175.3 L587.9,177.3 L585.2,177.8 Z",PA,42057 804,48077,0.51,0.50,Clay,"M330.1,304.5 L328.0,304.5 L323.9,304.4 L323.9,301.8 L324.0,298.2 L324.1,295.9 L324.1,294.0 L325.0,292.8 L328.1,293.1 L328.8,295.5 L330.3,297.4 L330.2,300.1 Z",TX,48077 805,48237,0.50,0.50,Jack,"M323.9,304.4 L328.0,304.5 L330.1,304.5 L330.1,305.1 L331.0,305.1 L330.9,308.2 L330.8,312.3 L329.6,312.3 L328.9,312.3 L326.2,312.2 L323.6,312.1 L323.8,307.7 L323.9,305.5 L323.9,304.9 Z",TX,48237 806,48367,0.50,0.50,Parker,"M328.9,312.3 L329.6,312.3 L330.8,312.3 L334.8,312.5 L336.1,312.6 L336.0,315.1 L335.9,319.9 L335.4,319.9 L334.9,319.9 L329.7,319.8 L328.5,319.7 L328.6,318.7 Z",TX,48367 807,16069,0.52,0.11,Nez Perce,"M116.5,67.0 L115.7,68.6 L114.9,69.1 L114.3,67.9 L114.0,66.4 L114.6,63.5 L114.2,59.0 L114.4,58.2 L114.7,57.1 L118.3,58.0 L121.7,57.2 L121.2,59.4 L122.0,60.1 L121.7,62.0 L117.6,61.5 Z",ID,16069 808,29221,0.50,0.50,Washington,"M429.1,231.2 L426.1,231.4 L423.1,231.4 L422.9,227.1 L422.7,223.7 L424.4,223.5 L426.9,223.4 L428.3,225.0 L428.3,225.3 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 L429.1,230.2 Z M428.9,225.5 L428.9,225.5 L428.9,225.5 Z M428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 Z",MO,29221 809,36109,0.48,0.50,Tompkins,"M595.8,126.0 L598.3,125.4 L600.6,124.9 L601.2,127.0 L601.6,128.4 L602.0,130.2 L598.5,131.3 L598.0,131.4 L597.6,131.5 L596.7,131.6 L596.7,131.5 L596.7,131.5 L596.7,131.5 L596.7,131.5 L595.7,127.3 L597.0,127.0 Z",NY,36109 810,36011,0.44,0.48,Cayuga,"M600.6,124.9 L598.3,125.4 L595.8,126.0 L594.6,124.5 L593.7,120.5 L593.8,119.5 L593.8,119.5 L593.8,119.5 L593.7,118.6 L592.5,114.3 L593.0,113.2 L593.5,112.6 L594.3,115.5 L595.9,115.6 L597.6,121.8 L600.0,122.5 L600.1,122.9 Z",NY,36011 811,36075,0.50,0.50,Oswego,"M595.9,115.6 L594.3,115.5 L593.5,112.6 L597.5,109.9 L597.4,107.5 L599.6,106.5 L602.6,106.2 L602.9,107.2 L603.6,109.7 L602.6,112.4 L603.3,115.2 L602.6,115.0 L601.9,115.0 L599.0,114.1 Z",NY,36075 812,36053,0.51,0.38,Madison,"M601.9,115.0 L602.6,115.0 L603.3,115.2 L605.0,114.6 L609.7,118.7 L612.0,118.1 L612.3,119.5 L611.9,120.3 L610.3,120.7 L604.8,122.3 L604.6,121.4 L604.5,121.2 L603.1,116.4 Z",NY,36053 813,48363,0.50,0.50,Palo Pinto,"M323.6,312.1 L326.2,312.2 L328.9,312.3 L328.6,318.7 L328.5,319.7 L328.5,319.9 L328.5,320.5 L325.6,320.4 L322.7,320.4 L322.7,320.4 L322.3,320.3 L321.3,320.3 L321.3,318.4 L321.5,312.9 L323.6,313.0 Z",TX,48363 814,48143,0.24,0.01,Erath,"M322.7,320.4 L325.6,320.4 L328.5,320.5 L329.4,323.1 L330.1,325.2 L330.2,325.4 L331.2,327.7 L331.2,327.7 L329.5,328.7 L329.2,328.9 L327.6,329.8 L326.3,330.5 L324.6,330.0 L321.5,324.6 L322.6,324.0 L322.7,320.4 Z",TX,48143 815,48133,0.50,0.51,Eastland,"M322.7,320.4 L322.6,324.0 L321.5,324.6 L319.9,325.5 L316.1,327.5 L315.0,327.4 L313.3,327.4 L313.5,322.6 L313.6,320.1 L313.6,320.1 L313.8,320.1 L313.8,320.1 L317.7,320.2 L321.3,320.3 L322.3,320.3 L322.7,320.4 Z",TX,48133 816,48059,0.50,0.50,Callahan,"M313.5,322.6 L313.3,327.4 L312.7,327.4 L312.2,327.3 L307.8,327.2 L305.9,327.1 L305.9,327.1 L305.9,327.1 L305.9,327.1 L306.1,322.7 L306.2,319.8 L306.2,319.8 L306.3,319.8 L306.5,319.8 L311.8,320.0 L313.6,320.1 L313.6,320.1 Z",TX,48059 817,48417,0.50,0.50,Shackelford,"M307.9,312.4 L308.8,312.4 L311.9,312.5 L314.1,312.6 L314.0,316.2 L313.8,320.1 L313.8,320.1 L313.6,320.1 L313.6,320.1 L311.8,320.0 L306.5,319.8 L306.8,313.3 L306.8,312.4 Z",TX,48417 818,48207,0.50,0.50,Haskell,"M307.9,312.4 L306.8,312.4 L306.8,312.4 L304.3,312.2 L301.5,312.1 L301.7,307.2 L301.7,304.7 L305.2,304.9 L309.1,305.0 L309.0,307.5 L308.8,312.4 Z",TX,48207 819,51085,0.50,0.52,Hanover,"M600.6,209.1 L599.6,209.3 L598.4,209.2 L598.8,204.6 L598.9,204.3 L599.3,204.5 L599.5,204.5 L601.9,205.8 L604.0,207.0 L605.0,208.1 L607.5,209.1 L607.0,209.7 L606.4,210.8 L603.1,209.0 Z",VA,51085 820,51075,0.52,0.64,Goochland,"M598.4,209.2 L599.6,209.3 L600.6,209.1 L600.5,210.3 L600.8,211.6 L596.9,210.2 L595.0,211.1 L594.6,210.3 L593.6,209.8 L593.6,209.5 L594.3,207.0 L596.0,207.7 Z",VA,51075 821,39033,0.50,0.50,Crawford,"M525.9,166.4 L526.1,167.5 L526.5,171.1 L524.9,171.3 L524.9,171.4 L523.5,171.7 L521.7,171.9 L521.3,169.3 L521.0,167.1 L524.3,166.7 L524.6,166.6 L525.2,166.5 Z",OH,39033 822,39139,0.49,0.50,Richland,"M526.5,171.1 L526.1,167.5 L525.9,166.4 L529.0,166.0 L529.6,165.9 L531.4,170.1 L531.9,173.0 L531.4,173.1 L528.3,173.6 L527.8,170.9 Z",OH,39139 823,17067,0.48,0.50,Hancock,"M423.3,190.3 L420.3,190.4 L415.7,190.6 L415.6,190.0 L415.7,189.8 L416.1,188.2 L416.6,187.5 L417.2,183.8 L419.4,183.0 L421.5,183.0 L423.0,182.8 L423.0,183.7 L423.2,188.8 L423.3,189.7 Z",IL,17067 824,17001,0.50,0.50,Adams,"M415.7,190.6 L420.3,190.4 L423.3,190.3 L423.3,191.3 L423.3,191.8 L423.5,194.5 L423.5,196.1 L423.6,197.6 L417.8,197.9 L416.9,196.5 L416.8,194.8 L415.9,193.3 Z",IL,17001 825,17009,0.51,0.49,Brown,"M423.5,196.1 L423.5,194.5 L423.3,191.8 L426.1,191.6 L428.6,193.4 L428.4,194.5 L427.8,195.3 L427.8,195.7 L428.0,195.9 L423.8,196.2 Z",IL,17009 826,17075,0.51,0.50,Iroquois,"M465.8,178.0 L466.0,180.1 L466.2,182.1 L464.6,182.3 L461.0,182.6 L458.6,182.8 L457.7,174.3 L460.9,173.9 L465.4,173.4 L465.4,173.4 L465.6,176.3 Z",IL,17075 827,13113,0.63,0.49,Fayette,"M519.9,293.1 L521.1,294.4 L521.3,296.3 L520.9,298.0 L520.0,298.1 L517.8,295.2 L517.9,294.2 L518.0,293.9 Z",GA,13113 828,13265,0.36,0.58,Taliaferro,"M542.5,291.8 L540.7,292.0 L540.2,291.7 L539.9,289.9 L539.9,288.0 L540.0,287.7 L540.5,287.2 L541.5,288.8 L544.5,288.9 L543.8,290.5 Z",GA,13265 829,13141,0.50,0.53,Hancock,"M540.2,291.7 L540.7,292.0 L542.5,291.8 L543.1,292.9 L544.3,294.8 L544.5,294.9 L544.5,295.0 L542.8,297.0 L540.6,298.3 L539.8,297.2 L537.2,296.9 L537.4,295.7 L538.4,293.9 L539.5,292.6 Z",GA,13141 830,48091,0.53,0.61,Comal,"M323.8,369.7 L323.4,367.5 L318.9,367.0 L321.3,364.8 L322.4,363.8 L323.5,362.8 L324.2,362.2 L328.0,365.5 L328.5,367.1 L327.1,368.2 Z",TX,48091 831,48259,0.50,0.51,Kendall,"M322.4,363.8 L321.3,364.8 L318.9,367.0 L317.5,367.4 L316.9,367.3 L315.6,366.6 L314.9,366.2 L314.9,364.4 L315.1,360.2 L317.1,360.3 L319.9,360.3 L321.2,362.1 Z",TX,48259 832,36001,0.51,0.49,Albany,"M629.6,115.4 L630.4,114.5 L631.2,115.0 L630.9,118.0 L631.2,120.5 L629.5,121.3 L625.8,122.8 L625.3,120.4 L625.4,117.3 L629.6,115.5 Z",NY,36001 833,36039,0.03,0.92,Greene,"M625.8,122.8 L629.5,121.3 L631.2,120.5 L631.9,123.7 L631.0,126.4 L629.2,127.3 L624.3,127.3 L623.2,127.0 L623.7,124.2 L626.0,123.3 Z",NY,36039 834,13019,0.56,0.46,Berrien,"M539.3,327.9 L540.1,326.9 L540.3,325.6 L541.6,325.4 L543.1,325.3 L543.3,325.8 L543.3,326.1 L545.2,328.3 L545.2,329.9 L543.6,330.7 L543.4,332.8 L542.7,332.9 L542.0,333.0 L541.5,330.7 Z",GA,13019 835,13277,0.53,0.47,Tift,"M540.3,325.6 L540.1,326.9 L539.3,327.9 L538.9,328.3 L538.2,328.4 L536.6,328.6 L536.2,328.6 L536.0,326.9 L535.9,326.1 L535.7,324.7 L535.7,324.7 L535.6,324.2 L537.8,323.9 L539.0,324.5 Z",GA,13277 836,13155,0.48,0.53,Irwin,"M540.3,325.6 L539.0,324.5 L537.8,323.9 L537.7,322.2 L538.0,321.1 L540.0,322.1 L544.7,321.6 L544.0,322.8 L543.1,325.3 L541.6,325.4 Z",GA,13155 837,13321,0.49,0.48,Worth,"M533.0,321.0 L533.5,324.0 L535.7,324.7 L535.9,326.1 L536.2,328.6 L534.6,328.8 L531.2,329.2 L531.1,328.4 L531.0,327.4 L530.6,324.4 L530.2,324.0 L529.9,322.9 L530.9,320.5 L532.1,320.6 L533.0,321.0 L533.0,321.0 Z",GA,13321 838,13287,0.54,0.51,Turner,"M533.0,321.0 L533.0,321.0 L533.0,321.0 L535.7,320.6 L535.6,319.8 L536.6,319.7 L537.5,319.7 L537.9,320.5 L538.0,321.1 L537.7,322.2 L537.8,323.9 L535.6,324.2 L535.7,324.7 L533.5,324.0 Z",GA,13287 839,13081,0.50,0.53,Crisp,"M533.0,321.0 L533.0,321.0 L532.1,320.6 L530.9,320.5 L530.9,320.0 L531.0,319.5 L530.9,318.9 L530.2,317.5 L531.5,317.4 L535.2,316.9 L535.4,318.3 L535.6,319.8 L535.7,320.6 L533.0,321.0 Z",GA,13081 840,13075,0.44,0.49,Cook,"M538.2,328.4 L538.9,328.3 L539.3,327.9 L541.5,330.7 L542.0,333.0 L541.8,333.0 L539.4,333.3 L538.6,333.0 L537.9,332.7 L538.5,330.4 Z",GA,13075 841,46025,0.50,0.50,Clark,"M340.0,119.0 L338.6,118.9 L335.7,118.9 L335.7,117.4 L334.2,117.4 L334.2,113.0 L334.3,108.6 L336.0,108.6 L340.2,108.7 L340.1,113.1 L340.1,114.6 L340.0,117.6 Z",SD,46025 842,46077,0.50,0.50,Kingsbury,"M335.7,118.9 L338.6,118.9 L340.0,119.0 L342.1,119.0 L344.4,119.0 L344.3,123.3 L344.3,124.9 L342.6,124.9 L341.4,124.9 L337.6,124.8 L335.6,124.7 L335.6,124.7 L335.5,124.7 L335.6,122.0 Z",SD,46077 843,46005,0.95,0.51,Beadle,"M335.5,124.7 L334.2,124.7 L329.8,124.6 L326.2,124.5 L325.3,124.5 L325.5,118.6 L325.5,117.1 L328.6,117.2 L334.2,117.4 L335.7,117.4 L335.7,118.9 L335.6,122.0 L335.6,124.7 Z",SD,46005 844,36043,0.54,0.50,Herkimer,"M608.2,97.8 L609.7,98.3 L612.1,97.4 L615.3,106.7 L616.8,109.8 L617.4,111.6 L617.2,113.8 L617.6,114.6 L617.8,116.9 L616.3,117.9 L612.4,117.9 L612.8,111.8 L610.8,105.5 L609.2,100.7 Z",NY,36043 845,36065,0.07,0.66,Oneida,"M610.8,105.5 L612.8,111.8 L612.4,117.9 L612.0,118.0 L612.0,118.1 L609.7,118.7 L605.0,114.6 L603.3,115.2 L602.6,112.4 L603.6,109.7 L606.5,109.9 Z",NY,36065 846,26053,0.28,0.37,Gogebic,"M439.9,85.8 L440.1,87.7 L440.3,89.7 L439.0,89.1 L429.0,87.1 L426.8,86.6 L423.2,82.5 L427.1,80.8 L428.7,79.2 L431.0,83.5 L435.4,83.2 L435.6,86.1 Z",MI,26053 847,27027,0.50,0.50,Clay,"M355.7,75.1 L356.0,78.0 L355.9,82.4 L356.0,83.9 L354.7,83.9 L351.1,83.9 L348.8,83.9 L348.8,83.9 L348.7,83.9 L349.1,78.7 L348.3,75.1 L350.1,75.1 Z",MN,27027 848,27005,0.89,0.50,Becker,"M355.9,82.4 L356.0,78.0 L355.7,75.1 L356.5,75.1 L357.2,75.1 L359.5,75.1 L363.2,75.1 L364.9,75.1 L367.6,75.0 L367.6,78.0 L367.7,80.9 L367.7,81.4 L367.7,82.4 L361.4,82.5 Z",MN,27005 849,27107,0.50,0.50,Norman,"M357.2,75.1 L356.5,75.1 L355.7,75.1 L350.1,75.1 L348.3,75.1 L348.5,74.8 L348.4,73.6 L348.1,70.5 L348.2,69.2 L355.9,69.2 L357.2,69.2 L357.2,72.2 Z",MN,27107 850,27057,0.50,0.50,Hubbard,"M367.7,80.9 L367.6,78.0 L367.6,75.0 L367.5,72.1 L367.4,70.6 L371.9,70.6 L373.3,70.6 L373.5,80.9 L372.1,80.9 L369.2,80.9 Z",MN,27057 851,47013,0.49,0.49,Campbell,"M521.2,244.4 L520.6,244.8 L520.2,247.1 L517.3,247.9 L515.4,248.6 L515.1,244.4 L516.1,242.2 L516.5,242.1 L516.5,242.1 L518.2,241.9 L519.7,241.7 L519.8,242.2 Z",TN,47013 852,47173,0.50,0.51,Union,"M520.2,247.1 L520.6,244.8 L521.2,244.4 L522.5,244.0 L524.6,245.2 L524.3,246.5 L524.1,248.3 L524.1,248.3 L521.5,248.6 L521.2,248.3 L520.8,248.0 Z",TN,47173 853,47057,0.44,0.41,Grainger,"M524.3,246.5 L524.6,245.2 L527.2,244.4 L528.2,243.6 L528.6,243.4 L529.6,243.7 L530.0,244.4 L530.2,245.4 L529.3,245.4 L527.7,247.7 L525.0,248.9 L525.2,249.6 L524.7,249.2 L524.1,248.3 L524.1,248.3 Z",TN,47057 854,38015,0.95,0.51,Burleigh,"M310.6,71.0 L310.8,76.9 L310.5,82.8 L304.5,82.5 L303.7,82.4 L301.7,80.2 L300.8,76.4 L301.5,75.9 L300.6,73.4 L303.1,73.6 L304.2,70.7 L306.5,70.8 Z",ND,38015 855,38029,0.49,0.50,Emmons,"M303.7,82.4 L304.5,82.5 L310.5,82.8 L311.6,82.9 L312.4,82.9 L312.1,88.8 L312.6,88.8 L312.4,91.9 L312.3,94.6 L307.3,94.3 L305.0,94.2 L305.0,94.2 L304.9,94.2 L303.7,90.7 L304.4,86.0 L305.0,84.2 Z",ND,38029 856,38047,0.95,0.53,Logan,"M312.6,88.8 L312.1,88.8 L312.4,82.9 L314.9,83.0 L317.8,83.1 L321.2,83.3 L322.6,83.3 L322.5,85.9 L322.4,89.2 L316.4,89.0 Z",ND,38047 857,48039,0.83,0.27,Brazoria,"M360.2,375.7 L363.1,375.2 L366.5,370.3 L368.9,370.1 L369.6,370.7 L369.3,372.2 L371.9,376.6 L370.5,379.3 L365.4,383.2 L361.5,380.7 L359.9,376.3 L360.3,375.8 Z",TX,48039 858,48157,0.40,0.49,Fort Bend,"M366.5,370.3 L363.1,375.2 L360.2,375.7 L357.1,371.8 L356.7,370.0 L357.6,370.0 L357.5,367.8 L358.4,367.8 L360.5,366.8 L363.7,368.9 Z",TX,48157 859,48481,0.54,0.53,Wharton,"M356.7,370.0 L357.1,371.8 L360.2,375.7 L360.3,375.8 L359.9,376.3 L358.5,377.7 L353.4,380.8 L348.9,376.3 L348.5,375.9 L352.8,373.3 L355.4,369.4 L356.3,369.6 Z",TX,48481 860,47009,0.43,0.51,Blount,"M522.6,260.4 L521.9,259.0 L519.2,258.3 L519.8,257.4 L519.0,255.1 L521.2,253.5 L523.9,253.0 L525.5,255.8 L526.4,258.1 L524.9,258.4 L522.7,260.4 L522.7,260.4 Z",TN,47009 861,30031,0.83,0.20,Gallatin,"M182.1,76.7 L184.2,77.0 L185.3,77.2 L183.5,87.2 L180.0,90.8 L179.0,96.6 L178.8,96.5 L177.9,102.1 L177.8,102.9 L177.5,105.3 L175.6,103.2 L174.3,100.0 L177.2,85.3 L172.3,81.8 L173.5,82.0 L174.1,81.5 L178.8,76.2 Z",MT,30031 862,13143,0.58,0.42,Haralson,"M510.9,288.2 L511.1,288.2 L511.3,289.8 L511.3,291.4 L507.4,292.9 L507.0,291.3 L506.2,288.8 L508.7,288.6 Z",GA,13143 863,17041,0.52,0.50,Douglas,"M455.1,194.8 L455.2,194.8 L455.1,193.3 L459.5,193.0 L461.8,192.7 L461.6,194.2 L461.8,196.0 L460.6,196.7 L455.3,197.1 L455.2,195.7 Z",IL,17041 864,51177,0.50,0.51,Spotsylvania,"M595.0,203.2 L597.3,199.3 L597.5,198.6 L598.2,198.2 L598.5,198.3 L599.1,198.5 L599.9,199.0 L599.9,199.0 L600.2,199.4 L601.0,199.2 L601.5,199.5 L602.2,199.6 L602.2,199.6 L599.7,204.2 L599.5,204.5 L599.3,204.5 L598.9,204.3 L596.6,203.2 Z",VA,51177 865,51137,0.55,0.65,Orange,"M597.5,198.6 L597.3,199.3 L595.0,203.2 L593.1,203.0 L591.7,203.6 L591.1,203.5 L589.4,203.2 L589.8,202.5 L590.2,201.6 L591.2,202.1 L592.6,200.4 L596.5,198.2 Z",VA,51137 866,51079,0.57,0.62,Greene,"M590.2,201.6 L589.8,202.5 L589.4,203.2 L586.4,202.7 L585.3,202.4 L586.6,201.2 L587.2,199.6 L587.4,199.1 L587.4,198.6 L588.1,200.4 Z",VA,51079 867,55027,0.51,0.50,Dodge,"M450.5,137.9 L449.6,138.0 L449.6,138.0 L449.6,138.0 L446.2,138.2 L443.8,138.4 L443.7,137.8 L443.7,137.0 L443.6,135.5 L443.3,131.1 L443.3,131.1 L443.6,131.1 L444.7,131.0 L450.6,130.6 L450.8,132.0 L450.8,135.0 L451.0,137.9 Z",WI,55027 868,55055,0.50,0.50,Jefferson,"M449.6,138.0 L449.8,141.2 L450.0,143.9 L449.1,144.0 L447.1,144.2 L445.7,144.2 L444.2,144.3 L443.9,140.7 L443.8,138.4 L446.2,138.2 L449.6,138.0 Z",WI,55055 869,55047,0.45,0.51,Green Lake,"M443.3,131.1 L441.8,131.3 L440.3,131.2 L440.7,128.3 L440.8,125.4 L442.7,125.3 L444.3,125.2 L444.3,126.1 L444.4,126.6 L444.6,129.1 L444.7,131.0 L443.6,131.1 L443.3,131.1 Z",WI,55047 870,55137,0.50,0.50,Waushara,"M444.3,125.2 L442.7,125.3 L440.8,125.4 L438.2,125.6 L435.6,125.8 L435.5,123.8 L435.3,121.4 L437.0,121.3 L439.8,121.1 L440.5,121.1 L443.9,120.8 L444.1,123.0 Z",WI,55137 871,05049,0.99,0.47,Fulton,"M412.9,256.8 L410.1,256.8 L410.1,253.9 L410.0,252.9 L410.3,252.8 L410.4,252.8 L411.8,252.8 L416.5,252.6 L418.3,252.5 L419.5,252.4 L419.6,255.2 L416.4,256.7 L416.4,256.7 Z",AR,5049 872,05065,0.50,0.51,Izard,"M412.9,256.8 L416.4,256.7 L416.4,256.7 L416.7,260.9 L416.4,261.9 L415.8,261.9 L414.6,263.2 L411.0,262.3 L409.7,259.0 L410.1,258.3 L410.1,256.8 Z",AR,5065 873,05063,0.50,0.50,Independence,"M414.6,263.2 L415.8,261.9 L416.4,261.9 L419.8,261.8 L421.3,262.5 L422.7,262.4 L423.4,262.4 L421.4,268.6 L418.5,268.7 L416.2,268.8 L415.6,268.8 L415.5,265.8 L414.9,266.0 L414.3,264.2 Z",AR,5063 874,06107,0.57,0.45,Tulare,"M40.2,224.5 L42.4,216.7 L42.8,213.0 L51.5,210.9 L59.7,213.0 L60.9,220.9 L60.4,229.6 L53.8,228.0 Z",CA,6107 875,06031,0.40,0.78,Kings,"M42.8,213.0 L42.4,216.7 L40.2,224.5 L38.8,224.1 L31.6,222.1 L31.4,222.1 L31.3,222.1 L31.3,220.5 L30.5,219.8 L36.4,216.6 L37.3,213.1 Z",CA,6031 876,06087,0.12,0.14,Santa Cruz,"M17.7,199.0 L17.7,199.0 L16.4,198.4 L15.3,199.1 L11.5,195.7 L10.3,193.1 L10.4,191.7 L13.0,190.8 L16.9,196.1 L18.5,199.2 L17.9,198.8 L17.7,199.0 Z",CA,6087 877,29125,0.50,0.50,Maries,"M415.4,222.6 L415.5,224.9 L415.7,224.9 L415.8,226.6 L410.7,227.5 L408.5,227.5 L408.5,227.5 L408.4,225.1 L408.1,222.9 L412.5,222.7 Z",MO,29125 878,29131,0.50,0.50,Miller,"M408.1,222.9 L408.4,225.1 L408.5,227.5 L405.9,227.5 L405.6,227.5 L404.1,227.6 L401.6,224.3 L401.6,222.2 L402.4,220.8 L404.0,220.8 L404.1,220.8 L405.3,222.2 L408.1,222.2 L408.1,222.6 Z",MO,29131 879,37005,0.53,0.52,Alleghany,"M560.6,238.8 L558.8,238.4 L556.9,240.0 L556.4,238.7 L555.0,236.8 L555.8,236.6 L561.0,236.0 L560.3,238.0 Z",NC,37005 880,37193,0.47,0.50,Wilkes,"M556.9,240.0 L558.8,238.4 L560.6,238.8 L562.1,239.8 L562.3,241.3 L562.5,242.5 L562.7,244.3 L561.4,244.5 L560.7,244.8 L558.6,245.3 L556.9,246.3 L554.9,245.0 L553.6,244.8 L554.6,243.2 L554.2,242.6 L555.5,240.4 Z",NC,37193 881,37189,0.50,0.55,Watauga,"M554.2,242.6 L554.6,243.2 L553.6,244.8 L551.9,244.9 L550.1,245.4 L548.5,243.9 L548.2,242.7 L549.6,241.3 L550.4,240.6 L552.9,242.2 Z",NC,37189 882,37027,0.50,0.51,Caldwell,"M553.6,244.8 L554.9,245.0 L556.9,246.3 L556.9,247.5 L557.3,249.6 L557.2,249.7 L557.0,250.1 L554.4,250.4 L550.5,247.9 L551.2,246.0 L550.1,245.4 L551.9,244.9 Z",NC,37027 883,20043,0.35,0.57,Doniphan,"M372.5,198.3 L371.3,200.4 L370.2,201.7 L369.4,201.1 L366.5,201.1 L366.5,197.0 L366.5,195.3 L366.6,195.3 L366.9,195.3 L368.3,196.9 L371.0,197.0 L371.7,197.7 Z",KS,20043 884,29021,0.50,0.50,Buchanan,"M370.2,201.7 L371.3,200.4 L372.5,198.3 L374.1,198.2 L376.0,198.2 L376.0,199.2 L376.0,199.4 L376.1,201.7 L376.1,203.1 L374.4,203.1 L369.6,203.1 L369.6,203.1 L369.7,202.3 Z",MO,29021 885,29003,0.50,0.50,Andrew,"M376.0,198.2 L374.1,198.2 L372.5,198.3 L371.7,197.7 L371.0,197.0 L370.7,194.5 L370.3,193.1 L373.6,193.1 L375.9,193.1 L375.9,193.1 L375.9,194.6 L375.9,194.6 L376.0,197.3 Z",MO,29003 886,29165,0.50,0.50,Platte,"M374.4,203.1 L376.1,203.1 L376.1,203.7 L376.1,204.3 L376.2,207.0 L376.2,209.3 L376.2,209.3 L375.1,208.9 L373.9,208.6 L372.3,207.0 L371.4,205.0 L371.3,205.0 L370.5,204.3 L370.3,203.7 L369.6,203.1 L369.6,203.1 L369.6,203.1 L369.6,203.1 Z",MO,29165 887,29047,0.49,0.50,Clay,"M376.2,207.0 L376.1,204.3 L379.7,204.3 L381.2,204.2 L381.2,205.7 L381.3,208.4 L378.0,209.9 L376.1,210.0 L376.4,209.4 L376.2,209.3 L376.2,209.3 Z",MO,29047 888,20005,0.50,0.50,Atchison,"M371.3,205.0 L368.6,205.0 L365.0,205.0 L363.6,205.1 L363.5,202.6 L363.6,201.1 L364.4,201.1 L366.5,201.1 L369.4,201.1 L370.2,201.7 L369.7,202.3 L369.6,203.1 L369.6,203.1 L369.6,203.1 L370.5,204.3 L371.4,205.0 Z",KS,20005 889,31177,0.50,0.50,Washington,"M356.4,167.2 L356.8,169.6 L358.0,170.1 L358.9,170.9 L358.8,172.1 L358.8,172.0 L353.8,172.0 L352.4,169.8 L352.4,167.1 L355.0,167.1 L356.4,167.2 L356.4,167.2 Z",NE,31177 890,19085,0.50,0.50,Harrison,"M356.4,167.2 L357.0,166.9 L356.7,166.4 L356.7,166.3 L357.2,165.3 L356.2,164.1 L356.2,164.1 L356.2,164.1 L358.1,164.1 L362.1,164.1 L363.1,164.1 L363.5,164.1 L363.5,168.5 L364.3,170.1 L363.2,170.1 L358.0,170.1 L356.8,169.6 L356.8,167.8 L356.4,167.2 L356.4,167.2 Z",IA,19085 891,31021,0.50,0.50,Burt,"M357.0,166.9 L356.4,167.0 L356.4,167.2 L356.4,167.2 L356.4,167.2 L355.0,167.1 L352.4,167.1 L352.4,166.2 L351.0,166.1 L351.0,161.8 L351.0,161.6 L354.1,161.6 L354.6,161.0 L356.3,162.3 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.6,164.8 L357.2,165.3 L356.6,166.2 L356.7,166.3 Z",NE,31021 892,19009,0.50,0.50,Audubon,"M369.4,168.5 L369.3,164.1 L371.5,164.1 L373.7,164.0 L373.8,168.4 L374.4,170.0 L372.6,170.1 L370.1,170.1 L370.1,170.1 Z",IA,19009 893,19165,0.50,0.50,Shelby,"M369.4,168.5 L370.1,170.1 L370.1,170.1 L369.5,170.1 L368.6,170.1 L367.4,170.1 L364.3,170.1 L363.5,168.5 L363.5,164.1 L366.5,164.1 L369.3,164.1 Z",IA,19165 894,24013,0.61,0.51,Carroll,"M604.5,173.9 L604.2,178.7 L604.6,180.2 L602.7,180.6 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.3,178.5 L599.1,175.0 L601.1,174.6 L601.8,174.4 L602.6,174.3 Z M601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 Z",MD,24013 895,19023,0.50,0.50,Butler,"M400.7,151.6 L400.7,151.7 L396.6,151.9 L394.9,151.9 L394.8,148.5 L394.7,146.0 L397.2,145.9 L400.5,145.8 L400.5,145.8 L400.5,146.8 L400.7,150.3 L400.7,150.3 Z",IA,19023 896,19013,0.50,0.50,Black Hawk,"M400.7,151.6 L400.7,150.3 L400.7,150.3 L403.1,150.2 L406.5,150.0 L406.6,152.9 L407.0,155.8 L405.5,155.9 L404.1,155.9 L401.6,156.0 L401.1,156.0 L401.0,153.1 L400.7,151.7 Z",IA,19013 897,19011,0.50,0.50,Benton,"M404.1,155.9 L405.5,155.9 L407.0,155.8 L408.2,155.7 L409.9,155.6 L410.0,160.0 L410.2,163.0 L407.5,163.1 L404.4,163.2 L404.3,161.2 Z",IA,19011 898,21129,0.53,0.58,Lee,"M523.1,225.8 L519.8,226.6 L519.0,226.1 L518.9,225.9 L518.7,225.8 L519.5,223.6 L520.7,222.6 L520.9,222.5 L520.9,222.5 L522.2,223.2 L523.6,223.5 L523.2,225.1 Z",KY,21129 899,21189,0.50,0.54,Owsley,"M519.0,226.1 L519.8,226.6 L523.1,225.8 L523.9,227.3 L523.9,228.6 L524.0,229.4 L524.4,229.8 L522.5,228.4 L520.7,228.8 L519.7,227.2 Z",KY,21189 900,21051,0.58,0.45,Clay,"M520.7,228.8 L522.5,228.4 L524.4,229.8 L524.6,229.8 L524.7,230.1 L524.4,232.8 L525.3,235.1 L525.0,235.0 L524.2,234.9 L521.6,233.9 L520.3,233.8 L518.7,232.0 L518.9,230.7 L519.8,229.6 Z",KY,21051 901,42015,0.11,0.67,Bradford,"M595.8,139.9 L594.8,136.9 L595.9,136.6 L599.3,135.9 L600.7,135.6 L604.4,134.8 L605.4,138.4 L606.0,140.4 L605.0,140.7 L605.1,142.5 L597.9,143.3 L597.6,143.3 L596.8,143.4 L596.8,143.4 Z",PA,42015 902,42117,0.51,0.49,Tioga,"M595.8,139.9 L596.8,143.4 L596.8,143.4 L596.0,144.3 L588.1,146.1 L586.9,140.7 L586.4,138.7 L592.4,137.4 L594.3,137.0 L594.7,136.9 L594.8,136.9 Z",PA,42117 903,39029,0.51,0.56,Columbiana,"M554.2,166.0 L554.5,167.9 L553.2,168.4 L552.8,169.1 L551.8,169.0 L550.3,169.3 L549.3,167.3 L547.2,167.6 L547.1,167.2 L546.7,164.7 L549.1,164.3 L553.8,163.5 L553.9,164.1 L553.9,164.4 L553.9,164.4 Z",OH,39029 904,54029,0.48,0.51,Hancock,"M554.5,167.9 L554.8,169.2 L555.0,170.5 L555.1,170.8 L555.2,171.8 L554.5,171.9 L553.8,172.1 L554.1,170.8 L552.8,169.1 L553.2,168.4 Z",WV,54029 905,29051,0.51,0.56,Cole,"M408.1,222.2 L405.3,222.2 L404.1,220.8 L404.4,219.6 L405.2,215.5 L405.8,216.5 L407.6,217.0 L408.4,218.1 L410.4,218.1 L410.0,219.9 Z",MO,29051 906,26159,0.48,0.52,Van Buren,"M477.5,151.4 L477.6,151.2 L478.4,148.4 L481.2,148.1 L484.9,147.6 L485.3,150.6 L485.6,153.5 L483.3,153.7 L479.9,154.1 L479.6,151.2 Z",MI,26159 907,26027,0.50,0.50,Cass,"M479.9,154.1 L483.3,153.7 L485.6,153.5 L486.2,158.0 L485.9,158.7 L484.3,158.9 L482.5,159.0 L481.9,159.1 L480.4,159.3 L480.3,157.4 Z",MI,26027 908,26021,0.45,0.50,Berrien,"M479.9,154.1 L480.3,157.4 L480.4,159.3 L477.7,159.6 L476.7,159.7 L475.9,159.8 L472.7,160.1 L475.4,156.8 L477.5,151.4 L479.6,151.2 Z",MI,26021 909,18091,0.54,0.50,LaPorte,"M471.7,160.8 L472.7,160.1 L475.9,159.8 L476.7,159.7 L477.5,162.8 L477.3,165.1 L475.1,165.9 L472.5,168.9 L472.0,163.9 Z",IN,18091 910,18127,0.49,0.51,Porter,"M471.7,160.8 L472.0,163.9 L472.5,168.9 L469.9,168.3 L468.9,169.2 L468.6,166.0 L468.2,162.7 L470.5,161.6 Z",IN,18127 911,42061,0.56,0.94,Huntingdon,"M589.8,171.1 L588.8,170.6 L586.0,170.1 L584.5,169.4 L584.0,168.2 L585.0,164.9 L584.4,160.6 L586.7,161.0 L589.8,159.7 L588.0,165.7 L590.1,165.6 L590.5,166.3 L591.1,167.4 L590.3,169.2 Z",PA,42061 912,51141,0.45,0.48,Patrick,"M571.8,230.2 L571.1,230.6 L572.4,234.4 L569.2,234.9 L567.2,235.1 L566.4,235.2 L564.9,235.4 L565.0,233.6 L566.4,232.6 L567.2,230.9 L569.0,229.4 L571.3,229.5 Z",VA,51141 913,26119,0.50,0.50,Montmorency,"M502.0,98.4 L502.2,101.3 L502.6,104.2 L498.8,104.7 L496.9,105.0 L496.5,101.4 L496.2,99.2 L496.7,99.2 L497.6,99.0 L500.3,98.7 Z",MI,26119 914,26135,0.50,0.50,Oscoda,"M496.9,105.0 L498.8,104.7 L502.6,104.2 L503.0,106.9 L503.4,110.0 L498.6,110.7 L497.7,110.8 L497.1,106.9 Z",MI,26135 915,35007,0.49,0.49,Colfax,"M234.4,239.4 L235.2,239.4 L235.2,239.5 L246.1,240.5 L250.6,240.9 L249.9,248.0 L249.4,253.9 L246.1,253.6 L243.6,253.3 L237.9,252.1 L231.5,251.4 L231.8,244.4 Z",NM,35007 916,17133,0.32,0.56,Monroe,"M433.4,217.7 L436.6,221.1 L438.5,222.4 L436.8,224.0 L434.6,224.9 L434.1,224.5 L433.9,224.3 L432.4,222.8 L432.5,220.0 L433.1,219.2 Z",IL,17133 917,17163,0.49,0.52,St. Clair,"M438.5,222.4 L436.6,221.1 L433.4,217.7 L433.4,217.6 L433.4,217.5 L434.2,216.4 L434.3,215.3 L437.6,215.2 L440.5,215.0 L440.6,216.7 L440.8,219.0 L441.0,221.2 L441.1,222.3 L439.8,222.4 Z",IL,17163 918,17189,0.49,0.49,Washington,"M441.1,222.3 L441.0,221.2 L440.8,219.0 L445.2,217.0 L448.1,217.0 L448.1,217.3 L448.1,217.5 L448.2,219.5 L448.4,221.9 L446.0,222.0 L442.5,222.2 L442.0,222.2 Z",IL,17189 919,42009,0.46,0.51,Bedford,"M584.0,168.2 L584.5,169.4 L586.0,170.1 L585.0,176.1 L584.3,178.0 L582.9,178.3 L578.9,179.0 L578.4,173.4 L579.2,170.1 L579.2,169.0 L579.4,168.6 L579.4,168.6 L581.8,169.6 Z",PA,42009 920,42013,0.56,0.48,Blair,"M579.4,168.6 L579.8,165.5 L581.5,161.4 L581.5,161.4 L581.3,161.3 L584.2,160.6 L584.4,160.6 L585.0,164.9 L584.0,168.2 L581.8,169.6 L579.4,168.6 Z",PA,42013 921,05083,0.85,0.21,Logan,"M389.4,272.4 L393.2,271.5 L395.1,273.0 L395.3,273.2 L395.4,273.2 L395.4,274.9 L389.6,276.4 L389.6,278.3 L384.5,278.3 L383.6,277.1 L385.1,276.4 L385.1,275.2 L388.1,273.5 L389.4,272.4 Z",AR,5083 922,05047,0.50,0.50,Franklin,"M389.4,272.4 L388.1,273.5 L385.1,275.2 L384.4,275.2 L384.4,271.3 L385.5,267.7 L386.5,266.0 L386.5,265.8 L389.4,265.8 L389.4,269.2 L389.4,272.4 Z",AR,5047 923,05127,0.05,0.45,Scott,"M383.6,277.1 L384.5,278.3 L389.6,278.3 L389.7,280.1 L389.7,282.9 L387.5,283.5 L386.7,284.4 L381.3,283.9 L379.4,283.4 L379.4,281.7 L379.4,280.0 L382.4,279.4 Z",AR,5127 924,37003,0.53,0.54,Alexander,"M557.3,249.6 L556.9,247.5 L556.9,246.3 L558.6,245.3 L560.7,244.8 L561.3,246.2 L560.4,249.4 L559.8,248.7 Z",NC,37003 925,50025,0.47,0.50,Windham,"M644.2,105.1 L644.3,110.4 L646.0,112.1 L641.8,113.1 L640.3,113.4 L637.9,107.4 L639.5,104.7 L641.2,104.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,104.5 Z M644.1,103.8 L644.1,103.8 L644.1,103.8 Z",VT,50025 926,33019,0.50,0.47,Sullivan,"M644.1,103.8 L644.1,103.8 L644.1,103.8 Z M649.3,104.3 L647.7,103.8 L644.2,105.1 L644.1,104.5 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.0,103.4 L644.0,103.3 L644.3,102.4 L644.0,102.1 L644.0,102.0 L644.1,101.7 L643.8,101.7 L643.4,99.2 L643.8,97.5 L647.1,97.6 L648.8,97.5 L647.8,101.3 L649.4,103.2 L649.3,103.7 Z",NH,33019 927,50027,0.48,0.50,Windsor,"M644.1,103.8 L641.2,104.8 L639.5,104.7 L639.3,104.0 L638.7,104.1 L639.1,97.4 L635.4,95.8 L634.9,95.0 L636.8,93.1 L637.0,93.6 L644.5,94.4 L643.7,95.9 L643.8,97.5 L643.4,99.2 L644.0,103.3 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 L644.1,103.8 Z",VT,50027 928,33013,0.08,0.42,Merrimack,"M653.6,102.7 L649.4,103.2 L647.8,101.3 L648.8,97.5 L649.4,95.8 L651.1,96.2 L653.5,97.4 L658.1,99.1 L658.1,99.2 L658.0,99.3 L657.3,103.6 L657.5,104.1 L657.5,104.1 L657.5,104.1 Z",NH,33013 929,27089,0.50,0.50,Marshall,"M345.0,57.7 L345.1,57.5 L345.0,57.3 L345.3,55.1 L344.9,51.4 L344.9,51.4 L344.8,51.4 L347.7,51.4 L353.6,51.4 L353.6,51.4 L357.9,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L362.6,54.5 L362.6,57.8 L356.7,57.8 L352.3,57.7 L352.3,57.7 L346.8,57.7 Z",MN,27089 930,27113,0.05,0.46,Pennington,"M356.7,57.8 L362.6,57.8 L362.6,60.3 L362.7,60.3 L362.7,60.9 L362.7,61.8 L362.5,61.8 L361.3,61.8 L361.3,61.3 L352.5,61.3 L352.3,60.3 L352.3,57.7 L352.3,57.7 Z",MN,27113 931,51101,0.48,0.70,King William,"M605.8,204.9 L608.3,207.3 L612.2,209.7 L612.1,209.8 L612.1,209.9 L609.6,209.6 L607.5,209.1 L605.0,208.1 L604.0,207.0 L605.0,205.3 Z",VA,51101 932,08055,0.19,0.15,Huerfano,"M232.5,226.5 L233.1,224.8 L232.6,224.0 L236.8,222.4 L238.2,224.3 L243.5,225.0 L247.2,226.8 L241.3,233.1 L235.7,234.5 L235.9,229.0 L231.8,229.3 L231.7,228.9 Z",CO,8055 933,48255,0.62,0.58,Karnes,"M326.6,383.4 L325.6,382.1 L325.3,381.8 L326.9,380.5 L332.3,376.2 L333.7,377.8 L334.0,378.1 L331.8,379.8 L334.4,383.1 L332.4,384.7 L331.4,385.5 L329.3,384.6 L328.0,385.1 L327.2,384.2 Z",TX,48255 934,48123,0.81,0.27,DeWitt,"M334.4,383.1 L331.8,379.8 L334.0,378.1 L335.8,376.6 L339.6,373.5 L341.5,375.8 L343.4,378.3 L342.6,379.0 L338.5,382.3 L336.8,381.3 Z",TX,48123 935,49029,0.41,0.42,Morgan,"M164.2,156.1 L166.3,158.9 L165.6,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L161.0,161.8 L159.9,164.9 L159.7,164.0 L158.8,163.6 L158.1,161.9 L158.2,158.8 L162.9,158.1 Z",UT,49029 936,49011,0.50,0.52,Davis,"M158.2,158.8 L158.1,161.9 L158.8,163.6 L155.6,162.0 L152.0,163.9 L151.5,162.6 L150.0,158.4 L154.0,157.8 Z",UT,49011 937,48397,0.50,0.50,Rockwall,"M350.7,312.9 L351.4,312.9 L353.8,313.0 L353.8,314.2 L353.8,315.3 L353.8,315.8 L350.6,315.8 L350.6,314.9 L350.7,312.9 Z",TX,48397 938,48113,0.50,0.50,Dallas,"M350.7,312.9 L350.6,314.9 L350.6,315.8 L350.5,320.3 L350.4,320.3 L345.5,320.2 L343.2,320.2 L343.3,314.6 L343.4,312.7 L344.4,312.8 L346.0,312.8 L347.5,312.8 L350.7,312.9 Z",TX,48113 939,48257,0.50,0.50,Kaufman,"M350.6,315.8 L353.8,315.8 L353.8,315.3 L354.6,315.3 L356.9,315.4 L356.9,320.9 L356.9,323.5 L354.4,323.4 L351.5,323.4 L351.8,322.5 L350.4,320.3 L350.5,320.3 Z",TX,48257 940,47087,0.50,0.50,Jackson,"M500.1,249.0 L498.4,250.7 L496.4,250.5 L495.4,249.8 L495.4,247.7 L495.4,246.5 L495.4,246.2 L496.9,245.7 L499.9,247.3 L499.9,247.9 Z",TN,47087 941,17159,0.47,0.52,Richland,"M463.3,209.9 L463.5,209.9 L463.8,209.9 L464.1,214.5 L464.1,214.6 L464.1,214.6 L463.6,214.6 L462.6,214.7 L461.0,214.8 L461.0,214.8 L461.0,214.8 L461.0,214.4 L459.6,214.5 L459.0,213.9 L459.2,210.3 L460.6,210.2 Z",IL,17159 942,17047,0.57,0.50,Edwards,"M462.6,214.7 L463.6,214.6 L463.5,217.5 L463.5,219.8 L463.1,219.9 L461.4,220.1 L461.4,220.1 L461.4,220.1 L461.2,217.3 L461.0,214.8 L461.0,214.8 L461.0,214.8 Z",IL,17047 943,17191,0.50,0.49,Wayne,"M461.0,214.8 L461.2,217.3 L461.4,220.1 L461.4,220.1 L461.4,220.1 L460.1,220.2 L458.6,220.3 L458.6,220.3 L458.6,220.3 L458.6,220.3 L457.2,220.4 L454.2,220.7 L454.2,220.7 L454.1,219.2 L453.9,217.0 L453.9,216.6 L453.8,214.8 L455.3,214.7 L459.6,214.5 L461.0,214.4 L461.0,214.8 L461.0,214.8 Z",IL,17191 944,17185,0.50,0.50,Wabash,"M463.6,214.6 L464.1,214.6 L464.1,214.6 L466.4,214.4 L467.5,214.3 L466.4,215.9 L466.6,217.0 L465.4,219.4 L463.6,219.9 L463.6,219.9 L463.5,219.8 L463.5,217.5 Z",IL,17185 945,01009,0.94,0.26,Blount,"M490.8,284.5 L491.5,285.4 L493.1,287.0 L492.9,288.9 L493.1,289.7 L492.2,291.5 L489.9,292.9 L487.2,291.9 L484.6,292.6 L484.5,292.2 L484.4,291.9 L486.6,290.1 Z",AL,1009 946,30051,0.58,0.19,Liberty,"M183.6,43.6 L183.8,42.7 L183.9,42.2 L185.4,42.4 L187.6,29.5 L193.4,30.4 L193.1,31.8 L191.2,43.4 L190.1,44.7 Z",MT,30051 947,48311,0.51,0.50,McMullen,"M316.0,385.5 L323.0,385.7 L323.0,386.3 L323.0,388.2 L322.8,395.7 L319.3,395.6 L315.7,395.5 L315.8,392.3 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 Z",TX,48311 948,48131,0.50,0.50,Duval,"M315.7,395.5 L319.3,395.6 L322.8,395.7 L324.0,395.8 L324.3,395.8 L324.1,405.5 L324.0,409.3 L322.0,409.2 L319.5,409.1 L319.5,409.1 L319.5,409.1 L319.6,407.8 L315.4,407.5 L315.5,400.8 Z",TX,48131 949,48247,0.51,0.50,Jim Hogg,"M319.5,409.1 L321.1,412.8 L320.9,417.4 L320.9,417.4 L319.3,417.4 L312.7,417.1 L312.8,413.4 L313.0,408.9 L315.4,409.0 L315.4,407.5 L319.6,407.8 L319.5,409.1 L319.5,409.1 Z",TX,48247 950,48215,0.50,0.87,Hidalgo,"M322.4,417.4 L325.8,417.5 L327.6,417.6 L327.5,420.4 L327.9,420.5 L327.1,423.3 L329.3,425.0 L329.3,425.6 L329.2,429.8 L323.6,429.5 L318.1,426.2 L321.2,420.1 Z",TX,48215 951,48047,0.49,0.50,Brooks,"M327.6,417.6 L325.8,417.5 L322.4,417.4 L321.5,417.4 L320.9,417.4 L320.9,417.4 L321.1,412.8 L319.5,409.1 L319.5,409.1 L322.0,409.2 L324.0,409.3 L325.4,409.3 L326.6,409.4 L327.7,409.4 L327.7,410.3 L327.6,415.2 Z",TX,48047 952,29163,0.46,0.45,Pike,"M417.3,205.3 L416.9,203.1 L420.4,200.4 L422.3,202.8 L423.7,203.6 L425.6,205.0 L426.7,206.3 L420.7,206.6 L419.7,208.1 L418.5,208.2 L417.8,208.2 L417.4,206.2 Z",MO,29163 953,29173,0.51,0.50,Ralls,"M420.4,200.4 L416.9,203.1 L417.3,205.3 L413.6,205.3 L413.6,205.1 L413.5,200.7 L413.4,199.8 L413.4,199.3 L418.7,199.1 L419.8,200.1 Z",MO,29173 954,48251,0.50,0.51,Johnson,"M334.9,319.9 L335.4,319.9 L335.9,319.9 L337.2,320.0 L342.5,320.1 L342.5,323.0 L342.4,324.9 L336.8,326.2 L336.8,326.4 L336.3,327.0 L334.9,325.8 L334.9,325.0 L334.9,323.9 L334.9,321.3 Z",TX,48251 955,41023,0.51,0.53,Grant,"M78.2,74.9 L81.2,75.7 L84.1,76.4 L87.3,77.2 L91.5,78.3 L93.3,78.8 L94.6,79.7 L92.3,85.6 L88.7,90.5 L91.8,91.2 L91.7,92.0 L91.0,94.8 L84.1,92.9 L83.8,94.3 L73.9,91.8 L75.0,87.6 L75.4,86.1 L77.7,77.7 Z",OR,41023 956,48159,0.50,0.50,Franklin,"M367.7,306.3 L367.7,306.3 L367.8,306.3 L368.5,306.4 L370.3,306.0 L370.3,308.4 L370.4,312.0 L370.1,312.2 L370.0,312.4 L369.7,313.2 L367.8,313.2 L367.8,310.5 Z",TX,48159 957,36113,0.15,0.77,Warren,"M630.0,106.2 L626.2,105.6 L623.0,106.8 L621.0,101.1 L622.8,100.4 L627.7,98.5 L629.9,97.6 L628.8,102.0 Z",NY,36113 958,51157,0.44,0.52,Rappahannock,"M590.1,197.1 L589.5,196.7 L588.4,195.9 L588.3,194.6 L588.7,193.6 L589.8,193.0 L590.3,191.4 L591.8,192.3 L593.4,193.7 L590.9,197.1 Z",VA,51157 959,51113,0.43,0.54,Madison,"M588.4,195.9 L589.5,196.7 L590.1,197.1 L592.3,198.9 L592.6,200.4 L591.2,202.1 L590.2,201.6 L588.1,200.4 L587.4,198.6 L588.1,197.1 Z",VA,51113 960,13057,0.52,0.47,Cherokee,"M516.0,284.7 L515.7,282.2 L515.4,279.1 L516.4,279.5 L520.9,278.9 L520.9,279.3 L521.0,279.7 L521.1,280.9 L521.3,282.2 L520.3,282.3 L519.3,284.3 L518.5,284.4 Z",GA,13057 961,12095,0.86,0.33,Orange,"M572.7,374.3 L571.6,367.2 L575.1,366.4 L574.8,368.9 L581.9,368.2 L583.8,369.8 L584.5,372.3 L580.6,373.0 Z",FL,12095 962,12069,0.42,0.52,Lake,"M575.1,366.4 L571.6,367.2 L572.7,374.3 L572.7,374.3 L570.7,374.6 L569.7,374.8 L568.2,375.0 L567.7,371.1 L566.7,364.7 L571.0,364.0 L570.4,358.7 L575.4,362.9 L575.6,364.7 L574.9,365.9 Z",FL,12069 963,40111,0.50,0.50,Okmulgee,"M361.2,264.7 L361.9,266.9 L361.9,269.8 L360.4,269.8 L358.2,272.8 L356.8,272.8 L355.3,268.4 L355.4,264.7 L357.5,264.7 L358.0,264.7 L360.4,264.7 L360.6,264.7 Z",OK,40111 964,18099,0.49,0.50,Marshall,"M483.1,164.4 L483.6,168.8 L483.4,168.9 L480.6,169.2 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.1,166.2 L478.0,165.0 L477.9,164.3 L483.0,163.7 L483.1,164.3 Z M478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 L478.5,169.4 Z",IN,18099 965,18049,0.51,0.48,Fulton,"M478.5,169.4 L480.6,169.2 L483.4,168.9 L483.5,170.3 L485.3,170.8 L485.3,171.6 L485.3,171.6 L482.5,171.9 L482.7,173.4 L481.8,173.5 L478.9,173.8 L478.6,171.2 L478.5,169.4 L478.5,169.4 Z",IN,18049 966,18169,0.50,0.50,Wabash,"M485.3,171.6 L485.3,171.6 L485.3,170.8 L487.0,170.6 L488.5,170.4 L488.6,171.1 L489.1,171.1 L489.5,173.6 L489.9,176.9 L488.1,177.1 L487.0,177.2 L486.1,177.3 Z",IN,18169 967,27169,0.02,0.51,Winona,"M409.9,129.6 L408.1,129.7 L405.7,129.8 L405.5,125.9 L405.5,125.4 L405.4,124.0 L408.1,123.9 L409.9,125.0 L411.8,126.5 L413.4,126.9 L413.5,127.1 L414.4,128.2 L415.3,129.3 L412.7,129.5 Z",MN,27169 968,28149,0.50,0.50,Warren,"M428.2,318.1 L428.5,317.9 L428.6,317.9 L431.3,320.0 L433.1,316.9 L434.1,318.0 L435.6,318.6 L433.7,321.3 L433.4,323.5 L433.1,324.0 L432.5,324.4 L430.4,326.1 L429.2,325.6 L429.2,325.6 L429.2,325.6 L429.2,325.5 L428.7,324.5 L428.8,325.5 L427.3,325.4 L427.7,324.1 L430.6,321.7 Z",MS,28149 969,28021,0.55,0.45,Claiborne,"M433.4,323.5 L433.5,325.0 L433.7,326.5 L433.9,329.9 L433.7,330.9 L429.6,329.8 L426.3,329.9 L428.6,327.3 L429.2,325.6 L429.2,325.6 L430.4,326.1 Z",MS,28021 970,22107,0.49,0.50,Tensas,"M429.2,325.5 L429.2,325.6 L429.2,325.6 L429.2,325.6 L428.6,327.3 L426.3,329.9 L425.0,330.3 L425.4,332.0 L424.6,332.0 L424.5,332.3 L424.5,332.0 L422.1,332.1 L421.6,331.3 L421.6,329.9 L422.6,326.3 L422.5,324.5 L424.9,324.3 L427.7,324.1 L427.3,325.4 L428.8,325.5 L429.0,325.5 Z",LA,22107 971,29147,0.50,0.50,Nodaway,"M373.6,193.1 L370.3,193.1 L369.9,190.9 L368.5,190.9 L368.5,187.3 L368.2,185.6 L370.9,185.6 L371.8,185.6 L375.0,185.6 L375.5,185.6 L375.5,187.3 L375.9,188.7 L375.9,190.2 L375.9,193.1 L375.9,193.1 Z",MO,29147 972,29139,0.50,0.50,Montgomery,"M417.8,208.2 L418.5,208.2 L419.7,208.1 L419.8,209.6 L419.8,210.6 L419.9,213.1 L418.0,215.4 L416.4,216.1 L415.1,215.7 L415.1,215.7 L415.0,215.7 L415.0,213.7 L414.9,209.7 L414.9,208.2 Z",MO,29139 973,20099,0.50,0.50,Labette,"M370.3,239.8 L370.4,241.4 L370.4,245.5 L369.2,245.5 L365.9,245.6 L365.1,245.6 L364.4,245.6 L364.4,241.3 L364.4,239.1 L369.6,239.1 L370.2,239.1 L370.3,239.1 Z",KS,20099 974,37131,0.96,0.54,Northampton,"M610.3,233.4 L604.5,229.3 L601.1,229.5 L601.0,229.1 L601.0,228.9 L601.3,228.8 L602.7,228.5 L606.3,227.8 L608.9,227.3 L610.2,227.0 L610.7,226.9 L611.5,227.9 L611.1,231.9 L610.1,232.8 Z",NC,37131 975,37083,0.07,0.39,Halifax,"M601.1,229.5 L604.5,229.3 L610.3,233.4 L611.3,234.3 L610.1,235.1 L610.0,235.3 L609.4,236.4 L607.3,235.3 L604.9,234.8 L602.5,235.5 L600.7,234.8 L601.3,231.6 Z",NC,37083 976,21193,0.56,0.55,Perry,"M524.4,229.8 L524.0,229.4 L523.9,228.6 L526.1,228.2 L529.4,226.6 L529.9,229.3 L531.5,229.9 L531.2,232.9 L530.3,233.3 L530.0,233.1 L529.5,233.1 L526.6,228.9 L524.7,230.1 L524.6,229.8 Z",KY,21193 977,21133,0.43,0.51,Letcher,"M530.3,233.3 L531.2,232.9 L531.5,229.9 L533.7,228.3 L534.9,228.1 L536.3,228.3 L537.3,229.0 L535.3,230.7 L533.8,233.3 L532.7,232.7 Z",KY,21133 978,42035,0.88,0.63,Clinton,"M584.0,153.6 L583.6,153.3 L583.1,152.7 L583.9,150.0 L583.5,148.2 L585.5,147.8 L588.3,147.2 L589.6,149.0 L595.4,152.7 L595.4,153.1 L595.4,153.1 L595.3,153.2 L591.2,155.4 L585.4,151.6 Z",PA,42035 979,40131,0.50,0.50,Rogers,"M365.7,252.3 L367.0,252.3 L367.1,253.7 L365.6,253.7 L365.6,261.0 L363.2,259.6 L361.2,259.6 L360.5,259.6 L360.5,255.2 L360.5,252.3 L360.6,252.3 L363.5,252.3 Z",OK,40131 980,40147,0.50,0.50,Washington,"M360.6,252.3 L360.5,252.3 L360.5,255.2 L359.8,255.2 L358.0,255.2 L358.0,252.4 L358.0,245.6 L358.0,245.6 L358.5,245.6 L359.1,245.6 L360.8,245.6 L360.5,246.5 Z",OK,40147 981,40113,0.83,0.50,Osage,"M358.0,252.4 L358.0,255.2 L358.0,259.6 L354.3,259.6 L348.0,253.1 L344.3,253.7 L345.7,252.2 L343.7,252.3 L347.8,249.2 L347.9,245.5 L348.1,245.5 L350.9,245.6 L350.9,245.6 L350.9,245.6 L353.7,245.6 L358.0,245.6 L358.0,245.6 Z",OK,40113 982,54061,0.55,0.62,Monongalia,"M559.0,184.1 L558.8,183.4 L558.4,182.8 L562.8,182.0 L564.8,181.7 L564.8,181.7 L565.4,181.6 L566.8,181.3 L566.7,183.0 L565.9,186.3 L565.4,186.2 L565.3,186.1 L562.1,184.0 Z",WV,54061 983,54077,0.44,0.54,Preston,"M565.9,186.3 L566.7,183.0 L566.8,181.3 L569.1,180.9 L570.4,180.6 L570.9,183.8 L571.8,189.2 L571.9,189.3 L571.9,189.3 L571.9,189.3 L569.1,188.5 L567.6,189.5 L567.0,188.9 L566.3,188.6 L566.3,188.6 Z",WV,54077 984,54023,0.49,0.49,Grant,"M571.9,189.3 L571.8,189.2 L572.6,188.7 L574.2,186.6 L576.0,186.6 L578.2,187.4 L577.5,191.0 L578.1,193.6 L577.6,194.8 L577.6,194.8 L577.6,194.8 L577.6,194.8 L577.6,194.8 L576.2,194.0 L574.4,192.9 L574.4,192.9 L574.2,192.8 L574.4,189.0 L571.9,189.3 L571.9,189.3 Z",WV,54023 985,54071,0.48,0.50,Pendleton,"M577.6,194.8 L578.2,195.1 L578.7,195.4 L578.1,197.4 L577.4,200.5 L577.0,201.2 L576.5,201.8 L574.2,201.5 L571.6,199.7 L571.9,199.1 L571.7,198.4 L572.3,195.3 L574.4,192.9 L576.2,194.0 L577.6,194.8 L577.6,194.8 Z",WV,54071 986,55135,0.53,0.50,Waupaca,"M443.9,120.8 L440.5,121.1 L439.8,121.1 L439.5,116.9 L439.3,113.8 L446.7,113.2 L446.8,114.7 L445.3,114.8 L445.7,120.7 L444.8,120.7 Z",WI,55135 987,55115,0.88,0.59,Shawano,"M446.8,114.7 L446.7,113.2 L439.3,113.8 L439.1,111.8 L438.9,107.9 L440.2,107.8 L441.7,107.7 L444.9,110.4 L447.9,110.1 L450.7,109.9 L451.1,112.8 L451.1,113.2 L451.2,114.4 L451.2,114.4 L451.2,114.4 L448.8,114.6 Z",WI,55115 988,55087,0.50,0.50,Outagamie,"M451.2,114.4 L451.8,114.4 L452.3,120.1 L451.4,120.2 L449.7,120.3 L448.3,120.4 L445.7,120.7 L445.3,114.8 L446.8,114.7 L448.8,114.6 L451.2,114.4 L451.2,114.4 Z",WI,55087 989,48435,0.13,0.47,Sutton,"M297.6,357.0 L292.0,356.7 L289.1,356.6 L286.3,356.4 L285.2,356.4 L285.5,352.3 L285.6,349.3 L288.7,349.5 L297.9,349.9 L297.7,355.2 Z",TX,48435 990,48137,0.50,0.50,Edwards,"M289.1,356.6 L292.0,356.7 L297.6,357.0 L301.1,357.1 L302.9,357.2 L302.8,359.3 L302.7,360.8 L299.6,360.6 L298.6,368.3 L298.0,368.3 L297.2,368.2 L293.3,368.0 L288.5,367.8 L288.8,361.4 Z",TX,48137 991,48265,0.88,0.56,Kerr,"M315.1,360.2 L314.9,364.4 L314.9,366.2 L311.1,364.2 L304.9,363.7 L303.6,363.7 L302.7,360.8 L302.8,359.3 L302.9,357.2 L303.4,357.2 L309.6,357.5 L309.5,360.1 Z",TX,48265 992,48271,0.50,0.50,Kinney,"M288.6,377.0 L287.2,375.4 L286.9,374.1 L288.3,371.3 L288.5,367.8 L293.3,368.0 L297.2,368.2 L297.0,372.6 L296.8,377.3 L292.8,377.1 Z",TX,48271 993,29153,0.50,0.50,Ozark,"M410.4,252.8 L410.3,252.8 L410.0,252.9 L407.0,253.0 L404.9,253.1 L402.2,253.2 L401.6,253.2 L401.6,250.1 L401.5,248.0 L406.8,247.9 L410.3,247.9 L410.3,248.5 Z",MO,29153 994,48473,0.54,0.51,Waller,"M355.8,362.0 L355.2,361.0 L356.6,359.4 L356.7,359.4 L360.9,359.1 L360.9,361.3 L360.9,361.7 L358.6,360.5 L360.5,366.8 L358.4,367.8 L357.5,367.8 L356.0,364.3 Z",TX,48473 995,01053,0.50,0.50,Escambia,"M479.3,336.6 L480.2,336.8 L482.0,336.1 L491.6,335.1 L492.6,336.2 L492.9,339.4 L493.1,339.5 L492.6,339.5 L491.7,339.6 L486.6,340.1 L486.3,340.1 L484.1,340.3 L479.9,340.7 L479.7,340.8 Z",AL,1053 996,50009,0.38,0.13,Essex,"M642.7,73.3 L643.8,73.0 L647.2,72.0 L646.9,76.6 L648.7,79.1 L646.9,82.7 L646.4,83.2 L646.3,83.9 L644.7,77.9 L643.2,77.3 L643.5,75.4 Z",VT,50009 997,33009,0.50,0.51,Grafton,"M646.3,83.9 L646.4,83.2 L646.9,82.7 L649.8,84.5 L651.8,84.7 L653.8,89.3 L652.5,92.3 L651.4,94.0 L651.1,96.2 L649.4,95.8 L648.8,97.5 L647.1,97.6 L643.8,97.5 L643.7,95.9 L644.5,94.4 L644.6,90.5 L644.8,87.6 L644.8,87.6 L644.8,87.6 L644.7,87.6 L644.7,87.6 L644.7,87.6 L644.7,87.6 L644.7,87.6 L644.7,87.6 L643.9,85.8 Z",NH,33009 998,50017,0.52,0.46,Orange,"M644.6,90.5 L644.5,94.4 L637.0,93.6 L636.8,93.1 L637.0,92.2 L637.1,91.8 L638.3,89.3 L640.7,87.9 L643.1,87.4 L644.7,87.6 L644.7,87.6 L644.7,87.6 L644.8,87.6 L644.8,87.6 Z",VT,50017 999,13137,0.36,0.53,Habersham,"M529.6,276.9 L529.5,276.7 L528.8,275.8 L529.4,274.9 L527.9,270.9 L528.1,270.8 L528.2,270.5 L529.8,271.5 L532.6,271.7 L532.6,272.0 L532.9,272.1 L532.5,272.4 L531.7,275.8 L530.6,275.7 Z",GA,13137 1000,13139,0.53,0.49,Hall,"M528.8,275.8 L529.5,276.7 L529.6,276.9 L529.0,278.1 L529.9,279.2 L529.2,280.1 L527.5,282.3 L527.5,282.3 L527.5,282.3 L527.5,282.3 L526.9,282.9 L524.0,282.1 L525.7,280.0 L525.1,279.2 L524.7,278.4 L524.6,277.8 L525.5,276.8 L526.3,276.1 L527.2,276.0 Z",GA,13139 1001,13157,0.57,0.53,Jackson,"M529.2,280.1 L529.9,279.2 L531.9,279.5 L533.1,280.4 L533.9,281.6 L534.1,282.9 L532.3,284.1 L531.8,284.5 L531.3,283.4 L527.5,282.3 L527.5,282.3 L527.5,282.3 Z",GA,13157 1002,13135,0.58,0.41,Gwinnett,"M527.5,282.3 L527.1,284.4 L528.2,285.6 L527.0,287.1 L526.0,288.3 L525.9,288.5 L525.5,288.9 L521.9,286.6 L521.5,286.0 L522.8,285.2 L523.8,284.1 L523.8,284.1 L523.5,283.3 L524.0,282.1 L526.9,282.9 L527.5,282.3 L527.5,282.3 L527.5,282.3 Z",GA,13135 1003,13279,0.50,0.50,Toombs,"M551.4,309.0 L551.4,309.0 L552.4,309.9 L554.0,309.2 L555.1,311.7 L555.2,316.0 L553.8,315.9 L552.1,315.5 L551.7,315.6 L551.3,315.6 L551.3,311.4 Z",GA,13279 1004,13283,0.50,0.57,Treutlen,"M551.4,309.0 L551.4,309.0 L548.2,310.2 L548.1,310.5 L547.5,310.6 L547.1,310.4 L546.8,310.1 L547.7,306.9 L551.6,307.5 Z",GA,13283 1005,13061,0.55,0.44,Clay,"M518.9,326.0 L519.0,327.2 L519.1,328.0 L516.1,328.6 L515.8,328.1 L515.4,326.4 L514.1,324.1 L514.1,324.0 L513.9,323.9 L514.9,323.8 L516.5,323.6 L517.1,326.2 Z",GA,13061 1006,55125,0.86,0.80,Vilas,"M440.3,89.7 L440.6,89.9 L441.0,90.1 L441.1,91.6 L439.8,93.2 L436.9,93.3 L428.1,94.0 L428.1,93.7 L428.1,92.9 L428.1,92.9 L428.0,92.6 L428.0,92.6 L429.4,92.5 L429.0,87.1 L439.0,89.1 Z",WI,55125 1007,55041,0.49,0.49,Forest,"M439.8,93.2 L441.1,91.6 L441.0,90.1 L442.4,90.9 L444.0,90.9 L444.4,95.8 L447.4,95.5 L447.7,99.7 L447.9,101.3 L446.1,101.5 L444.9,101.5 L442.0,101.8 L440.4,100.4 L440.2,97.1 Z",WI,55041 1008,27007,0.50,0.50,Beltrami,"M373.3,70.6 L371.9,70.6 L367.4,70.6 L366.8,60.3 L362.7,60.3 L362.6,60.3 L362.6,57.8 L362.6,54.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L362.5,51.5 L363.7,51.5 L365.4,51.5 L366.9,54.4 L375.8,54.3 L375.8,54.3 L376.0,60.2 L376.0,63.2 L376.2,67.6 L376.2,70.0 L376.2,70.5 Z",MN,27007 1009,27077,0.48,0.22,Lake of the Woods,"M366.9,54.4 L365.4,51.5 L365.4,48.6 L368.2,48.5 L368.2,45.0 L365.6,43.8 L367.5,43.7 L367.4,37.4 L371.1,38.6 L372.5,46.9 L375.7,48.6 L375.7,51.9 L375.8,54.3 L375.8,54.3 Z",MN,27077 1010,24009,0.51,0.50,Calvert,"M610.1,192.9 L610.1,192.9 L610.1,192.9 L610.1,192.9 Z M609.9,192.1 L609.9,192.2 L610.0,192.6 L610.0,192.4 Z M609.6,191.0 L609.6,191.0 L609.7,191.4 L609.5,191.3 Z M611.4,189.6 L614.2,195.7 L609.6,190.9 L609.2,190.2 L609.2,189.5 L609.2,189.5 L610.2,189.8 Z",MD,24009 1011,35001,0.84,0.58,Bernalillo,"M204.4,266.1 L204.3,265.9 L211.7,266.8 L217.3,267.5 L217.3,267.5 L217.3,268.3 L217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 L218.0,273.4 L214.4,273.0 L206.0,272.0 L205.6,270.5 L205.6,270.5 Z",NM,35001 1012,35006,0.35,0.43,Cibola,"M204.4,266.1 L205.6,270.5 L205.6,270.5 L203.7,270.3 L202.9,276.6 L197.5,275.9 L195.7,275.7 L186.9,274.5 L177.6,273.2 L178.1,269.5 L178.5,266.8 L186.4,268.0 L187.2,262.2 L203.0,264.3 L203.0,264.3 L203.0,264.3 L203.9,264.4 L204.3,265.9 Z",NM,35006 1013,35045,0.50,0.51,San Juan,"M200.1,252.2 L193.9,251.3 L181.0,249.5 L181.9,243.4 L183.4,233.0 L186.8,233.5 L192.2,234.3 L197.3,234.9 L204.2,235.8 L205.0,235.9 L205.0,235.9 L202.0,238.8 L200.6,248.6 L200.4,250.4 L200.1,252.2 L200.1,252.2 Z",NM,35045 1014,35049,0.50,0.49,Santa Fe,"M217.4,266.0 L218.3,258.5 L219.5,257.4 L218.5,257.1 L218.5,256.9 L218.5,256.9 L218.5,256.9 L218.6,256.2 L218.7,255.6 L221.2,254.7 L225.9,255.6 L225.7,257.3 L225.7,257.4 L224.7,266.8 L224.3,271.2 L222.1,271.0 L217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 L217.3,268.3 L217.3,267.5 L217.3,267.5 Z M217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 Z",NM,35049 1015,35028,0.63,0.57,Los Alamos,"M218.1,256.8 L218.5,257.1 L219.5,257.4 L218.3,258.5 L216.3,257.4 L218.7,255.0 L218.7,255.1 L218.7,255.6 L218.6,256.2 L218.5,256.9 L218.5,256.9 Z",NM,35028 1016,35057,0.49,0.49,Torrance,"M217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 L222.1,271.0 L224.3,271.2 L227.4,271.5 L230.1,271.8 L229.3,279.1 L228.6,283.4 L228.4,284.8 L220.0,283.9 L220.0,283.9 L213.2,283.2 L213.5,280.2 L212.9,278.7 L214.4,273.0 L218.0,273.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 L217.0,270.4 Z",NM,35057 1017,34005,0.91,0.97,Burlington,"M630.3,167.9 L628.0,167.3 L625.4,164.5 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.6,164.0 L625.7,163.9 L626.1,163.4 L627.4,162.4 L628.9,161.0 L629.0,160.4 L630.6,160.8 L630.8,161.0 L631.3,161.6 L634.5,166.1 L635.0,169.7 L631.8,169.3 Z M625.3,164.3 L625.6,164.0 L625.6,164.0 L625.6,164.0 Z M625.6,164.0 L625.6,164.0 L625.6,164.0 Z M625.6,164.0 L625.6,164.0 L625.6,164.0 Z",NJ,34005 1018,13099,0.50,0.48,Early,"M515.8,328.1 L516.1,328.6 L519.1,328.0 L519.6,329.0 L521.8,328.8 L522.0,330.5 L522.1,331.7 L518.2,332.2 L518.5,335.3 L517.9,335.4 L516.9,335.5 L515.7,334.1 L515.6,331.7 L515.4,330.7 Z",GA,13099 1019,38083,0.51,0.50,Sheridan,"M310.6,71.0 L306.5,70.8 L304.2,70.7 L304.5,64.9 L305.6,62.0 L308.0,62.1 L310.0,62.2 L310.3,62.2 L311.5,62.3 L311.8,65.2 L311.5,71.1 L310.8,71.1 Z",ND,38083 1020,38049,0.50,0.50,McHenry,"M310.0,62.2 L308.0,62.1 L305.6,62.0 L305.2,61.9 L301.2,61.7 L301.2,52.8 L300.8,51.3 L300.8,51.1 L300.9,49.8 L301.0,48.4 L308.3,48.8 L309.7,50.3 L309.7,50.3 L310.0,53.3 Z",ND,38049 1021,38045,0.11,0.47,LaMoure,"M322.4,89.2 L322.5,85.9 L322.6,83.3 L326.9,83.4 L329.6,83.5 L332.1,83.6 L334.3,83.6 L334.2,88.1 L334.1,89.5 L329.7,89.4 L322.8,89.2 L322.7,89.2 Z",ND,38045 1022,16023,0.39,0.75,Butte,"M156.4,110.2 L155.8,113.0 L155.3,115.9 L153.3,118.5 L150.5,120.8 L143.2,118.0 L141.9,114.3 L147.8,111.3 L148.6,104.2 L149.7,104.4 L150.6,104.6 L153.6,105.2 L152.8,109.5 Z",ID,16023 1023,38043,0.50,0.50,Kidder,"M317.8,83.1 L314.9,83.0 L312.4,82.9 L311.6,82.9 L310.5,82.8 L310.8,76.9 L310.6,71.0 L310.6,71.0 L310.8,71.1 L311.5,71.1 L315.0,71.2 L317.9,71.3 L318.1,77.2 Z",ND,38043 1024,38103,0.49,0.50,Wells,"M317.9,71.3 L315.0,71.2 L311.5,71.1 L311.8,65.2 L311.5,62.3 L312.8,62.3 L314.4,62.4 L317.3,62.5 L320.3,62.6 L320.2,65.6 L320.5,67.0 L320.4,69.2 L320.4,71.4 L319.7,71.4 Z",ND,38103 1025,48273,0.44,0.51,Kleberg,"M336.9,409.3 L337.1,408.1 L338.8,404.2 L339.1,404.1 L339.5,404.3 L337.9,407.9 L337.5,409.3 L337.1,409.3 Z M331.6,409.4 L331.5,409.3 L331.5,409.3 L331.8,409.4 Z M327.7,410.3 L327.7,409.4 L326.6,409.4 L326.7,403.0 L328.5,403.0 L330.0,404.4 L337.9,404.5 L335.4,407.2 L331.1,409.1 L329.9,409.7 Z",TX,48273 1026,48489,0.39,0.50,Willacy,"M327.9,420.5 L329.4,420.8 L335.8,420.8 L335.7,423.9 L336.3,424.6 L334.4,426.0 L329.3,425.0 L327.1,423.3 Z M338.7,424.1 L338.6,423.1 L337.8,420.9 L337.9,420.9 L338.2,420.9 L338.9,423.5 L339.1,424.1 L338.9,424.1 Z",TX,48489 1027,17055,0.48,0.50,Franklin,"M454.3,222.9 L454.5,224.9 L454.6,226.5 L454.6,226.8 L454.7,227.2 L451.5,227.5 L448.8,227.7 L448.7,226.2 L448.3,226.3 L449.0,224.3 L448.7,223.3 L452.4,223.0 Z",IL,17055 1028,17065,0.50,0.50,Hamilton,"M454.6,226.5 L454.5,224.9 L454.3,222.9 L454.2,221.4 L454.2,220.7 L454.2,220.7 L457.2,220.4 L458.6,220.3 L458.6,220.3 L458.6,220.3 L458.8,224.2 L459.0,226.1 L459.0,226.1 L456.9,226.3 Z",IL,17065 1029,17081,0.50,0.50,Jefferson,"M454.2,221.4 L454.3,222.9 L452.4,223.0 L448.7,223.3 L448.5,223.3 L448.4,221.9 L448.4,221.9 L448.2,219.5 L448.1,217.5 L451.0,217.2 L453.9,217.0 L454.1,219.2 L454.2,220.7 L454.2,220.7 Z",IL,17081 1030,05051,0.50,0.50,Garland,"M395.5,282.3 L395.8,282.3 L398.5,282.2 L399.8,284.5 L402.5,286.6 L400.4,288.6 L394.0,288.7 L394.0,283.8 L394.1,282.9 L394.0,282.4 Z",AR,5051 1031,05105,0.95,0.41,Perry,"M398.5,282.2 L395.8,282.3 L395.5,282.3 L395.5,280.8 L398.8,277.1 L403.2,277.1 L405.4,276.3 L405.4,276.3 L405.0,278.0 L405.7,278.9 L402.8,279.8 L403.0,280.7 L398.4,280.8 Z",AR,5105 1032,05029,0.50,0.50,Conway,"M403.2,277.1 L398.8,277.1 L399.6,276.4 L400.7,275.5 L401.3,275.4 L401.2,270.6 L406.2,270.5 L406.3,272.0 L406.3,273.4 L405.4,276.3 L405.4,276.3 Z",AR,5029 1033,05149,0.11,0.88,Yell,"M400.7,275.5 L399.6,276.4 L398.8,277.1 L395.5,280.8 L395.5,282.3 L394.0,282.4 L394.1,282.9 L391.6,282.9 L389.7,282.9 L389.7,280.1 L389.6,278.3 L389.6,276.4 L395.4,274.9 L395.4,273.2 L398.1,276.3 Z",AR,5149 1034,20181,0.50,0.50,Sherman,"M286.6,207.7 L282.0,207.4 L279.2,207.2 L279.4,203.2 L279.7,200.0 L284.5,200.3 L287.9,200.5 L288.0,200.5 L288.2,200.5 L287.9,204.7 L287.7,207.7 L287.2,207.7 Z",KS,20181 1035,20023,0.50,0.50,Cheyenne,"M287.9,200.5 L284.5,200.3 L279.7,200.0 L279.7,199.9 L279.9,195.4 L280.1,192.7 L284.7,193.0 L288.3,193.2 L288.3,193.2 L288.2,196.1 Z",KS,20023 1036,20153,0.50,0.50,Rawlins,"M288.2,200.5 L288.0,200.5 L287.9,200.5 L288.2,196.1 L288.3,193.2 L288.4,193.2 L289.4,193.3 L294.4,193.6 L296.7,193.7 L296.8,193.7 L297.0,193.7 L296.8,196.6 L296.6,201.0 L295.2,200.9 Z",KS,20153 1037,19185,0.50,0.50,Wayne,"M389.2,185.2 L389.1,182.1 L389.0,179.9 L390.0,179.9 L394.9,179.7 L394.9,181.3 L395.0,185.0 L393.0,185.1 L391.5,185.1 L390.7,185.2 Z",IA,19185 1038,48165,0.87,0.54,Gaines,"M269.6,317.7 L269.6,317.7 L269.5,317.6 L258.3,316.8 L257.4,316.8 L257.7,312.9 L257.9,309.4 L261.8,309.8 L264.6,310.0 L267.6,310.2 L270.0,310.3 L269.9,312.3 Z",TX,48165 1039,48317,0.50,0.50,Martin,"M269.5,317.6 L269.6,317.7 L269.6,317.7 L274.3,317.9 L276.9,318.1 L276.9,318.6 L276.4,325.4 L275.6,325.4 L275.2,325.4 L271.5,325.1 L269.0,325.0 L269.2,322.3 Z",TX,48317 1040,05091,0.51,0.50,Miller,"M385.6,307.8 L385.5,304.2 L385.5,303.1 L386.4,303.3 L388.5,302.0 L389.3,303.9 L390.0,304.1 L390.4,308.1 L389.1,312.0 L389.0,312.0 L388.9,312.0 L387.4,312.0 L385.7,312.0 L385.7,310.0 L385.6,307.8 L385.6,307.8 L385.6,307.8 L385.6,307.8 Z M385.6,307.8 L385.6,307.8 L385.6,307.8 Z",AR,5091 1041,05073,0.49,0.51,Lafayette,"M390.4,308.1 L390.0,304.1 L391.4,304.2 L393.4,304.2 L393.4,304.6 L395.1,304.6 L393.5,307.8 L393.5,311.9 L393.5,311.9 L393.4,311.9 L393.1,311.9 L393.1,311.9 L391.6,311.9 L389.1,312.0 L389.0,312.0 L388.3,310.7 Z",AR,5073 1042,48037,0.03,0.48,Bowie,"M385.5,303.1 L385.5,304.2 L385.6,307.8 L385.6,307.8 L385.6,307.8 L383.0,308.3 L377.0,308.0 L376.4,307.3 L375.7,307.0 L375.6,304.0 L375.6,300.7 L378.2,302.0 L379.3,301.8 L380.6,303.3 Z M385.6,307.8 L385.6,307.8 L385.6,307.8 Z",TX,48037 1043,29127,0.50,0.49,Marion,"M416.8,194.8 L416.9,196.5 L417.8,197.9 L417.8,198.4 L418.7,199.1 L413.4,199.3 L413.4,199.8 L413.1,199.8 L411.7,199.8 L411.7,198.8 L411.6,195.0 L411.6,195.0 L411.6,195.0 L411.6,195.0 L416.0,194.8 Z",MO,29127 1044,29111,0.50,0.49,Lewis,"M411.6,195.0 L411.2,195.0 L410.1,195.0 L410.0,190.6 L409.9,189.9 L412.1,189.8 L415.7,189.8 L415.6,190.0 L415.7,190.6 L415.9,193.3 L416.8,194.8 L416.0,194.8 L411.6,195.0 L411.6,195.0 Z",MO,29111 1045,19061,0.50,0.48,Dubuque,"M421.2,149.2 L421.1,148.7 L423.4,149.2 L424.4,151.4 L424.4,151.9 L426.7,153.4 L424.4,154.9 L421.5,155.1 L420.0,155.2 L418.6,155.3 L418.4,152.3 L418.2,149.4 L418.2,149.4 L418.3,149.4 Z",IA,19061 1046,19097,0.49,0.49,Jackson,"M421.5,155.1 L424.4,154.9 L426.7,153.4 L427.9,155.9 L428.8,156.4 L430.8,157.5 L431.0,158.9 L423.3,159.4 L421.7,159.5 L421.6,157.8 Z",IA,19097 1047,38005,0.50,0.50,Benson,"M329.2,61.7 L329.2,62.2 L329.1,62.9 L328.9,62.9 L320.3,62.6 L317.3,62.5 L314.4,62.4 L314.4,53.5 L318.4,53.6 L319.1,53.7 L321.7,53.8 L321.6,57.4 L323.9,60.3 L326.1,59.2 Z",ND,38005 1048,38063,0.50,0.50,Nelson,"M329.1,62.9 L329.2,62.2 L329.2,61.7 L330.5,57.0 L331.9,57.1 L334.6,57.1 L336.4,57.2 L336.4,57.2 L336.4,57.2 L336.5,60.1 L336.4,66.0 L336.0,66.0 L335.2,66.0 L331.5,65.9 L329.3,65.9 L329.1,65.9 Z",ND,38063 1049,36019,0.40,0.09,Clinton,"M618.1,79.9 L620.5,79.2 L626.0,77.8 L626.9,81.0 L627.6,85.0 L627.7,85.1 L627.9,85.2 L627.9,85.2 L627.9,85.2 L626.3,86.7 L621.7,88.8 L619.7,84.5 Z M627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 Z M627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 Z M627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 Z",NY,36019 1050,36031,0.83,0.42,Essex,"M627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L628.9,87.0 L629.4,89.8 L628.9,93.7 L630.5,97.4 L630.3,97.5 L629.9,97.6 L627.7,98.5 L622.8,100.4 L618.7,98.3 L618.6,94.9 L620.8,94.1 L619.1,89.8 L621.7,88.8 L626.3,86.7 L626.5,85.7 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 Z M627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 Z",NY,36031 1051,39079,0.50,0.48,Jackson,"M533.1,201.7 L532.4,201.8 L532.1,201.8 L532.1,201.8 L530.6,201.9 L529.8,200.5 L529.7,199.0 L529.6,196.8 L529.8,196.7 L529.8,196.1 L529.8,196.1 L534.3,196.6 L534.4,198.3 L534.6,201.5 Z",OH,39079 1052,39163,0.52,0.58,Vinton,"M529.8,196.1 L529.7,195.3 L529.5,193.4 L532.5,192.9 L535.4,192.2 L535.5,193.7 L536.1,195.2 L535.6,195.2 L535.9,198.2 L535.2,198.3 L534.4,198.3 L534.3,196.6 L529.8,196.1 Z",OH,39163 1053,39073,0.48,0.46,Hocking,"M535.4,192.2 L532.5,192.9 L529.5,193.4 L529.4,192.0 L529.4,191.7 L529.4,191.7 L529.4,191.7 L529.4,191.7 L529.4,191.6 L529.3,190.3 L530.6,189.2 L533.6,187.9 L533.7,188.9 L536.6,189.1 L536.8,190.6 Z",OH,39073 1054,39129,0.50,0.52,Pickaway,"M524.8,186.7 L527.5,186.5 L527.5,186.5 L527.9,190.4 L529.3,190.3 L529.4,191.6 L529.4,191.7 L529.4,191.7 L529.4,191.7 L526.2,191.5 L522.5,191.9 L522.5,191.3 L522.3,188.9 L522.2,187.4 L522.1,186.9 Z",OH,39129 1055,39045,0.49,0.49,Fairfield,"M529.3,190.3 L527.9,190.4 L527.5,186.5 L527.8,186.0 L527.7,184.0 L531.7,183.6 L531.8,183.5 L532.9,185.0 L533.6,187.9 L530.6,189.2 Z",OH,39045 1056,01085,0.48,0.47,Lowndes,"M494.9,322.9 L490.6,323.4 L489.0,323.5 L488.9,322.1 L488.2,322.2 L487.9,319.2 L489.0,317.1 L490.3,315.9 L493.5,316.6 L495.0,318.1 L495.3,321.4 L495.5,322.8 Z",AL,1085 1057,19113,0.50,0.50,Linn,"M410.2,163.0 L410.0,160.0 L409.9,155.6 L411.2,155.6 L412.8,155.5 L414.0,155.5 L414.2,155.5 L415.3,155.4 L415.5,155.4 L415.7,155.4 L415.7,155.4 L415.9,160.4 L416.0,161.2 L416.0,162.4 L416.0,162.7 L414.4,162.8 Z",IA,19113 1058,13215,0.52,0.51,Muscogee,"M514.4,311.4 L513.3,310.4 L513.1,309.9 L515.6,310.0 L518.6,309.6 L519.0,309.9 L518.7,310.7 L517.9,312.5 L515.1,313.6 L515.1,312.8 Z",GA,13215 1059,48003,0.87,0.54,Andrews,"M257.4,316.8 L258.3,316.8 L269.5,317.6 L269.2,322.3 L269.0,325.0 L268.4,324.9 L267.9,324.9 L263.9,324.6 L260.6,324.4 L260.6,324.4 L256.8,324.1 L256.8,324.1 L257.0,321.7 Z",TX,48003 1060,48495,0.50,0.48,Winkler,"M256.7,325.5 L256.8,324.1 L260.6,324.4 L260.6,324.4 L260.2,329.6 L260.0,331.7 L260.0,331.7 L252.5,331.1 L252.9,325.2 L252.9,325.2 Z",TX,48495 1061,39149,0.50,0.52,Shelby,"M511.3,180.6 L511.3,181.7 L511.4,182.1 L511.4,182.1 L508.8,182.2 L506.1,182.6 L506.0,181.6 L505.7,180.0 L505.8,180.0 L505.8,180.0 L506.7,177.7 L511.0,177.1 L511.3,180.0 Z",OH,39149 1062,39021,0.50,0.47,Champaign,"M511.4,182.1 L511.3,181.7 L511.3,180.6 L514.2,180.7 L517.3,180.6 L518.0,180.5 L518.1,182.5 L518.2,182.9 L518.2,184.2 L514.7,184.4 L511.5,184.6 L511.5,184.6 L511.5,184.3 L511.5,184.2 L511.4,183.4 L511.4,183.0 L511.4,182.6 L511.4,182.1 Z",OH,39021 1063,39109,0.50,0.52,Miami,"M511.5,184.6 L511.6,186.2 L511.7,187.2 L511.7,187.2 L510.2,186.7 L506.8,187.2 L506.7,186.4 L506.1,182.6 L508.8,182.2 L511.4,182.1 L511.4,182.1 L511.4,182.6 L511.5,184.6 Z",OH,39109 1064,39023,0.52,0.53,Clark,"M511.7,187.2 L511.6,186.2 L511.5,184.6 L511.5,184.6 L514.7,184.4 L518.2,184.2 L517.8,188.3 L517.1,188.3 L514.6,187.8 L511.7,187.7 L511.7,187.5 L511.7,187.2 Z",OH,39023 1065,48117,0.87,0.54,Deaf Smith,"M261.1,272.2 L267.1,272.6 L273.2,273.1 L272.8,278.3 L272.6,280.4 L269.8,280.2 L267.7,280.1 L264.6,279.8 L260.6,279.5 L260.6,278.8 L260.8,276.1 L261.0,273.5 L261.1,272.2 L261.1,272.2 Z",TX,48117 1066,35037,0.50,0.50,Quay,"M261.4,269.1 L261.1,272.2 L261.1,272.2 L261.1,272.2 L261.1,272.2 L261.0,273.5 L260.8,276.1 L251.3,279.7 L250.8,281.1 L250.7,281.1 L247.9,280.9 L247.9,280.9 L245.4,280.7 L245.6,277.7 L245.9,274.8 L246.2,271.7 L250.1,270.0 L253.3,268.1 L256.8,268.3 L257.3,262.6 L260.7,262.9 L261.9,263.0 L261.9,263.0 L261.7,264.9 L261.7,264.9 Z",NM,35037 1067,48359,0.87,0.54,Oldham,"M261.4,269.1 L261.7,264.9 L261.7,264.9 L267.4,265.3 L273.7,265.7 L273.7,265.8 L273.7,265.8 L273.6,267.8 L273.2,273.1 L267.1,272.6 L261.1,272.2 L261.1,272.2 L261.1,272.2 Z",TX,48359 1068,40133,0.48,0.99,Seminole,"M351.9,274.2 L351.2,277.1 L351.2,280.6 L349.0,280.7 L347.3,280.7 L347.3,272.1 L349.4,272.3 L351.9,271.2 Z",OK,40133 1069,45081,0.51,0.50,Saluda,"M559.2,281.9 L558.6,282.7 L558.3,283.1 L555.6,282.7 L552.9,281.5 L553.8,279.4 L554.4,278.3 L556.2,277.1 L560.1,278.4 L559.6,280.3 Z",SC,45081 1070,45003,0.72,0.15,Aiken,"M558.3,283.1 L558.6,282.7 L559.2,281.9 L562.4,283.9 L565.1,284.8 L563.4,287.3 L563.0,287.9 L561.2,290.1 L558.4,293.6 L557.7,293.5 L557.0,293.0 L557.0,293.0 L557.2,292.7 L556.6,292.2 L555.3,291.1 L554.5,289.3 L554.0,288.6 L554.0,288.6 L554.0,288.6 L555.4,286.8 Z M557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 Z",SC,45003 1071,13251,0.53,0.57,Screven,"M559.0,298.4 L560.8,296.6 L561.8,295.6 L563.1,298.2 L564.6,300.3 L564.4,301.1 L565.2,302.8 L563.3,304.5 L563.2,304.9 L561.1,304.3 L558.7,302.9 L558.2,302.4 L559.0,298.4 Z",GA,13251 1072,13033,0.07,0.53,Burke,"M559.0,298.4 L559.0,298.4 L559.0,298.4 L554.6,299.0 L554.0,300.8 L553.0,301.1 L551.5,300.8 L551.3,297.0 L551.1,293.5 L553.7,293.8 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.0,293.0 L557.7,293.5 L558.4,293.6 L559.4,294.8 L560.7,295.0 L560.8,295.2 L561.8,295.6 L560.8,296.6 Z",GA,13033 1073,13165,0.54,0.52,Jenkins,"M559.0,298.4 L558.2,302.4 L558.7,302.9 L557.7,303.4 L556.5,303.9 L555.3,303.2 L554.0,300.8 L554.6,299.0 L559.0,298.4 Z",GA,13165 1074,13245,0.56,0.75,Richmond,"M557.0,293.0 L557.0,293.0 L553.7,293.8 L551.1,293.5 L550.7,293.4 L549.8,293.0 L549.8,292.9 L550.5,292.1 L551.9,290.5 L553.7,288.4 L553.9,288.6 L554.0,288.6 L554.0,288.6 L555.7,290.3 L556.6,292.2 L557.0,293.0 Z",GA,13245 1075,48305,0.50,0.50,Lynn,"M279.7,303.6 L279.5,307.6 L279.3,310.9 L278.4,310.8 L277.4,310.8 L274.8,310.6 L271.9,310.5 L272.0,309.8 L272.4,303.2 L278.7,303.6 Z",TX,48305 1076,48169,0.50,0.51,Garza,"M279.3,310.9 L279.5,307.6 L279.7,303.6 L282.4,303.8 L287.0,304.0 L286.9,306.5 L286.6,311.2 L285.4,311.2 L284.7,311.2 L283.6,311.1 Z",TX,48169 1077,55079,0.49,0.49,Milwaukee,"M457.5,137.4 L457.6,140.2 L459.0,143.2 L457.2,143.3 L455.8,143.4 L455.7,141.9 L455.4,137.6 L456.1,137.5 Z",WI,55079 1078,55089,0.54,0.50,Ozaukee,"M455.1,131.7 L456.8,131.5 L458.0,131.4 L457.2,136.2 L457.5,137.4 L456.1,137.5 L455.4,137.6 L455.4,134.6 L455.1,131.7 Z",WI,55089 1079,45047,0.51,0.51,Greenwood,"M554.4,278.3 L553.8,279.4 L552.9,281.5 L552.8,281.5 L552.4,281.7 L548.8,281.9 L548.3,280.4 L549.0,277.7 L548.5,274.5 L549.8,275.7 L553.2,277.3 L554.0,278.2 Z",SC,45047 1080,45059,0.44,0.51,Laurens,"M547.4,273.7 L547.4,273.4 L547.4,273.4 L547.4,273.4 L547.4,273.4 L548.2,271.6 L548.9,268.1 L550.2,269.3 L553.4,270.6 L555.6,270.9 L556.5,271.2 L555.0,274.3 L553.2,277.3 L549.8,275.7 L548.5,274.5 Z",SC,45059 1081,45045,0.72,0.45,Greenville,"M547.4,273.4 L545.1,271.4 L544.8,269.0 L544.2,268.2 L544.2,268.2 L544.2,268.2 L544.2,268.2 L544.2,268.2 L542.2,264.2 L539.8,264.7 L541.7,263.2 L542.2,263.0 L544.6,261.5 L545.1,261.8 L546.1,261.5 L546.9,261.4 L547.7,267.2 L548.9,268.1 L548.2,271.6 L547.4,273.4 L547.4,273.4 L547.4,273.4 Z M544.2,268.2 L544.2,268.2 L544.2,268.2 Z",SC,45045 1082,45001,0.65,0.57,Abbeville,"M548.5,274.5 L549.0,277.7 L548.3,280.4 L545.5,280.7 L544.7,281.8 L543.3,280.1 L542.2,278.9 L545.4,275.6 L547.4,273.4 L547.4,273.4 L547.4,273.4 L547.4,273.7 Z M547.4,273.4 L547.4,273.4 L547.4,273.4 Z",SC,45001 1083,46019,0.17,0.49,Butte,"M261.8,107.2 L262.0,107.2 L262.3,103.6 L268.9,104.2 L275.2,104.7 L275.2,104.7 L275.0,106.3 L274.9,107.6 L274.3,114.9 L267.1,114.3 L264.0,114.0 L261.2,114.4 L261.6,109.3 L261.8,107.2 Z",SD,46019 1084,56011,0.85,0.53,Crook,"M261.8,107.2 L261.6,109.3 L261.2,114.4 L260.7,119.7 L260.6,120.9 L256.8,120.6 L248.3,119.8 L249.2,109.6 L249.7,106.0 L249.9,106.0 L250.1,106.1 L253.3,106.4 L261.8,107.2 Z",WY,56011 1085,56005,0.13,0.66,Campbell,"M249.7,106.0 L249.2,109.6 L248.3,119.8 L247.2,129.6 L247.1,131.1 L242.7,130.7 L235.7,130.0 L237.0,118.7 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L238.3,107.2 L238.4,104.9 L239.7,105.0 Z",WY,56005 1086,30011,0.88,0.52,Carter,"M253.3,106.4 L250.1,106.1 L251.3,100.2 L252.1,92.9 L253.2,87.1 L253.8,87.2 L258.1,87.6 L259.3,90.5 L263.3,92.4 L263.3,92.4 L262.6,100.9 L262.3,103.6 L262.0,107.2 L261.8,107.2 L261.8,107.2 L261.8,107.2 Z",MT,30011 1087,30025,0.92,0.52,Fallon,"M259.3,90.5 L258.1,87.6 L253.8,87.2 L254.1,81.3 L256.4,79.3 L256.4,78.6 L257.9,78.2 L260.8,79.3 L264.4,79.6 L264.3,80.1 L264.2,81.3 L264.1,83.3 L263.8,85.7 L263.6,88.3 L263.3,91.3 L263.3,91.8 L263.3,92.4 L263.3,92.4 Z",MT,30025 1088,25013,0.09,0.59,Hampden,"M651.0,119.2 L652.4,120.2 L652.9,122.4 L650.9,122.9 L648.4,123.5 L644.7,124.4 L642.3,125.0 L642.1,125.1 L641.8,125.1 L641.6,123.4 L641.3,120.6 L645.6,121.7 L651.0,119.2 L651.0,119.2 Z",MA,25013 1089,25015,0.03,0.43,Hampshire,"M651.0,119.2 L645.6,121.7 L641.3,120.6 L640.9,119.5 L640.6,116.5 L644.5,118.1 L649.4,117.9 L650.1,118.4 L650.8,118.4 L651.0,118.4 L651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 Z M651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 L651.0,119.2 Z",MA,25015 1090,48055,0.48,0.55,Caldwell,"M338.6,366.7 L338.5,366.7 L338.5,366.7 L334.3,369.3 L333.8,368.9 L332.5,368.4 L330.7,365.6 L330.3,365.3 L330.3,365.3 L330.1,364.9 L332.8,362.6 L333.6,361.8 L333.7,361.9 L337.1,365.3 Z",TX,48055 1091,48209,0.38,0.51,Hays,"M328.5,367.1 L328.0,365.5 L324.2,362.2 L325.4,358.9 L326.1,356.8 L328.8,359.1 L332.8,362.6 L330.1,364.9 L330.3,365.3 L329.3,366.2 Z",TX,48209 1092,01111,0.49,0.49,Randolph,"M508.2,295.7 L508.4,296.4 L508.5,296.6 L508.8,297.9 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.8 L510.0,301.8 L506.9,302.2 L504.9,302.4 L504.4,302.5 L504.0,302.5 L503.8,300.8 L503.4,296.0 L507.5,295.6 Z",AL,1111 1093,01027,0.46,0.51,Clay,"M503.4,296.0 L503.8,300.8 L504.0,302.5 L499.5,303.1 L499.1,303.4 L499.0,303.1 L496.7,303.4 L499.1,299.9 L500.5,296.3 L501.7,296.2 Z",AL,1027 1094,01037,0.49,0.52,Coosa,"M496.7,303.4 L499.0,303.1 L499.1,303.4 L499.6,307.8 L499.7,309.0 L495.3,309.5 L494.5,309.6 L493.3,308.7 L492.0,305.3 L492.0,304.2 L492.3,303.9 L493.6,303.7 Z",AL,1037 1095,21095,0.48,0.43,Harlan,"M529.5,233.1 L530.0,233.1 L530.3,233.3 L532.7,232.7 L533.8,233.3 L534.0,234.0 L533.8,234.6 L530.8,237.6 L526.6,239.5 L525.6,237.3 L525.7,235.8 L528.6,234.1 Z",KY,21095 1096,20161,0.50,0.50,Riley,"M351.4,211.3 L346.9,210.6 L345.5,208.3 L345.5,204.7 L345.6,202.5 L346.5,202.6 L347.5,202.6 L349.5,202.6 L350.4,202.6 L348.5,205.3 L352.9,209.2 L352.9,211.4 Z",KS,20161 1097,20061,0.50,0.50,Geary,"M345.5,208.3 L346.9,210.6 L351.4,211.3 L351.4,212.5 L351.4,214.2 L348.8,214.2 L346.3,214.2 L345.4,212.6 L345.4,209.8 L345.4,209.8 Z",KS,20061 1098,47163,0.51,0.57,Sullivan,"M542.4,238.4 L542.8,238.3 L543.0,238.3 L543.4,238.2 L544.3,238.1 L547.2,237.7 L548.5,237.1 L547.3,238.1 L546.7,239.2 L544.3,241.4 L542.8,241.7 L540.8,241.2 L537.6,241.9 L538.3,240.3 L538.2,239.1 L540.1,238.8 Z",TN,47163 1099,47019,0.56,0.59,Carter,"M542.8,241.7 L544.3,241.4 L546.7,239.2 L546.1,241.7 L548.0,243.1 L547.1,245.7 L546.5,246.1 L545.4,245.5 L544.4,245.5 L543.8,244.3 L542.6,244.2 L542.8,242.1 Z",TN,47019 1100,51111,0.50,0.50,Lunenburg,"M592.0,224.8 L592.0,223.0 L592.0,221.6 L593.1,220.9 L594.6,220.4 L597.0,221.7 L598.0,221.3 L598.4,224.4 L598.5,225.4 L595.6,225.5 Z",VA,51111 1101,51037,0.61,0.44,Charlotte,"M592.0,221.6 L592.0,223.0 L592.0,224.8 L591.9,225.1 L590.5,228.4 L589.7,225.8 L586.1,223.7 L586.3,222.5 L586.6,220.5 L587.7,220.0 L588.4,219.4 L588.4,220.1 Z",VA,51037 1102,47179,0.62,0.40,Washington,"M542.8,241.7 L542.8,242.1 L542.6,244.2 L541.5,246.0 L539.6,247.3 L538.3,242.1 L537.4,242.3 L537.7,242.0 L537.6,241.9 L540.8,241.2 Z",TN,47179 1103,47073,0.08,0.87,Hawkins,"M537.6,241.9 L537.7,242.0 L537.4,242.3 L534.4,244.0 L532.7,245.8 L531.3,244.3 L530.2,245.4 L530.0,244.4 L529.6,243.7 L532.9,240.4 L535.2,239.5 L536.4,239.3 L538.2,239.1 L538.3,240.3 Z",TN,47073 1104,45071,0.57,0.59,Newberry,"M554.4,278.3 L554.0,278.2 L553.2,277.3 L555.0,274.3 L556.5,271.2 L558.1,272.4 L559.6,271.3 L559.7,272.0 L561.7,275.3 L561.5,276.0 L561.6,276.1 L560.4,277.4 L560.1,278.4 L556.2,277.1 Z",SC,45071 1105,51181,0.54,0.39,Surry,"M610.7,214.9 L613.2,215.1 L615.2,215.7 L614.9,217.3 L613.3,218.6 L612.2,219.7 L612.1,219.8 L611.5,218.0 L608.9,217.6 L609.7,216.2 Z",VA,51181 1106,51093,0.25,0.50,Isle of Wight,"M615.2,215.7 L615.6,217.3 L618.3,218.7 L617.7,219.1 L615.4,222.5 L614.0,224.3 L613.9,224.5 L613.9,224.5 L613.9,224.5 L613.8,224.5 L613.7,224.5 L613.4,223.6 L613.3,223.6 L614.0,219.9 L613.3,218.6 L614.9,217.3 Z",VA,51093 1107,51175,0.70,0.64,Southampton,"M613.9,224.5 L613.8,225.0 L613.9,226.1 L614.0,226.2 L614.0,226.2 L610.8,226.9 L610.7,226.9 L610.2,227.0 L608.9,227.3 L608.1,227.3 L606.6,225.0 L610.1,221.7 L612.1,219.8 L612.2,219.7 L613.3,218.6 L614.0,219.9 L613.3,223.6 L612.9,224.3 L613.7,224.5 L613.8,224.5 L613.9,224.5 L613.9,224.5 Z",VA,51175 1108,51800,0.50,0.50,Suffolk,"M618.3,218.7 L618.4,219.8 L619.5,218.9 L619.5,219.3 L619.4,219.5 L619.1,220.5 L619.6,224.9 L618.9,225.1 L615.5,225.8 L613.9,226.1 L613.9,226.1 L613.8,225.0 L613.9,224.5 L613.9,224.5 L614.0,224.3 L617.7,219.1 Z",VA,51800 1109,51550,0.52,0.46,Chesapeake,"M619.6,224.9 L619.1,220.5 L619.4,219.5 L620.2,220.7 L621.2,219.9 L621.7,219.8 L622.0,219.4 L624.6,221.4 L624.4,223.8 L623.5,224.0 L621.9,224.4 L620.7,224.7 Z",VA,51550 1110,37073,0.50,0.55,Gates,"M615.5,225.8 L618.9,225.1 L619.6,225.5 L619.7,225.6 L619.9,226.2 L620.7,227.6 L619.6,228.2 L619.4,228.4 L618.4,229.0 L617.9,229.6 L617.5,229.4 L617.2,229.4 L614.3,228.6 L614.0,226.2 L614.0,226.2 L613.9,226.1 Z",NC,37073 1111,41069,0.87,0.58,Wheeler,"M77.1,73.3 L76.8,74.5 L78.2,74.9 L77.7,77.7 L75.4,86.1 L71.7,82.8 L67.5,81.7 L68.0,79.6 L68.9,76.6 L69.3,75.5 L68.6,74.5 L69.0,71.1 L75.8,73.0 Z",OR,41069 1112,51061,0.61,0.43,Fauquier,"M593.4,193.7 L591.8,192.3 L590.3,191.4 L590.9,190.5 L591.6,189.2 L591.7,188.9 L592.0,188.6 L593.8,188.7 L596.1,188.9 L595.7,190.9 L599.0,194.9 L599.0,194.9 L599.0,194.9 L599.0,194.9 L599.0,194.9 L599.0,194.9 L598.0,196.7 L598.2,197.6 L596.9,197.8 Z",VA,51061 1113,32005,0.69,0.42,Douglas,"M48.4,169.8 L48.5,169.5 L48.6,169.1 L51.7,169.9 L54.2,171.1 L55.3,173.6 L54.7,180.7 L53.4,178.8 L52.1,177.0 L49.8,173.4 L49.1,172.3 L48.1,170.9 Z",NV,32005 1114,18035,0.50,0.50,Delaware,"M492.9,181.2 L494.3,181.0 L495.7,180.8 L495.8,181.3 L495.9,182.0 L496.0,183.1 L496.4,185.8 L496.4,185.8 L496.4,185.8 L494.5,186.1 L491.8,186.4 L491.5,184.1 L491.2,181.3 L491.4,181.3 Z M496.4,185.8 L496.4,185.8 L496.4,185.8 Z",IN,18035 1115,55131,0.50,0.50,Washington,"M451.0,137.9 L450.8,135.0 L450.8,132.0 L452.2,131.9 L453.7,131.8 L453.7,131.8 L454.5,131.7 L455.1,131.7 L455.1,131.7 L455.4,134.6 L455.4,137.6 L452.0,137.9 Z",WI,55131 1116,42085,0.52,0.56,Mercer,"M559.5,157.9 L559.1,158.9 L558.6,159.8 L557.8,159.2 L553.2,159.8 L553.1,159.7 L553.1,159.7 L552.4,155.2 L552.1,153.8 L557.0,153.1 L557.0,153.0 L558.6,152.7 L558.6,152.7 L558.6,152.7 L558.6,152.7 L559.4,157.3 Z",PA,42085 1117,42039,0.13,0.61,Crawford,"M552.1,153.8 L552.1,153.7 L552.1,153.6 L552.1,153.6 L551.8,151.9 L551.1,147.9 L556.0,147.0 L562.3,145.9 L562.5,146.8 L563.0,149.6 L560.3,150.1 L558.6,152.7 L558.6,152.7 L558.6,152.7 L558.6,152.7 L558.6,152.7 L557.0,153.1 Z",PA,42039 1118,17193,0.52,0.51,White,"M463.5,219.8 L463.6,219.9 L463.6,219.9 L463.7,220.1 L463.7,220.3 L464.7,221.4 L462.7,226.1 L462.1,225.9 L459.0,226.1 L458.8,224.2 L458.6,220.3 L458.6,220.3 L458.6,220.3 L460.1,220.2 L461.4,220.1 L461.4,220.1 L463.1,219.9 Z",IL,17193 1119,17039,0.52,0.49,De Witt,"M453.1,186.7 L453.1,186.7 L451.8,189.2 L451.2,190.7 L449.0,190.9 L446.1,191.2 L446.0,189.9 L445.8,187.3 L447.0,187.2 Z",IL,17039 1120,17115,0.50,0.51,Macon,"M446.1,191.2 L449.0,190.9 L451.2,190.7 L451.5,194.1 L451.6,195.1 L450.8,196.0 L450.9,197.5 L449.5,197.6 L448.1,197.7 L448.1,197.7 L446.7,197.8 L445.5,195.2 L445.4,194.2 L445.3,193.5 L445.3,193.5 L446.3,193.4 Z",IL,17115 1121,17173,0.48,0.48,Shelby,"M449.5,197.6 L450.9,197.5 L454.1,200.7 L455.6,200.6 L455.6,200.8 L455.7,201.7 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,201.8 L455.7,202.3 L455.9,204.4 L453.2,204.6 L451.6,204.8 L448.7,205.0 L447.2,205.1 L447.2,204.6 L447.1,202.9 L448.5,202.8 L448.1,197.7 L448.1,197.7 Z",IL,17173 1122,17137,0.50,0.51,Morgan,"M436.7,200.7 L435.4,200.8 L433.7,200.9 L432.5,201.0 L431.8,201.1 L430.7,197.2 L427.7,196.8 L428.1,196.1 L428.0,195.9 L427.8,195.7 L427.8,195.3 L432.3,195.1 L435.4,194.9 L435.7,197.5 L436.7,200.7 Z",IL,17137 1123,49039,0.49,0.47,Sanpete,"M150.5,190.4 L150.8,188.5 L154.4,188.0 L157.0,181.1 L158.5,181.4 L162.0,182.0 L161.8,183.6 L161.7,183.8 L160.4,187.6 L159.2,194.8 L152.1,193.5 L150.0,193.0 L150.0,193.0 Z",UT,49039 1124,27049,0.40,0.61,Goodhue,"M397.2,115.5 L399.6,117.9 L402.3,118.3 L402.6,119.0 L403.3,119.7 L399.6,121.3 L399.7,124.2 L399.5,124.2 L398.2,124.2 L396.6,124.3 L393.8,124.4 L393.7,121.0 L393.7,119.7 L396.6,118.4 Z",MN,27049 1125,37173,0.56,0.58,Swain,"M522.7,260.4 L524.9,258.4 L526.4,258.1 L528.6,257.9 L531.6,255.2 L532.7,255.5 L533.0,258.1 L530.9,259.2 L531.3,261.4 L529.8,262.1 L526.8,262.9 L527.7,260.2 Z",NC,37173 1126,37099,0.58,0.45,Jackson,"M531.3,261.4 L530.9,259.2 L533.0,258.1 L535.9,260.1 L537.1,261.3 L536.7,264.0 L536.6,265.8 L535.9,266.1 L535.3,266.5 L535.3,266.5 L535.3,266.5 L535.3,266.5 L535.3,266.5 L532.4,263.0 Z",NC,37099 1127,12103,0.55,0.80,Pinellas,"M558.8,382.1 L558.1,381.8 L558.9,382.9 L558.9,382.9 L558.9,383.0 L558.0,383.7 L560.3,384.1 L560.3,384.2 L560.3,384.2 L559.7,387.4 L556.6,386.1 L556.3,379.8 L556.4,379.8 L558.4,379.5 L558.7,381.4 Z",FL,12103 1128,12101,0.48,0.51,Pasco,"M558.4,379.5 L556.4,379.8 L556.3,379.8 L557.1,377.5 L557.4,375.1 L563.6,374.2 L566.4,373.0 L566.7,374.4 L566.9,375.8 L566.3,376.8 L566.5,378.3 L561.7,379.0 Z",FL,12101 1129,12119,0.51,0.53,Sumter,"M566.4,373.0 L563.9,371.8 L562.9,370.3 L563.9,368.0 L561.4,365.5 L562.9,365.3 L566.7,364.7 L567.7,371.1 L568.2,375.0 L568.3,375.6 L566.9,375.8 L566.7,374.4 Z",FL,12119 1130,38091,0.51,0.50,Steele,"M335.2,66.0 L336.0,66.0 L336.4,66.0 L339.6,66.1 L341.1,66.1 L341.0,72.0 L341.2,73.5 L339.8,73.4 L338.3,73.4 L336.5,73.4 L335.4,73.3 L335.4,73.3 L335.1,71.9 Z",ND,38091 1131,38003,0.49,0.50,Barnes,"M336.5,73.4 L338.3,73.4 L338.5,77.8 L338.4,83.7 L335.6,83.7 L334.3,83.6 L332.1,83.6 L329.6,83.5 L329.7,77.6 L329.5,73.2 L333.9,73.3 L335.4,73.3 L335.4,73.3 Z",ND,38003 1132,38073,0.50,0.50,Ransom,"M334.3,83.6 L335.6,83.7 L338.4,83.7 L340.1,83.8 L343.1,83.8 L343.0,86.0 L343.0,89.7 L335.8,89.6 L334.5,89.5 L334.2,89.5 L334.1,89.5 L334.2,88.1 Z",ND,38073 1133,38097,0.51,0.50,Traill,"M341.2,73.5 L341.0,72.0 L341.1,66.1 L343.8,66.2 L347.8,66.2 L348.2,67.6 L348.2,69.2 L348.1,70.5 L348.4,73.6 L347.1,73.6 Z",ND,38097 1134,37011,0.40,0.55,Avery,"M548.2,242.7 L548.5,243.9 L550.1,245.4 L551.2,246.0 L550.5,247.9 L549.2,247.4 L548.7,248.2 L548.6,248.8 L548.3,249.1 L547.5,248.7 L546.5,246.1 L547.1,245.7 L548.0,243.1 L548.2,242.8 Z",NC,37011 1135,54107,0.48,0.54,Wood,"M545.4,196.7 L544.1,196.3 L543.1,195.9 L543.1,195.6 L542.8,194.6 L543.0,194.4 L543.1,193.9 L546.0,190.2 L547.3,191.1 L548.0,191.7 L548.8,191.7 L549.2,192.0 L549.2,192.0 L549.2,192.0 L549.2,192.0 L548.8,192.2 L548.7,193.5 L547.2,194.6 Z",WV,54107 1136,54073,0.53,0.54,Pleasants,"M548.8,191.7 L548.0,191.7 L547.3,191.1 L549.2,190.0 L550.2,188.7 L551.3,188.3 L551.9,190.2 L550.0,191.3 L549.3,191.3 L549.2,192.0 L549.2,192.0 Z",WV,54073 1137,55097,0.50,0.51,Portage,"M439.3,113.8 L439.5,116.9 L439.8,121.1 L437.0,121.3 L435.3,121.4 L434.7,121.4 L433.8,121.5 L433.5,117.1 L431.9,114.2 L436.1,113.9 Z",WI,55097 1138,45063,0.55,0.55,Lexington,"M559.2,281.9 L559.6,280.3 L560.1,278.4 L560.4,277.4 L561.6,276.1 L566.1,278.8 L566.9,280.6 L566.7,282.9 L567.0,283.5 L566.4,283.8 L565.1,284.8 L562.4,283.9 Z",SC,45063 1139,24510,0.46,0.55,Baltimore,"M609.5,180.9 L608.2,181.0 L609.6,181.6 L608.9,181.7 L608.4,181.3 L606.7,179.4 Z",MD,24510 1140,55039,0.50,0.54,Fond du Lac,"M453.2,126.0 L453.5,130.2 L453.7,131.8 L453.7,131.8 L452.2,131.9 L450.8,132.0 L450.6,130.6 L444.7,131.0 L444.6,129.1 L444.4,126.6 L450.2,126.2 L450.2,125.4 L453.1,125.2 Z",WI,55039 1141,40059,0.99,0.52,Harper,"M311.6,244.7 L312.6,246.8 L313.6,247.8 L313.5,251.5 L309.3,251.4 L309.0,251.4 L303.9,251.2 L304.1,248.3 L304.2,244.4 L306.0,244.4 L310.4,244.6 L311.2,244.7 Z",OK,40059 1142,40151,0.88,0.52,Woods,"M313.6,247.8 L312.6,246.8 L311.6,244.7 L314.0,244.8 L317.7,244.9 L320.4,245.0 L323.8,245.1 L323.7,251.9 L323.7,254.1 L323.7,254.1 L322.4,255.2 L318.0,253.2 L315.7,248.5 Z",OK,40151 1143,40003,0.50,0.50,Alfalfa,"M323.7,251.9 L323.8,245.1 L325.2,245.2 L326.5,245.2 L326.5,245.2 L327.1,245.2 L329.6,245.3 L329.5,252.0 L329.6,252.0 L329.6,252.6 L329.5,254.2 L327.8,254.2 L323.7,254.1 L323.7,254.1 Z",OK,40003 1144,20007,0.50,0.50,Barber,"M325.2,245.2 L323.8,245.1 L320.4,245.0 L317.7,244.9 L317.9,238.5 L317.8,238.5 L317.8,237.7 L317.8,237.0 L322.7,237.2 L325.1,237.2 L325.1,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,239.7 L326.5,241.2 L326.5,241.4 L326.5,245.2 L326.5,245.2 Z M326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 Z",KS,20007 1145,21063,0.43,0.52,Elliott,"M530.1,213.5 L530.8,214.5 L529.3,216.5 L527.0,216.7 L525.9,215.1 L526.5,214.0 L525.9,213.8 L526.9,212.4 Z",KY,21063 1146,25003,0.40,0.50,Berkshire,"M641.3,120.6 L641.6,123.4 L641.8,125.1 L637.1,126.1 L636.5,126.3 L636.5,126.3 L636.4,126.4 L636.1,125.8 L636.2,118.4 L636.3,115.7 L636.3,114.3 L638.1,113.9 L639.2,113.7 L640.2,114.0 L640.6,116.5 L640.9,119.5 Z",MA,25003 1147,29041,0.50,0.50,Chariton,"M393.2,201.3 L393.1,200.1 L393.3,199.8 L395.7,199.7 L398.6,199.7 L400.8,199.6 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.7,201.1 L400.8,205.9 L399.7,205.6 L399.0,207.6 L397.5,206.2 L395.6,205.1 L393.2,202.9 Z M400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 Z M400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 Z",MO,29041 1148,29195,0.50,0.50,Saline,"M395.6,205.1 L397.5,206.2 L399.0,207.6 L397.8,209.3 L398.0,210.3 L396.5,211.9 L396.5,212.7 L395.0,212.6 L390.7,212.6 L390.7,209.5 L390.8,206.7 L392.7,207.4 Z",MO,29195 1149,20167,0.50,0.50,Russell,"M318.2,216.5 L318.1,216.5 L318.1,216.5 L318.2,213.4 L318.4,209.2 L322.6,209.3 L325.5,209.4 L325.6,209.4 L325.5,213.8 L325.4,215.8 L325.4,216.7 L322.6,216.6 Z",KS,20167 1150,47111,0.50,0.50,Macon,"M493.3,247.7 L490.8,247.7 L489.9,247.0 L489.8,246.4 L489.9,244.5 L491.7,244.4 L493.0,244.3 L494.9,244.2 L495.5,244.2 L495.4,244.3 L495.4,246.2 L495.4,246.5 L495.4,247.7 L494.7,247.7 Z",TN,47111 1151,05023,0.50,0.50,Cleburne,"M409.4,271.9 L409.4,269.0 L409.3,266.1 L413.2,266.0 L414.9,266.0 L415.5,265.8 L415.6,268.8 L414.9,271.8 L411.4,271.8 L409.9,271.9 Z",AR,5023 1152,16003,0.46,0.49,Adams,"M113.9,79.0 L117.8,79.9 L119.6,83.1 L118.3,86.6 L117.2,93.0 L116.6,92.8 L115.3,93.6 L112.8,92.2 L112.9,86.2 L109.7,85.4 L110.9,84.1 L112.0,81.8 L112.9,80.9 Z",ID,16003 1153,16045,0.30,0.84,Gem,"M115.3,93.6 L116.6,92.8 L117.2,93.0 L116.6,95.9 L115.2,98.6 L114.5,98.4 L113.1,104.1 L110.7,103.5 L110.4,103.4 L108.5,103.0 L108.0,102.9 L108.7,100.0 L112.4,98.0 L113.5,98.2 Z",ID,16045 1154,25021,0.34,0.46,Norfolk,"M660.7,120.5 L660.2,118.9 L660.3,118.2 L661.4,115.2 L663.2,115.2 L664.1,115.9 L664.9,114.3 L665.4,114.1 L666.4,114.9 L666.9,116.3 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L665.3,117.8 L662.4,120.6 L662.2,120.6 L662.1,120.1 Z M667.6,114.2 L668.2,114.2 L668.2,114.2 L667.9,115.3 Z M663.4,114.7 L663.2,114.6 L663.4,114.3 L663.9,113.8 L663.8,113.9 L663.8,113.9 L663.8,113.9 L663.8,113.9 Z",MA,25021 1155,42037,0.57,0.52,Columbia,"M605.9,155.5 L605.3,154.6 L603.7,154.1 L603.5,152.9 L601.3,150.0 L601.9,149.8 L603.2,147.5 L603.6,146.8 L604.8,146.6 L606.4,149.1 L607.4,152.2 L606.7,154.9 Z",PA,42037 1156,42107,0.50,0.52,Schuylkill,"M605.9,155.5 L606.7,154.9 L607.4,152.2 L609.8,152.5 L610.1,152.2 L611.9,153.5 L613.8,154.4 L613.2,155.0 L612.3,155.8 L611.2,157.7 L606.1,160.2 L605.3,159.8 L604.7,159.5 L604.0,159.2 L602.3,158.3 L602.3,158.3 L602.3,158.3 L602.3,158.3 L603.8,157.1 Z",PA,42107 1157,37109,0.51,0.52,Lincoln,"M556.7,256.1 L555.6,254.5 L555.2,253.9 L555.2,253.8 L555.2,253.8 L559.0,253.4 L563.0,252.9 L563.1,253.6 L563.4,253.8 L563.5,254.4 L563.5,255.3 L562.8,255.4 Z",NC,37109 1158,37045,0.44,0.46,Cleveland,"M555.2,253.9 L555.6,254.5 L556.7,256.1 L558.3,257.4 L559.1,260.1 L558.8,260.1 L558.6,260.1 L555.6,260.5 L553.1,260.7 L553.5,257.7 L553.1,254.0 L553.7,254.2 Z",NC,37045 1159,05019,0.50,0.50,Clark,"M394.1,289.6 L399.3,291.2 L401.4,292.5 L401.4,295.4 L401.5,298.3 L399.6,299.0 L398.6,298.9 L395.9,297.9 L394.7,296.0 L393.8,294.5 L393.1,289.6 L393.9,289.6 Z",AR,5019 1160,05059,0.96,0.50,Hot Spring,"M401.4,292.5 L399.3,291.2 L394.1,289.6 L394.0,289.0 L394.0,288.7 L400.4,288.6 L402.5,286.6 L404.0,287.1 L404.3,288.0 L404.3,291.0 L404.3,292.5 L402.4,292.5 Z",AR,5059 1161,17169,0.46,0.41,Schuyler,"M428.6,193.4 L426.1,191.6 L423.3,191.8 L423.3,191.3 L423.3,190.3 L423.3,189.7 L423.2,188.8 L426.2,188.7 L429.1,188.5 L429.2,190.0 L432.4,189.9 L431.6,190.4 L430.5,191.0 L429.6,192.8 Z",IL,17169 1162,17057,0.52,0.50,Fulton,"M432.4,189.9 L429.2,190.0 L429.1,188.5 L429.0,187.0 L428.8,182.7 L428.8,182.2 L428.7,181.2 L432.3,181.0 L434.6,180.9 L436.1,182.3 L436.2,184.1 L436.1,184.8 L435.7,185.4 L434.3,186.5 Z",IL,17057 1163,06051,0.50,0.75,Mono,"M52.1,177.0 L53.4,178.8 L54.7,180.7 L55.6,182.1 L56.3,183.2 L60.7,189.8 L63.5,194.0 L68.0,200.7 L69.4,203.0 L64.6,201.8 L57.2,199.9 L55.8,198.0 L54.6,197.1 L53.9,194.4 L52.0,193.8 L52.5,187.9 L49.8,183.0 L51.8,180.6 Z",CA,6051 1164,35013,0.14,0.89,Doña Ana,"M206.8,324.4 L205.4,324.2 L195.8,323.0 L196.4,318.0 L197.5,309.3 L197.9,306.4 L203.7,306.4 L211.9,303.4 L211.2,305.0 L209.4,321.0 L205.9,320.6 Z",NM,35013 1165,38039,0.51,0.50,Griggs,"M335.4,73.3 L333.9,73.3 L329.5,73.2 L329.6,71.7 L329.2,71.7 L329.3,68.9 L329.3,67.3 L329.3,66.8 L329.3,65.9 L331.5,65.9 L335.2,66.0 L335.1,71.9 L335.4,73.3 Z",ND,38039 1166,06055,0.51,0.50,Napa,"M19.4,171.3 L16.5,176.7 L13.9,175.9 L14.8,174.6 L13.6,166.8 L15.8,166.8 L17.4,164.5 L18.6,165.3 Z",CA,6055 1167,06095,0.52,0.49,Solano,"M13.9,175.9 L16.5,176.7 L19.4,171.3 L24.6,172.6 L24.9,176.4 L24.1,178.2 L22.9,178.7 L21.9,179.4 L20.7,179.4 L20.6,179.2 L20.4,179.3 L17.3,178.8 L16.8,178.7 L16.6,178.5 L13.9,176.0 L13.9,175.9 Z M22.1,179.6 L22.3,179.5 L22.5,179.4 L22.3,179.6 L22.3,179.6 L22.3,179.6 L22.3,179.6 L22.3,179.6 Z",CA,6095 1168,48449,0.49,0.50,Titus,"M370.4,312.0 L370.3,308.4 L370.3,306.0 L373.2,306.1 L374.8,306.4 L374.8,307.9 L374.7,312.8 L373.2,311.4 Z",TX,48449 1169,37125,0.46,0.42,Moore,"M589.3,254.3 L589.3,254.4 L589.3,254.6 L587.4,254.3 L584.8,257.6 L583.2,257.5 L582.4,256.0 L581.0,254.8 L579.2,250.7 L580.1,250.5 L582.1,250.1 L582.9,249.9 L584.9,249.5 L586.4,252.1 L587.7,252.6 L587.3,253.3 Z",NC,37125 1170,20009,0.50,0.50,Barton,"M318.0,222.3 L318.1,220.9 L318.2,216.5 L322.6,216.6 L325.4,216.7 L325.5,216.7 L325.4,219.6 L325.3,222.1 L325.3,224.0 L322.1,223.9 L319.5,223.8 L318.0,223.8 Z",KS,20009 1171,38087,0.85,0.53,Slope,"M273.8,80.6 L275.4,80.7 L277.3,80.8 L277.2,82.4 L276.9,86.7 L276.4,86.7 L276.1,86.7 L275.5,86.6 L263.8,85.7 L264.1,83.3 L264.2,81.3 L267.1,81.5 L269.4,80.2 L272.1,80.4 Z",ND,38087 1172,22083,0.03,0.80,Richland,"M422.8,318.1 L423.1,318.4 L422.7,318.8 L422.3,319.5 L422.5,321.0 L418.5,322.5 L416.8,325.6 L415.5,325.4 L414.7,323.6 L415.0,321.8 L416.2,319.7 L418.6,318.6 L420.0,316.8 L420.7,318.2 Z",LA,22083 1173,31041,0.85,0.51,Custer,"M317.5,165.5 L317.6,165.5 L317.7,165.5 L317.4,171.3 L317.6,171.3 L317.5,173.7 L317.3,177.1 L316.1,177.1 L314.5,177.0 L308.8,176.8 L304.4,176.6 L304.5,170.8 L304.4,170.8 L304.5,166.9 L304.6,165.0 L307.7,165.1 L311.7,165.3 L317.1,165.4 Z",NE,31041 1174,31071,0.50,0.50,Garfield,"M317.7,165.5 L317.6,165.5 L317.5,165.5 L317.7,161.7 L317.7,159.7 L320.0,159.7 L323.5,159.8 L323.4,162.2 L323.3,165.7 L321.9,165.6 Z",NE,31071 1175,01119,0.51,0.50,Sumter,"M473.9,315.3 L471.6,317.2 L473.2,319.1 L469.2,319.5 L466.2,319.8 L466.2,318.6 L466.3,315.2 L466.3,312.3 L466.4,309.3 L466.4,308.8 L466.4,308.2 L467.9,308.0 L468.8,307.9 L471.0,314.6 Z",AL,1119 1176,28069,0.53,0.50,Kemper,"M466.4,309.3 L466.3,312.3 L466.3,315.2 L461.1,315.7 L458.8,315.8 L458.6,312.8 L458.4,310.0 L459.2,309.9 L459.8,309.9 L462.1,309.7 Z",MS,28069 1177,01093,0.49,0.51,Marion,"M474.3,285.3 L474.6,288.4 L474.8,290.4 L474.8,291.1 L474.9,291.9 L473.5,292.0 L470.5,292.2 L469.8,290.0 L466.7,290.2 L466.7,289.9 L466.7,289.7 L466.8,288.2 L466.8,285.8 L468.8,285.7 Z",AL,1093 1178,01133,0.50,0.50,Winston,"M474.8,290.4 L474.6,288.4 L474.3,285.3 L475.3,285.3 L475.8,285.2 L478.9,285.0 L481.6,284.8 L482.1,289.9 L481.5,289.9 L476.7,290.4 Z",AL,1133 1179,12117,0.47,0.44,Seminole,"M575.1,366.4 L574.9,365.9 L575.6,364.7 L579.5,364.9 L581.9,368.2 L574.8,368.9 Z",FL,12117 1180,28131,0.50,0.49,Stone,"M455.1,348.7 L455.0,346.9 L454.8,344.3 L456.2,344.2 L457.8,344.1 L459.8,343.9 L461.4,343.8 L461.6,345.3 L461.7,346.7 L461.7,347.1 L461.7,347.7 L456.6,348.1 Z",MS,28131 1181,28109,0.49,0.50,Pearl River,"M454.8,344.3 L455.0,346.9 L455.1,348.7 L452.2,348.9 L450.3,352.3 L449.1,351.4 L447.8,348.9 L448.5,346.1 L449.1,343.2 L449.7,343.1 L450.2,343.1 L452.4,342.7 L454.6,342.6 L454.7,342.8 Z",MS,28109 1182,28035,0.50,0.51,Forrest,"M454.8,344.3 L454.7,342.8 L454.6,342.6 L454.2,337.0 L452.6,335.6 L453.0,335.6 L453.3,335.6 L455.0,335.4 L457.0,335.3 L457.5,342.6 L457.8,344.1 L456.2,344.2 Z",MS,28035 1183,28073,0.50,0.49,Lamar,"M452.6,335.6 L454.2,337.0 L454.6,342.6 L452.4,342.7 L450.2,343.1 L449.9,339.5 L449.7,335.8 L450.2,335.8 L450.6,335.8 L451.0,335.7 Z",MS,28073 1184,26037,0.50,0.50,Clinton,"M501.5,139.6 L501.5,139.7 L498.5,140.1 L497.1,140.3 L495.7,140.4 L495.3,137.6 L495.0,134.6 L496.5,134.5 L500.7,133.9 L501.2,138.0 Z",MI,26037 1185,26065,0.50,0.50,Ingham,"M498.5,140.1 L501.5,139.7 L501.5,139.6 L502.8,139.4 L504.0,139.3 L504.7,143.1 L505.0,145.1 L502.2,145.5 L499.3,145.9 L498.7,141.4 Z",MI,26065 1186,20149,0.50,0.50,Pottawatomie,"M352.9,209.2 L348.5,205.3 L350.4,202.6 L351.5,202.6 L354.9,202.6 L356.4,202.6 L357.5,202.6 L357.5,205.8 L357.5,208.5 L357.5,209.9 L357.5,210.0 L356.9,208.8 Z",KS,20149 1187,20177,0.50,0.50,Shawnee,"M357.5,210.0 L357.5,209.9 L357.5,208.5 L362.9,208.5 L363.3,208.5 L363.2,211.0 L364.5,211.1 L364.5,212.3 L364.5,214.2 L360.6,214.3 L358.7,214.3 L358.7,210.4 Z",KS,20177 1188,46061,0.50,0.50,Hanson,"M335.5,130.6 L336.2,130.6 L338.4,130.6 L338.4,132.6 L338.3,136.5 L336.7,136.5 L333.9,136.4 L334.0,132.3 L334.0,130.5 L334.8,130.5 Z",SD,46061 1189,46035,0.50,0.50,Davison,"M334.0,130.5 L334.0,132.3 L333.9,136.4 L333.8,136.4 L332.1,136.4 L330.9,136.4 L329.6,136.3 L329.6,135.0 L329.7,130.4 L330.2,130.4 Z",SD,46035 1190,27061,0.50,0.51,Itasca,"M376.2,70.0 L376.2,67.6 L376.0,63.2 L383.4,62.1 L391.3,62.0 L391.6,64.9 L392.1,76.7 L389.0,76.7 L383.7,76.8 L383.6,72.6 L379.6,69.3 Z",MN,27061 1191,08073,0.86,0.52,Lincoln,"M264.6,207.8 L264.1,213.6 L263.9,214.9 L263.8,216.3 L259.4,216.1 L258.0,215.9 L252.2,215.4 L252.2,215.4 L252.5,212.5 L252.7,209.6 L257.1,210.0 L258.1,198.4 L258.2,198.4 L258.2,198.4 L261.5,198.7 L265.4,199.0 L265.4,199.0 L264.8,206.3 Z",CO,8073 1192,08063,0.50,0.50,Kit Carson,"M265.4,199.0 L268.3,199.1 L269.9,199.3 L275.5,199.6 L279.7,199.9 L279.7,200.0 L279.4,203.2 L279.2,207.2 L279.2,207.4 L279.1,208.7 L273.2,208.4 L264.6,207.8 L264.8,206.3 L265.4,199.0 Z",CO,8063 1193,36025,0.48,0.44,Delaware,"M619.8,122.3 L621.3,123.6 L623.7,124.2 L623.2,127.0 L624.3,127.3 L623.3,128.4 L620.9,130.7 L619.5,132.1 L617.1,134.5 L615.7,134.6 L613.9,132.7 L613.0,132.1 L612.5,129.6 L612.3,128.7 L612.1,127.7 L618.2,122.8 L619.8,122.3 L619.8,122.3 Z",NY,36025 1194,36077,0.06,0.99,Otsego,"M619.8,122.3 L618.2,122.8 L612.1,127.7 L611.6,124.9 L611.9,120.3 L612.3,119.5 L612.0,118.1 L612.0,118.0 L612.4,117.9 L616.3,117.9 L617.8,116.9 L618.5,117.0 L619.4,117.1 L620.4,120.3 L619.8,122.3 L619.8,122.3 Z",NY,36077 1195,36115,0.44,0.49,Washington,"M629.9,97.6 L630.3,97.5 L630.5,97.4 L631.0,97.9 L630.9,98.2 L633.1,101.1 L634.1,105.0 L634.3,105.9 L635.4,111.1 L633.2,111.7 L631.1,112.3 L631.1,109.5 L630.0,106.2 L628.8,102.0 Z",NY,36115 1196,18005,0.52,0.52,Bartholomew,"M491.8,198.6 L491.9,200.0 L492.1,202.3 L490.7,202.5 L490.8,203.5 L490.1,204.0 L487.2,204.2 L487.2,203.7 L486.6,199.3 L486.6,199.3 L488.3,199.1 L490.3,198.8 Z",IN,18005 1197,18081,0.50,0.50,Johnson,"M488.3,199.1 L486.6,199.3 L486.6,199.3 L485.3,199.5 L484.4,199.6 L484.1,196.7 L483.9,194.7 L485.7,194.5 L487.8,194.2 L488.0,196.6 Z",IN,18081 1198,48445,0.50,0.50,Terry,"M270.0,310.3 L267.6,310.2 L264.6,310.0 L264.9,305.0 L265.1,302.8 L266.5,302.9 L272.4,303.2 L272.0,309.8 L271.9,310.5 L271.2,310.4 Z",TX,48445 1199,01121,0.45,0.55,Talladega,"M496.7,303.4 L493.6,303.7 L492.3,303.9 L493.8,300.4 L493.3,298.9 L495.2,297.0 L496.1,293.7 L498.4,295.1 L501.2,295.3 L501.2,295.5 L500.5,296.3 L499.1,299.9 Z",AL,1121 1200,19021,0.50,0.50,Buena Vista,"M371.4,146.5 L371.4,149.4 L371.4,152.4 L366.5,152.4 L365.6,152.4 L365.6,149.4 L365.5,146.5 L365.5,146.5 L365.5,146.5 L369.7,146.5 Z M365.5,146.5 L365.5,146.5 L365.5,146.5 Z",IA,19021 1201,19035,0.50,0.50,Cherokee,"M365.5,146.5 L365.6,149.4 L365.6,152.4 L364.0,152.4 L361.2,152.4 L360.7,152.4 L359.7,152.4 L359.7,149.7 L359.7,146.6 L362.6,146.6 L365.5,146.5 L365.5,146.5 L365.5,146.5 Z",IA,19035 1202,37197,0.50,0.48,Yadkin,"M567.9,243.6 L566.2,243.8 L565.2,244.0 L564.5,244.1 L562.7,244.3 L562.5,242.5 L562.3,241.3 L566.5,239.8 L567.9,240.3 L567.9,240.3 L567.9,240.3 L567.9,240.3 L567.9,240.3 L567.9,240.3 L567.9,240.3 L568.4,242.0 L567.9,243.6 Z",NC,37197 1203,37067,0.47,0.52,Forsyth,"M567.9,243.6 L568.4,242.0 L567.9,240.3 L567.9,240.3 L567.9,240.3 L567.9,240.3 L567.9,240.1 L567.9,239.9 L569.4,239.7 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.1 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 L573.5,239.5 L574.1,243.1 L574.1,243.1 L574.1,243.1 L574.1,243.1 L572.6,243.1 L571.8,243.7 L569.4,244.6 L568.2,243.3 L567.9,243.6 Z M573.4,239.0 L573.4,239.0 L573.4,239.0 L573.4,239.0 Z",NC,37067 1204,37081,0.50,0.51,Guilford,"M573.4,239.0 L576.6,238.6 L580.2,238.1 L580.6,240.7 L581.1,243.7 L578.4,244.1 L574.3,244.6 L574.2,244.1 L574.1,243.1 L574.1,243.1 L574.1,243.1 L574.1,243.1 L573.5,239.5 L573.4,239.1 L573.4,239.0 L573.4,239.0 Z",NC,37081 1205,37057,0.45,0.52,Davidson,"M574.1,243.1 L574.2,244.1 L574.3,244.6 L574.8,248.6 L575.2,251.5 L575.0,251.5 L573.7,251.8 L571.0,248.6 L569.3,248.5 L570.1,245.8 L569.4,244.6 L571.8,243.7 L572.6,243.1 L574.1,243.1 L574.1,243.1 Z",NC,37057 1206,32510,0.54,0.31,Carson City,"M54.2,171.1 L51.7,169.9 L48.6,169.1 L48.7,168.9 L48.8,168.2 L50.4,168.7 L52.9,167.9 L54.5,169.2 Z",NV,32510 1207,13193,0.54,0.47,Macon,"M526.6,314.6 L525.4,313.7 L525.3,312.4 L526.9,309.9 L527.8,309.5 L527.8,309.5 L528.1,309.6 L528.3,309.7 L529.5,309.6 L530.8,310.0 L531.0,310.5 L531.2,313.0 L529.7,313.9 L528.9,315.3 L527.4,315.3 Z M528.4,309.4 L528.0,309.5 L527.8,309.5 L527.8,309.5 L527.8,309.4 L528.5,309.3 L528.5,309.4 Z",GA,13193 1208,13261,0.46,0.47,Sumter,"M526.6,314.6 L527.4,315.3 L528.9,315.3 L529.6,316.5 L530.2,317.5 L530.9,318.9 L531.0,319.5 L525.1,320.2 L525.2,320.9 L523.5,319.6 L523.5,319.5 L523.5,318.2 L523.3,316.7 L523.2,316.3 L523.2,316.1 L523.2,316.1 L523.2,316.1 L526.8,315.8 Z",GA,13261 1209,29023,0.52,0.48,Butler,"M429.5,244.7 L433.8,244.4 L435.1,244.4 L436.0,246.9 L436.9,249.2 L436.5,250.6 L436.1,251.5 L433.9,251.6 L431.3,251.8 L430.9,248.8 L429.8,246.6 L429.7,245.4 Z",MO,29023 1210,29223,0.49,0.50,Wayne,"M435.1,244.4 L433.8,244.4 L429.5,244.7 L428.7,243.5 L428.0,242.7 L428.5,240.7 L428.4,239.0 L430.8,238.8 L430.8,238.1 L433.5,237.9 L435.2,237.8 L435.4,241.7 L437.0,242.3 L435.5,243.7 Z",MO,29223 1211,29179,0.53,0.52,Reynolds,"M428.4,239.0 L428.5,240.7 L428.0,242.7 L425.5,242.8 L424.8,242.1 L422.7,239.6 L421.9,236.9 L420.4,234.0 L422.5,234.0 L427.6,233.5 Z",MO,29179 1212,08081,0.50,0.51,Moffat,"M207.1,168.7 L209.3,168.9 L214.7,169.6 L213.9,176.3 L211.5,182.4 L203.0,181.3 L191.0,179.6 L191.6,175.9 L192.1,172.3 L192.5,169.6 L192.9,166.7 L203.0,168.1 Z",CO,8081 1213,56025,0.50,0.50,Natrona,"M235.0,129.9 L233.7,141.9 L233.0,147.6 L233.0,147.6 L233.0,147.6 L226.2,146.9 L223.4,146.5 L215.2,145.5 L216.2,139.7 L217.3,127.7 L220.7,128.1 L222.4,128.4 L222.4,128.5 Z M233.0,147.6 L233.0,147.6 L233.0,147.6 L233.0,147.6 Z",WY,56025 1214,56009,0.51,0.51,Converse,"M233.0,147.6 L233.7,141.9 L235.0,129.9 L235.3,130.0 L235.7,130.0 L242.7,130.7 L247.1,131.1 L248.6,131.3 L249.3,131.3 L248.1,143.3 L247.9,146.2 L243.1,145.8 L242.8,148.7 L242.8,148.7 L242.8,148.7 L239.4,148.4 L233.0,147.6 L233.0,147.6 L233.0,147.6 L233.0,147.6 Z",WY,56009 1215,55065,0.50,0.50,Lafayette,"M427.1,151.2 L427.1,150.1 L426.8,146.1 L429.0,145.9 L434.1,145.6 L434.2,147.2 L434.4,150.8 L433.6,150.8 L433.3,150.8 L430.5,151.0 Z",WI,55065 1216,17177,0.50,0.48,Stephenson,"M433.3,150.8 L433.6,150.8 L434.4,150.8 L436.5,150.6 L439.8,150.5 L439.8,150.5 L440.0,152.6 L440.3,155.5 L437.4,155.7 L436.6,155.8 L435.5,155.9 L433.8,156.0 L433.6,154.5 Z",IL,17177 1217,55045,0.50,0.51,Green,"M436.5,150.6 L434.4,150.8 L434.2,147.2 L434.1,145.6 L434.0,144.9 L434.0,144.9 L439.8,144.5 L439.8,144.7 L439.8,144.7 L440.1,147.7 L440.3,150.4 L440.1,150.5 L439.8,150.5 L439.8,150.5 Z",WI,55045 1218,55105,0.50,0.50,Rock,"M439.8,144.7 L440.2,144.6 L444.2,144.3 L445.7,144.2 L447.1,144.2 L447.3,147.1 L447.6,150.0 L447.6,150.0 L447.2,150.0 L445.5,150.1 L445.5,150.1 L445.5,150.1 L445.5,150.1 L441.6,150.4 L440.3,150.4 L440.1,147.7 L439.8,144.7 Z",WI,55105 1219,26087,0.47,0.48,Lapeer,"M515.4,128.4 L516.9,128.9 L517.3,131.1 L517.6,132.7 L518.1,135.4 L517.6,135.5 L516.6,135.7 L514.2,136.1 L512.4,136.4 L511.9,133.6 L511.5,130.7 L512.6,128.9 Z",MI,26087 1220,22015,0.54,0.49,Bossier,"M394.3,316.2 L395.5,322.0 L395.1,322.7 L394.8,325.0 L394.3,325.0 L394.2,325.0 L391.0,322.2 L388.9,312.0 L389.0,312.0 L389.1,312.0 L391.6,311.9 L393.1,311.9 L393.1,311.9 Z",LA,22015 1221,22119,0.55,0.46,Webster,"M394.3,316.2 L393.1,311.9 L393.1,311.9 L393.4,311.9 L393.5,311.9 L393.5,311.9 L393.5,311.8 L394.9,311.8 L395.6,311.8 L397.1,311.8 L397.3,316.8 L398.2,319.0 L398.7,321.2 L395.5,322.0 Z",LA,22119 1222,05027,0.49,0.50,Columbia,"M393.5,307.8 L395.1,304.6 L397.1,304.7 L398.6,304.4 L398.6,305.6 L400.6,305.6 L400.6,307.9 L400.6,311.7 L399.0,311.7 L397.1,311.8 L394.9,311.8 L393.5,311.9 L393.5,311.9 Z",AR,5027 1223,28119,0.47,0.50,Quitman,"M435.8,286.3 L437.2,286.2 L437.0,284.8 L438.5,284.7 L438.5,284.7 L438.8,288.2 L439.8,290.5 L439.8,292.0 L435.4,292.3 L435.3,289.1 Z",MS,28119 1224,28143,0.49,0.51,Tunica,"M437.0,284.8 L435.8,286.3 L434.4,285.5 L433.3,284.8 L433.6,284.1 L433.0,282.9 L434.7,282.0 L435.3,279.5 L436.2,279.0 L436.7,278.9 L438.1,278.9 L438.2,281.1 L438.2,281.1 L438.2,281.1 L437.8,282.8 L438.4,284.0 L438.5,284.4 L438.5,284.7 Z",MS,28143 1225,28135,0.50,0.52,Tallahatchie,"M435.4,292.3 L439.8,292.0 L439.8,290.5 L442.2,290.4 L442.6,290.3 L442.6,290.3 L442.6,290.3 L442.7,290.7 L443.0,294.7 L440.1,296.4 L440.2,297.9 L439.5,296.4 L435.7,296.6 L435.6,294.0 L435.5,293.7 L435.5,293.3 Z",MS,28135 1226,28161,0.50,0.51,Yalobusha,"M442.6,290.3 L445.5,290.1 L445.5,289.6 L448.4,289.4 L448.5,289.9 L448.6,291.4 L448.8,294.8 L445.2,295.1 L443.0,294.7 L442.7,290.7 L442.6,290.3 L442.6,290.3 Z",MS,28161 1227,22053,0.53,0.55,Jefferson Davis,"M407.6,360.8 L407.2,361.0 L406.0,361.7 L405.7,361.7 L402.2,361.9 L401.5,356.1 L400.0,355.8 L400.0,355.5 L400.0,355.4 L405.2,355.0 L407.3,354.1 L407.3,354.1 L407.3,354.2 L408.0,359.2 Z",LA,22053 1228,22039,0.48,0.50,Evangeline,"M407.3,354.2 L407.3,354.1 L407.3,354.1 L407.9,352.7 L407.7,352.5 L407.5,347.2 L407.5,347.2 L407.5,347.2 L410.6,345.3 L412.1,345.8 L412.1,346.3 L413.1,347.7 L413.3,352.5 L409.3,354.1 L407.9,354.2 Z",LA,22039 1229,22079,0.19,0.56,Rapides,"M407.5,347.2 L405.7,347.2 L404.2,347.4 L404.2,347.4 L403.9,341.3 L401.7,339.8 L402.6,339.4 L405.4,336.8 L406.3,338.9 L412.9,337.1 L413.7,338.3 L414.6,339.5 L412.5,339.8 L412.1,345.8 L410.6,345.3 L407.5,347.2 Z",LA,22079 1230,47023,0.47,0.40,Chester,"M459.0,265.1 L460.6,266.3 L462.5,266.4 L462.7,267.6 L462.7,267.6 L462.7,267.6 L462.7,267.6 L462.8,267.8 L462.7,268.3 L458.9,268.9 L457.1,271.0 L456.8,269.5 L456.1,268.0 L458.3,266.8 Z",TN,47023 1231,47071,0.49,0.48,Hardin,"M462.7,267.6 L462.7,267.6 L462.7,267.6 L462.7,267.6 L462.7,267.6 L462.7,267.6 Z M462.7,268.3 L462.8,267.8 L462.7,267.6 L462.7,267.6 L462.7,267.6 L464.2,267.6 L464.3,267.4 L465.0,268.1 L467.3,267.7 L468.0,269.3 L468.4,274.1 L465.4,274.3 L465.5,274.5 L464.3,274.6 L463.2,274.7 L463.2,274.7 L463.1,274.7 L463.0,274.7 L462.8,269.8 Z",TN,47071 1232,47077,0.51,0.51,Henderson,"M462.7,267.6 L462.7,267.6 L462.7,267.6 L462.7,267.6 L462.5,266.4 L459.0,265.1 L458.9,264.1 L458.8,261.7 L459.3,261.1 L464.6,260.8 L464.7,264.3 L464.3,267.4 L464.2,267.6 L462.7,267.6 L462.7,267.6 L462.7,267.6 Z",TN,47077 1233,47069,0.50,0.50,Hardeman,"M456.1,268.0 L456.8,269.5 L457.1,271.0 L457.2,273.0 L457.4,275.2 L457.1,275.2 L456.9,275.2 L455.5,275.4 L454.2,275.5 L452.8,275.6 L451.7,275.7 L451.6,272.6 L451.4,268.9 L451.4,268.3 L452.8,268.2 L455.4,268.1 Z",TN,47069 1234,04003,0.50,0.50,Cochise,"M171.4,308.8 L171.6,308.8 L172.4,309.0 L170.2,323.6 L169.7,327.2 L166.8,326.7 L149.5,324.1 L150.3,319.4 L150.7,317.5 L151.9,310.5 L152.6,305.9 L167.0,308.1 Z",AZ,4003 1235,35023,0.84,0.89,Hidalgo,"M172.4,309.0 L172.6,307.7 L173.2,303.1 L179.8,308.5 L178.5,319.4 L182.9,320.0 L182.8,320.7 L182.8,321.3 L181.7,328.8 L169.7,327.2 L170.2,323.6 Z",NM,35023 1236,40009,0.50,0.51,Beckham,"M305.9,276.0 L304.4,277.4 L303.5,277.4 L302.8,277.3 L302.9,275.5 L302.9,274.8 L303.1,270.8 L303.1,270.8 L308.9,271.0 L311.9,269.7 L311.9,270.3 L311.9,270.4 L311.7,274.8 L311.7,276.3 L311.0,276.2 L311.0,276.3 Z",OK,40009 1237,40055,0.54,0.44,Greer,"M305.9,276.0 L311.0,276.2 L311.0,276.3 L312.1,277.5 L313.1,281.3 L310.6,282.8 L307.2,282.7 L306.5,279.0 L304.4,277.4 Z",OK,40055 1238,40057,0.52,0.50,Harmon,"M304.4,277.4 L306.5,279.0 L307.2,282.7 L307.1,286.3 L304.6,286.2 L303.6,285.0 L302.5,285.2 L302.5,285.2 L302.6,282.1 L302.6,282.1 L302.7,280.9 L302.8,277.3 L303.5,277.4 Z",OK,40057 1239,48075,0.51,0.50,Childress,"M302.5,285.2 L302.5,285.2 L302.4,286.8 L302.3,289.4 L297.1,289.1 L296.5,289.1 L296.7,286.0 L296.9,281.8 L302.0,282.1 L302.6,282.1 L302.6,282.1 Z",TX,48075 1240,29011,0.50,0.50,Barton,"M383.6,235.6 L383.6,238.1 L383.6,239.4 L379.9,239.4 L376.5,239.3 L376.5,239.3 L376.4,237.1 L376.4,234.5 L381.1,234.5 L383.6,234.6 L383.6,235.0 Z",MO,29011 1241,29097,0.50,0.50,Jasper,"M379.9,239.4 L383.6,239.4 L383.6,240.4 L384.0,240.4 L384.0,242.3 L384.0,244.5 L384.0,244.5 L381.3,244.5 L376.5,244.5 L376.5,242.9 L376.5,239.8 L376.5,239.7 L376.5,239.3 L376.5,239.3 Z",MO,29097 1242,29039,0.50,0.50,Cedar,"M383.6,235.6 L383.6,235.0 L383.6,234.6 L383.6,232.6 L383.6,230.2 L387.0,230.3 L389.5,231.3 L389.8,232.7 L389.7,235.6 L387.3,235.5 Z",MO,29039 1243,05103,0.50,0.50,Ouachita,"M398.6,298.9 L399.6,299.0 L401.5,298.3 L405.1,298.3 L405.9,298.3 L403.5,303.5 L406.4,305.6 L405.1,305.8 L400.6,305.6 L398.6,305.6 L398.6,304.4 L398.6,301.4 Z",AR,5103 1244,39037,0.49,0.50,Darke,"M506.1,182.6 L506.7,186.4 L506.8,187.2 L506.5,187.3 L506.0,187.3 L504.3,187.6 L501.8,187.9 L501.7,186.6 L501.7,186.4 L501.4,183.3 L501.1,181.3 L501.1,181.1 L501.1,180.6 L501.1,180.6 L503.7,180.3 L505.7,180.0 L506.0,181.6 Z",OH,39037 1245,18075,0.48,0.50,Jay,"M501.1,181.1 L501.1,181.3 L498.4,181.7 L495.9,182.0 L495.8,181.3 L495.7,180.8 L495.9,180.8 L495.6,177.7 L495.6,177.7 L496.3,177.6 L497.3,177.4 L498.7,177.2 L500.6,177.0 L500.9,179.8 L501.1,180.6 L501.1,180.6 Z",IN,18075 1246,46045,0.11,0.47,Edmunds,"M313.8,106.4 L313.9,104.7 L314.1,100.5 L324.3,100.9 L325.7,101.0 L325.7,101.0 L325.6,106.8 L324.1,106.8 L315.4,106.5 L315.0,106.4 Z",SD,46045 1247,46129,0.49,0.50,Walworth,"M314.1,100.5 L313.9,104.7 L313.8,106.4 L311.1,106.3 L307.3,106.1 L307.2,103.8 L306.5,102.2 L304.8,101.1 L305.5,100.1 L308.5,100.3 L314.0,100.5 Z",SD,46129 1248,46041,0.50,0.52,Dewey,"M306.5,102.2 L307.2,103.8 L307.3,106.1 L305.5,109.7 L305.3,111.9 L303.5,114.1 L301.4,113.8 L297.7,114.4 L296.4,113.9 L296.6,109.8 L292.3,109.5 L293.0,103.0 L293.1,101.5 L293.1,101.5 L293.1,101.5 L293.1,101.5 L303.3,102.1 Z",SD,46041 1249,46137,0.96,0.54,Ziebach,"M292.3,109.5 L296.6,109.8 L296.4,113.9 L292.4,115.6 L285.8,117.3 L285.8,117.3 L286.2,110.2 L286.4,108.4 L286.6,105.2 L286.8,101.1 L288.4,101.2 L293.1,101.5 L293.1,101.5 L293.1,101.5 Z",SD,46137 1250,46055,0.12,0.46,Haakon,"M292.4,115.6 L296.4,113.9 L295.5,123.7 L296.9,123.7 L296.7,126.6 L296.5,126.6 L294.4,126.5 L285.1,125.9 L285.5,120.1 L285.8,117.3 L285.8,117.3 L285.8,117.3 Z",SD,46055 1251,28111,0.49,0.50,Perry,"M461.4,343.8 L459.8,343.9 L457.8,344.1 L457.5,342.6 L457.0,335.3 L458.0,335.2 L459.9,335.1 L460.6,335.0 L461.4,334.9 L462.0,342.3 L462.1,342.3 L462.1,342.3 L462.0,342.3 L462.1,342.3 L462.2,343.7 Z",MS,28111 1252,28041,0.50,0.50,Greene,"M467.7,339.8 L467.8,340.6 L468.0,341.8 L465.1,342.0 L462.1,342.3 L462.1,342.3 L462.0,342.3 L462.0,342.3 L461.4,334.9 L465.7,334.6 L467.0,334.5 L467.4,337.4 Z",MS,28041 1253,28039,0.49,0.50,George,"M468.0,341.8 L468.3,344.0 L468.5,346.2 L462.4,346.7 L461.7,346.7 L461.6,345.3 L461.4,343.8 L462.2,343.7 L462.1,342.3 L462.0,342.3 L462.1,342.3 L462.1,342.3 L465.1,342.0 Z",MS,28039 1254,06013,0.94,0.73,Contra Costa,"M23.3,179.9 L23.2,180.6 L23.7,180.9 L23.6,182.6 L23.1,184.5 L17.5,184.6 L13.7,180.4 L15.7,178.1 L16.6,178.5 L17.3,178.8 L22.3,180.9 L23.3,179.8 L23.3,179.9 Z",CA,6013 1255,51087,0.78,0.67,Henrico,"M600.8,211.6 L600.5,210.3 L600.6,209.1 L603.1,209.0 L606.4,210.8 L606.8,211.1 L607.3,211.4 L607.0,212.9 L606.7,213.4 L605.2,213.8 L604.2,212.8 L603.5,210.4 L601.6,211.5 L600.9,211.6 Z",VA,51087 1256,36119,0.64,0.52,Westchester,"M636.0,146.1 L635.4,142.1 L634.0,140.2 L634.0,140.1 L634.0,140.1 L633.9,139.7 L633.7,140.0 L633.5,139.8 L633.4,139.7 L633.4,139.7 L633.4,139.7 L637.5,138.0 L638.6,137.6 L640.0,139.9 L638.8,144.2 L638.2,144.8 L637.7,146.2 L636.9,146.2 Z M633.4,139.7 L633.4,139.6 L633.4,139.7 L633.4,139.7 L633.4,139.7 Z",NY,36119 1257,36087,0.63,0.47,Rockland,"M634.0,140.2 L634.0,140.1 L634.0,140.1 L634.0,140.2 Z M631.5,142.6 L633.4,139.6 L633.4,139.7 L633.5,139.8 L633.7,140.0 L634.8,142.1 L635.6,144.7 L632.3,143.7 L631.3,143.4 L631.3,143.4 L631.1,143.4 L631.0,143.3 Z",NY,36087 1258,36071,0.62,0.53,Orange,"M631.5,142.6 L631.0,143.3 L630.1,143.1 L629.2,142.8 L627.9,142.3 L624.5,141.2 L624.2,140.7 L623.5,140.3 L626.6,138.2 L627.6,136.4 L628.7,135.5 L632.7,135.2 L632.4,136.5 L633.0,137.8 L633.6,138.4 L633.4,139.6 L633.4,139.7 Z",NY,36071 1259,34003,0.62,0.38,Bergen,"M632.3,143.7 L635.6,144.7 L635.8,145.8 L635.4,148.2 L635.0,147.9 L633.5,148.9 L633.5,148.9 L633.5,148.9 L633.6,148.7 L633.6,148.3 L632.9,145.9 L631.3,143.4 Z",NJ,34003 1260,29017,0.48,0.50,Bollinger,"M437.0,242.3 L435.4,241.7 L435.2,237.8 L436.2,237.8 L435.9,233.1 L437.8,232.9 L439.7,232.8 L440.1,239.1 L440.1,240.7 L439.0,242.0 Z",MO,29017 1261,54059,0.49,0.57,Mingo,"M544.9,222.5 L544.6,222.3 L544.3,222.1 L539.5,220.5 L539.0,219.5 L539.2,219.1 L537.6,217.8 L537.7,217.6 L538.8,216.1 L539.5,215.8 L540.2,215.4 L542.4,219.7 L546.1,219.8 L546.3,220.6 L545.7,221.7 L545.1,222.2 L544.9,222.5 Z",WV,54059 1262,54033,0.51,0.49,Harrison,"M557.7,187.9 L558.0,187.7 L558.2,187.1 L560.8,187.2 L562.2,187.7 L562.5,189.6 L563.0,190.1 L562.5,191.4 L562.6,192.4 L562.4,192.6 L561.7,192.7 L559.7,192.5 L557.7,192.3 L557.3,190.3 Z",WV,54033 1263,54049,0.50,0.48,Marion,"M562.2,187.7 L560.8,187.2 L558.2,187.1 L557.9,185.6 L559.0,184.1 L562.1,184.0 L565.3,186.1 L563.6,187.6 Z",WV,54049 1264,37077,0.58,0.53,Granville,"M591.2,238.9 L590.4,238.7 L590.0,236.3 L589.1,231.5 L589.1,231.3 L589.4,231.2 L589.9,231.1 L592.9,230.6 L593.6,230.4 L593.1,232.0 L594.2,236.6 L593.9,238.2 L594.1,239.2 L592.1,238.7 Z",NC,37077 1265,31179,0.50,0.50,Wayne,"M340.9,160.2 L340.9,159.9 L341.0,155.8 L343.6,155.9 L345.3,155.9 L345.3,157.3 L347.7,157.4 L347.7,158.3 L347.7,160.3 L346.7,160.3 L345.2,160.2 L342.8,160.2 Z",NE,31179 1266,31139,0.50,0.50,Pierce,"M341.0,155.8 L340.9,159.9 L340.9,160.2 L338.0,160.1 L335.1,160.1 L335.1,158.4 L335.2,154.3 L336.9,154.3 L339.5,154.3 L341.0,154.4 Z",NE,31139 1267,45005,0.42,0.33,Allendale,"M564.6,300.3 L563.1,298.2 L561.8,295.6 L560.8,295.2 L560.7,295.0 L561.5,293.8 L566.5,293.6 L567.6,294.6 L568.3,294.9 L566.4,296.7 Z",SC,45005 1268,38051,0.05,0.47,McIntosh,"M322.4,89.2 L322.7,89.2 L322.8,89.2 L322.7,92.4 L322.6,95.0 L316.9,94.8 L314.2,94.7 L313.7,94.6 L312.3,94.6 L312.4,91.9 L312.6,88.8 L316.4,89.0 Z",ND,38051 1269,31023,0.50,0.49,Butler,"M346.5,177.8 L346.4,177.8 L343.1,177.7 L340.6,177.7 L340.7,174.2 L340.7,171.8 L340.7,171.8 L340.7,171.8 L341.7,171.8 L342.2,172.1 L343.1,172.2 L346.6,170.9 L346.6,170.9 L346.6,170.9 L346.5,174.1 Z",NE,31023 1270,31185,0.50,0.50,York,"M334.8,177.6 L337.7,177.6 L340.6,177.7 L340.6,179.5 L340.5,183.5 L340.5,183.5 L340.5,183.5 L340.5,183.5 L336.8,183.5 L334.7,183.4 L334.7,183.4 L334.7,183.4 L334.8,180.3 Z",NE,31185 1271,31143,0.50,0.49,Polk,"M340.6,177.7 L337.7,177.6 L334.8,177.6 L334.8,177.6 L334.8,175.5 L335.6,174.4 L337.8,172.8 L338.8,172.4 L340.7,171.8 L340.7,171.8 L340.7,171.8 L340.7,174.2 Z",NE,31143 1272,31141,0.50,0.50,Platte,"M342.2,172.1 L341.7,171.8 L340.7,171.8 L340.7,171.8 L340.7,171.8 L340.7,171.8 L338.8,172.4 L337.8,172.8 L337.8,171.8 L336.5,171.8 L336.5,169.6 L334.9,169.6 L334.9,168.7 L335.0,165.9 L339.6,166.0 L340.8,166.0 L341.6,166.0 L342.3,166.0 L342.2,171.9 Z",NE,31141 1273,37185,0.56,0.57,Warren,"M601.1,229.5 L601.3,231.6 L600.7,234.8 L598.8,234.4 L596.5,234.6 L596.7,233.8 L595.3,230.0 L596.3,229.8 L599.0,229.3 L600.0,229.1 L601.0,228.9 L601.0,229.1 Z",NC,37185 1274,37069,0.45,0.42,Franklin,"M596.5,234.6 L598.8,234.4 L600.7,234.8 L599.3,239.3 L598.6,241.8 L597.7,240.6 L594.1,239.2 L593.9,238.2 L594.2,236.6 L595.3,236.5 Z",NC,37069 1275,10005,0.48,0.49,Sussex,"M622.5,189.8 L622.4,189.2 L622.2,188.6 L621.8,187.4 L621.3,185.4 L623.4,184.9 L626.1,182.3 L629.5,184.1 L631.4,189.6 L631.3,189.6 L631.2,189.7 L630.8,189.6 L630.9,189.7 L629.0,190.2 L627.5,190.5 L623.0,191.4 Z",DE,10005 1276,29175,0.50,0.51,Randolph,"M405.9,207.0 L405.2,207.0 L404.4,207.0 L403.5,206.7 L400.8,205.9 L400.7,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L400.8,201.1 L403.0,201.0 L405.9,201.0 L405.9,203.0 L405.9,205.3 L405.9,205.3 L405.9,206.9 Z",MO,29175 1277,29137,0.49,0.51,Monroe,"M405.9,203.0 L405.9,201.0 L405.9,201.0 L407.3,200.0 L411.7,199.8 L413.1,199.8 L413.4,199.8 L413.5,200.7 L413.6,205.1 L408.8,205.3 L405.9,205.3 L405.9,205.3 Z",MO,29137 1278,20035,0.50,0.50,Cowley,"M342.6,237.5 L346.7,237.5 L351.0,237.6 L351.0,239.4 L351.0,240.5 L350.9,241.3 L350.9,243.4 L350.9,244.9 L350.9,245.6 L350.9,245.6 L348.1,245.5 L347.9,245.5 L346.8,245.5 L342.6,245.5 L342.6,240.1 Z",KS,20035 1279,20015,0.50,0.50,Butler,"M351.0,237.6 L346.7,237.5 L342.6,237.5 L342.7,231.7 L342.7,230.2 L342.7,229.6 L342.7,227.3 L345.7,227.3 L346.9,227.3 L349.5,227.3 L351.1,227.4 L351.0,232.2 L351.0,235.4 L351.0,237.2 Z",KS,20015 1280,26105,0.49,0.50,Mason,"M478.3,118.8 L478.7,121.8 L479.0,124.7 L477.5,124.9 L474.2,125.2 L472.7,120.9 L474.0,119.1 L476.1,119.0 Z",MI,26105 1281,17007,0.50,0.50,Boone,"M445.5,150.1 L447.2,150.0 L447.6,150.0 L447.6,150.0 L448.0,150.0 L448.4,149.9 L448.6,151.6 L448.9,155.6 L447.7,155.7 L446.0,155.9 L445.9,154.3 L445.5,150.1 L445.5,150.1 Z",IL,17007 1282,17201,0.50,0.51,Winnebago,"M445.5,150.1 L445.5,150.1 L445.9,154.3 L446.0,155.9 L443.1,156.1 L440.3,155.5 L440.0,152.6 L439.8,150.5 L439.8,150.5 L440.1,150.5 L440.3,150.4 L441.6,150.4 L445.5,150.1 Z",IL,17201 1283,55127,0.50,0.50,Walworth,"M447.3,147.1 L447.1,144.2 L449.1,144.0 L450.0,143.9 L452.4,143.7 L452.9,143.7 L453.0,145.1 L453.2,147.6 L453.4,149.4 L453.4,149.5 L449.7,149.8 L448.4,149.9 L448.0,150.0 L447.6,150.0 L447.6,150.0 Z",WI,55127 1284,45007,0.53,0.48,Anderson,"M544.2,268.2 L544.2,268.2 L544.2,268.2 Z M544.2,268.2 L544.2,268.2 L544.2,268.2 Z M544.2,268.2 L544.8,269.0 L545.1,271.4 L547.4,273.4 L547.4,273.4 L547.4,273.4 L547.4,273.4 L547.4,273.4 L545.4,275.6 L542.2,278.9 L542.0,277.9 L541.6,277.6 L539.3,274.6 L538.1,274.9 L538.8,273.8 L539.7,272.5 L539.7,272.4 L539.8,272.3 L539.8,272.3 L539.8,272.2 L540.4,271.3 L544.2,268.2 L544.2,268.2 L544.2,268.2 L544.2,268.2 Z",SC,45007 1285,45077,0.43,0.43,Pickens,"M544.2,268.2 L544.2,268.2 L540.4,271.3 L539.8,272.2 L538.7,270.3 L538.0,265.1 L539.5,264.4 L539.8,264.7 L542.2,264.2 L544.2,268.2 L544.2,268.2 L544.2,268.2 L544.2,268.2 L544.2,268.2 Z M539.8,272.3 L539.7,272.4 L539.7,272.5 L539.5,272.4 Z",SC,45077 1286,18011,0.50,0.50,Boone,"M482.4,190.0 L480.2,190.2 L477.7,190.5 L477.6,189.0 L477.3,186.2 L480.4,185.9 L483.1,185.6 L483.5,189.6 L483.6,189.8 L483.3,189.9 Z",IN,18011 1287,18097,0.52,0.50,Marion,"M483.0,194.8 L482.5,191.0 L482.4,190.0 L483.3,189.9 L483.6,189.8 L484.9,189.7 L487.4,189.4 L487.3,190.4 L487.7,193.2 L487.7,193.9 L487.8,194.2 L485.7,194.5 L483.9,194.7 L483.4,194.8 Z",IN,18097 1288,18023,0.50,0.49,Clinton,"M477.3,186.2 L477.2,185.9 L477.2,185.6 L477.0,183.7 L476.9,182.0 L476.9,182.0 L476.9,182.0 L479.7,181.7 L480.9,181.6 L481.8,181.5 L482.7,182.4 L482.9,183.8 L483.0,185.0 L483.0,185.3 L483.1,185.6 L480.4,185.9 Z M476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 Z",IN,18023 1289,18015,0.48,0.49,Carroll,"M476.9,182.0 L476.6,179.9 L475.7,180.0 L475.7,177.0 L477.8,176.8 L480.5,177.3 L480.7,179.4 L480.8,180.5 L480.9,181.6 L479.7,181.7 L476.9,182.0 L476.9,182.0 L476.9,182.0 L476.9,182.0 Z",IN,18015 1290,18057,0.50,0.50,Hamilton,"M483.1,185.6 L483.0,185.3 L483.0,185.0 L484.6,184.8 L487.8,184.4 L487.8,184.4 L488.0,185.9 L488.4,189.0 L488.4,189.3 L487.4,189.4 L484.9,189.7 L483.6,189.8 L483.5,189.6 Z",IN,18057 1291,18095,0.50,0.50,Madison,"M491.2,181.3 L491.5,184.1 L491.8,186.4 L491.9,187.6 L492.0,188.6 L490.8,188.7 L488.4,189.0 L488.0,185.9 L487.8,184.4 L487.7,183.0 L487.5,181.8 L489.7,181.5 Z",IN,18095 1292,17027,0.50,0.49,Clinton,"M441.8,213.4 L443.1,213.4 L446.3,213.1 L446.4,213.1 L447.8,213.1 L448.0,215.2 L448.1,217.0 L445.2,217.0 L440.8,219.0 L440.6,216.7 L440.5,215.0 L442.0,214.9 Z",IL,17027 1293,16067,0.48,0.50,Minidoka,"M137.6,127.2 L140.6,126.3 L141.7,120.6 L145.3,121.3 L142.9,129.9 L140.3,131.6 L136.9,131.0 L137.6,127.7 Z",ID,16067 1294,16031,0.46,0.80,Cassia,"M136.9,131.0 L140.3,131.6 L142.9,129.9 L144.2,129.8 L145.7,131.2 L148.4,132.3 L147.6,136.6 L147.1,139.2 L147.0,139.5 L147.0,139.7 L146.9,140.2 L146.8,140.6 L146.6,142.0 L146.6,142.0 L146.6,142.0 L146.6,142.0 L146.6,142.0 L135.6,140.1 L133.8,139.6 L133.5,139.6 L130.8,139.0 L132.2,132.0 L136.0,131.0 L136.3,130.9 Z",ID,16031 1295,16053,0.48,0.55,Jerome,"M137.6,127.2 L137.6,127.7 L136.9,131.0 L136.3,130.9 L136.0,131.0 L134.4,131.2 L129.0,127.4 L129.6,124.1 L129.9,124.2 L136.4,126.2 Z",ID,16053 1296,28127,0.50,0.48,Simpson,"M447.8,325.6 L448.8,325.5 L449.3,330.0 L448.4,330.1 L447.8,330.2 L446.6,330.4 L444.7,330.6 L444.4,330.7 L442.5,330.9 L442.3,329.2 L440.7,326.0 L444.9,325.8 L447.8,325.6 Z",MS,28127 1297,28121,0.47,0.50,Rankin,"M447.8,325.6 L444.9,325.8 L440.7,326.0 L440.3,324.0 L442.7,320.0 L445.4,316.7 L446.4,316.6 L447.5,320.5 L447.6,322.6 L447.7,324.1 L447.8,325.6 Z",MS,28121 1298,48345,0.50,0.50,Motley,"M287.8,288.7 L288.9,288.7 L289.1,288.7 L293.6,289.0 L295.1,289.0 L295.0,291.5 L294.7,297.0 L294.7,297.0 L294.7,297.0 L291.6,296.9 L287.4,296.7 L287.4,296.0 Z",TX,48345 1299,48101,0.50,0.50,Cottle,"M294.7,297.0 L295.0,291.5 L295.1,289.0 L295.4,289.0 L296.5,289.1 L297.1,289.1 L302.3,289.4 L302.3,290.1 L302.3,290.9 L301.6,290.7 L301.3,297.3 L296.7,297.1 L294.7,297.0 L294.7,297.0 Z",TX,48101 1300,48125,0.50,0.50,Dickens,"M294.7,297.0 L294.6,299.2 L294.3,304.4 L292.8,304.3 L287.0,304.0 L287.1,302.3 L287.4,296.7 L291.6,296.9 L294.7,297.0 Z",TX,48125 1301,48153,0.50,0.50,Floyd,"M287.8,288.7 L287.4,296.0 L287.4,296.7 L284.4,296.5 L280.1,296.3 L280.4,289.7 L280.5,288.2 L281.4,288.3 L281.8,288.3 L286.9,288.6 Z",TX,48153 1302,41039,0.62,0.60,Lane,"M44.8,89.6 L43.0,90.1 L42.5,92.0 L35.3,89.9 L31.5,86.9 L32.4,83.0 L25.2,77.8 L21.0,77.9 L21.7,76.1 L23.6,71.5 L25.6,72.1 L27.5,72.6 L29.6,73.3 L34.3,74.7 L37.1,77.0 L50.2,79.9 L49.8,82.6 L46.3,85.8 Z",OR,41039 1303,40137,0.50,0.50,Stephens,"M328.2,290.6 L328.3,287.0 L328.2,287.0 L328.3,284.1 L329.0,284.1 L330.3,284.1 L334.9,284.2 L336.3,284.2 L336.3,287.2 L336.2,290.1 L336.2,290.8 L330.1,290.7 Z",OK,40137 1304,40033,0.57,0.52,Cotton,"M328.2,287.0 L328.3,287.0 L328.2,290.6 L328.1,292.3 L328.1,293.1 L325.0,292.8 L324.1,294.0 L323.2,294.3 L321.6,292.7 L321.7,289.7 L321.0,288.5 L326.1,287.9 Z",OK,40033 1305,48485,0.51,0.51,Wichita,"M321.6,292.7 L323.2,294.3 L324.1,294.0 L324.1,295.9 L324.0,298.2 L318.2,298.0 L316.6,298.0 L316.8,292.2 L316.8,291.6 L318.1,292.7 Z",TX,48485 1306,26155,0.50,0.50,Shiawassee,"M504.0,139.3 L502.8,139.4 L501.5,139.6 L501.2,138.0 L500.7,133.9 L500.7,133.8 L500.7,133.8 L503.1,133.4 L506.0,133.0 L506.4,136.0 L506.9,138.8 L505.1,139.1 Z",MI,26155 1307,20089,0.50,0.50,Jewell,"M325.7,194.9 L326.9,194.9 L328.7,194.9 L330.2,195.0 L333.1,195.0 L333.0,198.0 L333.0,200.9 L333.0,201.8 L333.0,202.2 L333.0,202.3 L329.1,202.2 L325.8,202.1 L325.6,202.1 L325.5,202.1 L325.7,197.9 Z",KS,20089 1308,20123,0.50,0.50,Mitchell,"M332.9,206.7 L332.9,207.2 L332.9,208.1 L329.6,208.1 L325.6,208.0 L325.7,204.9 L325.8,202.1 L329.1,202.2 L333.0,202.3 L333.0,202.3 L333.0,202.3 Z",KS,20123 1309,20029,0.50,0.50,Cloud,"M332.9,206.7 L333.0,202.3 L333.0,202.3 L333.0,201.8 L333.0,200.9 L337.3,201.0 L340.3,201.0 L340.3,201.3 L340.2,202.5 L340.2,204.8 L340.2,206.8 L339.5,206.8 Z",KS,20029 1310,28091,0.50,0.51,Marion,"M450.2,343.1 L449.7,343.1 L449.1,343.2 L448.7,343.2 L447.5,343.3 L444.5,340.5 L444.2,337.8 L444.1,336.9 L445.3,336.8 L447.2,336.0 L449.7,335.8 L449.9,339.5 Z",MS,28091 1311,17085,0.50,0.52,Jo Daviess,"M427.1,151.2 L430.5,151.0 L433.3,150.8 L433.6,154.5 L433.8,156.0 L430.4,156.2 L428.8,156.4 L427.9,155.9 L426.7,153.4 L424.4,151.9 L424.4,151.4 L425.7,151.3 Z",IL,17085 1312,18059,0.53,0.50,Hancock,"M487.4,189.4 L488.4,189.3 L488.4,189.0 L490.8,188.7 L492.0,188.6 L491.9,189.8 L492.1,191.2 L491.6,191.3 L491.8,192.8 L490.0,192.9 L487.7,193.2 L487.3,190.4 Z",IN,18059 1313,51620,0.69,0.58,Franklin,"M613.3,223.6 L613.4,223.6 L613.7,224.5 L612.9,224.3 Z",VA,51620 1314,48329,0.50,0.50,Midland,"M267.9,324.9 L268.4,324.9 L269.0,325.0 L271.5,325.1 L275.2,325.4 L275.1,326.7 L274.8,332.7 L271.4,332.5 L267.4,332.2 L267.5,330.7 Z",TX,48329 1315,20101,0.50,0.50,Lane,"M296.2,222.8 L296.3,219.8 L296.5,215.5 L298.2,215.6 L302.3,215.8 L302.2,216.8 L302.0,223.1 L299.4,223.0 Z",KS,20101 1316,20171,0.50,0.50,Scott,"M296.5,215.5 L296.3,219.8 L296.2,222.8 L293.3,222.6 L290.7,222.5 L290.6,222.5 L290.4,222.5 L290.5,219.7 L290.8,215.2 L293.2,215.4 L294.8,215.4 L295.7,215.5 Z",KS,20171 1317,30049,0.86,0.78,Lewis and Clark,"M177.3,63.5 L177.2,64.7 L178.7,66.3 L176.6,69.3 L174.8,69.0 L172.0,68.5 L168.3,70.4 L169.1,67.3 L167.0,63.0 L164.0,62.5 L165.1,56.8 L162.1,56.2 L162.5,49.1 L162.6,46.9 L165.4,43.4 L165.4,47.9 L172.0,52.4 L174.6,52.7 L173.7,58.1 L176.4,59.7 Z",MT,30049 1318,17199,0.50,0.51,Williamson,"M448.8,227.7 L451.5,227.5 L454.7,227.2 L454.9,230.1 L455.0,231.6 L453.3,231.8 L450.6,232.0 L450.1,232.1 L449.1,232.1 L448.9,229.0 Z",IL,17199 1319,30029,0.48,0.66,Flathead,"M143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L145.5,34.8 L146.6,27.5 L149.4,28.0 L149.4,22.2 L156.8,23.8 L159.0,30.8 L161.9,32.5 L162.5,36.7 L163.3,39.3 L165.6,40.4 L166.7,43.3 L165.4,43.4 L162.6,46.9 L162.5,49.1 L160.5,48.7 L158.9,48.3 L157.3,48.0 L157.0,47.9 L157.6,43.2 L155.7,39.9 L153.7,41.0 L148.6,40.0 L146.7,42.6 L142.7,40.3 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 Z",MT,30029 1320,20189,0.50,0.50,Stevens,"M283.8,236.8 L284.0,236.8 L284.2,236.8 L286.6,237.0 L290.0,237.2 L290.2,237.2 L290.3,237.2 L290.1,240.8 L290.0,243.7 L288.5,243.6 L283.4,243.4 L283.7,239.3 Z",KS,20189 1321,21067,0.56,0.55,Fayette,"M508.0,217.5 L508.0,217.2 L510.7,215.6 L511.2,217.1 L512.6,217.7 L512.2,218.9 L512.3,220.7 L512.0,221.3 L511.1,221.6 L510.3,220.2 L507.8,219.4 L507.8,219.2 Z",KY,21067 1322,21151,0.49,0.50,Madison,"M511.1,221.6 L512.0,221.3 L512.3,220.7 L513.3,220.9 L515.7,220.9 L516.0,224.0 L516.2,225.7 L515.2,226.0 L514.9,226.6 L514.9,226.6 L514.0,226.9 L512.9,226.6 L511.2,224.2 L510.0,223.1 L510.8,222.4 Z",KY,21151 1323,21203,0.55,0.41,Rockcastle,"M514.9,226.6 L516.2,229.2 L516.1,229.9 L514.8,231.4 L514.5,232.9 L512.1,231.1 L511.3,230.4 L511.5,228.5 L511.7,227.6 L512.7,227.7 L512.9,226.6 L514.0,226.9 L514.9,226.6 Z",KY,21203 1324,46013,0.50,0.50,Brown,"M325.9,95.1 L329.5,95.3 L334.3,95.4 L334.6,95.4 L334.7,95.4 L334.6,98.2 L334.5,101.3 L334.5,103.1 L334.4,107.1 L328.3,106.9 L325.6,106.8 L325.6,106.8 L325.6,106.8 L325.7,101.0 L325.7,101.0 L325.8,97.6 Z",SD,46013 1325,54001,0.58,0.53,Barbour,"M562.6,192.4 L562.5,191.4 L563.0,190.1 L564.8,189.7 L566.3,188.6 L567.0,188.9 L567.6,189.5 L567.6,191.3 L567.8,191.4 L567.3,193.9 L564.9,194.8 L565.0,193.3 Z",WV,54001 1326,47055,0.49,0.48,Giles,"M478.4,266.9 L478.4,266.0 L478.4,266.0 L478.4,266.0 L478.4,266.0 L479.6,265.5 L481.8,265.9 L482.7,267.6 L483.9,268.3 L484.1,271.0 L484.2,272.8 L480.8,273.1 L479.1,273.2 L479.0,273.2 L478.9,273.2 L478.6,270.3 Z",TN,47055 1327,47099,0.48,0.49,Lawrence,"M478.4,266.9 L478.6,270.3 L478.9,273.2 L476.0,273.5 L473.6,273.7 L473.8,272.7 L473.4,267.0 L475.1,265.9 L477.2,265.9 L478.1,266.1 L478.4,266.0 L478.4,266.0 L478.4,266.0 Z",TN,47099 1328,31045,0.50,0.50,Dawes,"M273.9,151.3 L271.1,151.1 L265.6,150.7 L265.1,150.7 L265.6,141.2 L266.8,141.3 L271.8,141.7 L273.2,141.8 L274.4,141.9 L274.3,145.5 Z",NE,31045 1329,31013,0.52,0.50,Box Butte,"M265.6,150.7 L271.1,151.1 L273.9,151.3 L273.8,157.2 L274.3,158.7 L272.2,158.6 L266.0,158.1 L265.7,158.0 L265.5,158.0 L265.1,156.5 Z",NE,31013 1330,42109,0.50,0.51,Snyder,"M600.3,154.9 L600.1,157.5 L599.4,159.2 L598.1,158.9 L594.9,159.3 L594.0,159.3 L593.6,157.6 L598.5,155.2 Z",PA,42109 1331,48469,0.49,0.56,Victoria,"M338.5,382.3 L342.6,379.0 L343.4,378.3 L343.8,378.8 L344.0,379.0 L345.6,379.8 L348.2,384.8 L348.2,384.9 L348.2,384.9 L348.2,385.0 L348.3,385.1 L344.0,387.1 L344.6,388.5 L342.3,387.7 L340.6,387.6 L340.7,383.9 Z",TX,48469 1332,48239,0.92,0.94,Jackson,"M348.2,384.9 L348.2,384.9 L348.2,385.0 L348.2,384.9 Z M348.5,375.9 L348.9,376.3 L353.4,380.8 L353.2,383.5 L353.1,385.7 L352.6,385.7 L352.3,385.7 L352.2,384.7 L351.6,385.0 L351.6,385.2 L349.4,385.1 L349.3,385.0 L349.3,385.0 L349.2,384.8 L349.0,384.8 L348.5,385.0 L348.2,384.8 L345.6,379.8 L344.0,379.0 L344.9,378.2 L348.2,375.7 L348.4,375.9 Z M352.0,385.0 L352.0,385.0 L352.0,385.2 Z",TX,48239 1333,26147,0.59,0.53,St. Clair,"M517.3,131.1 L519.7,130.6 L523.4,129.9 L524.7,132.3 L523.9,140.0 L521.8,138.2 L521.1,134.9 L518.1,135.4 L517.6,132.7 Z",MI,26147 1334,31173,0.50,0.50,Thurston,"M347.7,160.3 L347.7,158.3 L347.7,157.4 L348.9,157.4 L348.9,157.1 L351.1,157.2 L353.5,157.2 L353.5,157.2 L353.5,157.2 L353.9,158.0 L353.5,158.2 L354.6,160.0 L354.6,161.0 L354.1,161.6 L351.0,161.6 L351.0,160.3 Z",NE,31173 1335,50011,0.53,0.56,Franklin,"M627.7,77.3 L635.1,75.3 L635.1,75.3 L636.1,78.1 L635.8,79.1 L633.8,79.5 L632.4,82.6 L631.0,82.6 L628.5,82.0 L628.2,78.9 Z",VT,50011 1336,51067,0.54,0.52,Franklin,"M576.9,228.2 L575.5,229.6 L571.8,230.2 L571.3,229.5 L569.0,229.4 L570.2,227.1 L569.7,225.0 L571.8,224.3 L573.1,222.6 L574.9,222.9 L577.0,225.0 L576.9,225.7 Z",VA,51067 1337,40011,0.50,0.50,Blaine,"M327.8,266.6 L326.4,266.5 L326.3,269.4 L323.9,269.4 L322.1,269.3 L321.9,269.3 L322.1,264.9 L322.0,263.5 L322.2,259.0 L324.3,259.1 L328.0,259.2 L327.9,263.6 Z",OK,40011 1338,40039,0.05,0.47,Custer,"M322.1,264.9 L321.9,269.3 L322.1,269.3 L322.0,269.8 L322.0,270.8 L319.1,270.7 L311.9,270.4 L311.9,270.3 L311.9,269.7 L311.7,269.0 L311.9,264.6 L318.0,264.8 Z",OK,40039 1339,54093,0.50,0.49,Tucker,"M567.8,191.4 L567.6,191.3 L567.6,189.5 L569.1,188.5 L571.9,189.3 L571.9,189.3 L574.4,189.0 L574.2,192.8 L568.5,192.6 Z",WV,54093 1340,55023,0.53,0.48,Crawford,"M416.7,136.4 L422.3,136.1 L423.2,136.0 L423.3,136.8 L423.5,140.3 L418.8,143.5 L417.6,143.7 L417.4,142.8 L417.3,142.1 L418.6,139.1 Z",WI,55023 1341,19157,0.50,0.50,Poweshiek,"M403.2,169.2 L401.3,169.2 L398.8,169.3 L398.7,167.8 L398.5,163.4 L403.4,163.2 L404.4,163.2 L404.4,165.6 L404.6,169.1 L403.4,169.2 Z",IA,19157 1342,19123,0.50,0.50,Mahaska,"M398.8,169.3 L401.3,169.2 L403.2,169.2 L403.2,169.3 L403.4,175.0 L403.4,175.0 L401.7,175.1 L400.5,175.1 L400.5,175.1 L400.5,175.1 L399.1,175.2 L397.6,175.2 L397.6,175.2 L397.5,173.3 L397.4,169.4 L398.3,169.4 Z",IA,19123 1343,19125,0.50,0.50,Marion,"M397.6,175.2 L395.1,175.3 L394.7,175.3 L393.3,175.4 L391.8,175.4 L391.7,172.2 L391.6,169.9 L391.6,169.7 L391.6,169.6 L395.3,169.5 L397.4,169.4 L397.5,173.3 L397.6,175.2 Z",IA,19125 1344,19051,0.50,0.49,Davis,"M400.7,179.5 L404.0,179.4 L406.5,179.3 L406.7,182.9 L406.7,184.3 L405.2,184.4 L404.6,184.4 L402.8,184.5 L400.9,184.7 L400.8,181.7 Z",IA,19051 1345,19179,0.50,0.50,Wapello,"M406.5,179.3 L404.0,179.4 L400.7,179.5 L400.6,176.1 L400.5,175.1 L400.5,175.1 L401.7,175.1 L403.4,175.0 L403.9,175.0 L406.3,174.9 L406.5,177.6 Z",IA,19179 1346,19135,0.50,0.50,Monroe,"M400.5,175.1 L400.6,176.1 L400.7,179.5 L397.7,179.6 L394.9,179.7 L394.8,177.2 L394.7,175.3 L395.1,175.3 L397.6,175.2 L397.6,175.2 L399.1,175.2 L400.5,175.1 Z",IA,19135 1347,20091,0.50,0.50,Johnson,"M370.3,216.4 L370.3,213.4 L370.3,212.3 L370.8,212.0 L372.2,212.1 L372.7,211.0 L376.2,211.2 L376.2,212.6 L376.2,214.5 L376.2,215.1 L376.2,216.3 L373.4,216.4 Z",KS,20091 1348,20045,0.50,0.50,Douglas,"M370.3,212.3 L370.3,213.4 L370.3,216.4 L365.8,216.4 L364.5,216.4 L364.5,215.6 L364.5,214.2 L364.5,214.2 L364.5,212.3 L364.5,211.1 L366.6,211.5 L368.6,211.3 L368.9,212.3 Z",KS,20045 1349,20059,0.50,0.50,Franklin,"M364.5,216.4 L365.8,216.4 L370.3,216.4 L370.2,217.1 L370.3,222.2 L367.6,222.3 L364.5,222.3 L364.5,221.8 L364.5,221.5 L364.4,217.2 Z",KS,20059 1350,21059,0.55,0.47,Daviess,"M473.2,225.0 L473.5,225.2 L473.6,225.3 L476.4,226.3 L477.4,224.1 L479.2,225.4 L479.8,227.1 L479.9,228.1 L477.2,230.3 L474.1,229.6 L472.1,228.7 L473.8,226.9 Z",KY,21059 1351,21237,0.53,0.60,Wolfe,"M523.4,219.7 L524.9,220.3 L526.8,221.8 L527.1,222.0 L527.1,222.5 L524.8,222.4 L523.6,223.5 L522.2,223.2 L520.9,222.5 L521.2,221.9 L521.7,220.6 L522.9,220.4 Z",KY,21237 1352,21197,0.48,0.45,Powell,"M521.7,220.6 L521.2,221.9 L520.9,222.5 L520.9,222.5 L520.7,222.6 L518.2,222.2 L516.8,221.0 L516.7,219.7 L517.1,219.4 L518.3,219.7 L519.7,219.3 L520.0,219.6 Z",KY,21197 1353,41061,0.72,0.52,Union,"M94.6,79.7 L93.3,78.8 L91.5,78.3 L90.9,72.1 L98.1,71.7 L101.4,65.7 L102.8,69.1 L103.0,75.2 L106.4,80.5 L102.6,81.1 L96.2,78.6 Z",OR,41061 1354,13151,0.50,0.51,Henry,"M521.8,296.2 L522.4,294.7 L522.1,291.2 L522.9,291.1 L523.5,291.0 L524.5,292.3 L525.7,292.8 L527.1,293.3 L527.6,293.9 L525.8,296.5 L525.4,296.7 L524.6,296.1 Z",GA,13151 1355,38041,0.08,0.46,Hettinger,"M287.7,88.8 L281.8,88.4 L276.9,86.7 L277.2,82.4 L277.3,80.8 L281.8,81.2 L287.0,81.5 L287.2,87.4 Z",ND,38041 1356,46105,0.13,0.48,Perkins,"M287.4,93.2 L287.1,97.4 L286.8,101.1 L286.6,105.2 L286.4,108.4 L281.8,108.1 L274.9,107.6 L275.0,106.3 L275.2,104.7 L275.2,104.7 L275.9,96.0 L276.3,92.4 L285.9,93.1 L287.4,93.2 Z",SD,46105 1357,38085,0.78,0.48,Sioux,"M287.4,93.2 L287.4,92.7 L287.5,91.3 L293.5,92.1 L299.1,88.1 L300.5,86.3 L304.4,86.0 L303.7,90.7 L304.9,94.2 L289.9,93.3 Z",ND,38085 1358,42063,0.52,0.49,Indiana,"M575.8,162.5 L575.1,166.5 L574.7,168.4 L568.4,168.0 L568.3,167.3 L570.5,162.7 L570.1,160.4 L573.4,159.9 L575.2,159.6 L575.8,162.5 Z",PA,42063 1359,42021,0.34,0.98,Cambria,"M574.7,168.4 L575.1,166.5 L575.8,162.5 L579.6,161.8 L581.5,161.4 L579.8,165.5 L579.4,168.6 L579.4,168.6 L579.2,169.0 L579.2,170.1 L576.3,170.6 L574.0,170.4 L574.2,170.0 Z",PA,42021 1360,47107,0.38,0.53,McMinn,"M513.7,258.5 L514.1,258.7 L514.6,258.7 L514.6,258.7 L514.6,258.8 L514.4,258.8 L514.6,259.0 L516.9,263.4 L515.7,264.3 L513.4,264.9 L512.9,265.4 L511.7,264.3 L510.6,263.8 L511.0,262.3 L513.2,258.5 L513.4,258.5 Z",TN,47107 1361,26093,0.50,0.50,Livingston,"M504.0,139.3 L505.1,139.1 L506.9,138.8 L508.3,138.6 L509.7,138.4 L510.3,141.3 L510.8,144.2 L507.4,144.8 L505.1,145.1 L505.0,145.1 L505.0,145.1 L504.7,143.1 Z",MI,26093 1362,26075,0.50,0.50,Jackson,"M505.0,145.1 L505.0,145.1 L505.1,145.1 L505.5,148.0 L505.8,151.0 L505.2,151.0 L503.0,151.3 L501.7,151.5 L498.7,151.9 L498.2,149.0 L497.9,146.1 L498.8,145.9 L499.3,145.9 L502.2,145.5 Z",MI,26075 1363,08087,0.50,0.50,Morgan,"M261.2,182.5 L261.2,182.5 L262.7,182.7 L262.6,184.1 L261.9,191.4 L258.9,191.1 L254.6,190.8 L253.2,190.6 L254.0,181.9 Z",CO,8087 1364,42127,0.61,0.47,Wayne,"M615.0,145.6 L615.7,145.0 L614.0,138.8 L613.1,135.4 L612.4,133.0 L613.7,132.7 L613.9,132.7 L615.7,134.6 L617.1,134.5 L618.6,135.8 L619.0,138.3 L618.2,141.3 L616.8,145.1 L616.6,145.1 Z",PA,42127 1365,42069,0.45,0.54,Lackawanna,"M614.0,138.8 L615.7,145.0 L615.0,145.6 L614.6,145.8 L614.1,147.0 L612.4,144.4 L610.3,143.3 L610.3,141.7 L610.9,139.5 L612.6,139.1 Z",PA,42069 1366,40123,0.50,0.50,Pontotoc,"M347.3,280.7 L349.0,280.7 L351.2,280.6 L352.4,280.6 L352.4,283.0 L350.9,284.4 L350.8,287.3 L348.6,287.3 L346.5,287.3 L346.5,285.8 L345.1,285.1 L345.1,283.4 L345.1,281.4 L345.1,281.4 L345.1,279.6 L346.6,279.9 Z",OK,40123 1367,40037,0.50,0.50,Creek,"M357.5,264.7 L355.4,264.7 L355.3,268.4 L352.4,268.3 L349.5,268.3 L349.5,264.8 L349.5,263.3 L349.5,261.3 L349.5,259.6 L349.5,259.5 L353.9,259.6 L357.6,261.1 Z",OK,40037 1368,40081,0.50,0.50,Lincoln,"M349.5,263.3 L349.5,264.8 L349.5,268.3 L349.5,269.8 L349.4,271.3 L346.6,271.3 L342.3,271.2 L342.4,269.5 L342.4,266.8 L342.4,263.9 L342.4,263.2 L346.9,263.2 Z",OK,40081 1369,47175,0.55,0.46,Van Buren,"M504.1,257.2 L504.3,257.3 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.3,258.3 L502.5,261.1 L502.5,261.1 L502.5,261.1 L502.0,261.5 L500.7,261.9 L500.1,260.6 L499.6,257.6 L501.3,257.0 L504.1,257.1 L504.1,257.2 Z",TN,47175 1370,40125,0.50,0.50,Pottawatomie,"M342.3,271.2 L346.6,271.3 L349.4,271.3 L349.4,271.7 L349.4,272.3 L347.3,272.1 L347.3,280.7 L346.6,279.9 L345.1,279.6 L343.9,280.5 L342.2,280.2 L342.2,278.9 L342.3,272.7 L342.3,271.2 Z",OK,40125 1371,09013,0.68,0.52,Tolland,"M648.4,123.5 L650.9,122.9 L652.9,122.4 L653.1,122.3 L653.3,122.3 L652.3,123.8 L653.0,127.8 L652.2,129.3 L651.4,130.2 L649.4,127.2 Z",CT,9013 1372,13003,0.52,0.48,Atkinson,"M545.2,329.9 L545.2,328.3 L543.3,326.1 L547.6,325.8 L550.8,326.0 L550.0,327.6 L550.6,329.1 L549.6,329.2 L546.3,329.7 L545.9,329.8 Z",GA,13003 1373,48145,0.50,0.51,Falls,"M339.5,341.5 L343.8,339.0 L346.4,337.5 L347.1,338.7 L349.3,342.6 L347.1,343.9 L345.9,344.5 L345.9,344.4 L342.4,346.5 L341.7,345.3 Z",TX,48145 1374,20033,0.50,0.50,Comanche,"M317.7,244.9 L314.0,244.8 L311.6,244.7 L311.2,244.7 L310.4,244.6 L310.5,241.4 L310.7,238.3 L313.7,238.4 L317.8,238.5 L317.9,238.5 Z",KS,20033 1375,21113,0.53,0.52,Jessamine,"M511.1,221.6 L510.8,222.4 L510.0,223.1 L508.8,222.6 L507.4,222.6 L507.3,222.3 L507.4,221.8 L507.5,221.3 L507.8,219.4 L510.3,220.2 Z",KY,21113 1376,21171,0.49,0.47,Monroe,"M495.5,244.2 L494.9,244.2 L493.0,244.3 L493.3,243.7 L492.8,242.8 L494.9,240.9 L495.8,240.4 L497.5,240.4 L497.7,240.6 L499.0,241.9 L500.3,243.7 L499.4,243.8 Z",KY,21171 1377,40075,0.49,0.51,Kiowa,"M321.9,276.9 L321.8,278.3 L321.8,281.0 L318.9,280.9 L318.8,285.3 L316.4,285.2 L315.0,284.4 L314.5,280.8 L313.1,281.3 L312.1,277.5 L311.0,276.3 L311.0,276.2 L311.7,276.3 L320.1,276.5 Z",OK,40075 1378,46079,0.50,0.50,Lake,"M347.2,130.8 L346.1,130.7 L344.2,130.7 L342.6,130.7 L341.3,130.7 L341.3,128.5 L341.4,124.9 L342.6,124.9 L344.3,124.9 L344.5,124.9 L347.2,124.9 L347.2,125.9 Z",SD,46079 1379,37033,0.49,0.50,Caswell,"M583.9,237.4 L580.7,237.8 L580.2,237.9 L579.7,234.7 L579.6,233.1 L579.8,233.1 L580.1,233.0 L580.5,232.9 L581.8,232.7 L583.1,232.4 L583.5,232.4 L584.5,232.2 L584.5,232.2 L584.9,234.7 L585.3,237.1 L584.3,237.3 Z",NC,37033 1380,01003,0.61,0.76,Baldwin,"M474.4,346.1 L474.4,345.8 L474.3,345.7 L474.9,340.3 L474.3,338.5 L474.7,338.4 L474.6,337.9 L476.2,337.1 L477.1,335.9 L477.8,335.8 L479.3,336.6 L479.7,340.8 L479.9,340.7 L483.2,345.9 L483.8,349.6 L480.3,353.4 L475.8,349.8 L474.5,346.5 L474.6,346.3 Z M482.2,352.7 L482.2,352.5 L482.5,352.2 L483.2,352.3 Z",AL,1003 1381,12033,0.39,0.87,Escambia,"M482.2,352.7 L483.2,352.3 L482.5,352.2 L484.5,350.0 L483.8,349.6 L483.2,345.9 L479.9,340.7 L484.1,340.3 L486.3,340.1 L484.7,345.0 L486.7,347.8 L484.9,351.8 Z M486.7,351.3 L486.8,351.3 L486.8,351.3 L486.8,351.2 L486.8,351.2 L487.1,351.3 L487.1,351.3 L487.0,351.3 L485.4,351.5 L486.7,351.3 L486.7,351.3 Z M487.4,351.1 L487.6,351.0 L487.7,351.0 L487.8,351.0 L487.8,351.0 L487.8,351.0 L487.9,351.0 L488.5,350.8 L489.1,350.5 L489.4,350.4 L489.7,350.4 L490.4,350.3 L490.8,350.1 L490.8,350.3 L490.9,350.5 L487.1,351.3 L487.1,351.3 Z M487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 Z",FL,12033 1382,51127,0.50,0.52,New Kent,"M607.3,211.4 L606.8,211.1 L606.4,210.8 L607.0,209.7 L607.5,209.1 L609.6,209.6 L612.1,209.9 L612.2,210.3 L612.9,210.7 L611.2,211.6 L611.2,212.5 L608.5,212.0 Z",VA,51127 1383,13053,0.49,0.51,Chattahoochee,"M518.7,310.7 L519.0,310.7 L519.5,310.4 L519.3,311.1 L519.8,315.4 L517.8,315.7 L516.1,315.9 L514.8,314.6 L515.1,313.6 L517.9,312.5 Z",GA,13053 1384,36049,0.47,0.50,Lewis,"M603.6,109.7 L602.9,107.2 L602.6,106.2 L601.1,103.1 L604.3,101.0 L604.5,96.6 L606.3,97.2 L608.2,97.8 L609.2,100.7 L610.8,105.5 L606.5,109.9 Z",NY,36049 1385,18077,0.50,0.53,Jefferson,"M495.7,205.5 L498.3,205.2 L498.8,205.2 L499.1,207.6 L499.3,208.8 L498.6,208.3 L497.5,208.3 L496.2,208.6 L496.5,210.9 L495.6,210.7 L494.7,210.8 L492.9,208.8 L492.8,207.5 L494.6,206.2 Z",IN,18077 1386,51019,0.46,0.47,Bedford,"M577.0,225.0 L574.9,222.9 L573.1,222.6 L572.8,222.0 L572.8,221.2 L573.0,219.6 L576.8,216.7 L577.5,215.9 L577.3,215.2 L577.3,215.2 L578.7,216.5 L581.1,217.1 L580.1,217.8 L580.5,219.1 L580.2,219.9 L578.9,224.4 L578.6,225.4 Z M576.5,220.1 L577.3,220.3 L577.5,219.8 L576.8,219.7 Z",VA,51019 1387,51009,0.49,0.50,Amherst,"M577.3,215.2 L579.0,211.8 L580.2,211.5 L581.6,211.6 L585.0,215.0 L585.0,215.0 L583.9,216.3 L583.4,217.2 L582.8,217.5 L582.6,218.0 L582.1,218.0 L581.1,217.1 L578.7,216.5 L577.3,215.2 Z",VA,51009 1388,51011,0.48,0.54,Appomattox,"M585.0,215.0 L585.5,215.0 L585.5,214.7 L587.4,216.0 L589.0,216.7 L589.1,217.5 L588.4,219.4 L587.7,220.0 L586.6,220.5 L585.3,220.1 L583.4,217.2 L583.9,216.3 L585.0,215.0 Z",VA,51011 1389,51161,0.54,0.43,Roanoke,"M572.8,221.2 L572.8,222.0 L573.1,222.6 L571.8,224.3 L569.7,225.0 L569.1,225.3 L569.1,225.2 L568.5,223.3 L567.3,221.7 L568.7,220.7 L569.5,219.9 L569.5,219.9 L572.6,221.0 Z M570.5,221.7 L569.3,222.2 L570.5,222.4 L570.7,222.4 L570.7,222.4 L570.7,222.4 L570.7,222.4 L572.5,221.6 Z",VA,51161 1390,51775,0.54,0.80,Salem,"M570.5,222.4 L569.3,222.2 L570.5,221.7 L570.7,222.4 L570.7,222.4 L570.7,222.4 L570.7,222.4 L570.7,222.4 Z",VA,51775 1391,35033,0.51,0.49,Mora,"M228.5,255.3 L230.2,253.5 L231.5,251.4 L237.9,252.1 L243.6,253.3 L244.7,257.8 L243.9,260.7 L235.0,260.1 L225.7,257.4 L225.7,257.3 L225.9,255.6 L227.9,255.9 Z",NM,35033 1392,31077,0.50,0.50,Greeley,"M329.2,165.8 L329.2,165.8 L329.1,170.2 L329.1,171.1 L329.1,171.6 L326.4,171.6 L323.4,171.5 L323.3,171.5 L323.3,171.5 L323.3,168.8 L323.4,165.7 L325.7,165.7 Z",NE,31077 1393,31011,0.50,0.50,Boone,"M329.1,170.2 L329.2,165.8 L329.2,165.8 L329.2,164.6 L329.2,162.9 L332.1,163.0 L335.0,163.0 L335.0,165.9 L335.0,165.9 L334.9,168.7 L334.9,169.6 L331.5,170.2 Z",NE,31011 1394,29149,0.50,0.50,Oregon,"M419.5,252.4 L418.3,252.5 L416.5,252.6 L416.2,247.7 L416.4,246.0 L418.8,246.0 L422.2,245.8 L422.2,246.8 L423.7,246.8 L423.7,247.5 L423.8,252.2 L422.4,252.3 L420.1,252.4 L419.9,252.4 Z",MO,29149 1395,47161,0.50,0.47,Stewart,"M470.6,246.4 L471.0,248.1 L471.7,250.9 L468.7,251.8 L466.5,251.6 L466.5,251.6 L466.3,251.5 L465.3,250.3 L465.3,249.3 L465.5,248.6 L464.8,246.3 L467.8,246.3 L469.9,246.5 L470.5,246.5 Z",TN,47161 1396,47083,0.50,0.42,Houston,"M466.5,251.6 L468.7,251.8 L471.7,250.9 L471.8,251.3 L472.8,251.3 L472.8,252.7 L472.3,254.0 L469.1,253.2 L467.1,253.4 L466.9,252.3 Z",TN,47083 1397,42113,0.53,0.55,Sullivan,"M604.8,146.6 L603.6,146.8 L603.2,147.5 L599.1,146.2 L597.6,143.3 L597.9,143.3 L605.1,142.5 L605.1,143.0 L604.9,145.4 L604.9,145.5 Z",PA,42113 1398,42131,0.50,0.50,Wyoming,"M604.9,145.4 L605.1,143.0 L605.1,142.5 L605.0,140.7 L606.0,140.4 L606.3,140.5 L610.9,139.5 L610.3,141.7 L610.3,143.3 L608.3,144.5 Z",PA,42131 1399,18167,0.50,0.50,Vigo,"M467.5,196.8 L468.0,196.8 L469.4,196.6 L470.3,196.5 L471.8,196.4 L471.4,197.9 L471.8,202.3 L469.4,202.5 L467.1,202.7 L467.9,201.1 L467.7,199.0 L467.6,197.9 L467.5,196.8 L467.5,196.8 Z",IN,18167 1400,17045,0.49,0.51,Edgar,"M467.5,196.8 L467.6,197.9 L467.7,199.0 L465.7,199.0 L462.1,199.4 L462.0,198.7 L461.8,196.0 L461.6,194.2 L461.8,192.7 L466.0,192.3 L467.0,192.2 L467.2,193.5 L467.5,196.8 L467.5,196.8 Z",IL,17045 1401,18165,0.56,0.49,Vermillion,"M467.5,196.8 L467.2,193.5 L467.0,192.2 L466.9,190.3 L466.6,187.8 L467.2,188.1 L468.3,188.0 L468.1,189.7 L468.4,190.9 L469.4,192.4 L469.4,196.6 L468.0,196.8 L467.5,196.8 L467.5,196.8 Z",IN,18165 1402,26149,0.47,0.50,St. Joseph,"M485.9,158.7 L486.2,158.0 L485.6,153.5 L490.0,152.9 L491.4,152.8 L491.4,152.8 L491.4,152.8 L491.8,155.5 L492.1,158.0 L491.1,158.1 L487.5,158.5 L486.4,158.6 Z",MI,26149 1403,18039,0.50,0.50,Elkhart,"M485.9,158.7 L486.4,158.6 L487.5,158.5 L487.6,159.5 L488.0,162.4 L488.0,162.4 L488.1,163.1 L488.2,163.9 L486.1,164.1 L483.1,164.4 L483.1,164.3 L483.0,163.7 L482.7,160.6 L482.5,159.0 L484.3,158.9 Z",IN,18039 1404,18087,0.50,0.50,LaGrange,"M493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 Z M487.5,158.5 L491.1,158.1 L492.1,158.0 L493.2,157.8 L493.3,157.8 L493.4,158.9 L493.5,159.8 L493.6,160.5 L493.7,161.2 L493.8,161.6 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L490.2,162.1 L488.0,162.4 L487.6,159.5 Z",IN,18087 1405,48189,0.50,0.50,Hale,"M280.5,288.2 L280.4,289.7 L280.1,296.3 L275.8,296.1 L272.8,295.9 L273.0,291.1 L273.2,287.8 L274.3,287.8 L274.5,287.8 L276.2,288.0 Z",TX,48189 1406,48303,0.50,0.50,Lubbock,"M272.8,295.9 L275.8,296.1 L280.1,296.3 L279.8,301.9 L279.7,303.6 L278.7,303.6 L272.4,303.2 L272.5,301.9 Z",TX,48303 1407,48107,0.50,0.50,Crosby,"M279.7,303.6 L279.8,301.9 L280.1,296.3 L284.4,296.5 L287.4,296.7 L287.1,302.3 L287.0,304.0 L282.4,303.8 Z",TX,48107 1408,27171,0.50,0.49,Wright,"M378.8,111.6 L378.8,107.8 L378.7,106.4 L380.7,105.3 L381.2,104.1 L384.7,106.1 L386.8,106.1 L387.5,106.9 L387.5,106.9 L386.1,107.5 L384.7,111.5 L383.6,111.5 L381.7,111.5 L379.9,111.6 Z",MN,27171 1409,27093,0.50,0.50,Meeker,"M378.7,106.4 L378.8,107.8 L378.8,111.6 L375.9,111.6 L375.9,113.1 L374.3,113.1 L372.8,113.1 L372.8,107.3 L372.7,105.8 L377.2,105.8 Z",MN,27093 1410,39005,0.61,0.46,Ashland,"M531.9,173.0 L531.4,170.1 L529.6,165.9 L529.3,164.7 L530.6,164.5 L531.0,164.4 L532.7,164.2 L532.8,165.4 L533.4,165.3 L533.7,167.1 L534.2,170.7 L533.0,170.9 L533.3,172.5 L533.0,172.6 Z",OH,39005 1411,31119,0.50,0.50,Madison,"M335.1,160.1 L338.0,160.1 L340.9,160.2 L340.9,162.4 L340.8,166.0 L339.6,166.0 L335.0,165.9 L335.0,165.9 L335.0,163.0 L335.0,161.7 Z",NE,31119 1412,31167,0.50,0.50,Stanton,"M340.8,166.0 L340.9,162.4 L340.9,160.2 L342.8,160.2 L345.2,160.2 L345.2,162.9 L345.2,166.1 L343.6,166.1 L342.3,166.0 L341.6,166.0 Z",NE,31167 1413,12085,0.85,0.43,Martin,"M596.4,389.9 L598.6,390.8 L600.2,393.4 L599.3,393.8 L588.1,395.7 L590.7,392.4 L590.5,391.0 L596.4,390.0 Z M597.1,388.9 L597.7,390.0 L596.3,389.6 L596.2,389.0 Z M597.6,388.8 L598.2,389.9 L597.4,388.9 L597.5,388.8 Z",FL,12085 1414,13227,0.50,0.50,Pickens,"M515.4,279.1 L515.3,278.2 L515.1,276.8 L519.0,276.3 L519.3,276.0 L519.8,277.6 L520.9,278.9 L516.4,279.5 Z",GA,13227 1415,13085,0.49,0.56,Dawson,"M520.9,278.9 L519.8,277.6 L519.3,276.0 L520.5,275.8 L521.2,274.9 L521.3,275.0 L521.4,275.1 L521.5,276.2 L524.6,277.8 L524.7,278.4 L525.1,279.2 L524.1,279.3 L521.0,279.7 L520.9,279.3 Z",GA,13085 1416,13319,0.51,0.47,Wilkinson,"M542.9,303.4 L542.9,303.7 L542.8,304.3 L541.7,305.0 L539.3,306.9 L539.0,306.5 L536.1,302.0 L536.5,301.6 L536.7,301.4 L539.4,299.7 L540.6,300.5 L541.5,301.9 Z",GA,13319 1417,13167,0.53,0.35,Johnson,"M542.8,304.3 L542.9,303.7 L542.9,303.4 L545.3,302.9 L548.7,301.5 L549.5,302.1 L550.1,302.3 L549.9,304.3 L547.7,306.9 L547.1,305.3 Z",GA,13167 1418,05095,0.50,0.51,Monroe,"M426.8,288.3 L424.5,286.0 L422.1,284.8 L422.1,283.0 L421.8,279.0 L421.9,278.9 L421.9,278.9 L421.9,278.9 L421.9,278.9 L421.9,278.9 L422.9,277.6 L424.9,277.2 L424.9,278.8 L425.7,279.5 L425.8,281.7 L426.5,283.1 L426.7,286.1 Z",AR,5095 1419,05117,0.63,0.47,Prairie,"M421.9,278.9 L421.9,278.9 L422.1,283.0 L422.1,284.8 L419.1,284.8 L418.0,286.3 L417.4,279.0 L415.9,277.2 L418.8,276.1 L420.5,276.0 L421.9,276.6 L421.9,278.9 Z",AR,5117 1420,05147,0.49,0.49,Woodruff,"M420.5,276.0 L420.7,271.3 L421.8,270.1 L423.2,271.4 L426.1,271.3 L426.1,272.6 L426.2,274.7 L426.3,277.2 L424.9,277.2 L422.9,277.6 L422.9,278.9 L421.9,278.9 L421.9,278.9 L421.9,278.9 L421.9,276.6 L420.5,276.6 Z",AR,5147 1421,29059,0.51,0.49,Dallas,"M399.9,236.7 L397.0,236.8 L397.1,238.0 L396.2,238.0 L395.6,238.0 L395.6,232.8 L395.3,231.5 L395.3,229.8 L396.8,229.8 L398.0,229.8 L399.7,229.8 L399.9,232.8 Z",MO,29059 1422,29169,0.50,0.50,Pulaski,"M405.7,232.7 L405.6,230.2 L405.6,227.9 L405.6,227.5 L405.9,227.5 L408.5,227.5 L408.5,227.5 L410.7,227.5 L410.8,231.9 L410.8,234.3 L408.8,234.4 L407.9,234.4 L407.9,234.4 L407.9,234.4 Z",MO,29169 1423,51143,0.50,0.50,Pittsylvania,"M583.5,232.4 L583.1,232.4 L581.8,232.7 L580.8,231.1 L580.1,233.0 L579.8,233.1 L579.6,233.1 L577.6,233.4 L576.9,233.6 L576.9,230.9 L576.9,228.2 L576.9,225.7 L577.0,225.0 L578.6,225.4 L578.9,224.4 L580.2,223.0 L583.5,223.5 L583.5,228.5 Z",VA,51143 1424,20145,0.49,0.50,Pawnee,"M318.0,222.3 L318.0,223.8 L319.5,223.8 L319.4,228.2 L318.0,228.2 L313.6,228.0 L310.8,226.4 L310.9,223.5 L310.7,223.5 L310.7,222.6 L310.7,222.0 L315.2,222.2 Z",KS,20145 1425,20137,0.50,0.50,Norton,"M311.2,196.1 L311.0,201.7 L307.7,201.5 L304.1,201.4 L303.9,201.4 L303.8,201.4 L304.0,197.7 L304.2,194.1 L304.2,194.1 L308.9,194.3 L311.3,194.4 L311.3,194.4 L311.3,194.4 Z",KS,20137 1426,20147,0.50,0.50,Phillips,"M311.2,196.1 L311.3,194.4 L311.3,194.4 L315.4,194.5 L317.1,194.6 L317.9,194.6 L318.5,194.6 L318.4,198.4 L318.3,201.9 L313.8,201.8 L311.3,201.7 L311.1,201.7 L311.0,201.7 Z",KS,20147 1427,20065,0.50,0.50,Graham,"M311.0,201.7 L311.1,201.7 L311.3,201.7 L311.2,204.4 L311.0,208.9 L304.5,208.7 L303.9,208.6 L303.7,208.6 L303.7,208.6 L303.7,208.6 L303.9,204.3 L304.1,201.4 L307.7,201.5 Z",KS,20065 1428,20063,0.50,0.50,Gove,"M303.7,208.6 L303.9,208.6 L303.7,213.0 L303.5,215.9 L303.5,215.9 L303.5,215.9 L303.5,215.9 L302.8,215.9 L302.3,215.8 L298.2,215.6 L296.5,215.5 L295.7,215.5 L294.8,215.4 L295.0,213.0 L295.3,208.2 L295.3,208.2 L296.0,208.2 L296.5,208.3 L300.3,208.5 L303.7,208.6 L303.7,208.6 Z",KS,20063 1429,20109,0.50,0.50,Logan,"M295.0,213.0 L294.8,215.4 L293.2,215.4 L290.8,215.2 L288.9,215.1 L286.1,214.9 L286.2,212.9 L286.6,207.7 L287.2,207.7 L287.7,207.7 L292.4,208.0 L295.3,208.2 L295.3,208.2 Z",KS,20109 1430,22099,0.27,0.42,St. Martin,"M430.4,366.4 L426.1,365.2 L424.7,362.3 L426.1,362.1 L427.8,361.9 L430.4,364.6 Z M416.7,355.7 L421.3,355.1 L420.1,353.4 L420.3,353.4 L420.9,353.3 L422.2,356.4 L426.1,360.5 L421.8,359.9 L417.5,360.7 L417.3,355.8 Z",LA,22099 1431,22097,0.45,0.49,St. Landry,"M420.1,353.4 L421.3,355.1 L416.7,355.7 L415.8,355.6 L414.6,357.0 L412.9,354.0 L409.3,354.1 L413.3,352.5 L413.1,347.7 L414.7,347.7 L418.9,347.5 L420.3,350.5 Z",LA,22097 1432,22055,0.65,0.43,Lafayette,"M414.6,357.0 L415.8,355.6 L416.7,355.7 L417.3,355.8 L417.5,360.7 L417.4,361.2 L417.4,361.3 L414.9,360.1 L412.6,359.6 L414.1,358.0 Z",LA,22055 1433,39095,0.41,0.26,Lucas,"M514.9,155.5 L516.8,155.6 L518.9,156.7 L518.9,156.8 L515.8,157.3 L513.8,157.6 L510.4,161.5 L510.3,160.5 L510.2,160.3 L509.9,158.1 L509.7,156.4 L510.0,156.3 L511.2,156.1 L513.1,155.8 Z",OH,39095 1434,39123,0.51,0.39,Ottawa,"M515.8,157.3 L518.9,156.8 L518.9,156.7 L524.9,157.7 L521.4,159.2 L517.1,159.8 L516.1,159.3 L516.0,159.0 Z",OH,39123 1435,39069,0.50,0.52,Henry,"M510.2,160.3 L510.3,160.5 L510.4,161.5 L510.5,162.6 L511.0,165.6 L509.7,165.8 L506.6,166.2 L506.0,161.8 L504.6,162.0 L504.6,161.8 L504.5,161.1 L508.1,160.6 Z",OH,39069 1436,05031,0.95,0.46,Craighead,"M435.7,259.9 L435.8,262.0 L436.0,264.9 L431.6,265.1 L425.8,265.3 L425.7,263.9 L425.7,262.4 L427.9,262.3 L428.1,260.9 L434.4,260.5 L434.5,260.0 L435.0,260.0 Z",AR,5031 1437,05093,0.49,0.06,Mississippi,"M436.0,264.9 L435.8,262.0 L435.7,259.9 L439.6,259.6 L440.2,259.6 L442.7,259.4 L443.2,259.4 L443.5,259.9 L444.5,260.9 L440.6,263.9 L441.3,267.3 L439.4,267.8 L439.7,269.7 L439.7,269.8 L439.5,269.9 L439.0,268.4 L438.3,269.2 L436.8,269.2 L436.3,269.3 L436.3,269.3 L436.1,266.3 Z",AR,5093 1438,05035,0.52,0.49,Crittenden,"M436.8,269.2 L438.3,269.2 L438.7,269.6 L439.3,270.0 L439.6,274.1 L436.5,276.7 L437.4,277.5 L436.7,278.9 L436.2,279.0 L435.3,279.5 L435.2,278.8 L435.2,278.3 L435.0,274.2 L433.6,274.4 L433.6,273.8 L433.3,269.4 L435.1,269.3 L436.3,269.3 L436.3,269.3 Z",AR,5035 1439,21117,0.41,0.49,Kenton,"M507.8,206.1 L506.9,206.2 L506.7,206.1 L506.8,204.8 L506.0,201.6 L506.9,201.0 L507.5,201.0 L508.4,202.6 L509.3,205.7 L509.2,205.7 Z",KY,21117 1440,21081,0.49,0.53,Grant,"M506.7,206.1 L506.9,206.2 L507.8,206.1 L508.6,208.8 L509.1,210.1 L509.0,210.7 L508.1,211.1 L508.1,211.1 L507.8,211.5 L505.0,209.4 L504.7,207.7 L504.7,207.7 L504.6,207.0 L506.2,206.6 L506.2,206.3 Z",KY,21081 1441,21077,0.50,0.45,Gallatin,"M504.7,207.7 L503.6,208.2 L502.8,208.9 L502.4,208.7 L501.5,207.4 L504.2,206.6 L504.2,205.4 L504.9,205.8 L506.2,206.6 L504.6,207.0 L504.7,207.7 Z",KY,21077 1442,21097,0.54,0.45,Harrison,"M508.1,211.1 L509.0,210.7 L509.1,210.1 L510.0,209.7 L512.5,209.0 L512.5,209.6 L513.1,209.4 L513.0,210.4 L514.1,210.9 L513.7,211.5 L513.1,212.5 L511.3,214.2 L510.0,214.4 L509.5,212.6 Z",KY,21097 1443,21001,0.59,0.56,Adair,"M500.3,234.0 L500.7,233.1 L502.5,231.7 L504.1,232.5 L504.4,233.6 L502.6,237.0 L502.4,238.3 L501.6,238.3 L499.4,238.4 L498.6,237.3 L498.1,235.6 L499.9,234.4 Z",KY,21001 1444,21217,0.54,0.13,Taylor,"M502.5,231.7 L500.7,233.1 L500.3,234.0 L498.3,231.3 L496.7,229.7 L497.4,229.9 L498.2,229.6 L501.2,230.0 L503.5,229.9 L502.8,230.5 Z",KY,21217 1445,37075,0.51,0.50,Graham,"M522.6,260.4 L522.7,260.4 L522.7,260.4 L527.7,260.2 L526.8,262.9 L526.7,263.3 L526.6,263.5 L523.2,264.5 L522.0,263.4 L521.8,261.4 Z",NC,37075 1446,51071,0.47,0.39,Giles,"M565.1,222.5 L564.6,223.1 L563.0,224.1 L560.6,225.6 L560.0,226.2 L557.6,224.5 L558.0,224.1 L559.5,222.9 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L560.5,222.3 L564.2,220.8 L565.0,222.2 Z M559.2,221.6 L559.2,221.6 L559.2,221.6 Z",VA,51071 1447,54055,0.47,0.57,Mercer,"M559.5,222.9 L558.0,224.1 L556.4,224.6 L554.9,225.6 L553.5,224.7 L552.8,224.2 L553.0,223.5 L553.2,222.6 L553.2,222.1 L554.2,221.0 L554.3,219.9 L555.6,219.5 L557.5,220.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 Z M559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 Z",WV,54055 1448,35035,0.51,0.68,Otero,"M232.0,314.6 L231.6,319.1 L231.2,323.3 L231.1,323.3 L230.2,323.2 L225.4,322.7 L214.8,321.6 L213.0,321.3 L209.4,321.0 L211.2,305.0 L211.9,303.4 L212.2,300.1 L212.5,297.8 L221.1,298.8 L226.7,300.8 L226.4,303.7 L224.9,313.9 Z",NM,35035 1449,31049,0.50,0.50,Deuel,"M281.2,176.0 L281.2,176.0 L275.7,175.6 L274.0,175.5 L274.2,174.7 L274.4,171.8 L274.9,171.9 L281.4,172.3 L281.2,175.2 L281.2,176.0 Z",NE,31049 1450,31101,0.97,0.55,Keith,"M281.2,176.0 L281.2,175.2 L281.4,172.3 L281.6,169.4 L282.5,169.5 L287.0,169.8 L289.8,169.9 L290.2,170.0 L291.5,170.1 L291.2,175.9 L291.4,176.6 L283.9,176.2 L281.2,176.0 Z",NE,31101 1451,31135,0.06,0.44,Perkins,"M281.2,176.0 L281.2,176.0 L281.2,176.0 L283.9,176.2 L291.4,176.6 L291.3,178.9 L291.1,181.7 L290.9,181.7 L289.9,181.7 L286.4,181.4 L280.9,181.1 L280.9,180.8 L281.0,180.2 L281.2,176.1 L281.2,176.0 Z",NE,31135 1452,31117,0.50,0.50,McPherson,"M291.5,170.1 L290.2,170.0 L289.8,169.9 L290.0,166.3 L290.1,164.1 L293.7,164.3 L297.2,164.6 L298.4,164.6 L298.8,164.7 L298.6,167.9 L298.5,170.5 L293.5,170.2 Z",NE,31117 1453,20039,0.50,0.50,Decatur,"M304.2,194.1 L304.0,197.7 L303.8,201.4 L302.5,201.3 L296.9,201.0 L296.8,201.0 L296.6,201.0 L296.8,196.6 L297.0,193.7 L300.1,193.9 L304.0,194.1 L304.2,194.1 Z",KS,20039 1454,31145,0.50,0.50,Red Willow,"M304.0,194.1 L300.1,193.9 L297.0,193.7 L296.8,193.7 L296.7,193.7 L296.9,190.8 L297.0,187.9 L301.8,188.1 L304.2,188.2 L304.2,189.4 Z",NE,31145 1455,31149,0.50,0.50,Rock,"M312.5,148.7 L314.2,148.9 L317.7,147.6 L317.9,148.0 L317.6,159.6 L316.0,159.6 L312.2,159.5 L312.2,159.5 L312.2,159.5 L312.5,153.6 Z M312.2,159.5 L312.2,159.5 L312.2,159.5 Z",NE,31149 1456,47081,0.50,0.51,Hickman,"M473.1,257.1 L476.3,257.2 L477.6,257.2 L477.7,257.5 L477.6,259.0 L477.6,261.2 L476.2,262.4 L474.7,263.3 L472.0,263.6 L470.7,262.8 L470.8,259.9 L470.9,258.7 Z",TN,47081 1457,47085,0.51,0.51,Humphreys,"M473.1,257.1 L470.9,258.7 L470.8,259.9 L469.1,260.6 L467.5,260.1 L466.7,258.4 L467.1,253.4 L469.1,253.2 L472.3,254.0 L472.8,255.4 Z",TN,47085 1458,17125,0.95,0.34,Mason,"M432.4,189.9 L434.3,186.5 L435.7,185.4 L438.3,185.3 L438.5,187.2 L439.9,187.1 L439.9,187.1 L440.0,188.8 L440.2,190.4 L435.4,190.4 L435.1,191.0 L431.4,192.1 L430.5,191.0 L431.6,190.4 Z",IL,17125 1459,17107,0.50,0.52,Logan,"M444.2,186.7 L444.3,187.4 L445.8,187.3 L446.0,189.9 L446.1,191.2 L446.3,193.4 L445.3,193.5 L445.3,193.5 L441.9,193.5 L440.6,192.8 L440.5,190.9 L440.2,190.4 L440.0,188.8 L439.9,187.1 L442.8,186.8 Z",IL,17107 1460,51077,0.48,0.47,Grayson,"M551.0,236.8 L551.4,236.6 L551.4,236.3 L552.1,235.1 L555.7,233.5 L558.0,233.0 L558.5,232.3 L559.2,233.1 L560.3,234.3 L560.2,234.7 L560.6,234.6 L561.2,235.2 L561.9,235.9 L561.3,236.0 L561.0,236.0 L555.8,236.6 L555.0,236.8 L552.7,237.0 L550.6,237.2 L550.9,236.8 Z",VA,51077 1461,51197,0.48,0.45,Wythe,"M558.5,232.3 L558.0,233.0 L555.7,233.5 L554.4,231.4 L553.6,230.6 L555.4,228.7 L559.5,227.6 L559.8,228.3 L562.3,230.4 L560.9,231.1 Z",VA,51197 1462,13303,0.49,0.59,Washington,"M542.9,303.4 L541.5,301.9 L540.6,300.5 L540.9,299.8 L540.6,298.3 L542.8,297.0 L544.5,295.0 L544.8,296.1 L546.0,296.7 L547.8,298.3 L548.7,301.5 L545.3,302.9 Z",GA,13303 1463,55035,0.50,0.50,Eau Claire,"M419.0,116.5 L416.7,116.7 L416.1,116.7 L414.0,116.8 L411.7,116.9 L411.4,116.9 L410.3,117.0 L410.3,116.5 L410.2,115.5 L410.1,113.8 L410.1,112.6 L411.5,112.5 L418.8,112.1 L418.9,113.9 Z",WI,55035 1464,47153,0.48,0.45,Sequatchie,"M500.0,262.0 L500.4,262.0 L500.7,261.9 L502.0,261.5 L502.5,261.1 L502.5,261.1 L502.9,262.4 L505.6,264.4 L505.4,265.0 L503.8,268.1 L502.8,266.2 L501.1,265.5 L501.9,263.9 Z",TN,47153 1465,47007,0.48,0.38,Bledsoe,"M502.5,261.1 L502.5,261.1 L502.5,261.1 L503.9,259.0 L504.3,258.3 L504.4,257.6 L504.4,257.6 L504.4,257.6 L507.3,257.1 L509.0,257.1 L506.8,260.6 L506.6,262.5 L506.2,262.6 L505.6,264.4 L502.9,262.4 Z M504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 Z M504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 Z",TN,47007 1466,47065,0.48,0.49,Hamilton,"M502.9,271.0 L504.3,269.0 L503.8,268.1 L505.4,265.0 L505.6,264.4 L506.2,262.6 L506.6,262.5 L507.6,262.7 L508.3,263.1 L509.0,263.9 L509.5,265.0 L508.8,267.5 L509.7,270.1 L509.7,270.1 L509.7,270.1 L507.5,270.4 L505.8,270.6 L505.5,270.6 L504.4,270.8 L504.2,270.8 Z",TN,47065 1467,48471,0.50,0.49,Walker,"M363.5,347.5 L364.7,346.6 L366.2,345.3 L366.2,347.4 L367.8,348.7 L367.5,352.6 L367.4,354.7 L363.8,354.6 L360.5,352.6 L360.3,351.2 L360.0,348.6 L362.1,347.8 Z",TX,48471 1468,48407,0.29,0.58,San Jacinto,"M367.4,354.7 L367.5,352.6 L367.8,348.7 L368.9,347.9 L369.6,349.2 L372.2,353.4 L374.8,354.8 L374.9,354.9 L370.2,357.3 L368.1,356.3 Z",TX,48407 1469,48291,0.68,0.98,Liberty,"M380.9,364.9 L380.1,364.9 L373.0,365.1 L372.2,363.3 L371.3,360.3 L371.1,359.8 L370.2,357.3 L374.9,354.9 L374.8,354.8 L375.9,354.8 L376.5,354.8 L378.6,361.2 L380.8,361.1 L380.9,363.0 Z",TX,48291 1470,20191,0.50,0.50,Sumner,"M342.6,237.5 L342.6,240.1 L342.6,245.5 L341.4,245.5 L338.3,245.4 L336.0,245.4 L333.8,245.3 L333.9,241.8 L333.8,238.9 L333.9,238.3 L333.9,237.4 L339.7,237.4 Z",KS,20191 1471,40071,0.01,0.49,Kay,"M338.3,245.4 L341.4,245.5 L342.6,245.5 L346.8,245.5 L347.9,245.5 L347.8,249.2 L343.7,252.3 L342.1,252.3 L338.2,252.2 L338.2,252.2 L338.3,249.4 Z",OK,40071 1472,26127,0.47,0.51,Oceana,"M479.0,124.7 L479.1,125.5 L479.6,130.5 L477.5,130.7 L474.4,131.0 L473.2,128.5 L474.2,125.2 L477.5,124.9 Z",MI,26127 1473,27001,0.49,0.50,Aitkin,"M392.6,91.3 L389.8,91.4 L388.1,91.5 L388.1,90.0 L383.8,90.1 L383.5,84.4 L383.8,80.7 L383.8,78.7 L383.7,76.8 L389.0,76.7 L392.1,76.7 L392.1,78.0 L392.1,81.1 L392.2,84.0 L392.4,86.9 L392.5,88.4 Z",MN,27001 1474,27065,0.50,0.50,Kanabec,"M388.1,91.5 L389.8,91.4 L392.6,91.3 L392.6,94.3 L391.6,94.4 L391.7,98.5 L391.8,98.6 L388.8,98.7 L387.4,98.6 L387.2,94.5 Z",MN,27065 1475,27115,0.96,0.09,Pine,"M392.6,91.3 L392.5,88.4 L392.4,86.9 L395.3,86.8 L401.3,86.6 L401.4,89.4 L401.5,91.0 L397.6,95.0 L395.3,98.5 L392.6,98.5 L391.8,98.6 L391.6,94.4 Z",MN,27115 1476,06003,0.59,0.50,Alpine,"M52.1,177.0 L51.8,180.6 L49.8,183.0 L48.7,181.2 L45.4,180.0 L44.8,179.6 L45.1,178.6 L45.6,176.7 L45.9,175.5 L49.1,173.5 L49.1,172.3 L49.8,173.4 Z",CA,6003 1477,17105,0.50,0.53,Livingston,"M456.0,172.5 L456.1,172.8 L456.3,174.5 L457.0,180.8 L454.1,181.0 L452.3,178.8 L448.0,179.2 L448.0,179.2 L447.8,177.0 L447.7,176.3 L447.5,173.3 L451.8,173.0 L453.4,172.8 Z",IL,17105 1478,39135,0.50,0.50,Preble,"M501.8,187.9 L504.3,187.6 L506.0,187.3 L506.5,190.9 L506.8,192.7 L506.8,193.1 L502.5,193.7 L502.5,193.7 L502.3,192.1 L502.2,191.0 L502.0,189.6 Z",OH,39135 1479,25025,0.59,0.47,Suffolk,"M665.3,111.8 L665.0,112.9 L664.9,114.3 L664.1,115.9 L663.2,115.2 L663.3,114.9 L663.4,114.7 L663.8,113.9 L663.8,113.9 L663.8,113.9 L663.8,113.9 L664.2,113.6 L664.4,112.0 L665.0,112.1 Z M663.4,114.3 L663.9,113.8 L663.8,113.9 L663.8,113.9 L663.8,113.9 L663.8,113.9 Z",MA,25025 1480,25017,0.86,0.67,Middlesex,"M663.4,114.3 L663.2,114.6 L663.4,114.7 L663.3,114.9 L663.2,115.2 L661.4,115.2 L660.3,118.2 L657.7,115.5 L657.8,112.1 L652.8,110.6 L660.1,108.8 L660.4,108.1 L660.4,108.1 L660.4,108.1 L663.3,109.5 L664.4,112.0 L664.2,113.6 L663.8,113.9 L663.8,113.9 L663.8,113.9 L663.8,113.9 Z M660.4,108.1 L660.4,108.1 L660.4,108.1 Z",MA,25017 1481,48115,0.50,0.50,Dawson,"M270.0,310.3 L271.2,310.4 L271.9,310.5 L274.8,310.6 L277.4,310.8 L277.2,313.6 L276.9,318.1 L274.3,317.9 L269.6,317.7 L269.9,312.3 Z",TX,48115 1482,36069,0.51,0.49,Ontario,"M587.4,128.6 L586.5,128.8 L585.9,128.9 L584.3,127.6 L583.6,123.1 L584.4,121.3 L585.8,121.0 L588.7,120.4 L590.8,120.4 L591.3,122.7 L591.6,124.5 L587.5,125.4 Z",NY,36069 1483,20121,0.50,0.50,Miami,"M370.3,222.2 L370.2,217.1 L370.3,216.4 L373.4,216.4 L376.2,216.3 L376.2,218.5 L376.2,220.7 L376.2,221.0 L376.2,222.2 L373.1,222.2 Z",KS,20121 1484,29037,0.50,0.50,Cass,"M376.2,220.7 L376.2,218.5 L376.2,216.3 L376.2,215.1 L376.2,214.5 L380.4,214.6 L382.6,214.6 L382.7,219.1 L383.4,219.1 L383.4,220.8 L383.4,221.1 L380.2,220.7 Z",MO,29037 1485,29095,0.50,0.50,Jackson,"M382.6,214.6 L380.4,214.6 L376.2,214.5 L376.2,212.6 L376.2,211.2 L376.1,210.2 L376.1,210.0 L378.0,209.9 L381.3,208.4 L381.6,208.8 L382.7,209.4 L382.7,211.9 L382.6,213.2 L382.6,214.0 Z",MO,29095 1486,13153,0.48,0.47,Houston,"M531.2,313.0 L531.0,310.5 L530.8,310.0 L532.5,308.7 L532.4,306.0 L532.4,306.0 L532.4,306.0 L532.8,306.2 L533.9,306.3 L534.4,306.3 L535.9,309.0 L535.8,309.6 L535.8,309.6 L535.8,309.6 L536.1,310.0 L535.9,310.5 L535.9,310.5 L535.9,310.5 L535.9,310.5 L535.6,310.5 L534.5,312.6 L533.3,312.7 Z",GA,13153 1487,13023,0.53,0.54,Bleckley,"M535.8,309.6 L537.1,308.6 L539.3,306.9 L539.9,307.7 L540.9,309.4 L540.4,309.0 L538.4,312.3 L538.0,312.1 L535.9,310.5 L535.9,310.5 L535.9,310.5 L536.1,310.0 L535.8,309.6 L535.8,309.6 Z",GA,13023 1488,13091,0.35,0.50,Dodge,"M538.4,312.3 L540.4,309.0 L540.9,309.4 L543.7,313.7 L545.1,312.7 L545.3,312.8 L544.6,313.8 L544.5,314.0 L541.2,318.2 L539.8,317.0 L538.9,315.1 L539.4,313.8 Z",GA,13091 1489,36023,0.49,0.51,Cortland,"M604.5,121.2 L604.6,121.4 L604.8,122.3 L605.9,126.0 L606.3,127.2 L604.4,127.8 L603.0,128.1 L601.6,128.4 L601.6,128.4 L601.2,127.0 L600.6,124.9 L600.1,122.9 L600.0,122.5 L602.3,121.9 Z",NY,36023 1490,26161,0.49,0.50,Washtenaw,"M512.2,144.0 L512.6,146.1 L513.2,149.7 L511.7,150.0 L510.3,150.2 L507.4,150.7 L505.8,151.0 L505.5,148.0 L505.1,145.1 L507.4,144.8 L510.8,144.2 L511.9,144.0 Z",MI,26161 1491,18113,0.50,0.52,Noble,"M493.8,161.7 L494.1,164.2 L494.3,166.1 L493.8,166.1 L492.9,166.2 L490.0,166.5 L488.5,166.2 L488.4,165.5 L488.2,163.9 L488.1,163.1 L488.0,162.4 L488.0,162.4 L490.2,162.1 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 L493.8,161.7 Z",IN,18113 1492,13225,0.64,0.61,Peach,"M528.4,309.4 L528.5,309.4 L528.5,309.3 L531.5,306.1 L532.4,306.0 L532.5,308.7 L530.8,310.0 L529.5,309.6 L528.3,309.7 L528.4,309.5 Z",GA,13225 1493,13311,0.42,0.53,White,"M528.8,275.8 L527.2,276.0 L526.3,276.1 L525.6,274.1 L525.7,272.5 L526.0,271.5 L526.5,271.2 L527.0,271.0 L527.9,270.9 L529.4,274.9 Z",GA,13311 1494,13163,0.49,0.51,Jefferson,"M549.4,293.0 L549.6,293.0 L549.8,293.0 L550.7,293.4 L551.1,293.5 L551.1,293.5 L551.3,297.0 L551.5,300.8 L550.3,301.4 L550.1,302.3 L549.5,302.1 L548.7,301.5 L547.8,298.3 L546.0,296.7 L546.9,295.8 L548.8,293.8 L549.1,293.4 Z",GA,13163 1495,55099,0.49,0.50,Price,"M428.7,102.7 L425.4,102.9 L423.8,103.1 L421.2,103.2 L421.2,103.2 L421.2,103.2 L421.1,101.3 L420.9,98.8 L420.6,93.5 L420.6,93.0 L421.6,93.0 L425.0,92.8 L427.1,92.6 L428.0,92.6 L428.0,92.6 L428.1,92.9 L428.1,93.7 L428.1,94.0 L428.3,97.0 L428.5,99.8 L428.5,99.8 L428.6,100.5 Z",WI,55099 1496,55085,0.88,0.49,Oneida,"M428.3,97.0 L428.1,94.0 L436.9,93.3 L439.8,93.2 L440.2,97.1 L440.4,100.4 L438.8,100.5 L435.9,100.7 L435.8,99.3 L428.5,99.8 Z",WI,55085 1497,55067,0.51,0.49,Langlade,"M435.9,100.7 L438.8,100.5 L440.4,100.4 L442.0,101.8 L444.9,101.5 L445.1,104.5 L445.7,105.9 L441.6,106.2 L441.7,107.7 L440.2,107.8 L438.9,107.9 L438.7,106.4 L436.3,106.6 L436.1,102.5 Z",WI,55067 1498,55078,0.50,0.52,Menominee,"M441.7,107.7 L441.6,106.2 L445.7,105.9 L447.6,105.8 L447.9,110.1 L444.9,110.4 Z",WI,55078 1499,55083,0.73,0.73,Oconto,"M445.7,105.9 L445.1,104.5 L444.9,101.5 L446.1,101.5 L447.9,101.3 L452.0,107.0 L456.4,107.5 L454.0,111.9 L454.1,112.6 L451.2,113.0 L451.1,112.8 L450.7,109.9 L447.9,110.1 L447.6,105.8 Z",WI,55083 1500,53063,0.60,0.14,Spokane,"M117.9,43.5 L117.8,43.8 L117.5,45.3 L112.3,44.1 L108.7,43.2 L110.2,37.3 L111.0,33.9 L114.1,35.1 L116.2,31.2 L119.0,32.0 L120.5,32.3 L120.4,33.0 L120.3,33.4 L119.7,35.7 Z",WA,53063 1501,53043,0.52,0.50,Lincoln,"M111.0,33.9 L110.2,37.3 L108.7,43.2 L108.1,43.0 L107.2,42.8 L97.4,40.3 L95.8,39.9 L97.5,33.3 L98.7,28.7 L98.9,28.8 L100.1,28.8 L105.1,32.1 L105.5,31.3 L108.1,33.6 Z",WA,53043 1502,34039,0.50,0.35,Union,"M634.0,150.7 L633.4,151.6 L633.4,152.1 L632.3,152.2 L630.4,152.9 L630.8,151.6 L630.1,151.7 L630.4,151.1 L630.9,150.3 L632.9,150.4 Z",NJ,34039 1503,34017,0.40,0.45,Hudson,"M635.4,148.2 L634.7,150.9 L634.2,150.0 L634.1,149.6 L633.5,149.7 L633.5,148.9 L633.5,148.9 L633.5,148.9 L635.0,147.9 Z",NJ,34017 1504,39075,0.51,0.52,Holmes,"M533.3,172.5 L533.0,170.9 L534.2,170.7 L537.4,170.2 L540.2,169.7 L540.3,170.0 L540.3,170.3 L540.6,173.5 L540.1,173.6 L535.3,174.2 L534.0,174.3 L533.8,172.4 Z",OH,39075 1505,39169,0.50,0.50,Wayne,"M540.2,169.7 L537.4,170.2 L534.2,170.7 L533.7,167.1 L533.4,165.3 L537.1,164.8 L538.9,164.5 L539.4,164.4 L539.6,165.7 L540.0,168.4 Z",OH,39169 1506,39151,0.50,0.50,Stark,"M540.2,169.7 L540.0,168.4 L539.6,165.7 L542.5,165.3 L542.6,163.9 L543.4,163.8 L546.5,163.3 L546.6,164.3 L546.7,164.7 L547.1,167.2 L547.2,167.6 L545.3,168.0 L544.5,169.3 L544.5,169.3 L542.3,169.7 L540.3,170.3 L540.3,170.0 Z",OH,39151 1507,39019,0.52,0.51,Carroll,"M545.3,168.0 L547.2,167.6 L549.3,167.3 L550.3,169.3 L549.7,170.1 L549.8,172.3 L549.8,172.3 L547.8,172.5 L545.7,172.8 L545.4,170.7 L544.5,169.3 L544.5,169.3 Z",OH,39019 1508,48187,0.54,0.55,Guadalupe,"M333.8,368.9 L332.1,371.4 L330.7,373.5 L327.0,373.4 L326.3,372.3 L324.9,370.4 L323.8,369.7 L327.1,368.2 L328.5,367.1 L329.3,366.2 L330.3,365.3 L332.5,368.4 Z",TX,48187 1509,24017,0.55,0.33,Charles,"M602.1,195.3 L602.1,195.8 L602.1,195.7 L602.1,195.4 Z M602.1,196.4 L602.1,196.4 L602.3,196.7 L602.2,196.6 Z M602.6,197.3 L602.6,197.3 L602.6,197.3 L602.6,197.3 Z M608.2,196.1 L608.4,196.4 L608.5,196.6 L608.5,196.8 L608.7,196.9 L602.7,195.2 L604.4,191.5 L607.3,191.5 L610.1,192.9 L610.1,192.9 L610.2,193.4 L610.3,193.5 L608.9,193.7 L608.2,195.8 L608.0,195.8 L608.1,195.9 L608.1,196.1 Z M603.3,192.9 L603.2,193.0 L603.2,193.0 L603.2,192.9 Z M608.6,199.3 L608.7,199.4 L608.9,199.4 L608.9,199.4 L608.8,199.4 Z M607.7,199.1 L608.2,199.1 L608.6,199.3 L608.2,199.1 Z M607.0,198.1 L607.0,198.1 L607.0,198.1 L606.9,198.1 Z M606.4,197.7 L606.4,197.7 L606.4,197.7 L606.4,197.7 Z M606.4,196.9 L606.5,197.2 L606.4,197.4 L606.5,197.2 Z M606.3,196.6 L606.3,196.6 L606.3,196.6 L606.3,196.6 Z M606.1,196.3 L606.2,196.4 L606.2,196.4 L606.2,196.4 Z M604.9,196.9 L604.9,196.9 L604.9,197.0 L605.0,196.9 Z M604.1,197.6 L604.4,197.4 L604.7,197.1 L604.5,197.4 Z M603.6,197.8 L603.6,197.8 L603.5,197.8 L603.7,197.8 Z M603.2,197.9 L603.2,197.9 L603.2,197.9 L603.3,197.9 Z M607.4,198.3 L607.1,198.1 L607.4,198.3 L607.4,198.3 Z M607.4,198.3 L607.5,198.4 L607.5,198.8 Z M605.5,196.7 L605.4,196.8 L605.3,196.8 L605.5,196.7 Z M605.5,196.7 L605.5,196.7 L605.5,196.7 Z",MD,24017 1510,51033,0.57,0.48,Caroline,"M602.5,199.4 L602.7,199.5 L604.1,199.3 L605.5,200.3 L605.6,200.4 L605.7,200.4 L605.7,200.5 L605.8,200.5 L605.3,201.8 L607.0,203.4 L606.0,203.5 L605.8,204.9 L605.0,205.3 L604.0,207.0 L601.9,205.8 L599.5,204.5 L599.7,204.2 L602.2,199.6 L602.2,199.6 Z",VA,51033 1511,51630,0.50,0.55,Fredericksburg,"M600.7,198.7 L601.0,199.2 L600.2,199.4 L599.9,199.0 L599.9,199.0 Z",VA,51630 1512,51099,0.54,0.60,King George,"M603.6,197.8 L603.7,197.8 L604.1,197.6 L604.5,197.4 L604.7,197.1 L604.8,197.0 L604.9,197.0 L604.9,196.9 L605.0,196.9 L605.3,196.8 L605.5,196.7 L605.5,196.7 L605.5,196.7 L605.5,196.7 L605.7,196.3 L605.9,196.2 L606.1,196.3 L606.2,196.4 L606.2,196.4 L606.3,196.6 L606.3,196.6 L606.3,196.6 L606.4,196.8 L606.4,196.9 L606.5,197.2 L606.4,197.4 L606.0,197.5 L606.4,197.7 L606.4,197.7 L606.4,197.7 L606.8,198.1 L606.9,198.1 L606.3,198.5 L606.4,200.1 L605.6,200.1 L605.5,200.3 L604.1,199.3 L602.7,199.5 L602.4,199.3 L602.5,197.9 L602.9,197.8 L603.2,197.9 L603.2,197.9 L603.3,197.9 L603.4,197.9 L603.5,197.8 Z M606.2,200.5 L606.3,200.4 L606.4,200.4 L606.3,200.5 Z M605.7,200.4 L605.8,200.5 L605.8,200.5 L605.8,200.5 L605.7,200.5 Z",VA,51099 1513,51193,0.48,0.52,Westmoreland,"M607.4,198.3 L607.4,198.3 L607.4,198.3 L607.5,198.8 L607.5,198.9 L607.7,199.1 L608.2,199.1 L608.6,199.3 L608.6,199.3 L608.8,199.4 L608.9,199.4 L609.3,199.5 L609.9,199.3 L610.7,199.7 L611.4,199.1 L611.5,199.1 L611.5,199.1 L611.9,199.3 L612.2,199.1 L612.3,199.1 L612.3,199.1 L612.4,199.1 L612.4,199.3 L612.5,199.4 L612.5,199.7 L612.8,199.8 L613.6,200.1 L613.8,200.5 L613.7,200.6 L613.8,200.8 L612.8,201.5 L612.7,202.1 L610.8,201.9 L608.4,201.0 L607.2,200.7 L606.4,200.1 L606.3,198.5 L606.9,198.1 L606.9,198.1 L607.0,198.1 L607.0,198.1 L607.1,198.1 L607.4,198.3 L607.4,198.3 Z M607.6,201.0 L608.0,201.0 L608.2,201.2 L607.7,201.1 Z M606.7,200.5 L607.0,201.0 L607.0,201.0 L607.0,201.0 L606.8,201.0 Z M607.3,201.0 L607.0,201.0 L607.0,201.0 L607.0,201.0 L607.0,201.0 Z",VA,51193 1514,10003,0.50,0.50,New Castle,"M621.4,168.6 L619.8,172.3 L622.0,176.0 L621.2,177.2 L619.1,177.9 L618.9,177.4 L618.8,177.0 L618.7,176.7 L618.7,176.6 L618.7,176.6 L617.4,172.3 L617.1,171.1 L618.0,169.4 L619.1,168.6 L619.1,168.6 L619.2,168.6 L619.2,168.6 L619.3,168.6 L620.6,168.4 Z M621.6,168.7 L621.7,168.7 L621.7,168.7 L621.5,168.9 Z M620.5,172.2 L620.4,172.2 L620.4,172.1 L620.4,172.2 Z M620.7,172.4 L620.8,172.4 L620.8,172.4 L620.8,172.5 Z M620.8,172.5 L620.8,172.5 L620.9,172.5 L620.9,172.5 Z M621.2,172.8 L621.1,172.7 L620.9,172.6 L621.1,172.6 Z M621.1,174.0 L621.0,173.8 L621.2,174.0 L621.2,174.0 Z",DE,10003 1515,42029,0.42,0.56,Chester,"M618.0,169.4 L617.1,171.1 L614.1,171.7 L612.7,172.1 L614.0,169.2 L614.5,164.5 L615.9,162.9 L616.3,162.3 L618.8,163.3 L621.2,164.2 L619.0,168.0 L619.1,168.6 L619.1,168.6 Z M619.3,168.6 L619.2,168.6 L619.2,168.6 L619.2,168.5 Z",PA,42029 1516,34015,0.53,0.53,Gloucester,"M621.6,168.7 L622.0,168.2 L623.1,167.5 L623.1,167.5 L623.3,167.4 L624.7,166.7 L624.8,166.5 L625.7,168.1 L629.0,170.3 L628.3,171.5 L628.0,172.1 L627.4,171.8 L626.9,171.5 L623.1,170.3 L621.4,169.0 L621.5,168.9 L621.7,168.7 Z",NJ,34015 1517,34033,0.41,0.55,Salem,"M620.7,172.4 L620.6,172.3 L620.5,172.2 L620.4,172.2 L620.4,172.1 L620.9,171.4 L621.4,169.0 L623.1,170.3 L626.9,171.5 L624.7,172.1 L623.1,175.4 L621.3,174.3 L621.1,174.0 L621.2,174.0 L621.2,174.0 L621.3,174.0 L621.2,172.8 L621.1,172.6 L620.9,172.6 L620.9,172.5 L620.9,172.5 L620.8,172.5 L620.8,172.5 L620.8,172.4 Z M623.1,175.5 L623.1,175.4 L623.2,175.4 L623.2,175.5 Z",NJ,34033 1518,34011,0.59,0.52,Cumberland,"M623.1,175.5 L623.1,175.4 L624.7,172.1 L626.9,171.5 L627.4,171.8 L628.0,172.1 L630.0,173.2 L630.3,174.8 L630.1,175.2 L630.2,177.3 L627.2,177.9 L623.2,175.5 L623.2,175.4 Z",NJ,34011 1519,42011,0.88,0.67,Berks,"M616.3,162.3 L615.9,162.9 L614.5,164.5 L613.3,163.9 L610.4,162.4 L609.2,161.8 L606.1,160.2 L611.2,157.7 L612.3,155.8 L613.3,156.3 L617.7,158.5 L617.2,159.8 Z",PA,42011 1520,42077,0.52,0.48,Lehigh,"M617.7,158.5 L613.3,156.3 L612.3,155.8 L613.2,155.0 L613.8,154.4 L614.4,153.7 L615.4,153.2 L618.7,155.9 L619.8,156.5 L619.0,157.5 L618.3,158.8 L618.1,158.7 Z",PA,42077 1521,42095,0.67,0.54,Northampton,"M619.8,156.5 L618.7,155.9 L615.4,153.2 L616.2,152.6 L617.0,152.3 L619.0,151.1 L620.8,148.8 L622.0,150.2 L621.2,154.9 L620.5,155.5 Z",PA,42095 1522,24015,0.50,0.56,Cecil,"M612.7,172.1 L614.1,171.7 L617.1,171.1 L617.4,172.3 L618.7,176.6 L618.7,176.6 L618.2,176.8 L617.8,176.9 L615.2,177.1 L614.0,174.6 L612.7,173.3 L611.5,172.3 L612.6,172.1 Z M617.7,177.0 L617.7,177.0 L617.7,177.0 L617.7,177.0 Z M617.2,177.2 L617.2,177.2 L617.2,177.2 L617.2,177.2 Z",MD,24015 1523,24029,0.46,0.52,Kent,"M617.7,177.0 L617.7,177.0 L617.8,176.9 L618.2,176.8 L618.7,176.6 L618.7,176.6 L618.8,177.0 L618.9,177.4 L619.1,177.9 L619.2,178.3 L619.3,178.7 L616.1,179.6 L615.6,181.3 L613.1,181.8 L614.4,177.7 L617.2,177.2 L617.2,177.2 L617.2,177.2 L617.5,177.2 L617.7,177.0 Z",MD,24029 1524,19101,0.50,0.50,Jefferson,"M406.5,179.3 L406.5,177.6 L406.3,174.9 L408.7,174.7 L409.3,174.7 L410.4,174.7 L412.2,174.6 L412.3,176.9 L412.4,179.0 L410.5,179.1 Z",IA,19101 1525,19177,0.50,0.50,Van Buren,"M406.5,179.3 L410.5,179.1 L412.4,179.0 L412.4,179.6 L412.4,180.4 L412.6,183.8 L412.6,184.0 L412.5,183.8 L409.7,184.0 L407.8,184.2 L406.7,184.3 L406.7,182.9 Z",IA,19177 1526,31137,0.50,0.50,Phelps,"M317.4,183.6 L317.4,185.0 L317.3,188.8 L314.0,188.6 L311.5,188.5 L311.5,188.5 L311.3,188.5 L311.3,187.4 L311.5,182.9 L313.0,183.2 L314.4,183.3 L315.5,183.3 Z",NE,31137 1527,31073,0.50,0.50,Gosper,"M311.5,182.9 L311.3,187.4 L311.3,188.5 L308.2,188.4 L305.5,188.3 L307.1,186.9 L307.2,182.5 L310.8,182.7 Z",NE,31073 1528,28087,0.50,0.50,Lowndes,"M463.0,297.4 L465.0,296.6 L466.6,295.5 L466.6,298.1 L466.5,299.1 L466.5,299.6 L466.5,303.2 L464.5,303.4 L461.3,303.7 L461.2,302.2 L461.0,300.0 L463.7,299.5 Z",MS,28087 1529,28095,0.54,0.51,Monroe,"M466.6,295.5 L465.0,296.6 L463.0,297.4 L460.1,297.1 L459.9,294.9 L459.6,291.2 L459.6,290.5 L459.6,290.3 L462.0,290.1 L464.4,289.9 L466.7,289.7 L466.7,289.9 L466.7,290.2 L466.7,293.4 Z",MS,28095 1530,12113,0.53,0.86,Santa Rosa,"M487.8,351.0 L487.9,351.0 L487.8,351.0 L487.8,351.0 Z M486.7,351.3 L486.7,351.3 L486.7,351.3 L486.7,351.3 Z M486.8,351.2 L487.4,351.1 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.1,351.3 L487.0,351.3 Z M486.3,340.1 L486.6,340.1 L491.7,339.6 L492.2,345.8 L492.5,349.4 L489.0,350.2 L486.7,347.8 L484.7,345.0 Z M492.6,350.1 L490.9,350.5 L490.8,350.3 L490.8,350.1 L491.4,349.8 L492.5,349.7 L492.5,349.9 Z M489.1,350.5 L489.3,350.4 L489.7,350.4 L489.4,350.4 Z M487.8,351.0 L487.7,351.0 L487.7,351.0 L487.6,351.0 Z",FL,12113 1531,48439,0.50,0.50,Tarrant,"M335.9,319.9 L336.0,315.1 L336.1,312.6 L337.9,312.6 L338.2,312.7 L338.4,312.7 L343.4,312.7 L343.3,314.6 L343.2,320.2 L342.8,320.1 L342.5,320.1 L337.2,320.0 Z",TX,48439 1532,51169,0.46,0.48,Scott,"M538.2,239.1 L536.4,239.3 L535.2,239.5 L534.4,239.6 L533.1,239.8 L533.4,238.4 L535.5,236.0 L537.1,234.4 L540.2,234.0 L541.1,235.5 L541.6,236.6 L542.1,238.0 L542.4,238.4 L540.1,238.8 Z",VA,51169 1533,40085,0.50,0.50,Love,"M336.2,294.5 L340.1,294.5 L344.4,294.6 L344.9,295.6 L344.9,296.5 L344.8,296.6 L344.8,296.6 L341.2,299.8 L337.2,297.1 L337.0,297.0 L336.1,297.3 L336.2,295.9 Z",OK,40085 1534,13289,0.37,0.50,Twiggs,"M536.1,302.0 L539.0,306.5 L539.3,306.9 L537.1,308.6 L535.8,309.6 L535.8,309.6 L535.8,309.6 L534.4,306.3 L533.9,306.3 L534.9,303.8 L534.7,303.1 L535.4,302.6 Z",GA,13289 1535,39099,0.47,0.50,Mahoning,"M546.7,164.7 L546.6,164.3 L546.5,163.3 L547.5,163.1 L547.1,160.7 L548.4,160.5 L553.1,159.7 L553.1,159.7 L553.2,159.8 L553.4,161.2 L553.8,163.5 L549.1,164.3 Z",OH,39099 1536,48381,0.50,0.50,Randall,"M280.6,273.6 L280.4,276.8 L280.1,280.9 L278.4,280.8 L275.0,280.6 L274.0,280.5 L272.6,280.4 L272.8,278.3 L273.2,273.1 L277.7,273.4 Z",TX,48381 1537,48375,0.50,0.50,Potter,"M280.6,273.6 L277.7,273.4 L273.2,273.1 L273.6,267.8 L273.7,265.8 L277.8,266.1 L281.1,266.3 L280.8,270.2 Z",TX,48375 1538,48437,0.50,0.50,Swisher,"M275.0,280.6 L278.4,280.8 L280.1,280.9 L281.1,281.0 L282.3,281.0 L282.0,285.3 L281.8,288.3 L281.4,288.3 L280.5,288.2 L276.2,288.0 L274.5,287.8 L274.7,285.7 Z",TX,48437 1539,29151,0.48,0.50,Osage,"M415.0,215.7 L415.1,215.7 L415.1,215.7 L415.3,221.2 L415.4,222.6 L412.5,222.7 L408.1,222.9 L408.1,222.6 L408.1,222.2 L410.0,219.9 L410.4,218.1 L412.2,216.5 Z",MO,29151 1540,17089,0.52,0.50,Kane,"M454.7,155.1 L454.9,156.6 L454.7,158.0 L454.9,161.1 L455.0,162.3 L455.0,162.3 L454.9,162.3 L450.8,162.8 L450.3,157.0 L450.4,155.5 L451.7,155.4 Z",IL,17089 1541,17043,0.55,0.52,DuPage,"M454.9,161.1 L454.7,158.0 L458.9,157.4 L458.0,162.7 L457.9,162.0 L455.0,162.3 L455.0,162.3 Z",IL,17043 1542,45031,0.50,0.45,Darlington,"M581.3,267.0 L582.7,268.4 L584.3,270.3 L583.4,270.7 L579.3,275.0 L577.0,270.6 L575.5,270.9 L575.5,270.9 L575.5,270.9 L578.5,268.2 Z",SC,45031 1543,45055,0.51,0.58,Kershaw,"M575.5,270.9 L575.5,270.9 L575.5,270.9 L573.9,272.4 L573.5,274.6 L572.3,275.9 L571.8,276.0 L568.1,275.3 L568.4,273.7 L568.9,271.8 L567.2,270.7 L571.9,269.0 L573.2,267.0 L573.2,267.0 L574.5,268.6 Z",SC,45055 1544,45057,0.52,0.44,Lancaster,"M571.9,269.0 L567.2,270.7 L566.8,270.2 L566.9,269.3 L566.8,266.7 L565.9,264.8 L565.9,262.5 L565.1,260.6 L565.1,260.5 L565.4,260.9 L566.2,261.6 L567.3,264.5 L570.5,264.0 L572.7,266.3 L573.2,267.0 L573.2,267.0 Z",SC,45057 1545,37119,0.50,0.50,Mecklenburg,"M565.1,260.5 L563.3,261.4 L563.2,259.6 L563.1,257.6 L563.5,255.3 L563.5,254.4 L563.4,253.8 L563.9,253.3 L565.5,253.2 L567.8,256.8 L569.5,257.6 L567.0,260.9 L566.2,261.6 L565.4,260.9 L565.1,260.6 Z",NC,37119 1546,37139,0.47,0.62,Pasquotank,"M620.7,227.6 L619.9,226.2 L619.7,225.6 L623.6,227.1 L624.4,227.9 L626.7,229.9 L623.5,229.9 L622.1,229.3 Z",NC,37139 1547,41033,0.04,0.37,Josephine,"M20.4,97.5 L25.9,99.9 L24.9,103.5 L22.5,111.1 L21.1,110.8 L19.0,110.1 L17.3,109.7 L15.4,109.1 L17.0,105.3 L14.8,102.5 L20.6,96.8 L20.6,96.8 Z",OR,41033 1548,42089,0.53,0.40,Monroe,"M614.1,147.0 L614.6,145.8 L615.0,145.6 L616.6,145.1 L616.8,145.1 L619.6,144.2 L621.9,146.4 L622.0,146.5 L622.2,146.3 L620.6,148.5 L620.8,148.8 L619.0,151.1 L617.0,152.3 L616.1,149.6 L613.7,147.8 L613.8,147.7 Z",PA,42089 1549,05101,0.50,0.50,Newton,"M392.2,259.7 L393.7,259.7 L394.7,259.7 L396.8,259.7 L399.5,259.7 L399.6,260.4 L399.6,266.2 L397.5,266.2 L396.7,266.3 L391.9,266.3 L391.9,265.8 L392.7,262.4 Z",AR,5101 1550,05071,0.45,0.49,Johnson,"M391.9,265.8 L391.9,266.3 L396.7,266.3 L396.0,270.6 L395.1,273.0 L393.2,271.5 L389.4,272.4 L389.4,272.4 L389.4,269.2 L389.4,265.8 L390.4,265.8 Z",AR,5071 1551,20135,0.50,0.50,Ness,"M305.0,216.0 L310.8,216.2 L310.8,216.2 L311.0,216.2 L310.9,217.7 L310.7,222.0 L310.7,222.6 L310.7,223.5 L305.2,223.3 L302.2,223.1 L302.1,223.1 L302.0,223.1 L302.2,216.8 L302.3,215.8 L302.8,215.9 L303.5,215.9 L303.5,215.9 Z",KS,20135 1552,22047,0.88,0.69,Iberville,"M426.1,360.5 L422.2,356.4 L420.9,353.3 L422.6,353.3 L424.0,353.2 L426.7,356.0 L429.2,355.9 L430.8,355.9 L431.0,355.8 L430.1,359.5 L429.9,360.2 L429.2,360.6 L428.2,361.0 L427.6,360.4 Z",LA,22047 1553,22077,0.49,0.48,Pointe Coupee,"M424.0,353.2 L422.6,353.3 L420.9,353.3 L420.3,353.4 L420.1,353.4 L420.3,350.5 L418.9,347.5 L419.0,345.4 L419.7,344.6 L420.4,344.5 L421.1,344.9 L421.0,345.1 L421.0,345.3 L422.8,349.3 L426.1,350.3 L426.3,350.4 L425.0,352.9 Z",LA,22077 1554,22121,0.59,0.59,West Baton Rouge,"M426.3,350.4 L426.4,350.4 L426.4,350.4 L426.6,350.5 L428.2,352.8 L429.2,355.9 L426.7,356.0 L424.0,353.2 L425.0,352.9 L426.1,350.3 Z",LA,22121 1555,31067,0.51,0.50,Gage,"M346.2,189.4 L346.3,189.3 L346.3,186.5 L349.1,186.6 L352.1,186.6 L352.0,189.6 L352.0,190.9 L352.0,192.2 L352.0,195.3 L350.0,195.3 L347.6,195.3 L347.2,195.3 L346.2,195.3 L346.2,193.6 Z",NE,31067 1556,31095,0.50,0.50,Jefferson,"M346.2,189.4 L346.2,193.6 L346.2,195.3 L343.5,195.2 L340.4,195.2 L340.4,191.0 L340.4,189.3 L340.4,189.3 L340.4,189.3 L344.6,189.4 Z",NE,31095 1557,01115,0.53,0.48,St. Clair,"M489.9,292.9 L492.2,291.5 L493.1,289.7 L494.8,288.7 L496.9,290.9 L497.3,292.2 L496.1,293.7 L495.2,297.0 L493.3,298.9 L493.1,297.0 L491.1,296.5 L490.4,292.9 Z",AL,1115 1558,28101,0.50,0.50,Newton,"M454.1,316.2 L458.8,315.8 L458.8,316.1 L459.3,321.8 L454.5,322.1 L453.5,322.2 L453.1,317.1 L453.0,316.3 L453.1,316.3 L453.1,316.3 Z",MS,28101 1559,28099,0.50,0.49,Neshoba,"M454.1,316.2 L453.1,316.3 L453.1,316.3 L452.8,313.0 L452.6,310.3 L456.9,310.0 L458.4,310.0 L458.6,312.8 L458.8,315.8 Z",MS,28099 1560,28123,0.50,0.47,Scott,"M453.0,316.3 L453.1,317.1 L453.5,322.2 L448.0,322.6 L447.6,322.6 L447.5,320.5 L446.4,316.6 L446.8,316.1 L447.2,315.7 L447.2,316.7 Z",MS,28123 1561,13095,0.50,0.52,Dougherty,"M524.1,325.3 L525.6,325.1 L526.3,325.0 L529.9,324.5 L530.2,324.0 L530.6,324.4 L531.0,327.4 L529.0,327.7 L528.9,327.7 L527.9,327.9 L524.8,328.3 L524.2,326.5 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 L524.1,325.3 Z",GA,13095 1562,16017,0.19,0.46,Bonner,"M120.3,33.4 L120.4,33.0 L120.5,32.3 L121.9,26.7 L123.8,19.1 L126.5,19.7 L125.1,25.4 L133.2,27.3 L132.5,30.5 L132.2,32.0 L131.8,33.5 L131.3,36.0 L129.6,34.0 L127.9,36.7 L126.3,34.6 Z",ID,16017 1563,13047,0.56,0.53,Catoosa,"M505.8,270.6 L507.5,270.4 L509.7,270.1 L508.9,273.0 L507.9,274.0 L506.0,272.8 Z",GA,13047 1564,24027,0.48,0.37,Howard,"M606.0,184.1 L605.6,184.0 L605.3,183.8 L601.7,182.2 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L602.7,180.6 L604.6,180.2 L606.0,181.3 L607.4,181.9 L606.6,183.6 Z",MD,24027 1565,24021,0.51,0.50,Frederick,"M599.1,175.0 L601.3,178.5 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L601.0,180.9 L598.4,183.3 L597.7,183.9 L596.0,182.7 L594.6,182.7 L595.0,177.6 L595.9,175.7 L596.0,175.7 L596.0,175.7 L597.1,175.4 Z",MD,24021 1566,49035,0.47,0.49,Salt Lake,"M158.8,163.6 L159.7,164.0 L159.9,164.9 L160.2,166.6 L160.4,168.2 L160.2,168.6 L159.8,168.6 L154.9,170.4 L152.2,169.2 L152.5,165.0 L152.0,163.9 L155.6,162.0 Z",UT,49035 1567,09003,0.49,0.47,Hartford,"M651.4,130.2 L651.4,130.4 L650.8,130.7 L650.1,129.8 L647.4,131.7 L645.1,132.7 L644.3,131.4 L644.1,125.7 L642.3,125.0 L644.7,124.4 L648.4,123.5 L649.4,127.2 Z",CT,9003 1568,09009,0.48,0.49,New Haven,"M644.3,131.4 L645.1,132.7 L647.4,131.7 L649.2,133.6 L651.2,136.1 L647.1,137.5 L644.8,139.5 L644.7,137.4 L641.0,135.2 L642.7,134.0 Z",CT,9009 1569,39157,0.48,0.51,Tuscarawas,"M540.3,170.3 L542.3,169.7 L544.5,169.3 L544.5,169.3 L545.4,170.7 L545.7,172.8 L545.9,175.0 L545.4,176.6 L543.3,176.9 L541.8,177.1 L541.5,174.6 L540.1,173.6 L540.6,173.5 Z",OH,39157 1570,39067,0.46,0.50,Harrison,"M545.4,176.6 L545.9,175.0 L545.7,172.8 L547.8,172.5 L549.8,172.3 L549.8,172.3 L550.8,172.2 L550.8,172.9 L551.3,176.6 L551.3,176.6 L548.4,176.9 L546.9,177.1 L545.5,177.3 Z",OH,39067 1571,39081,0.51,0.49,Jefferson,"M549.8,172.3 L549.7,170.1 L550.3,169.3 L551.8,169.0 L552.8,169.1 L554.1,170.8 L553.8,172.1 L554.4,173.3 L553.8,175.7 L553.7,175.9 L553.6,176.2 L552.8,176.4 L551.3,176.6 L550.8,172.2 L549.8,172.3 Z",OH,39081 1572,39013,0.54,0.51,Belmont,"M551.3,176.6 L552.8,176.4 L553.6,176.2 L553.6,177.2 L553.5,178.3 L553.6,180.4 L552.9,181.5 L549.0,181.9 L547.6,182.1 L547.5,181.3 L547.4,180.7 L547.2,179.2 L546.9,177.1 L548.4,176.9 L551.3,176.6 Z",OH,39013 1573,39111,0.53,0.54,Monroe,"M547.6,182.1 L549.0,181.9 L552.9,181.5 L552.6,183.1 L553.1,183.7 L552.8,185.5 L552.1,185.8 L551.5,186.5 L551.0,187.1 L551.0,186.6 L547.7,186.5 L546.6,182.3 Z",OH,39111 1574,39059,0.50,0.49,Guernsey,"M545.4,176.6 L545.5,177.3 L546.9,177.1 L547.2,179.2 L547.4,180.7 L545.5,181.1 L541.8,183.5 L541.2,182.1 L540.8,178.4 L541.3,178.3 L541.8,177.1 L543.3,176.9 Z",OH,39059 1575,39047,0.51,0.51,Fayette,"M522.3,188.9 L522.5,191.3 L522.5,191.9 L521.9,193.4 L521.5,194.4 L519.6,194.6 L518.7,194.8 L518.5,192.0 L517.3,192.1 L517.2,190.6 L517.1,189.3 L519.6,189.1 Z",OH,39047 1576,39027,0.51,0.50,Clinton,"M517.3,192.1 L518.5,192.0 L518.7,194.8 L516.5,197.0 L515.4,197.4 L514.3,197.5 L513.8,197.5 L513.6,197.5 L513.6,197.5 L513.5,195.3 L513.3,192.3 L514.8,192.2 Z",OH,39027 1577,39071,0.50,0.50,Highland,"M518.7,194.8 L519.6,194.6 L521.5,194.4 L521.5,196.3 L522.2,197.3 L522.1,198.5 L522.1,199.8 L519.2,200.8 L518.4,200.8 L518.4,200.8 L515.9,201.2 L515.4,197.4 L516.5,197.0 Z",OH,39071 1578,27071,0.50,0.48,Koochiching,"M375.8,54.3 L375.7,51.9 L375.7,48.6 L382.1,49.7 L382.9,51.6 L390.8,49.6 L391.0,59.0 L391.3,62.0 L383.4,62.1 L376.0,63.2 L376.0,60.2 L375.8,54.3 Z",MN,27071 1579,16077,0.06,0.46,Power,"M150.0,123.7 L149.2,127.8 L152.6,126.9 L155.3,128.1 L155.2,135.0 L151.8,137.4 L147.6,136.6 L148.4,132.3 L145.7,131.2 L147.1,123.1 Z",ID,16077 1580,16011,0.51,0.50,Bingham,"M152.6,126.9 L149.2,127.8 L150.0,123.7 L150.3,121.7 L150.5,120.8 L153.3,118.5 L155.3,115.9 L156.0,116.0 L157.4,116.3 L156.8,119.6 L161.8,120.5 L167.6,124.0 L166.9,128.3 L162.5,127.5 L161.1,127.2 L153.7,125.9 Z",ID,16011 1581,16029,0.81,0.62,Caribou,"M166.9,128.3 L169.4,128.7 L173.5,129.4 L172.7,134.4 L172.1,137.8 L165.5,135.4 L165.0,138.3 L163.3,138.0 L161.6,137.7 L161.4,132.5 L159.7,132.5 L161.1,127.2 L162.5,127.5 Z",ID,16029 1582,55121,0.47,0.50,Trempealeau,"M411.7,116.9 L414.0,116.8 L416.1,116.7 L416.4,122.5 L416.7,125.4 L414.5,126.2 L413.5,127.1 L413.4,126.9 L411.8,126.5 L412.0,122.8 Z",WI,55121 1583,46117,0.50,0.96,Stanley,"M296.9,123.7 L295.5,123.7 L296.4,113.9 L297.7,114.4 L301.4,113.8 L302.2,117.0 L303.5,117.7 L302.9,119.2 L310.9,123.2 L310.3,123.9 L305.1,123.7 L305.1,124.2 L298.7,123.8 Z",SD,46117 1584,46071,0.15,0.47,Jackson,"M285.1,125.9 L294.4,126.5 L296.5,126.6 L296.5,127.1 L296.4,129.2 L294.3,130.0 L294.0,136.7 L289.1,136.4 L283.2,136.0 L282.9,134.5 L283.2,130.8 L284.6,130.7 Z",SD,46071 1585,51036,0.52,0.48,Charles City,"M606.7,213.4 L607.0,212.9 L607.3,211.4 L608.5,212.0 L611.2,212.5 L611.7,212.7 L611.9,213.7 L611.9,213.8 L611.8,214.0 L611.9,214.3 L610.4,214.4 L610.5,214.5 L610.4,214.4 L610.4,214.4 L609.8,214.4 L609.6,214.4 L606.6,214.2 L606.8,213.6 Z M609.3,214.6 L609.3,214.7 L609.4,214.8 L609.3,214.7 Z",VA,51036 1586,51149,0.34,0.34,Prince George,"M610.5,214.5 L610.7,214.9 L610.7,214.9 L609.7,216.2 L608.9,217.6 L607.8,218.6 L606.1,220.2 L606.0,219.5 L605.5,217.3 L606.3,216.7 L605.5,216.0 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.6,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.6,214.9 L605.8,214.8 L606.3,215.6 L606.6,214.6 L608.0,214.7 L609.3,214.6 L609.3,214.7 L609.4,214.8 L609.8,214.4 L610.0,214.2 L610.4,214.3 L610.4,214.4 L610.4,214.4 Z M605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 Z M606.6,214.5 L606.6,214.6 L606.5,214.6 L606.5,214.6 L606.5,214.6 Z M606.3,214.7 L606.3,214.7 L606.3,214.7 L606.3,214.7 Z",VA,51149 1587,51041,0.48,0.59,Chesterfield,"M605.5,216.0 L605.4,216.1 L605.2,216.2 L605.4,216.1 L605.5,215.4 L605.5,215.4 Z M600.8,211.6 L600.9,211.6 L601.6,211.5 L602.9,212.6 L604.2,212.8 L605.2,213.8 L606.7,213.4 L606.8,213.6 L606.6,214.2 L606.5,214.4 L606.6,214.5 L606.5,214.6 L606.5,214.6 L606.4,214.6 L606.3,214.7 L606.3,214.7 L606.3,214.7 L606.0,214.8 L605.8,214.8 L605.6,214.9 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L604.7,215.6 L605.0,216.3 L604.8,216.5 L604.6,216.6 L603.2,216.8 L601.8,216.4 L600.4,216.7 L598.6,214.5 L599.3,213.6 Z M605.5,215.4 L605.5,215.4 L605.5,215.4 L605.6,215.4 L605.5,215.4 Z M605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 Z",VA,51041 1588,01023,0.50,0.50,Choctaw,"M466.2,319.8 L469.2,319.5 L473.2,319.1 L472.0,319.7 L471.6,324.7 L470.3,327.8 L471.8,329.6 L471.3,329.6 L466.4,330.1 L466.4,330.1 L466.3,328.6 L466.0,326.8 L466.1,325.8 L466.2,321.1 L466.2,320.7 Z",AL,1023 1589,01129,0.55,0.48,Washington,"M471.3,329.6 L471.8,329.6 L474.7,332.8 L474.6,337.9 L474.7,338.4 L474.3,338.5 L469.2,339.2 L467.7,339.8 L467.4,337.4 L467.0,334.5 L466.6,331.4 L466.4,330.1 L466.4,330.1 Z",AL,1129 1590,18055,0.50,0.50,Greene,"M472.4,208.1 L472.2,206.9 L471.9,203.7 L473.6,203.6 L474.3,203.5 L476.4,203.3 L479.2,203.1 L479.4,204.8 L479.5,206.0 L479.6,206.8 L479.6,207.4 L478.7,207.5 L476.7,207.7 L476.7,207.7 L475.0,207.9 L474.2,208.0 L473.8,208.0 L472.4,208.1 Z",IN,18055 1591,31047,0.05,0.46,Dawson,"M314.4,183.3 L313.0,183.2 L311.5,182.9 L310.8,182.7 L307.2,182.5 L305.6,182.4 L304.2,182.3 L304.2,182.3 L304.2,182.4 L304.2,182.4 L304.3,179.2 L304.4,176.6 L308.8,176.8 L314.5,177.0 L314.3,182.8 Z",NE,31047 1592,31111,0.50,0.50,Lincoln,"M304.2,182.4 L299.9,182.2 L297.1,182.0 L294.3,181.9 L291.1,181.7 L291.3,178.9 L291.4,176.6 L291.2,175.9 L291.5,170.1 L293.5,170.2 L298.5,170.5 L303.4,170.7 L304.4,170.8 L304.5,170.8 L304.4,176.6 L304.3,179.2 L304.2,182.3 L304.2,182.4 Z",NE,31111 1593,38105,0.51,0.53,Williams,"M280.4,47.0 L280.3,48.0 L280.3,48.5 L280.7,51.5 L280.4,55.7 L276.2,55.2 L272.8,57.1 L270.8,54.9 L266.4,56.7 L266.7,54.0 L267.0,50.1 L267.1,48.3 L267.3,45.9 L270.1,46.2 Z",ND,38105 1594,38017,0.93,0.51,Cass,"M348.4,73.6 L348.5,74.8 L348.3,75.1 L349.1,78.7 L348.7,83.9 L347.3,83.9 L343.1,83.8 L340.1,83.8 L338.4,83.7 L338.5,77.8 L338.3,73.4 L339.8,73.4 L341.2,73.5 L347.1,73.6 Z",ND,38017 1595,17151,0.54,0.42,Pope,"M458.9,231.3 L458.9,231.7 L459.1,234.2 L458.1,237.1 L458.3,238.6 L458.3,238.6 L458.3,238.6 L455.3,236.0 L455.2,234.5 L455.0,231.6 L456.7,231.5 Z M458.3,238.6 L458.5,238.7 L458.6,240.3 L458.3,238.6 L458.3,238.6 Z",IL,17151 1596,17069,0.51,0.49,Hardin,"M459.1,234.2 L458.9,231.7 L458.9,231.3 L459.2,231.3 L459.4,231.3 L462.0,231.1 L462.7,231.4 L463.5,232.1 L463.7,232.5 L460.9,233.6 L459.9,234.5 L459.4,234.3 Z",IL,17069 1597,31005,0.50,0.50,Arthur,"M290.1,164.1 L290.0,166.3 L289.8,169.9 L287.0,169.8 L282.5,169.5 L282.6,167.7 L282.9,163.7 L287.4,164.0 L289.9,164.1 Z",NE,31005 1598,48163,0.50,0.51,Frio,"M307.1,385.3 L307.1,385.3 L306.9,385.3 L307.0,383.5 L307.1,377.7 L307.1,377.7 L307.1,377.7 L313.6,377.9 L316.2,378.0 L316.2,379.1 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L310.0,385.4 Z",TX,48163 1599,19103,0.50,0.51,Johnson,"M410.2,163.0 L414.4,162.8 L416.0,162.7 L416.1,164.3 L416.3,167.1 L416.3,168.4 L416.4,170.0 L416.1,170.0 L414.9,170.1 L414.4,168.6 L410.5,168.8 L410.4,167.3 Z",IA,19103 1600,20001,0.50,0.50,Allen,"M370.1,233.2 L369.0,233.2 L364.3,233.3 L364.4,231.8 L364.3,228.2 L366.8,228.2 L370.2,228.1 L370.2,231.8 Z",KS,20001 1601,20133,0.50,0.50,Neosho,"M364.3,233.3 L369.0,233.2 L370.1,233.2 L370.1,234.0 L370.1,234.2 L370.1,237.1 L370.2,239.1 L369.6,239.1 L364.4,239.1 L364.3,239.1 L364.3,239.1 L364.3,237.2 Z",KS,20133 1602,21089,0.51,0.54,Greenup,"M527.4,204.6 L529.2,203.8 L530.6,206.7 L531.8,206.8 L532.7,207.5 L531.5,208.9 L531.1,210.0 L528.9,209.9 L526.2,208.5 L527.2,206.8 Z",KY,21089 1603,31087,0.50,0.50,Hitchcock,"M297.0,187.9 L296.9,190.8 L296.7,193.7 L294.4,193.6 L289.4,193.3 L289.8,187.8 L289.8,187.5 L292.7,187.6 L296.8,187.9 L296.8,187.9 L296.9,187.9 Z",NE,31087 1604,31085,0.50,0.50,Hayes,"M292.7,187.6 L289.8,187.5 L289.7,187.5 L289.6,187.5 L289.7,184.5 L289.9,181.7 L290.9,181.7 L291.1,181.7 L294.3,181.9 L297.1,182.0 L296.9,184.7 L296.8,187.9 L296.8,187.9 Z",NE,31085 1605,31063,0.05,0.47,Frontier,"M297.1,182.0 L299.9,182.2 L304.2,182.4 L304.2,182.4 L305.6,182.4 L307.2,182.5 L307.1,186.9 L305.5,188.3 L305.0,188.3 L304.2,188.2 L301.8,188.1 L297.0,187.9 L296.9,187.9 L296.8,187.9 L296.8,187.9 L296.9,184.7 Z",NE,31063 1606,31057,0.50,0.50,Dundy,"M289.6,187.5 L289.7,187.5 L289.8,187.5 L289.8,187.8 L289.4,193.3 L288.4,193.2 L288.3,193.2 L284.7,193.0 L280.1,192.7 L280.4,189.1 L280.5,186.9 L284.4,187.2 Z",NE,31057 1607,08115,0.50,0.50,Sedgwick,"M273.6,175.5 L274.0,175.5 L274.0,175.5 L275.7,175.6 L281.2,176.0 L281.2,176.1 L281.0,180.2 L279.2,180.1 L273.3,179.7 L273.5,177.8 Z",CO,8115 1608,08095,0.50,0.50,Phillips,"M273.3,179.7 L279.2,180.1 L281.0,180.2 L280.9,180.8 L280.9,181.1 L280.7,184.4 L280.6,185.4 L276.0,185.1 L272.8,184.9 L273.1,180.4 Z",CO,8095 1609,21101,0.53,0.49,Henderson,"M471.1,224.5 L472.0,224.5 L473.2,225.0 L473.8,226.9 L472.1,228.7 L471.3,229.1 L471.0,229.4 L469.1,229.7 L467.9,229.9 L467.4,228.4 L464.9,225.7 L466.2,226.0 L467.9,225.5 L469.1,224.2 Z",KY,21101 1610,28105,0.50,0.50,Oktibbeha,"M455.4,304.1 L455.3,302.0 L455.1,300.0 L455.1,299.5 L456.1,299.4 L460.9,299.0 L461.0,300.0 L461.2,302.2 L461.3,303.7 L460.2,303.8 L459.3,303.8 L457.4,304.0 Z",MS,28105 1611,24023,0.60,0.50,Garrett,"M577.3,179.3 L576.5,183.2 L576.4,183.7 L575.4,185.4 L574.2,186.6 L572.6,188.7 L571.8,189.2 L570.9,183.8 L570.4,180.6 L571.2,180.5 L571.5,180.4 L575.9,179.6 Z",MD,24023 1612,26059,0.50,0.50,Hillsdale,"M498.3,158.3 L498.1,157.2 L497.9,157.2 L497.6,155.0 L497.2,152.1 L498.2,152.0 L498.7,151.9 L501.7,151.5 L503.0,151.3 L503.4,154.8 L503.8,157.4 L503.6,157.4 L503.3,157.5 L500.5,157.9 Z",MI,26059 1613,39171,0.50,0.50,Williams,"M498.3,158.3 L500.5,157.9 L503.3,157.5 L504.0,160.6 L504.5,161.1 L504.6,161.8 L504.6,162.0 L500.4,162.6 L498.8,162.8 L498.7,161.9 L498.6,161.0 L498.4,159.7 Z",OH,39171 1614,39051,0.51,0.52,Fulton,"M503.3,157.5 L503.6,157.4 L503.8,157.4 L508.0,156.7 L509.7,156.4 L509.9,158.1 L510.2,160.3 L508.1,160.6 L504.5,161.1 L504.0,160.6 Z",OH,39051 1615,21177,0.49,0.49,Muhlenberg,"M473.0,235.7 L473.5,234.9 L474.1,233.4 L474.1,233.4 L474.1,233.4 L474.1,233.4 L474.1,233.4 L475.2,233.5 L476.6,232.8 L478.3,234.3 L479.6,235.9 L479.9,238.0 L479.3,238.4 L478.8,238.3 L477.8,238.6 L475.2,239.2 L475.1,238.7 L474.4,238.2 L473.9,237.4 Z",KY,21177 1616,21149,0.44,0.54,McLean,"M474.1,233.4 L474.1,233.4 L473.3,232.9 L473.2,231.5 L472.7,230.6 L471.5,230.3 L471.0,229.4 L471.3,229.1 L472.1,228.7 L474.1,229.6 L477.2,230.3 L476.5,231.7 L476.6,232.8 L475.7,232.9 L475.2,233.5 L474.1,233.4 Z",KY,21149 1617,21141,0.53,0.47,Logan,"M477.8,238.6 L478.8,238.3 L479.3,238.4 L480.6,238.4 L483.0,239.1 L483.5,240.1 L484.0,241.0 L483.0,241.8 L482.4,245.1 L480.6,245.3 L478.4,245.6 L478.3,243.9 Z",KY,21141 1618,33015,0.48,0.54,Rockingham,"M657.3,103.6 L658.0,99.3 L661.2,100.8 L663.8,100.4 L664.5,100.7 L664.8,100.8 L665.3,100.9 L665.0,104.4 L662.5,105.3 L660.4,107.9 L657.9,107.2 L657.5,104.1 L657.5,104.1 Z",NH,33015 1619,33017,0.35,0.60,Strafford,"M663.8,100.4 L661.2,100.8 L658.0,99.3 L658.1,99.2 L658.1,99.1 L658.7,97.7 L657.8,94.8 L659.3,94.5 L660.2,94.1 L660.5,96.2 Z",NH,33017 1620,42133,0.17,0.27,York,"M607.3,173.3 L606.9,173.3 L604.5,173.9 L602.6,174.3 L601.8,174.4 L601.9,172.1 L598.9,169.1 L600.0,167.5 L601.8,165.8 L603.4,166.5 L603.9,167.1 L606.5,167.8 L611.4,172.3 L608.4,173.0 Z",PA,42133 1621,31097,0.50,0.50,Johnson,"M352.0,190.9 L352.0,189.6 L352.1,186.6 L355.0,186.6 L357.1,186.6 L357.1,189.5 L357.1,191.0 L353.5,190.9 Z",NE,31097 1622,46075,0.51,0.51,Jones,"M296.4,129.2 L296.5,127.1 L296.5,126.6 L296.7,126.6 L296.9,123.7 L298.7,123.8 L305.1,124.2 L304.9,129.6 L305.1,131.8 L300.3,131.7 Z",SD,46075 1623,38007,0.47,0.51,Billings,"M273.8,80.6 L272.1,80.4 L269.4,80.2 L269.9,74.3 L269.3,74.3 L269.8,68.4 L269.8,68.4 L269.8,68.4 L270.4,68.4 L276.3,68.9 L277.0,69.0 L276.6,74.8 L274.3,74.7 Z M269.8,68.4 L269.8,68.4 L269.8,68.4 Z",ND,38007 1624,31003,0.50,0.50,Antelope,"M329.2,160.0 L329.4,155.5 L329.4,154.1 L333.2,154.2 L335.2,154.3 L335.1,158.4 L335.1,160.1 L335.0,161.7 L335.0,163.0 L332.1,163.0 L329.2,162.9 L329.3,160.0 Z",NE,31003 1625,29073,0.49,0.50,Gasconade,"M415.4,222.6 L415.3,221.2 L415.1,215.7 L416.4,216.1 L418.0,215.4 L418.3,215.4 L418.7,215.6 L418.8,217.7 L419.1,223.8 L416.9,223.8 L417.0,224.8 L416.4,224.8 L415.7,224.9 L415.5,224.9 L415.4,222.6 Z",MO,29073 1626,21061,0.54,0.56,Edmonson,"M486.4,235.9 L485.7,234.6 L485.2,233.5 L488.6,232.9 L489.3,232.8 L491.0,234.7 L490.9,235.5 L490.9,237.4 L490.4,237.3 L488.1,237.3 Z",KY,21061 1627,21031,0.48,0.56,Butler,"M485.2,233.5 L485.7,234.6 L486.4,235.9 L483.4,236.0 L483.0,239.1 L480.6,238.4 L479.3,238.4 L479.9,238.0 L479.6,235.9 L481.3,234.2 L483.1,232.5 L484.9,232.8 Z",KY,21031 1628,13211,0.40,0.62,Morgan,"M530.6,290.9 L532.2,287.5 L532.5,286.9 L533.4,287.8 L534.2,288.7 L536.5,291.2 L536.5,292.0 L534.8,292.6 L533.0,293.3 L532.2,292.9 L530.8,292.1 L530.7,291.3 Z",GA,13211 1629,28033,0.50,0.52,DeSoto,"M436.7,278.9 L437.4,277.5 L436.5,276.7 L439.0,276.5 L444.5,276.2 L444.7,278.2 L444.8,279.9 L440.6,281.3 L438.2,281.1 L438.2,281.1 L438.2,281.1 L438.2,281.1 L438.1,278.9 Z",MS,28033 1630,28137,0.49,0.50,Tate,"M438.2,281.1 L440.6,281.3 L444.8,279.9 L445.6,281.3 L445.8,283.5 L445.5,283.5 L445.1,283.5 L442.1,283.8 L438.4,284.0 L437.8,282.8 L438.2,281.1 L438.2,281.1 L438.2,281.1 Z",MS,28137 1631,05107,0.50,0.50,Phillips,"M433.0,282.9 L433.6,284.1 L433.3,284.8 L430.9,287.6 L428.4,291.9 L428.4,291.9 L426.5,292.0 L426.1,292.0 L426.1,292.0 L426.5,291.0 L426.8,290.3 L426.8,288.3 L426.7,286.1 L426.5,283.1 L428.5,283.1 Z",AR,5107 1632,01117,0.25,0.97,Shelby,"M492.3,303.9 L492.0,304.2 L492.0,305.3 L490.7,304.6 L486.9,305.3 L484.6,303.6 L484.5,302.3 L487.1,300.6 L491.1,296.5 L493.1,297.0 L493.3,298.9 L493.8,300.4 Z",AL,1117 1633,40149,0.96,0.53,Washita,"M322.0,270.8 L321.9,275.1 L321.9,276.9 L320.1,276.5 L311.7,276.3 L311.7,274.8 L311.9,270.4 L319.1,270.7 Z",OK,40149 1634,37135,0.58,0.52,Orange,"M583.9,237.4 L584.3,237.3 L585.3,237.1 L587.2,236.8 L588.0,236.7 L588.0,238.1 L588.3,243.0 L587.4,243.2 L585.1,243.4 L584.8,242.8 Z",NC,37135 1635,18103,0.49,0.49,Miami,"M482.7,173.4 L482.5,171.9 L485.3,171.6 L486.1,177.3 L487.0,177.2 L487.0,177.5 L487.2,178.7 L483.9,179.1 L483.4,179.1 L483.0,176.0 Z",IN,18103 1636,18017,0.50,0.52,Cass,"M482.7,173.4 L483.0,176.0 L483.4,179.1 L482.4,179.3 L480.7,179.4 L480.5,177.3 L477.8,176.8 L477.6,175.3 L477.5,173.9 L478.5,173.8 L478.9,173.8 L481.8,173.5 Z",IN,18017 1637,18181,0.51,0.50,White,"M477.5,173.9 L477.6,175.3 L477.8,176.8 L475.7,177.0 L475.7,180.0 L473.9,180.1 L471.5,180.4 L471.5,180.4 L471.4,178.8 L471.2,177.5 L471.0,175.8 L473.0,174.3 L473.0,174.3 L473.0,174.3 L473.0,174.3 L475.9,174.0 Z",IN,18181 1638,55061,0.55,0.50,Kewaunee,"M456.9,112.6 L456.9,112.6 L457.0,112.4 L458.3,112.3 L461.4,112.0 L460.4,114.6 L459.9,118.0 L458.5,118.1 L457.3,118.3 L457.0,114.8 Z",WI,55061 1639,36029,0.42,0.52,Erie,"M566.6,124.3 L566.7,124.3 L566.9,124.3 L567.1,124.4 L566.8,125.8 L566.3,124.4 L566.3,124.3 Z M565.7,132.8 L568.3,127.8 L567.5,124.7 L569.2,123.5 L572.5,122.8 L572.5,122.8 L572.7,124.1 L573.2,126.5 L573.5,127.9 L574.2,131.9 L569.0,134.5 L567.8,133.3 L567.0,133.3 L567.0,133.3 L567.0,133.3 L567.0,133.3 L567.0,133.3 L566.4,132.9 Z",NY,36029 1640,36063,0.57,0.56,Niagara,"M569.2,123.5 L567.5,124.7 L564.7,121.1 L571.5,117.9 L572.1,120.7 L572.3,122.2 L572.4,122.7 L572.5,122.8 L572.5,122.8 Z M566.9,124.3 L567.1,124.4 L567.1,124.4 Z M566.3,124.4 L566.5,124.3 L566.6,124.3 L566.3,124.3 Z",NY,36063 1641,36009,0.50,0.49,Cattaraugus,"M567.8,133.3 L569.0,134.5 L574.2,131.9 L574.3,132.2 L576.2,131.8 L576.8,135.1 L577.9,140.4 L574.3,141.1 L570.4,141.8 L569.3,142.0 L568.6,142.2 L568.4,140.9 L567.0,133.3 L567.0,133.3 L567.0,133.3 Z M567.0,133.3 L567.0,133.3 L567.0,133.3 Z",NY,36009 1642,24031,0.53,0.49,Montgomery,"M597.7,183.9 L598.4,183.3 L601.0,180.9 L601.7,182.2 L605.3,183.8 L604.5,186.3 L604.4,186.8 L603.8,186.4 L603.0,187.6 L601.3,187.2 L599.9,186.2 L597.3,185.7 Z",MD,24031 1643,51610,0.49,0.87,Falls Church,"M602.5,188.5 L602.7,188.6 L602.8,188.7 L602.3,188.7 Z",VA,51610 1644,51035,0.55,0.54,Carroll,"M561.9,235.9 L561.2,235.2 L560.6,234.6 L561.0,233.8 L560.3,234.3 L559.2,233.1 L558.5,232.3 L560.9,231.1 L562.3,230.4 L563.0,230.0 L563.5,229.3 L565.8,231.9 L566.4,232.6 L565.0,233.6 L564.9,235.4 L563.3,235.6 Z",VA,51035 1645,17083,0.61,0.62,Jersey,"M432.8,211.0 L431.2,210.5 L430.4,210.4 L428.9,210.1 L428.3,208.0 L432.0,206.9 L434.1,205.3 L434.2,206.5 L434.4,209.6 L432.7,209.7 Z",IL,17083 1646,29183,0.43,0.36,St. Charles,"M430.4,210.4 L431.2,210.5 L432.8,211.0 L435.0,212.1 L435.0,212.8 L432.5,211.6 L427.1,216.1 L424.8,218.0 L424.1,217.8 L424.0,214.9 L423.9,212.4 L425.7,212.2 L427.7,211.1 L429.3,212.1 Z",MO,29183 1647,29071,0.51,0.47,Franklin,"M424.1,217.8 L424.8,218.0 L427.1,216.1 L427.1,217.2 L427.2,219.0 L427.2,219.9 L426.9,223.4 L424.4,223.5 L422.7,223.7 L419.1,223.9 L419.1,223.8 L418.8,217.7 L418.7,215.6 L420.6,216.8 Z",MO,29071 1648,20013,0.50,0.50,Brown,"M366.5,201.1 L364.4,201.1 L363.6,201.1 L361.4,201.1 L360.7,201.2 L360.7,199.4 L360.7,195.3 L363.9,195.3 L366.5,195.3 L366.5,197.0 Z",KS,20013 1649,13029,0.59,0.44,Bryan,"M570.7,314.5 L570.7,314.5 L570.7,314.5 L570.3,315.2 L570.8,316.5 L570.1,316.5 L569.1,316.2 L566.7,313.6 L561.9,311.9 L561.0,311.3 L560.8,311.0 L560.8,311.0 L560.8,311.0 L560.8,311.0 L562.9,310.0 L565.5,308.8 L566.2,310.6 L566.5,311.1 L568.2,312.8 Z",GA,13029 1650,13031,0.45,0.46,Bulloch,"M560.8,311.0 L560.8,311.0 L560.8,311.0 L560.1,309.7 L557.9,309.5 L558.2,306.9 L556.3,305.1 L556.3,304.9 L556.5,303.9 L557.7,303.4 L558.7,302.9 L561.1,304.3 L563.2,304.9 L563.5,306.1 L565.5,308.8 L562.9,310.0 Z",GA,13031 1651,13109,0.50,0.51,Evans,"M560.8,311.0 L561.0,311.3 L561.9,311.9 L561.5,312.5 L561.4,312.7 L558.2,312.6 L557.0,309.4 L557.4,309.4 L557.9,309.5 L560.1,309.7 L560.8,311.0 L560.8,311.0 Z",GA,13109 1652,21119,0.49,0.55,Knott,"M531.5,229.9 L529.9,229.3 L529.4,226.6 L529.9,224.5 L531.4,224.7 L531.6,224.9 L531.8,224.9 L534.0,225.6 L535.1,227.8 L534.9,227.9 L534.9,228.1 L533.7,228.3 Z",KY,21119 1653,21071,0.52,0.50,Floyd,"M535.1,227.8 L534.0,225.6 L531.8,224.9 L532.3,223.9 L531.0,221.1 L533.3,220.1 L535.0,220.5 L535.3,220.7 L536.1,220.9 L536.3,224.6 Z",KY,21071 1654,21159,0.40,0.54,Martin,"M536.1,220.9 L535.3,220.7 L535.0,220.5 L534.3,218.4 L535.0,217.8 L535.2,216.5 L536.3,216.5 L537.5,217.3 L537.6,217.8 L539.2,219.1 L539.0,219.5 L537.5,221.0 Z",KY,21159 1655,13309,0.63,0.48,Wheeler,"M544.6,313.8 L545.3,312.8 L545.1,312.7 L545.5,312.6 L547.1,310.4 L547.5,310.6 L548.1,310.5 L549.6,315.1 L550.5,315.9 L550.2,316.0 L549.2,316.8 L547.7,315.5 Z",GA,13309 1656,37107,0.55,0.42,Lenoir,"M611.1,249.3 L610.7,250.2 L610.5,250.9 L609.9,252.3 L608.3,253.7 L607.4,251.5 L606.4,251.2 L606.0,248.4 L606.1,247.9 L607.9,248.0 L610.4,246.1 L611.3,247.2 L611.8,247.3 L611.1,248.1 L611.1,249.3 L611.1,249.3 Z",NC,37107 1657,48483,0.50,0.50,Wheeler,"M295.9,267.1 L298.2,267.3 L303.3,267.5 L303.2,269.2 L303.1,270.8 L303.1,270.8 L302.9,274.8 L299.1,274.6 L295.5,274.4 L295.6,272.6 L295.9,267.1 Z",TX,48483 1658,48211,0.50,0.50,Hemphill,"M298.2,267.3 L295.9,267.1 L295.9,267.1 L296.0,265.0 L296.2,259.8 L298.6,260.0 L303.6,260.2 L303.5,262.4 L303.5,263.1 L303.4,265.1 L303.3,267.5 Z",TX,48211 1659,48393,0.50,0.50,Roberts,"M295.9,267.1 L295.9,267.1 L292.5,266.9 L288.4,266.7 L288.4,266.6 L288.4,266.6 L288.4,266.6 L288.4,266.6 L288.4,266.6 L288.7,262.5 L288.8,259.5 L288.8,259.4 L289.2,259.4 L296.2,259.8 L296.2,259.8 L296.0,265.0 L295.9,267.1 Z",TX,48393 1660,48295,0.50,0.50,Lipscomb,"M303.6,260.2 L298.6,260.0 L296.2,259.8 L296.2,259.8 L296.3,257.2 L296.5,252.4 L296.5,252.4 L299.4,252.5 L303.9,252.7 L303.9,252.8 Z",TX,48295 1661,40007,0.15,0.47,Beaver,"M296.5,252.4 L292.5,252.2 L291.0,252.1 L291.3,246.3 L291.6,243.8 L294.4,243.9 L295.8,244.0 L295.8,244.0 L300.2,244.2 L303.1,244.3 L304.1,244.3 L304.2,244.4 L304.1,248.3 L303.9,251.2 L303.9,252.5 L303.9,252.7 L299.4,252.5 L296.5,252.4 Z",OK,40007 1662,20175,0.50,0.50,Seward,"M294.4,243.9 L291.6,243.8 L290.9,243.7 L290.0,243.7 L290.1,240.8 L290.3,237.2 L291.2,237.2 L295.9,237.5 L296.1,237.5 L295.8,244.0 L295.8,244.0 Z",KS,20175 1663,41009,0.62,0.47,Columbia,"M46.3,52.9 L46.0,52.9 L44.3,52.4 L43.5,51.2 L39.7,50.0 L41.1,45.8 L41.5,44.1 L43.0,44.7 L43.6,44.1 L46.4,46.7 L46.6,50.9 L46.3,51.5 Z",OR,41009 1664,45041,0.47,0.66,Florence,"M584.3,270.3 L584.6,270.4 L584.7,270.4 L585.2,270.4 L586.1,271.3 L587.9,276.0 L590.5,277.8 L588.2,278.7 L582.6,277.8 L581.6,278.0 L581.1,277.0 L582.0,276.1 L580.4,275.4 L579.9,275.0 L579.3,275.0 L583.4,270.7 Z",SC,45041 1665,49053,0.51,0.49,Washington,"M133.9,216.3 L133.2,219.9 L132.3,224.5 L118.3,221.8 L117.2,221.6 L117.9,217.7 L119.1,211.6 L126.7,212.9 L129.2,215.7 L133.9,216.3 Z",UT,49053 1666,49021,0.50,0.55,Iron,"M133.9,216.3 L129.2,215.7 L126.7,212.9 L119.1,211.6 L119.9,208.1 L121.0,202.7 L127.1,203.9 L141.4,206.7 L140.7,210.9 L137.6,211.8 L136.9,216.1 L134.0,215.6 L133.9,216.3 L133.9,216.3 Z",UT,49021 1667,49025,0.50,0.57,Kane,"M133.9,216.3 L133.9,216.3 L134.0,215.6 L136.9,216.1 L141.1,217.0 L163.6,220.8 L158.3,227.0 L152.0,228.0 L144.2,226.7 L137.1,225.4 L132.7,224.6 L132.3,224.5 L133.2,219.9 L133.9,216.3 Z",UT,49025 1668,56033,0.49,0.51,Sheridan,"M221.5,110.3 L216.5,105.7 L216.0,102.1 L225.8,103.4 L235.5,104.6 L237.2,104.8 L238.4,104.9 L238.3,107.2 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.5,112.1 L232.7,111.7 Z",WY,56033 1669,56003,0.53,0.50,Big Horn,"M216.0,102.1 L216.5,105.7 L221.5,110.3 L223.3,112.5 L223.4,117.2 L220.6,116.8 L206.5,114.9 L207.6,103.2 L207.6,101.0 L211.7,101.5 L212.0,101.6 L213.2,101.7 Z",WY,56003 1670,30003,0.52,0.46,Big Horn,"M216.0,102.1 L213.2,101.7 L212.0,101.6 L213.9,98.1 L207.2,97.2 L208.4,93.2 L215.3,93.2 L216.4,86.9 L223.0,85.3 L226.7,87.2 L229.3,89.0 L231.4,92.6 L229.9,100.8 L235.7,101.5 L235.9,101.5 L235.5,104.6 L225.8,103.4 Z",MT,30003 1671,42047,0.46,0.52,Elk,"M570.3,153.1 L571.6,151.2 L571.1,148.1 L571.1,148.1 L576.9,146.9 L577.8,147.2 L578.4,150.4 L581.3,152.8 L576.1,153.5 L575.5,154.5 L571.6,152.2 Z",PA,42047 1672,42083,0.94,0.41,McKean,"M571.1,148.1 L570.5,144.7 L570.4,141.8 L574.3,141.1 L577.9,140.4 L578.3,140.3 L579.1,140.1 L579.5,142.2 L580.4,146.4 L577.7,146.9 L577.8,147.2 L576.9,146.9 L574.6,147.4 L571.1,148.1 Z",PA,42083 1673,28031,0.50,0.52,Covington,"M447.8,330.2 L448.4,330.1 L449.3,330.0 L451.7,329.6 L452.9,329.5 L453.2,333.8 L453.3,335.6 L453.0,335.6 L452.6,335.6 L451.0,335.7 L450.6,335.8 L448.0,333.0 Z",MS,28031 1674,18013,0.50,0.50,Brown,"M484.4,199.6 L485.3,199.5 L486.6,199.3 L487.2,203.7 L487.2,204.2 L486.0,204.3 L484.1,204.5 L483.4,204.6 L482.8,199.8 L483.6,199.7 Z",IN,18013 1675,21065,0.35,0.58,Estill,"M516.8,221.0 L518.2,222.2 L520.7,222.6 L519.5,223.6 L518.7,225.8 L517.8,225.2 L516.2,225.7 L516.0,224.0 L515.7,220.9 L515.8,221.4 Z",KY,21065 1676,48087,0.50,0.50,Collingsworth,"M302.8,277.3 L302.7,280.9 L302.6,282.1 L302.6,282.1 L302.0,282.1 L296.9,281.8 L296.3,281.8 L295.1,281.7 L295.4,276.6 L295.5,274.4 L299.1,274.6 L302.9,274.8 L302.9,275.5 Z",TX,48087 1677,48089,0.46,0.53,Colorado,"M345.0,369.4 L347.4,366.7 L349.6,363.9 L352.9,366.1 L355.4,369.4 L352.8,373.3 L348.5,375.9 L348.4,375.9 L348.2,375.7 L349.7,374.5 Z",TX,48089 1678,17063,0.50,0.50,Grundy,"M456.0,172.5 L453.4,172.8 L451.8,173.0 L451.6,170.1 L451.2,167.1 L452.7,167.0 L455.5,166.7 L455.8,169.4 L456.0,171.0 L456.0,171.0 L456.2,172.5 Z",IL,17063 1679,27073,0.50,0.50,Lac qui Parle,"M352.6,111.8 L352.6,108.9 L352.6,106.9 L354.6,107.3 L356.7,108.4 L357.1,108.6 L357.5,108.9 L358.2,109.8 L361.1,112.5 L359.8,114.7 L352.6,114.7 L352.6,113.3 L352.6,111.8 L352.6,111.8 L352.6,111.8 L352.6,111.8 L352.6,111.8 L352.6,111.8 L352.6,111.8 Z",MN,27073 1680,46051,0.50,0.50,Grant,"M352.6,111.8 L349.2,111.8 L347.4,111.8 L347.4,108.8 L343.4,108.8 L343.4,107.1 L343.4,106.3 L346.2,105.9 L352.4,105.9 L352.6,106.3 L352.6,106.9 L352.6,108.9 L352.6,111.8 L352.6,111.8 L352.6,111.8 L352.6,111.8 Z M352.6,111.8 L352.6,111.8 L352.6,111.8 L352.6,111.8 Z",SD,46051 1681,46039,0.50,0.50,Deuel,"M352.6,111.8 L352.6,111.8 L352.6,113.3 L352.6,114.7 L352.6,116.2 L352.6,117.6 L352.5,118.6 L352.5,119.1 L350.2,119.1 L347.3,119.1 L347.4,115.5 L347.4,114.7 L347.4,113.2 L347.4,111.8 L349.2,111.8 L352.6,111.8 L352.6,111.8 Z M352.6,111.8 L352.6,111.8 L352.6,111.8 Z",SD,46039 1682,27081,0.50,0.50,Lincoln,"M352.5,119.1 L352.5,118.6 L352.6,117.6 L354.4,117.6 L356.9,117.6 L357.0,119.1 L357.0,125.0 L357.0,125.0 L355.1,124.9 L352.5,124.9 L352.5,123.2 L352.5,119.1 Z",MN,27081 1683,27083,0.50,0.50,Lyon,"M357.0,119.1 L356.9,117.6 L362.7,117.6 L362.9,119.1 L362.9,123.6 L362.9,125.0 L360.7,125.0 L357.2,125.0 L357.2,125.0 L357.1,125.0 L357.0,125.0 L357.0,125.0 Z",MN,27083 1684,13043,0.52,0.50,Candler,"M556.3,305.1 L558.2,306.9 L557.9,309.5 L557.4,309.4 L557.0,309.4 L556.1,309.4 L554.0,309.2 L554.7,305.7 Z",GA,13043 1685,48497,0.50,0.49,Wise,"M330.8,312.3 L330.9,308.2 L331.0,305.1 L331.6,305.1 L337.0,305.2 L338.5,305.2 L338.5,305.3 L338.3,308.3 L338.2,312.7 L337.9,312.6 L336.1,312.6 L334.8,312.5 Z",TX,48497 1686,13307,0.53,0.47,Webster,"M520.0,315.4 L521.9,316.9 L523.3,316.7 L523.5,318.2 L523.5,319.5 L523.4,320.3 L521.3,320.6 L521.0,320.6 L520.5,320.7 L520.1,315.5 Z",GA,13307 1687,13159,0.52,0.46,Jasper,"M530.8,292.1 L532.2,292.9 L533.0,293.3 L533.1,294.0 L533.5,297.7 L532.4,298.0 L529.8,298.9 L529.6,298.5 L529.6,298.1 L529.6,297.1 L528.6,295.1 L529.0,293.8 Z",GA,13159 1688,13169,0.52,0.56,Jones,"M529.8,298.9 L532.4,298.0 L533.5,297.7 L535.0,297.3 L535.1,297.3 L535.1,297.3 L535.4,298.2 L536.7,301.4 L536.5,301.6 L536.1,302.0 L535.4,302.6 L534.7,303.1 L533.4,302.5 L532.0,302.3 L531.7,301.7 L531.7,301.7 L531.7,301.7 L531.7,301.7 L531.7,301.7 L530.9,299.9 Z",GA,13169 1689,13009,0.52,0.42,Baldwin,"M535.1,297.3 L536.5,297.4 L537.2,296.9 L539.8,297.2 L540.6,298.3 L540.9,299.8 L540.6,300.5 L539.4,299.7 L536.7,301.4 L535.4,298.2 L535.1,297.3 Z",GA,13009 1690,13021,0.49,0.51,Bibb,"M532.0,302.3 L533.4,302.5 L534.7,303.1 L534.9,303.8 L533.9,306.3 L532.8,306.2 L532.4,306.0 L530.8,305.6 L529.4,303.8 L531.5,301.8 L531.7,301.7 L531.7,301.7 L531.7,301.7 Z",GA,13021 1691,36079,0.50,0.50,Putnam,"M633.0,137.8 L633.3,136.8 L638.1,135.0 L638.4,136.3 L638.6,137.6 L637.5,138.0 L633.4,139.7 L633.4,139.7 L633.4,139.7 L633.4,139.7 L633.4,139.7 L633.4,139.6 L633.6,138.4 Z",NY,36079 1692,51199,0.51,0.48,York,"M615.9,214.3 L615.9,214.3 L615.9,214.3 L615.0,214.1 L614.6,213.7 L614.4,213.3 L613.8,213.2 L613.4,212.2 L614.4,211.9 L615.4,213.0 L618.9,214.3 L618.4,214.8 L618.8,215.5 L618.8,215.5 L618.7,215.8 L618.4,215.8 L616.2,214.2 L615.9,214.3 Z",VA,51199 1693,51735,0.44,0.61,Poquoson,"M618.4,214.8 L618.9,214.3 L620.1,214.8 L619.7,215.5 L619.2,215.3 L618.8,215.5 L618.8,215.5 Z",VA,51735 1694,51700,0.37,0.51,Newport News,"M616.2,214.2 L618.4,215.8 L618.5,217.1 L618.5,217.1 L618.5,217.1 L616.0,215.9 L615.8,215.2 L616.1,214.7 L615.9,214.3 L615.9,214.3 Z M618.5,217.1 L619.4,217.4 L618.5,217.1 L618.5,217.1 L618.5,217.1 Z",VA,51700 1695,40065,0.51,0.44,Jackson,"M304.6,286.2 L307.1,286.3 L307.2,282.7 L310.6,282.8 L313.1,281.3 L314.5,280.8 L315.0,284.4 L313.2,286.8 L313.3,289.4 L311.1,287.3 L309.7,288.3 L306.6,288.5 Z",OK,40065 1696,48173,0.50,0.50,Glasscock,"M275.2,325.4 L275.6,325.4 L276.4,325.4 L278.1,325.6 L282.6,325.8 L282.5,326.8 L282.1,333.2 L277.1,332.8 L274.8,332.7 L275.1,326.7 Z",TX,48173 1697,48431,0.50,0.51,Sterling,"M282.1,333.2 L282.5,326.8 L282.6,325.8 L282.9,325.8 L283.7,325.9 L284.9,326.0 L288.9,326.2 L288.9,326.2 L288.8,327.7 L288.5,332.8 L287.8,335.0 L282.0,334.7 L282.1,333.7 Z",TX,48431 1698,48335,0.50,0.50,Mitchell,"M284.9,326.0 L283.7,325.9 L284.1,321.1 L284.3,318.6 L284.3,318.5 L284.3,318.5 L286.7,318.6 L291.6,318.9 L291.3,323.7 L291.1,326.3 L290.1,326.3 L288.9,326.2 L288.9,326.2 Z",TX,48335 1699,48415,0.50,0.49,Scurry,"M284.3,318.5 L284.5,314.8 L284.7,311.2 L285.4,311.2 L286.6,311.2 L287.3,311.3 L292.0,311.6 L291.7,317.3 L291.6,318.9 L286.7,318.6 L284.3,318.5 Z",TX,48415 1700,48383,0.50,0.50,Reagan,"M282.1,333.2 L282.1,333.7 L282.0,334.7 L282.0,335.0 L282.0,335.2 L281.7,339.2 L281.4,342.8 L278.1,342.6 L274.1,342.3 L274.3,340.3 L274.8,332.7 L277.1,332.8 Z",TX,48383 1701,40093,0.90,0.54,Major,"M328.0,259.2 L324.3,259.1 L322.2,259.0 L319.1,259.0 L317.8,259.0 L317.8,257.5 L318.0,253.2 L322.4,255.2 L323.7,254.1 L323.7,254.1 L327.8,254.2 L329.5,254.2 L329.4,257.6 L329.4,259.2 L328.8,259.2 Z",OK,40093 1702,38055,0.50,0.13,McLean,"M301.2,61.7 L305.2,61.9 L305.6,62.0 L304.5,64.9 L304.2,70.7 L303.1,73.6 L300.6,73.4 L299.7,71.1 L297.4,71.4 L295.6,66.2 L291.2,67.1 L286.8,65.5 L286.4,61.9 L285.0,62.2 L285.1,60.7 L291.0,61.1 L296.1,61.4 Z",ND,38055 1703,41027,0.40,0.47,Hood River,"M55.7,60.4 L55.0,59.2 L55.4,57.0 L56.9,56.5 L60.3,57.1 L60.5,57.3 L61.1,57.8 L58.6,64.8 L56.1,64.1 L56.7,62.2 Z",OR,41027 1704,19081,0.50,0.50,Hancock,"M383.0,146.3 L383.0,143.7 L382.9,140.5 L383.5,140.5 L388.7,140.3 L388.8,144.6 L388.8,145.9 L388.8,146.2 L385.0,146.3 Z",IA,19081 1705,19197,0.50,0.50,Wright,"M383.0,146.3 L385.0,146.3 L388.8,146.2 L388.8,146.2 L388.9,149.3 L389.0,152.1 L384.6,152.2 L383.1,152.2 L383.1,151.1 L383.1,150.7 L383.0,146.5 Z",IA,19197 1706,48419,0.50,0.51,Shelby,"M380.2,331.9 L379.4,330.6 L379.4,329.7 L382.5,329.6 L386.5,329.5 L387.7,330.6 L388.5,331.7 L389.8,334.1 L389.2,336.1 L388.3,335.7 L387.1,336.4 L385.5,335.6 L381.1,335.1 L380.7,332.7 Z",TX,48419 1707,48403,0.43,0.47,Sabine,"M387.1,336.4 L388.3,335.7 L389.2,336.1 L391.0,337.3 L392.8,342.9 L391.1,343.1 L388.3,343.3 L386.6,343.7 L386.4,343.8 L386.3,339.1 Z",TX,48403 1708,29055,0.51,0.51,Crawford,"M417.0,224.8 L416.9,223.8 L419.1,223.8 L419.1,223.9 L422.7,223.7 L422.9,227.1 L423.1,231.4 L422.5,231.4 L422.4,232.2 L420.3,230.8 L417.4,230.9 L417.1,224.8 Z",MO,29055 1709,51091,0.46,0.55,Highland,"M570.7,205.4 L571.6,202.4 L571.6,199.7 L574.2,201.5 L576.5,201.8 L575.5,205.3 L574.6,206.1 L572.0,205.9 Z",VA,51091 1710,54075,0.66,0.56,Pocahontas,"M571.6,199.7 L571.6,202.4 L570.7,205.4 L569.6,206.8 L569.1,209.1 L565.2,210.1 L563.5,207.3 L563.2,205.3 L564.5,204.4 L569.0,200.8 L571.7,198.4 L571.9,199.1 Z",WV,54075 1711,51017,0.50,0.52,Bath,"M569.1,209.1 L569.6,206.8 L570.7,205.4 L572.0,205.9 L574.6,206.1 L575.6,206.2 L575.3,207.6 L574.1,210.4 L573.7,211.5 L570.6,211.7 L568.2,211.1 L568.7,210.4 Z",VA,51017 1712,27111,0.85,0.50,Otter Tail,"M354.7,83.9 L356.0,83.9 L355.9,82.4 L361.4,82.5 L367.7,82.4 L367.8,83.9 L367.9,88.3 L368.0,89.7 L368.0,92.7 L364.1,92.7 L360.7,92.7 L359.0,92.7 L354.9,92.7 L354.7,89.8 Z",MN,27111 1713,28017,0.47,0.50,Chickasaw,"M459.6,290.5 L459.6,291.2 L459.9,294.9 L457.0,295.1 L455.6,296.5 L454.5,296.6 L453.4,296.7 L454.1,295.4 L453.7,291.0 L455.7,290.8 L458.1,290.6 L459.4,290.5 Z",MS,28017 1714,28081,0.48,0.50,Lee,"M458.1,290.6 L457.8,287.4 L457.7,285.8 L458.0,283.6 L458.8,283.3 L461.4,283.1 L461.5,283.8 L461.6,285.9 L462.0,290.1 L459.6,290.3 L459.6,290.5 L459.4,290.5 Z",MS,28081 1715,22067,0.51,0.50,Morehouse,"M413.9,316.1 L413.6,313.7 L413.6,311.3 L418.4,311.1 L422.3,310.9 L422.4,310.9 L422.6,310.9 L420.9,313.5 L420.0,316.8 L418.6,318.6 L416.2,319.7 L416.1,317.0 Z",LA,22067 1716,01047,0.52,0.49,Dallas,"M487.4,313.9 L489.0,317.1 L487.9,319.2 L488.2,322.2 L484.3,322.5 L479.8,319.3 L479.7,318.7 L479.7,318.6 L480.1,315.6 L484.5,315.1 L485.5,310.9 L485.6,312.0 L487.0,311.8 L487.0,311.8 Z",AL,1047 1717,01001,0.51,0.51,Autauga,"M489.0,317.1 L487.4,313.9 L487.0,311.8 L487.0,311.8 L489.8,310.9 L494.1,310.4 L494.4,313.3 L494.6,315.4 L494.0,315.5 L493.5,316.6 L490.3,315.9 Z",AL,1001 1718,48093,0.50,0.52,Comanche,"M316.1,327.5 L319.9,325.5 L321.5,324.6 L324.6,330.0 L326.3,330.5 L327.0,331.8 L322.5,334.3 L322.1,333.6 L319.5,334.0 L318.0,331.0 Z",TX,48093 1719,48425,0.56,0.37,Somervell,"M330.2,325.4 L330.1,325.2 L332.5,323.9 L334.9,323.9 L334.9,325.0 L334.9,325.8 L334.6,325.8 L331.2,327.7 L331.2,327.7 Z",TX,48425 1720,27153,0.50,0.50,Todd,"M372.8,88.2 L372.9,88.5 L373.7,88.6 L373.8,89.7 L374.0,98.3 L371.4,98.3 L368.1,98.3 L368.0,95.6 L368.0,92.7 L368.0,89.7 L367.9,88.3 L370.7,88.3 Z",MN,27153 1721,27021,0.90,0.50,Cass,"M373.7,88.6 L372.9,88.5 L372.8,88.2 L372.3,87.8 L372.1,80.9 L373.5,80.9 L373.3,70.6 L376.2,70.5 L376.2,70.0 L379.6,69.3 L383.6,72.6 L383.7,76.8 L383.8,78.7 L383.8,80.7 L377.2,80.8 L377.4,89.7 L375.1,89.3 Z",MN,27021 1722,08079,0.52,0.49,Mineral,"M212.5,220.7 L214.2,220.9 L216.3,223.2 L215.8,226.1 L215.3,230.4 L209.7,229.9 L209.8,229.4 L210.7,220.8 Z",CO,8079 1723,35039,0.36,0.48,Rio Arriba,"M205.0,235.9 L212.3,236.8 L217.6,237.6 L221.3,238.0 L223.9,238.3 L223.8,247.2 L221.9,249.8 L228.5,255.3 L227.9,255.9 L225.9,255.6 L221.2,254.7 L218.7,255.6 L218.7,255.1 L218.7,255.0 L210.1,253.5 L210.6,249.8 L200.6,248.6 L202.0,238.8 Z",NM,35039 1724,28163,0.06,0.67,Yazoo,"M433.0,316.2 L433.3,313.6 L433.7,311.7 L436.6,311.5 L437.8,310.0 L438.1,310.0 L443.5,311.8 L442.5,314.3 L437.0,317.4 L436.8,317.9 L435.6,318.6 L434.1,318.0 L433.1,316.9 L433.4,316.8 Z",MS,28163 1725,29177,0.50,0.50,Ray,"M387.2,208.3 L386.1,208.1 L382.7,209.4 L381.6,208.8 L381.3,208.4 L381.2,205.7 L381.2,204.2 L381.2,203.9 L381.2,203.0 L383.9,203.0 L387.0,202.9 L387.2,207.8 Z",MO,29177 1726,39041,0.50,0.48,Delaware,"M523.5,176.2 L524.8,177.3 L527.2,177.1 L527.3,177.8 L527.3,178.3 L527.4,178.9 L527.5,180.9 L524.4,181.1 L522.3,181.3 L521.1,179.8 L520.6,176.5 L521.7,176.4 Z",OH,39041 1727,39117,0.47,0.51,Morrow,"M527.2,177.1 L524.8,177.3 L523.5,176.2 L523.8,172.6 L524.9,171.4 L524.9,171.3 L526.5,171.1 L527.8,170.9 L528.3,173.6 L528.5,177.0 Z",OH,39117 1728,38031,0.50,0.50,Foster,"M329.3,67.3 L329.3,68.9 L329.2,71.7 L321.6,71.5 L320.4,71.4 L320.4,69.2 L320.5,67.0 L325.1,67.2 Z",ND,38031 1729,05033,0.51,0.50,Crawford,"M379.5,272.2 L379.2,270.5 L378.9,268.2 L378.7,267.1 L378.6,266.2 L383.6,266.2 L385.8,266.0 L386.0,266.0 L386.5,266.0 L385.5,267.7 L384.4,271.3 L382.4,272.9 Z",AR,5033 1730,40001,0.49,0.50,Adair,"M378.6,266.2 L378.7,267.1 L378.9,268.2 L376.0,268.2 L374.3,268.3 L374.2,263.9 L374.3,259.5 L375.0,259.5 L377.5,259.4 L377.5,259.4 L377.6,260.0 L377.7,260.4 L378.1,263.3 Z",OK,40001 1731,40041,0.49,0.50,Delaware,"M375.0,259.5 L374.3,259.5 L373.1,259.5 L371.4,259.5 L371.4,259.5 L371.5,258.1 L371.4,253.7 L371.4,252.2 L371.5,251.0 L374.4,251.0 L376.6,251.0 L376.6,252.0 L376.7,253.8 L377.2,257.7 L377.5,259.4 L377.5,259.4 Z",OK,40041 1732,48053,0.50,0.50,Burnet,"M330.2,345.5 L330.6,346.0 L331.4,347.7 L329.4,349.6 L328.0,352.3 L326.9,354.7 L326.9,355.7 L325.1,355.1 L323.6,354.6 L322.4,351.4 L322.4,347.2 L322.4,347.2 L322.4,347.2 L322.2,345.7 L322.5,345.4 L328.9,345.4 Z",TX,48053 1733,48411,0.02,0.48,San Saba,"M322.4,347.2 L322.4,347.2 L322.4,347.2 L318.0,347.1 L314.8,347.0 L313.0,346.9 L313.0,346.6 L313.2,341.4 L313.3,337.8 L314.0,337.3 L314.8,337.5 L319.0,338.9 L320.8,341.9 L321.3,344.3 L322.5,345.4 L322.2,345.7 Z",TX,48411 1734,48299,0.51,0.50,Llano,"M322.4,347.2 L322.4,351.4 L323.6,354.6 L322.7,354.3 L320.1,354.2 L317.8,354.2 L314.6,354.1 L314.8,349.9 L314.8,347.0 L318.0,347.1 L322.4,347.2 Z",TX,48299 1735,17109,0.50,0.50,McDonough,"M423.2,188.8 L423.0,183.7 L423.0,182.8 L423.9,182.8 L424.4,182.8 L424.4,182.8 L425.9,182.8 L428.8,182.7 L429.0,187.0 L429.1,188.5 L426.2,188.7 Z",IL,17109 1736,17187,0.50,0.50,Warren,"M424.4,182.8 L424.3,179.8 L424.1,175.6 L427.0,175.5 L428.4,175.4 L428.7,179.7 L428.7,181.2 L428.8,182.2 L428.8,182.7 L425.9,182.8 L424.4,182.8 Z",IL,17187 1737,17071,0.46,0.50,Henderson,"M423.0,182.8 L421.5,183.0 L419.4,183.0 L420.2,182.4 L420.3,182.0 L421.9,178.1 L422.0,175.6 L423.2,175.6 L424.1,175.6 L424.3,179.8 L424.4,182.8 L424.4,182.8 L423.9,182.8 Z",IL,17071 1738,05067,0.48,0.51,Jackson,"M426.0,269.8 L426.0,270.4 L426.1,271.3 L423.2,271.4 L421.8,270.1 L418.5,270.2 L418.5,268.7 L421.4,268.6 L423.4,262.4 L424.2,262.4 L425.7,262.4 L425.7,263.9 L425.8,265.3 L425.8,266.3 Z",AR,5067 1739,05037,0.50,0.50,Cross,"M426.1,271.3 L426.0,270.4 L426.0,269.8 L431.9,269.4 L433.3,269.4 L433.6,273.8 L433.6,274.4 L428.8,274.6 L426.2,274.7 L426.1,272.6 Z",AR,5037 1740,48067,0.50,0.50,Cass,"M385.6,307.8 L385.7,310.0 L385.7,312.0 L385.7,313.0 L385.7,314.4 L381.2,314.5 L377.1,314.5 L377.0,311.5 L377.0,308.0 L383.0,308.3 L385.6,307.8 L385.6,307.8 L385.6,307.8 L385.6,307.8 Z",TX,48067 1741,48315,1.00,0.48,Marion,"M377.1,314.5 L381.2,314.5 L385.7,314.4 L385.8,315.8 L385.8,317.5 L379.2,317.6 L376.4,316.0 L376.5,315.2 L376.3,314.6 L376.3,314.6 Z",TX,48315 1742,21083,0.50,0.50,Graves,"M459.4,249.7 L459.3,249.7 L459.1,249.7 L456.7,249.9 L455.0,250.1 L454.8,247.0 L454.7,245.5 L454.6,244.4 L454.5,242.6 L456.0,242.6 L458.9,242.4 L459.0,243.6 L459.1,245.6 L459.3,248.3 Z",KY,21083 1743,47079,0.51,0.51,Henry,"M459.1,249.7 L459.3,249.7 L459.4,249.7 L463.5,249.4 L465.3,249.3 L465.3,250.3 L466.3,251.5 L465.2,253.3 L463.7,255.8 L463.7,255.3 L459.3,255.6 L459.3,254.1 Z",TN,47079 1744,47005,0.47,0.51,Benton,"M463.7,255.8 L465.2,253.3 L466.3,251.5 L466.5,251.6 L466.5,251.6 L466.9,252.3 L467.1,253.4 L466.7,258.4 L467.5,260.1 L467.4,260.3 L467.4,260.6 L466.5,260.2 L464.6,260.3 L464.0,260.3 Z",TN,47005 1745,37087,0.53,0.49,Haywood,"M533.0,258.1 L532.7,255.5 L531.6,255.2 L531.6,255.1 L531.6,254.9 L533.8,253.3 L535.4,253.1 L536.1,253.7 L536.7,254.8 L538.5,256.4 L539.2,258.7 L539.2,258.7 L538.3,260.6 L537.1,261.3 L535.9,260.1 Z",NC,37087 1746,37115,0.42,0.46,Madison,"M536.7,254.8 L536.1,253.7 L535.4,253.1 L536.0,251.5 L535.9,250.4 L537.4,249.2 L539.6,248.2 L539.7,249.4 L541.1,249.1 L542.0,250.3 L542.8,251.5 L541.4,252.0 Z",NC,37115 1747,27037,0.51,0.49,Dakota,"M396.3,115.0 L396.9,115.4 L397.2,115.5 L396.6,118.4 L393.7,119.7 L390.7,119.8 L390.7,118.6 L390.2,117.2 L390.0,114.5 L390.9,114.1 L391.8,112.8 L392.3,112.2 L393.7,112.7 L393.9,114.7 Z",MN,27037 1748,41025,0.49,0.34,Harney,"M69.9,95.2 L71.3,95.6 L73.9,91.8 L83.8,94.3 L84.1,92.9 L91.0,94.8 L86.4,113.1 L83.1,128.1 L77.0,126.7 L69.4,124.7 L69.2,124.6 L69.0,124.6 L72.1,112.3 L65.2,110.5 L69.5,96.7 L69.6,96.4 Z",OR,41025 1749,41013,0.47,0.47,Crook,"M73.9,91.8 L71.3,95.6 L69.9,95.2 L65.7,94.1 L65.0,90.9 L58.3,87.5 L58.9,80.1 L62.9,78.2 L68.0,79.6 L67.5,81.7 L71.7,82.8 L75.4,86.1 L75.0,87.6 Z",OR,41013 1750,32013,0.51,0.36,Humboldt,"M69.4,124.7 L77.0,126.7 L83.1,128.1 L90.0,129.8 L97.3,131.6 L97.4,131.6 L97.4,131.6 L94.5,144.0 L93.6,147.9 L92.2,153.7 L88.3,154.8 L88.8,152.2 L84.6,151.2 L85.3,148.4 L71.2,144.9 L71.6,143.2 L65.2,141.5 L64.9,141.4 Z",NV,32013 1751,55001,0.49,0.51,Adams,"M433.8,121.5 L434.7,121.4 L435.3,121.4 L435.5,123.8 L435.6,125.8 L435.8,127.8 L436.0,131.5 L434.6,131.6 L433.8,131.7 L430.3,124.4 L431.7,121.6 L432.8,121.5 Z",WI,55001 1752,55077,0.54,0.50,Marquette,"M436.0,131.5 L435.8,127.8 L435.6,125.8 L438.2,125.6 L440.8,125.4 L440.7,128.3 L440.3,131.2 L439.3,131.3 Z",WI,55077 1753,29045,0.50,0.49,Clark,"M416.6,187.5 L416.1,188.2 L415.7,189.8 L412.1,189.8 L409.9,189.9 L409.9,189.6 L409.9,189.2 L409.8,186.8 L409.7,184.0 L412.5,183.8 L412.6,184.0 L415.2,187.1 Z",MO,29045 1754,29103,0.50,0.50,Knox,"M409.9,189.2 L409.9,189.6 L409.9,189.9 L410.0,190.6 L410.1,195.0 L407.4,195.1 L405.8,195.2 L405.1,195.2 L405.0,193.8 L404.9,190.8 L404.8,189.3 L404.8,189.3 L404.8,189.3 L407.0,189.2 Z",MO,29103 1755,29001,0.50,0.50,Adair,"M404.8,189.3 L404.9,190.8 L405.0,193.8 L401.4,193.9 L398.5,194.0 L398.5,194.0 L398.4,194.0 L398.3,191.1 L398.3,188.9 L399.6,188.9 L400.5,188.8 L403.3,188.7 L404.7,188.6 L404.8,189.3 L404.8,189.3 L404.8,189.3 Z",MO,29001 1756,29199,0.50,0.50,Scotland,"M404.8,189.3 L404.8,189.3 L404.7,188.6 L404.6,186.4 L404.6,184.4 L405.2,184.4 L406.7,184.3 L407.8,184.2 L409.7,184.0 L409.8,186.8 L409.9,189.2 L407.0,189.2 L404.8,189.3 Z",MO,29199 1757,21015,0.52,0.52,Boone,"M503.2,204.8 L503.5,203.8 L502.8,202.7 L502.5,202.3 L503.4,201.4 L504.2,200.6 L505.1,201.2 L506.0,201.6 L506.0,201.6 L506.8,204.8 L506.7,206.1 L506.2,206.3 L506.2,206.6 L504.9,205.8 L504.2,205.4 L504.3,205.0 Z",KY,21015 1758,21079,0.50,0.49,Garrard,"M507.4,222.6 L508.8,222.6 L510.0,223.1 L511.2,224.2 L512.9,226.6 L512.7,227.7 L511.7,227.6 L508.7,225.8 L508.6,225.5 L507.8,224.6 L507.3,224.4 L507.8,223.5 Z",KY,21079 1759,21021,0.48,0.53,Boyle,"M507.3,224.4 L507.8,224.6 L508.6,225.5 L508.6,225.8 L506.3,227.3 L505.6,227.6 L503.7,227.6 L503.7,226.8 L503.7,226.2 L503.6,225.6 L503.6,225.4 L506.5,224.6 Z",KY,21021 1760,21229,0.50,0.51,Washington,"M503.6,225.4 L503.6,225.6 L503.7,226.2 L500.7,226.6 L498.6,225.1 L499.7,223.3 L501.5,222.0 L502.1,222.0 L503.1,221.9 L503.6,222.4 Z",KY,21229 1761,22115,0.93,0.47,Vernon,"M404.2,347.4 L404.2,347.6 L402.0,347.7 L395.5,347.8 L393.5,348.1 L394.2,345.3 L393.5,342.7 L395.7,339.7 L398.0,339.6 L400.9,339.5 L401.7,339.8 L403.9,341.3 L404.2,347.4 Z",LA,22115 1762,22009,0.50,0.52,Avoyelles,"M412.1,345.8 L412.5,339.8 L414.6,339.5 L415.3,339.3 L415.8,339.6 L417.0,340.0 L418.3,340.5 L420.6,341.7 L420.1,344.1 L420.0,344.3 L419.7,344.6 L419.0,345.4 L418.9,347.5 L414.7,347.7 L413.1,347.7 L412.1,346.3 Z",LA,22009 1763,22059,0.49,0.51,LaSalle,"M415.8,339.6 L415.3,339.3 L414.6,339.5 L413.7,338.3 L412.9,337.1 L411.9,336.9 L410.3,331.9 L410.6,331.6 L410.9,329.6 L413.4,329.5 L415.3,329.4 L415.5,333.5 Z",LA,22059 1764,29227,0.50,0.51,Worth,"M380.6,185.6 L380.6,187.3 L380.8,188.7 L379.6,188.7 L375.9,188.7 L375.5,187.3 L375.5,185.6 L375.9,185.6 L377.5,185.6 L378.7,185.6 Z",MO,29227 1765,31163,0.50,0.50,Sherman,"M317.3,177.1 L317.5,173.7 L317.6,171.3 L323.1,171.5 L323.3,171.5 L323.3,171.5 L323.4,171.5 L323.1,176.3 L323.1,177.3 L322.2,177.3 Z",NE,31163 1766,46021,0.49,0.50,Campbell,"M305.0,94.2 L307.3,94.3 L312.3,94.6 L313.7,94.6 L314.2,94.7 L314.0,98.5 L314.0,100.5 L308.5,100.3 L305.5,100.1 L307.1,98.3 Z",SD,46021 1767,46063,0.16,0.47,Harding,"M275.7,92.3 L275.8,92.3 L276.3,92.4 L275.9,96.0 L275.2,104.7 L275.2,104.7 L268.9,104.2 L262.3,103.6 L262.6,100.9 L263.3,92.4 L263.3,92.4 L263.3,91.8 L263.3,91.3 L269.1,91.8 L275.7,92.3 Z",SD,46063 1768,26057,0.50,0.50,Gratiot,"M500.7,133.8 L500.7,133.8 L500.7,133.9 L496.5,134.5 L495.0,134.6 L494.5,131.8 L494.1,128.9 L495.1,128.7 L497.0,128.5 L498.1,128.4 L499.9,128.1 L500.2,130.5 Z",MI,26057 1769,19001,0.50,0.50,Adair,"M380.1,169.9 L380.2,172.8 L380.2,175.8 L379.2,175.8 L377.3,175.8 L376.3,175.8 L374.4,175.8 L374.4,173.0 L374.4,170.0 L379.0,170.0 Z",IA,19001 1770,19175,0.50,0.50,Union,"M377.3,175.8 L379.2,175.8 L380.2,175.8 L381.4,175.7 L383.1,175.7 L383.2,178.4 L383.2,180.0 L380.3,180.1 L377.4,180.1 L377.4,178.6 Z",IA,19175 1771,31017,0.50,0.50,Brown,"M305.9,159.2 L306.0,153.4 L306.1,146.4 L306.9,147.1 L312.5,148.7 L312.5,153.6 L312.2,159.5 L312.2,159.5 L312.2,159.5 L312.2,159.5 L311.9,159.5 L308.3,159.3 Z",NE,31017 1772,31171,0.50,0.50,Thomas,"M297.5,158.7 L300.4,158.9 L304.7,159.1 L304.5,162.7 L304.4,164.9 L301.6,164.8 L298.8,164.7 L298.4,164.6 L297.2,164.6 L297.3,161.7 Z",NE,31171 1773,31113,0.50,0.50,Logan,"M304.6,165.0 L304.5,166.9 L304.4,170.8 L303.4,170.7 L298.5,170.5 L298.6,167.9 L298.8,164.7 L301.6,164.8 L304.4,164.9 L304.5,164.9 Z",NE,31113 1774,31121,0.50,0.51,Merrick,"M336.5,171.8 L337.8,171.8 L337.8,172.8 L335.6,174.4 L334.8,175.5 L332.5,177.1 L329.0,180.4 L329.0,177.5 L329.0,177.5 L329.1,174.5 L329.1,171.6 L329.2,173.8 L336.4,173.2 Z",NE,31121 1775,21039,0.48,0.52,Carlisle,"M454.5,242.6 L454.6,244.4 L454.7,245.5 L451.3,245.8 L450.5,245.7 L449.7,245.3 L450.6,243.0 L452.1,243.3 L454.4,242.5 Z",KY,21039 1776,18021,0.54,0.50,Clay,"M475.3,198.3 L474.1,200.6 L474.3,203.5 L473.6,203.6 L471.9,203.7 L471.9,203.1 L471.8,202.3 L471.4,197.9 L471.8,196.4 L473.1,196.3 L474.2,196.2 L474.4,198.4 Z",IN,18021 1777,18109,0.49,0.51,Morgan,"M478.8,195.8 L481.2,195.6 L483.0,194.8 L483.4,194.8 L483.9,194.7 L484.1,196.7 L484.4,199.6 L483.6,199.7 L482.8,199.8 L479.5,200.1 L479.5,200.0 L479.3,198.0 L478.6,198.0 L478.5,197.2 Z",IN,18109 1778,48139,0.40,0.30,Ellis,"M342.5,320.1 L342.8,320.1 L343.2,320.2 L345.5,320.2 L350.4,320.3 L351.8,322.5 L351.5,323.4 L352.1,323.9 L352.5,323.9 L349.0,326.0 L345.1,328.2 L344.5,328.5 L342.4,324.9 L342.5,323.0 Z",TX,48139 1779,48213,0.50,0.50,Henderson,"M352.5,323.9 L352.1,323.9 L351.5,323.4 L354.4,323.4 L356.9,323.5 L361.4,323.5 L365.8,323.5 L365.3,325.5 L365.7,327.2 L365.8,327.6 L366.2,328.0 L360.9,328.9 L357.2,329.4 L357.2,329.3 L357.2,329.3 L355.7,325.9 Z",TX,48213 1780,18053,0.50,0.50,Grant,"M487.0,177.2 L488.1,177.1 L489.9,176.9 L490.8,176.8 L492.3,176.6 L492.4,177.5 L492.5,178.0 L492.6,178.8 L492.9,181.2 L491.4,181.3 L491.2,181.3 L489.7,181.5 L487.5,181.8 L487.5,181.5 L487.5,181.3 L487.2,179.0 L487.2,178.7 L487.0,177.5 Z",IN,18053 1781,12035,0.54,0.58,Flagler,"M571.2,352.6 L574.2,352.1 L575.7,351.1 L576.4,352.4 L577.9,354.9 L577.7,357.7 L573.2,356.1 L571.6,354.6 Z",FL,12035 1782,28077,0.50,0.51,Lawrence,"M442.5,330.9 L444.4,330.7 L444.7,330.6 L444.9,334.6 L445.3,336.8 L444.1,336.9 L444.2,337.8 L443.2,337.7 L441.2,337.8 L441.2,336.6 L440.8,331.6 L441.7,331.3 Z",MS,28077 1783,22127,0.99,0.48,Winn,"M403.6,326.2 L409.2,326.0 L410.8,325.9 L410.8,326.9 L410.9,329.6 L410.6,331.6 L410.3,331.9 L406.7,333.5 L401.6,333.7 L402.9,329.6 L401.8,326.2 L402.3,326.2 Z",LA,22127 1784,17131,0.50,0.51,Mercer,"M428.2,171.0 L428.3,172.3 L428.4,173.9 L428.4,174.7 L428.4,175.4 L427.0,175.5 L424.1,175.6 L423.2,175.6 L422.0,175.6 L422.0,175.6 L422.0,175.6 L419.7,172.7 L420.2,171.3 L424.3,171.2 Z",IL,17131 1785,17175,0.49,0.50,Stark,"M434.1,173.6 L435.6,173.5 L435.6,172.0 L438.4,171.9 L438.5,173.3 L438.5,174.1 L438.7,176.2 L436.2,176.4 L434.3,176.5 L434.3,176.1 Z",IL,17175 1786,46029,0.50,0.50,Codington,"M340.1,114.6 L340.1,113.1 L340.2,108.7 L341.6,108.7 L343.4,108.8 L347.4,108.8 L347.4,111.8 L347.4,113.2 L347.4,114.7 L344.5,114.7 Z",SD,46029 1787,13259,0.49,0.52,Stewart,"M516.1,315.9 L517.8,315.7 L519.8,315.4 L519.9,315.4 L520.0,315.4 L520.1,315.5 L520.5,320.7 L518.5,320.9 L517.0,321.0 L516.2,320.3 L514.5,320.2 L514.7,319.6 L514.5,319.0 L514.3,317.8 Z",GA,13259 1788,05121,0.51,0.52,Randolph,"M420.1,252.4 L422.4,252.3 L423.8,252.2 L426.3,252.1 L428.5,251.9 L429.1,255.6 L428.4,255.8 L428.4,256.7 L428.5,257.8 L424.8,258.0 L422.3,256.3 L421.5,253.6 Z",AR,5121 1789,05021,0.50,0.49,Clay,"M428.4,255.8 L429.1,255.6 L428.5,251.9 L429.2,251.9 L431.3,251.8 L433.9,251.6 L436.1,251.5 L438.4,254.6 L436.8,256.4 L435.0,255.6 Z",AR,5021 1790,05045,0.49,0.51,Faulkner,"M406.3,272.0 L407.1,271.9 L409.4,271.9 L409.9,271.9 L411.4,271.8 L411.4,274.6 L411.5,276.8 L411.5,277.2 L411.5,277.7 L410.0,279.2 L405.7,278.9 L405.0,278.0 L405.4,276.3 L405.4,276.3 L406.3,273.4 Z",AR,5045 1791,19107,0.50,0.50,Keokuk,"M403.2,169.2 L403.4,169.2 L404.6,169.1 L407.2,169.0 L409.0,168.9 L409.2,171.7 L409.3,174.7 L408.7,174.7 L406.3,174.9 L403.9,175.0 L403.4,175.0 L403.2,169.3 Z",IA,19107 1792,17061,0.50,0.49,Greene,"M428.2,201.3 L429.6,201.2 L431.8,201.1 L432.5,201.0 L433.7,200.9 L434.0,203.8 L434.1,205.3 L432.0,206.9 L428.3,208.0 L428.4,206.7 L427.9,203.4 L427.9,202.4 Z",IL,17061 1793,17171,0.46,0.51,Scott,"M431.8,201.1 L429.6,201.2 L428.2,201.3 L427.2,198.3 L427.7,196.8 L430.7,197.2 Z",IL,17171 1794,06105,0.46,0.43,Trinity,"M16.1,144.7 L8.6,142.4 L8.7,142.0 L12.4,130.2 L16.3,123.7 L21.3,128.5 L21.2,126.4 L27.5,123.9 L27.3,127.0 L21.8,134.0 L21.9,136.1 L16.0,139.2 L16.8,140.1 Z",CA,6105 1795,06023,0.11,0.58,Humboldt,"M8.7,142.0 L6.2,141.2 L2.9,140.1 L0.0,134.6 L0.4,131.6 L7.1,123.2 L9.7,116.6 L13.3,117.7 L14.2,119.5 L16.4,120.4 L16.3,123.7 L12.4,130.2 Z",CA,6023 1796,27025,0.48,0.48,Chisago,"M393.4,105.8 L393.4,104.5 L393.4,103.9 L391.8,101.5 L391.8,98.6 L391.8,98.6 L392.6,98.5 L395.3,98.5 L395.0,98.7 L394.8,99.9 L397.8,103.2 L396.7,105.7 L394.5,105.8 Z",MN,27025 1797,27003,0.50,0.50,Anoka,"M393.4,103.9 L393.4,104.5 L393.4,105.8 L393.5,106.9 L393.5,108.8 L391.0,108.8 L391.1,110.3 L388.7,107.4 L387.6,106.9 L387.6,104.5 L387.5,104.0 L391.7,103.9 Z",MN,27003 1798,46009,0.50,0.51,Bon Homme,"M332.5,141.9 L335.9,142.0 L337.9,142.0 L337.8,145.4 L337.8,147.4 L334.8,147.2 L331.4,147.4 L332.2,145.2 Z",SD,46009 1799,46135,0.50,0.50,Yankton,"M337.8,147.4 L337.8,145.4 L337.9,142.0 L338.5,142.1 L340.8,142.1 L343.7,142.1 L343.7,143.6 L343.7,146.7 L343.6,148.3 L341.8,147.2 L339.6,147.4 L338.7,147.5 Z",SD,46135 1800,47059,0.55,0.54,Greene,"M537.4,242.3 L538.3,242.1 L539.6,247.3 L539.9,247.5 L539.6,248.2 L537.4,249.2 L535.9,250.4 L532.7,247.9 L531.7,247.0 L532.0,246.8 L532.7,245.8 L534.4,244.0 Z",TN,47059 1801,51183,0.53,0.45,Sussex,"M608.9,217.6 L611.5,218.0 L612.1,219.8 L610.1,221.7 L606.6,225.0 L605.7,222.5 L603.6,222.7 L605.4,220.9 L606.1,220.2 L607.8,218.6 Z",VA,51183 1802,18141,0.51,0.50,St. Joseph,"M476.7,159.7 L477.7,159.6 L480.4,159.3 L481.9,159.1 L482.5,159.0 L482.7,160.6 L483.0,163.7 L477.9,164.3 L478.0,165.0 L477.6,165.1 L477.3,165.1 L477.5,162.8 Z",IN,18141 1803,13119,0.59,0.50,Franklin,"M532.5,276.0 L535.5,275.3 L536.4,274.2 L536.7,274.5 L537.2,274.8 L536.8,276.1 L536.9,278.6 L534.4,279.1 L533.7,279.9 L532.9,278.2 Z",GA,13119 1804,13257,0.53,0.60,Stephens,"M536.4,274.2 L535.5,275.3 L532.5,276.0 L532.3,275.9 L531.7,275.8 L532.5,272.4 L532.9,272.1 L535.3,273.1 Z",GA,13257 1805,05005,0.50,0.50,Baxter,"M404.9,253.1 L407.0,253.0 L410.0,252.9 L410.1,253.9 L410.1,256.8 L410.1,258.3 L409.7,259.0 L408.2,260.3 L406.8,261.8 L406.8,260.9 L406.8,260.3 L404.4,256.3 Z",AR,5005 1806,28007,0.48,0.50,Attala,"M446.2,306.0 L446.8,304.8 L447.6,304.7 L447.9,304.7 L450.3,304.5 L452.2,304.4 L452.4,307.3 L452.6,309.4 L452.6,310.3 L446.8,310.8 L446.9,311.5 L445.3,311.7 L443.5,311.8 L444.5,310.9 Z",MS,28007 1807,20011,0.50,0.50,Bourbon,"M370.1,234.2 L370.1,234.0 L370.1,233.2 L370.2,231.8 L370.2,228.1 L371.9,228.1 L376.3,228.1 L376.3,232.4 L376.4,234.2 L370.8,234.2 Z",KS,20011 1808,51049,0.63,0.54,Cumberland,"M593.6,209.8 L594.6,210.3 L595.0,211.1 L594.9,211.6 L594.9,214.6 L594.4,214.9 L593.8,216.3 L592.9,217.5 L590.9,217.3 L592.8,211.9 L592.7,211.0 L593.0,210.4 Z",VA,51049 1809,51147,0.48,0.53,Prince Edward,"M590.9,217.3 L592.9,217.5 L593.8,216.3 L594.0,216.9 L594.1,217.4 L594.4,219.1 L594.6,220.4 L593.1,220.9 L592.0,221.6 L588.4,220.1 L588.4,219.4 L589.1,217.5 L589.0,216.7 L590.3,217.6 Z",VA,51147 1810,51145,0.50,0.50,Powhatan,"M594.9,214.6 L594.9,211.6 L595.0,211.1 L596.9,210.2 L600.8,211.6 L599.3,213.6 L598.6,214.5 L596.3,213.7 Z",VA,51145 1811,45085,0.37,0.31,Sumter,"M580.4,275.4 L582.0,276.1 L581.1,277.0 L575.7,281.0 L574.2,283.4 L573.3,282.9 L572.7,281.9 L572.2,280.2 L571.8,276.0 L572.3,275.9 L573.5,274.6 L578.2,277.4 Z",SC,45085 1812,54045,0.42,0.57,Logan,"M546.1,219.8 L542.4,219.7 L540.2,215.4 L542.1,214.4 L543.5,214.0 L546.8,217.1 L548.4,217.3 L546.4,218.2 Z",WV,54045 1813,54109,0.53,0.47,Wyoming,"M546.1,219.8 L546.4,218.2 L548.4,217.3 L548.8,217.6 L549.6,217.0 L550.3,217.0 L554.2,221.0 L553.2,222.1 L553.2,222.6 L548.5,221.7 L545.7,221.7 L546.3,220.6 Z",WV,54109 1814,54005,0.55,0.51,Boone,"M549.6,217.0 L548.8,217.6 L548.4,217.3 L546.8,217.1 L543.5,214.0 L543.2,211.9 L544.3,210.8 L546.8,210.2 L549.8,213.7 L548.5,214.9 Z",WV,54005 1815,06029,0.58,0.56,Kern,"M37.7,239.2 L37.4,239.1 L37.3,239.1 L38.0,236.2 L32.6,228.5 L31.6,222.1 L38.8,224.1 L40.2,224.5 L53.8,228.0 L60.4,229.6 L61.6,229.8 L65.5,230.7 L61.6,246.6 L61.1,246.5 L45.2,242.6 L44.7,242.9 L40.0,241.3 Z",CA,6029 1816,48097,0.50,0.49,Cooke,"M338.5,305.3 L338.5,305.2 L337.0,305.2 L337.1,302.0 L337.2,297.1 L341.2,299.8 L344.8,296.6 L344.7,302.1 L344.7,305.6 L342.1,305.4 Z",TX,48097 1817,45075,0.50,0.53,Orangeburg,"M563.0,287.9 L563.4,287.3 L565.1,284.8 L566.4,283.8 L567.0,283.5 L573.0,286.5 L575.0,284.7 L577.3,286.5 L579.1,285.9 L579.1,288.4 L577.7,289.4 L575.5,288.4 L572.0,291.7 L571.9,291.7 L571.9,291.7 L569.4,289.9 L565.2,288.4 L564.1,287.9 Z",SC,45075 1818,19131,0.50,0.50,Mitchell,"M394.4,136.1 L396.8,136.0 L400.1,135.9 L400.2,137.8 L400.3,140.7 L397.5,140.8 L394.5,140.9 L394.5,140.4 L394.5,140.2 L394.4,138.0 Z",IA,19131 1819,27101,0.50,0.50,Murray,"M357.3,130.8 L357.3,130.8 L357.2,130.8 L357.2,127.9 L357.2,125.0 L357.2,125.0 L360.7,125.0 L362.9,125.0 L363.6,125.0 L364.5,124.9 L364.5,126.9 L364.5,130.8 L362.7,130.8 Z",MN,27101 1820,27117,0.50,0.50,Pipestone,"M357.2,127.9 L357.2,130.8 L354.4,130.8 L352.5,130.8 L352.5,129.8 L352.5,124.9 L355.1,124.9 L357.0,125.0 L357.0,125.0 L357.1,125.0 L357.2,125.0 L357.2,125.0 Z",MN,27117 1821,44007,0.51,0.48,Providence,"M662.2,120.6 L663.1,121.9 L663.9,123.8 L663.9,123.8 L663.6,124.3 L663.6,124.4 L662.8,123.3 L663.0,124.2 L662.5,125.0 L658.4,126.2 L657.4,122.9 L657.1,121.6 L660.5,120.6 L660.7,120.5 L662.1,120.1 Z",RI,44007 1822,29161,0.50,0.50,Phelps,"M415.7,224.9 L416.4,224.8 L417.0,224.8 L417.1,224.8 L417.4,230.9 L413.7,231.0 L413.8,234.3 L413.1,234.3 L410.8,234.3 L410.8,231.9 L410.7,227.5 L415.8,226.6 Z",MO,29161 1823,28117,0.48,0.51,Prentiss,"M458.6,281.8 L458.9,281.8 L458.7,279.1 L460.1,279.0 L463.5,278.7 L463.5,278.7 L463.5,278.7 L463.5,278.7 L463.5,278.7 L463.5,278.7 L464.0,278.9 L464.5,283.6 L462.8,283.7 L461.5,283.8 L461.4,283.1 L458.8,283.3 L458.7,282.8 Z",MS,28117 1824,21121,0.48,0.35,Knox,"M518.1,237.5 L517.5,235.8 L519.3,235.2 L520.3,233.8 L521.6,233.9 L524.2,234.9 L524.5,235.8 L521.0,239.9 L521.0,239.9 Z",KY,21121 1825,21235,0.49,0.51,Whitley,"M518.1,237.5 L521.0,239.9 L520.0,240.8 L520.5,241.7 L520.0,241.7 L519.7,241.7 L518.2,241.9 L516.5,242.1 L514.4,238.2 L514.8,236.4 L516.4,236.3 L517.5,235.8 Z",KY,21235 1826,21013,0.61,0.63,Bell,"M521.0,239.9 L524.5,235.8 L524.2,234.9 L525.0,235.0 L525.3,235.1 L525.7,235.5 L525.7,235.8 L525.6,237.3 L526.6,239.5 L525.7,239.7 L523.9,241.0 L523.7,241.3 L520.5,241.7 L520.4,241.1 L520.0,240.8 L521.0,239.9 Z",KY,21013 1827,48491,0.21,0.37,Williamson,"M328.0,352.3 L329.4,349.6 L331.4,347.7 L334.3,348.3 L338.8,350.4 L339.4,350.7 L341.1,355.4 L339.7,355.9 L338.4,356.3 L337.9,356.0 L337.9,356.0 L332.3,355.7 Z",TX,48491 1828,13107,0.53,0.45,Emanuel,"M556.5,303.9 L556.3,304.9 L556.3,305.1 L554.7,305.7 L554.0,309.2 L552.4,309.9 L551.4,309.0 L551.6,307.5 L547.7,306.9 L549.9,304.3 L550.1,302.3 L550.3,301.4 L551.5,300.8 L553.0,301.1 L554.0,300.8 L555.3,303.2 Z",GA,13107 1829,22025,0.49,0.10,Catahoula,"M415.3,329.4 L416.8,329.4 L417.0,328.6 L419.3,330.0 L421.6,329.9 L421.6,331.3 L422.1,332.1 L418.2,335.0 L418.3,340.5 L417.0,340.0 L415.8,339.6 L415.5,333.5 Z",LA,22025 1830,42025,0.57,0.58,Carbon,"M613.7,147.8 L616.1,149.6 L617.0,152.3 L616.2,152.6 L615.4,153.2 L614.4,153.7 L613.8,154.4 L611.9,153.5 L610.1,152.2 L613.1,149.9 Z",PA,42025 1831,31133,0.50,0.50,Pawnee,"M352.0,195.3 L352.0,192.2 L352.0,190.9 L353.5,190.9 L357.1,191.0 L357.6,191.0 L357.8,191.0 L357.8,192.8 L357.8,195.3 L356.0,195.3 L354.9,195.3 L353.7,195.3 Z",NE,31133 1832,47171,0.43,0.50,Unicoi,"M539.6,248.2 L539.9,247.5 L539.6,247.3 L541.5,246.0 L542.6,244.2 L543.8,244.3 L544.4,245.5 L542.7,246.5 L542.0,247.3 L541.6,248.5 L541.1,249.1 L539.7,249.4 Z",TN,47171 1833,45083,0.54,0.52,Spartanburg,"M548.9,268.1 L547.7,267.2 L546.9,261.4 L548.7,261.3 L550.3,261.1 L550.8,261.0 L551.6,260.9 L553.9,264.8 L554.5,265.1 L553.8,266.5 L553.4,270.6 L550.2,269.3 Z",SC,45083 1834,45021,0.54,0.56,Cherokee,"M554.5,265.1 L553.9,264.8 L551.6,260.9 L552.6,260.8 L553.1,260.7 L555.6,260.5 L558.6,260.1 L557.3,262.6 L558.2,265.7 L557.8,265.3 Z",SC,45021 1835,37161,0.50,0.53,Rutherford,"M551.6,260.9 L550.8,261.0 L550.3,261.1 L547.3,257.8 L545.8,258.3 L545.5,257.4 L545.6,257.1 L545.9,256.1 L546.7,255.8 L549.4,255.5 L551.3,254.3 L552.2,253.6 L553.1,254.0 L553.5,257.7 L553.1,260.7 L552.6,260.8 Z",NC,37161 1836,55005,0.50,0.50,Barron,"M410.8,101.1 L411.0,105.2 L411.1,106.6 L409.6,106.7 L407.7,106.8 L403.8,106.9 L403.7,104.8 L403.5,99.7 L404.3,99.6 L404.9,99.6 L409.1,99.4 L410.7,99.4 L410.7,99.4 L410.7,99.4 Z",WI,55005 1837,55073,0.84,0.46,Marathon,"M429.0,107.1 L429.0,107.1 L429.0,107.1 L434.5,106.7 L436.3,106.6 L438.7,106.4 L438.9,107.9 L439.1,111.8 L439.3,113.8 L436.1,113.9 L431.9,114.2 L427.1,114.5 L426.2,114.6 L426.1,112.8 L425.9,108.7 L427.3,108.6 L427.2,107.2 L429.0,107.1 L429.0,107.1 Z",WI,55073 1838,54101,0.55,0.46,Webster,"M564.5,204.4 L563.2,205.3 L563.5,207.3 L562.8,207.0 L562.3,206.8 L559.8,205.7 L558.8,203.0 L560.3,200.7 L560.7,199.1 L560.9,199.2 L561.6,199.1 L562.7,199.7 L563.2,199.4 L564.9,202.0 Z",WV,54101 1839,54007,0.57,0.53,Braxton,"M560.7,199.1 L560.3,200.7 L558.8,203.0 L557.0,202.8 L555.9,203.8 L555.1,202.7 L553.5,201.5 L553.8,200.9 L554.0,200.6 L557.2,197.3 L558.4,196.7 L560.8,198.4 Z",WV,54007 1840,54015,0.37,0.47,Clay,"M553.5,201.5 L555.1,202.7 L555.9,203.8 L556.8,204.2 L552.0,208.6 L552.0,208.6 L550.8,205.3 L551.8,204.2 L552.5,203.4 L553.0,202.5 L553.1,202.3 Z",WV,54015 1841,54067,0.52,0.60,Nicholas,"M556.8,204.2 L555.9,203.8 L557.0,202.8 L558.8,203.0 L559.8,205.7 L562.3,206.8 L559.3,210.5 L557.0,210.5 L555.4,208.8 L552.0,208.6 L552.0,208.6 Z",WV,54067 1842,29085,0.50,0.50,Hickory,"M396.8,229.8 L395.3,229.8 L395.3,231.5 L390.2,231.5 L390.2,231.3 L391.0,229.8 L391.0,227.1 L393.4,227.2 L396.8,227.2 L396.8,228.2 Z",MO,29085 1843,29009,0.50,0.50,Barry,"M384.0,253.7 L384.0,251.0 L384.0,249.5 L384.0,248.1 L384.0,246.4 L384.0,246.4 L388.1,246.4 L390.1,246.4 L390.6,248.1 L390.6,253.5 L388.8,253.6 L386.8,253.6 L385.1,253.7 Z",MO,29009 1844,27123,0.52,0.50,Ramsey,"M393.7,112.7 L392.3,112.2 L391.8,112.8 L391.5,112.5 L391.1,110.3 L391.0,108.8 L393.5,108.8 L393.9,108.7 Z",MN,27123 1845,05081,0.42,0.69,Little River,"M379.3,301.8 L379.3,299.2 L379.3,296.7 L382.7,298.9 L386.6,299.7 L386.6,299.7 L386.6,299.7 L386.5,301.1 L388.5,302.0 L386.4,303.3 L385.5,303.1 L380.6,303.3 Z",AR,5081 1846,32019,0.94,0.48,Lyon,"M56.3,183.2 L55.6,182.1 L54.7,180.7 L55.3,173.6 L54.2,171.1 L54.5,169.2 L52.9,167.9 L56.2,167.2 L59.8,163.3 L60.3,162.9 L61.1,163.1 L60.9,167.6 L64.2,173.9 L62.0,173.3 L59.5,184.1 Z",NV,32019 1847,28085,0.50,0.51,Lincoln,"M435.6,338.2 L435.6,338.2 L435.6,338.2 Z M441.0,337.8 L438.2,338.0 L436.8,338.1 L436.2,338.1 L435.6,338.2 L435.6,338.2 L435.6,338.2 L435.3,333.7 L433.9,333.8 L433.8,333.6 L433.8,332.4 L440.3,331.9 L440.8,331.6 L441.2,336.6 L441.2,337.8 Z M435.6,338.2 L435.6,338.2 L435.6,338.2 L435.6,338.2 Z",MS,28085 1848,28005,0.50,0.50,Amite,"M435.6,338.2 L435.6,338.2 L435.6,338.2 Z M435.6,338.2 L436.2,338.1 L436.8,338.1 L437.0,340.2 L437.2,344.0 L437.0,344.0 L436.9,344.0 L434.2,344.1 L433.2,344.2 L432.4,344.2 L429.8,344.4 L429.5,339.6 L429.0,339.0 L429.0,339.0 L430.1,338.5 L435.6,338.2 L435.6,338.2 L435.6,338.2 L435.6,338.2 L435.6,338.2 L435.6,338.2 L435.6,338.2 Z",MS,28005 1849,28113,0.50,0.50,Pike,"M436.8,338.1 L438.2,338.0 L441.0,337.8 L441.2,340.7 L441.4,343.7 L441.4,343.7 L440.2,343.8 L440.1,343.8 L438.6,343.9 L437.2,344.0 L437.0,340.2 Z",MS,28113 1850,28147,0.50,0.48,Walthall,"M441.2,340.7 L441.0,337.8 L441.2,337.8 L443.2,337.7 L444.2,337.8 L444.5,340.5 L447.5,343.3 L445.4,343.4 L441.4,343.7 L441.4,343.7 Z",MS,28147 1851,22105,0.50,0.50,Tangipahoa,"M437.2,344.0 L438.6,343.9 L440.1,343.8 L440.7,345.6 L441.7,348.6 L442.0,350.8 L442.3,354.2 L441.9,354.6 L441.3,355.6 L440.5,355.9 L438.8,356.1 L437.4,352.6 L437.3,349.9 L437.1,346.3 L436.9,344.0 L437.0,344.0 Z",LA,22105 1852,16085,0.50,0.58,Valley,"M115.2,98.6 L116.6,95.9 L117.2,93.0 L118.3,86.6 L119.6,83.1 L121.8,82.1 L136.8,85.3 L135.2,90.4 L134.1,91.4 L130.7,91.3 L127.5,93.9 L126.7,97.9 L123.7,99.0 L116.8,97.5 Z",ID,16085 1853,16059,0.38,0.40,Lemhi,"M134.1,91.4 L135.2,90.4 L136.8,85.3 L136.4,81.1 L139.5,79.6 L141.7,81.8 L147.3,78.8 L150.8,90.5 L150.2,93.7 L153.7,95.9 L154.2,101.6 L156.2,103.2 L155.8,105.6 L153.6,105.2 L150.6,104.6 L149.7,104.4 L148.9,100.5 L144.7,99.0 L141.5,92.0 L136.1,95.8 Z",ID,16059 1854,21091,0.61,0.54,Hancock,"M479.8,227.1 L479.2,225.4 L477.4,224.1 L478.2,223.9 L479.4,222.7 L480.9,224.3 L481.8,225.1 L481.6,225.9 L482.3,228.1 L480.7,227.4 Z",KY,21091 1855,21183,0.54,0.46,Ohio,"M479.8,227.1 L480.7,227.4 L482.3,228.1 L482.4,228.8 L483.1,229.6 L482.2,230.0 L483.1,232.5 L481.3,234.2 L479.6,235.9 L478.3,234.3 L476.6,232.8 L476.5,231.7 L477.2,230.3 L479.9,228.1 Z",KY,21183 1856,19137,0.50,0.50,Montgomery,"M365.8,177.6 L365.8,175.9 L367.2,175.9 L368.7,175.9 L371.0,175.9 L371.6,175.9 L371.6,176.9 L371.6,180.2 L368.0,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 Z",IA,19137 1857,19129,0.50,0.50,Mills,"M365.8,177.6 L365.8,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 L363.0,180.2 L360.4,180.2 L360.1,178.9 L359.7,178.0 L359.5,177.7 L359.5,177.7 L359.5,177.7 L359.7,177.1 L359.5,175.9 L359.6,175.9 L365.8,175.9 Z M359.5,177.7 L359.5,177.7 L359.5,177.7 Z",IA,19129 1858,31153,0.50,0.50,Sarpy,"M359.5,177.7 L359.5,177.7 L355.3,178.7 L353.9,177.8 L354.0,176.7 L353.8,175.4 L356.2,175.4 L358.9,175.4 L359.7,175.4 L359.5,175.9 L359.7,177.1 L359.5,177.7 L359.5,177.7 L359.5,177.7 L359.5,177.7 Z",NE,31153 1859,31025,0.50,0.50,Cass,"M359.5,177.7 L359.7,178.0 L360.1,178.9 L360.4,180.2 L359.9,180.9 L360.1,182.2 L356.4,182.2 L352.1,182.2 L352.1,181.2 L352.1,178.3 L353.5,178.3 L353.9,177.8 L355.3,178.7 L359.5,177.7 L359.5,177.7 L359.5,177.7 L359.5,177.7 L359.5,177.7 Z M359.5,177.7 L359.5,177.7 L359.5,177.7 Z",NE,31025 1860,31055,0.50,0.50,Douglas,"M358.9,175.4 L356.2,175.4 L353.8,175.4 L353.5,174.1 L352.0,172.0 L352.4,172.0 L353.8,172.0 L358.8,172.0 L358.8,172.1 L359.4,173.3 Z",NE,31055 1861,13071,0.52,0.50,Colquitt,"M531.2,329.2 L534.6,328.8 L536.2,328.6 L536.6,328.6 L538.2,328.4 L538.5,330.4 L537.9,332.7 L538.0,333.4 L535.6,333.7 L531.8,334.1 L531.7,333.6 L531.5,331.6 Z",GA,13071 1862,17157,0.50,0.53,Randolph,"M438.5,222.4 L439.8,222.4 L441.1,222.3 L442.0,222.2 L442.5,222.2 L442.6,223.6 L442.8,226.6 L442.1,228.3 L441.9,229.2 L439.6,227.6 L438.3,228.2 L438.3,228.2 L437.6,226.8 L434.6,224.9 L436.8,224.0 Z",IL,17157 1863,29157,0.50,0.50,Perry,"M439.6,227.6 L441.9,229.2 L444.2,231.0 L444.2,232.9 L444.2,233.0 L444.2,233.0 L443.1,232.7 L439.7,232.8 L437.8,232.9 L435.9,233.1 L435.9,232.8 L435.8,232.3 L436.1,232.0 L436.3,231.8 L437.6,229.2 L438.3,228.2 L438.3,228.2 Z",MO,29157 1864,51173,0.50,0.44,Smyth,"M547.6,231.9 L547.8,231.6 L548.3,231.3 L549.6,231.6 L552.7,229.8 L552.8,229.9 L553.6,230.6 L554.4,231.4 L555.7,233.5 L552.1,235.1 L551.4,236.3 L549.8,234.0 Z",VA,51173 1865,35011,0.81,0.86,De Baca,"M247.4,286.2 L247.1,289.6 L244.1,290.8 L235.3,289.9 L234.0,288.3 L234.4,284.4 L234.4,284.0 L234.8,279.7 L241.0,280.3 L245.6,277.7 L245.4,280.7 L247.9,280.9 L247.9,280.9 Z",NM,35011 1866,35041,0.12,0.48,Roosevelt,"M247.4,286.2 L247.9,280.9 L247.9,280.9 L250.7,281.1 L250.8,281.1 L250.3,286.2 L260.0,287.0 L259.5,292.5 L259.3,295.0 L259.2,296.4 L258.9,299.2 L253.5,298.8 L252.5,298.7 L248.2,294.1 L247.1,289.6 Z",NM,35041 1867,35027,0.49,0.47,Lincoln,"M234.4,284.0 L234.4,284.4 L234.0,288.3 L232.2,304.2 L226.4,303.7 L226.7,300.8 L221.1,298.8 L212.5,297.8 L212.1,297.7 L212.3,296.3 L212.6,293.2 L217.1,293.9 L219.2,291.2 L220.0,283.9 L220.0,283.9 L228.4,284.8 L228.6,283.4 L229.6,283.5 Z",NM,35027 1868,42111,0.50,0.50,Somerset,"M574.0,170.4 L576.3,170.6 L579.2,170.1 L578.4,173.4 L578.9,179.0 L578.3,179.1 L577.3,179.3 L575.9,179.6 L571.5,180.4 L570.8,178.3 L571.8,175.0 L573.1,172.7 Z",PA,42111 1869,39101,0.54,0.55,Marion,"M521.7,171.9 L523.5,171.7 L524.9,171.4 L523.8,172.6 L523.5,176.2 L521.7,176.4 L520.6,176.5 L520.5,175.4 L518.3,175.8 L518.1,174.1 L517.9,172.8 L519.3,172.3 Z",OH,39101 1870,17149,0.50,0.51,Pike,"M427.7,196.8 L427.2,198.3 L428.2,201.3 L427.9,202.4 L427.9,203.4 L425.2,203.5 L423.7,203.6 L422.3,202.8 L420.4,200.4 L419.8,200.1 L418.7,199.1 L417.8,198.4 L417.8,197.9 L423.6,197.6 L423.5,196.1 L423.8,196.2 L428.0,195.9 L428.1,196.1 Z",IL,17149 1871,01107,0.47,0.50,Pickens,"M466.5,303.2 L466.5,299.6 L466.5,299.1 L469.1,298.9 L471.1,298.8 L472.4,298.7 L472.6,298.7 L472.8,300.6 L473.2,304.9 L470.5,307.1 L468.8,307.9 L467.9,308.0 L466.4,308.2 L466.4,304.6 Z",AL,1107 1872,17145,0.51,0.50,Perry,"M442.8,226.6 L442.6,223.6 L442.5,222.2 L446.0,222.0 L448.4,221.9 L448.5,223.3 L448.7,223.3 L449.0,224.3 L448.3,226.3 L446.7,226.4 Z",IL,17145 1873,19075,0.50,0.50,Grundy,"M400.7,151.7 L401.0,153.1 L401.1,156.0 L398.2,156.1 L398.3,157.6 L396.9,157.6 L395.4,157.7 L395.2,153.3 L394.9,151.9 L396.6,151.9 Z",IA,19075 1874,08107,0.96,0.28,Routt,"M221.3,188.6 L220.0,188.5 L216.1,188.1 L216.2,186.7 L216.4,185.2 L216.7,183.0 L211.5,182.4 L213.9,176.3 L214.7,169.6 L218.7,170.1 L220.5,170.3 L222.9,174.2 L221.9,179.4 L222.0,179.9 L222.0,179.9 L222.1,181.7 Z",CO,8107 1875,08049,0.14,0.48,Grand,"M234.4,184.4 L234.2,188.1 L233.5,189.8 L233.1,190.5 L233.2,191.2 L230.5,191.8 L229.9,193.4 L226.1,189.3 L223.8,188.9 L223.1,188.8 L221.3,188.6 L222.1,181.7 L222.0,179.9 L224.5,181.9 L230.6,182.5 L232.2,180.4 L232.6,181.5 Z",CO,8049 1876,08019,0.50,0.47,Clear Creek,"M229.9,193.4 L230.5,191.8 L233.2,191.2 L234.9,192.7 L236.7,193.3 L236.6,195.1 L236.4,196.3 L234.0,196.0 L230.9,195.8 L231.5,194.6 Z",CO,8019 1877,08103,0.33,0.53,Rio Blanco,"M211.5,182.4 L216.7,183.0 L216.4,185.2 L212.8,184.8 L210.8,189.0 L204.3,188.2 L204.0,190.3 L189.7,188.9 L190.2,185.4 L191.0,179.6 L203.0,181.3 Z",CO,8103 1878,34035,0.59,0.48,Somerset,"M630.1,151.7 L630.8,151.6 L630.4,152.9 L630.8,154.6 L629.3,157.0 L628.0,157.3 L627.5,156.6 L627.3,153.9 L626.6,151.7 L628.6,150.6 Z",NJ,34035 1879,34023,0.53,0.47,Middlesex,"M629.3,157.0 L630.8,154.6 L630.4,152.9 L632.3,152.2 L633.4,152.1 L633.0,154.0 L633.9,154.6 L632.5,157.9 L631.5,158.6 L629.3,157.6 Z",NJ,34023 1880,17087,0.50,0.51,Johnson,"M450.6,232.0 L453.3,231.8 L455.0,231.6 L455.2,234.5 L455.3,236.0 L452.7,236.2 L452.4,236.8 L452.4,236.8 L451.4,236.8 L450.9,236.5 L450.7,234.4 Z",IL,17087 1881,17127,0.55,0.43,Massac,"M452.4,236.8 L452.7,236.2 L455.3,236.0 L458.3,238.6 L458.3,238.6 L458.3,238.6 L458.3,238.6 L458.5,238.7 L458.6,240.3 L458.3,240.3 L457.6,240.2 L455.2,239.2 L452.6,238.1 L452.5,237.7 Z",IL,17127 1882,08053,0.43,0.51,Hinsdale,"M212.9,217.6 L212.8,218.5 L212.5,220.7 L210.7,220.8 L209.8,229.4 L206.8,229.0 L205.1,228.8 L205.3,227.5 L205.5,225.2 L206.1,222.4 L205.1,219.7 L206.1,218.2 L205.5,216.6 L208.3,217.0 Z",CO,8053 1883,08091,0.57,0.41,Ouray,"M205.5,216.6 L206.1,218.2 L205.1,219.7 L204.1,220.3 L202.7,220.4 L202.7,220.4 L200.9,218.1 L200.3,215.9 L198.5,212.6 L204.9,214.0 L205.4,214.9 Z",CO,8091 1884,27059,0.50,0.49,Isanti,"M393.4,103.9 L391.7,103.9 L387.5,104.0 L387.5,103.3 L387.5,101.6 L387.4,100.1 L387.4,98.6 L388.8,98.7 L391.8,98.6 L391.8,98.6 L391.8,101.5 Z",MN,27059 1885,42049,0.46,0.48,Erie,"M551.1,147.9 L550.9,146.7 L550.7,145.6 L552.4,144.7 L559.2,139.3 L560.0,143.8 L561.9,143.4 L562.2,145.3 L562.3,145.9 L556.0,147.0 Z",PA,42049 1886,28029,0.48,0.49,Copiah,"M442.5,330.9 L441.7,331.3 L440.8,331.6 L440.3,331.9 L433.8,332.4 L433.7,331.6 L433.7,330.9 L433.9,329.9 L433.7,326.5 L434.6,326.4 L440.7,326.0 L442.3,329.2 Z",MS,28029 1887,21161,0.46,0.57,Mason,"M516.0,205.4 L517.7,206.4 L518.9,207.2 L519.4,207.4 L519.7,207.2 L520.0,207.5 L520.0,209.0 L517.3,210.5 L516.3,210.1 L515.8,209.4 L515.3,208.5 L515.5,207.4 Z",KY,21161 1888,27095,0.52,0.50,Mille Lacs,"M388.1,91.5 L387.2,94.5 L387.4,98.6 L387.4,100.1 L387.5,101.6 L385.9,101.6 L384.5,101.7 L384.4,98.7 L384.4,97.2 L383.8,94.5 L383.7,91.6 L383.6,90.1 L383.8,90.1 L388.1,90.0 Z",MN,27095 1889,48179,0.50,0.50,Gray,"M295.6,272.6 L295.5,274.4 L289.5,274.1 L288.0,274.1 L288.2,270.9 L288.4,266.7 L292.5,266.9 L295.9,267.1 L295.9,267.1 L295.9,267.1 Z",TX,48179 1890,48129,0.50,0.50,Donley,"M288.0,274.1 L289.5,274.1 L295.5,274.4 L295.4,276.6 L295.1,281.7 L291.7,281.5 L289.6,281.4 L288.8,281.4 L287.5,281.3 L287.8,277.1 Z",TX,48129 1891,12013,0.55,0.50,Calhoun,"M517.5,350.3 L516.0,350.5 L513.5,350.7 L513.0,347.0 L512.8,344.6 L515.9,343.5 L519.3,343.1 L518.2,349.1 Z",FL,12013 1892,12005,0.47,0.45,Bay,"M512.8,344.6 L513.0,347.0 L513.5,350.7 L513.6,351.7 L513.7,353.4 L508.6,351.4 L504.5,350.5 L504.4,349.9 L504.3,348.6 L504.3,348.6 L511.6,347.0 L512.1,344.7 L512.5,344.6 Z M514.0,355.4 L509.5,352.5 L513.7,353.4 L513.8,354.1 Z",FL,12005 1893,47181,0.51,0.49,Wayne,"M473.6,273.7 L470.0,274.0 L468.4,274.1 L468.0,269.3 L467.3,267.7 L467.9,267.7 L467.5,267.2 L467.9,266.5 L471.4,265.8 L472.4,265.9 L473.4,267.0 L473.8,272.7 Z",TN,47181 1894,01077,0.51,0.54,Lauderdale,"M468.4,274.1 L470.0,274.0 L473.6,273.7 L476.0,273.5 L478.9,273.2 L479.0,273.2 L479.1,273.2 L479.3,276.3 L478.8,277.3 L477.6,276.8 L476.4,276.8 L471.3,278.5 L467.7,275.8 L467.0,276.1 L467.0,276.1 L466.2,275.7 L465.5,274.5 L465.4,274.3 Z",AL,1077 1895,01083,0.48,0.53,Limestone,"M478.8,277.3 L479.3,276.3 L479.1,273.2 L480.8,273.1 L484.2,272.8 L484.5,272.8 L484.9,272.8 L485.5,278.9 L485.6,280.1 L483.7,279.7 L481.0,278.3 L480.5,277.7 Z",AL,1083 1896,18045,0.47,0.50,Fountain,"M471.9,183.6 L471.9,184.2 L472.1,186.2 L472.4,189.1 L472.6,190.5 L471.3,190.6 L468.4,190.9 L468.1,189.7 L468.3,188.0 L467.8,187.4 Z",IN,18045 1897,39115,0.52,0.49,Morgan,"M538.1,189.0 L537.9,186.1 L537.2,185.4 L539.1,185.2 L542.0,184.9 L543.0,186.3 L543.9,187.5 L542.6,189.5 L540.9,190.3 L538.2,190.5 Z",OH,39115 1898,39127,0.50,0.51,Perry,"M537.2,185.4 L537.9,186.1 L538.1,189.0 L537.1,189.1 L536.6,189.1 L533.7,188.9 L533.6,187.9 L532.9,185.0 L531.8,183.5 L532.4,183.6 L534.8,183.4 L535.8,184.8 Z",OH,39127 1899,51590,0.30,0.65,Danville,"M581.8,232.7 L580.5,232.9 L580.1,233.0 L580.8,231.1 Z",VA,51590 1900,13011,0.60,0.45,Banks,"M529.9,279.2 L529.0,278.1 L529.6,276.9 L530.6,275.7 L531.7,275.8 L532.3,275.9 L532.5,276.0 L532.9,278.2 L533.7,279.9 L533.5,280.2 L533.1,280.4 L531.9,279.5 Z",GA,13011 1901,13229,0.46,0.47,Pierce,"M559.2,324.6 L559.9,326.1 L556.1,327.6 L554.5,326.7 L553.7,324.6 L554.7,324.3 L556.1,322.3 L557.3,323.2 L557.6,323.1 L558.8,323.2 Z",GA,13229 1902,13305,0.39,0.60,Wayne,"M559.2,324.6 L558.8,323.2 L557.6,323.1 L556.8,318.1 L557.9,317.0 L558.5,317.4 L559.1,317.5 L561.6,319.2 L564.1,321.0 L565.0,322.0 L564.9,322.3 L564.1,323.3 L563.7,324.6 L560.9,324.8 Z",GA,13305 1903,40109,0.50,0.50,Oklahoma,"M335.0,272.5 L335.1,269.6 L335.1,266.7 L339.5,266.8 L342.4,266.8 L342.4,269.5 L342.3,271.2 L342.3,271.2 L342.3,272.7 L340.9,272.6 Z",OK,40109 1904,40069,0.50,0.50,Johnston,"M345.0,292.9 L345.0,291.6 L345.0,290.2 L345.7,287.3 L346.5,287.3 L348.6,287.3 L350.8,287.3 L350.8,288.8 L352.3,288.8 L352.3,291.6 L352.3,293.2 L351.6,293.9 L349.8,293.9 L348.6,292.9 Z",OK,40069 1905,40005,0.46,0.55,Atoka,"M352.3,288.8 L356.0,288.8 L356.7,284.4 L359.6,285.9 L362.5,285.9 L361.0,287.3 L361.1,293.2 L359.7,293.2 L358.1,293.2 L356.8,293.2 L352.3,293.2 L352.3,291.6 Z",OK,40005 1906,49043,0.27,0.52,Summit,"M160.4,168.2 L160.2,166.6 L159.9,164.9 L161.0,161.8 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.5,160.0 L165.6,160.0 L167.8,159.3 L168.6,158.7 L167.9,162.9 L180.4,164.9 L180.9,165.0 L181.0,165.0 L180.7,166.7 L180.5,168.0 L177.3,167.1 L168.8,168.4 L165.3,170.1 Z",UT,49043 1907,49013,0.83,0.51,Duchesne,"M168.8,168.4 L177.3,167.1 L180.5,168.0 L180.6,168.1 L180.8,168.1 L179.1,178.9 L178.3,184.8 L171.3,183.6 L167.0,182.8 L167.2,181.4 L166.8,181.3 L168.2,172.5 Z",UT,49013 1908,32027,0.52,0.52,Pershing,"M88.3,154.8 L87.5,155.9 L83.2,162.6 L74.4,160.4 L62.2,157.3 L60.7,157.0 L65.2,141.5 L71.6,143.2 L71.2,144.9 L85.3,148.4 L84.6,151.2 L88.8,152.2 Z",NV,32027 1909,21023,0.57,0.41,Bracken,"M514.1,205.6 L515.0,205.2 L516.0,205.4 L515.5,207.4 L515.3,208.5 L514.1,208.6 L513.1,209.4 L512.5,209.6 L512.5,209.0 L511.6,205.1 L511.6,205.0 L511.9,205.3 Z",KY,21023 1910,21201,0.53,0.45,Robertson,"M513.1,209.4 L514.1,208.6 L515.3,208.5 L515.8,209.4 L516.3,210.1 L515.8,210.6 L515.8,211.0 L515.4,211.2 L514.1,210.9 L513.0,210.4 Z",KY,21201 1911,55037,0.50,0.47,Florence,"M447.4,95.5 L444.4,95.8 L444.0,90.9 L446.0,90.6 L450.7,91.9 L450.7,93.5 L451.6,94.2 L451.7,95.3 Z",WI,55037 1912,27159,0.50,0.50,Wadena,"M367.7,82.4 L367.7,81.4 L367.7,80.9 L369.2,80.9 L372.1,80.9 L372.3,87.8 L372.8,88.2 L370.7,88.3 L367.9,88.3 L367.8,83.9 Z",MN,27159 1913,21043,0.51,0.61,Carter,"M531.7,212.1 L531.0,213.1 L530.1,213.5 L526.9,212.4 L525.9,213.8 L525.0,213.4 L524.4,211.9 L525.8,211.3 L526.2,208.5 L528.9,209.9 L531.1,210.0 L531.7,210.1 Z",KY,21043 1914,37097,0.46,0.51,Iredell,"M560.7,244.8 L561.4,244.5 L562.7,244.3 L564.5,244.1 L565.2,244.0 L565.4,245.5 L565.6,247.3 L565.2,250.4 L566.2,253.0 L566.2,253.0 L566.2,253.1 L565.5,253.2 L563.9,253.3 L563.4,253.8 L563.1,253.6 L563.0,252.9 L563.3,251.6 L560.4,249.4 L561.3,246.2 Z",NC,37097 1915,37159,0.47,0.42,Rowan,"M565.2,250.4 L565.6,247.3 L566.6,247.2 L569.3,248.5 L571.0,248.6 L573.7,251.8 L572.8,252.0 L572.1,252.1 L570.4,252.4 L566.2,253.0 L566.2,253.1 L566.2,253.0 L566.0,252.4 Z",NC,37159 1916,37025,0.56,0.55,Cabarrus,"M565.5,253.2 L566.2,253.1 L566.2,253.0 L570.4,252.4 L572.1,252.1 L571.1,255.1 L570.2,257.8 L570.2,257.8 L569.5,257.6 L567.8,256.8 Z",NC,37025 1917,37167,0.47,0.50,Stanly,"M570.2,257.8 L571.1,255.1 L572.1,252.1 L572.8,252.0 L573.7,251.8 L575.8,253.7 L576.2,257.5 L574.8,257.7 L573.3,257.1 L572.3,257.8 Z",NC,37167 1918,51083,0.50,0.50,Halifax,"M589.9,231.1 L589.4,231.2 L589.1,231.3 L586.8,231.7 L584.5,232.2 L584.5,232.2 L583.5,232.4 L583.5,228.5 L583.5,223.5 L584.8,223.8 L586.1,223.7 L589.7,225.8 L590.5,228.4 L589.9,229.5 Z",VA,51083 1919,37091,0.47,0.46,Hertford,"M611.1,231.9 L611.5,227.9 L610.7,226.9 L610.8,226.9 L614.0,226.2 L614.3,228.6 L617.2,229.4 L617.7,229.9 L617.5,230.6 L614.3,231.4 Z",NC,37091 1920,41021,0.52,0.50,Gilliam,"M77.1,73.3 L75.8,73.0 L69.0,71.1 L69.1,71.0 L69.0,70.8 L70.8,64.6 L72.7,63.9 L70.2,59.7 L75.2,61.3 L78.0,60.5 L75.5,69.6 Z",OR,41021 1921,05009,0.51,0.50,Boone,"M399.5,259.7 L396.8,259.7 L394.7,259.7 L394.6,255.9 L394.6,253.4 L396.7,253.4 L400.5,253.2 L400.1,253.4 L400.2,259.7 L399.8,259.7 Z",AR,5009 1922,48433,0.51,0.50,Stonewall,"M301.7,304.7 L301.7,307.2 L301.5,312.1 L301.0,312.1 L299.3,312.0 L294.2,311.7 L293.9,311.7 L294.2,306.9 L294.3,304.4 L298.1,304.6 Z",TX,48433 1923,48253,0.50,0.50,Jones,"M299.3,312.0 L301.0,312.1 L301.5,312.1 L304.3,312.2 L306.8,312.4 L306.8,313.3 L306.5,319.8 L306.3,319.8 L306.2,319.8 L306.2,319.8 L306.2,319.7 L298.9,319.3 L299.1,315.6 Z",TX,48253 1924,48083,0.50,0.50,Coleman,"M307.8,327.2 L312.2,327.3 L311.9,332.9 L311.7,337.6 L310.1,338.5 L306.0,337.0 L305.3,336.4 L304.3,335.5 L304.7,328.4 L304.7,327.0 L304.7,327.0 L304.7,327.0 L305.4,327.0 L305.9,327.1 L305.9,327.1 L305.9,327.1 Z",TX,48083 1925,48185,0.49,0.51,Grimes,"M360.0,348.6 L360.3,351.2 L360.5,352.6 L360.8,357.5 L360.9,359.1 L356.7,359.4 L356.6,359.4 L356.7,358.3 L355.7,357.6 L355.2,353.1 L355.5,349.3 L356.2,349.3 Z",TX,48185 1926,26157,0.49,0.46,Tuscola,"M507.7,124.6 L509.4,122.5 L510.2,122.3 L510.4,123.3 L514.6,122.6 L515.6,128.4 L515.4,128.4 L512.6,128.9 L511.5,130.7 L510.1,130.9 L508.6,131.1 L508.4,129.4 L508.0,126.8 L507.8,125.6 Z",MI,26157 1927,26049,0.52,0.50,Genesee,"M508.6,131.1 L510.1,130.9 L511.5,130.7 L511.9,133.6 L512.4,136.4 L509.5,136.9 L509.7,138.4 L508.3,138.6 L506.9,138.8 L506.4,136.0 L506.0,133.0 L505.8,131.5 Z",MI,26049 1928,22007,0.61,0.47,Assumption,"M433.3,362.7 L432.8,364.0 L431.7,366.0 L431.3,366.7 L430.7,367.6 L430.3,367.3 L430.4,366.4 L430.4,364.6 L427.8,361.9 L427.7,361.4 L428.2,361.0 L429.2,360.6 L429.9,360.2 L431.4,359.9 L432.0,360.1 L432.2,361.6 Z",LA,22007 1929,22093,0.50,0.51,St. James,"M433.3,362.7 L432.2,361.6 L432.0,360.1 L432.7,359.2 L436.7,358.1 L436.1,360.3 L436.7,362.8 L436.7,362.8 L435.7,362.6 L434.8,362.4 Z",LA,22093 1930,22005,0.52,0.60,Ascension,"M436.7,358.1 L432.7,359.2 L432.0,360.1 L431.4,359.9 L429.9,360.2 L430.1,359.5 L431.0,355.8 L431.6,355.3 L432.8,355.3 L435.9,358.0 L436.7,357.2 L436.7,357.3 Z",LA,22005 1931,28013,0.51,0.49,Calhoun,"M448.8,294.8 L448.6,291.4 L448.5,289.9 L450.3,289.8 L452.1,289.6 L452.1,289.6 L452.3,291.1 L453.7,291.0 L454.1,295.4 L453.4,296.7 L453.4,296.9 L449.0,297.3 L449.0,296.6 Z",MS,28013 1932,30055,0.12,0.46,McCone,"M239.6,64.9 L241.1,56.3 L239.4,54.6 L239.9,52.8 L246.0,54.5 L250.1,53.4 L253.5,54.3 L253.2,57.6 L252.6,58.9 L251.1,58.7 L249.6,69.0 L244.7,68.5 L241.7,68.1 L241.7,68.1 Z",MT,30055 1933,30033,0.51,0.48,Garfield,"M239.6,64.9 L241.7,68.1 L241.7,68.1 L241.5,70.1 L241.1,73.5 L241.1,73.6 L241.1,73.8 L233.8,72.7 L220.3,71.1 L220.6,62.6 L221.4,61.1 L224.3,58.4 L227.6,57.7 L233.7,58.6 L239.4,54.6 L241.1,56.3 Z",MT,30033 1934,30017,0.51,0.54,Custer,"M241.1,73.8 L241.1,73.6 L241.1,73.5 L246.5,74.6 L248.0,79.2 L253.3,80.2 L256.4,79.3 L254.1,81.3 L253.8,87.2 L253.2,87.1 L252.1,92.9 L246.9,92.4 L237.9,91.4 L239.0,85.6 Z",MT,30017 1935,17141,0.50,0.49,Ogle,"M436.6,155.8 L437.4,155.7 L440.3,155.5 L443.1,156.1 L446.0,155.9 L446.1,157.3 L446.3,160.2 L446.3,160.2 L441.1,160.7 L437.7,160.7 L437.7,160.2 L437.0,160.3 L436.9,158.7 Z",IL,17141 1936,38077,0.49,0.50,Richland,"M348.7,83.9 L348.8,83.9 L348.8,83.9 L351.0,89.0 L351.2,94.2 L351.3,95.2 L351.3,95.6 L351.3,95.6 L349.5,95.6 L343.5,95.6 L343.2,94.5 L343.0,89.7 L343.0,86.0 L343.1,83.8 L347.3,83.9 Z",ND,38077 1937,46109,0.48,0.49,Roberts,"M351.3,95.6 L351.1,97.6 L348.1,101.5 L349.9,104.5 L352.4,105.9 L346.2,105.9 L343.4,106.3 L343.4,104.4 L343.4,101.9 L343.5,98.0 L343.5,95.6 L349.5,95.6 L351.3,95.6 Z",SD,46109 1938,55095,0.50,0.49,Polk,"M396.7,105.7 L397.8,103.2 L394.8,99.9 L399.0,98.4 L403.5,99.7 L403.7,104.8 L403.8,106.9 L399.8,107.1 L396.6,107.2 L396.5,105.9 Z",WI,55095 1939,06015,0.38,0.45,Del Norte,"M9.7,116.6 L9.0,110.9 L10.7,107.5 L12.1,108.0 L15.4,109.1 L17.3,109.7 L19.0,110.1 L16.0,112.2 L14.2,119.5 L13.3,117.7 Z",CA,6015 1940,40127,0.10,0.50,Pushmataha,"M371.0,284.4 L372.7,284.3 L372.7,287.3 L371.3,291.7 L369.7,293.2 L364.2,293.2 L361.1,293.2 L361.0,287.3 L362.5,285.9 L364.7,285.9 L364.7,284.4 L368.4,284.4 Z",OK,40127 1941,53061,0.27,0.42,Snohomish,"M60.2,20.9 L63.3,18.1 L62.4,13.7 L62.6,13.5 L62.6,13.5 L63.0,12.8 L63.0,12.5 L71.2,14.9 L78.0,16.9 L78.5,19.4 L75.2,20.6 L74.4,25.0 L64.7,22.3 Z",WA,53061 1942,36105,0.50,0.49,Sullivan,"M619.0,138.3 L618.6,135.8 L617.1,134.5 L619.5,132.1 L620.9,130.7 L625.5,132.1 L624.5,134.5 L627.6,136.4 L626.6,138.2 L623.5,140.3 L620.5,140.1 Z",NY,36105 1943,37149,0.47,0.46,Polk,"M550.3,261.1 L548.7,261.3 L546.9,261.4 L546.1,261.5 L545.1,261.8 L545.0,260.2 L545.8,258.3 L547.3,257.8 Z",NC,37149 1944,37163,0.48,0.50,Sampson,"M598.5,258.2 L596.0,256.4 L595.6,252.2 L595.9,251.3 L596.4,250.8 L597.2,251.5 L599.7,250.7 L600.6,251.5 L601.9,251.9 L603.1,256.6 L604.1,259.4 L603.7,260.3 L602.7,262.6 L601.4,260.9 Z",NC,37163 1945,37085,0.53,0.60,Harnett,"M596.4,250.8 L595.9,251.3 L595.6,252.2 L594.0,252.1 L589.3,254.3 L587.3,253.3 L587.7,252.6 L588.5,251.3 L590.0,248.5 L590.3,247.7 L590.5,247.4 L591.4,247.5 L593.5,247.9 L594.2,248.1 Z",NC,37085 1946,37105,0.44,0.46,Lee,"M587.7,252.6 L586.4,252.1 L584.9,249.5 L587.6,247.2 L590.0,248.5 L588.5,251.3 Z",NC,37105 1947,18159,0.50,0.50,Tipton,"M487.5,181.3 L487.5,181.5 L487.5,181.8 L487.7,183.0 L487.8,184.4 L484.6,184.8 L483.0,185.0 L482.9,183.8 L482.7,182.4 L482.7,181.9 Z",IN,18159 1948,18067,0.50,0.53,Howard,"M487.5,181.3 L482.7,181.9 L482.7,182.4 L481.8,181.5 L480.9,181.6 L480.8,180.5 L480.7,179.4 L482.4,179.3 L483.4,179.1 L483.9,179.1 L487.2,178.7 L487.2,179.0 Z",IN,18067 1949,20027,0.50,0.50,Clay,"M345.5,208.3 L345.4,209.8 L345.4,209.8 L342.4,209.7 L340.1,209.7 L340.1,209.0 L340.2,206.8 L340.2,204.8 L340.2,202.5 L342.2,202.5 L345.6,202.5 L345.5,204.7 Z",KS,20027 1950,40145,0.50,0.54,Wagoner,"M361.2,264.7 L360.6,264.7 L360.4,264.7 L361.2,264.0 L361.2,259.6 L363.2,259.6 L365.6,261.0 L367.0,261.0 L368.8,261.0 L367.8,262.9 L368.0,265.4 L362.9,265.9 Z",OK,40145 1951,40097,0.50,0.50,Mayes,"M368.8,261.0 L367.0,261.0 L365.6,261.0 L365.6,253.7 L367.1,253.7 L369.8,253.7 L371.4,253.7 L371.5,258.1 L371.4,259.5 L370.0,259.5 Z",OK,40097 1952,05003,0.98,0.47,Ashley,"M422.3,310.9 L418.4,311.1 L413.6,311.3 L413.1,310.9 L412.6,308.8 L414.7,306.3 L414.5,304.7 L414.5,304.7 L417.6,304.6 L422.0,304.5 L422.0,306.4 Z M414.5,304.7 L414.5,304.7 L414.5,304.7 Z",AR,5003 1953,05043,0.49,0.50,Drew,"M414.5,304.7 L414.6,302.5 L414.4,299.6 L414.4,298.9 L414.4,298.1 L418.8,297.9 L420.2,298.0 L421.8,297.9 L421.9,301.6 L421.9,302.8 L422.0,304.5 L417.6,304.6 L414.5,304.7 Z",AR,5043 1954,05041,0.38,0.41,Desha,"M428.4,291.9 L426.7,294.7 L425.0,301.5 L425.0,301.5 L424.9,302.2 L421.9,301.6 L421.8,297.9 L420.2,298.0 L420.2,294.7 L422.0,294.0 L426.0,294.8 L426.1,292.0 L426.1,292.0 L426.1,292.0 L426.5,292.0 Z",AR,5041 1955,05079,0.50,0.49,Lincoln,"M422.0,294.0 L420.2,294.7 L420.2,298.0 L418.8,297.9 L414.4,298.1 L414.2,295.0 L414.5,293.5 L417.6,291.5 L421.6,292.9 L421.7,293.7 Z",AR,5079 1956,47135,0.51,0.48,Perry,"M467.5,260.1 L469.1,260.6 L470.8,259.9 L470.7,262.8 L472.0,263.6 L471.7,264.7 L471.4,265.8 L467.9,266.5 L467.5,267.2 L466.7,262.3 L467.4,260.6 L467.4,260.3 Z",TN,47135 1957,27163,0.53,0.50,Washington,"M393.5,108.8 L393.5,106.9 L393.4,105.8 L394.5,105.8 L396.7,105.7 L396.5,105.9 L396.6,107.2 L396.8,108.9 L396.7,113.1 L396.3,114.7 L396.3,115.0 L393.9,114.7 L393.7,112.7 L393.9,108.7 Z",MN,27163 1958,51740,0.43,0.36,Portsmouth,"M620.5,219.2 L620.6,219.4 L621.0,219.4 L621.1,219.6 L621.2,219.9 L620.2,220.7 L619.4,219.5 L619.5,219.3 L619.5,218.9 L620.1,218.9 L620.5,219.0 L620.4,219.2 Z",VA,51740 1959,48235,0.50,0.51,Irion,"M289.9,343.1 L289.3,343.1 L286.0,343.0 L283.6,342.9 L281.4,342.8 L281.7,339.2 L282.0,335.2 L290.2,335.8 Z",TX,48235 1960,29025,0.50,0.50,Caldwell,"M386.9,198.6 L387.0,200.0 L387.0,201.5 L387.0,202.2 L387.0,202.9 L383.9,203.0 L381.2,203.0 L381.2,200.1 L381.2,199.4 L381.2,199.1 L381.2,198.7 L382.6,198.7 Z",MO,29025 1961,29049,0.50,0.50,Clinton,"M381.2,199.4 L381.2,200.1 L381.2,203.0 L381.2,203.9 L381.2,204.2 L379.7,204.3 L376.1,204.3 L376.1,203.7 L376.1,203.1 L376.1,201.7 L376.0,199.4 L379.7,199.4 Z",MO,29049 1962,12007,0.71,0.43,Bradford,"M563.3,352.2 L563.2,352.2 L563.2,352.2 L561.8,350.4 L557.4,349.6 L558.9,348.8 L560.9,345.3 L561.5,345.2 L562.2,345.1 L563.3,351.7 Z",FL,12007 1963,12107,0.44,0.56,Putnam,"M563.2,352.2 L563.2,352.2 L563.3,352.2 L566.5,349.7 L569.8,349.1 L570.9,350.3 L571.2,352.6 L571.6,354.6 L573.2,356.1 L573.0,356.5 L569.7,358.0 L566.8,355.0 L563.9,356.4 L563.4,353.0 Z",FL,12107 1964,12083,0.81,0.43,Marion,"M563.9,356.4 L566.8,355.0 L569.7,358.0 L570.2,358.3 L570.4,358.7 L571.0,364.0 L566.7,364.7 L562.9,365.3 L561.4,365.5 L558.8,364.3 L557.9,364.6 L559.4,361.4 L558.7,356.9 L561.5,356.5 Z",FL,12083 1965,21163,0.57,0.48,Meade,"M484.7,220.4 L485.5,219.0 L486.5,221.0 L490.2,221.5 L490.4,224.6 L488.5,225.1 L487.2,223.9 L483.6,221.5 L484.3,220.7 L483.9,220.2 L483.9,220.2 Z",KY,21163 1966,31161,0.51,0.50,Sheridan,"M273.9,151.3 L274.3,145.5 L274.4,141.9 L276.1,142.1 L283.1,142.6 L283.1,142.6 L283.1,142.6 L282.6,157.7 L283.0,157.7 L282.9,159.2 L282.2,159.2 L276.8,158.8 L274.5,158.7 L274.4,158.7 L274.3,158.7 L273.8,157.2 Z M283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 Z M283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 Z",NE,31161 1967,31075,0.50,0.50,Grant,"M282.2,159.2 L282.9,159.2 L283.0,157.7 L285.9,158.0 L290.2,158.3 L290.2,159.8 L289.9,164.1 L287.4,164.0 L282.9,163.7 L281.9,163.6 Z",NE,31075 1968,16071,0.14,0.34,Oneida,"M158.2,139.3 L158.0,141.2 L157.5,144.1 L157.2,144.0 L156.9,144.0 L156.5,143.8 L146.6,142.0 L146.6,142.0 L146.9,140.2 L147.0,139.5 L147.6,136.6 L151.8,137.4 L155.2,135.0 L155.8,138.2 Z",ID,16071 1969,16035,0.50,0.60,Clearwater,"M122.0,60.1 L121.2,59.4 L121.7,57.2 L123.1,57.6 L124.2,52.5 L132.4,54.3 L139.8,55.9 L139.8,57.8 L142.3,59.9 L142.8,60.5 L142.9,61.8 L130.5,61.9 L128.0,64.9 L123.9,62.2 L122.5,61.2 Z",ID,16035 1970,27035,0.50,0.50,Crow Wing,"M383.8,80.7 L383.5,84.4 L383.8,90.1 L383.6,90.1 L383.7,91.6 L377.1,91.7 L377.4,89.7 L377.2,80.8 Z",MN,27035 1971,04021,0.52,0.47,Pinal,"M154.7,293.2 L152.8,304.5 L152.8,304.5 L142.8,303.0 L128.2,300.4 L130.5,287.4 L131.9,289.2 L138.9,290.4 L139.7,286.1 L147.2,287.3 L149.4,295.9 Z",AZ,4021 1972,04009,0.55,0.67,Graham,"M152.8,304.5 L152.8,304.5 L154.7,293.2 L155.1,290.4 L161.6,289.7 L161.9,287.8 L162.5,287.9 L163.4,288.2 L164.5,289.7 L169.1,287.6 L167.7,297.2 L171.4,308.8 L167.0,308.1 L152.6,305.9 L152.7,304.8 Z",AZ,4009 1973,05123,0.95,0.43,St. Francis,"M426.2,274.7 L428.8,274.6 L433.6,274.4 L435.0,274.2 L435.2,278.3 L425.6,278.7 L425.7,279.5 L424.9,278.8 L424.9,277.2 L426.3,277.2 Z",AR,5123 1974,20183,0.50,0.50,Smith,"M325.7,194.9 L325.7,197.9 L325.5,202.1 L324.7,202.1 L318.5,201.9 L318.4,201.9 L318.3,201.9 L318.4,198.4 L318.5,194.6 L318.7,194.6 L322.9,194.8 L324.8,194.8 Z",KS,20183 1975,12065,0.47,0.50,Jefferson,"M534.1,350.2 L533.6,349.8 L532.8,350.2 L532.6,348.2 L532.4,347.1 L532.4,342.9 L532.6,340.3 L534.9,340.2 L536.4,340.1 L537.4,340.0 L538.3,339.9 L536.8,342.6 L536.1,346.1 L534.8,347.3 Z",FL,12065 1976,28037,0.50,0.50,Franklin,"M435.6,338.2 L430.1,338.5 L429.0,339.0 L428.7,339.0 L428.0,338.6 L428.0,338.3 L427.9,334.2 L431.9,334.0 L433.9,333.8 L435.3,333.7 L435.6,338.2 L435.6,338.2 L435.6,338.2 L435.6,338.2 Z",MS,28037 1977,22037,0.50,0.50,East Feliciana,"M429.8,344.4 L432.4,344.2 L433.2,344.2 L432.7,345.1 L433.1,348.9 L427.2,349.5 L426.6,350.5 L426.4,350.4 L426.4,350.4 L427.4,348.0 L428.1,344.5 L428.9,344.5 Z",LA,22037 1978,22091,0.47,0.50,St. Helena,"M433.1,348.9 L432.7,345.1 L433.2,344.2 L434.2,344.1 L436.9,344.0 L437.1,346.3 L437.3,349.9 L434.6,350.0 L432.3,350.2 L432.8,349.4 Z",LA,22091 1979,05097,0.50,0.50,Montgomery,"M394.0,288.7 L394.0,289.0 L394.1,289.6 L393.9,289.6 L393.1,289.6 L389.4,289.6 L386.7,289.6 L386.7,287.1 L386.7,284.4 L387.5,283.5 L389.7,282.9 L391.6,282.9 L394.1,282.9 L394.0,283.8 Z",AR,5097 1980,26025,0.50,0.50,Calhoun,"M491.1,149.8 L490.7,147.0 L490.7,147.0 L493.2,146.7 L493.5,146.6 L494.4,146.5 L497.9,146.1 L498.2,149.0 L498.7,151.9 L498.2,152.0 L497.2,152.1 L494.3,152.4 L491.4,152.8 L491.4,152.8 L491.4,152.8 Z",MI,26025 1981,26077,0.50,0.50,Kalamazoo,"M491.1,149.8 L491.4,152.8 L491.4,152.8 L491.4,152.8 L491.4,152.8 L490.0,152.9 L485.6,153.5 L485.3,150.6 L484.9,147.6 L486.2,147.5 L487.7,147.3 L489.8,147.1 L490.7,147.0 L490.7,147.0 Z",MI,26077 1982,26015,0.50,0.50,Barry,"M489.8,147.1 L487.7,147.3 L487.3,144.5 L487.0,141.5 L487.9,141.4 L489.9,141.2 L491.2,141.0 L492.8,140.8 L492.9,142.3 L493.5,146.6 L493.2,146.7 L490.7,147.0 L490.7,147.0 Z",MI,26015 1983,01029,0.45,0.50,Cleburne,"M500.5,296.3 L501.2,295.5 L501.2,295.3 L503.2,293.5 L504.2,288.4 L504.6,288.1 L505.9,287.8 L506.2,288.6 L506.2,288.8 L507.0,291.3 L507.4,292.9 L508.0,294.8 L508.2,295.7 L507.5,295.6 L503.4,296.0 L501.7,296.2 Z",AL,1029 1984,06089,0.51,0.46,Shasta,"M40.1,130.7 L40.8,130.9 L41.5,131.1 L40.3,135.6 L38.1,143.0 L37.6,142.9 L36.0,142.4 L23.2,139.5 L16.0,139.2 L21.9,136.1 L21.8,134.0 L27.3,127.0 L31.8,128.3 Z",CA,6089 1985,19153,0.50,0.51,Polk,"M391.6,169.9 L390.6,169.7 L385.8,169.7 L385.5,168.2 L385.4,163.8 L385.8,163.8 L386.8,163.8 L388.9,163.7 L391.2,163.6 L391.3,168.0 L391.6,169.6 L391.6,169.7 Z",IA,19153 1986,19049,0.50,0.50,Dallas,"M385.4,163.8 L385.5,168.2 L385.8,169.7 L384.5,169.9 L380.1,169.9 L379.6,168.3 L379.5,163.9 L380.5,163.9 L381.0,163.9 L383.1,163.9 Z",IA,19049 1987,13183,0.49,0.52,Long,"M560.6,313.4 L561.8,315.6 L566.1,317.9 L565.4,320.1 L564.1,321.0 L561.6,319.2 L559.1,317.5 L560.0,315.1 Z",GA,13183 1988,47187,0.50,0.46,Williamson,"M477.6,259.0 L477.7,257.5 L477.6,257.2 L477.7,256.8 L477.7,255.7 L479.1,255.6 L479.5,255.6 L481.2,255.3 L485.5,256.3 L485.5,256.3 L485.9,259.2 L485.0,260.7 L484.4,260.9 L483.8,260.8 L481.5,260.1 Z",TN,47187 1989,53003,0.59,0.46,Asotin,"M114.2,59.0 L114.6,63.5 L114.0,66.4 L109.2,65.2 L107.6,64.9 L109.8,58.7 L112.0,58.8 L112.2,57.9 L112.2,57.9 L112.4,58.7 Z",WA,53003 1990,53023,0.53,0.49,Garfield,"M109.8,58.7 L107.6,64.9 L106.8,64.7 L106.1,64.5 L107.4,58.9 L105.1,56.0 L105.8,53.5 L110.4,53.3 L112.2,57.9 L112.2,57.9 L112.2,57.9 Z",WA,53023 1991,27155,0.50,0.50,Traverse,"M348.1,101.5 L351.1,97.6 L351.3,95.6 L351.3,95.6 L351.3,95.2 L351.2,94.2 L353.2,94.2 L354.8,94.2 L354.8,94.2 L354.8,94.2 L355.0,95.7 L355.0,98.6 L355.0,100.1 L355.0,101.6 L351.9,101.5 Z",MN,27155 1992,27167,0.50,0.50,Wilkin,"M353.2,94.2 L351.2,94.2 L351.0,89.0 L348.8,83.9 L351.1,83.9 L354.7,83.9 L354.7,89.8 L354.9,92.7 L354.9,93.6 L354.8,94.2 Z",MN,27167 1993,27051,0.50,0.50,Grant,"M354.9,93.6 L354.9,92.7 L359.0,92.7 L360.7,92.7 L360.7,95.7 L360.8,95.7 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L357.8,98.6 L355.0,98.6 L355.0,95.7 L354.8,94.2 L354.8,94.2 Z M360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 Z M360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 Z",MN,27051 1994,17017,0.49,0.48,Cass,"M428.6,193.4 L429.6,192.8 L430.5,191.0 L431.4,192.1 L435.1,191.0 L435.2,192.0 L435.4,194.4 L435.4,194.6 L435.4,194.9 L432.3,195.1 L427.8,195.3 L428.4,194.5 Z",IL,17017 1995,13247,0.55,0.47,Rockdale,"M523.5,291.0 L524.5,291.4 L525.5,288.9 L525.9,288.5 L526.0,288.3 L526.6,288.7 L527.0,288.9 L527.0,290.5 L525.7,292.8 L524.5,292.3 Z",GA,13247 1996,40049,0.96,0.52,Garvin,"M339.2,287.2 L338.0,287.2 L336.3,287.2 L336.3,284.2 L334.9,284.2 L334.9,283.1 L334.9,281.3 L341.6,281.4 L345.1,281.4 L345.1,283.4 L345.1,285.1 L341.3,285.3 Z",OK,40049 1997,22031,0.15,0.20,De Soto,"M388.5,331.7 L387.7,330.6 L386.5,329.5 L386.1,329.2 L386.0,325.9 L389.5,323.4 L392.1,325.0 L393.2,327.2 L396.0,330.1 L394.8,330.4 L394.8,331.6 L392.1,331.6 Z",LA,22031 1998,06019,0.62,0.42,Fresno,"M27.3,212.7 L29.3,209.4 L26.3,204.2 L30.7,201.7 L32.6,200.6 L34.6,205.9 L41.0,206.3 L54.6,197.1 L55.8,198.0 L57.2,199.9 L57.5,205.5 L60.0,207.6 L59.7,213.0 L51.5,210.9 L42.8,213.0 L37.3,213.1 L36.4,216.6 L30.5,219.8 L27.0,215.3 Z",CA,6019 1999,13147,0.33,0.48,Hart,"M536.9,278.6 L536.8,276.1 L537.2,274.8 L538.1,275.0 L538.1,274.9 L539.3,274.6 L541.6,277.6 L538.9,279.3 L537.5,279.3 L536.9,278.7 Z",GA,13147 2000,13105,0.49,0.67,Elbert,"M537.5,279.3 L538.9,279.3 L541.6,277.6 L542.0,277.9 L542.2,278.9 L543.3,280.1 L544.7,281.8 L545.0,282.2 L545.3,282.7 L544.7,282.4 L544.1,282.4 L543.9,282.3 L542.3,282.9 L541.1,282.9 L539.4,282.1 L537.3,280.2 Z",GA,13105 2001,01005,0.52,0.53,Barbour,"M514.5,319.0 L514.7,319.6 L514.5,320.2 L513.8,322.6 L513.9,323.9 L514.1,324.0 L514.1,324.1 L510.1,325.6 L510.3,327.0 L507.9,327.3 L505.5,327.6 L506.4,324.9 L506.3,323.0 L509.3,320.4 L509.3,318.2 L511.5,317.9 Z",AL,1005 2002,01109,0.51,0.47,Pike,"M506.3,323.0 L506.4,324.9 L505.5,327.6 L505.5,327.6 L504.9,327.7 L501.9,328.0 L499.8,328.2 L498.8,325.4 L498.5,322.5 L501.3,322.1 L501.2,320.7 L504.3,321.8 Z",AL,1109 2003,01011,0.50,0.51,Bullock,"M506.3,323.0 L504.3,321.8 L501.2,320.7 L500.8,317.4 L501.9,316.9 L502.8,317.5 L508.8,316.7 L509.1,318.2 L509.3,318.2 L509.3,320.4 Z",AL,1011 2004,37017,0.51,0.52,Bladen,"M594.5,265.4 L594.8,261.8 L593.0,259.7 L593.8,259.3 L598.5,258.2 L601.4,260.9 L602.7,262.6 L604.1,263.8 L603.2,265.1 L600.7,266.0 Z",NC,37017 2005,47035,0.49,0.47,Cumberland,"M511.9,254.2 L511.3,255.1 L510.7,255.8 L510.5,255.8 L509.0,257.1 L507.3,257.1 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.6 L504.4,257.2 L504.1,257.2 L504.1,257.2 L504.1,257.1 L504.7,255.1 L503.8,254.0 L503.8,252.0 L505.7,251.1 L506.6,250.5 L508.3,250.5 L511.1,252.9 Z",TN,47035 2006,47129,0.44,0.50,Morgan,"M511.9,254.2 L511.1,252.9 L508.3,250.5 L508.4,248.4 L510.6,246.6 L512.1,248.1 L514.6,249.6 L514.5,250.0 L516.1,251.3 L514.9,252.6 Z",TN,47129 2007,26137,0.49,0.50,Otsego,"M490.6,101.3 L492.1,101.2 L491.9,99.7 L493.8,99.5 L496.2,99.2 L496.5,101.4 L496.9,105.0 L495.6,105.1 L491.2,105.6 L490.9,102.8 Z",MI,26137 2008,19161,0.50,0.50,Sac,"M372.2,158.2 L371.0,158.2 L369.3,158.3 L367.9,158.3 L366.4,158.3 L366.4,153.8 L365.6,152.4 L366.5,152.4 L371.4,152.4 L372.2,153.8 Z",IA,19161 2009,49041,0.50,0.45,Sevier,"M150.0,193.0 L150.0,193.0 L152.1,193.5 L159.2,194.8 L158.2,200.7 L157.6,203.4 L151.8,202.4 L151.6,202.5 L147.8,201.7 L141.9,200.6 L142.1,199.7 L142.2,199.6 L146.5,197.7 Z",UT,49041 2010,49015,0.52,0.50,Emery,"M157.6,203.4 L158.2,200.7 L159.2,194.8 L160.4,187.6 L161.7,183.8 L163.3,188.0 L176.7,190.2 L176.7,190.2 L176.7,190.3 L176.7,190.3 L176.7,190.3 L173.4,200.0 L174.2,206.2 L157.6,203.5 Z",UT,49015 2011,30083,0.82,0.61,Richland,"M261.2,67.2 L259.6,62.6 L255.2,62.1 L252.6,58.9 L253.2,57.6 L253.5,54.3 L257.1,53.2 L266.4,56.7 L266.3,59.0 L265.5,66.8 L264.5,67.5 L261.2,67.2 Z",MT,30083 2012,30109,0.50,0.48,Wibaux,"M261.2,67.2 L264.5,67.5 L265.5,66.8 L265.5,67.2 L265.4,68.0 L264.7,76.3 L264.4,79.6 L260.8,79.3 L257.9,78.2 L258.2,75.8 L258.3,75.3 L262.0,72.5 Z",MT,30109 2013,35053,0.34,0.49,Socorro,"M219.2,291.2 L217.1,293.9 L212.6,293.2 L212.3,296.3 L210.8,296.2 L193.5,294.0 L195.2,281.0 L195.7,275.7 L197.5,275.9 L202.9,276.6 L207.3,277.1 L213.5,280.2 L213.2,283.2 L220.0,283.9 L220.0,283.9 Z",NM,35053 2014,40021,0.50,0.50,Cherokee,"M369.9,268.3 L369.9,265.4 L368.0,265.4 L367.8,262.9 L368.8,261.0 L370.0,259.5 L371.4,259.5 L371.4,259.5 L373.1,259.5 L374.3,259.5 L374.2,263.9 L374.3,268.3 L371.6,268.3 Z",OK,40021 2015,27173,0.52,0.44,Yellow Medicine,"M356.9,117.6 L354.4,117.6 L352.6,117.6 L352.6,116.2 L352.6,114.7 L359.8,114.7 L361.1,112.5 L364.0,115.0 L364.2,115.6 L365.2,116.0 L365.7,116.5 L365.7,119.1 L362.9,119.1 L362.7,117.6 Z",MN,27173 2016,48231,0.50,0.50,Hunt,"M353.8,306.7 L357.8,306.1 L360.0,305.8 L359.9,307.9 L359.9,309.0 L359.9,312.6 L359.9,313.0 L358.8,313.0 L358.9,315.4 L357.1,315.4 L356.9,315.4 L354.6,315.3 L353.8,315.3 L353.8,314.2 L353.8,313.0 L353.8,309.1 Z",TX,48231 2017,48223,0.50,0.51,Hopkins,"M359.9,313.0 L359.9,312.6 L359.9,309.0 L363.8,306.6 L367.7,306.3 L367.8,310.5 L367.8,313.2 L366.0,313.3 L362.7,313.3 L362.7,313.0 Z",TX,48223 2018,48467,0.50,0.50,Van Zandt,"M356.9,315.4 L357.1,315.4 L358.9,315.4 L360.4,316.6 L363.2,317.3 L363.6,317.6 L363.7,317.9 L363.8,321.4 L365.8,323.5 L361.4,323.5 L356.9,323.5 L356.9,320.9 Z",TX,48467 2019,48353,0.50,0.50,Nolan,"M291.1,326.3 L291.3,323.7 L291.6,318.9 L295.0,319.1 L298.9,319.3 L298.8,320.6 L298.5,326.7 L297.8,326.7 L297.3,326.7 L296.0,326.6 Z",TX,48353 2020,48499,0.50,0.51,Wood,"M362.7,313.3 L366.0,313.3 L367.8,313.2 L369.7,313.2 L370.0,312.4 L370.0,312.8 L370.0,314.2 L370.0,319.1 L370.0,319.8 L365.5,319.2 L363.7,317.9 L363.6,317.6 L363.2,317.3 L363.1,316.6 Z",TX,48499 2021,20019,0.50,0.50,Chautauqua,"M350.9,245.6 L350.9,245.6 L350.9,245.6 L350.9,244.9 L350.9,241.3 L351.0,240.5 L355.5,240.5 L358.5,240.6 L358.5,244.0 L358.5,245.6 L358.0,245.6 L358.0,245.6 L353.7,245.6 Z",KS,20019 2022,37039,0.50,0.45,Cherokee,"M522.0,263.4 L523.2,264.5 L526.6,263.5 L526.7,263.9 L526.3,265.1 L524.7,265.6 L523.0,268.4 L522.6,268.4 L521.3,268.6 L521.3,268.6 L521.3,268.6 L521.3,268.6 L519.7,268.8 L518.7,268.9 L518.6,267.0 L518.6,265.2 L519.4,264.1 Z",NC,37039 2023,13291,0.51,0.49,Union,"M526.5,271.2 L526.0,271.5 L525.7,272.5 L523.4,274.2 L521.7,274.3 L522.2,271.6 L521.3,268.6 L521.3,268.6 L522.6,268.4 L523.0,268.4 L523.3,268.3 L524.0,268.2 L525.7,269.3 Z",GA,13291 2024,13111,0.87,0.87,Fannin,"M521.4,275.1 L521.3,275.0 L521.2,274.9 L519.2,271.9 L514.9,271.7 L514.9,271.6 L514.6,269.5 L518.0,269.0 L518.7,268.9 L519.7,268.8 L521.3,268.6 L521.3,268.6 L522.2,271.6 L521.7,274.3 L521.5,274.7 Z",GA,13111 2025,21195,0.40,0.54,Pike,"M534.9,228.1 L534.9,227.9 L535.1,227.8 L536.3,224.6 L536.1,220.9 L537.5,221.0 L539.0,219.5 L539.5,220.5 L544.3,222.1 L542.5,224.3 L540.3,226.9 L539.9,227.4 L537.4,228.9 L537.3,228.9 L537.3,229.0 L536.3,228.3 Z",KY,21195 2026,12041,0.45,0.52,Gilchrist,"M550.4,352.3 L550.4,352.4 L550.6,352.3 L550.9,351.5 L550.8,351.2 L550.9,350.8 L551.8,350.3 L553.6,351.7 L554.1,351.7 L554.5,354.3 L554.8,356.1 L553.1,356.0 L550.6,356.3 L550.1,353.6 L550.3,352.3 L550.3,352.3 Z",FL,12041 2027,37035,0.48,0.47,Catawba,"M557.0,250.1 L557.2,249.7 L557.3,249.6 L559.8,248.7 L560.4,249.4 L563.3,251.6 L563.0,252.9 L559.0,253.4 L555.2,253.8 L556.4,251.5 Z",NC,37035 2028,21025,0.44,0.37,Breathitt,"M523.1,225.8 L523.2,225.1 L523.6,223.5 L524.8,222.4 L527.1,222.5 L529.3,222.8 L531.4,224.7 L529.9,224.5 L529.4,226.6 L526.1,228.2 L523.9,228.6 L523.9,227.3 Z",KY,21025 2029,29181,0.49,0.48,Ripley,"M428.5,251.9 L426.3,252.1 L423.8,252.2 L423.7,247.5 L423.7,246.8 L426.7,246.8 L429.8,246.6 L430.9,248.8 L431.3,251.8 L429.2,251.9 Z",MO,29181 2030,17179,0.47,0.52,Tazewell,"M443.8,182.2 L444.0,184.4 L444.2,186.7 L442.8,186.8 L439.9,187.1 L438.3,185.3 L435.7,185.4 L436.1,184.8 L436.2,184.1 L438.9,183.0 L440.0,179.9 L442.9,179.7 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 L443.8,182.2 Z",IL,17179 2031,48109,0.15,0.71,Culberson,"M230.2,323.2 L231.1,323.3 L231.2,323.3 L239.7,324.1 L243.0,324.4 L242.6,326.6 L240.5,339.3 L240.5,339.3 L237.5,340.8 L228.0,345.6 L228.4,342.8 Z",TX,48109 2032,05135,0.59,0.02,Sharp,"M421.3,262.5 L419.8,261.8 L416.4,261.9 L416.7,260.9 L416.4,256.7 L416.4,256.7 L419.6,255.2 L419.5,252.4 L419.9,252.4 L420.1,252.4 L421.5,253.6 L422.3,256.3 L421.1,256.8 Z",AR,5135 2033,37177,0.38,0.50,Tyrrell,"M628.6,238.0 L628.7,238.0 L628.7,238.1 L628.7,238.1 L628.7,238.1 L628.6,238.0 Z M623.9,238.6 L623.4,237.2 L623.4,234.5 L627.5,232.9 L627.3,237.8 L626.7,239.7 Z",NC,37177 2034,27131,0.50,0.49,Rice,"M390.7,118.6 L390.7,119.8 L393.7,119.7 L393.7,121.0 L393.8,124.4 L393.8,124.4 L393.7,124.4 L390.3,124.5 L389.4,124.5 L388.4,124.5 L387.9,124.6 L387.9,121.9 L387.8,118.7 L389.9,118.6 Z",MN,27131 2035,27161,0.50,0.50,Waseca,"M387.9,124.6 L388.4,124.5 L389.4,124.5 L389.5,127.7 L389.5,130.4 L388.2,130.4 L386.6,130.4 L386.6,130.4 L386.6,130.4 L386.6,130.4 L386.6,130.4 L386.6,130.4 L385.9,130.5 L385.1,130.5 L385.0,126.6 L385.0,124.6 L386.3,124.6 Z",MN,27161 2036,27139,0.49,0.50,Scott,"M390.7,118.6 L389.9,118.6 L387.8,118.7 L386.1,118.7 L383.1,118.8 L383.7,117.5 L384.8,117.2 L386.6,116.0 L387.7,114.3 L388.7,114.1 L390.0,114.5 L390.2,117.2 Z",MN,27139 2037,27019,0.50,0.50,Carver,"M387.7,114.3 L386.6,116.0 L384.8,117.2 L383.3,115.9 L381.9,115.9 L381.8,113.0 L381.7,111.5 L383.6,111.5 L384.7,111.5 L387.7,112.8 Z",MN,27019 2038,29219,0.64,0.51,Warren,"M418.7,215.6 L418.3,215.4 L418.0,215.4 L419.9,213.1 L419.8,210.6 L421.9,212.5 L423.9,212.4 L424.0,214.9 L424.1,217.8 L420.6,216.8 Z",MO,29219 2039,21227,0.45,0.49,Warren,"M483.0,239.1 L483.4,236.0 L486.4,235.9 L488.1,237.3 L490.4,237.3 L490.2,238.3 L489.9,239.5 L488.7,240.7 L487.0,242.5 L484.5,241.8 L484.0,241.0 L483.5,240.1 Z",KY,21227 2040,22017,0.43,0.48,Caddo,"M385.9,322.6 L385.9,319.5 L385.8,317.5 L385.8,315.8 L385.7,314.4 L385.7,313.0 L385.7,312.0 L387.4,312.0 L388.9,312.0 L391.0,322.2 L394.2,325.0 L392.9,325.0 L392.1,325.0 L389.5,323.4 L386.0,325.9 L385.9,323.4 Z",LA,22017 2041,19127,0.50,0.50,Marshall,"M395.4,157.7 L396.9,157.6 L398.3,157.6 L398.5,162.1 L398.5,163.4 L396.4,163.5 L392.7,163.6 L392.5,159.4 L392.5,157.8 L392.5,157.8 L393.8,157.8 Z",IA,19127 2042,19083,0.50,0.50,Hardin,"M392.5,157.8 L392.5,157.8 L390.8,157.9 L389.6,157.9 L389.5,153.5 L389.0,152.1 L389.0,152.1 L393.3,151.9 L394.9,151.9 L395.2,153.3 L395.4,157.7 L393.8,157.8 Z",IA,19083 2043,19169,0.50,0.50,Story,"M392.5,157.8 L392.5,159.4 L392.7,163.6 L391.8,163.6 L391.2,163.6 L388.9,163.7 L386.8,163.8 L386.8,161.1 L386.7,158.0 L388.3,157.9 L389.6,157.9 L390.8,157.9 L392.5,157.8 Z",IA,19169 2044,40141,0.50,0.50,Tillman,"M315.0,284.4 L316.4,285.2 L318.8,285.3 L321.0,286.8 L321.0,288.5 L321.7,289.7 L321.6,292.7 L318.1,292.7 L316.8,291.6 L313.5,291.5 L313.3,289.4 L313.2,286.8 Z",OK,40141 2045,40031,0.04,0.50,Comanche,"M321.0,288.5 L321.0,286.8 L318.8,285.3 L318.9,280.9 L321.8,281.0 L324.8,281.1 L329.1,281.2 L329.1,281.4 L329.0,284.1 L328.3,284.1 L328.2,287.0 L326.1,287.9 Z",OK,40031 2046,37113,0.47,0.51,Macon,"M526.3,265.1 L526.7,263.9 L526.6,263.5 L526.7,263.3 L526.8,262.9 L529.8,262.1 L531.3,261.4 L532.4,263.0 L535.3,266.5 L535.3,266.5 L535.3,266.5 L532.8,266.9 L530.2,267.3 L527.4,264.9 Z",NC,37113 2047,54063,0.51,0.51,Monroe,"M565.8,216.0 L566.3,216.7 L567.0,216.9 L566.3,219.0 L564.2,220.8 L563.6,219.9 L560.3,222.0 L559.2,221.6 L559.2,221.6 L559.2,221.6 L561.0,216.4 L560.9,216.2 L563.8,216.5 Z M559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 Z",WV,54063 2048,18155,0.53,0.44,Switzerland,"M498.8,205.2 L498.8,204.9 L499.7,204.8 L499.7,205.2 L503.2,204.8 L504.3,205.0 L504.2,205.4 L504.2,206.6 L501.5,207.4 L499.7,208.9 L499.3,208.8 L499.1,207.6 Z",IN,18155 2049,01061,0.06,0.63,Geneva,"M502.6,338.5 L501.3,338.7 L500.4,338.7 L500.3,338.6 L499.9,335.4 L502.7,335.1 L505.7,334.7 L506.3,334.7 L506.9,334.6 L510.1,334.2 L510.5,337.6 L510.4,337.6 L510.3,337.6 L504.9,338.3 Z",AL,1061 2050,17155,0.49,0.52,Putnam,"M440.7,173.1 L440.6,171.7 L444.3,170.2 L444.4,171.2 L444.6,173.6 L442.1,173.8 Z",IL,17155 2051,17099,0.51,0.50,LaSalle,"M444.6,173.6 L444.4,171.2 L444.3,170.2 L444.0,167.1 L443.9,165.6 L443.9,165.6 L443.9,165.6 L443.9,165.6 L443.8,164.8 L446.7,164.6 L448.2,164.5 L450.9,164.2 L451.0,165.5 L451.2,167.1 L451.6,170.1 L451.8,173.0 L447.5,173.3 L447.7,176.3 L446.8,176.4 L446.2,176.5 L446.0,173.5 Z",IL,17099 2052,19055,0.50,0.50,Delaware,"M412.4,149.7 L412.4,149.7 L413.8,149.6 L418.2,149.4 L418.2,149.4 L418.4,152.3 L418.6,155.3 L417.3,155.3 L415.7,155.4 L415.3,155.4 L414.2,155.5 L412.8,155.5 L412.5,152.6 Z",IA,19055 2053,19105,0.50,0.50,Jones,"M417.3,155.3 L418.6,155.3 L420.0,155.2 L421.5,155.1 L421.6,157.8 L421.7,159.5 L421.8,160.1 L421.8,160.9 L417.5,161.2 L416.0,161.2 L415.9,160.4 L415.7,155.4 L415.7,155.4 Z",IA,19105 2054,20127,0.50,0.50,Morris,"M353.4,216.4 L353.3,218.6 L353.3,220.1 L351.9,220.1 L347.2,220.0 L345.8,220.0 L345.8,218.6 L345.8,215.2 L346.3,214.2 L348.8,214.2 L351.4,214.2 L352.9,215.0 Z",KS,20127 2055,16015,0.48,0.40,Boise,"M126.7,97.9 L129.3,101.6 L129.0,105.1 L127.3,102.4 L120.3,107.5 L116.0,108.4 L115.9,108.5 L113.1,104.1 L114.5,98.4 L115.2,98.6 L116.8,97.5 L123.7,99.0 Z",ID,16015 2056,37143,0.43,0.47,Perquimans,"M619.4,228.4 L619.6,228.2 L620.7,227.6 L622.1,229.3 L623.5,229.9 L625.1,231.4 L622.1,232.5 L620.0,232.3 Z",NC,37143 2057,13101,0.49,0.45,Echols,"M551.8,338.9 L549.2,339.1 L545.3,339.4 L544.9,336.9 L546.4,335.4 L546.8,335.2 L547.1,335.0 L552.7,336.8 L553.3,338.8 L553.2,338.8 Z",GA,13101 2058,12047,0.97,0.48,Hamilton,"M545.3,339.4 L549.2,339.1 L551.8,338.9 L552.9,342.0 L550.9,343.5 L547.7,342.4 L545.3,343.5 L544.1,342.2 L542.7,339.6 L544.9,339.4 Z",FL,12047 2059,28045,0.50,0.51,Hancock,"M450.3,352.3 L452.2,348.9 L455.1,348.7 L455.3,351.4 L455.5,353.4 L454.0,356.7 L453.0,356.6 L451.6,356.1 Z",MS,28045 2060,13315,0.50,0.46,Wilcox,"M538.9,315.1 L539.8,317.0 L541.2,318.2 L541.5,318.6 L541.8,319.1 L541.3,319.2 L537.5,319.7 L536.6,319.7 L535.6,319.8 L535.4,318.3 L535.2,316.9 L535.2,316.8 L535.0,315.4 L537.5,315.1 Z",GA,13315 2061,22081,0.50,0.44,Red River,"M392.1,325.0 L392.9,325.0 L394.2,325.0 L394.3,325.0 L394.8,325.0 L397.8,324.9 L398.3,326.4 L399.2,329.3 L396.0,330.1 L393.2,327.2 Z",LA,22081 2062,47093,0.51,0.51,Knox,"M519.0,255.1 L519.1,255.0 L517.5,253.7 L517.5,253.6 L517.4,253.5 L518.2,252.0 L521.2,248.3 L521.5,248.6 L524.1,248.3 L524.1,248.3 L524.7,249.2 L525.2,249.6 L524.6,249.6 L525.2,250.3 L525.6,251.4 L523.9,253.0 L521.2,253.5 Z",TN,47093 2063,47089,0.49,0.48,Jefferson,"M525.2,250.3 L524.6,249.6 L525.2,249.6 L525.0,248.9 L527.7,247.7 L530.1,247.9 L531.0,248.7 L530.7,248.8 L530.4,252.0 L528.1,251.9 Z",TN,47089 2064,20209,0.50,0.51,Wyandotte,"M376.1,210.0 L376.1,210.2 L376.2,211.2 L372.7,211.0 L372.2,212.1 L372.3,208.6 L373.9,208.6 L375.1,208.9 L376.2,209.3 L376.2,209.3 L376.4,209.4 Z",KS,20209 2065,13281,0.55,0.54,Towns,"M528.2,270.5 L528.1,270.8 L527.9,270.9 L527.0,271.0 L526.5,271.2 L525.7,269.3 L524.0,268.2 L528.3,267.7 L529.3,267.4 L528.0,269.5 Z",GA,13281 2066,28129,0.50,0.50,Smith,"M447.6,322.6 L448.0,322.6 L453.5,322.2 L453.8,327.1 L454.1,329.3 L453.2,329.4 L452.9,329.5 L451.7,329.6 L449.3,330.0 L448.8,325.5 L447.8,325.6 L447.8,325.6 L447.7,324.1 Z",MS,28129 2067,28061,0.50,0.50,Jasper,"M454.1,329.3 L453.8,327.1 L453.5,322.2 L454.5,322.1 L459.3,321.8 L459.5,323.9 L459.9,328.4 L459.6,328.5 L459.4,328.5 L458.3,328.7 Z",MS,28061 2068,16075,0.41,0.41,Payette,"M112.4,98.0 L108.7,100.0 L108.0,102.9 L106.3,102.7 L105.1,100.9 L106.2,98.8 L107.1,96.7 L109.0,97.2 Z",ID,16075 2069,16079,0.57,0.71,Shoshone,"M127.9,36.7 L129.6,34.0 L131.3,36.0 L133.9,43.2 L134.2,45.3 L136.6,49.6 L139.8,55.9 L132.4,54.3 L124.2,52.5 L124.5,51.4 L124.6,51.1 L124.8,50.2 L126.0,44.6 L126.5,42.7 Z",ID,16079 2070,19067,0.50,0.50,Floyd,"M400.3,140.7 L400.4,142.2 L400.5,145.8 L400.5,145.8 L400.5,145.8 L400.5,145.8 L400.5,145.8 L397.2,145.9 L394.7,146.0 L394.6,143.9 L394.5,140.9 L397.5,140.8 Z",IA,19067 2071,21145,0.44,0.66,McCracken,"M454.5,242.6 L454.4,242.5 L453.3,240.1 L452.5,238.1 L452.4,238.1 L452.6,238.1 L455.2,239.2 L457.6,240.2 L458.4,241.0 L458.8,241.0 L458.8,241.4 L458.9,242.4 L456.0,242.6 Z",KY,21145 2072,21225,0.48,0.55,Union,"M463.7,232.5 L463.5,232.1 L462.7,231.4 L462.2,230.1 L463.7,227.5 L465.3,227.3 L464.9,225.7 L467.4,228.4 L467.9,229.9 L467.0,230.9 L465.5,232.8 L465.5,232.8 L465.5,232.8 L465.5,232.8 L464.3,231.7 Z",KY,21225 2073,21055,0.46,0.43,Crittenden,"M459.9,234.5 L460.9,233.6 L463.7,232.5 L464.3,231.7 L464.6,232.4 L465.5,232.8 L465.5,232.8 L465.5,232.8 L466.0,234.1 L467.4,234.3 L463.8,237.2 L463.7,238.0 L462.5,238.9 L462.5,238.6 L462.0,236.5 Z",KY,21055 2074,46125,0.50,0.50,Turner,"M343.7,143.6 L343.7,142.1 L340.8,142.1 L340.8,140.0 L340.8,136.5 L342.8,136.6 L344.2,136.6 L345.6,136.6 L346.7,136.6 L346.6,140.9 L346.6,143.6 L345.3,143.6 Z",SD,46125 2075,47029,0.41,0.44,Cocke,"M535.9,250.4 L536.0,251.5 L535.4,253.1 L533.8,253.3 L531.6,254.9 L531.2,253.1 L530.4,252.0 L530.7,248.8 L531.0,248.7 L531.1,247.6 L531.7,247.0 L532.7,247.9 Z",TN,47029 2076,47067,0.53,0.54,Hancock,"M533.1,239.8 L534.4,239.6 L535.2,239.5 L532.9,240.4 L529.6,243.7 L528.6,243.4 L528.2,243.6 L527.7,241.6 L526.6,240.7 L529.4,240.3 Z",TN,47067 2077,45089,0.47,0.38,Williamsburg,"M590.5,277.8 L590.5,278.0 L590.6,278.1 L589.6,281.9 L587.1,286.9 L582.4,284.4 L580.6,284.8 L581.3,280.0 L582.6,277.8 L588.2,278.7 Z",SC,45089 2078,45067,0.49,0.51,Marion,"M590.6,278.1 L590.5,278.0 L590.5,277.8 L587.9,276.0 L586.1,271.3 L588.2,269.7 L591.8,269.8 L589.7,275.0 L592.6,279.0 L591.3,279.1 Z",SC,45067 2079,22117,0.52,0.53,Washington,"M447.5,343.3 L448.7,343.2 L449.1,343.2 L448.5,346.1 L447.8,348.9 L445.6,349.1 L441.7,348.6 L440.7,345.6 L440.1,343.8 L440.2,343.8 L441.4,343.7 L441.4,343.7 L445.4,343.4 Z",LA,22117 2080,29207,0.55,0.57,Stoddard,"M436.9,249.2 L436.0,246.9 L435.1,244.4 L435.5,243.7 L437.0,242.3 L439.0,242.0 L440.1,240.7 L440.8,240.6 L441.5,240.6 L442.8,243.8 L442.8,245.0 L442.9,248.9 L439.5,249.1 L437.0,249.2 Z",MO,29207 2081,13093,0.48,0.51,Dooly,"M528.9,315.3 L529.7,313.9 L531.2,313.0 L533.3,312.7 L534.5,312.6 L534.6,312.6 L535.0,315.4 L535.2,316.8 L535.2,316.9 L531.5,317.4 L530.2,317.5 L529.6,316.5 Z",GA,13093 2082,27145,0.14,0.52,Stearns,"M368.3,104.4 L368.2,101.5 L368.1,98.6 L368.1,98.4 L368.1,98.3 L371.4,98.3 L374.0,98.3 L376.1,98.2 L378.4,98.2 L379.1,99.0 L379.9,101.8 L380.0,102.9 L381.2,104.1 L380.7,105.3 L378.7,106.4 L377.2,105.8 L372.7,105.8 L372.7,104.4 Z",MN,27145 2083,27009,0.50,0.50,Benton,"M379.9,101.8 L379.1,99.0 L378.4,98.2 L377.4,97.4 L384.4,97.2 L384.4,98.7 L384.5,101.7 L383.3,101.7 Z",MN,27009 2084,31155,0.50,0.51,Saunders,"M353.8,175.4 L354.0,176.7 L353.9,177.8 L353.5,178.3 L352.1,178.3 L352.1,177.8 L346.5,177.8 L346.5,174.1 L346.6,170.9 L350.8,171.3 L352.0,172.0 L353.5,174.1 Z",NE,31155 2085,27141,0.50,0.51,Sherburne,"M384.5,101.7 L385.9,101.6 L387.5,101.6 L387.5,103.3 L387.5,104.0 L387.6,104.5 L387.6,106.9 L387.6,106.9 L387.5,106.9 L387.5,106.9 L387.5,106.9 L387.5,106.9 L384.7,106.1 L381.2,104.1 L380.0,102.9 L379.9,101.8 L383.3,101.7 Z",MN,27141 2086,47025,0.51,0.54,Claiborne,"M521.2,244.4 L519.8,242.2 L519.7,241.7 L520.0,241.7 L520.5,241.7 L523.7,241.3 L523.9,241.0 L524.6,240.9 L526.6,240.7 L527.7,241.6 L528.2,243.6 L527.2,244.4 L524.6,245.2 L522.5,244.0 Z",TN,47025 2087,48337,0.50,0.50,Montague,"M336.1,297.3 L337.0,297.0 L337.2,297.1 L337.1,302.0 L337.0,305.2 L331.6,305.1 L331.0,305.1 L330.1,305.1 L330.1,304.5 L330.2,300.1 L330.3,297.4 L334.7,295.8 Z",TX,48337 2088,48049,0.51,0.51,Brown,"M313.3,327.4 L315.0,327.4 L316.1,327.5 L318.0,331.0 L319.5,334.0 L317.9,335.4 L314.8,337.5 L314.0,337.3 L313.3,337.8 L312.3,337.7 L311.7,337.6 L311.9,332.9 L312.2,327.3 L312.7,327.4 Z",TX,48049 2089,48333,0.51,0.53,Mills,"M314.8,337.5 L317.9,335.4 L319.5,334.0 L322.1,333.6 L322.5,334.3 L323.1,335.4 L325.1,338.9 L325.2,339.0 L320.8,341.9 L319.0,338.9 Z",TX,48333 2090,55101,0.51,0.48,Racine,"M455.8,143.4 L457.2,143.3 L459.0,143.2 L459.6,144.3 L459.4,146.1 L454.6,146.4 L453.2,147.6 L453.0,145.1 L452.9,143.7 L454.2,143.6 Z",WI,55101 2091,55059,0.49,0.50,Kenosha,"M453.2,147.6 L454.6,146.4 L459.4,146.1 L459.3,146.9 L459.6,149.0 L456.2,149.2 L454.7,149.4 L454.2,149.4 L453.4,149.5 L453.4,149.4 Z",WI,55059 2092,55009,0.51,0.49,Brown,"M451.1,112.8 L451.2,113.0 L454.1,112.6 L455.1,114.6 L456.9,112.6 L457.0,114.8 L457.3,118.3 L456.0,119.8 L454.1,120.0 L452.9,120.1 L452.3,120.1 L451.8,114.4 L451.2,114.4 L451.2,114.4 L451.1,113.2 Z",WI,55009 2093,40103,0.50,0.50,Noble,"M338.2,252.2 L342.1,252.3 L343.7,252.3 L345.7,252.2 L344.3,253.7 L344.0,256.6 L345.4,258.1 L342.5,258.1 L342.5,259.5 L339.6,259.5 L339.6,259.5 L339.6,259.5 L339.6,259.5 L339.6,259.5 L339.6,259.4 L338.1,259.4 L338.2,256.6 Z",OK,40103 2094,40083,0.50,0.50,Logan,"M339.6,259.5 L340.0,262.0 L342.4,263.2 L342.4,263.9 L342.4,266.8 L339.5,266.8 L335.1,266.7 L335.2,262.8 L335.2,259.3 L336.4,259.4 L338.1,259.4 L339.6,259.4 L339.6,259.5 L339.6,259.5 Z",OK,40083 2095,40121,0.04,0.50,Pittsburg,"M356.7,283.0 L356.8,278.2 L358.2,276.5 L361.3,276.1 L365.5,274.1 L365.5,276.4 L367.0,278.1 L364.8,278.6 L364.7,284.4 L364.7,285.9 L362.5,285.9 L359.6,285.9 L356.7,284.4 L356.7,283.9 Z",OK,40121 2096,54017,0.68,0.51,Doddridge,"M556.6,187.7 L557.1,187.6 L557.7,187.9 L557.3,190.3 L557.7,192.3 L557.0,192.9 L556.2,193.8 L556.0,193.8 L555.1,193.7 L553.4,191.3 L553.6,190.9 L555.3,188.9 Z",WV,54017 2097,54087,0.49,0.49,Roane,"M547.3,203.5 L546.8,202.5 L546.7,198.4 L548.9,198.4 L549.6,198.0 L551.6,200.8 L553.0,202.5 L552.5,203.4 L551.8,204.2 L548.2,204.4 Z",WV,54087 2098,54105,0.51,0.61,Wirt,"M549.6,198.0 L548.9,198.4 L546.7,198.4 L546.0,197.7 L545.4,196.7 L547.2,194.6 L548.7,193.5 L549.7,195.9 L550.8,195.8 L549.7,197.6 Z",WV,54105 2099,23017,0.08,0.15,Oxford,"M650.7,65.9 L652.1,65.0 L653.7,65.6 L656.9,74.2 L658.4,72.6 L664.3,76.8 L664.4,81.2 L663.5,84.5 L661.2,82.8 L659.4,84.9 L661.0,89.1 L659.9,89.4 L658.7,90.1 L657.9,87.4 L656.2,82.2 L654.0,75.6 Z",ME,23017 2100,33003,0.38,0.56,Carroll,"M658.7,90.1 L659.9,93.6 L660.2,94.1 L659.3,94.5 L657.8,94.8 L656.5,94.6 L652.5,92.3 L653.8,89.3 L651.8,84.7 L653.6,83.7 L656.2,82.2 L657.9,87.4 Z",NH,33003 2101,54095,0.48,0.47,Tyler,"M551.0,187.1 L551.5,186.5 L552.1,185.8 L553.2,185.7 L556.6,187.7 L555.3,188.9 L553.6,190.9 L552.8,189.4 L551.9,190.2 L551.3,188.3 L550.2,188.7 L550.5,188.0 Z",WV,54095 2102,27079,0.49,0.50,Le Sueur,"M383.1,118.8 L386.1,118.7 L387.8,118.7 L387.9,121.9 L387.9,124.6 L386.3,124.6 L385.0,124.6 L385.0,123.9 L382.0,124.0 L382.9,122.2 L382.9,120.3 L383.4,119.5 Z",MN,27079 2103,53017,0.51,0.43,Douglas,"M84.1,37.5 L83.4,37.3 L83.4,36.6 L81.7,32.7 L84.3,28.3 L88.9,25.8 L97.9,24.9 L98.7,28.4 L98.7,28.4 L98.7,28.4 L95.9,29.0 L90.4,35.3 L86.6,34.4 Z",WA,53017 2104,55133,0.50,0.50,Waukesha,"M451.0,137.9 L452.0,137.9 L455.4,137.6 L455.7,141.9 L455.8,143.4 L454.2,143.6 L452.9,143.7 L452.4,143.7 L450.0,143.9 L449.8,141.2 L449.6,138.0 L449.6,138.0 L450.5,137.9 Z",WI,55133 2105,20151,0.50,0.50,Pratt,"M325.1,237.2 L322.7,237.2 L317.8,237.0 L317.9,234.1 L317.9,232.6 L317.9,232.2 L318.0,231.1 L321.1,231.2 L325.2,231.3 L325.3,231.3 L325.2,232.9 L325.2,234.8 Z",KS,20151 2106,01045,0.52,0.50,Dale,"M504.9,327.7 L505.5,327.6 L505.5,327.6 L507.9,327.3 L510.3,327.0 L510.5,329.0 L510.9,332.1 L510.9,332.1 L507.4,333.3 L506.9,334.6 L506.3,334.7 L505.7,334.7 L505.4,331.8 Z",AL,1045 2107,01069,0.49,0.51,Houston,"M510.9,332.1 L514.3,331.8 L515.6,331.7 L515.7,334.1 L516.9,335.5 L517.2,335.8 L517.5,336.7 L514.0,337.1 L510.5,337.6 L510.1,334.2 L506.9,334.6 L507.4,333.3 L510.9,332.1 Z",AL,1069 2108,01067,0.52,0.50,Henry,"M510.3,327.0 L510.1,325.6 L514.1,324.1 L515.4,326.4 L515.8,328.1 L515.4,330.7 L515.6,331.7 L514.3,331.8 L510.9,332.1 L510.9,332.1 L510.5,329.0 Z",AL,1067 2109,06109,0.52,0.45,Tuolumne,"M45.4,180.0 L48.7,181.2 L49.8,183.0 L52.5,187.9 L52.0,193.8 L51.8,193.6 L51.7,193.0 L48.9,190.2 L43.9,191.3 L42.0,189.6 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L35.7,189.2 L34.7,187.5 L43.2,180.4 Z M37.2,191.7 L37.2,191.7 L37.2,191.7 Z M37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 Z",CA,6109 2110,06039,0.34,0.68,Madera,"M51.7,193.0 L51.8,193.6 L52.0,193.8 L53.9,194.4 L54.6,197.1 L41.0,206.3 L34.6,205.9 L32.6,200.6 L33.7,200.0 L39.5,200.1 L47.2,195.6 Z",CA,6039 2111,29075,0.50,0.50,Gentry,"M375.9,188.7 L379.6,188.7 L380.8,188.7 L380.9,189.9 L380.9,192.8 L380.9,193.0 L380.9,194.5 L379.5,194.5 L375.9,194.6 L375.9,194.6 L375.9,193.1 L375.9,193.1 L375.9,190.2 Z",MO,29075 2112,31009,0.50,0.50,Blaine,"M305.9,159.2 L308.3,159.3 L311.9,159.5 L311.8,162.1 L311.7,165.3 L307.7,165.1 L304.6,165.0 L304.5,164.9 L304.4,164.9 L304.5,162.7 L304.7,159.1 L304.9,159.2 Z",NE,31009 2113,49009,0.11,0.39,Daggett,"M181.0,165.0 L187.3,165.9 L192.9,166.7 L192.5,169.6 L192.1,172.3 L190.6,168.8 L182.0,169.1 L180.8,168.1 L180.6,168.1 L180.5,168.0 L180.7,166.7 Z",UT,49009 2114,37071,0.53,0.52,Gaston,"M559.1,260.1 L558.3,257.4 L556.7,256.1 L562.8,255.4 L563.5,255.3 L563.1,257.6 L563.2,259.6 L562.1,259.7 Z",NC,37071 2115,35019,0.50,0.53,Guadalupe,"M234.4,284.0 L229.6,283.5 L228.6,283.4 L229.3,279.1 L230.1,271.8 L230.4,268.9 L246.3,270.5 L246.2,271.7 L245.9,274.8 L245.6,277.7 L241.0,280.3 L234.8,279.7 Z",NM,35019 2116,30027,0.49,0.50,Fergus,"M211.6,71.7 L209.7,71.4 L207.2,71.1 L202.9,70.4 L202.7,71.4 L199.3,70.9 L198.6,70.8 L199.7,62.5 L195.7,60.4 L195.1,57.8 L199.7,56.3 L200.3,53.5 L203.6,53.6 L210.5,53.7 L210.9,54.8 L212.1,56.4 L217.2,58.2 L216.5,62.7 L211.8,62.8 L212.7,65.9 Z",MT,30027 2117,30037,0.48,0.49,Golden Valley,"M202.7,71.4 L202.9,70.4 L207.2,71.1 L208.0,74.1 L208.4,81.8 L207.3,81.6 L206.7,81.6 L201.0,80.7 L200.8,82.2 L198.6,81.8 L198.5,78.8 L201.4,79.3 Z",MT,30037 2118,37195,0.52,0.61,Wilson,"M601.0,245.0 L599.7,243.1 L603.6,240.2 L604.0,240.4 L604.2,239.8 L604.2,239.8 L604.2,239.8 L605.3,240.3 L607.0,242.5 L606.8,242.7 L606.6,243.0 L605.4,244.4 L605.2,244.5 L602.8,244.9 L602.0,244.9 L601.9,245.1 L601.9,245.1 Z M601.9,245.1 L601.9,245.1 L601.9,245.1 Z M604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 Z",NC,37195 2119,37101,0.58,0.55,Johnston,"M599.7,243.1 L601.0,245.0 L601.9,245.1 L601.9,245.1 L601.9,245.1 L601.5,249.2 L599.7,250.7 L597.2,251.5 L596.4,250.8 L594.2,248.1 L593.5,247.9 L596.2,244.1 L598.6,241.8 L598.8,242.5 Z",NC,37101 2120,06085,0.12,0.06,Santa Clara,"M18.5,199.2 L16.9,196.1 L13.0,190.8 L13.2,188.3 L14.3,188.0 L14.6,188.4 L15.3,188.4 L17.6,188.7 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.0,195.7 L24.2,196.7 L23.4,198.4 L23.5,199.5 L20.1,198.1 Z M22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 Z",CA,6085 2121,17183,0.50,0.50,Vermilion,"M466.6,187.8 L466.9,190.3 L467.0,192.2 L466.0,192.3 L461.8,192.7 L461.3,187.0 L461.1,184.1 L461.1,184.1 L461.0,182.6 L464.6,182.3 L466.2,182.1 L466.2,182.2 L466.2,182.3 L466.5,185.6 L466.6,187.8 Z",IL,17183 2122,29189,0.46,0.47,St. Louis,"M433.4,217.5 L433.4,217.6 L433.4,217.7 L433.1,219.2 L432.5,220.0 L431.5,218.2 L427.2,219.0 L427.1,217.2 L427.1,216.1 L432.5,211.6 L435.0,212.8 L434.9,213.0 L434.4,213.4 L432.5,216.5 Z",MO,29189 2123,06103,0.48,0.53,Tehama,"M16.1,144.7 L16.8,140.1 L16.0,139.2 L23.2,139.5 L36.0,142.4 L37.3,145.1 L35.4,147.4 L29.6,150.3 L26.2,150.9 L16.4,147.9 L15.2,147.5 L15.6,145.7 Z",CA,6103 2124,06021,0.91,0.63,Glenn,"M15.2,147.5 L16.4,147.9 L26.2,150.9 L25.6,155.3 L26.2,158.1 L23.1,157.1 L15.6,154.9 L16.6,151.8 L14.8,151.2 L15.3,149.1 Z",CA,6021 2125,48151,0.50,0.50,Fisher,"M293.9,311.7 L294.2,311.7 L299.3,312.0 L299.1,315.6 L298.9,319.3 L295.0,319.1 L291.6,318.9 L291.7,317.3 L292.0,311.6 L292.5,311.6 Z",TX,48151 2126,22085,0.51,0.39,Sabine,"M392.8,342.9 L391.0,337.3 L389.2,336.1 L389.8,334.1 L388.5,331.7 L392.1,331.6 L394.8,331.6 L396.3,333.7 L398.0,339.6 L395.7,339.7 L393.5,342.7 L393.0,343.1 Z",LA,22085 2127,13235,0.49,0.48,Pulaski,"M535.0,315.4 L534.6,312.6 L534.5,312.6 L535.6,310.5 L535.9,310.5 L535.9,310.5 L535.9,310.5 L538.0,312.1 L538.4,312.3 L539.4,313.8 L538.9,315.1 L537.5,315.1 Z",GA,13235 2128,37015,0.50,0.57,Bertie,"M611.1,231.9 L614.3,231.4 L617.5,230.6 L617.5,232.6 L619.0,235.4 L618.7,236.6 L618.4,236.9 L617.0,238.1 L610.1,235.1 L611.3,234.3 L610.3,233.4 L610.1,232.8 Z",NC,37015 2129,47143,0.56,0.53,Rhea,"M509.0,257.1 L510.5,255.8 L510.7,255.8 L511.4,256.5 L511.6,256.9 L511.1,260.4 L508.3,263.1 L507.6,262.7 L506.6,262.5 L506.8,260.6 Z",TN,47143 2130,37079,0.39,0.51,Greene,"M605.2,244.5 L605.4,244.4 L606.6,243.0 L609.6,245.0 L610.4,246.1 L607.9,248.0 L606.1,247.9 L605.6,247.0 Z",NC,37079 2131,21131,0.35,0.51,Leslie,"M525.7,235.8 L525.7,235.5 L525.3,235.1 L524.4,232.8 L524.7,230.1 L526.6,228.9 L529.5,233.1 L528.6,234.1 Z",KY,21131 2132,17123,0.50,0.47,Marshall,"M438.7,176.2 L438.5,174.1 L438.5,173.3 L439.9,173.2 L440.7,173.1 L442.1,173.8 L444.6,173.6 L446.0,173.5 L446.2,176.5 L445.0,176.5 L440.9,176.9 L441.1,176.0 Z",IL,17123 2133,48081,0.50,0.50,Coke,"M288.9,326.2 L290.1,326.3 L291.1,326.3 L296.0,326.6 L297.3,326.7 L297.2,328.1 L297.0,333.2 L294.6,333.1 L288.5,332.8 L288.8,327.7 L288.9,326.2 Z",TX,48081 2134,47133,0.54,0.47,Overton,"M499.9,247.3 L500.5,245.6 L502.5,244.9 L503.9,245.4 L504.9,246.7 L505.9,250.1 L505.5,251.0 L501.2,250.0 L500.1,249.0 L499.9,247.9 Z",TN,47133 2135,26063,0.45,0.46,Huron,"M514.6,122.6 L510.4,123.3 L510.2,122.3 L512.4,117.6 L516.0,115.7 L519.2,117.8 L520.7,121.5 L517.5,122.1 Z",MI,26063 2136,26129,0.50,0.50,Ogemaw,"M497.7,110.8 L498.6,110.7 L503.4,110.0 L503.9,113.1 L504.3,115.8 L502.1,116.0 L500.9,116.2 L499.9,116.3 L498.4,116.6 L498.1,113.7 Z",MI,26129 2137,26069,0.54,0.50,Iosco,"M504.3,115.8 L503.9,113.1 L503.4,110.0 L506.6,109.5 L510.2,109.0 L510.4,111.4 L508.1,115.2 L506.0,115.5 Z",MI,26069 2138,13069,0.50,0.50,Coffee,"M543.3,326.1 L543.3,325.8 L543.1,325.3 L544.0,322.8 L544.7,321.6 L544.6,320.7 L544.5,319.8 L546.4,319.5 L546.7,318.9 L547.0,321.3 L550.0,320.8 L550.3,322.7 L551.0,324.2 L550.5,324.2 L550.8,326.0 L547.6,325.8 Z",GA,13069 2139,13299,0.34,0.20,Ware,"M550.8,326.0 L550.5,324.2 L551.0,324.2 L552.4,324.0 L553.7,324.6 L554.5,326.7 L556.1,327.6 L557.5,329.7 L558.8,330.8 L554.7,331.4 L555.2,335.0 L559.1,334.6 L558.7,338.4 L557.8,338.4 L555.7,338.6 L553.8,332.4 L550.6,329.1 L550.0,327.6 Z",GA,13299 2140,38037,0.09,0.48,Grant,"M287.5,91.3 L287.6,90.6 L287.7,88.8 L287.2,87.4 L287.0,81.5 L287.1,80.6 L287.1,80.1 L296.3,82.1 L296.0,86.5 L299.1,88.1 L293.5,92.1 Z",ND,38037 2141,22103,0.50,0.45,St. Tammany,"M441.7,348.6 L445.6,349.1 L447.8,348.9 L449.1,351.4 L450.3,352.3 L451.6,356.1 L453.0,356.6 L446.4,355.8 L442.3,354.2 L442.0,350.8 Z M449.9,357.1 L449.9,357.1 L449.9,357.1 L449.9,357.1 Z",LA,22103 2142,39057,0.50,0.47,Greene,"M517.3,192.1 L514.8,192.2 L513.3,192.3 L513.0,192.3 L511.5,192.4 L511.2,188.0 L511.7,187.7 L514.6,187.8 L517.1,188.3 L517.1,188.5 L517.1,189.3 L517.2,190.6 Z",OH,39057 2143,27137,0.49,0.35,St. Louis,"M406.7,77.3 L403.3,80.0 L403.4,80.9 L402.3,81.5 L401.4,82.7 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.0,80.8 L392.1,81.1 L392.1,78.0 L392.1,76.7 L391.6,64.9 L391.3,62.0 L391.0,59.0 L390.8,49.6 L397.7,52.6 L399.2,56.1 L402.8,54.0 L405.7,56.4 L406.3,67.3 Z M401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 Z M403.9,81.4 L404.2,81.5 L404.4,81.6 L404.3,81.6 Z",MN,27137 2144,39043,0.50,0.50,Erie,"M529.5,158.3 L529.7,159.6 L530.0,160.9 L526.0,161.4 L523.7,161.7 L523.3,159.4 L521.9,159.3 L526.1,158.6 Z",OH,39043 2145,39093,0.53,0.49,Lorain,"M530.0,160.9 L529.7,159.6 L529.5,158.3 L533.1,156.6 L534.1,156.5 L534.4,159.1 L535.8,160.1 L532.5,163.0 L532.7,164.2 L531.0,164.4 L530.6,164.5 L530.2,162.3 Z",OH,39093 2146,19015,0.50,0.50,Boone,"M386.8,163.8 L385.8,163.8 L385.4,163.8 L383.1,163.9 L381.0,163.9 L381.0,163.2 L380.9,158.1 L382.5,158.1 L383.8,158.0 L384.0,158.0 L386.7,158.0 L386.8,161.1 Z",IA,19015 2147,48373,0.49,0.51,Polk,"M376.5,354.8 L375.9,354.8 L374.8,354.8 L372.2,353.4 L369.6,349.2 L373.4,345.5 L374.8,343.8 L374.8,343.8 L374.8,343.8 L376.3,344.5 L378.9,345.2 L377.5,346.0 L379.2,354.2 L379.4,354.8 Z",TX,48373 2148,46027,0.50,0.50,Clay,"M343.7,143.6 L345.3,143.6 L346.6,143.6 L347.3,143.6 L348.1,143.6 L348.0,146.3 L348.0,150.0 L346.7,149.5 L345.4,149.0 L344.0,148.8 L343.6,148.3 L343.7,146.7 Z",SD,46027 2149,31051,0.50,0.50,Dixon,"M345.4,149.0 L346.7,149.5 L348.0,150.0 L349.4,151.0 L350.1,153.0 L349.0,153.0 L348.9,157.1 L348.9,157.4 L347.7,157.4 L345.3,157.3 L345.3,155.9 L345.4,150.2 Z",NE,31051 2150,31043,0.51,0.50,Dakota,"M348.9,157.1 L349.0,153.0 L350.1,153.0 L351.1,153.1 L352.4,153.6 L352.4,153.6 L352.4,153.6 L352.4,153.6 L352.4,153.6 L353.2,154.3 L353.5,157.2 L353.5,157.2 L353.5,157.2 L351.1,157.2 Z",NE,31043 2151,46127,0.50,0.03,Union,"M350.1,153.0 L349.4,151.0 L348.0,150.0 L348.0,146.3 L348.1,143.6 L349.1,143.6 L352.4,143.6 L351.7,144.2 L351.3,146.6 L350.1,149.4 L351.8,152.4 L351.9,153.2 L352.4,153.6 L352.4,153.6 L351.1,153.1 Z M352.4,153.6 L352.4,153.6 L352.4,153.6 Z",SD,46127 2152,45037,0.36,0.37,Edgefield,"M552.4,281.7 L552.8,281.5 L552.9,281.5 L555.6,282.7 L558.3,283.1 L555.4,286.8 L554.0,288.6 L554.0,288.6 L554.0,288.6 L553.9,288.6 L553.7,288.4 L553.4,288.1 L552.4,287.7 L551.0,282.3 Z",SC,45037 2153,51133,0.59,0.39,Northumberland,"M613.8,200.8 L613.9,200.9 L614.1,200.9 L614.7,200.9 L614.8,201.0 L614.7,201.1 L615.2,201.3 L615.5,201.5 L616.5,201.7 L616.5,201.7 L616.5,201.7 L616.5,201.7 L616.6,201.7 L616.6,201.7 L616.6,201.7 L616.6,201.7 L616.6,201.7 L618.0,202.2 L618.2,203.4 L617.7,205.9 L616.0,203.9 L614.8,203.9 L613.8,202.5 L612.7,202.1 L612.8,201.5 Z",VA,51133 2154,55015,0.50,0.52,Calumet,"M449.7,120.3 L451.4,120.2 L452.3,120.1 L452.9,120.1 L454.1,120.0 L454.2,121.5 L454.6,125.8 L454.3,125.9 L453.2,126.0 L453.1,125.2 L450.2,125.4 L449.9,122.7 Z",WI,55015 2155,26067,0.50,0.50,Ionia,"M495.0,134.6 L495.3,137.6 L495.7,140.4 L494.2,140.6 L492.8,140.8 L491.2,141.0 L489.9,141.2 L489.7,139.7 L489.1,135.3 L492.0,135.0 Z",MI,26067 2156,47095,0.52,0.50,Lake,"M447.9,250.6 L447.8,252.2 L446.4,255.6 L446.3,256.0 L444.4,256.2 L445.6,255.0 L445.4,253.6 L445.8,252.9 L445.3,250.9 L445.6,250.8 L446.0,250.8 L446.5,251.4 L446.9,250.7 L447.3,250.7 Z",TN,47095 2157,47131,0.50,0.50,Obion,"M446.4,255.6 L447.8,252.2 L447.9,250.6 L448.5,250.5 L454.8,250.1 L454.8,250.1 L454.9,250.1 L453.3,251.8 L453.4,254.9 L453.4,255.2 L450.8,255.4 L449.6,255.4 Z",TN,47131 2158,21105,0.50,0.52,Hickman,"M454.9,250.1 L454.8,250.1 L454.8,250.1 L453.7,248.9 L450.0,248.0 L449.6,246.8 L450.5,245.7 L451.3,245.8 L454.7,245.5 L454.8,247.0 L455.0,250.1 L454.9,250.1 Z",KY,21105 2159,21035,0.50,0.49,Calloway,"M459.4,249.7 L459.3,248.3 L459.1,245.6 L462.3,245.3 L464.2,245.2 L464.6,245.7 L464.8,246.3 L465.5,248.6 L465.3,249.3 L463.5,249.4 Z",KY,21035 2160,51015,0.51,0.54,Augusta,"M575.3,207.6 L575.6,206.2 L574.6,206.1 L575.5,205.3 L576.5,201.8 L577.0,201.2 L577.4,200.5 L582.0,202.6 L584.4,203.8 L584.4,205.9 L583.8,206.6 L582.1,209.8 L580.1,210.0 L579.7,209.7 Z M582.3,206.6 L582.8,207.1 L583.4,206.9 L583.3,206.0 Z M580.4,205.9 L581.1,205.7 L581.1,204.9 L580.0,205.0 Z",VA,51015 2161,51003,0.44,0.52,Albemarle,"M583.8,206.6 L584.4,205.9 L584.4,203.8 L585.5,202.7 L585.3,202.4 L586.4,202.7 L589.4,203.2 L591.1,203.5 L591.7,203.6 L591.3,204.9 L590.8,206.0 L589.8,208.4 L589.1,209.9 L589.0,210.6 L587.3,211.3 L587.3,211.3 L587.3,211.3 L587.3,211.3 L586.7,211.3 L586.5,210.4 Z M588.0,206.3 L588.7,206.3 L588.8,205.5 L588.3,205.4 Z",VA,51003 2162,51029,0.56,0.44,Buckingham,"M590.9,217.3 L590.3,217.6 L589.0,216.7 L587.4,216.0 L585.5,214.7 L586.4,213.2 L587.3,211.3 L587.3,211.3 L587.3,211.3 L589.0,210.6 L589.1,209.9 L590.4,210.7 L592.7,211.0 L592.8,211.9 Z",VA,51029 2163,47147,0.53,0.54,Robertson,"M478.4,245.6 L480.6,245.3 L482.4,245.1 L484.7,244.8 L485.1,245.1 L483.7,249.0 L482.9,249.2 L482.1,250.2 L480.8,249.8 L480.8,249.8 L479.8,250.1 L477.9,248.8 L477.8,247.2 L477.7,245.7 L478.3,245.6 Z",TN,47147 2164,51043,0.49,0.53,Clarke,"M592.0,188.6 L591.7,188.9 L591.6,189.2 L590.7,188.7 L589.5,188.7 L589.9,187.4 L590.2,184.6 L591.4,185.2 L593.3,186.3 L593.0,187.2 Z",VA,51043 2165,21109,0.46,0.50,Jackson,"M516.2,225.7 L517.8,225.2 L518.7,225.8 L518.9,225.9 L519.0,226.1 L519.7,227.2 L520.7,228.8 L519.8,229.6 L518.9,230.7 L518.0,230.7 L516.1,229.9 L516.2,229.2 L514.9,226.6 L514.9,226.6 L515.2,226.0 Z",KY,21109 2166,45073,0.64,0.47,Oconee,"M532.9,272.1 L532.6,272.0 L532.6,271.7 L533.7,268.8 L535.3,266.5 L535.3,266.5 L535.3,266.5 L535.9,266.1 L536.6,265.8 L537.1,265.6 L538.0,265.1 L538.7,270.3 L539.8,272.2 L539.8,272.3 L539.8,272.3 L539.5,272.4 L539.7,272.5 L538.8,273.8 L538.1,274.9 L538.1,275.0 L537.2,274.8 L536.7,274.5 L536.4,274.2 L535.3,273.1 Z",SC,45073 2167,22033,0.54,0.52,East Baton Rouge,"M431.0,355.8 L430.8,355.9 L429.2,355.9 L428.2,352.8 L426.6,350.5 L427.2,349.5 L433.1,348.9 L432.8,349.4 L432.3,350.2 L431.3,353.4 L432.8,355.3 L431.6,355.3 Z",LA,22033 2168,26081,0.50,0.50,Kent,"M484.1,141.9 L483.8,139.4 L483.1,134.6 L483.0,133.6 L483.0,133.1 L484.6,132.9 L485.8,132.8 L488.8,132.4 L489.1,135.3 L489.7,139.7 L489.9,141.2 L487.9,141.4 L487.0,141.5 L486.2,141.6 Z",MI,26081 2169,37147,0.59,0.49,Pitt,"M614.2,245.4 L613.6,246.7 L611.8,247.3 L611.3,247.2 L610.4,246.1 L609.6,245.0 L606.6,243.0 L606.8,242.7 L607.0,242.5 L610.1,239.2 L610.7,239.3 L612.1,239.6 L613.4,240.2 L615.2,242.9 Z",NC,37147 2170,30009,0.49,0.85,Carbon,"M212.0,101.6 L211.7,101.5 L207.6,101.0 L201.9,100.1 L193.7,98.9 L193.8,98.3 L194.1,96.1 L197.4,93.3 L205.3,90.4 L206.4,90.4 L206.4,90.4 L206.4,90.4 L206.8,91.5 L208.4,93.2 L207.2,97.2 L213.9,98.1 Z",MT,30009 2171,30111,0.50,0.56,Yellowstone,"M206.7,81.6 L207.3,81.6 L208.4,81.8 L212.8,82.4 L217.4,80.8 L220.8,77.3 L221.1,77.3 L221.3,77.6 L223.8,83.1 L223.0,85.3 L216.4,86.9 L215.3,93.2 L208.4,93.2 L206.8,91.5 L206.4,90.4 L206.4,90.4 L206.4,90.4 L206.4,90.4 L205.9,89.1 Z",MT,30111 2172,31039,0.50,0.50,Cuming,"M345.2,166.1 L345.2,162.9 L345.2,160.2 L346.7,160.3 L347.7,160.3 L351.0,160.3 L351.0,161.6 L351.0,161.8 L351.0,166.1 L349.0,166.1 L346.6,166.1 L345.8,166.1 Z",NE,31039 2173,13001,0.52,0.50,Appling,"M552.1,315.5 L553.8,315.9 L555.2,316.0 L556.4,316.0 L557.9,317.0 L556.8,318.1 L557.6,323.1 L557.3,323.2 L556.1,322.3 L554.1,321.1 L551.4,320.0 L552.4,317.7 Z",GA,13001 2174,19099,0.50,0.50,Jasper,"M391.2,163.6 L391.8,163.6 L392.7,163.6 L396.4,163.5 L398.5,163.4 L398.7,167.8 L398.8,169.3 L398.3,169.4 L397.4,169.4 L395.3,169.5 L391.6,169.6 L391.3,168.0 Z",IA,19099 2175,28153,0.47,0.52,Wayne,"M459.4,328.5 L459.6,328.5 L459.9,328.4 L463.9,327.6 L466.0,326.8 L466.3,328.6 L466.4,330.1 L466.4,330.1 L466.6,331.4 L467.0,334.5 L465.7,334.6 L461.4,334.9 L460.6,335.0 L459.9,335.1 L459.8,333.9 Z",MS,28153 2176,28023,0.54,0.50,Clarke,"M466.0,326.8 L463.9,327.6 L459.9,328.4 L459.5,323.9 L459.3,321.8 L460.8,321.6 L466.2,321.1 L466.1,325.8 Z",MS,28023 2177,48155,0.51,0.50,Foard,"M309.0,298.8 L306.2,297.7 L302.0,297.4 L301.9,297.4 L301.3,297.3 L301.6,290.7 L302.3,290.9 L305.3,293.2 L309.5,293.5 L309.3,297.0 L309.3,297.7 L309.3,298.6 L309.2,299.4 L309.2,299.4 Z M309.2,299.4 L309.2,299.4 L309.2,299.4 Z",TX,48155 2178,48275,0.50,0.50,Knox,"M309.0,298.8 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.2,300.4 L309.1,305.0 L305.2,304.9 L301.7,304.7 L301.8,303.1 L302.0,297.4 L306.2,297.7 Z",TX,48275 2179,12105,0.20,0.52,Polk,"M582.3,384.9 L580.7,385.1 L576.0,385.8 L572.8,386.3 L568.6,387.0 L567.2,378.2 L566.5,378.3 L566.3,376.8 L566.9,375.8 L568.3,375.6 L568.2,375.0 L570.7,374.6 L572.7,374.3 L577.2,379.5 Z",FL,12105 2180,12097,0.84,0.49,Osceola,"M582.3,384.9 L577.2,379.5 L572.7,374.3 L580.6,373.0 L584.5,372.3 L585.2,376.7 L585.9,381.2 L585.7,381.2 L586.3,384.2 L586.3,384.2 L583.4,384.7 Z",FL,12097 2181,01087,0.48,0.49,Macon,"M504.4,311.1 L507.5,312.5 L508.5,313.8 L508.7,315.4 L508.8,316.7 L502.8,317.5 L501.9,316.9 L500.7,316.0 L500.1,314.6 L501.9,313.9 L501.9,313.2 L503.0,311.5 Z",AL,1087 2182,01123,0.45,0.07,Tallapoosa,"M504.4,311.1 L503.0,311.5 L501.9,313.2 L501.5,308.8 L499.7,309.0 L499.6,307.8 L499.1,303.4 L499.5,303.1 L504.0,302.5 L504.4,302.5 L504.9,302.4 L505.4,307.0 L505.6,308.8 L504.2,309.4 Z",AL,1123 2183,41003,0.50,0.47,Benton,"M36.9,67.8 L34.8,70.1 L34.3,74.7 L29.6,73.3 L27.5,72.6 L30.3,70.8 L31.7,66.2 L35.2,67.3 Z",OR,41003 2184,41043,0.49,0.48,Linn,"M34.3,74.7 L34.8,70.1 L36.9,67.8 L37.2,67.6 L37.1,67.4 L41.2,67.9 L52.3,73.1 L51.3,75.7 L50.4,77.6 L49.9,79.4 L50.2,79.9 L37.1,77.0 Z",OR,41043 2185,41017,0.38,0.42,Deschutes,"M50.2,79.9 L49.9,79.4 L50.4,77.6 L57.5,79.7 L58.9,80.1 L58.3,87.5 L65.0,90.9 L65.7,94.1 L69.9,95.2 L69.6,96.4 L69.5,96.7 L63.9,95.0 L52.7,91.9 L50.2,91.2 L44.8,89.6 L46.3,85.8 L49.8,82.6 Z",OR,41017 2186,19155,0.50,0.50,Pottawattamie,"M358.9,175.4 L359.4,173.3 L358.8,172.1 L358.9,170.9 L358.0,170.1 L363.2,170.1 L364.3,170.1 L367.4,170.1 L368.6,170.1 L368.6,172.0 L368.7,175.9 L367.2,175.9 L365.8,175.9 L359.6,175.9 L359.5,175.9 L359.7,175.4 Z",IA,19155 2187,19145,0.50,0.50,Page,"M368.0,180.2 L371.6,180.2 L371.6,183.1 L371.8,185.6 L370.9,185.6 L368.2,185.6 L367.6,185.6 L366.0,185.6 L366.0,185.6 L366.0,185.6 L366.0,185.6 L365.8,183.1 L365.8,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 L365.8,180.2 Z",IA,19145 2188,29229,0.50,0.50,Wright,"M402.2,236.7 L404.8,236.7 L408.0,236.6 L408.1,240.3 L408.3,243.5 L404.9,243.6 L402.4,243.6 L402.2,240.3 Z",MO,29229 2189,36107,0.47,0.49,Tioga,"M598.5,131.3 L602.0,130.2 L601.6,128.4 L601.6,128.4 L603.0,128.1 L604.3,130.9 L604.8,134.7 L604.6,134.8 L604.4,134.8 L600.7,135.6 L599.3,135.9 L599.3,135.0 Z",NY,36107 2190,48287,0.51,0.42,Lee,"M338.4,356.3 L339.7,355.9 L341.1,355.4 L342.3,354.7 L343.9,353.7 L347.1,357.8 L348.6,358.2 L347.2,359.1 L346.3,360.5 L343.0,362.6 L342.9,362.3 L342.1,358.8 Z",TX,48287 2191,13121,0.55,0.57,Fulton,"M521.5,286.0 L520.5,286.0 L521.2,291.3 L519.7,291.5 L519.9,293.1 L518.0,293.9 L517.9,294.2 L517.7,294.1 L514.5,294.4 L514.7,293.8 L514.9,293.3 L516.9,291.2 L517.8,290.1 L520.1,286.1 L519.3,284.3 L520.3,282.3 L521.3,282.2 L521.5,283.4 L523.8,284.1 L522.8,285.2 Z",GA,13121 2192,48073,0.51,0.49,Cherokee,"M366.2,328.0 L365.8,327.6 L365.7,327.2 L367.7,327.2 L372.5,327.1 L372.6,332.0 L373.3,332.0 L373.1,335.4 L374.4,337.3 L372.6,338.9 L372.4,339.1 L369.9,336.4 L368.5,336.3 L366.7,333.4 Z",TX,48073 2193,29007,0.90,0.46,Audrain,"M408.7,209.9 L408.7,207.0 L405.9,207.0 L405.9,206.9 L405.9,205.3 L405.9,205.3 L408.8,205.3 L413.6,205.1 L413.6,205.3 L417.3,205.3 L417.4,206.2 L417.8,208.2 L414.9,208.2 L414.9,209.7 L411.7,209.8 Z",MO,29007 2194,45029,0.18,0.25,Colleton,"M571.9,291.7 L571.9,291.7 L572.0,291.7 L578.0,293.2 L578.3,296.1 L578.0,298.4 L579.8,301.6 L579.3,302.4 L577.1,301.4 L575.1,299.9 L572.8,299.6 L571.4,297.7 L568.3,294.9 L570.1,293.3 Z M581.4,301.1 L580.4,302.1 L580.1,301.9 L580.9,301.2 Z",SC,45029 2195,05055,0.50,0.49,Greene,"M428.5,257.8 L428.4,256.7 L428.4,255.8 L435.0,255.6 L436.8,256.4 L435.2,258.4 L434.5,260.0 L434.4,260.5 L428.1,260.9 L428.4,259.0 Z",AR,5055 2196,48191,0.50,0.50,Hall,"M295.1,281.7 L296.3,281.8 L296.9,281.8 L296.7,286.0 L296.5,289.1 L295.4,289.0 L295.1,289.0 L293.6,289.0 L289.1,288.7 L289.3,286.0 L289.6,281.4 L291.7,281.5 Z",TX,48191 2197,55013,0.95,0.48,Burnett,"M394.8,99.9 L395.0,98.7 L395.3,98.5 L397.6,95.0 L401.5,91.0 L403.0,91.0 L404.3,90.9 L404.7,93.8 L404.9,99.6 L404.3,99.6 L403.5,99.7 L399.0,98.4 Z",WI,55013 2198,55129,0.50,0.50,Washburn,"M404.9,99.6 L404.7,93.8 L404.3,90.9 L410.1,90.6 L410.2,90.6 L410.4,93.6 L410.7,99.4 L410.7,99.4 L409.1,99.4 Z",WI,55129 2199,37141,0.48,0.54,Pender,"M610.6,265.3 L609.2,264.1 L606.5,265.6 L604.9,265.3 L604.6,265.6 L604.1,265.7 L603.2,265.1 L604.1,263.8 L602.7,262.6 L603.7,260.3 L604.1,259.4 L605.7,259.2 L610.0,258.3 L612.2,262.0 L612.7,262.1 L611.3,263.9 Z M613.0,262.3 L612.0,263.7 L612.9,262.3 L613.0,262.3 Z",NC,37141 2200,37061,0.53,0.47,Duplin,"M610.0,258.3 L605.7,259.2 L604.1,259.4 L603.1,256.6 L601.9,251.9 L605.7,251.9 L606.4,251.2 L607.4,251.5 L608.3,253.7 L609.1,254.0 L609.2,254.1 L609.7,254.9 Z",NC,37061 2201,48221,0.50,0.51,Hood,"M334.9,319.9 L334.9,321.3 L334.9,323.9 L332.5,323.9 L330.1,325.2 L329.4,323.1 L328.5,320.5 L328.5,319.9 L328.5,319.7 L329.7,319.8 Z",TX,48221 2202,46119,0.87,0.53,Sully,"M303.5,117.7 L302.2,117.0 L301.4,113.8 L303.5,114.1 L305.3,111.9 L306.7,111.9 L314.0,112.3 L314.0,113.3 L313.7,118.1 L308.0,117.9 Z",SD,46119 2203,32031,0.21,0.69,Washoe,"M62.2,157.3 L61.6,160.5 L61.1,163.1 L60.3,162.9 L59.8,163.3 L54.2,163.6 L52.9,167.9 L50.4,168.7 L48.8,168.2 L49.3,166.5 L49.5,165.8 L49.7,164.9 L50.0,163.7 L50.8,161.1 L51.3,159.3 L54.2,148.7 L57.7,135.6 L59.6,128.6 L61.3,122.5 L62.6,122.8 L69.0,124.6 L69.2,124.6 L69.4,124.7 L64.9,141.4 L65.2,141.5 L60.7,157.0 Z",NV,32031 2204,21007,0.40,0.57,Ballard,"M452.5,238.1 L453.3,240.1 L454.4,242.5 L452.1,243.3 L450.6,243.0 L450.6,242.6 L450.1,242.4 L449.5,241.9 L449.5,241.0 L451.2,238.5 Z",KY,21007 2205,48009,0.51,0.50,Archer,"M316.6,298.0 L318.2,298.0 L324.0,298.2 L323.9,301.8 L323.9,304.4 L323.9,304.9 L323.9,305.5 L319.2,305.4 L316.4,305.3 L316.5,301.7 Z",TX,48009 2206,48503,0.50,0.50,Young,"M323.9,305.5 L323.8,307.7 L323.6,312.1 L323.6,313.0 L321.5,312.9 L319.0,312.8 L316.2,312.7 L316.3,305.8 L316.4,305.3 L319.2,305.4 Z",TX,48503 2207,48023,0.50,0.50,Baylor,"M309.1,305.0 L309.2,300.4 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.2,299.4 L309.3,298.6 L309.3,297.7 L312.9,297.8 L316.6,298.0 L316.5,301.7 L316.4,305.3 L313.9,305.2 Z",TX,48023 2208,48405,0.44,0.51,San Augustine,"M381.1,335.1 L385.5,335.6 L387.1,336.4 L386.3,339.1 L386.4,343.8 L386.3,344.1 L385.1,344.4 L383.7,343.1 L382.2,342.3 L382.4,336.2 Z",TX,48405 2209,32029,0.50,0.50,Storey,"M59.8,163.3 L56.2,167.2 L52.9,167.9 L54.2,163.6 Z",NV,32029 2210,09001,0.54,0.47,Fairfield,"M638.1,135.0 L637.8,133.4 L637.7,132.6 L639.3,135.3 L641.0,135.2 L644.7,137.4 L644.8,139.5 L643.8,139.6 L638.8,144.2 L640.0,139.9 L638.6,137.6 L638.4,136.3 Z",CT,9001 2211,06009,0.16,0.54,Calaveras,"M45.1,178.6 L44.8,179.6 L45.4,180.0 L43.2,180.4 L34.7,187.5 L33.8,185.7 L32.3,182.6 L32.2,182.4 L32.1,179.9 L40.5,178.0 Z",CA,6009 2212,06077,0.53,0.54,San Joaquin,"M32.1,179.9 L32.2,182.4 L32.3,182.6 L30.8,188.1 L27.0,187.7 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L21.8,188.9 L23.1,184.5 L23.6,182.6 L23.7,180.9 L24.1,180.4 L24.2,179.9 L26.2,177.7 L32.0,178.6 L32.1,179.5 Z M22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 Z",CA,6077 2213,28159,0.49,0.50,Winston,"M459.8,309.9 L459.2,309.9 L458.4,310.0 L456.9,310.0 L452.6,310.3 L452.6,309.4 L452.4,307.3 L453.8,305.8 L455.4,304.1 L457.4,304.0 L459.3,303.8 L459.6,307.0 Z",MS,28159 2214,21167,0.46,0.48,Mercer,"M507.4,221.8 L507.3,222.3 L507.4,222.6 L507.8,223.5 L507.3,224.4 L506.5,224.6 L503.6,225.4 L503.6,222.4 L503.1,221.9 L504.3,220.7 L506.1,220.2 L505.8,221.1 Z",KY,21167 2215,31183,0.50,0.50,Wheeler,"M323.5,159.8 L328.2,160.0 L329.2,160.0 L329.3,160.0 L329.2,162.9 L329.2,164.6 L329.2,165.8 L325.7,165.7 L323.4,165.7 L323.3,165.7 L323.4,162.2 Z",NE,31183 2216,21135,0.56,0.55,Lewis,"M524.6,206.8 L526.3,206.3 L527.4,204.6 L527.2,206.8 L526.2,208.5 L525.8,211.3 L524.4,211.9 L523.2,210.7 L522.8,211.0 L521.0,210.5 L520.0,209.0 L520.0,207.5 L519.7,207.2 L521.1,205.8 Z",KY,21135 2217,27149,0.50,0.50,Stevens,"M360.8,101.6 L361.0,104.5 L358.8,104.5 L356.6,104.5 L355.1,104.5 L355.0,101.6 L355.0,100.1 L355.0,98.6 L357.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.7 Z",MN,27149 2218,28053,0.52,0.50,Humphreys,"M437.8,310.0 L436.6,311.5 L433.7,311.7 L433.5,308.8 L432.9,308.8 L433.1,307.1 L432.5,305.9 L434.8,305.8 L436.2,304.7 L437.4,306.1 L437.9,305.1 L438.1,307.8 Z",MS,28053 2219,28051,0.42,0.52,Holmes,"M437.8,310.0 L438.1,307.8 L437.9,305.1 L438.0,303.8 L440.1,304.4 L444.4,305.6 L446.2,306.0 L444.5,310.9 L443.5,311.8 L438.1,310.0 Z",MS,28051 2220,20017,0.50,0.50,Chase,"M347.2,220.0 L351.9,220.1 L353.3,220.1 L353.3,224.5 L353.3,225.9 L353.2,227.4 L351.1,227.4 L349.5,227.3 L346.9,227.3 L346.9,222.9 Z",KS,20017 2221,21143,0.38,0.49,Lyon,"M462.5,238.6 L462.5,238.9 L463.7,238.0 L464.5,238.0 L467.0,241.4 L465.4,242.3 L463.4,243.2 L462.8,242.1 L462.1,241.4 L462.1,239.7 Z",KY,21143 2222,21033,0.62,0.55,Caldwell,"M467.0,241.4 L464.5,238.0 L463.7,238.0 L463.8,237.2 L467.4,234.3 L467.0,234.7 L467.2,234.8 L467.5,236.6 L469.3,238.0 L469.1,240.1 L468.8,240.5 L468.5,241.0 Z",KY,21033 2223,21221,0.50,0.50,Trigg,"M463.4,243.2 L465.4,242.3 L467.0,241.4 L468.5,241.0 L468.8,240.5 L469.9,241.0 L469.9,246.5 L467.8,246.3 L464.8,246.3 L464.6,245.7 L464.2,245.2 L463.8,244.2 Z",KY,21221 2224,46003,0.50,0.50,Aurora,"M323.9,128.8 L326.9,128.9 L329.7,128.9 L329.6,130.4 L329.7,130.4 L329.6,135.0 L329.6,136.3 L327.8,136.3 L324.9,136.2 L324.8,136.2 L323.8,136.2 L324.0,130.3 Z",SD,46003 2225,31061,0.50,0.50,Franklin,"M317.3,188.8 L321.5,188.9 L323.0,189.0 L323.0,191.1 L322.9,194.8 L318.7,194.6 L318.5,194.6 L317.9,194.6 L317.1,194.6 L317.2,191.6 Z",NE,31061 2226,20037,0.50,0.50,Crawford,"M370.1,234.2 L370.8,234.2 L376.4,234.2 L376.4,234.2 L376.4,234.5 L376.4,237.1 L376.5,239.3 L376.5,239.3 L376.5,239.7 L376.5,239.8 L372.6,239.8 L370.3,239.8 L370.3,239.1 L370.2,239.1 L370.1,237.1 Z",KS,20037 2227,27023,0.50,0.50,Chippewa,"M367.0,108.8 L367.0,111.8 L367.0,113.2 L364.2,113.3 L364.2,115.6 L364.0,115.0 L361.1,112.5 L358.2,109.8 L357.5,108.9 L362.8,108.9 Z",MN,27023 2228,45049,0.43,0.60,Hampton,"M568.3,294.9 L571.4,297.7 L572.8,299.6 L572.6,299.7 L572.3,300.5 L570.0,299.3 L566.8,303.2 L565.7,303.1 L565.2,302.8 L564.4,301.1 L564.6,300.3 L566.4,296.7 Z",SC,45049 2229,45013,0.51,0.26,Beaufort,"M572.3,300.5 L572.6,299.7 L572.8,299.6 L575.1,299.9 L577.1,301.4 L579.2,303.6 L576.7,306.5 L573.1,302.4 L573.0,301.5 Z M573.5,303.7 L576.2,307.4 L573.8,310.1 L571.4,307.7 Z",SC,45013 2230,16043,0.86,0.44,Fremont,"M164.8,112.5 L162.8,111.3 L163.1,109.9 L167.0,108.4 L170.9,102.9 L172.2,102.9 L173.1,100.5 L173.8,100.6 L174.3,100.0 L175.6,103.2 L177.5,105.3 L177.1,107.3 L176.1,113.4 L174.3,114.0 L171.7,113.7 L169.7,114.1 Z",ID,16043 2231,51053,0.52,0.49,Dinwiddie,"M606.1,220.2 L605.4,220.9 L603.6,222.7 L603.3,222.8 L603.0,222.5 L601.3,221.5 L599.6,221.6 L599.0,219.1 L600.2,218.0 L600.8,217.9 L601.8,216.4 L603.2,216.8 L604.6,216.6 L604.8,217.1 L605.5,217.3 L606.0,219.5 Z",VA,51053 2232,51081,0.41,0.42,Greensville,"M603.0,222.5 L603.3,222.8 L603.6,222.7 L605.7,222.5 L606.6,225.0 L608.1,227.3 L608.9,227.3 L606.3,227.8 L602.7,228.5 L603.6,225.5 Z M604.9,225.4 L605.1,225.8 L605.7,225.6 L605.5,225.0 Z",VA,51081 2233,12111,0.48,0.48,St. Lucie,"M594.3,384.3 L594.6,385.0 L597.1,388.9 L596.2,389.0 L596.3,389.6 L595.8,389.5 L596.4,389.9 L596.4,390.0 L590.5,391.0 L590.2,389.6 L589.4,385.1 L590.3,385.0 Z M594.9,384.2 L597.6,388.8 L597.5,388.8 L597.4,388.9 L595.7,386.6 L594.6,384.2 L594.8,384.2 Z",FL,12111 2234,12061,0.47,0.52,Indian River,"M594.3,384.3 L590.3,385.0 L589.4,385.1 L588.0,385.4 L586.3,384.2 L586.3,384.2 L585.7,381.2 L585.9,381.2 L591.2,380.3 L591.6,379.6 L593.6,382.5 Z M594.6,384.2 L593.3,381.5 L594.9,384.2 L594.8,384.2 Z",FL,12061 2235,36073,0.50,0.49,Orleans,"M577.2,116.9 L577.6,119.0 L577.9,121.0 L573.0,122.0 L572.3,122.2 L572.1,120.7 L571.5,117.9 L574.4,117.5 Z",NY,36073 2236,36055,0.50,0.50,Monroe,"M577.9,121.0 L577.6,119.0 L577.2,116.9 L583.1,117.8 L584.9,116.8 L585.4,119.0 L585.8,121.0 L584.4,121.3 L583.6,123.1 L581.6,122.7 L579.5,123.1 L579.0,120.7 Z",NY,36055 2237,46083,0.50,0.50,Lincoln,"M346.7,136.6 L348.1,136.6 L350.7,136.6 L351.5,138.4 L351.2,140.7 L352.1,141.3 L352.4,143.6 L349.1,143.6 L348.1,143.6 L347.3,143.6 L346.6,143.6 L346.6,140.9 Z",SD,46083 2238,55017,0.50,0.50,Chippewa,"M409.6,106.7 L411.1,106.6 L411.0,105.2 L414.9,105.0 L418.3,104.8 L418.5,107.7 L418.6,109.2 L418.7,110.5 L418.8,112.1 L411.5,112.5 L410.1,112.6 L409.8,108.2 Z",WI,55017 2239,21157,0.49,0.48,Marshall,"M458.9,242.4 L458.8,241.4 L458.8,241.0 L460.3,240.2 L462.1,241.4 L462.8,242.1 L463.4,243.2 L463.8,244.2 L464.2,245.2 L462.3,245.3 L459.1,245.6 L459.0,243.6 Z",KY,21157 2240,13065,0.46,0.54,Clinch,"M550.6,329.1 L553.8,332.4 L555.7,338.6 L555.2,338.6 L555.1,338.6 L554.6,338.7 L553.3,338.8 L552.7,336.8 L547.1,335.0 L546.5,331.2 L546.3,329.7 L549.6,329.2 Z",GA,13065 2241,13185,0.59,0.44,Lowndes,"M539.4,333.3 L541.8,333.0 L542.0,333.0 L542.7,332.9 L543.4,332.8 L545.8,333.8 L546.4,335.4 L544.9,336.9 L545.3,339.4 L544.9,339.4 L542.7,339.6 L542.5,339.5 L542.3,339.6 L542.2,339.6 L542.0,339.6 L541.5,336.3 Z",GA,13185 2242,26099,0.57,0.50,Macomb,"M516.6,135.7 L517.6,135.5 L518.1,135.4 L521.1,134.9 L521.8,138.2 L520.7,139.1 L520.5,142.5 L519.4,142.7 L517.9,143.0 L516.9,137.0 Z",MI,26099 2243,48331,0.47,0.50,Milam,"M343.9,353.7 L342.3,354.7 L341.1,355.4 L339.4,350.7 L338.8,350.4 L339.7,348.1 L342.4,346.5 L345.9,344.4 L345.9,344.5 L347.0,347.5 L348.9,350.9 L346.0,352.5 Z",TX,48331 2244,21087,0.31,0.53,Green,"M496.7,229.7 L498.3,231.3 L500.3,234.0 L499.9,234.4 L498.1,235.6 L496.7,235.6 L495.8,234.7 L495.5,232.7 L495.8,230.7 L496.0,229.8 Z",KY,21087 2245,21099,0.50,0.50,Hart,"M495.8,230.7 L495.5,232.7 L495.8,234.7 L495.5,234.8 L495.1,235.0 L493.0,235.6 L490.9,235.5 L491.0,234.7 L489.3,232.8 L491.0,231.6 L490.5,230.8 L491.8,230.7 L492.6,230.7 L494.5,230.6 Z",KY,21099 2246,21137,0.53,0.45,Lincoln,"M506.3,227.3 L508.6,225.8 L508.6,225.5 L508.7,225.8 L511.7,227.6 L511.5,228.5 L511.3,230.4 L510.5,230.0 L508.6,232.2 L506.5,229.3 Z",KY,21137 2247,51710,0.53,0.46,Norfolk,"M622.0,219.4 L621.7,219.8 L621.2,219.9 L621.1,219.6 L621.0,219.4 L620.2,217.9 L622.3,217.8 L622.3,217.8 L622.3,217.8 L622.3,217.8 L622.6,219.0 Z M620.5,219.0 L620.5,219.0 L620.5,219.2 L620.4,219.2 Z",VA,51710 2248,51155,0.60,0.52,Pulaski,"M560.0,226.2 L560.6,225.6 L563.0,224.1 L563.4,225.0 L564.4,225.7 L563.5,226.1 L563.8,226.6 L564.4,227.1 L564.6,228.2 L564.0,229.0 L563.5,229.3 L563.0,230.0 L562.3,230.4 L559.8,228.3 L559.5,227.6 L559.1,226.9 Z",VA,51155 2249,37179,0.49,0.50,Union,"M569.5,257.6 L570.2,257.8 L570.2,257.8 L572.3,257.8 L573.3,257.1 L573.4,258.3 L573.8,263.5 L571.3,263.9 L570.5,264.0 L567.3,264.5 L566.2,261.6 L567.0,260.9 Z",NC,37179 2250,38061,0.94,0.48,Mountrail,"M280.4,55.7 L280.7,51.5 L280.3,48.5 L284.6,48.8 L287.6,49.0 L290.6,49.2 L291.0,61.1 L285.1,60.7 L285.0,62.2 L283.0,61.7 L282.1,60.9 L283.4,58.0 Z",ND,38061 2251,38053,0.51,0.50,McKenzie,"M276.3,68.9 L270.4,68.4 L269.8,68.4 L269.8,68.4 L269.8,68.4 L268.2,68.2 L265.4,68.0 L265.5,67.2 L265.5,66.8 L266.3,59.0 L266.4,56.7 L270.8,54.9 L272.8,57.1 L276.2,55.2 L280.4,55.7 L283.4,58.0 L282.1,60.9 L281.9,63.5 L276.7,63.1 Z",ND,38053 2252,12091,0.55,0.89,Okaloosa,"M491.7,339.6 L492.6,339.5 L493.1,339.5 L495.6,339.3 L497.5,339.1 L497.9,344.1 L498.3,347.9 L495.4,349.1 L492.5,349.4 L492.2,345.8 Z M498.4,349.3 L497.0,349.0 L498.4,349.0 L498.4,349.1 Z M492.5,349.7 L496.0,349.3 L492.6,350.1 L492.5,349.9 Z",FL,12091 2253,06001,0.49,0.55,Alameda,"M13.1,182.1 L13.7,181.5 L13.7,180.4 L17.5,184.6 L23.1,184.5 L21.8,188.9 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L22.6,190.2 L17.6,188.7 L15.3,188.4 L14.6,184.7 L13.1,182.2 Z",CA,6001 2254,17013,0.60,0.43,Calhoun,"M426.7,206.3 L425.6,205.0 L423.7,203.6 L425.2,203.5 L427.9,203.4 L428.4,206.7 L428.3,208.0 L428.9,210.1 L430.4,210.4 L429.3,212.1 L427.7,211.1 L427.3,208.6 Z",IL,17013 2255,18085,0.51,0.51,Kosciusko,"M488.5,170.4 L487.0,170.6 L485.3,170.8 L483.5,170.3 L483.4,168.9 L483.6,168.8 L483.1,164.4 L483.1,164.4 L486.1,164.1 L488.2,163.9 L488.4,165.5 L488.5,166.2 L488.3,168.2 Z",IN,18085 2256,28103,0.53,0.50,Noxubee,"M459.3,303.8 L460.2,303.8 L461.3,303.7 L464.5,303.4 L466.5,303.2 L466.4,304.6 L466.4,308.2 L466.4,308.8 L466.4,309.3 L462.1,309.7 L459.8,309.9 L459.6,307.0 Z",MS,28103 2257,30045,0.88,0.54,Judith Basin,"M192.6,69.5 L190.4,69.7 L188.5,66.9 L187.9,62.2 L190.3,57.1 L193.3,57.5 L195.1,57.8 L195.7,60.4 L199.7,62.5 L198.6,70.8 L196.2,69.4 Z",MT,30045 2258,30107,0.10,0.40,Wheatland,"M192.6,69.5 L196.2,69.4 L198.6,70.8 L199.3,70.9 L202.7,71.4 L201.4,79.3 L198.5,78.8 L197.0,78.6 L191.2,77.7 L191.9,73.2 Z",MT,30107 2259,37121,0.58,0.44,Mitchell,"M546.5,246.1 L547.5,248.7 L548.3,249.1 L548.2,249.7 L546.5,250.8 L545.1,247.8 L542.0,247.3 L542.7,246.5 L544.4,245.5 L545.4,245.5 Z",NC,37121 2260,41053,0.51,0.52,Polk,"M37.1,67.4 L37.2,67.6 L36.9,67.8 L35.2,67.3 L31.7,66.2 L30.4,65.5 L31.9,60.6 L32.1,60.1 L32.1,60.0 L34.6,60.9 L39.6,62.4 L39.2,64.6 Z",OR,41053 2261,41041,0.64,0.53,Lincoln,"M31.9,60.6 L30.4,65.5 L31.7,66.2 L30.3,70.8 L27.5,72.6 L25.6,72.1 L23.6,71.5 L26.1,66.0 L28.7,59.5 L30.8,60.2 Z",OR,41041 2262,41065,0.63,0.47,Wasco,"M69.0,70.8 L69.1,71.0 L69.0,71.1 L68.6,74.5 L69.3,75.5 L61.1,73.2 L53.4,70.9 L53.7,70.5 L53.9,70.0 L55.6,67.3 L56.1,64.1 L58.6,64.8 L61.1,57.8 L63.6,60.1 L66.8,60.4 L67.3,62.8 L63.6,66.9 Z",OR,41065 2263,41047,0.30,0.34,Marion,"M53.9,70.0 L53.7,70.5 L53.4,70.9 L53.1,71.9 L52.3,73.1 L41.2,67.9 L37.1,67.4 L39.2,64.6 L39.6,62.4 L40.6,60.1 L43.0,60.2 L46.3,67.8 Z",OR,41047 2264,19173,0.50,0.50,Taylor,"M377.5,185.6 L375.9,185.6 L375.5,185.6 L375.0,185.6 L371.8,185.6 L371.6,183.1 L371.6,180.2 L374.5,180.2 L377.4,180.1 L377.4,180.7 Z",IA,19173 2265,39039,0.50,0.58,Defiance,"M499.2,165.7 L499.2,165.5 L499.2,165.3 L499.0,164.3 L498.8,162.8 L500.4,162.6 L504.6,162.0 L506.0,161.8 L506.6,166.2 L505.6,166.3 L505.2,166.4 L503.6,165.1 Z",OH,39039 2266,54039,0.52,0.46,Kanawha,"M551.0,210.4 L550.9,213.8 L550.1,213.9 L549.8,213.7 L546.8,210.2 L544.3,210.8 L544.2,209.0 L542.9,209.0 L545.0,206.3 L545.0,203.6 L546.0,204.7 L547.3,203.5 L548.2,204.4 L551.8,204.2 L550.8,205.3 L552.0,208.6 L552.0,208.6 Z",WV,54039 2267,54019,0.50,0.50,Fayette,"M551.0,210.4 L552.0,208.6 L552.0,208.6 L555.4,208.8 L557.0,210.5 L558.8,212.2 L558.6,214.2 L557.8,214.7 L557.0,215.3 L552.2,214.9 L550.9,213.8 Z",WV,54019 2268,54025,0.45,0.51,Greenbrier,"M558.6,214.2 L558.8,212.2 L557.0,210.5 L559.3,210.5 L562.3,206.8 L562.8,207.0 L563.5,207.3 L565.2,210.1 L569.1,209.1 L568.7,210.4 L568.2,211.1 L566.2,214.6 L565.8,216.0 L563.8,216.5 L560.9,216.2 L560.8,215.6 Z",WV,54025 2269,17121,0.50,0.50,Marion,"M453.5,211.2 L453.6,212.5 L453.8,214.8 L453.9,216.6 L453.9,217.0 L451.0,217.2 L448.1,217.5 L448.1,217.3 L448.1,217.0 L448.0,215.2 L447.8,213.1 L447.7,211.6 Z",IL,17121 2270,51051,0.48,0.56,Dickenson,"M543.2,230.7 L541.8,231.8 L541.0,232.3 L539.0,231.7 L537.4,228.9 L539.9,227.4 L540.3,226.9 L543.3,230.4 Z",VA,51051 2271,51007,0.51,0.49,Amelia,"M593.8,216.3 L594.4,214.9 L594.9,214.6 L596.3,213.7 L598.6,214.5 L600.4,216.7 L601.8,216.4 L600.8,217.9 L600.2,218.0 L599.3,217.9 L594.1,217.4 L594.0,216.9 Z",VA,51007 2272,13243,0.47,0.49,Randolph,"M517.0,321.0 L518.5,320.9 L520.5,320.7 L521.0,320.6 L521.3,320.6 L521.6,323.0 L522.7,325.5 L521.2,325.7 L518.9,326.0 L517.1,326.2 L516.5,323.6 L517.2,323.5 Z",GA,13243 2273,35029,0.46,0.79,Luna,"M195.8,323.0 L191.1,322.4 L182.8,321.3 L182.8,320.7 L182.9,320.0 L184.2,309.1 L193.1,308.7 L195.1,309.0 L197.5,309.3 L196.4,318.0 Z",NM,35029 2274,48355,0.33,0.70,Nueces,"M338.8,404.2 L340.5,401.5 L342.0,399.7 L342.0,399.7 L342.1,399.8 L340.1,402.9 L339.5,404.3 L339.1,404.1 Z M335.3,399.6 L338.8,402.0 L337.9,404.5 L330.0,404.4 L328.5,403.0 L328.7,398.8 L330.8,397.0 L333.2,399.2 Z M335.1,399.5 L335.0,399.3 L335.0,399.2 L335.2,399.5 Z M335.2,399.0 L335.2,399.0 L335.2,399.0 L335.2,399.0 Z M335.5,399.3 L335.4,399.1 L335.3,399.0 L335.4,399.0 Z M335.9,399.3 L335.9,399.4 L335.7,399.3 L335.8,399.2 Z M336.0,399.2 L335.9,399.2 L335.9,399.2 L335.9,399.1 Z M337.5,399.4 L337.7,399.1 L336.7,399.1 L337.8,399.0 Z M337.5,399.4 L337.5,399.4 L337.5,399.4 L337.5,399.4 Z M339.5,399.6 L339.5,399.6 L339.5,399.6 L339.5,399.5 Z M339.5,399.9 L339.4,399.9 L339.4,399.9 L339.4,399.9 Z M339.6,400.0 L339.3,400.0 L339.3,399.9 L339.4,400.0 Z M339.6,400.1 L339.6,400.1 L339.7,400.1 L339.7,400.1 Z M340.3,399.4 L340.4,399.4 L340.4,399.4 L340.3,399.5 Z M340.8,398.7 L340.8,398.7 L340.8,398.7 L340.8,398.8 L340.8,398.7 Z M341.4,397.8 L341.3,398.1 L340.9,398.6 L341.4,397.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 L341.4,397.8 Z M340.8,398.9 L340.6,399.1 L340.6,399.1 L340.6,399.0 L340.7,398.8 Z M338.8,399.1 L338.8,399.1 L339.2,399.2 L338.8,399.1 Z M338.8,399.1 L338.8,399.1 L338.7,399.0 Z",TX,48355 2275,48409,0.90,0.59,San Patricio,"M335.1,399.5 L335.2,399.5 L335.2,399.5 L335.3,399.6 L333.2,399.2 L330.8,397.0 L330.7,396.2 L329.6,395.9 L329.3,394.9 L330.6,393.9 L334.4,394.7 L334.8,394.2 L338.1,394.7 L339.0,395.7 L339.3,396.3 L340.8,398.7 L340.8,398.7 L340.8,398.8 L340.8,398.9 L340.7,398.8 L340.6,399.1 L340.5,399.2 L340.4,399.4 L340.3,399.4 L340.3,399.5 L340.1,399.8 L339.7,400.1 L339.7,400.1 L339.6,400.1 L339.6,400.0 L339.4,400.0 L339.3,399.9 L339.3,399.9 L339.4,399.9 L339.4,399.9 L339.5,399.9 L339.6,399.9 L339.5,399.6 L339.5,399.5 L339.5,399.6 L339.3,399.3 L339.2,399.2 L338.8,399.1 L338.8,399.1 L338.8,399.1 L338.7,399.0 L337.7,399.4 L337.5,399.4 L337.5,399.4 L337.5,399.4 L337.5,399.4 L337.8,399.0 L336.7,399.1 L336.4,399.1 L336.0,399.2 L335.9,399.1 L335.9,399.2 L335.9,399.3 L335.8,399.2 L335.7,399.3 L335.6,399.3 L335.5,399.3 L335.4,399.0 L335.3,399.0 L335.2,399.0 L335.2,399.0 L335.2,399.0 L335.2,399.0 L335.0,399.1 L335.0,399.2 Z",TX,48409 2276,56045,0.85,0.53,Weston,"M249.3,131.3 L248.6,131.3 L247.1,131.1 L247.2,129.6 L248.3,119.8 L256.8,120.6 L260.6,120.9 L260.6,121.3 L260.5,121.6 L260.3,123.9 L260.1,126.4 L259.9,128.3 L259.6,132.2 L259.6,132.2 L259.6,132.2 L251.3,131.5 Z M259.6,132.2 L259.6,132.3 L259.6,132.2 Z",WY,56045 2277,46081,0.55,0.49,Lawrence,"M260.5,121.6 L260.6,121.3 L260.6,120.9 L260.7,119.7 L261.2,114.4 L264.0,114.0 L267.1,114.3 L266.5,120.1 L267.8,122.2 L264.3,121.9 Z",SD,46081 2278,46093,0.50,0.49,Meade,"M267.8,122.2 L266.5,120.1 L267.1,114.3 L274.3,114.9 L274.9,107.6 L281.8,108.1 L286.4,108.4 L286.2,110.2 L285.8,117.3 L285.8,117.3 L285.8,117.3 L282.3,118.1 L280.7,123.2 Z",SD,46093 2279,46033,0.50,0.52,Custer,"M259.6,132.2 L259.9,128.3 L260.1,126.4 L276.7,127.7 L275.0,130.4 L272.6,131.6 L272.4,133.8 L268.5,133.4 L259.6,132.7 L259.6,132.3 L259.6,132.2 L259.6,132.2 L259.6,132.2 Z",SD,46033 2280,01089,0.52,0.53,Madison,"M491.9,278.7 L490.8,280.8 L488.9,279.9 L486.9,279.4 L485.6,280.1 L485.5,278.9 L484.9,272.8 L489.3,272.3 L491.3,272.1 L491.3,272.1 L491.4,272.1 L491.4,278.2 Z",AL,1089 2281,47189,0.48,0.57,Wilson,"M489.4,249.5 L490.4,249.4 L491.5,250.1 L492.5,252.7 L492.9,253.5 L493.3,254.4 L493.7,255.5 L492.8,255.5 L491.8,255.8 L489.7,255.6 L486.7,253.9 L486.1,253.4 L485.4,251.6 L485.9,250.3 Z M486.5,253.3 L486.5,253.2 L486.5,253.2 L486.5,253.3 Z",TN,47189 2282,48063,0.50,0.50,Camp,"M370.0,312.4 L370.1,312.2 L370.4,312.0 L373.2,311.4 L374.7,312.8 L375.4,313.8 L376.1,314.1 L373.9,314.2 L370.0,314.2 L370.0,312.8 Z",TX,48063 2283,48459,0.50,0.50,Upshur,"M370.0,314.2 L373.9,314.2 L376.1,314.1 L376.3,314.3 L376.3,314.6 L376.5,315.2 L376.4,316.0 L376.4,317.3 L376.5,318.4 L374.8,319.4 L372.4,320.4 L370.2,320.2 L370.0,319.8 L370.0,319.1 Z",TX,48459 2284,40067,0.50,0.51,Jefferson,"M328.1,293.1 L328.1,292.3 L328.2,290.6 L330.1,290.7 L336.2,290.8 L336.2,294.5 L336.2,294.5 L336.2,295.9 L336.1,297.3 L334.7,295.8 L330.3,297.4 L328.8,295.5 Z",OK,40067 2285,54085,0.45,0.59,Ritchie,"M549.2,192.0 L550.0,191.3 L551.9,190.2 L552.8,189.4 L553.6,190.9 L553.4,191.3 L555.1,193.7 L554.0,195.0 L552.5,195.9 L551.8,195.9 L550.8,195.8 L549.7,195.9 L548.7,193.5 L548.8,192.2 L549.2,192.0 L549.2,192.0 L549.2,192.0 Z",WV,54085 2286,54021,0.40,0.46,Gilmer,"M552.5,195.9 L554.0,195.0 L555.1,193.7 L556.0,193.8 L556.2,193.8 L556.6,195.2 L558.4,196.7 L557.2,197.3 L554.0,200.6 L553.4,198.5 Z",WV,54021 2287,22045,0.12,0.36,Iberia,"M417.2,368.4 L419.6,370.6 L416.6,369.0 L416.8,368.9 Z M417.4,361.3 L417.4,361.2 L417.5,360.7 L421.8,359.9 L426.1,360.5 L427.6,360.4 L428.2,361.0 L427.7,361.4 L427.8,361.9 L426.1,362.1 L424.7,362.3 L422.4,362.6 L419.0,366.4 L419.2,364.7 L417.4,364.7 L417.0,362.4 Z",LA,22045 2288,48349,0.18,0.78,Navarro,"M357.2,329.3 L353.2,331.6 L350.8,332.9 L350.8,332.9 L347.6,332.6 L345.9,329.5 L345.1,328.2 L349.0,326.0 L352.5,323.9 L355.7,325.9 Z",TX,48349 2289,48161,0.50,0.51,Freestone,"M350.8,332.9 L353.2,331.6 L357.2,329.3 L357.2,329.3 L357.2,329.4 L358.3,333.1 L361.0,335.9 L358.0,337.5 L354.6,339.4 L352.6,335.9 Z",TX,48161 2290,42087,0.42,0.51,Mifflin,"M593.6,157.6 L594.0,159.3 L594.9,159.3 L592.6,161.6 L590.1,165.6 L588.0,165.7 L589.8,159.7 L592.5,157.5 L593.4,156.9 L593.5,157.0 Z",PA,42087 2291,48399,0.50,0.50,Runnels,"M297.3,326.7 L297.8,326.7 L298.5,326.7 L303.4,327.0 L304.7,327.0 L304.7,327.0 L304.7,327.0 L304.7,327.0 L304.7,327.0 L304.7,328.4 L304.3,335.5 L300.4,335.3 L298.7,335.2 L296.9,335.0 L297.0,333.2 L297.2,328.1 Z",TX,48399 2292,48465,0.49,0.50,Val Verde,"M273.6,355.7 L281.0,356.1 L285.2,356.4 L286.3,356.4 L289.1,356.6 L288.8,361.4 L288.5,367.8 L288.3,371.3 L286.9,374.1 L284.8,370.1 L279.5,367.6 L278.2,364.6 L273.0,364.1 L273.1,361.9 Z",TX,48465 2293,20193,0.50,0.50,Thomas,"M288.2,200.5 L295.2,200.9 L296.6,201.0 L296.8,201.0 L296.9,201.0 L296.5,207.0 L296.5,208.3 L296.0,208.2 L295.3,208.2 L295.3,208.2 L292.4,208.0 L287.7,207.7 L287.9,204.7 Z",KS,20193 2294,13161,0.50,0.50,Jeff Davis,"M551.3,315.6 L551.7,315.6 L552.1,315.5 L552.4,317.7 L551.4,320.0 L551.5,320.6 L550.0,320.8 L547.0,321.3 L546.7,318.9 L547.5,318.0 L549.2,316.8 L550.2,316.0 L550.5,315.9 L551.3,315.9 Z",GA,13161 2295,05145,0.05,0.51,White,"M415.6,268.8 L416.2,268.8 L418.5,268.7 L418.5,270.2 L421.8,270.1 L420.7,271.3 L420.5,276.0 L418.8,276.1 L415.9,277.2 L412.9,276.6 L411.5,276.8 L411.4,274.6 L411.4,271.8 L414.9,271.8 Z",AR,5145 2296,28083,0.52,0.50,Leflore,"M435.7,296.6 L439.5,296.4 L440.2,297.9 L440.3,298.6 L440.4,298.6 L441.0,302.2 L440.1,304.4 L438.0,303.8 L437.9,305.1 L437.4,306.1 L436.2,304.7 L435.8,298.1 Z",MS,28083 2297,29053,0.43,0.59,Cooper,"M396.5,212.7 L396.5,211.9 L398.0,210.3 L399.2,211.7 L402.9,211.7 L403.2,212.0 L403.8,212.5 L402.3,216.4 L402.4,216.6 L399.4,216.7 L399.4,216.7 L399.4,216.7 L398.0,216.7 L396.5,216.6 L396.5,214.5 Z",MO,29053 2298,35009,0.95,0.50,Curry,"M260.8,276.1 L260.6,278.8 L260.6,279.5 L260.4,281.7 L260.0,286.8 L260.0,286.8 L260.0,287.0 L250.3,286.2 L250.8,281.1 L251.3,279.7 Z",NM,35009 2299,48369,0.50,0.50,Parmer,"M260.0,286.8 L260.4,281.7 L260.6,279.5 L264.6,279.8 L267.7,280.1 L267.4,284.2 L267.2,287.3 L266.8,287.3 L265.9,287.2 L262.3,287.0 Z",TX,48369 2300,46011,0.50,0.50,Brookings,"M344.3,124.9 L344.3,123.3 L344.4,119.0 L345.3,119.0 L347.3,119.1 L350.2,119.1 L352.5,119.1 L352.5,123.2 L352.5,124.9 L350.5,124.9 L347.2,124.9 L344.5,124.9 Z",SD,46011 2301,28027,0.71,0.57,Coahoma,"M435.4,292.3 L435.5,293.3 L435.5,293.7 L434.3,293.8 L432.7,293.9 L432.5,291.7 L428.4,291.9 L430.9,287.6 L433.3,284.8 L434.4,285.5 L435.8,286.3 L435.3,289.1 Z",MS,28027 2302,19057,0.50,0.48,Des Moines,"M422.0,175.6 L422.0,175.6 L422.0,175.6 L421.9,178.1 L420.3,182.0 L419.4,181.9 L416.4,180.3 L416.9,180.2 L416.6,175.9 L419.2,175.7 Z",IA,19057 2303,19087,0.50,0.50,Henry,"M416.6,175.9 L416.9,180.2 L416.4,180.3 L413.9,180.4 L412.4,180.4 L412.4,179.6 L412.4,179.0 L412.3,176.9 L412.2,174.6 L413.7,174.5 L415.1,174.5 L416.6,174.4 Z",IA,19087 2304,19163,0.52,0.49,Scott,"M422.1,166.8 L422.0,164.2 L422.0,163.9 L427.3,163.5 L429.3,164.2 L429.1,166.5 L423.7,169.1 L423.6,166.7 Z",IA,19163 2305,20143,0.50,0.50,Ottawa,"M332.9,208.1 L332.9,207.2 L332.9,206.7 L339.5,206.8 L340.2,206.8 L340.1,209.0 L340.1,209.7 L340.1,211.7 L340.1,212.7 L334.6,212.6 L332.8,212.5 L332.8,209.8 Z",KS,20143 2306,12023,0.51,0.50,Columbia,"M550.9,343.5 L552.9,342.0 L551.8,338.9 L553.2,338.8 L553.3,338.8 L554.6,338.7 L555.1,338.6 L556.0,344.3 L556.3,346.1 L554.9,348.8 L555.7,349.6 L555.1,350.9 L554.1,351.7 L553.6,351.7 L551.8,350.3 L551.8,349.4 Z",FL,12023 2307,36095,0.50,0.52,Schoharie,"M625.8,122.8 L626.0,123.3 L623.7,124.2 L621.3,123.6 L619.8,122.3 L619.8,122.3 L619.8,122.3 L620.4,120.3 L619.4,117.1 L621.9,117.4 L624.1,116.5 L624.3,117.9 L625.4,117.3 L625.3,120.4 Z",NY,36095 2308,40117,0.12,0.16,Pawnee,"M353.9,259.6 L349.5,259.5 L349.5,259.6 L346.9,259.6 L345.4,258.1 L344.0,256.6 L344.3,253.7 L348.0,253.1 L354.3,259.6 L354.2,259.6 Z",OK,40117 2309,36007,0.50,0.41,Broome,"M613.9,132.7 L613.7,132.7 L612.4,133.0 L609.3,133.7 L604.8,134.7 L604.3,130.9 L603.0,128.1 L604.4,127.8 L606.3,127.2 L607.1,129.7 L612.5,129.6 L613.0,132.1 Z",NY,36007 2310,39009,0.49,0.47,Athens,"M535.4,192.2 L536.8,190.6 L536.6,189.1 L537.1,189.1 L538.1,189.0 L538.2,190.5 L540.9,190.3 L541.2,192.5 L543.1,193.9 L543.0,194.4 L542.8,194.6 L538.6,195.0 L536.1,195.2 L535.5,193.7 Z",OH,39009 2311,54083,0.41,0.49,Randolph,"M574.2,192.8 L574.4,192.9 L574.4,192.9 L572.3,195.3 L571.7,198.4 L569.0,200.8 L564.5,204.4 L564.9,202.0 L563.2,199.4 L565.0,198.2 L564.9,194.8 L567.3,193.9 L567.8,191.4 L568.5,192.6 Z",WV,54083 2312,06057,0.49,0.47,Nevada,"M50.0,163.7 L49.7,164.9 L49.5,165.8 L41.4,163.6 L35.1,167.1 L32.2,165.9 L32.2,165.9 L33.5,162.1 L37.1,161.1 L42.2,160.2 L43.8,162.0 Z",CA,6057 2313,27017,0.50,0.50,Carlton,"M401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.1,82.5 L401.2,83.0 L401.3,86.6 L395.3,86.8 L392.4,86.9 L392.2,84.0 L392.1,81.1 L401.0,80.8 Z",MN,27017 2314,21199,0.55,0.56,Pulaski,"M508.6,232.2 L510.5,230.0 L511.3,230.4 L512.1,231.1 L514.5,232.9 L514.2,234.5 L514.0,236.2 L513.2,236.5 L511.2,238.1 L509.7,236.4 L507.5,236.4 L506.5,235.7 L506.4,234.5 L507.5,233.4 Z",KY,21199 2315,37065,0.40,0.44,Edgecombe,"M607.0,242.5 L605.3,240.3 L604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 L604.5,237.4 L604.9,234.8 L607.3,235.3 L609.4,236.4 L610.5,237.9 L610.7,239.3 L610.1,239.2 Z M604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 Z",NC,37065 2316,48241,0.71,0.53,Jasper,"M380.4,345.6 L383.3,344.8 L385.1,344.4 L386.3,344.1 L386.4,343.8 L386.6,343.7 L388.3,343.3 L389.0,346.9 L388.8,358.8 L387.4,358.8 L385.6,358.9 L385.6,355.6 L386.2,354.0 L383.6,345.9 Z",TX,48241 2317,49031,0.45,0.51,Piute,"M141.9,200.6 L147.8,201.7 L151.6,202.5 L150.4,203.6 L149.6,208.1 L146.8,207.6 L141.8,206.7 L143.8,203.9 Z",UT,49031 2318,49017,0.50,0.53,Garfield,"M141.8,206.7 L146.8,207.6 L149.6,208.1 L155.2,209.0 L174.6,212.2 L170.2,215.9 L167.7,215.7 L163.6,220.8 L141.1,217.0 L136.9,216.1 L137.6,211.8 L140.7,210.9 L141.4,206.7 L141.6,206.7 Z",UT,49017 2319,49001,0.52,0.51,Beaver,"M141.8,206.7 L141.6,206.7 L141.4,206.7 L127.1,203.9 L121.0,202.7 L121.4,200.8 L122.4,195.8 L137.0,198.5 L142.2,199.6 L142.1,199.7 L141.9,200.6 L143.8,203.9 Z",UT,49001 2320,47011,0.50,0.53,Bradley,"M510.6,263.8 L511.7,264.3 L512.9,265.4 L513.1,266.5 L512.5,269.7 L512.0,269.8 L512.0,269.8 L510.1,270.0 L509.7,270.1 L508.8,267.5 L509.5,265.0 L509.8,265.0 Z",TN,47011 2321,47139,0.48,0.47,Polk,"M512.5,269.7 L513.1,266.5 L512.9,265.4 L513.4,264.9 L515.7,264.3 L517.7,264.9 L518.6,265.2 L518.6,267.0 L518.7,268.9 L518.0,269.0 L514.6,269.5 L513.8,269.6 Z",TN,47139 2322,13213,0.49,0.50,Murray,"M512.0,269.8 L512.0,269.8 L512.5,269.7 L513.8,269.6 L514.6,269.5 L514.9,271.6 L514.9,271.7 L514.6,273.8 L515.0,276.3 L514.1,275.7 L511.3,275.8 L510.9,274.7 Z",GA,13213 2323,26107,0.50,0.50,Mecosta,"M485.4,129.9 L485.0,125.9 L484.8,124.1 L486.2,123.9 L490.5,123.4 L490.7,124.9 L491.2,129.2 L487.8,129.6 Z",MI,26107 2324,26117,0.50,0.52,Montcalm,"M485.4,129.9 L487.8,129.6 L491.2,129.2 L492.7,129.0 L494.1,128.9 L494.5,131.8 L495.0,134.6 L492.0,135.0 L489.1,135.3 L488.8,132.4 L485.8,132.8 L485.7,132.1 Z",MI,26117 2325,36083,0.52,0.50,Rensselaer,"M636.3,114.3 L636.3,115.7 L636.2,118.4 L633.5,119.6 L631.2,120.5 L630.9,118.0 L631.2,115.0 L630.7,113.2 L631.1,112.3 L633.2,111.7 L635.4,111.1 L635.7,113.5 Z",NY,36083 2326,13017,0.50,0.50,Ben Hill,"M538.0,321.1 L537.9,320.5 L537.5,319.7 L541.3,319.2 L541.8,319.1 L543.2,319.5 L544.1,319.9 L544.5,319.8 L544.5,319.8 L544.6,320.7 L544.7,321.6 L540.0,322.1 Z",GA,13017 2327,13271,0.49,0.62,Telfair,"M541.8,319.1 L541.5,318.6 L541.2,318.2 L544.5,314.0 L544.6,313.8 L547.7,315.5 L549.2,316.8 L547.5,318.0 L546.7,318.9 L546.4,319.5 L544.5,319.8 L544.1,319.9 Z",GA,13271 2328,05077,0.02,0.55,Lee,"M426.5,283.1 L425.8,281.7 L425.7,279.5 L425.6,278.7 L435.2,278.3 L435.2,278.8 L435.3,279.5 L434.7,282.0 L433.0,282.9 L428.5,283.1 Z",AR,5077 2329,12003,0.50,0.46,Baker,"M562.2,345.1 L561.5,345.2 L560.9,345.3 L557.7,345.8 L556.3,346.1 L556.0,344.3 L555.1,338.6 L555.2,338.6 L555.7,338.6 L557.8,338.4 L558.7,338.4 L559.9,341.8 L561.6,341.4 L561.8,342.6 L561.9,342.9 L562.0,343.4 L562.1,344.4 L562.2,345.0 Z",FL,12003 2330,12031,0.49,0.52,Duval,"M562.1,344.4 L562.0,343.4 L561.9,342.9 L565.8,337.2 L569.0,336.8 L570.7,338.6 L571.6,341.7 L571.3,344.3 L567.6,344.6 L567.5,343.5 Z",FL,12031 2331,13173,0.46,0.53,Lanier,"M545.2,329.9 L545.9,329.8 L546.3,329.7 L546.5,331.2 L547.1,335.0 L546.8,335.2 L546.4,335.4 L545.8,333.8 L543.4,332.8 L543.6,330.7 Z",GA,13173 2332,01015,0.49,0.45,Calhoun,"M501.2,288.3 L504.1,288.2 L504.2,288.4 L503.2,293.5 L501.2,295.3 L498.4,295.1 L496.1,293.7 L497.3,292.2 L496.9,290.9 L498.1,289.5 Z",AL,1015 2333,21057,0.51,0.51,Cumberland,"M499.4,238.4 L501.6,238.3 L502.4,238.3 L501.9,238.8 L502.8,239.4 L502.6,241.3 L502.1,243.3 L501.6,243.4 L500.3,243.7 L499.0,241.9 L497.7,240.6 L499.2,239.2 Z",KY,21057 2334,28107,0.50,0.50,Panola,"M445.5,289.6 L445.5,290.1 L442.6,290.3 L442.6,290.3 L442.6,290.3 L442.6,290.3 L442.2,290.4 L439.8,290.5 L438.8,288.2 L438.5,284.7 L438.5,284.4 L438.4,284.0 L442.1,283.8 L445.1,283.5 L445.3,287.2 Z",MS,28107 2335,13239,0.47,0.47,Quitman,"M517.0,321.0 L517.2,323.5 L516.5,323.6 L514.9,323.8 L513.9,323.9 L513.8,322.6 L514.5,320.2 L516.2,320.3 Z",GA,13239 2336,48199,0.51,0.50,Hardin,"M380.8,361.1 L378.6,361.2 L376.5,354.8 L379.4,354.8 L379.2,354.2 L383.6,354.1 L386.2,354.0 L385.6,355.6 L385.6,358.9 L386.0,359.6 L385.7,360.2 L383.1,361.0 Z",TX,48199 2337,09005,0.59,0.51,Litchfield,"M644.3,131.4 L642.7,134.0 L641.0,135.2 L639.3,135.3 L637.7,132.6 L636.7,127.1 L636.5,126.3 L637.1,126.1 L641.8,125.1 L642.1,125.1 L642.3,125.0 L644.1,125.7 Z",CT,9005 2338,39143,0.50,0.38,Sandusky,"M516.1,159.3 L517.1,159.8 L521.4,159.2 L521.6,159.4 L521.9,159.3 L523.3,159.4 L523.7,161.7 L523.8,162.0 L523.8,162.3 L523.8,162.3 L520.2,162.8 L516.6,163.3 L516.6,163.3 L516.5,163.2 L516.4,161.8 L516.3,161.2 Z",OH,39143 2339,39147,0.50,0.50,Seneca,"M524.6,166.6 L524.3,166.7 L521.0,167.1 L519.1,167.4 L517.2,167.7 L516.8,165.2 L516.7,164.8 L516.7,164.8 L516.6,163.6 L516.6,163.3 L516.6,163.3 L520.2,162.8 L523.8,162.3 L524.3,165.2 Z",OH,39147 2340,17153,0.50,0.50,Pulaski,"M452.6,238.1 L452.4,238.1 L452.5,238.1 L451.2,238.5 L449.5,241.0 L448.1,240.1 L448.1,236.6 L450.1,236.5 L450.9,236.5 L451.4,236.8 L452.4,236.8 L452.4,236.8 L452.5,237.7 Z",IL,17153 2341,40107,0.50,0.50,Okfuskee,"M349.4,272.3 L349.4,271.7 L349.4,271.3 L349.5,269.8 L349.5,268.3 L352.4,268.3 L355.3,268.4 L356.8,272.8 L358.2,272.8 L358.2,273.5 L358.2,274.2 L355.4,274.2 L351.9,274.2 L351.9,271.2 Z",OK,40107 2342,26145,0.50,0.45,Saginaw,"M508.0,126.8 L508.4,129.4 L508.6,131.1 L505.8,131.5 L506.0,133.0 L503.1,133.4 L500.7,133.8 L500.2,130.5 L499.9,128.1 L502.3,127.6 L502.1,126.1 L503.7,126.7 Z",MI,26145 2343,50015,0.52,0.48,Lamoille,"M639.0,81.7 L638.9,82.2 L638.6,83.1 L636.5,85.6 L634.6,85.2 L633.9,83.6 L632.4,82.6 L633.8,79.5 L635.8,79.1 L637.9,79.6 Z",VT,50015 2344,50005,0.48,0.53,Caledonia,"M638.6,83.1 L638.9,82.2 L639.0,81.7 L641.3,78.2 L643.2,77.3 L644.7,77.9 L646.3,83.9 L643.9,85.8 L644.7,87.6 L644.7,87.6 L643.1,87.4 L640.7,87.9 L641.5,83.8 Z M644.7,87.6 L644.8,87.6 L644.8,87.6 L644.8,87.6 Z",VT,50005 2345,17119,0.50,0.51,Madison,"M434.4,213.4 L434.9,213.0 L435.0,212.8 L435.0,212.1 L432.8,211.0 L432.7,209.7 L434.4,209.6 L435.2,209.6 L440.2,209.3 L440.8,209.2 L441.0,209.2 L441.0,209.2 L441.7,211.2 L441.8,213.4 L442.0,214.9 L440.5,215.0 L437.6,215.2 L434.3,215.3 L433.8,214.5 Z",IL,17119 2346,48085,0.50,0.50,Collin,"M346.2,305.8 L349.2,305.9 L352.6,306.0 L352.6,306.9 L353.8,306.7 L353.8,309.1 L353.8,313.0 L351.4,312.9 L350.7,312.9 L350.7,312.9 L347.5,312.8 L346.0,312.8 L346.1,309.3 Z",TX,48085 2347,31053,0.50,0.50,Dodge,"M351.0,166.1 L352.4,166.2 L352.4,167.1 L352.4,169.8 L353.8,172.0 L352.4,172.0 L352.0,172.0 L350.8,171.3 L346.6,170.9 L346.6,170.9 L346.6,170.9 L346.6,168.0 L346.6,166.1 L349.0,166.1 Z",NE,31053 2348,12115,0.59,0.38,Sarasota,"M560.5,392.6 L561.1,393.5 L560.3,392.7 L560.4,392.6 Z M567.2,398.2 L566.9,398.1 L567.3,398.6 L567.4,399.3 L565.9,399.5 L565.6,399.3 L565.7,399.5 L565.6,399.5 L565.5,399.5 L561.9,394.4 L561.5,392.5 L566.3,391.8 L569.7,394.4 L569.9,395.8 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L567.2,397.8 Z M570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 L570.2,397.3 Z M570.2,397.3 L570.2,397.3 L570.2,397.3 Z",FL,12115 2349,42091,0.47,0.53,Montgomery,"M621.2,164.2 L618.8,163.3 L616.3,162.3 L617.2,159.8 L617.7,158.5 L618.1,158.7 L618.3,158.8 L621.1,160.1 L625.3,162.0 L622.8,163.4 L622.6,165.4 L621.9,164.9 Z",PA,42091 2350,16061,0.43,0.47,Lewis,"M122.0,60.1 L122.5,61.2 L123.9,62.2 L125.2,65.0 L120.4,64.3 L116.5,67.0 L117.6,61.5 L121.7,62.0 Z",ID,16061 2351,34037,0.46,0.48,Sussex,"M622.2,146.3 L622.0,146.5 L621.9,146.4 L623.1,142.9 L624.5,141.2 L627.9,142.3 L629.2,142.8 L628.7,143.6 L628.0,145.1 L626.7,148.2 L625.4,148.7 L624.1,147.8 Z",NJ,34037 2352,34027,0.56,0.59,Morris,"M625.4,148.7 L626.7,148.2 L628.0,145.1 L631.2,146.2 L631.5,147.5 L631.1,148.1 L630.9,150.3 L630.4,151.1 L630.1,151.7 L628.6,150.6 L626.6,151.7 L625.3,151.6 L624.3,151.1 L624.8,150.7 Z",NJ,34027 2353,29211,0.50,0.50,Sullivan,"M391.9,194.3 L391.9,194.3 L391.7,190.4 L391.7,189.2 L391.7,188.4 L398.2,188.2 L398.3,188.9 L398.3,188.9 L398.3,191.1 L398.4,194.0 L395.5,194.1 Z",MO,29211 2354,31029,0.50,0.50,Chase,"M289.9,181.7 L289.7,184.5 L289.6,187.5 L284.4,187.2 L280.5,186.9 L280.6,186.2 L280.6,185.4 L280.7,184.4 L280.9,181.1 L286.4,181.4 Z",NE,31029 2355,39113,0.53,0.49,Montgomery,"M511.7,187.2 L511.7,187.5 L511.7,187.7 L511.2,188.0 L511.5,192.4 L509.3,192.5 L508.3,192.6 L506.9,192.8 L506.8,192.7 L506.5,190.9 L506.0,187.3 L506.5,187.3 L506.8,187.2 L510.2,186.7 L511.7,187.2 Z",OH,39113 2356,48447,0.50,0.50,Throckmorton,"M309.1,305.0 L313.9,305.2 L316.4,305.3 L316.3,305.8 L316.2,312.7 L315.5,312.7 L314.1,312.6 L311.9,312.5 L308.8,312.4 L309.0,307.5 Z",TX,48447 2357,13059,0.55,0.40,Clarke,"M535.6,283.4 L536.0,284.9 L535.7,285.9 L533.6,285.0 L531.8,284.5 L532.3,284.1 L534.1,282.9 L535.0,283.3 Z",GA,13059 2358,13221,0.44,0.48,Oglethorpe,"M535.7,285.9 L536.0,284.9 L535.6,283.4 L537.3,282.3 L539.4,282.1 L541.1,282.9 L542.3,282.9 L539.8,286.5 L540.5,287.2 L540.0,287.7 L539.9,288.0 L538.2,288.1 L535.8,287.4 L535.3,286.6 Z",GA,13221 2359,26017,0.46,0.20,Bay,"M504.5,120.0 L504.5,123.1 L507.7,124.6 L507.8,125.6 L508.0,126.8 L503.7,126.7 L502.1,126.1 L502.0,124.9 L501.6,121.8 L501.4,120.4 L501.2,119.0 L502.9,120.2 Z",MI,26017 2360,47157,0.48,0.49,Shelby,"M439.5,269.9 L439.7,269.8 L439.7,269.7 L443.3,269.6 L445.3,269.7 L445.5,272.7 L445.6,276.1 L444.6,276.2 L444.5,276.2 L439.0,276.5 L436.5,276.7 L439.6,274.1 L439.3,270.0 L439.4,269.9 Z",TN,47157 2361,06113,0.41,0.11,Yolo,"M18.4,163.8 L22.4,165.0 L24.7,165.7 L25.8,167.2 L26.8,169.5 L27.3,172.3 L24.9,176.4 L24.6,172.6 L19.4,171.3 L18.6,165.3 L17.4,164.5 L17.6,163.5 Z",CA,6113 2362,06007,0.05,0.61,Butte,"M25.6,159.3 L25.9,158.7 L26.2,158.1 L25.6,155.3 L26.2,150.9 L29.6,150.3 L35.4,147.4 L34.4,152.0 L37.3,157.6 L32.0,160.5 L29.1,160.5 L29.1,160.3 Z",CA,6007 2363,48021,0.53,0.47,Bastrop,"M337.9,356.0 L337.9,356.0 L338.4,356.3 L342.1,358.8 L342.9,362.3 L341.7,363.5 L338.6,366.7 L337.1,365.3 L333.7,361.9 L336.1,359.5 Z",TX,48021 2364,53039,0.47,0.65,Klickitat,"M79.6,60.6 L78.4,60.5 L78.0,60.5 L75.2,61.3 L70.2,59.7 L67.6,60.1 L66.8,60.4 L63.6,60.1 L61.1,57.8 L60.5,57.3 L60.3,57.1 L60.8,51.7 L61.8,51.9 L72.3,55.0 L80.5,57.2 L79.9,59.4 Z",WA,53039 2365,53005,0.55,0.51,Benton,"M79.6,60.6 L79.9,59.4 L80.5,57.2 L81.2,54.4 L83.0,47.6 L85.9,48.1 L88.0,48.0 L89.4,51.7 L88.3,55.2 L90.6,57.2 L90.6,57.2 L91.0,60.2 L90.4,60.5 L88.5,61.2 L84.9,60.5 L82.0,60.8 Z",WA,53005 2366,53071,0.07,0.73,Walla Walla,"M90.6,57.2 L94.0,56.4 L98.9,52.3 L101.4,53.0 L100.1,57.9 L102.6,60.0 L101.7,63.4 L92.9,61.2 L90.4,60.5 L91.0,60.2 L90.6,57.2 Z",WA,53071 2367,20205,0.50,0.50,Wilson,"M358.5,235.5 L358.5,233.8 L358.5,233.3 L362.4,233.3 L364.3,233.3 L364.3,237.2 L364.3,239.1 L363.7,239.1 L358.6,239.1 L358.5,239.1 L358.5,239.1 L358.5,239.1 L358.5,237.2 Z",KS,20205 2368,20049,0.50,0.50,Elk,"M358.5,239.1 L358.5,239.1 L358.5,240.6 L355.5,240.5 L351.0,240.5 L351.0,239.4 L351.0,237.6 L351.0,237.2 L351.0,235.4 L355.0,235.4 L358.5,235.5 L358.5,237.2 L358.5,239.1 Z",KS,20049 2369,20125,0.50,0.50,Montgomery,"M364.3,239.1 L364.3,239.1 L364.4,239.1 L364.4,241.3 L364.4,245.6 L362.9,245.6 L360.8,245.6 L359.1,245.6 L358.5,245.6 L358.5,244.0 L358.5,240.6 L358.5,239.1 L358.5,239.1 L358.5,239.1 L358.5,239.1 L363.7,239.1 Z",KS,20125 2370,22043,0.50,0.50,Grant,"M410.3,331.9 L411.9,336.9 L412.9,337.1 L406.3,338.9 L405.4,336.8 L402.6,335.0 L401.6,333.7 L406.7,333.5 Z",LA,22043 2371,22069,0.47,0.51,Natchitoches,"M401.6,333.7 L402.6,335.0 L405.4,336.8 L402.6,339.4 L401.7,339.8 L400.9,339.5 L398.0,339.6 L396.3,333.7 L394.8,331.6 L394.8,330.4 L396.0,330.1 L399.2,329.3 L398.3,326.4 L400.9,326.3 L401.8,326.2 L402.9,329.6 Z",LA,22069 2372,26011,0.54,0.52,Arenac,"M500.9,116.2 L502.1,116.0 L504.3,115.8 L506.0,115.5 L508.1,115.2 L508.0,116.9 L504.5,120.0 L502.9,120.2 L501.2,119.0 L501.0,117.0 L500.9,116.2 Z",MI,26011 2373,19111,0.38,0.44,Lee,"M416.6,187.5 L415.2,187.1 L412.6,184.0 L412.6,183.8 L412.4,180.4 L413.9,180.4 L416.4,180.3 L419.4,181.9 L420.3,182.0 L420.2,182.4 L419.4,183.0 L417.2,183.8 Z",IA,19111 2374,20141,0.50,0.50,Osborne,"M325.5,202.1 L325.6,202.1 L325.8,202.1 L325.8,202.1 L325.7,204.9 L325.6,208.0 L325.5,208.4 L325.5,209.4 L322.6,209.3 L318.4,209.2 L318.3,209.2 L318.4,204.8 L318.5,201.9 L324.7,202.1 Z",KS,20141 2375,20105,0.50,0.50,Lincoln,"M325.5,209.4 L325.5,208.4 L325.6,208.0 L329.6,208.1 L332.9,208.1 L332.8,209.8 L332.8,212.5 L332.8,213.7 L332.7,214.0 L332.7,214.0 L328.4,213.9 L325.5,213.8 L325.6,209.4 Z",KS,20105 2376,20053,0.50,0.50,Ellsworth,"M332.7,214.0 L332.7,216.9 L332.7,218.3 L332.7,219.1 L332.7,219.8 L332.2,219.8 L325.4,219.6 L325.5,216.7 L325.4,216.7 L325.4,215.8 L325.5,213.8 L328.4,213.9 L332.7,214.0 Z",KS,20053 2377,36099,0.43,0.51,Seneca,"M591.6,124.5 L591.3,122.7 L590.8,120.4 L591.8,120.1 L593.8,119.5 L593.8,119.5 L594.6,124.5 L595.8,126.0 L597.0,127.0 L595.7,127.3 L594.8,127.6 L593.3,127.9 L592.9,126.0 Z",NY,36099 2378,36123,0.47,0.52,Yates,"M591.6,124.5 L592.9,126.0 L593.3,127.9 L593.6,129.2 L590.9,129.4 L590.1,128.0 L587.4,128.6 L587.5,125.4 Z",NY,36123 2379,21125,0.53,0.56,Laurel,"M520.3,233.8 L519.3,235.2 L517.5,235.8 L516.4,236.3 L514.8,236.4 L514.2,236.5 L514.0,236.2 L514.2,234.5 L514.5,232.9 L514.8,231.4 L516.1,229.9 L518.0,230.7 L518.9,230.7 L518.7,232.0 Z",KY,21125 2380,47121,0.49,0.50,Meigs,"M511.6,256.9 L513.1,257.5 L513.2,258.5 L511.0,262.3 L510.6,263.8 L509.8,265.0 L509.5,265.0 L509.0,263.9 L508.3,263.1 L511.1,260.4 Z",TN,47121 2381,29213,0.50,0.49,Taney,"M394.6,253.4 L394.4,253.4 L394.3,253.4 L394.2,249.5 L394.3,248.1 L397.3,248.1 L399.6,248.1 L399.6,248.1 L400.1,248.1 L401.5,248.0 L401.6,250.1 L401.6,253.2 L401.0,253.2 L400.5,253.2 L396.7,253.4 Z",MO,29213 2382,08047,0.47,0.49,Gilpin,"M233.5,189.8 L237.1,190.2 L237.0,190.5 L236.9,191.4 L236.7,193.3 L234.9,192.7 L233.2,191.2 L233.1,190.5 Z",CO,8047 2383,40087,0.05,0.49,McClain,"M335.0,273.2 L339.3,277.6 L342.2,280.2 L343.9,280.5 L345.1,279.6 L345.1,281.4 L345.1,281.4 L345.1,281.4 L341.6,281.4 L334.9,281.3 L334.9,281.3 L335.0,273.2 L335.0,273.2 Z",OK,40087 2384,54031,0.44,0.55,Hardy,"M578.7,195.4 L578.2,195.1 L577.6,194.8 L577.6,194.8 L577.6,194.8 L577.5,191.0 L578.2,187.4 L579.4,187.9 L584.7,188.7 L584.6,189.1 L584.4,189.3 L581.8,192.7 L581.1,195.0 L579.3,193.8 Z",WV,54031 2385,51171,0.56,0.44,Shenandoah,"M581.1,195.0 L581.8,192.7 L584.4,189.3 L586.9,188.1 L587.5,189.5 L587.9,190.6 L587.1,192.7 L585.3,194.6 L584.6,197.0 L583.1,196.1 Z",VA,51171 2386,51139,0.55,0.48,Page,"M584.6,197.0 L585.3,194.6 L587.1,192.7 L588.5,193.2 L588.7,193.6 L588.3,194.6 L588.4,195.9 L588.1,197.1 L587.4,198.6 L587.4,199.1 L587.2,199.6 L584.2,198.7 Z",VA,51139 2387,40061,0.50,0.50,Haskell,"M371.0,271.3 L373.1,272.3 L374.3,273.5 L374.3,273.5 L372.7,275.6 L372.8,278.0 L370.4,278.0 L367.0,278.1 L365.5,276.4 L365.5,274.1 L366.4,273.6 L367.0,274.1 L368.4,274.6 Z",OK,40061 2388,54089,0.51,0.47,Summers,"M559.2,221.6 L557.5,220.6 L555.6,219.5 L557.2,217.0 L557.0,215.3 L557.8,214.7 L558.6,214.2 L560.8,215.6 L560.9,216.2 L561.0,216.4 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 L559.2,221.6 Z",WV,54089 2389,34013,0.52,0.49,Essex,"M634.2,150.0 L634.1,150.2 L634.0,150.7 L632.9,150.4 L630.9,150.3 L631.1,148.1 L631.5,147.5 L632.0,147.6 L633.6,148.3 L633.6,148.7 L633.5,148.9 L633.5,148.9 L633.5,148.9 L633.5,148.9 L633.5,149.7 L634.1,149.6 Z",NJ,34013 2390,29115,0.50,0.50,Linn,"M392.0,195.4 L391.9,194.4 L391.9,194.3 L395.5,194.1 L398.4,194.0 L398.5,194.0 L398.5,194.0 L398.6,198.1 L398.6,199.7 L395.7,199.7 L393.3,199.8 L392.1,199.8 Z",MO,29115 2391,13209,0.50,0.50,Montgomery,"M551.3,315.6 L551.3,315.9 L550.5,315.9 L549.6,315.1 L548.1,310.5 L548.2,310.2 L551.4,309.0 L551.3,311.4 Z",GA,13209 2392,41055,0.53,0.44,Sherman,"M66.8,60.4 L67.6,60.1 L70.2,59.7 L72.7,63.9 L70.8,64.6 L69.0,70.8 L63.6,66.9 L67.3,62.8 Z",OR,41055 2393,13133,0.66,0.39,Greene,"M536.5,292.0 L536.5,291.2 L534.2,288.7 L535.7,287.9 L535.8,287.4 L538.2,288.1 L539.9,288.0 L539.9,289.9 L540.2,291.7 L539.5,292.6 L538.4,293.9 L537.2,293.0 Z",GA,13133 2394,46017,0.49,0.50,Buffalo,"M322.4,128.8 L319.3,128.7 L317.2,128.6 L314.8,125.7 L314.7,124.2 L317.1,124.2 L318.0,124.3 L318.8,124.3 L322.6,124.4 L322.5,127.1 Z",SD,46017 2395,46085,0.87,0.50,Lyman,"M314.7,124.2 L314.8,125.7 L317.2,128.6 L315.8,133.2 L317.7,135.9 L317.7,135.9 L317.0,135.9 L314.8,135.8 L313.8,131.7 L306.4,131.9 L305.7,132.1 L305.1,131.8 L304.9,129.6 L305.1,124.2 L305.1,123.7 L310.3,123.9 L314.2,125.6 L313.7,123.7 L314.0,123.8 Z",SD,46085 2396,46053,0.14,0.48,Gregory,"M317.7,135.9 L322.7,141.8 L327.2,144.7 L322.4,144.5 L317.9,144.4 L317.9,144.4 L315.2,144.3 L314.4,144.2 L314.7,136.4 L314.8,135.8 L317.0,135.9 L317.7,135.9 Z",SD,46053 2397,48135,0.50,0.50,Ector,"M260.6,324.4 L263.9,324.6 L267.9,324.9 L267.5,330.7 L267.4,332.2 L267.4,332.2 L267.0,332.2 L262.9,331.9 L260.5,331.7 L260.4,331.7 L260.0,331.7 L260.2,329.6 Z",TX,48135 2398,48475,0.87,0.55,Ward,"M252.5,331.1 L260.0,331.7 L260.0,331.7 L260.4,331.7 L260.5,331.7 L260.2,336.4 L260.1,337.7 L259.2,338.1 L256.6,336.2 L250.3,334.7 L248.4,330.8 L250.1,330.9 Z",TX,48475 2399,48293,0.51,0.44,Limestone,"M347.6,332.6 L350.8,332.9 L350.8,332.9 L352.6,335.9 L354.6,339.4 L353.3,340.0 L353.4,340.3 L350.2,342.1 L349.3,342.6 L347.1,338.7 L346.4,337.5 L345.4,335.7 L344.6,334.3 L347.2,332.8 Z",TX,48293 2400,54037,0.64,0.50,Jefferson,"M593.3,186.3 L591.4,185.2 L590.2,184.6 L590.8,182.8 L592.1,180.3 L593.6,181.8 L594.1,182.9 L593.8,183.4 Z",WV,54037 2401,54003,0.46,0.40,Berkeley,"M592.1,180.3 L590.8,182.8 L590.2,184.6 L588.4,183.6 L587.3,183.0 L587.8,179.5 L589.2,178.8 L591.6,178.5 Z",WV,54003 2402,30067,0.54,0.71,Park,"M185.3,77.2 L189.6,77.9 L191.1,78.3 L190.8,85.1 L189.1,95.3 L191.0,95.6 L194.1,96.1 L194.1,96.1 L193.8,98.3 L193.7,98.9 L183.0,97.4 L179.0,96.6 L180.0,90.8 L183.5,87.2 Z",MT,30067 2403,48121,0.50,0.51,Denton,"M344.7,305.6 L346.1,305.6 L346.2,305.8 L346.1,309.3 L346.0,312.8 L344.4,312.8 L343.4,312.7 L338.4,312.7 L338.2,312.7 L338.3,308.3 L338.5,305.3 L342.1,305.4 Z",TX,48121 2404,37199,0.55,0.43,Yancey,"M541.1,249.1 L541.6,248.5 L542.0,247.3 L545.1,247.8 L546.5,250.8 L545.8,252.4 L544.9,253.1 L543.6,251.5 L542.8,251.5 L542.0,250.3 Z",NC,37199 2405,48387,0.50,0.50,Red River,"M374.8,306.4 L373.2,306.1 L370.3,306.0 L368.5,306.4 L367.8,306.3 L367.7,306.2 L367.7,306.2 L367.6,300.0 L367.6,297.9 L368.9,296.4 L369.8,296.9 L372.4,298.1 L375.6,300.7 L375.6,304.0 L375.7,307.0 L375.3,307.2 Z",TX,48387 2406,13301,0.43,0.63,Warren,"M544.9,288.7 L547.0,292.6 L549.4,293.0 L549.1,293.4 L548.8,293.8 L546.9,293.2 L544.3,294.8 L543.1,292.9 L542.5,291.8 L543.8,290.5 L544.5,288.9 L544.8,288.8 Z",GA,13301 2407,48197,0.50,0.50,Hardeman,"M302.3,290.9 L302.3,290.1 L302.3,289.4 L302.4,286.8 L302.5,285.2 L303.6,285.0 L304.6,286.2 L306.6,288.5 L309.7,288.3 L309.6,288.6 L309.5,293.5 L305.3,293.2 Z",TX,48197 2408,29099,0.43,0.49,Jefferson,"M428.3,225.0 L426.9,223.4 L427.2,219.9 L427.2,219.0 L431.5,218.2 L432.5,220.0 L432.4,222.8 L433.9,224.3 L433.4,225.0 L432.9,224.9 L431.9,225.8 L431.9,225.8 L431.8,225.8 L431.8,225.8 L429.7,226.6 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 Z",MO,29099 2409,29186,0.48,0.47,Ste. Genevieve,"M432.9,224.9 L433.4,225.0 L433.9,224.3 L434.1,224.5 L434.6,224.9 L437.6,226.8 L438.3,228.2 L438.3,228.2 L437.6,229.2 L436.3,231.8 L431.4,228.6 L433.1,226.8 L431.9,225.8 L431.9,225.8 Z",MO,29186 2410,21085,0.50,0.44,Grayson,"M489.3,232.8 L488.6,232.9 L485.2,233.5 L484.9,232.8 L483.1,232.5 L482.2,230.0 L483.1,229.6 L484.2,228.5 L487.3,228.7 L489.4,228.9 L490.5,230.8 L491.0,231.6 Z",KY,21085 2411,13149,0.52,0.43,Heard,"M512.4,296.2 L513.5,298.5 L513.8,299.4 L511.9,300.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L509.9,301.5 L508.8,297.9 L508.5,296.6 L510.9,296.3 Z",GA,13149 2412,01079,0.47,0.48,Lawrence,"M478.8,277.3 L480.5,277.7 L481.0,278.3 L481.3,281.4 L481.6,284.5 L481.6,284.7 L481.6,284.8 L478.9,285.0 L475.8,285.2 L475.6,283.5 L475.4,280.9 L476.3,279.4 L476.4,276.8 L477.6,276.8 Z",AL,1079 2413,01043,0.51,0.51,Cullman,"M481.6,284.8 L481.6,284.7 L481.6,284.5 L485.1,284.3 L488.9,283.9 L490.4,283.8 L490.8,284.5 L486.6,290.1 L484.4,291.9 L482.5,291.6 L481.5,289.9 L482.1,289.9 Z",AL,1043 2414,28093,0.50,0.52,Marshall,"M444.5,276.2 L444.6,276.2 L445.6,276.1 L447.8,276.0 L449.6,275.8 L450.5,278.3 L451.6,282.6 L451.7,283.2 L451.7,284.0 L448.4,283.3 L445.8,283.5 L445.6,281.3 L444.8,279.9 L444.7,278.2 Z",MS,28093 2415,20025,0.49,0.50,Clark,"M310.7,238.3 L310.5,241.4 L310.4,244.6 L306.0,244.4 L304.2,244.4 L304.1,244.3 L303.1,244.3 L303.3,237.9 L303.2,236.4 L307.6,236.7 L310.5,236.8 L310.5,238.3 Z",KS,20025 2416,20081,0.50,0.50,Haskell,"M290.3,237.2 L290.2,237.2 L290.0,237.2 L290.2,233.2 L290.4,231.3 L291.8,231.4 L296.2,231.7 L296.0,234.0 L295.9,236.0 L295.9,237.2 L295.9,237.5 L291.2,237.2 Z",KS,20081 2417,22013,0.49,0.51,Bienville,"M402.4,318.9 L402.5,321.1 L404.0,321.0 L404.1,324.7 L403.6,326.2 L402.3,326.2 L401.8,326.2 L400.9,326.3 L398.3,326.4 L397.8,324.9 L394.8,325.0 L395.1,322.7 L395.5,322.0 L398.7,321.2 L398.2,319.0 L400.7,318.9 L402.4,318.9 L402.4,318.9 Z",LA,22013 2418,13295,0.45,0.48,Walker,"M504.4,270.8 L505.5,270.6 L505.8,270.6 L506.0,272.8 L507.9,274.0 L509.3,274.6 L509.5,276.3 L509.3,276.3 L509.3,276.9 L509.2,276.9 L508.7,276.9 L505.1,277.3 L503.0,277.6 L502.8,277.2 L502.8,277.0 L503.5,273.4 Z",GA,13295 2419,19095,0.50,0.50,Iowa,"M410.2,163.0 L410.4,167.3 L410.5,168.8 L409.8,168.9 L409.0,168.9 L407.2,169.0 L404.6,169.1 L404.4,165.6 L404.4,163.2 L407.5,163.1 Z",IA,19095 2420,31019,0.50,0.51,Buffalo,"M317.4,183.6 L315.5,183.3 L314.4,183.3 L314.3,182.8 L314.5,177.0 L316.1,177.1 L317.3,177.1 L322.2,177.3 L323.1,177.3 L323.2,177.3 L323.5,177.3 L323.5,177.3 L323.4,180.0 L323.3,183.1 L323.3,183.1 L323.3,183.3 L320.9,183.8 Z",NE,31019 2421,31093,0.50,0.50,Howard,"M323.2,177.3 L323.1,177.3 L323.1,176.3 L323.4,171.5 L326.4,171.6 L329.1,171.6 L329.1,171.6 L329.1,171.6 L329.1,174.5 L329.0,177.5 L325.8,177.4 L323.5,177.3 L323.5,177.3 Z",NE,31093 2422,48357,0.50,0.50,Ochiltree,"M291.0,252.1 L292.5,252.2 L296.5,252.4 L296.5,252.4 L296.3,257.2 L296.2,259.8 L289.2,259.4 L288.8,259.4 L289.1,254.1 L289.3,252.0 L290.7,252.1 Z",TX,48357 2423,53015,0.81,0.73,Cowlitz,"M44.4,40.7 L45.8,41.1 L55.3,44.0 L54.5,46.9 L53.7,49.4 L53.7,49.4 L50.7,49.7 L46.6,50.9 L46.4,46.7 L43.6,44.1 L43.5,44.1 L43.4,44.1 L43.7,42.9 Z",WA,53015 2424,48297,0.51,0.50,Live Oak,"M324.3,395.8 L324.0,395.8 L322.8,395.7 L323.0,388.2 L323.0,386.3 L325.8,384.1 L326.6,383.4 L327.2,384.2 L328.0,385.1 L326.7,385.5 L330.6,393.9 L329.3,394.9 L329.6,395.9 L329.2,395.9 Z",TX,48297 2425,29135,0.66,0.56,Moniteau,"M403.8,212.5 L405.4,214.5 L405.2,215.5 L404.4,219.6 L404.1,220.8 L404.0,220.8 L402.4,220.8 L399.5,218.1 L399.4,216.7 L399.4,216.7 L402.4,216.6 Z",MO,29135 2426,40043,0.05,0.47,Dewey,"M317.8,259.0 L319.1,259.0 L322.2,259.0 L322.0,263.5 L322.1,264.9 L318.0,264.8 L311.9,264.6 L311.9,263.2 L312.0,261.2 L312.0,260.0 L312.1,258.7 L315.5,258.9 Z",OK,40043 2427,37023,0.42,0.59,Burke,"M548.7,248.2 L549.2,247.4 L550.5,247.9 L554.4,250.4 L557.0,250.1 L556.4,251.5 L555.2,253.8 L555.2,253.8 L555.2,253.9 L553.7,254.2 L553.1,254.0 L552.2,253.6 L551.3,254.3 L548.5,250.8 Z",NC,37023 2428,37191,0.47,0.52,Wayne,"M606.1,247.9 L606.0,248.4 L606.4,251.2 L605.7,251.9 L601.9,251.9 L600.6,251.5 L599.7,250.7 L601.5,249.2 L601.9,245.1 L601.9,245.1 L602.8,244.9 L605.2,244.5 L605.6,247.0 Z",NC,37191 2429,05061,0.67,0.44,Howard,"M386.6,299.7 L386.6,299.7 L386.6,299.7 L384.5,292.4 L382.5,292.4 L382.3,289.7 L386.7,289.6 L388.4,292.4 L388.4,295.3 L388.4,299.7 Z",AR,5061 2430,37059,0.46,0.43,Davie,"M569.3,248.5 L566.6,247.2 L565.6,247.3 L565.4,245.5 L565.2,244.0 L566.2,243.8 L567.9,243.6 L567.9,243.6 L568.2,243.3 L569.4,244.6 L570.1,245.8 Z",NC,37059 2431,37111,0.37,0.58,McDowell,"M546.5,250.8 L548.2,249.7 L548.3,249.1 L548.6,248.8 L548.7,248.2 L548.5,250.8 L551.3,254.3 L549.4,255.5 L546.7,255.8 L544.9,255.0 L544.9,253.1 L545.8,252.4 Z",NC,37111 2432,05099,0.50,0.50,Nevada,"M398.6,298.9 L398.6,301.4 L398.6,304.4 L397.1,304.7 L395.1,304.6 L393.4,304.6 L393.4,304.2 L393.4,298.3 L393.6,296.1 L394.4,296.2 L394.7,296.0 L395.9,297.9 Z",AR,5099 2433,08121,0.86,0.52,Washington,"M270.5,192.0 L269.9,199.3 L268.3,199.1 L265.4,199.0 L265.4,199.0 L261.5,198.7 L258.2,198.4 L258.3,197.4 L258.5,195.5 L258.7,192.7 L258.9,191.1 L261.9,191.4 L262.6,184.1 L263.8,184.2 L271.3,184.8 L271.3,184.8 Z",CO,8121 2434,48385,0.52,0.51,Real,"M304.7,368.5 L302.5,368.4 L298.6,368.3 L299.6,360.6 L302.7,360.8 L303.6,363.7 L304.9,363.7 L304.8,366.4 Z",TX,48385 2435,39011,0.53,0.45,Auglaize,"M512.4,176.0 L510.9,176.3 L511.0,177.1 L506.7,177.7 L505.8,180.0 L505.5,180.0 L504.8,174.5 L505.3,174.5 L505.5,174.4 L509.3,174.7 L512.1,174.3 L512.2,175.0 Z",OH,39011 2436,39107,0.50,0.50,Mercer,"M504.8,174.5 L505.5,180.0 L505.8,180.0 L505.8,180.0 L505.7,180.0 L503.7,180.3 L501.1,180.6 L501.1,180.6 L500.9,179.8 L500.6,177.0 L500.5,176.0 L500.3,174.4 L504.7,173.8 Z",OH,39107 2437,18001,0.51,0.50,Adams,"M500.3,174.4 L500.5,176.0 L500.6,177.0 L498.7,177.2 L497.3,177.4 L497.1,176.0 L496.5,171.6 L498.9,171.3 L499.9,171.1 L500.0,172.3 Z",IN,18001 2438,20169,0.50,0.50,Saline,"M332.8,212.5 L334.6,212.6 L340.1,212.7 L340.0,213.4 L340.0,218.5 L336.0,218.4 L332.7,218.3 L332.7,216.9 L332.7,214.0 L332.7,214.0 L332.8,213.7 Z",KS,20169 2439,21153,0.62,0.45,Magoffin,"M531.0,221.1 L532.3,223.9 L531.8,224.9 L531.6,224.9 L531.4,224.7 L529.3,222.8 L527.1,222.5 L527.1,222.0 L526.8,221.8 L528.4,219.0 L529.9,218.9 L530.7,219.8 Z",KY,21153 2440,48017,0.50,0.50,Bailey,"M260.0,287.0 L260.0,286.8 L260.0,286.8 L262.3,287.0 L265.9,287.2 L265.5,293.5 L265.3,295.4 L263.6,295.3 L259.3,295.0 L259.5,292.5 Z",TX,48017 2441,29027,0.49,0.50,Callaway,"M415.0,215.7 L412.2,216.5 L410.4,218.1 L408.4,218.1 L407.6,217.0 L408.1,212.8 L408.7,209.9 L411.7,209.8 L414.9,209.7 L415.0,213.7 Z",MO,29027 2442,56029,0.64,0.56,Park,"M177.9,102.1 L178.8,96.5 L179.0,96.6 L183.0,97.4 L193.7,98.9 L201.9,100.1 L207.6,101.0 L207.6,103.2 L206.5,114.9 L206.4,115.7 L206.3,116.4 L203.4,116.0 L201.5,118.7 L196.5,119.5 L194.1,116.7 L190.7,118.9 L188.1,115.0 L185.8,104.8 Z",WY,56029 2443,42093,0.50,0.50,Montour,"M601.3,150.0 L603.5,152.9 L603.7,154.1 L600.1,153.8 L600.1,150.0 L600.8,150.1 Z",PA,42093 2444,36081,0.63,0.40,Queens,"M636.1,149.1 L636.5,148.1 L638.4,147.7 L639.2,148.1 L639.2,150.9 L638.9,150.5 L637.7,150.3 L637.0,149.8 Z",NY,36081 2445,26031,0.53,0.46,Cheboygan,"M497.6,99.0 L496.7,99.2 L496.2,99.2 L493.8,99.5 L491.9,99.7 L491.8,99.3 L491.7,98.2 L491.5,96.7 L490.7,89.8 L494.1,91.5 L497.2,91.8 L496.7,91.9 Z",MI,26031 2446,26047,0.45,0.51,Emmet,"M490.7,89.8 L491.5,96.7 L491.7,98.2 L488.4,98.8 L487.2,97.2 L486.9,93.0 Z",MI,26047 2447,26051,0.50,0.50,Gladwin,"M500.9,116.2 L501.0,117.0 L501.2,119.0 L501.4,120.4 L501.6,121.8 L499.2,122.3 L496.3,122.7 L496.3,122.7 L496.3,122.7 L496.3,122.7 L496.3,122.7 L495.7,117.6 L495.6,116.9 L496.5,116.8 L498.4,116.6 L499.9,116.3 Z",MI,26051 2448,26111,0.50,0.50,Midland,"M496.3,122.7 L499.2,122.3 L501.6,121.8 L502.0,124.9 L502.1,126.1 L502.3,127.6 L499.9,128.1 L498.1,128.4 L497.0,128.5 L496.7,125.8 L496.3,122.7 L496.3,122.7 L496.3,122.7 L496.3,122.7 Z",MI,26111 2449,21173,0.51,0.56,Montgomery,"M519.7,219.3 L518.3,219.7 L517.1,219.4 L516.8,219.0 L515.1,216.6 L516.2,215.4 L516.3,215.1 L517.7,215.9 L519.6,217.9 L519.4,218.1 Z",KY,21173 2450,45023,0.51,0.54,Chester,"M565.9,264.8 L566.8,266.7 L566.9,269.3 L564.4,269.6 L559.4,270.1 L558.7,268.4 L558.0,266.1 L562.9,265.3 Z",SC,45023 2451,21123,0.40,0.72,Larue,"M498.2,229.6 L497.4,229.9 L496.7,229.7 L496.0,229.8 L495.8,230.7 L494.5,230.6 L492.6,230.7 L492.6,229.0 L494.9,225.5 L496.0,228.4 L497.3,228.2 L497.6,228.3 Z",KY,21123 2452,19193,0.96,0.50,Woodbury,"M353.5,158.2 L353.9,158.0 L353.5,157.2 L353.5,157.2 L353.5,157.2 L353.2,154.3 L352.4,153.6 L352.4,153.6 L352.4,153.6 L352.4,153.6 L352.4,153.6 L351.9,153.2 L351.8,152.4 L352.8,152.4 L359.7,152.4 L360.7,152.4 L361.2,152.4 L362.1,153.9 L362.1,158.3 L358.4,158.3 Z",IA,19193 2453,19093,0.51,0.50,Ida,"M362.1,158.3 L362.1,153.9 L361.2,152.4 L364.0,152.4 L365.6,152.4 L366.4,153.8 L366.4,158.3 L365.0,158.3 Z",IA,19093 2454,12123,0.26,0.15,Taylor,"M544.5,353.2 L544.1,355.9 L543.5,356.0 L539.0,352.3 L534.1,350.2 L534.8,347.3 L536.1,346.1 L541.2,345.4 L542.8,346.0 L543.6,352.2 Z",FL,12123 2455,29201,0.41,0.52,Scott,"M442.8,245.0 L442.8,243.8 L441.5,240.6 L443.3,238.7 L445.0,238.2 L446.7,240.7 L447.7,242.1 L445.7,243.5 L445.1,244.6 L443.9,244.9 Z",MO,29201 2456,17003,0.48,0.54,Alexander,"M447.7,242.1 L446.7,240.7 L445.0,238.2 L444.6,237.7 L445.0,236.8 L446.6,236.7 L448.1,236.6 L448.1,240.1 L449.5,241.0 L449.5,241.9 L450.1,242.4 L448.3,241.1 Z",IL,17003 2457,17181,0.50,0.50,Union,"M448.1,236.6 L446.6,236.7 L445.0,236.8 L445.8,235.8 L444.2,233.0 L444.2,233.0 L444.2,232.9 L445.1,232.4 L449.1,232.1 L450.1,232.1 L450.6,232.0 L450.7,234.4 L450.9,236.5 L450.1,236.5 Z",IL,17181 2458,29113,0.50,0.50,Lincoln,"M419.8,210.6 L419.8,209.6 L419.7,208.1 L420.7,206.6 L426.7,206.3 L427.3,208.6 L427.7,211.1 L425.7,212.2 L423.9,212.4 L421.9,212.5 Z",MO,29113 2459,13051,0.54,0.39,Chatham,"M570.7,314.5 L572.2,314.7 L570.8,316.5 L570.3,315.2 Z M573.7,310.9 L572.9,313.9 L570.7,314.5 L568.2,312.8 L566.5,311.1 L568.9,308.3 L569.6,308.3 L570.3,310.1 Z",GA,13051 2460,12125,0.48,0.43,Union,"M560.9,345.3 L558.9,348.8 L557.4,349.6 L556.0,349.4 L555.7,349.6 L554.9,348.8 L556.3,346.1 L557.7,345.8 Z",FL,12125 2461,36037,0.53,0.51,Genesee,"M572.3,122.2 L573.0,122.0 L577.9,121.0 L579.0,120.7 L579.5,123.1 L579.2,124.6 L579.3,125.3 L577.9,125.5 L573.2,126.5 L572.7,124.1 L572.5,122.8 L572.5,122.8 L572.4,122.7 Z",NY,36037 2462,19141,0.50,0.50,O'Brien,"M365.5,142.9 L365.5,146.5 L365.5,146.5 L365.5,146.5 L362.6,146.6 L359.7,146.6 L359.7,143.7 L359.7,140.7 L362.6,140.7 L365.5,140.7 L365.5,140.7 Z",IA,19141 2463,19041,0.50,0.50,Clay,"M365.5,142.9 L365.5,140.7 L365.5,140.7 L368.9,140.7 L371.3,140.7 L371.4,143.6 L371.4,146.5 L369.7,146.5 L365.5,146.5 L365.5,146.5 L365.5,146.5 L365.5,146.5 L365.5,146.5 L365.5,146.5 Z",IA,19041 2464,46107,0.96,0.53,Potter,"M305.3,111.9 L305.5,109.7 L307.3,106.1 L311.1,106.3 L313.8,106.4 L315.0,106.4 L315.4,106.5 L315.3,110.2 L315.2,112.3 L314.8,112.3 L314.0,112.3 L306.7,111.9 Z",SD,46107 2465,23005,0.45,0.38,Cumberland,"M663.5,84.5 L668.4,85.3 L669.0,83.9 L670.0,84.7 L671.2,85.2 L667.9,89.1 L667.4,92.1 L664.2,89.9 L661.0,89.1 L659.4,84.9 L661.2,82.8 Z",ME,23005 2466,20095,0.50,0.50,Kingman,"M333.9,237.4 L333.9,238.3 L333.8,238.9 L329.3,238.8 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L325.1,238.7 L325.1,237.2 L325.2,234.8 L325.2,232.9 L329.1,233.0 L333.9,233.0 L333.9,234.5 Z",KS,20095 2467,13241,0.47,0.38,Rabun,"M535.3,266.5 L533.7,268.8 L532.6,271.7 L529.8,271.5 L528.2,270.5 L528.0,269.5 L529.3,267.4 L529.9,267.4 L530.2,267.3 L532.8,266.9 L535.3,266.5 L535.3,266.5 L535.3,266.5 L535.3,266.5 Z",GA,13241 2468,54097,0.50,0.50,Upshur,"M561.7,192.7 L562.4,192.6 L562.6,192.4 L565.0,193.3 L564.9,194.8 L565.0,198.2 L563.2,199.4 L562.7,199.7 L561.6,199.1 L561.3,196.7 Z",WV,54097 2469,05119,0.50,0.59,Pulaski,"M411.5,277.7 L411.9,284.2 L413.1,286.4 L412.2,286.4 L410.6,286.5 L410.4,286.5 L410.1,286.5 L407.3,283.6 L403.0,280.7 L402.8,279.8 L405.7,278.9 L410.0,279.2 Z",AR,5119 2470,19047,0.50,0.50,Crawford,"M363.5,164.1 L363.1,164.1 L362.1,164.1 L362.1,160.8 L362.1,158.3 L365.0,158.3 L366.4,158.3 L367.9,158.3 L369.3,158.3 L369.3,161.9 L369.3,164.1 L366.5,164.1 Z",IA,19047 2471,39055,0.46,0.50,Geauga,"M541.1,154.3 L544.5,152.5 L545.5,151.1 L545.9,153.6 L546.1,154.6 L546.4,156.3 L546.5,157.2 L542.8,157.8 L541.7,158.0 L541.5,156.7 Z",OH,39055 2472,36117,0.49,0.55,Wayne,"M584.9,116.8 L589.6,116.0 L592.5,114.3 L593.7,118.6 L593.8,119.5 L593.8,119.5 L593.8,119.5 L591.8,120.1 L590.8,120.4 L588.7,120.4 L585.8,121.0 L585.4,119.0 Z",NY,36117 2473,51163,0.40,0.52,Rockbridge,"M573.7,211.5 L574.1,210.4 L575.3,207.6 L579.7,209.7 L580.1,210.0 L580.4,210.5 L580.2,211.5 L579.0,211.8 L577.3,215.2 L577.3,215.2 L577.5,215.9 L576.8,216.7 L573.9,215.0 L573.8,213.4 L574.2,212.1 Z M576.5,212.5 L576.6,212.8 L577.0,212.3 L576.8,212.3 Z M577.7,213.6 L578.1,213.6 L578.3,213.0 L578.1,212.6 Z",VA,51163 2474,38095,0.53,0.07,Towner,"M321.7,53.8 L319.1,53.7 L318.4,53.6 L318.5,52.3 L318.5,50.7 L318.3,47.7 L318.5,43.1 L324.4,43.3 L324.2,47.9 L324.4,50.9 L324.3,53.9 Z",ND,38095 2475,42045,0.53,0.67,Delaware,"M621.2,164.2 L621.9,164.9 L622.6,165.4 L623.3,165.9 L623.6,166.9 L621.7,168.0 L621.4,168.6 L620.6,168.4 L619.3,168.6 L619.2,168.5 L619.2,168.6 L619.1,168.6 L619.1,168.6 L619.0,168.0 Z M623.1,167.5 L623.2,167.5 L623.3,167.4 L623.1,167.5 Z",PA,42045 2476,50021,0.56,0.48,Rutland,"M634.1,105.0 L633.1,101.1 L630.9,98.2 L632.3,96.4 L635.4,95.8 L639.1,97.4 L638.7,104.1 L636.0,104.7 Z",VT,50021 2477,50003,0.57,0.50,Bennington,"M634.1,105.0 L636.0,104.7 L638.7,104.1 L639.3,104.0 L639.5,104.7 L637.9,107.4 L640.3,113.4 L639.4,113.6 L639.2,113.7 L638.1,113.9 L636.3,114.3 L635.7,113.5 L635.4,111.1 L634.3,105.9 Z",VT,50003 2478,12019,0.51,0.48,Clay,"M562.2,345.1 L562.2,345.0 L562.1,344.4 L567.5,343.5 L567.6,344.6 L567.8,346.2 L569.8,349.1 L566.5,349.7 L563.3,352.2 L563.3,351.7 Z",FL,12019 2479,37183,0.45,0.56,Wake,"M591.2,238.9 L592.1,238.7 L594.1,239.2 L597.7,240.6 L598.6,241.8 L596.2,244.1 L593.5,247.9 L591.4,247.5 L590.5,247.4 L589.3,247.1 L589.7,242.7 L592.1,239.8 Z",NC,37183 2480,39061,0.49,0.46,Hamilton,"M507.5,201.0 L506.9,201.0 L506.0,201.6 L504.2,200.6 L503.4,201.4 L503.1,198.9 L503.0,198.0 L505.4,197.6 L509.1,197.5 L510.2,197.4 L510.3,197.7 L509.7,198.5 L510.1,201.9 L508.6,201.5 Z",OH,39061 2481,04015,0.26,0.63,Mohave,"M116.7,224.1 L117.0,222.3 L117.2,221.6 L118.3,221.8 L132.3,224.5 L132.7,224.6 L137.1,225.4 L134.0,235.2 L124.0,238.3 L121.9,247.6 L121.1,252.2 L118.1,267.6 L114.1,268.3 L107.1,265.6 L104.8,262.6 L102.7,252.8 L104.1,250.3 L104.8,234.6 L110.1,234.8 L112.6,237.3 L114.6,234.8 Z",AZ,4015 2482,30085,0.51,0.50,Roosevelt,"M253.5,54.3 L250.1,53.4 L246.0,54.5 L246.9,51.0 L247.5,45.2 L249.6,45.4 L256.8,46.1 L260.4,49.5 L267.0,50.1 L266.7,54.0 L266.4,56.7 L257.1,53.2 Z",MT,30085 2483,19019,0.50,0.50,Buchanan,"M409.9,155.6 L408.2,155.7 L407.0,155.8 L406.6,152.9 L406.5,150.0 L409.4,149.9 L412.4,149.7 L412.5,152.6 L412.8,155.5 L411.2,155.6 Z",IA,19019 2484,46047,0.16,0.46,Fall River,"M271.8,141.7 L266.8,141.3 L265.6,141.2 L263.8,141.1 L258.9,140.7 L259.3,135.1 L259.6,132.7 L268.5,133.4 L272.4,133.8 L272.1,137.6 Z",SD,46047 2485,27069,0.50,0.50,Kittson,"M344.2,43.7 L353.4,43.8 L353.4,48.5 L353.6,51.4 L347.7,51.4 L344.8,51.4 L345.7,49.0 Z",MN,27069 2486,13219,0.58,0.41,Oconee,"M532.5,286.9 L531.5,286.5 L530.4,285.7 L531.3,284.9 L531.8,284.5 L533.6,285.0 L535.7,285.9 L535.3,286.6 L535.8,287.4 L535.7,287.9 L534.2,288.7 L533.4,287.8 Z",GA,13219 2487,48493,0.46,0.42,Wilson,"M330.7,373.5 L330.4,373.9 L332.3,376.2 L326.9,380.5 L325.3,381.8 L324.1,380.3 L322.1,377.8 L323.9,375.5 L326.3,372.3 L327.0,373.4 Z",TX,48493 2488,12079,0.49,0.50,Madison,"M542.0,339.6 L542.2,339.6 L542.3,339.6 L542.7,339.6 L542.7,339.6 L544.1,342.2 L545.3,343.5 L544.8,344.2 L544.5,345.7 L543.7,345.8 L542.8,346.0 L541.2,345.4 L536.1,346.1 L536.8,342.6 L538.3,339.9 L540.0,339.8 Z",FL,12079 2489,18153,0.49,0.51,Sullivan,"M467.1,202.7 L469.4,202.5 L471.8,202.3 L471.9,203.1 L471.9,203.7 L472.2,206.9 L472.4,208.1 L472.4,208.1 L472.4,208.2 L468.7,208.6 L467.8,206.0 L466.9,204.4 L467.5,203.5 Z",IN,18153 2490,13027,0.44,0.49,Brooks,"M537.9,332.7 L538.6,333.0 L539.4,333.3 L541.5,336.3 L542.0,339.6 L540.0,339.8 L538.3,339.9 L537.4,340.0 L536.4,340.1 L536.1,337.4 L535.6,333.7 L538.0,333.4 Z M542.3,339.6 L542.5,339.5 L542.7,339.6 L542.7,339.6 Z",GA,13027 2491,20185,0.50,0.50,Stafford,"M319.5,223.8 L322.1,223.9 L325.3,224.0 L325.4,224.0 L325.3,225.5 L325.2,229.8 L325.2,231.3 L321.1,231.2 L318.0,231.1 L317.9,231.1 L318.0,228.2 L319.4,228.2 Z",KS,20185 2492,20159,0.50,0.50,Rice,"M325.3,225.5 L325.4,224.0 L325.3,224.0 L325.3,222.1 L325.4,219.6 L332.2,219.8 L332.7,219.8 L332.6,224.2 L332.6,225.6 L329.7,225.6 Z",KS,20159 2493,26115,0.53,0.48,Monroe,"M510.3,150.2 L511.7,150.0 L513.2,149.7 L516.2,149.2 L517.5,150.0 L515.3,154.1 L514.9,155.5 L513.1,155.8 L511.2,156.1 L510.9,154.4 Z M517.7,150.1 L517.8,150.3 L517.5,150.0 L517.6,150.0 Z",MI,26115 2494,21139,0.55,0.50,Livingston,"M459.9,234.5 L462.0,236.5 L462.5,238.6 L462.1,239.7 L462.1,241.4 L460.3,240.2 L458.8,241.0 L458.4,241.0 L457.6,240.2 L458.3,240.3 L458.6,240.3 L458.3,238.6 L458.3,238.6 L458.3,238.6 L458.3,238.6 L458.1,237.1 L459.1,234.2 L459.4,234.3 Z",KY,21139 2495,47103,0.48,0.47,Lincoln,"M486.8,266.3 L487.0,266.2 L487.9,266.3 L489.9,268.1 L491.1,269.8 L491.2,270.9 L491.3,272.1 L489.3,272.3 L484.9,272.8 L484.5,272.8 L484.2,272.8 L484.1,271.0 L483.9,268.3 L485.0,268.4 Z",TN,47103 2496,21103,0.46,0.72,Henry,"M502.7,214.4 L501.1,214.5 L498.9,214.5 L497.9,212.9 L498.2,212.3 L498.7,212.2 L499.9,210.6 L500.5,210.4 L501.1,210.2 L502.9,212.7 L504.3,213.9 L503.8,213.6 Z",KY,21103 2497,21211,0.50,0.51,Shelby,"M498.9,214.5 L501.1,214.5 L502.7,214.4 L502.8,215.4 L502.7,217.9 L502.5,218.9 L501.9,219.6 L500.1,218.9 L497.5,218.2 L497.5,216.3 L496.6,216.0 L498.4,215.4 Z",KY,21211 2498,42001,0.50,0.47,Adams,"M598.9,169.1 L601.9,172.1 L601.8,174.4 L601.1,174.6 L599.1,175.0 L597.1,175.4 L596.0,175.7 L595.6,174.0 L595.1,172.0 L595.8,171.0 Z",PA,42001 2499,45009,0.34,0.47,Bamberg,"M568.3,294.9 L567.6,294.6 L566.5,293.6 L565.9,293.0 L565.2,288.4 L569.4,289.9 L571.9,291.7 L570.1,293.3 Z",SC,45009 2500,49047,0.82,0.51,Uintah,"M178.3,184.8 L179.1,178.9 L180.8,168.1 L182.0,169.1 L190.6,168.8 L192.1,172.3 L191.6,175.9 L191.0,179.6 L190.2,185.4 L189.7,188.9 L189.3,191.6 L189.3,191.6 L188.5,192.1 L176.7,190.3 L176.7,190.3 L176.7,190.2 L176.7,190.2 L177.7,186.4 Z",UT,49047 2501,49049,0.53,0.46,Utah,"M166.8,181.3 L167.2,181.4 L167.0,182.8 L164.2,182.3 L162.0,182.0 L158.5,181.4 L157.0,181.1 L155.4,178.9 L151.2,180.7 L150.8,176.7 L151.7,174.1 L152.2,169.2 L154.9,170.4 L159.8,168.6 L159.1,170.7 L162.5,174.0 L164.4,180.9 Z",UT,49049 2502,29141,0.50,0.50,Morgan,"M396.5,216.6 L398.0,216.7 L399.4,216.7 L399.4,216.7 L399.4,216.7 L399.5,218.1 L402.4,220.8 L401.6,222.2 L401.6,224.3 L397.9,224.9 L396.5,223.8 L396.6,220.8 L396.5,219.3 L396.5,219.3 L396.5,218.3 Z",MO,29141 2503,29015,0.50,0.50,Benton,"M396.6,220.8 L396.5,223.8 L396.8,225.1 L396.8,227.2 L393.4,227.2 L391.0,227.1 L391.0,225.0 L390.7,224.9 L390.7,220.9 L390.7,219.8 L393.6,219.3 L396.5,219.3 L396.5,219.3 Z",MO,29015 2504,19143,0.50,0.50,Osceola,"M359.7,136.7 L364.1,136.6 L364.7,136.6 L364.9,136.6 L365.5,136.6 L365.5,138.1 L365.5,140.7 L365.5,140.7 L362.6,140.7 L359.7,140.7 L359.7,139.2 Z",IA,19143 2505,18079,0.52,0.50,Jennings,"M492.1,202.3 L493.7,202.1 L495.2,200.8 L495.5,204.1 L495.7,205.5 L494.6,206.2 L492.8,207.5 L492.4,207.3 L491.3,207.8 L491.1,205.9 L490.8,203.5 L490.7,202.5 Z",IN,18079 2506,18143,0.41,0.48,Scott,"M491.3,207.8 L492.4,207.3 L492.8,207.5 L492.9,208.8 L494.7,210.8 L494.7,210.8 L491.7,211.2 L491.1,212.0 L490.6,211.8 L490.3,209.2 L490.3,209.2 L490.9,209.0 Z",IN,18143 2507,16083,0.23,0.46,Twin Falls,"M124.3,124.4 L124.6,122.9 L124.8,122.0 L126.6,126.5 L129.0,127.4 L134.4,131.2 L136.0,131.0 L132.2,132.0 L130.8,139.0 L124.4,137.6 L121.6,137.1 L121.9,135.4 Z",ID,16083 2508,17165,0.50,0.50,Saline,"M454.7,227.2 L454.6,226.8 L454.6,226.5 L456.9,226.3 L459.0,226.1 L459.2,229.1 L459.4,231.3 L459.2,231.3 L458.9,231.3 L456.7,231.5 L455.0,231.6 L454.9,230.1 Z",IL,17165 2509,45061,0.48,0.54,Lee,"M573.5,274.6 L573.9,272.4 L575.5,270.9 L577.0,270.6 L579.3,275.0 L579.9,275.0 L580.4,275.4 L578.2,277.4 Z",SC,45061 2510,56019,0.16,0.48,Johnson,"M235.7,130.0 L235.3,130.0 L235.0,129.9 L222.4,128.5 L222.4,128.4 L223.6,117.2 L223.4,117.2 L223.3,112.5 L221.5,110.3 L232.7,111.7 L232.8,111.6 L237.5,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.0,118.7 Z M237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 L237.8,112.1 Z",WY,56019 2511,26165,0.50,0.50,Wexford,"M486.8,117.9 L484.8,118.2 L484.1,118.2 L481.8,118.5 L481.0,118.6 L480.6,115.0 L480.4,112.8 L483.5,112.4 L486.1,112.1 L486.3,113.6 Z",MI,26165 2512,26055,0.48,0.50,Grand Traverse,"M486.1,112.1 L483.5,112.4 L480.4,112.8 L480.1,110.1 L479.9,108.4 L482.2,108.1 L482.3,107.9 L482.8,107.9 L483.9,106.5 L484.9,106.4 L485.6,107.1 L486.0,110.6 Z",MI,26055 2513,26079,0.49,0.50,Kalkaska,"M486.1,112.1 L486.0,110.6 L485.6,107.1 L486.0,106.2 L491.2,105.6 L491.6,108.5 L491.9,111.4 L489.8,111.7 Z",MI,26079 2514,22003,0.49,0.50,Allen,"M407.3,354.1 L405.2,355.0 L400.0,355.4 L402.1,352.4 L402.0,347.7 L404.2,347.6 L404.2,347.4 L404.2,347.4 L405.7,347.2 L407.5,347.2 L407.5,347.2 L407.7,352.5 Z",LA,22003 2515,22011,0.92,0.49,Beauregard,"M402.0,347.7 L402.1,352.4 L400.0,355.4 L400.0,355.5 L400.0,355.8 L394.8,355.9 L391.1,356.0 L391.9,352.8 L393.5,348.1 L395.5,347.8 Z",LA,22011 2516,46069,0.50,0.50,Hyde,"M314.0,112.3 L314.8,112.3 L315.2,112.3 L316.3,112.4 L318.3,112.4 L318.3,118.3 L318.0,124.3 L317.1,124.2 L314.7,124.2 L314.0,123.8 L313.7,123.7 L313.9,118.1 L313.7,118.1 L314.0,113.3 Z",SD,46069 2517,45027,0.28,0.90,Clarendon,"M580.6,284.8 L580.1,285.7 L579.1,285.9 L577.3,286.5 L575.0,284.7 L574.8,284.2 L574.2,283.4 L575.7,281.0 L581.1,277.0 L581.6,278.0 L582.6,277.8 L581.3,280.0 Z",SC,45027 2518,30095,0.78,0.35,Stillwater,"M200.8,82.2 L201.0,80.7 L206.7,81.6 L205.9,89.1 L206.4,90.4 L206.4,90.4 L206.4,90.4 L197.4,93.3 L194.1,96.1 L194.1,96.1 L191.0,95.6 L193.4,90.0 L198.0,89.2 Z",MT,30095 2519,21219,0.43,0.49,Todd,"M475.1,238.7 L475.2,239.2 L477.8,238.6 L478.3,243.9 L478.4,245.6 L478.3,245.6 L477.7,245.7 L475.9,245.9 L474.7,246.0 L474.9,242.1 Z",KY,21219 2520,47183,0.50,0.51,Weakley,"M455.0,250.1 L456.7,249.9 L459.1,249.7 L459.3,254.1 L459.3,255.6 L457.7,256.3 L457.3,257.3 L455.2,256.4 L453.4,254.9 L453.3,251.8 L454.9,250.1 L454.9,250.1 Z",TN,47183 2521,47017,0.45,0.48,Carroll,"M457.3,257.3 L457.7,256.3 L459.3,255.6 L463.7,255.3 L463.7,255.8 L464.0,260.3 L464.6,260.3 L464.6,260.7 L464.6,260.8 L459.3,261.1 L458.8,261.7 L458.0,261.8 L457.4,261.8 L457.3,259.0 Z",TN,47017 2522,29077,0.50,0.50,Greene,"M390.0,243.5 L390.0,240.4 L389.7,240.4 L389.7,238.7 L389.7,238.0 L391.2,238.0 L395.6,238.0 L396.2,238.0 L397.1,238.0 L397.3,240.4 L397.3,243.4 L394.3,243.4 Z",MO,29077 2523,31159,0.50,0.50,Seward,"M346.4,177.8 L346.4,183.6 L346.3,183.6 L344.2,183.6 L340.5,183.5 L340.5,183.5 L340.5,183.5 L340.6,179.5 L340.6,177.7 L343.1,177.7 Z",NE,31159 2524,36015,0.51,0.48,Chemung,"M597.6,131.5 L598.0,131.4 L598.5,131.3 L599.3,135.0 L599.3,135.9 L595.9,136.6 L594.8,136.9 L594.7,136.9 L594.3,137.0 L594.2,136.6 L593.4,132.4 L596.1,131.6 L596.6,131.5 L596.6,131.5 L596.7,131.5 L596.7,131.5 Z",NY,36015 2525,06043,0.72,0.09,Mariposa,"M37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L37.2,191.7 L42.0,189.6 L43.9,191.3 L48.9,190.2 L51.7,193.0 L47.2,195.6 L39.5,200.1 L38.2,196.9 L37.7,195.8 Z",CA,6043 2526,34041,0.27,0.51,Warren,"M621.2,154.9 L622.0,150.2 L620.8,148.8 L620.6,148.5 L622.2,146.3 L624.1,147.8 L625.4,148.7 L624.8,150.7 L624.3,151.1 L623.7,152.6 L621.4,155.1 L621.3,155.0 Z",NJ,34041 2527,01103,0.52,0.46,Morgan,"M488.9,283.9 L485.1,284.3 L481.6,284.5 L481.3,281.4 L481.0,278.3 L483.7,279.7 L485.6,280.1 L486.9,279.4 L488.9,279.9 L488.8,282.8 Z",AL,1103 2528,21027,0.47,0.59,Breckinridge,"M481.8,225.1 L483.6,223.4 L483.6,221.5 L487.2,223.9 L488.5,225.1 L487.5,228.0 L487.3,228.7 L484.2,228.5 L483.1,229.6 L482.4,228.8 L482.3,228.1 L481.6,225.9 Z",KY,21027 2529,28043,0.49,0.45,Grenada,"M449.1,298.0 L447.5,298.1 L445.2,298.3 L442.2,298.5 L440.4,298.6 L440.3,298.6 L440.2,297.9 L440.1,296.4 L443.0,294.7 L445.2,295.1 L448.8,294.8 L449.0,296.6 L449.0,297.3 L449.0,297.5 Z",MS,28043 2530,21213,0.50,0.50,Simpson,"M484.0,241.0 L484.5,241.8 L487.0,242.5 L487.0,244.1 L487.1,244.6 L485.8,244.7 L485.1,245.1 L484.7,244.8 L482.4,245.1 L483.0,241.8 Z",KY,21213 2531,50013,0.62,0.50,Grand Isle,"M626.0,77.8 L627.6,77.3 L627.7,77.3 L628.2,78.9 L628.5,82.0 L628.7,83.2 L627.6,85.0 L626.9,81.0 Z",VT,50013 2532,51125,0.55,0.56,Nelson,"M580.2,211.5 L580.4,210.5 L580.1,210.0 L582.1,209.8 L583.8,206.6 L586.5,210.4 L587.3,211.3 L587.3,211.3 L587.3,211.3 L587.3,211.3 L586.4,213.2 L585.5,214.7 L585.5,215.0 L585.0,215.0 L585.0,215.0 L581.6,211.6 Z",VA,51125 2533,12093,0.94,0.71,Okeechobee,"M586.3,384.2 L588.0,385.4 L589.4,385.1 L590.2,389.6 L590.5,391.0 L590.7,392.4 L588.1,395.7 L587.7,392.4 L586.5,391.6 L581.6,387.0 L582.3,384.9 L583.4,384.7 L586.3,384.2 Z",FL,12093 2534,05053,0.50,0.51,Grant,"M410.1,286.5 L410.4,286.5 L410.6,286.5 L410.8,290.9 L410.6,293.7 L410.0,293.8 L409.1,293.8 L406.9,292.5 L404.3,292.5 L404.3,291.0 L404.3,288.0 L407.9,287.3 Z",AR,5053 2535,13175,0.63,0.41,Laurens,"M539.3,306.9 L541.7,305.0 L542.8,304.3 L547.1,305.3 L547.7,306.9 L546.8,310.1 L547.1,310.4 L545.5,312.6 L545.1,312.7 L543.7,313.7 L540.9,309.4 L539.9,307.7 Z",GA,13175 2536,05007,0.09,0.50,Benton,"M384.0,253.7 L385.1,253.7 L386.8,253.6 L386.9,256.3 L387.6,256.8 L386.9,256.8 L386.6,258.0 L380.6,258.5 L377.7,260.4 L377.6,260.0 L377.5,259.4 L377.5,259.4 L377.2,257.7 L376.7,253.8 L380.0,253.7 Z",AR,5007 2537,05143,0.52,0.52,Washington,"M385.8,266.0 L383.6,266.2 L378.6,266.2 L378.1,263.3 L377.7,260.4 L377.7,260.4 L380.6,258.5 L386.6,258.0 L385.9,260.5 Z",AR,5143 2538,12127,0.34,0.21,Volusia,"M581.9,368.2 L579.5,364.9 L575.6,364.7 L575.4,362.9 L570.4,358.7 L570.2,358.3 L569.7,358.0 L573.0,356.5 L573.2,356.1 L577.7,357.7 L577.9,354.9 L581.6,360.4 L585.2,364.6 L581.7,365.2 Z",FL,12127 2539,12009,0.36,0.22,Brevard,"M581.9,368.2 L581.7,365.2 L585.2,364.6 L589.1,369.4 L587.7,373.4 L591.6,379.6 L591.2,380.3 L585.9,381.2 L585.2,376.7 L584.5,372.3 L583.8,369.8 Z",FL,12009 2540,51135,0.47,0.51,Nottoway,"M598.0,221.3 L597.0,221.7 L594.6,220.4 L594.4,219.1 L594.1,217.4 L599.3,217.9 L600.2,218.0 L599.0,219.1 L599.6,221.6 L598.6,221.8 Z",VA,51135 2541,36021,0.52,0.49,Columbia,"M631.0,126.4 L631.9,123.7 L631.2,120.5 L633.5,119.6 L636.2,118.4 L636.1,125.8 L636.4,126.4 L636.3,127.6 L631.0,127.2 L631.0,126.7 Z",NY,36021 2542,40023,0.90,0.47,Choctaw,"M369.7,293.2 L369.8,296.1 L369.8,296.9 L368.9,296.4 L367.6,297.9 L363.2,297.4 L361.3,298.0 L358.8,296.7 L358.1,293.2 L359.7,293.2 L361.1,293.2 L364.2,293.2 Z",OK,40023 2543,20041,0.50,0.50,Dickinson,"M340.1,212.7 L340.1,211.7 L340.1,209.7 L342.4,209.7 L345.4,209.8 L345.4,212.6 L346.3,214.2 L345.8,215.2 L345.8,218.6 L342.9,218.5 L340.0,218.5 L340.0,213.4 Z",KS,20041 2544,48427,0.34,0.82,Starr,"M322.4,417.4 L321.2,420.1 L318.1,426.2 L310.5,423.5 L309.7,420.4 L311.8,419.0 L312.7,417.1 L319.3,417.4 L320.9,417.4 L320.9,417.4 L321.5,417.4 Z",TX,48427 2545,13103,0.46,0.46,Effingham,"M565.5,308.8 L563.5,306.1 L563.2,304.9 L563.3,304.5 L565.2,302.8 L565.7,303.1 L566.8,303.2 L569.8,307.3 L569.6,308.3 L568.9,308.3 L566.5,311.1 L566.2,310.6 Z",GA,13103 2546,55103,0.50,0.51,Richland,"M423.2,136.0 L423.1,133.9 L427.5,133.6 L427.5,133.6 L428.9,133.5 L429.3,140.0 L429.3,140.0 L428.1,139.4 L426.4,139.6 L424.9,139.5 L423.5,140.3 L423.3,136.8 Z",WI,55103 2547,48079,0.52,0.50,Cochran,"M258.9,299.2 L259.2,296.4 L259.3,295.0 L263.6,295.3 L265.3,295.4 L265.2,300.6 L265.1,302.8 L264.3,302.7 L258.6,302.3 L258.6,302.3 L258.7,301.2 L258.9,299.7 Z",TX,48079 2548,01075,0.45,0.50,Lamar,"M466.7,290.2 L469.8,290.0 L470.5,292.2 L470.9,295.9 L471.1,298.8 L469.1,298.9 L466.5,299.1 L466.6,298.1 L466.6,295.5 L466.7,293.4 Z",AL,1075 2549,47117,0.61,0.52,Marshall,"M486.8,266.3 L485.0,268.4 L483.9,268.3 L482.7,267.6 L481.8,265.9 L483.1,264.0 L483.8,260.8 L484.4,260.9 L485.0,260.7 L485.2,260.9 L485.7,261.0 L485.9,265.2 Z",TN,47117 2550,05087,0.51,0.50,Madison,"M386.6,258.0 L386.9,256.8 L387.6,256.8 L389.7,256.8 L392.2,259.7 L392.7,262.4 L391.9,265.8 L390.4,265.8 L389.4,265.8 L386.5,265.8 L386.5,266.0 L386.0,266.0 L385.8,266.0 L385.9,260.5 Z",AR,5087 2551,42055,0.39,0.47,Franklin,"M591.1,167.4 L591.3,167.1 L591.4,166.9 L592.1,168.0 L592.4,168.2 L594.0,170.5 L595.1,172.0 L595.6,174.0 L596.0,175.7 L596.0,175.7 L595.9,175.7 L590.1,176.8 L587.9,177.3 L588.8,175.3 L589.8,171.1 L590.3,169.2 Z",PA,42055 2552,42079,0.55,0.48,Luzerne,"M614.1,147.0 L613.8,147.7 L613.7,147.8 L613.1,149.9 L610.1,152.2 L609.8,152.5 L607.4,152.2 L606.4,149.1 L604.8,146.6 L604.9,145.5 L604.9,145.4 L608.3,144.5 L610.3,143.3 L612.4,144.4 Z",PA,42079 2553,26039,0.50,0.50,Crawford,"M496.9,105.0 L497.1,106.9 L497.7,110.8 L496.5,110.9 L491.9,111.4 L491.6,108.5 L491.2,105.6 L495.6,105.1 Z",MI,26039 2554,01113,0.49,0.58,Russell,"M509.3,318.2 L509.1,318.2 L508.8,316.7 L508.7,315.4 L508.5,313.8 L509.8,312.7 L514.4,311.4 L515.1,312.8 L515.1,313.6 L514.8,314.6 L516.1,315.9 L514.3,317.8 L514.5,319.0 L511.5,317.9 Z",AL,1113 2555,51065,0.51,0.53,Fluvanna,"M593.6,209.8 L593.0,210.4 L592.7,211.0 L590.4,210.7 L589.1,209.9 L589.8,208.4 L590.8,206.0 L591.9,206.2 L594.3,207.0 L593.6,209.5 Z",VA,51065 2556,17097,0.50,0.49,Lake,"M454.7,149.4 L456.2,149.2 L459.6,149.0 L459.7,152.6 L460.7,154.6 L457.9,154.8 L455.2,155.1 L455.1,153.6 Z",IL,17097 2557,13195,0.48,0.47,Madison,"M536.9,278.6 L536.9,278.7 L537.5,279.3 L537.3,280.2 L539.4,282.1 L537.3,282.3 L535.6,283.4 L535.0,283.3 L534.1,282.9 L533.9,281.6 L533.1,280.4 L533.5,280.2 L533.7,279.9 L534.4,279.1 Z",GA,13195 2558,05039,0.50,0.50,Dallas,"M401.4,292.5 L402.4,292.5 L404.3,292.5 L406.9,292.5 L409.1,293.8 L407.3,295.4 L409.4,298.3 L408.8,298.3 L405.9,298.3 L405.1,298.3 L401.5,298.3 L401.4,295.4 Z",AR,5039 2559,08057,0.51,0.49,Jackson,"M227.3,171.2 L228.2,171.3 L228.9,171.4 L230.3,174.8 L232.2,180.4 L230.6,182.5 L224.5,181.9 L222.0,179.9 L222.9,174.2 L220.5,170.3 L225.8,171.0 Z",CO,8057 2560,16001,0.51,0.50,Ada,"M110.7,115.5 L109.6,113.8 L108.4,111.9 L110.2,106.4 L110.4,103.4 L110.7,103.5 L113.1,104.1 L115.9,108.5 L116.0,108.4 L114.2,116.2 Z",ID,16001 2561,55141,0.50,0.49,Wood,"M433.8,121.5 L432.8,121.5 L431.7,121.6 L430.2,121.7 L426.7,121.9 L426.6,121.9 L426.5,119.0 L426.4,116.9 L426.2,114.6 L427.1,114.5 L431.9,114.2 L433.5,117.1 Z",WI,55141 2562,36013,0.45,0.49,Chautauqua,"M567.0,133.3 L568.4,140.9 L568.6,142.2 L563.6,143.1 L561.9,143.4 L560.0,143.8 L559.2,139.3 L562.4,136.4 L565.7,132.8 L566.4,132.9 L567.0,133.3 L567.0,133.3 L567.0,133.3 L567.0,133.3 Z",NY,36013 2563,47091,0.52,0.46,Johnson,"M546.7,239.2 L547.3,238.1 L548.5,237.1 L549.8,237.0 L551.0,236.8 L550.9,236.8 L550.6,237.2 L550.7,239.3 L550.4,240.6 L549.6,241.3 L548.2,242.7 L548.2,242.8 L548.0,243.1 L546.1,241.7 Z",TN,47091 2564,37009,0.49,0.52,Ashe,"M550.4,240.6 L550.7,239.3 L550.6,237.2 L552.7,237.0 L555.0,236.8 L556.4,238.7 L556.9,240.0 L555.5,240.4 L554.2,242.6 L552.9,242.2 Z",NC,37009 2565,51195,0.44,0.62,Wise,"M533.8,234.6 L534.0,234.0 L533.8,233.3 L535.3,230.7 L537.3,229.0 L537.3,228.9 L537.4,228.9 L539.0,231.7 L541.0,232.3 L541.5,233.3 L540.2,234.0 L540.2,234.0 L537.1,234.4 L535.5,236.0 L534.5,235.3 Z M536.6,233.8 L537.3,233.9 L537.6,233.4 L537.3,233.0 Z",VA,51195 2566,29035,0.50,0.50,Carter,"M424.8,242.1 L425.5,242.8 L428.0,242.7 L428.7,243.5 L429.5,244.7 L429.7,245.4 L429.8,246.6 L426.7,246.8 L423.7,246.8 L422.2,246.8 L422.2,245.8 L422.1,242.4 Z",MO,29035 2567,40013,0.09,0.57,Bryan,"M349.8,293.9 L351.6,293.9 L352.3,293.2 L356.8,293.2 L358.1,293.2 L358.8,296.7 L361.3,298.0 L361.2,298.4 L360.1,298.5 L355.9,298.6 L352.7,300.4 L349.2,298.3 L349.7,297.6 L350.3,294.8 Z",OK,40013 2568,19033,0.50,0.50,Cerro Gordo,"M394.5,140.2 L394.5,140.4 L394.5,140.9 L394.6,143.9 L394.7,146.0 L391.3,146.1 L388.8,146.2 L388.8,144.6 L388.7,140.3 L392.6,140.2 Z",IA,19033 2569,21205,0.46,0.54,Rowan,"M524.4,211.9 L525.0,213.4 L525.9,213.8 L526.5,214.0 L525.9,215.1 L524.5,216.4 L523.8,216.8 L523.4,216.6 L522.9,216.6 L522.4,215.9 L520.8,214.6 L522.3,213.0 L522.8,211.0 L523.2,210.7 Z",KY,21205 2570,29031,0.52,0.49,Cape Girardeau,"M444.2,233.0 L445.8,235.8 L445.0,236.8 L444.6,237.7 L445.0,238.2 L443.3,238.7 L441.5,240.6 L440.8,240.6 L440.1,240.7 L440.1,239.1 L439.7,232.8 L443.1,232.7 Z",MO,29031 2571,29133,0.61,0.47,Mississippi,"M445.1,244.6 L445.7,243.5 L447.7,242.1 L448.3,241.1 L450.1,242.4 L450.6,242.6 L450.6,243.0 L449.7,245.3 L450.5,245.7 L449.6,246.8 L450.0,248.0 L449.4,249.4 L448.0,248.4 L448.0,248.4 L445.9,245.9 Z",MO,29133 2572,21075,0.58,0.41,Fulton,"M449.4,249.4 L450.0,248.0 L453.7,248.9 L454.8,250.1 L448.5,250.5 L447.9,250.6 L447.3,250.7 L446.9,250.7 L447.5,248.6 L448.0,248.4 L448.0,248.4 Z M446.0,250.8 L445.6,250.8 L445.3,250.9 L446.0,249.6 Z",KY,21075 2573,29143,0.47,0.53,New Madrid,"M446.9,250.7 L446.5,251.4 L446.0,250.8 L446.0,249.6 L445.3,250.9 L445.8,252.9 L445.4,253.6 L444.4,252.4 L439.7,253.1 L439.7,251.9 L439.5,249.1 L442.9,248.9 L442.8,245.0 L443.9,244.9 L445.1,244.6 L445.9,245.9 L448.0,248.4 L448.0,248.4 L447.5,248.6 Z",MO,29143 2574,05139,0.14,0.50,Union,"M406.4,305.6 L408.1,307.0 L409.5,306.6 L411.3,307.3 L412.6,308.8 L413.1,310.9 L413.6,311.3 L410.5,311.4 L404.4,311.6 L402.5,311.6 L400.6,311.7 L400.6,307.9 L400.6,305.6 L405.1,305.8 Z",AR,5139 2575,05013,0.52,0.47,Calhoun,"M409.5,306.6 L408.1,307.0 L406.4,305.6 L403.5,303.5 L405.9,298.3 L408.8,298.3 L409.4,298.3 L409.3,299.1 L409.5,299.7 L409.9,303.2 Z",AR,5013 2576,05025,0.51,0.51,Cleveland,"M409.5,299.7 L409.3,299.1 L409.4,298.3 L407.3,295.4 L409.1,293.8 L410.0,293.8 L410.6,293.7 L412.2,293.6 L414.5,293.5 L414.2,295.0 L414.4,298.1 L414.4,298.9 L414.4,299.6 L410.1,299.7 Z",AR,5025 2577,22073,0.50,0.50,Ouachita,"M414.7,323.6 L412.8,323.7 L410.7,323.7 L409.1,321.6 L409.1,320.1 L409.1,319.5 L409.0,318.7 L411.1,318.6 L413.9,316.1 L416.1,317.0 L416.2,319.7 L415.0,321.8 Z",LA,22073 2578,19007,0.50,0.50,Appanoose,"M395.0,185.0 L394.9,181.3 L394.9,179.7 L397.7,179.6 L400.7,179.5 L400.8,181.7 L400.9,184.7 L400.6,184.7 L399.9,184.7 L396.8,184.9 Z",IA,19007 2579,29197,0.50,0.50,Schuyler,"M400.9,184.7 L402.8,184.5 L404.6,184.4 L404.6,186.4 L404.7,188.6 L403.3,188.7 L400.5,188.8 L400.5,186.2 L399.9,184.7 L400.6,184.7 Z",MO,29197 2580,01059,0.49,0.50,Franklin,"M475.8,285.2 L475.3,285.3 L474.3,285.3 L468.8,285.7 L466.8,285.8 L466.8,284.7 L466.8,283.4 L466.9,282.8 L466.9,281.4 L469.5,281.3 L475.4,280.9 L475.6,283.5 Z",AL,1059 2581,21041,0.52,0.53,Carroll,"M501.5,207.4 L502.4,208.7 L502.8,208.9 L502.4,209.4 L501.1,210.2 L500.5,210.4 L499.9,210.6 L499.1,210.0 L497.5,208.3 L498.6,208.3 L499.3,208.8 L499.7,208.9 Z",KY,21041 2582,48267,0.12,0.48,Kimble,"M297.9,349.9 L305.2,350.2 L307.2,350.2 L307.0,353.8 L309.6,353.9 L309.6,356.3 L309.6,357.5 L303.4,357.2 L302.9,357.2 L301.1,357.1 L297.6,357.0 L297.7,355.2 Z",TX,48267 2583,48095,0.51,0.50,Concho,"M305.7,343.8 L299.9,343.6 L298.2,343.5 L298.5,338.7 L298.7,335.2 L300.4,335.3 L304.3,335.5 L305.3,336.4 L306.0,337.0 L305.7,343.2 Z",TX,48095 2584,48441,0.50,0.50,Taylor,"M305.4,327.0 L304.7,327.0 L304.7,327.0 L303.4,327.0 L298.5,326.7 L298.8,320.6 L298.9,319.3 L306.2,319.7 L306.2,319.8 L306.2,319.8 L306.1,322.7 L305.9,327.1 L305.9,327.1 L305.9,327.1 Z",TX,48441 2585,48307,0.50,0.50,McCulloch,"M305.7,343.8 L305.7,343.2 L306.0,337.0 L310.1,338.5 L311.7,337.6 L312.3,337.7 L313.3,337.8 L313.2,341.4 L313.0,346.6 L310.7,346.5 L307.3,346.4 L305.6,346.3 Z",TX,48307 2586,48217,0.22,0.09,Hill,"M342.4,324.9 L344.5,328.5 L345.1,328.2 L345.9,329.5 L347.6,332.6 L347.2,332.8 L344.6,334.3 L343.1,331.7 L339.6,333.6 L337.3,330.4 L336.8,326.4 L336.8,326.2 Z",TX,48217 2587,20055,0.11,0.49,Finney,"M290.7,222.5 L293.3,222.6 L296.2,222.8 L299.4,223.0 L302.0,223.1 L302.1,223.1 L302.2,223.1 L302.1,226.1 L302.0,227.5 L296.2,227.2 L296.2,231.7 L291.8,231.4 L290.4,231.3 L290.3,229.8 Z",KS,20055 2588,45039,0.52,0.51,Fairfield,"M559.4,270.1 L564.4,269.6 L566.9,269.3 L566.8,270.2 L567.2,270.7 L568.9,271.8 L568.4,273.7 L563.8,276.1 L561.7,275.3 L559.7,272.0 L559.6,271.3 L559.4,270.8 Z",SC,45039 2589,27091,0.50,0.50,Martin,"M379.4,136.5 L377.8,136.5 L377.0,136.5 L373.7,136.5 L372.0,136.6 L371.9,133.2 L371.9,130.7 L373.0,130.7 L377.8,130.6 L378.6,130.6 L379.3,130.6 L379.3,132.3 Z",MN,27091 2590,47155,0.51,0.43,Sevier,"M531.6,254.9 L531.6,255.1 L531.6,255.2 L528.6,257.9 L526.4,258.1 L525.5,255.8 L523.9,253.0 L525.6,251.4 L525.2,250.3 L528.1,251.9 L530.4,252.0 L531.2,253.1 Z",TN,47155 2591,48263,0.50,0.50,Kent,"M293.9,311.7 L292.5,311.6 L292.0,311.6 L287.3,311.3 L286.6,311.2 L286.9,306.5 L287.0,304.0 L292.8,304.3 L294.3,304.4 L294.2,306.9 Z",TX,48263 2592,30099,0.46,0.56,Teton,"M183.2,46.1 L182.9,48.0 L182.4,50.9 L182.4,50.9 L179.5,50.4 L174.6,52.7 L172.0,52.4 L165.4,47.9 L165.4,43.4 L166.7,43.3 L165.6,40.4 L175.0,42.1 L176.7,45.0 Z",MT,30099 2593,31069,0.48,0.50,Garden,"M274.5,158.7 L276.8,158.8 L282.2,159.2 L281.9,163.6 L282.9,163.7 L282.6,167.7 L282.5,169.5 L281.6,169.4 L281.4,172.3 L274.9,171.9 L274.4,171.8 L274.6,168.9 L274.4,168.2 L274.7,163.1 Z",NE,31069 2594,17117,0.50,0.50,Macoupin,"M434.1,205.3 L434.0,203.8 L433.7,200.9 L435.4,200.8 L436.7,200.7 L436.7,200.7 L438.3,200.6 L439.6,200.5 L439.6,200.5 L439.7,203.4 L440.2,209.3 L435.2,209.6 L434.4,209.6 L434.2,206.5 Z",IL,17117 2595,39141,0.48,0.48,Ross,"M521.5,194.4 L521.9,193.4 L522.5,191.9 L526.2,191.5 L529.4,191.7 L529.4,191.7 L529.4,191.7 L529.4,192.0 L529.5,193.4 L529.7,195.3 L529.8,196.1 L529.8,196.1 L529.8,196.7 L529.6,196.8 L523.0,197.3 L522.2,197.3 L521.5,196.3 Z",OH,39141 2596,17195,0.49,0.50,Whiteside,"M437.0,160.3 L437.7,160.2 L437.7,160.7 L437.9,164.5 L438.1,166.0 L436.1,166.1 L435.2,166.2 L435.2,166.2 L433.7,166.3 L431.1,166.5 L430.5,165.0 L430.2,163.2 L430.8,162.8 L431.2,160.7 L433.3,160.5 Z",IL,17195 2597,48141,0.44,0.50,El Paso,"M209.4,321.0 L213.0,321.3 L214.8,321.6 L213.9,330.3 L213.7,331.8 L211.4,330.6 L206.8,324.4 L205.9,320.6 Z",TX,48141 2598,48229,0.50,0.31,Hudspeth,"M228.0,345.6 L227.3,346.0 L227.0,346.1 L221.8,341.8 L213.7,331.8 L213.9,330.3 L214.8,321.6 L225.4,322.7 L230.2,323.2 L228.4,342.8 Z",TX,48229 2599,48301,0.47,0.50,Loving,"M243.6,324.5 L245.1,324.6 L247.3,324.8 L250.5,325.0 L252.9,325.2 L252.9,325.2 L252.5,331.1 L250.1,330.9 L248.4,330.8 L245.9,328.5 Z",TX,48301 2600,39167,0.88,0.01,Washington,"M543.1,193.9 L541.2,192.5 L540.9,190.3 L542.6,189.5 L543.9,187.5 L545.3,187.3 L547.7,186.5 L551.0,186.6 L551.0,187.1 L550.5,188.0 L550.2,188.7 L549.2,190.0 L547.3,191.1 L546.0,190.2 Z",OH,39167 2601,29091,0.49,0.50,Howell,"M410.4,252.8 L410.3,248.5 L410.3,247.9 L410.5,247.9 L410.4,243.5 L410.4,243.5 L413.3,243.5 L416.3,243.4 L416.3,244.7 L416.4,246.0 L416.2,247.7 L416.5,252.6 L411.8,252.8 Z",MO,29091 2602,20047,0.50,0.50,Edwards,"M318.0,228.2 L317.9,231.1 L318.0,231.1 L317.9,232.2 L317.9,232.6 L313.3,232.5 L310.7,232.3 L310.7,230.8 L310.7,229.4 L310.7,228.3 L310.8,226.4 L313.6,228.0 Z",KS,20047 2603,18061,0.53,0.48,Harrison,"M489.0,214.6 L489.1,216.1 L491.1,218.4 L491.2,219.9 L490.8,221.4 L490.5,221.5 L490.2,221.5 L486.5,221.0 L485.5,219.0 L486.0,218.6 L486.0,214.9 L487.8,214.7 Z",IN,18061 2604,18043,0.53,0.49,Floyd,"M491.1,218.4 L489.1,216.1 L489.0,214.6 L489.2,214.6 L489.5,214.6 L491.9,214.5 L492.4,216.5 L491.8,216.9 Z",IN,18043 2605,21111,0.42,0.43,Jefferson,"M491.1,218.4 L491.8,216.9 L492.4,216.5 L493.0,216.7 L494.2,214.7 L495.3,215.3 L496.6,216.0 L497.5,216.3 L497.5,218.2 L497.5,218.6 L497.4,218.7 L497.4,218.7 L493.8,219.7 L491.0,221.5 L490.9,221.4 L490.8,221.4 L491.2,219.9 Z",KY,21111 2606,21029,0.63,0.48,Bullitt,"M497.4,218.7 L497.4,218.7 L496.6,220.6 L496.9,220.9 L495.1,223.9 L494.0,224.3 L492.5,223.3 L491.0,221.5 L493.8,219.7 Z",KY,21029 2607,18019,0.49,0.34,Clark,"M494.2,214.7 L493.0,216.7 L492.4,216.5 L491.9,214.5 L489.5,214.6 L489.4,213.4 L491.1,212.0 L491.7,211.2 L494.7,210.8 L494.7,210.8 L495.6,210.7 L496.5,210.9 L496.8,211.6 L496.6,212.0 L494.7,213.4 Z",IN,18019 2608,17129,0.50,0.46,Menard,"M440.2,190.4 L440.5,190.9 L440.6,192.8 L439.1,193.9 L435.4,194.4 L435.2,192.0 L435.1,191.0 L435.4,190.4 Z",IL,17129 2609,55139,0.50,0.50,Winnebago,"M450.2,125.4 L450.2,126.2 L444.4,126.6 L444.3,126.1 L444.3,125.2 L444.1,123.0 L443.9,120.8 L444.8,120.7 L445.7,120.7 L448.3,120.4 L449.7,120.3 L449.9,122.7 Z",WI,55139 2610,20079,0.50,0.50,Harvey,"M339.9,225.8 L342.7,225.8 L342.7,227.3 L342.7,229.6 L342.7,230.2 L339.9,230.2 L335.4,230.1 L335.4,230.1 L335.4,228.4 L335.5,225.7 L336.7,225.7 Z M335.4,230.1 L335.4,230.1 L335.4,230.1 L335.4,230.1 Z",KS,20079 2611,20155,0.05,0.49,Reno,"M335.4,230.1 L335.4,230.1 L335.4,233.0 L333.9,233.0 L329.1,233.0 L325.2,232.9 L325.3,231.3 L325.2,231.3 L325.2,229.8 L325.3,225.5 L329.7,225.6 L332.6,225.6 L333.9,225.7 L335.5,225.7 L335.4,230.1 L335.4,230.1 Z",KS,20155 2612,54091,0.52,0.54,Taylor,"M565.3,186.1 L565.4,186.2 L565.9,186.3 L566.3,188.6 L566.3,188.6 L564.8,189.7 L563.0,190.1 L562.5,189.6 L562.2,187.7 L563.6,187.6 Z",WV,54091 2613,21093,0.53,0.53,Hardin,"M487.3,228.7 L487.5,228.0 L488.5,225.1 L490.4,224.6 L490.2,221.5 L490.5,221.5 L490.8,221.4 L490.9,221.4 L491.0,221.5 L492.5,223.3 L494.0,224.3 L494.0,224.7 L494.9,225.5 L492.6,229.0 L492.6,230.7 L491.8,230.7 L490.5,230.8 L489.4,228.9 Z",KY,21093 2614,46057,0.50,0.50,Hamlin,"M340.0,119.0 L340.0,117.6 L340.1,114.6 L344.5,114.7 L347.4,114.7 L347.4,115.5 L347.3,119.1 L345.3,119.0 L344.4,119.0 L342.1,119.0 Z",SD,46057 2615,55069,0.50,0.50,Lincoln,"M435.9,100.7 L436.1,102.5 L436.3,106.6 L434.5,106.7 L429.0,107.1 L429.0,107.1 L429.0,107.1 L428.7,103.8 L428.7,102.7 L428.6,100.5 L428.5,99.8 L435.8,99.3 Z",WI,55069 2616,36033,0.42,0.20,Franklin,"M610.0,81.9 L614.5,80.8 L618.1,79.9 L619.7,84.5 L621.7,88.8 L619.1,89.8 L620.8,94.1 L618.6,94.9 L617.6,95.3 L615.7,96.0 L611.1,82.3 Z",NY,36033 2617,54081,0.52,0.32,Raleigh,"M557.0,215.3 L557.2,217.0 L555.6,219.5 L554.3,219.9 L554.2,221.0 L550.3,217.0 L549.6,217.0 L548.5,214.9 L549.8,213.7 L550.1,213.9 L550.9,213.8 L552.2,214.9 Z",WV,54081 2618,06065,0.48,0.50,Riverside,"M58.1,268.5 L60.0,266.3 L57.3,262.0 L59.5,259.7 L90.0,266.7 L102.2,268.5 L100.1,274.6 L97.4,278.6 L94.6,278.0 L77.3,274.3 L61.5,270.6 Z",CA,6065 2619,06059,0.53,0.45,Orange,"M57.3,262.0 L60.0,266.3 L58.1,268.5 L56.9,269.1 L56.4,270.1 L54.5,267.2 L50.7,262.6 L53.5,259.8 L56.1,260.4 L57.2,261.9 Z",CA,6059 2620,06037,0.48,0.53,Los Angeles,"M56.1,260.4 L53.5,259.8 L50.7,262.6 L46.7,261.6 L46.1,256.3 L40.7,254.8 L45.9,251.9 L44.7,242.9 L45.2,242.6 L61.1,246.5 L59.3,255.3 Z",CA,6037 2621,04023,0.82,0.56,Santa Cruz,"M150.7,317.5 L150.3,319.4 L149.5,324.1 L140.9,322.7 L136.9,320.3 L140.0,319.3 L140.6,315.9 Z",AZ,4023 2622,17101,0.51,0.50,Lawrence,"M468.7,209.4 L469.1,212.0 L467.5,214.3 L466.4,214.4 L464.1,214.6 L464.1,214.5 L463.8,209.9 L466.7,209.6 Z",IL,17101 2623,18125,0.50,0.50,Pike,"M470.1,214.6 L471.5,214.3 L472.9,214.2 L472.9,214.2 L474.2,214.5 L475.2,214.4 L475.4,216.2 L475.6,219.1 L472.7,219.5 L472.4,219.2 L471.0,217.2 Z",IN,18125 2624,21107,0.62,0.61,Hopkins,"M469.3,238.0 L467.5,236.6 L467.2,234.8 L470.0,232.6 L472.7,230.6 L473.3,232.9 L474.1,233.4 L474.1,233.4 L473.0,235.7 L473.9,237.4 L471.5,238.5 Z",KY,21107 2625,21047,0.54,0.50,Christian,"M469.3,238.0 L471.5,238.5 L473.9,237.4 L474.4,238.2 L475.1,238.7 L474.9,242.1 L474.7,246.0 L472.9,246.2 L470.6,246.4 L470.5,246.5 L469.9,246.5 L469.9,241.0 L468.8,240.5 L469.1,240.1 Z",KY,21047 2626,26045,0.50,0.50,Eaton,"M499.3,145.9 L498.8,145.9 L497.9,146.1 L494.4,146.5 L493.5,146.6 L492.9,142.3 L492.8,140.8 L494.2,140.6 L495.7,140.4 L497.1,140.3 L498.5,140.1 L498.7,141.4 Z",MI,26045 2627,28157,0.48,0.50,Wilkinson,"M429.8,344.4 L428.9,344.5 L428.1,344.5 L424.0,344.7 L421.4,344.8 L422.4,344.1 L421.9,341.6 L423.6,339.3 L428.0,338.6 L428.7,339.0 L429.0,339.0 L429.5,339.6 Z",MS,28157 2628,28079,0.50,0.50,Leake,"M453.1,316.3 L453.0,316.3 L447.2,316.7 L447.2,315.7 L447.0,313.3 L446.9,311.5 L446.8,310.8 L452.6,310.3 L452.8,313.0 L453.1,316.3 Z",MS,28079 2629,28025,0.50,0.51,Clay,"M459.9,294.9 L460.1,297.1 L463.0,297.4 L463.7,299.5 L461.0,300.0 L460.9,299.0 L456.1,299.4 L455.8,298.2 L455.6,296.5 L457.0,295.1 Z",MS,28025 2630,18029,0.51,0.50,Dearborn,"M499.8,198.4 L502.4,198.1 L503.0,198.0 L503.1,198.9 L503.4,201.4 L502.5,202.3 L502.8,202.7 L501.3,203.5 L499.7,204.5 L499.8,200.3 Z",IN,18029 2631,18175,0.51,0.47,Washington,"M486.3,208.8 L490.3,209.2 L490.3,209.2 L490.6,211.8 L491.1,212.0 L489.4,213.4 L489.5,214.6 L489.2,214.6 L489.0,214.6 L487.8,214.7 L486.0,214.9 L485.6,214.9 L485.3,214.9 L485.0,211.3 L484.9,210.5 L484.8,209.8 L485.2,209.2 L485.2,209.2 Z",IN,18175 2632,22125,0.60,0.55,West Feliciana,"M421.4,344.8 L424.0,344.7 L428.1,344.5 L427.4,348.0 L426.4,350.4 L426.3,350.4 L426.1,350.3 L422.8,349.3 L421.0,345.3 L421.3,345.1 Z M419.7,344.6 L420.0,344.3 L420.1,344.1 L421.0,344.1 L421.1,344.9 L420.4,344.5 Z",LA,22125 2633,12063,0.49,0.47,Jackson,"M510.3,337.6 L510.4,337.6 L510.5,337.6 L514.0,337.1 L517.5,336.7 L519.3,340.7 L520.1,341.3 L520.1,341.3 L520.1,341.3 L520.1,341.3 L519.6,342.9 L519.3,343.1 L515.9,343.5 L512.8,344.6 L512.5,344.6 L512.1,344.7 L511.7,341.0 L509.2,340.5 L509.4,339.4 Z",FL,12063 2634,13253,0.57,0.52,Seminole,"M519.3,340.7 L517.5,336.7 L517.2,335.8 L516.9,335.5 L517.9,335.4 L518.5,335.3 L520.8,335.1 L521.2,335.0 L521.3,338.2 L520.1,341.3 L520.1,341.3 L520.1,341.3 L520.1,341.3 Z",GA,13253 2635,51115,0.41,0.32,Mathews,"M616.8,209.0 L617.1,209.0 L617.4,208.6 L619.6,209.5 L617.5,210.6 L617.1,210.6 Z M617.7,210.8 L617.7,210.9 L617.7,210.9 L617.7,210.9 Z",VA,51115 2636,48283,0.50,0.51,La Salle,"M315.8,392.3 L315.7,395.5 L306.8,395.7 L306.9,392.7 L307.0,387.7 L307.1,385.3 L310.0,385.4 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 L316.0,385.5 Z",TX,48283 2637,30075,0.50,0.50,Powder River,"M250.1,106.1 L249.9,106.0 L249.7,106.0 L239.7,105.0 L238.4,104.9 L237.2,104.8 L235.5,104.6 L235.9,101.5 L235.7,101.5 L236.6,98.7 L237.9,91.4 L246.9,92.4 L252.1,92.9 L251.3,100.2 Z",MT,30075 2638,55091,0.50,0.32,Pepin,"M410.2,115.5 L410.3,116.5 L410.3,117.0 L405.7,117.4 L405.2,120.4 L403.5,119.9 L403.3,119.7 L402.6,119.0 L402.3,118.3 L404.5,118.2 L404.4,115.8 L405.7,115.7 Z",WI,55091 2639,27157,0.45,0.56,Wabasha,"M403.3,119.7 L403.5,119.9 L405.2,120.4 L406.7,121.1 L408.1,123.9 L405.4,124.0 L405.5,125.4 L402.6,125.5 L399.7,124.2 L399.6,121.3 Z",MN,27157 2640,29121,0.50,0.50,Macon,"M405.0,193.8 L405.1,195.2 L405.8,195.2 L405.8,197.8 L405.9,201.0 L405.9,201.0 L403.0,201.0 L400.8,201.1 L400.8,201.1 L400.8,199.6 L398.6,199.7 L398.6,198.1 L398.5,194.0 L401.4,193.9 Z",MO,29121 2641,48279,0.51,0.50,Lamb,"M265.3,295.4 L265.5,293.5 L265.9,287.2 L266.8,287.3 L267.2,287.3 L270.9,287.6 L273.2,287.8 L273.0,291.1 L272.8,295.9 L270.4,295.8 Z",TX,48279 2642,20097,0.50,0.50,Kiowa,"M310.7,232.3 L313.3,232.5 L317.9,232.6 L317.9,234.1 L317.8,237.0 L317.8,237.7 L317.8,238.5 L313.7,238.4 L310.7,238.3 L310.5,238.3 L310.5,236.8 L310.6,234.1 Z",KS,20097 2643,48015,0.66,0.38,Austin,"M349.6,363.9 L349.2,363.2 L348.8,362.5 L353.8,361.6 L355.8,362.0 L356.0,364.3 L357.5,367.8 L357.6,370.0 L356.7,370.0 L356.3,369.6 L355.4,369.4 L352.9,366.1 Z",TX,48015 2644,29061,0.50,0.50,Daviess,"M380.9,194.5 L380.9,193.0 L380.9,192.8 L382.4,192.8 L386.7,192.8 L386.7,193.3 L386.8,195.7 L386.8,195.7 L386.9,197.0 L386.9,198.6 L382.6,198.7 L381.2,198.7 L381.1,194.5 Z",MO,29061 2645,13087,0.46,0.51,Decatur,"M520.1,341.3 L521.3,338.2 L521.2,335.0 L522.5,334.7 L523.9,334.5 L524.2,334.5 L524.4,334.5 L525.5,334.3 L526.3,334.2 L526.3,334.2 L526.3,334.2 L526.6,336.5 L527.1,340.7 L524.7,340.9 L520.1,341.3 L520.1,341.3 Z",GA,13087 2646,13201,0.50,0.50,Miller,"M521.2,335.0 L520.8,335.1 L518.5,335.3 L518.2,332.2 L522.1,331.7 L523.6,331.6 L523.9,334.5 L522.5,334.7 Z",GA,13201 2647,26101,0.46,0.51,Manistee,"M480.4,112.8 L480.6,115.0 L481.0,118.6 L480.0,118.7 L478.3,118.8 L476.1,119.0 L474.0,119.1 L475.2,115.7 L475.1,113.3 L478.7,113.0 Z",MI,26101 2648,48195,0.50,0.50,Hansford,"M289.3,252.0 L289.1,254.1 L288.8,259.4 L288.8,259.5 L286.8,259.3 L281.5,259.0 L281.7,255.9 L282.0,251.6 L285.4,251.8 Z",TX,48195 2649,48233,0.50,0.50,Hutchinson,"M281.5,259.0 L286.8,259.3 L288.8,259.5 L288.7,262.5 L288.4,266.6 L288.4,266.6 L288.4,266.6 L286.2,266.5 L281.1,266.2 L281.5,260.1 Z M288.4,266.6 L288.4,266.6 L288.4,266.6 Z",TX,48233 2650,20129,0.50,0.50,Morton,"M283.8,236.8 L283.7,239.3 L283.4,243.4 L280.2,243.2 L278.8,243.1 L278.0,243.0 L277.1,243.0 L277.1,243.0 L277.0,243.0 L277.0,243.0 L277.0,243.0 L277.0,243.0 L276.9,243.0 L277.3,237.0 L277.3,236.4 L282.3,236.7 Z",KS,20129 2651,40139,0.50,0.50,Texas,"M291.6,243.8 L291.3,246.3 L291.0,252.1 L290.7,252.1 L289.3,252.0 L285.4,251.8 L282.0,251.6 L279.1,251.4 L276.5,251.2 L277.0,243.0 L277.0,243.0 L277.0,243.0 L277.1,243.0 L277.1,243.0 L278.0,243.0 L278.8,243.1 L283.4,243.4 L288.5,243.6 L290.0,243.7 L290.9,243.7 Z",OK,40139 2652,40153,0.51,0.50,Woodward,"M309.3,251.4 L313.5,251.5 L313.6,247.8 L315.7,248.5 L318.0,253.2 L317.8,257.5 L317.8,259.0 L315.5,258.9 L312.1,258.7 L309.1,258.6 Z",OK,40153 2653,19003,0.50,0.50,Adams,"M371.6,180.2 L371.6,176.9 L371.6,175.9 L372.9,175.8 L374.4,175.8 L376.3,175.8 L377.3,175.8 L377.4,178.6 L377.4,180.1 L374.5,180.2 Z",IA,19003 2654,06101,0.47,0.49,Sutter,"M30.3,166.0 L29.3,167.0 L28.2,170.0 L27.8,169.8 L26.8,169.5 L25.8,167.2 L24.7,165.7 L24.5,161.1 L25.6,159.3 L29.1,160.3 L29.1,160.5 L28.1,166.4 Z",CA,6101 2655,42105,0.50,0.52,Potter,"M584.7,139.0 L585.9,138.8 L586.4,138.7 L586.9,140.7 L588.1,146.1 L588.2,146.7 L588.3,147.2 L585.5,147.8 L583.5,148.2 L582.8,148.4 L580.4,146.4 L579.5,142.2 L579.1,140.1 L581.7,139.6 Z",PA,42105 2656,20077,0.50,0.50,Harper,"M329.6,245.3 L327.1,245.2 L326.5,245.2 L326.5,245.2 L326.5,241.2 L326.6,239.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L326.6,238.7 L329.3,238.8 L333.8,238.9 L333.9,241.8 L333.8,245.3 L331.9,245.3 Z",KS,20077 2657,19133,0.50,0.50,Monona,"M354.6,161.0 L354.6,160.0 L353.5,158.2 L358.4,158.3 L362.1,158.3 L362.1,160.8 L362.1,164.1 L358.1,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.2,164.1 L356.3,162.3 Z",IA,19133 2658,36017,0.50,0.52,Chenango,"M606.3,127.2 L605.9,126.0 L604.8,122.3 L610.3,120.7 L611.9,120.3 L611.6,124.9 L612.1,127.7 L612.3,128.7 L612.5,129.6 L607.1,129.7 Z",NY,36017 2659,17143,0.54,0.50,Peoria,"M438.7,176.2 L441.1,176.0 L440.9,176.9 L440.0,178.9 L440.0,179.9 L438.9,183.0 L436.2,184.1 L436.1,182.3 L434.6,180.9 L434.5,179.5 L434.3,176.5 L436.2,176.4 Z",IL,17143 2660,19091,0.50,0.50,Humboldt,"M383.1,150.7 L380.7,150.8 L377.3,150.9 L377.2,149.2 L377.2,146.4 L381.1,146.4 L383.0,146.3 L383.0,146.5 Z",IA,19091 2661,42003,0.50,0.49,Allegheny,"M559.1,166.5 L563.3,165.8 L564.8,165.5 L564.8,165.5 L564.8,165.5 L564.7,172.9 L564.0,173.7 L559.7,172.2 L557.0,170.2 L558.9,167.6 Z",PA,42003 2662,29205,0.50,0.50,Shelby,"M410.1,195.0 L411.2,195.0 L411.6,195.0 L411.6,195.0 L411.7,198.8 L411.7,199.8 L407.3,200.0 L405.9,201.0 L405.8,197.8 L405.8,195.2 L407.4,195.1 Z",MO,29205 2663,39097,0.47,0.50,Madison,"M522.1,186.9 L522.2,187.4 L522.3,188.9 L519.6,189.1 L517.1,189.3 L517.1,188.5 L517.1,188.3 L517.8,188.3 L518.2,184.2 L518.2,182.9 L518.1,182.5 L521.0,182.1 L521.9,182.0 L521.5,183.0 Z",OH,39097 2664,20201,0.50,0.50,Washington,"M340.2,202.5 L340.3,201.3 L340.3,201.0 L340.3,197.9 L340.4,195.2 L343.5,195.2 L346.2,195.3 L347.2,195.3 L347.6,195.3 L347.6,199.5 L347.5,202.6 L346.5,202.6 L345.6,202.5 L342.2,202.5 Z",KS,20201 2665,16087,0.54,0.47,Washington,"M107.1,96.7 L106.6,95.0 L103.9,93.4 L104.6,90.4 L109.7,85.4 L112.9,86.2 L112.8,92.2 L115.3,93.6 L113.5,98.2 L112.4,98.0 L109.0,97.2 Z",ID,16087 2666,26113,0.50,0.50,Missaukee,"M492.6,117.3 L492.2,117.3 L489.8,117.6 L488.4,117.7 L486.8,117.9 L486.3,113.6 L486.1,112.1 L489.8,111.7 L491.9,111.4 L492.0,112.7 Z",MI,26113 2667,38093,0.89,0.51,Stutsman,"M317.9,71.3 L319.7,71.4 L320.4,71.4 L321.6,71.5 L329.2,71.7 L329.6,71.7 L329.5,73.2 L329.7,77.6 L329.6,83.5 L326.9,83.4 L322.6,83.3 L321.2,83.3 L317.8,83.1 L318.1,77.2 Z",ND,38093 2668,29203,0.51,0.49,Shannon,"M416.3,243.4 L416.2,240.0 L416.1,237.1 L419.0,237.0 L421.9,236.9 L422.7,239.6 L424.8,242.1 L422.1,242.4 L422.2,245.8 L418.8,246.0 L416.4,246.0 L416.3,244.7 Z",MO,29203 2669,48423,0.50,0.49,Smith,"M372.5,323.2 L372.5,324.1 L372.5,327.1 L367.7,327.2 L365.7,327.2 L365.3,325.5 L365.8,323.5 L363.8,321.4 L363.7,317.9 L365.5,319.2 L370.0,319.8 L370.2,320.2 L372.4,320.4 L372.4,322.5 Z",TX,48423 2670,40143,0.50,0.50,Tulsa,"M353.9,259.6 L354.2,259.6 L354.3,259.6 L358.0,259.6 L358.0,255.2 L359.8,255.2 L360.5,255.2 L360.5,259.6 L361.2,259.6 L361.2,264.0 L360.4,264.7 L358.0,264.7 L357.5,264.7 L357.6,261.1 Z",OK,40143 2671,40091,0.50,0.49,McIntosh,"M358.2,272.8 L360.4,269.8 L361.9,269.8 L367.0,269.8 L367.0,274.1 L366.4,273.6 L365.5,274.1 L361.3,276.1 L358.2,276.5 L358.2,275.5 L358.2,274.2 L358.2,273.5 Z",OK,40091 2672,48395,0.63,0.51,Robertson,"M349.3,342.6 L350.2,342.1 L353.4,340.3 L353.2,342.1 L354.5,346.8 L354.5,346.8 L354.5,346.8 L351.3,350.6 L349.7,351.5 L349.3,351.1 L348.9,350.9 L347.0,347.5 L345.9,344.5 L347.1,343.9 Z",TX,48395 2673,48171,0.06,0.48,Gillespie,"M309.6,357.5 L309.6,356.3 L309.6,353.9 L310.6,354.0 L314.6,354.1 L317.8,354.2 L320.1,354.2 L320.0,358.7 L319.9,360.3 L317.1,360.3 L315.1,360.2 L309.5,360.1 Z",TX,48171 2674,26125,0.50,0.50,Oakland,"M512.2,144.0 L511.9,144.0 L510.8,144.2 L510.3,141.3 L509.7,138.4 L509.5,136.9 L512.4,136.4 L514.2,136.1 L516.6,135.7 L516.9,137.0 L517.9,143.0 L513.8,143.7 Z",MI,26125 2675,38033,0.55,0.51,Golden Valley,"M264.2,81.3 L264.3,80.1 L264.4,79.6 L264.7,76.3 L265.4,68.0 L268.2,68.2 L269.8,68.4 L269.8,68.4 L269.8,68.4 L269.9,74.3 L269.4,80.2 L267.1,81.5 Z",ND,38033 2676,56027,0.90,0.53,Niobrara,"M259.6,132.3 L259.6,132.7 L259.3,135.1 L258.9,140.7 L258.5,144.8 L258.3,147.2 L256.0,146.9 L250.9,146.5 L249.5,146.4 L247.9,146.2 L248.1,143.3 L249.3,131.3 L251.3,131.5 L259.6,132.2 L259.6,132.2 L259.6,132.2 Z",WY,56027 2677,53025,0.74,0.53,Grant,"M98.7,28.4 L98.7,28.6 L98.7,28.7 L97.5,33.3 L95.8,39.9 L94.3,45.6 L89.9,44.5 L89.2,47.3 L88.9,48.3 L88.0,48.0 L85.9,48.1 L83.0,47.6 L82.4,46.6 L82.4,45.5 L83.1,39.8 L84.1,37.5 L86.6,34.4 L90.4,35.3 L95.9,29.0 L98.7,28.4 L98.7,28.4 Z",WA,53025 2678,27129,0.50,0.51,Renville,"M365.7,116.5 L365.2,116.0 L364.2,115.6 L364.2,113.3 L367.0,113.2 L371.2,113.2 L372.8,113.1 L374.3,113.1 L375.9,113.1 L376.0,113.1 L376.0,116.0 L374.4,116.1 L374.6,120.5 L373.4,120.5 L372.7,120.5 L372.3,120.1 L371.6,119.8 L368.4,118.2 Z",MN,27129 2679,12001,0.49,0.46,Alachua,"M563.2,352.2 L563.4,353.0 L563.9,356.4 L561.5,356.5 L558.7,356.9 L556.5,357.3 L554.8,356.1 L554.5,354.3 L554.1,351.7 L555.1,350.9 L555.7,349.6 L556.0,349.4 L557.4,349.6 L561.8,350.4 Z",FL,12001 2680,31091,0.50,0.50,Hooker,"M297.5,158.7 L297.3,161.7 L297.2,164.6 L293.7,164.3 L290.1,164.1 L289.9,164.1 L290.2,159.8 L290.2,158.3 L293.2,158.5 Z",NE,31091 2681,49007,0.48,0.51,Carbon,"M162.0,182.0 L164.2,182.3 L167.0,182.8 L171.3,183.6 L178.3,184.8 L177.7,186.4 L176.7,190.2 L163.3,188.0 L161.7,183.8 L161.8,183.6 Z",UT,49007 2682,42017,0.15,0.22,Bucks,"M628.9,161.0 L627.4,162.4 L626.1,163.4 L626.0,162.2 L625.3,162.0 L621.1,160.1 L618.3,158.8 L619.0,157.5 L619.8,156.5 L620.5,155.5 L621.2,154.9 L621.3,155.0 L621.4,155.1 L623.1,155.6 L625.4,158.5 L628.0,160.1 Z",PA,42017 2683,34019,0.65,0.48,Hunterdon,"M625.4,158.5 L623.1,155.6 L621.4,155.1 L623.7,152.6 L624.3,151.1 L625.3,151.6 L626.6,151.7 L627.3,153.9 L627.5,156.6 L626.5,158.2 Z",NJ,34019 2684,46059,0.50,0.50,Hand,"M325.5,117.1 L325.5,118.6 L325.3,124.5 L323.8,124.4 L322.6,124.4 L318.8,124.3 L318.0,124.3 L318.3,118.3 L318.3,112.4 L321.6,112.6 L325.5,112.7 L325.6,112.7 Z",SD,46059 2685,42081,0.52,0.50,Lycoming,"M601.3,150.0 L600.8,150.1 L600.1,150.0 L598.3,150.6 L598.2,150.9 L597.3,152.0 L595.4,152.7 L589.6,149.0 L588.3,147.2 L588.2,146.7 L588.1,146.1 L596.0,144.3 L596.8,143.4 L596.8,143.4 L597.6,143.3 L599.1,146.2 L603.2,147.5 L601.9,149.8 Z",PA,42081 2686,16057,0.41,0.99,Latah,"M124.6,51.1 L124.5,51.4 L124.2,52.5 L123.1,57.6 L121.7,57.2 L118.3,58.0 L114.7,57.1 L116.2,50.7 L117.0,47.5 L118.9,49.6 Z",ID,16057 2687,13237,0.52,0.48,Putnam,"M533.0,293.3 L534.8,292.6 L536.5,292.0 L537.2,293.0 L538.4,293.9 L537.4,295.7 L537.2,296.9 L536.5,297.4 L535.1,297.3 L535.1,297.3 L535.0,297.3 L533.5,297.7 L533.1,294.0 Z",GA,13237 2688,51640,0.47,0.49,Galax,"M560.3,234.3 L561.0,233.8 L560.6,234.6 L560.2,234.7 Z",VA,51640 2689,35059,0.51,0.29,Union,"M260.7,262.9 L257.3,262.6 L257.9,256.8 L252.1,256.3 L249.4,253.9 L249.9,248.0 L250.6,240.9 L254.7,241.2 L262.9,241.9 L263.9,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L263.6,247.7 L263.4,250.3 L262.9,250.2 L262.3,257.7 L262.0,261.3 L261.9,263.0 L261.9,263.0 Z M264.0,241.9 L264.0,241.9 L264.0,241.9 Z",NM,35059 2690,40025,0.84,0.54,Cimarron,"M268.1,242.3 L276.9,243.0 L277.0,243.0 L277.0,243.0 L277.0,243.0 L276.5,251.2 L275.3,251.1 L274.7,251.1 L271.8,250.9 L263.4,250.3 L263.6,247.7 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 L264.0,241.9 Z M277.0,243.0 L277.1,243.0 L277.1,243.0 L277.0,243.0 Z",OK,40025 2691,48111,0.88,0.54,Dallam,"M262.3,257.7 L262.9,250.2 L263.4,250.3 L271.8,250.9 L274.7,251.1 L274.5,254.2 L274.2,258.5 L269.6,258.2 Z",TX,48111 2692,48269,0.51,0.50,King,"M301.3,297.3 L301.9,297.4 L302.0,297.4 L301.8,303.1 L301.7,304.7 L298.1,304.6 L294.3,304.4 L294.6,299.2 L294.7,297.0 L294.7,297.0 L296.7,297.1 Z",TX,48269 2693,48451,0.49,0.49,Tom Green,"M282.0,334.7 L287.8,335.0 L288.5,332.8 L294.6,333.1 L297.0,333.2 L296.9,335.0 L298.7,335.2 L298.5,338.7 L298.2,343.5 L296.3,343.4 L289.9,343.1 L290.2,335.8 L282.0,335.2 L282.0,335.0 Z",TX,48451 2694,12049,0.50,0.50,Hardee,"M568.6,387.0 L572.8,386.3 L576.0,385.8 L576.5,389.0 L576.8,391.0 L572.4,391.7 L569.4,392.2 L569.1,389.9 Z",FL,12049 2695,21037,0.52,0.40,Campbell,"M509.3,205.7 L508.4,202.6 L507.5,201.0 L508.6,201.5 L510.1,201.9 L510.6,203.0 L511.5,204.2 L509.6,205.5 Z",KY,21037 2696,39025,0.51,0.51,Clermont,"M511.5,204.2 L510.6,203.0 L510.1,201.9 L509.7,198.5 L510.3,197.7 L513.3,197.6 L513.6,197.5 L513.6,197.5 L513.8,197.5 L513.9,199.6 L514.1,205.6 L511.9,205.3 L511.6,205.0 L511.6,204.7 Z",OH,39025 2697,48501,0.50,0.50,Yoakum,"M264.6,310.0 L261.8,309.8 L257.9,309.4 L258.1,308.1 L258.6,302.3 L258.6,302.3 L264.3,302.7 L265.1,302.8 L264.9,305.0 Z",TX,48501 2698,41071,0.50,0.48,Yamhill,"M43.0,59.2 L42.8,60.1 L43.0,60.2 L40.6,60.1 L39.6,62.4 L34.6,60.9 L32.1,60.0 L32.1,57.6 L35.8,58.7 L36.8,55.2 L40.6,56.4 Z",OR,41071 2699,19115,0.50,0.48,Louisa,"M414.9,170.1 L416.1,170.0 L416.4,170.0 L416.4,171.5 L420.2,171.3 L420.2,171.3 L419.7,172.7 L422.0,175.6 L419.2,175.7 L416.6,175.9 L416.6,174.4 L415.1,174.5 L415.1,173.6 Z",IA,19115 2700,39121,0.52,0.52,Noble,"M543.9,187.5 L543.0,186.3 L542.0,184.9 L541.9,184.2 L541.8,183.5 L545.5,181.1 L547.4,180.7 L547.5,181.3 L547.6,182.1 L546.6,182.3 L547.7,186.5 L545.3,187.3 Z",OH,39121 2701,39119,0.47,0.51,Muskingum,"M541.8,183.5 L541.9,184.2 L542.0,184.9 L539.1,185.2 L537.2,185.4 L535.8,184.8 L534.8,183.4 L535.1,182.7 L534.7,179.1 L535.9,179.0 L540.8,178.4 L541.2,182.1 Z",OH,39119 2702,42075,0.49,0.36,Lebanon,"M606.1,160.2 L609.2,161.8 L610.4,162.4 L608.7,163.8 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L603.2,161.2 L604.7,159.5 L605.3,159.8 Z M605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 L605.6,165.5 Z",PA,42075 2703,27087,0.50,0.50,Mahnomen,"M363.2,75.1 L359.5,75.1 L357.2,75.1 L357.2,72.2 L357.2,69.2 L360.4,69.2 L363.1,69.2 L363.1,69.2 Z",MN,27087 2704,34031,0.62,0.49,Passaic,"M628.0,145.1 L628.7,143.6 L629.2,142.8 L630.1,143.1 L631.0,143.3 L631.1,143.4 L631.3,143.4 L632.9,145.9 L633.6,148.3 L632.0,147.6 L631.5,147.5 L631.2,146.2 Z",NJ,34031 2705,48033,0.50,0.50,Borden,"M277.4,310.8 L278.4,310.8 L279.3,310.9 L283.6,311.1 L284.7,311.2 L284.5,314.8 L284.3,318.5 L284.3,318.5 L284.3,318.6 L280.7,318.3 L276.9,318.1 L277.2,313.6 Z",TX,48033 2706,40073,0.50,0.50,Kingfisher,"M328.0,259.2 L328.8,259.2 L329.4,259.2 L331.9,259.3 L335.2,259.3 L335.2,262.8 L335.1,266.7 L331.2,266.6 L327.8,266.6 L327.9,263.6 Z",OK,40073 2707,48051,0.53,0.58,Burleson,"M348.9,350.9 L349.3,351.1 L349.7,351.5 L352.7,354.1 L353.6,356.8 L351.8,357.4 L348.6,358.2 L347.1,357.8 L343.9,353.7 L346.0,352.5 Z",TX,48051 2708,28133,0.46,0.50,Sunflower,"M432.7,293.9 L434.3,293.8 L435.5,293.7 L435.6,294.0 L435.7,296.6 L435.8,298.1 L436.2,304.7 L434.8,305.8 L432.5,305.9 L431.9,306.0 L431.6,301.6 L433.0,300.1 Z",MS,28133 2709,27053,0.52,0.54,Hennepin,"M384.7,111.5 L386.1,107.5 L387.5,106.9 L387.5,106.9 L387.5,106.9 L387.5,106.9 L387.6,106.9 L387.6,106.9 L388.7,107.4 L391.1,110.3 L391.5,112.5 L391.8,112.8 L390.9,114.1 L390.0,114.5 L388.7,114.1 L387.7,114.3 L387.7,112.8 Z",MN,27053 2710,42027,0.50,0.57,Centre,"M584.4,160.6 L584.2,160.6 L581.3,161.3 L584.1,156.9 L584.0,153.6 L585.4,151.6 L591.2,155.4 L593.2,154.6 L595.3,153.2 L595.4,153.1 L595.4,153.1 L594.2,155.7 L593.4,156.9 L592.5,157.5 L589.8,159.7 L586.7,161.0 Z",PA,42027 2711,48025,0.74,0.79,Bee,"M328.0,385.1 L329.3,384.6 L331.4,385.5 L332.5,387.7 L337.3,390.4 L335.7,392.7 L334.8,394.2 L334.4,394.7 L330.6,393.9 L326.7,385.5 Z",TX,48025 2712,19171,0.50,0.50,Tama,"M398.5,163.4 L398.5,162.1 L398.3,157.6 L398.2,156.1 L401.1,156.0 L401.6,156.0 L404.1,155.9 L404.3,161.2 L404.4,163.2 L403.4,163.2 Z",IA,19171 2713,31147,0.50,0.50,Richardson,"M357.8,195.3 L357.8,192.8 L357.8,191.0 L359.3,191.0 L363.7,190.9 L365.7,193.2 L366.9,195.3 L366.6,195.3 L366.5,195.3 L363.9,195.3 L360.7,195.3 L359.7,195.3 Z",NE,31147 2714,17021,0.49,0.49,Christian,"M445.5,195.2 L446.7,197.8 L448.1,197.7 L448.1,197.7 L448.5,202.8 L447.1,202.9 L442.0,203.3 L441.7,200.3 L441.6,198.4 Z",IL,17021 2715,12089,0.34,0.36,Nassau,"M561.9,342.9 L561.8,342.6 L561.6,341.4 L560.9,334.3 L562.5,333.3 L565.4,334.3 L568.6,334.2 L570.1,337.3 L569.0,336.8 L565.8,337.2 Z",FL,12089 2716,13007,0.55,0.52,Baker,"M523.9,334.5 L523.6,331.6 L522.1,331.7 L522.0,330.5 L521.8,328.8 L523.9,328.6 L524.8,328.3 L527.9,327.9 L528.9,327.7 L526.4,330.4 L524.4,334.5 L524.2,334.5 Z",GA,13007 2717,13205,0.45,0.50,Mitchell,"M524.4,334.5 L526.4,330.4 L528.9,327.7 L529.0,327.7 L531.0,327.4 L531.1,328.4 L531.2,329.2 L531.5,331.6 L531.7,333.6 L530.9,333.7 L530.1,333.8 L528.3,334.0 L526.3,334.2 L526.3,334.2 L526.3,334.2 L526.3,334.2 L525.5,334.3 Z",GA,13205 2718,13275,0.50,0.49,Thomas,"M536.4,340.1 L534.9,340.2 L532.6,340.3 L531.6,340.4 L531.4,340.4 L531.0,336.4 L530.1,333.8 L530.9,333.7 L531.7,333.6 L531.8,334.1 L535.6,333.7 L536.1,337.4 Z",GA,13275 2719,21005,0.40,0.47,Anderson,"M501.9,219.6 L502.5,218.9 L502.7,217.9 L504.3,218.3 L504.9,217.9 L505.2,219.0 L506.1,220.2 L504.3,220.7 L503.1,221.9 L502.1,222.0 L501.5,222.0 L501.3,221.3 L501.2,220.8 L501.6,220.3 Z",KY,21005 2720,21185,0.57,0.47,Oldham,"M498.2,212.3 L497.9,212.9 L498.9,214.5 L498.4,215.4 L496.6,216.0 L495.3,215.3 L494.2,214.7 L494.7,213.4 L496.6,212.0 L497.3,212.0 Z",KY,21185 2721,38065,0.05,0.42,Oliver,"M291.2,75.9 L291.5,71.5 L297.4,71.4 L299.7,71.1 L300.6,73.4 L301.5,75.9 L300.8,76.4 L297.1,76.2 Z",ND,38065 2722,47109,0.50,0.50,McNairy,"M462.7,268.3 L462.8,269.8 L463.0,274.7 L461.8,274.8 L457.4,275.2 L457.2,273.0 L457.1,271.0 L458.9,268.9 Z",TN,47109 2723,50007,0.49,0.50,Chittenden,"M627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.9,85.2 L627.7,85.1 L627.6,85.0 L628.7,83.2 L628.5,82.0 L631.0,82.6 L632.4,82.6 L633.9,83.6 L634.6,85.2 L634.0,88.3 L634.1,90.3 L633.3,88.3 L629.4,89.8 L628.9,87.0 L627.9,85.2 Z",VT,50007 2724,19139,0.51,0.50,Muscatine,"M416.4,170.0 L416.3,168.4 L416.3,167.1 L420.1,166.9 L422.1,166.8 L423.6,166.7 L423.7,169.1 L420.4,170.0 L420.2,171.3 L416.4,171.5 Z",IA,19139 2725,21223,0.32,0.53,Trimble,"M497.5,208.3 L499.1,210.0 L499.9,210.6 L498.7,212.2 L498.2,212.3 L497.3,212.0 L496.6,212.0 L496.8,211.6 L496.5,210.9 L496.2,208.6 Z",KY,21223 2726,13055,0.55,0.51,Chattooga,"M503.3,278.7 L503.2,278.4 L503.0,277.6 L505.1,277.3 L508.7,276.9 L508.0,279.6 L504.4,282.5 L503.8,280.4 Z",GA,13055 2727,45051,0.39,0.53,Horry,"M591.8,269.8 L592.1,269.3 L592.4,268.9 L595.6,271.1 L599.3,273.7 L599.8,274.1 L600.5,274.5 L597.0,278.2 L595.7,280.7 L594.2,281.0 L592.6,279.0 L589.7,275.0 Z",SC,45051 2728,20131,0.50,0.50,Nemaha,"M357.5,202.6 L356.4,202.6 L354.9,202.6 L354.9,201.1 L354.9,195.3 L356.0,195.3 L357.8,195.3 L359.7,195.3 L360.7,195.3 L360.7,199.4 L360.7,201.2 L360.7,202.6 Z",KS,20131 2729,31083,0.50,0.50,Harlan,"M317.1,194.6 L315.4,194.5 L311.3,194.4 L311.3,194.4 L311.3,194.4 L311.3,192.9 L311.5,188.5 L314.0,188.6 L317.3,188.8 L317.2,191.6 Z",NE,31083 2730,20179,0.50,0.50,Sheridan,"M303.8,201.4 L303.9,201.4 L304.1,201.4 L303.9,204.3 L303.7,208.6 L303.7,208.6 L300.3,208.5 L296.5,208.3 L296.5,207.0 L296.9,201.0 L302.5,201.3 Z",KS,20179 2731,31065,0.50,0.50,Furnas,"M305.5,188.3 L308.2,188.4 L311.3,188.5 L311.5,188.5 L311.5,188.5 L311.3,192.9 L311.3,194.4 L308.9,194.3 L304.2,194.1 L304.2,194.1 L304.0,194.1 L304.2,189.4 L304.2,188.2 L305.0,188.3 Z",NE,31065 2732,21009,0.48,0.52,Barren,"M495.8,240.4 L494.9,240.9 L492.8,242.8 L491.4,241.5 L489.9,239.5 L490.2,238.3 L490.4,237.3 L490.9,237.4 L490.9,235.5 L493.0,235.6 L495.1,235.0 L495.0,236.0 Z",KY,21009 2733,06005,0.83,0.29,Amador,"M45.9,175.5 L45.6,176.7 L45.1,178.6 L40.5,178.0 L32.1,179.9 L32.1,179.5 L32.0,178.6 L32.9,175.6 L33.0,175.3 L38.0,176.8 Z",CA,6005 2734,47049,0.52,0.46,Fentress,"M508.3,250.5 L506.6,250.5 L505.7,251.1 L505.5,251.1 L505.5,251.0 L505.9,250.1 L504.9,246.7 L505.6,244.0 L509.9,244.1 L511.1,246.1 L510.6,246.6 L508.4,248.4 Z",TN,47049 2735,26023,0.50,0.50,Branch,"M497.9,157.2 L496.0,157.5 L493.3,157.8 L493.2,157.8 L492.1,158.0 L491.8,155.5 L491.4,152.8 L491.4,152.8 L491.4,152.8 L494.3,152.4 L497.2,152.1 L497.6,155.0 Z",MI,26023 2736,51031,0.48,0.48,Campbell,"M578.9,224.4 L580.2,219.9 L580.5,219.1 L581.1,219.3 L582.6,218.0 L582.8,217.5 L583.4,217.2 L585.3,220.1 L586.6,220.5 L586.3,222.5 L586.1,223.7 L584.8,223.8 L583.5,223.5 L580.2,223.0 Z",VA,51031 2737,39105,0.52,0.54,Meigs,"M535.9,198.2 L535.6,195.2 L536.1,195.2 L538.6,195.0 L542.8,194.6 L543.1,195.6 L543.1,195.9 L543.1,197.3 L541.6,199.9 L540.0,197.6 L538.9,198.9 L538.9,198.2 Z",OH,39105 2738,40053,0.50,0.50,Grant,"M329.6,245.3 L331.9,245.3 L333.8,245.3 L336.0,245.4 L338.3,245.4 L338.3,249.4 L338.2,252.2 L334.1,252.1 L329.6,252.0 L329.5,252.0 Z",OK,40053 2739,46115,0.50,0.50,Spink,"M325.5,117.1 L325.6,112.7 L325.5,112.7 L325.5,109.5 L325.6,106.8 L328.3,106.9 L334.4,107.1 L334.4,108.3 L334.3,108.6 L334.2,113.0 L334.2,117.4 L328.6,117.2 Z",SD,46115 2740,48455,0.11,0.86,Trinity,"M373.1,339.7 L373.8,340.6 L374.8,343.8 L374.8,343.8 L374.8,343.8 L374.8,343.8 L373.4,345.5 L369.6,349.2 L368.9,347.9 L367.8,348.7 L366.2,347.4 L366.2,345.3 L372.4,340.2 Z",TX,48455 2741,21147,0.46,0.49,McCreary,"M514.8,236.4 L514.4,238.2 L516.5,242.1 L516.5,242.1 L516.1,242.2 L512.3,242.6 L509.1,242.9 L510.2,240.4 L511.2,238.1 L513.2,236.5 L514.0,236.2 L514.2,236.5 Z",KY,21147 2742,21191,0.53,0.50,Pendleton,"M512.5,209.0 L510.0,209.7 L509.1,210.1 L508.6,208.8 L507.8,206.1 L509.2,205.7 L509.3,205.7 L509.6,205.5 L511.5,204.2 L511.6,204.7 L511.6,205.0 L511.6,205.1 Z",KY,21191 2743,21215,0.49,0.60,Spencer,"M497.5,218.2 L500.1,218.9 L501.9,219.6 L501.6,220.3 L501.2,220.8 L498.2,221.6 L496.9,220.9 L496.6,220.6 L497.4,218.7 L497.4,218.7 L497.5,218.6 Z",KY,21215 2744,31175,0.50,0.50,Valley,"M317.7,165.5 L321.9,165.6 L323.3,165.7 L323.4,165.7 L323.3,168.8 L323.3,171.5 L323.1,171.5 L317.6,171.3 L317.4,171.3 Z",NE,31175 2745,48069,0.50,0.50,Castro,"M272.6,280.4 L274.0,280.5 L275.0,280.6 L274.7,285.7 L274.5,287.8 L274.3,287.8 L273.2,287.8 L270.9,287.6 L267.2,287.3 L267.4,284.2 L267.7,280.1 L269.8,280.2 Z",TX,48069 2746,24043,0.31,0.35,Washington,"M585.2,179.3 L585.3,178.3 L584.8,177.9 L585.2,177.8 L587.9,177.3 L590.1,176.8 L595.9,175.7 L595.0,177.6 L594.6,182.7 L594.4,182.9 L594.1,182.9 L593.6,181.8 L592.1,180.3 L591.6,178.5 L589.2,178.8 L586.9,177.9 Z",MD,24043 2747,51680,0.43,0.45,Lynchburg,"M581.1,217.1 L582.1,218.0 L582.6,218.0 L581.1,219.3 L580.5,219.1 L580.1,217.8 Z",VA,51680 2748,05125,0.15,0.08,Saline,"M410.1,286.5 L407.9,287.3 L404.3,288.0 L404.0,287.1 L402.5,286.6 L399.8,284.5 L398.5,282.2 L398.4,280.8 L403.0,280.7 L407.3,283.6 Z",AR,5125 2749,54053,0.41,0.51,Mason,"M543.9,202.8 L540.3,204.6 L540.7,206.8 L540.2,206.5 L538.3,205.2 L537.8,202.0 L538.9,198.9 L540.0,197.6 L541.6,199.9 L543.5,202.0 Z",WV,54053 2750,28063,0.50,0.48,Jefferson,"M425.4,332.0 L425.0,330.3 L426.3,329.9 L429.6,329.8 L433.7,330.9 L433.7,331.6 L433.8,332.4 L433.8,333.6 L433.9,333.8 L431.9,334.0 L427.9,334.2 L426.2,333.6 Z",MS,28063 2751,38079,0.51,0.50,Rolette,"M311.2,50.4 L310.9,47.4 L311.1,42.7 L318.5,43.1 L318.3,47.7 L318.5,50.7 L315.2,50.5 Z",ND,38079 2752,30103,0.50,0.50,Treasure,"M229.3,89.0 L226.7,87.2 L223.0,85.3 L223.8,83.1 L221.3,77.6 L227.8,78.4 L229.3,80.1 Z",MT,30103 2753,21049,0.51,0.47,Clark,"M512.3,220.7 L512.2,218.9 L512.6,217.7 L514.5,216.9 L515.1,216.6 L516.8,219.0 L517.1,219.4 L516.7,219.7 L516.8,221.0 L515.8,221.4 L515.7,220.9 L513.3,220.9 Z",KY,21049 2754,26005,0.47,0.50,Allegan,"M484.1,141.9 L486.2,141.6 L487.0,141.5 L487.3,144.5 L487.7,147.3 L486.2,147.5 L484.9,147.6 L481.2,148.1 L478.4,148.4 L478.8,143.4 L478.7,142.5 L480.8,142.2 Z",MI,26005 2755,27015,0.50,0.49,Brown,"M377.7,126.3 L373.3,126.3 L371.8,126.4 L368.9,126.4 L368.8,124.9 L371.7,123.4 L371.6,119.8 L372.3,120.1 L372.7,120.5 L375.8,122.0 L377.7,123.6 L377.7,124.8 Z",MN,27015 2756,51109,0.58,0.37,Louisa,"M598.9,204.3 L598.8,204.6 L598.4,209.2 L596.0,207.7 L594.3,207.0 L591.9,206.2 L590.8,206.0 L591.3,204.9 L591.7,203.6 L593.1,203.0 L595.0,203.2 L596.6,203.2 Z",VA,51109 2757,18145,0.50,0.50,Shelby,"M487.7,193.2 L490.0,192.9 L491.8,192.8 L491.9,194.2 L492.3,196.8 L492.3,196.8 L492.5,198.5 L491.8,198.6 L490.3,198.8 L488.3,199.1 L488.0,196.6 L487.8,194.2 L487.7,193.9 Z",IN,18145 2758,39049,0.51,0.50,Franklin,"M522.1,186.9 L521.5,183.0 L521.9,182.0 L522.4,181.9 L522.3,181.3 L524.4,181.1 L527.5,180.9 L527.7,183.4 L527.7,184.0 L527.8,186.0 L527.5,186.5 L524.8,186.7 Z",OH,39049 2759,20093,0.51,0.50,Kearny,"M290.4,222.5 L290.6,222.5 L290.7,222.5 L290.3,229.8 L290.4,231.3 L287.4,231.2 L284.6,231.0 L284.4,229.5 L284.9,222.2 L287.5,222.3 Z",KS,20093 2760,19117,0.50,0.50,Lucas,"M391.8,175.4 L393.3,175.4 L394.7,175.3 L394.8,177.2 L394.9,179.7 L390.0,179.9 L389.0,179.9 L389.0,178.4 L388.9,175.5 L390.1,175.5 Z",IA,19117 2761,21239,0.44,0.48,Woodford,"M506.5,216.3 L507.5,216.6 L508.0,217.5 L507.8,219.2 L507.8,219.4 L507.5,221.3 L507.4,221.8 L505.8,221.1 L506.1,220.2 L505.2,219.0 L504.9,217.9 L504.8,217.5 Z",KY,21239 2762,45053,0.66,0.52,Jasper,"M572.3,300.5 L573.0,301.5 L573.1,302.4 L573.5,303.3 L573.5,303.7 L571.4,307.7 L573.8,310.1 L573.6,310.5 L573.7,310.9 L570.3,310.1 L569.6,308.3 L569.8,307.3 L566.8,303.2 L570.0,299.3 Z",SC,45053 2763,45065,0.67,0.35,McCormick,"M545.3,282.7 L545.0,282.2 L544.7,281.8 L545.5,280.7 L548.3,280.4 L548.8,281.9 L552.4,281.7 L551.0,282.3 L552.4,287.7 L551.2,287.4 L550.7,286.5 L549.3,284.7 Z",SC,45065 2764,45087,0.53,0.50,Union,"M559.4,270.1 L559.4,270.8 L559.6,271.3 L558.1,272.4 L556.5,271.2 L555.6,270.9 L553.4,270.6 L553.8,266.5 L554.5,265.1 L557.8,265.3 L558.2,265.7 L558.2,265.9 L558.0,266.1 L558.7,268.4 Z",SC,45087 2765,27103,0.50,0.51,Nicollet,"M374.6,120.5 L377.9,120.4 L382.9,120.3 L382.9,122.2 L382.0,124.0 L381.5,125.4 L377.7,123.6 L375.8,122.0 L372.7,120.5 L373.4,120.5 Z",MN,27103 2766,55075,0.67,0.85,Marinette,"M451.6,94.2 L452.8,94.4 L454.2,94.9 L454.3,101.1 L457.1,101.1 L458.1,105.2 L457.8,106.7 L456.4,107.5 L452.0,107.0 L447.9,101.3 L447.7,99.7 L447.4,95.5 L451.7,95.3 Z",WI,55075 2767,53011,0.42,0.39,Clark,"M46.3,52.9 L46.3,51.5 L46.6,50.9 L50.7,49.7 L53.4,49.2 L53.7,49.4 L53.7,49.4 L52.5,53.1 L51.2,57.6 L46.7,55.0 Z",WA,53011 2768,53059,0.50,0.58,Skamania,"M55.3,44.0 L57.2,44.6 L63.4,46.4 L62.7,48.7 L61.8,51.9 L60.8,51.7 L60.3,57.1 L56.9,56.5 L55.4,57.0 L53.1,57.5 L51.2,57.6 L52.5,53.1 L53.7,49.4 L53.7,49.4 L54.5,46.9 Z",WA,53059 2769,55051,0.49,0.49,Iron,"M428.0,92.6 L427.1,92.6 L425.0,92.8 L424.8,89.9 L421.8,88.6 L421.6,82.5 L422.8,82.8 L423.2,82.5 L426.8,86.6 L429.0,87.1 L429.4,92.5 L428.0,92.6 Z",WI,55051 2770,22123,0.49,0.49,West Carroll,"M422.8,318.1 L420.7,318.2 L420.0,316.8 L420.9,313.5 L422.6,310.9 L423.7,310.9 L425.0,310.8 L424.1,315.0 Z",LA,22123 2771,12077,0.51,0.89,Liberty,"M523.1,347.9 L524.1,350.7 L526.2,352.4 L519.4,353.2 L519.2,354.0 L517.1,352.2 L517.5,350.3 L518.2,349.1 L519.3,343.1 L520.2,344.3 L523.9,346.3 L523.0,347.3 Z",FL,12077 2772,20083,0.50,0.50,Hodgeman,"M302.0,227.5 L302.1,226.1 L302.2,223.1 L305.2,223.3 L310.7,223.5 L310.9,223.5 L310.8,226.4 L310.7,228.3 L310.7,229.4 L304.7,229.1 L301.9,229.0 L301.9,229.0 L302.0,228.1 Z",KS,20083 2773,20069,0.51,0.50,Gray,"M301.9,229.0 L302.0,230.4 L301.7,236.3 L299.5,236.2 L295.9,236.0 L296.0,234.0 L296.2,231.7 L296.2,227.2 L302.0,227.5 L302.0,228.1 L301.9,229.0 Z",KS,20069 2774,20057,0.50,0.50,Ford,"M310.7,229.4 L310.7,230.8 L310.7,232.3 L310.6,234.1 L310.5,236.8 L307.6,236.7 L303.2,236.4 L303.0,236.4 L301.7,236.3 L302.0,230.4 L301.9,229.0 L301.9,229.0 L304.7,229.1 Z",KS,20057 2775,20119,0.49,0.50,Meade,"M301.7,236.3 L303.0,236.4 L303.2,236.4 L303.3,237.9 L303.1,244.3 L300.2,244.2 L295.8,244.0 L295.8,244.0 L296.1,237.5 L295.9,237.5 L295.9,237.5 L295.9,237.2 L295.9,236.0 L299.5,236.2 Z",KS,20119 2776,28001,0.56,0.52,Adams,"M424.5,332.3 L424.6,332.0 L425.4,332.0 L426.2,333.6 L427.9,334.2 L428.0,338.3 L428.0,338.6 L423.6,339.3 L421.9,341.6 L422.9,333.8 Z",MS,28001 2777,28057,0.54,0.50,Itawamba,"M466.8,283.4 L466.8,284.7 L466.8,285.8 L466.8,288.2 L466.7,289.7 L464.4,289.9 L462.0,290.1 L461.6,285.9 L461.5,283.8 L462.8,283.7 L464.5,283.6 L466.0,283.4 Z",MS,28057 2778,21073,0.50,0.50,Franklin,"M506.0,213.7 L506.4,216.1 L506.5,216.3 L504.8,217.5 L504.9,217.9 L504.3,218.3 L502.7,217.9 L502.8,215.4 L502.7,214.4 L503.8,213.6 L504.3,213.9 L505.3,214.1 Z",KY,21073 2779,13217,0.45,0.51,Newton,"M530.6,290.9 L530.7,291.3 L530.8,292.1 L529.0,293.8 L528.6,295.1 L528.1,294.5 L527.6,293.9 L527.1,293.3 L525.7,292.8 L527.0,290.5 L527.0,288.9 L529.4,290.2 Z",GA,13217 2780,46049,0.05,0.47,Faulk,"M318.3,112.4 L316.3,112.4 L315.2,112.3 L315.3,110.2 L315.4,106.5 L324.1,106.8 L325.6,106.8 L325.6,106.8 L325.6,106.8 L325.5,109.5 L325.5,112.7 L321.6,112.6 Z",SD,46049 2781,26061,0.34,0.48,Houghton,"M443.5,84.0 L441.8,84.2 L439.8,84.3 L440.1,78.4 L439.7,73.6 L442.8,70.2 L443.3,71.1 L444.1,69.2 L446.7,69.1 L447.5,70.4 L443.5,71.5 L445.4,75.1 L442.9,76.7 Z",MI,26061 2782,47127,0.71,0.56,Moore,"M491.5,266.3 L491.1,268.0 L491.1,269.8 L489.9,268.1 L487.9,266.3 L489.0,266.8 L491.4,265.0 L491.1,265.4 L491.5,266.3 Z",TN,47127 2783,22029,0.37,0.47,Concordia,"M421.9,341.6 L422.4,344.1 L421.4,344.8 L421.3,345.1 L421.0,345.3 L421.0,345.1 L421.1,344.9 L421.0,344.1 L420.1,344.1 L420.6,341.7 L418.3,340.5 L418.2,335.0 L422.1,332.1 L424.5,332.0 L424.5,332.3 L422.9,333.8 Z",LA,22029 2784,22063,0.47,0.50,Livingston,"M432.3,350.2 L434.6,350.0 L437.3,349.9 L437.4,352.6 L438.8,356.1 L437.9,357.5 L436.7,357.2 L435.9,358.0 L432.8,355.3 L431.3,353.4 Z",LA,22063 2785,25009,0.49,0.46,Essex,"M660.4,108.1 L660.4,108.0 L660.4,107.9 L662.5,105.3 L665.0,104.4 L668.7,107.5 L665.3,111.8 L665.0,112.1 L664.4,112.0 L663.3,109.5 L660.4,108.1 L660.4,108.1 L660.4,108.1 L660.4,108.1 Z",MA,25009 2786,45079,0.93,0.78,Richland,"M566.9,280.6 L566.1,278.8 L561.6,276.1 L561.5,276.0 L561.7,275.3 L563.8,276.1 L568.4,273.7 L568.1,275.3 L571.8,276.0 L571.8,276.0 L572.2,280.2 L572.7,281.9 L569.7,281.9 Z",SC,45079 2787,45017,0.49,0.43,Calhoun,"M566.9,280.6 L569.7,281.9 L572.7,281.9 L573.3,282.9 L574.2,283.4 L574.8,284.2 L575.0,284.7 L573.0,286.5 L567.0,283.5 L566.7,282.9 Z",SC,45017 2788,54009,0.37,0.54,Brooke,"M553.8,172.1 L554.5,171.9 L555.2,171.8 L555.4,172.6 L555.9,175.8 L554.9,175.7 L553.8,175.7 L554.4,173.3 Z",WV,54009 2789,54013,0.51,0.50,Calhoun,"M549.6,198.0 L549.7,197.6 L550.8,195.8 L551.8,195.9 L552.5,195.9 L553.4,198.5 L554.0,200.6 L553.8,200.9 L553.5,201.5 L553.1,202.3 L553.0,202.5 L551.6,200.8 Z",WV,54013 2790,51021,0.44,0.47,Bland,"M554.9,225.6 L556.4,224.6 L558.0,224.1 L557.6,224.5 L560.0,226.2 L559.1,226.9 L559.5,227.6 L555.4,228.7 L553.6,230.6 L552.8,229.9 L552.7,229.8 L554.7,228.0 Z",VA,51021 2791,54043,0.51,0.49,Lincoln,"M544.3,210.8 L543.2,211.9 L543.5,214.0 L542.1,214.4 L540.2,215.4 L539.5,215.8 L538.8,216.1 L540.0,214.1 L538.6,211.3 L539.5,209.3 L541.1,208.5 L542.1,210.1 L542.9,209.0 L544.2,209.0 Z",WV,54043 2792,13131,0.50,0.51,Grady,"M526.3,334.2 L528.3,334.0 L530.1,333.8 L531.0,336.4 L531.4,340.4 L529.0,340.6 L528.5,340.6 L528.1,340.7 L527.1,340.7 L526.6,336.5 L526.3,334.2 L526.3,334.2 Z",GA,13131 2793,08021,0.87,0.58,Conejos,"M223.9,238.3 L221.3,238.0 L217.6,237.6 L215.4,233.3 L215.7,230.4 L215.7,230.4 L218.2,230.8 L224.2,231.5 L224.1,232.2 L228.0,232.6 L227.1,237.5 L227.7,238.7 L225.3,238.4 Z",CO,8021 2794,04005,0.60,0.40,Coconino,"M152.0,228.0 L153.8,228.4 L160.8,229.5 L155.4,262.2 L153.3,274.8 L147.0,270.5 L142.9,269.5 L143.9,264.0 L141.3,260.5 L133.7,259.3 L133.2,254.3 L126.5,251.4 L121.9,247.6 L124.0,238.3 L134.0,235.2 L137.1,225.4 L144.2,226.7 Z",AZ,4005 2795,49055,0.52,0.50,Wayne,"M174.2,206.2 L174.0,208.5 L174.6,212.2 L155.2,209.0 L149.6,208.1 L150.4,203.6 L151.6,202.5 L151.8,202.4 L157.6,203.4 L157.6,203.5 Z",UT,49055 2796,18133,0.52,0.50,Putnam,"M478.8,195.8 L478.5,197.2 L478.6,198.0 L477.3,198.1 L475.3,198.3 L474.4,198.4 L474.2,196.2 L474.0,194.2 L473.8,191.8 L476.7,191.6 L477.8,191.5 L477.8,191.5 L478.3,195.4 Z",IN,18133 2797,16047,0.44,0.50,Gooding,"M129.0,127.4 L126.6,126.5 L124.8,122.0 L124.2,121.9 L125.2,117.2 L126.2,117.4 L131.1,118.4 L130.5,121.3 L129.9,124.2 L129.6,124.1 Z",ID,16047 2798,47167,0.56,0.47,Tipton,"M445.3,269.7 L443.3,269.6 L439.7,269.7 L439.4,267.8 L441.3,267.3 L442.8,265.5 L446.9,266.2 L447.3,266.7 L447.5,269.1 L446.6,269.1 Z M439.5,269.9 L439.4,269.9 L439.3,270.0 L438.7,269.6 L438.3,269.2 L439.0,268.4 Z",TN,47167 2799,47075,0.49,0.49,Haywood,"M447.5,269.1 L447.3,266.7 L446.9,266.2 L447.9,262.0 L448.6,262.1 L449.8,263.0 L452.6,263.9 L452.8,267.1 L452.8,268.2 L451.4,268.3 L451.4,268.9 L449.2,269.0 Z",TN,47075 2800,47097,0.53,0.50,Lauderdale,"M448.6,262.1 L447.9,262.0 L446.9,266.2 L442.8,265.5 L441.3,267.3 L440.6,263.9 L444.5,260.9 L447.7,260.0 L448.7,261.0 L448.5,262.0 Z",TN,47097 2801,29171,0.50,0.53,Putnam,"M395.0,185.0 L396.8,184.9 L399.9,184.7 L400.5,186.2 L400.5,188.8 L399.6,188.9 L398.3,188.9 L398.3,188.9 L398.2,188.2 L391.7,188.4 L391.6,187.0 L391.5,185.1 L393.0,185.1 Z",MO,29171 2802,38059,0.52,0.14,Morton,"M287.1,80.1 L287.4,75.6 L287.4,75.6 L288.6,75.7 L291.2,75.9 L297.1,76.2 L300.8,76.4 L301.7,80.2 L303.7,82.4 L305.0,84.2 L304.4,86.0 L300.5,86.3 L299.1,88.1 L296.0,86.5 L296.3,82.1 Z",ND,38059 2803,37041,0.43,0.46,Chowan,"M619.4,228.4 L620.0,232.3 L622.1,232.5 L618.7,233.6 L617.9,229.6 L618.4,229.0 Z",NC,37041 2804,37021,0.51,0.55,Buncombe,"M542.8,251.5 L543.6,251.5 L544.9,253.1 L544.9,255.0 L546.7,255.8 L545.9,256.1 L545.6,257.1 L544.2,257.4 L539.2,258.7 L538.5,256.4 L536.7,254.8 L541.4,252.0 Z",NC,37021 2805,37089,0.58,0.53,Henderson,"M539.2,258.7 L544.2,257.4 L545.6,257.1 L545.5,257.4 L545.8,258.3 L545.0,260.2 L545.1,261.8 L544.6,261.5 L542.2,263.0 L541.2,260.5 L539.2,258.7 Z",NC,37089 2806,06063,0.81,0.55,Plumas,"M36.0,142.4 L37.6,142.9 L38.1,143.0 L41.4,143.9 L41.9,148.5 L44.5,147.1 L50.3,152.7 L49.4,159.0 L41.4,156.7 L38.4,157.1 L37.7,157.4 L37.3,157.6 L34.4,152.0 L35.4,147.4 L37.3,145.1 Z",CA,6063 2807,05115,0.50,0.49,Pope,"M396.7,266.3 L397.5,266.2 L399.6,266.2 L400.7,266.2 L401.6,266.2 L401.6,269.1 L401.2,270.6 L401.3,275.4 L400.7,275.5 L398.1,276.3 L395.4,273.2 L395.3,273.2 L395.1,273.0 L396.0,270.6 Z",AR,5115 2808,48183,0.41,0.68,Gregg,"M376.5,318.4 L376.5,322.2 L378.3,322.7 L377.4,323.1 L372.5,323.2 L372.4,322.5 L372.4,320.4 L374.8,319.4 Z",TX,48183 2809,05089,0.49,0.51,Marion,"M400.5,253.2 L401.0,253.2 L401.6,253.2 L402.2,253.2 L404.9,253.1 L404.4,256.3 L406.8,260.3 L401.0,260.4 L400.2,259.7 L400.1,253.4 Z",AR,5089 2810,29187,0.51,0.80,St. Francois,"M428.9,225.5 L429.7,226.6 L431.8,225.8 L431.8,225.8 L431.9,225.8 L431.4,228.6 L436.3,231.8 L436.1,232.0 L435.8,232.3 L435.0,232.4 L430.7,232.6 L429.2,232.7 L429.1,231.2 L429.1,230.2 L428.9,225.5 L428.9,225.5 L428.9,225.5 L428.9,225.5 Z",MO,29187 2811,08025,0.50,0.51,Crowley,"M259.1,220.3 L257.3,222.7 L251.6,221.7 L251.8,219.7 L252.2,215.4 L258.0,215.9 L259.4,216.1 L259.1,219.0 Z",CO,8025 2812,48487,0.51,0.50,Wilbarger,"M316.6,298.0 L312.9,297.8 L309.3,297.7 L309.3,297.0 L309.5,293.5 L309.6,288.6 L309.7,288.3 L311.1,287.3 L313.3,289.4 L313.5,291.5 L316.8,291.6 L316.8,292.2 Z",TX,48487 2813,41015,0.38,0.51,Curry,"M19.5,96.4 L20.0,96.4 L20.6,96.8 L20.6,96.8 L14.8,102.5 L17.0,105.3 L15.4,109.1 L12.1,108.0 L10.7,107.5 L9.8,101.4 L12.5,91.2 L15.9,93.6 L15.0,97.1 Z",OR,41015 2814,49051,0.43,0.45,Wasatch,"M159.8,168.6 L160.2,168.6 L160.4,168.2 L165.3,170.1 L168.8,168.4 L168.2,172.5 L166.8,181.3 L164.4,180.9 L162.5,174.0 L159.1,170.7 Z",UT,49051 2815,05011,0.49,0.50,Bradley,"M409.5,299.7 L410.1,299.7 L414.4,299.6 L414.6,302.5 L414.5,304.7 L414.5,304.7 L414.5,304.7 L414.5,304.7 L414.7,306.3 L412.6,308.8 L411.3,307.3 L409.5,306.6 L409.9,303.2 Z",AR,5011 2816,48193,0.47,0.50,Hamilton,"M326.3,330.5 L327.6,329.8 L329.2,328.9 L331.0,332.1 L332.5,334.7 L328.8,336.8 L326.5,338.1 L325.5,338.7 L325.1,338.9 L323.1,335.4 L322.5,334.3 L327.0,331.8 Z",TX,48193 2817,24011,0.36,0.55,Caroline,"M621.3,185.4 L621.8,187.4 L622.2,188.6 L621.3,187.9 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.0,188.6 L619.1,186.2 L618.0,184.6 L618.0,184.6 L618.8,181.2 L619.8,180.4 L620.3,182.3 Z",MD,24011 2818,27041,0.50,0.50,Douglas,"M368.1,98.3 L368.1,98.4 L368.1,98.6 L363.9,98.6 L360.8,98.6 L360.8,98.6 L360.8,98.6 L360.7,95.7 L360.7,92.7 L364.1,92.7 L368.0,92.7 L368.0,95.6 Z",MN,27041 2819,30077,0.54,0.69,Powell,"M158.9,48.3 L160.5,48.7 L162.5,49.1 L162.1,56.2 L165.1,56.8 L164.0,62.5 L167.0,63.0 L169.1,67.3 L168.3,70.4 L166.5,71.5 L165.0,72.4 L162.8,72.0 L159.5,71.4 L161.0,63.6 L158.3,61.4 L159.4,55.7 L157.5,55.3 Z",MT,30077 2820,30043,0.02,0.47,Jefferson,"M165.0,72.4 L166.5,71.5 L168.3,70.4 L172.0,68.5 L174.8,69.0 L173.3,77.6 L174.1,81.5 L173.5,82.0 L172.3,81.8 L169.0,80.4 L167.7,81.8 L165.5,80.0 L164.5,73.8 L164.5,72.9 Z",MT,30043 2821,30023,0.46,0.35,Deer Lodge,"M159.5,71.4 L162.8,72.0 L165.0,72.4 L164.5,72.9 L164.5,73.8 L161.8,75.6 L157.7,78.0 L153.8,78.9 L153.6,77.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L156.5,71.6 Z M153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 Z M152.9,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L152.9,75.8 L152.9,75.8 Z M153.1,75.8 L153.1,75.8 L153.1,75.8 L153.0,75.8 L153.0,75.8 Z M153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 Z",MT,30023 2822,30001,0.33,0.44,Beaverhead,"M153.0,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.8,78.9 L157.7,78.0 L161.1,80.6 L161.6,82.8 L163.1,86.2 L162.6,92.2 L165.5,94.2 L165.2,97.2 L173.1,100.5 L172.2,102.9 L170.9,102.9 L163.1,101.2 L161.5,103.0 L156.9,101.5 L156.2,103.2 L154.2,101.6 L153.7,95.9 L150.2,93.7 L150.8,90.5 L147.3,78.8 L150.5,76.9 L152.9,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 Z M153.0,75.8 L153.0,75.8 L153.0,75.8 L153.0,75.8 Z M153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 L153.1,75.8 Z",MT,30001 2823,47001,0.46,0.36,Anderson,"M515.4,248.6 L517.3,247.9 L520.2,247.1 L520.8,248.0 L521.2,248.3 L518.2,252.0 L517.4,253.5 L516.6,252.2 L516.1,251.3 L514.5,250.0 L514.6,249.6 L515.1,249.3 Z",TN,47001 2824,39077,0.51,0.50,Huron,"M530.6,164.5 L529.3,164.7 L529.6,165.9 L529.0,166.0 L525.9,166.4 L525.2,166.5 L524.6,166.6 L524.3,165.2 L523.8,162.3 L523.8,162.0 L523.7,161.7 L526.0,161.4 L530.0,160.9 L530.2,162.3 Z",OH,39077 2825,13005,0.42,0.58,Bacon,"M550.0,320.8 L551.5,320.6 L551.4,320.0 L554.1,321.1 L556.1,322.3 L554.7,324.3 L553.7,324.6 L552.4,324.0 L551.0,324.2 L550.3,322.7 Z",GA,13005 2826,10001,0.44,0.50,Kent,"M619.8,180.4 L619.5,179.5 L619.3,178.7 L619.2,178.3 L619.1,177.9 L621.2,177.2 L622.0,176.0 L624.0,178.0 L626.1,182.3 L623.4,184.9 L621.3,185.4 L620.3,182.3 Z",DE,10001 2827,17095,0.50,0.50,Knox,"M428.4,175.4 L428.4,174.7 L428.4,173.9 L431.3,173.7 L434.1,173.6 L434.3,176.1 L434.3,176.5 L434.5,179.5 L434.6,180.9 L432.3,181.0 L428.7,181.2 L428.7,179.7 Z",IL,17095 2828,47015,0.51,0.51,Cannon,"M491.8,255.8 L492.8,255.5 L493.7,255.5 L495.3,256.8 L495.7,257.3 L494.5,259.2 L494.7,260.5 L492.5,260.7 L491.6,260.1 L491.8,257.0 Z",TN,47015 2829,23007,0.16,0.34,Franklin,"M653.7,65.6 L653.9,61.3 L655.1,58.3 L659.1,66.3 L662.1,65.7 L663.8,70.1 L667.2,73.3 L666.0,74.1 L665.5,76.0 L665.5,76.0 L664.7,76.4 L664.3,76.8 L658.4,72.6 L656.9,74.2 Z",ME,23007 2830,21165,0.59,0.57,Menifee,"M523.8,216.8 L523.9,218.3 L523.4,219.7 L522.9,220.4 L521.7,220.6 L520.0,219.6 L519.7,219.3 L519.4,218.1 L519.6,217.9 L521.9,217.4 L522.9,216.6 L523.4,216.6 Z",KY,21165 2831,46089,0.89,0.53,McPherson,"M325.9,95.1 L325.8,97.6 L325.7,101.0 L324.3,100.9 L314.1,100.5 L314.0,100.5 L314.0,98.5 L314.2,94.7 L316.9,94.8 L322.6,95.0 L323.9,95.0 Z",SD,46089 2832,08051,0.56,0.57,Gunnison,"M205.5,216.6 L205.4,214.9 L204.9,214.0 L206.7,214.2 L207.5,208.1 L207.5,207.6 L208.6,199.0 L209.3,198.8 L210.1,198.5 L215.8,203.7 L219.9,204.1 L223.2,205.9 L221.2,209.3 L223.3,214.1 L213.5,212.9 L212.9,217.6 L208.3,217.0 Z",CO,8051 2833,27151,0.05,0.50,Swift,"M361.0,104.5 L363.9,104.5 L366.8,104.4 L366.8,107.4 L367.0,108.8 L362.8,108.9 L357.5,108.9 L357.1,108.6 L356.7,108.4 L356.6,107.4 L356.6,104.5 L358.8,104.5 Z",MN,27151 2834,13267,0.37,0.46,Tattnall,"M555.2,316.0 L555.1,311.7 L554.0,309.2 L556.1,309.4 L557.0,309.4 L558.2,312.6 L561.4,312.7 L560.8,313.3 L560.6,313.4 L560.0,315.1 L559.1,317.5 L558.5,317.4 L557.9,317.0 L556.4,316.0 Z",GA,13267 2835,48429,0.50,0.50,Stephens,"M314.1,312.6 L315.5,312.7 L316.2,312.7 L319.0,312.8 L321.5,312.9 L321.3,318.4 L321.3,320.3 L317.7,320.2 L313.8,320.1 L314.0,316.2 Z",TX,48429 2836,37117,0.47,0.51,Martin,"M613.4,240.2 L612.1,239.6 L610.7,239.3 L610.5,237.9 L609.4,236.4 L610.0,235.3 L610.1,235.1 L617.0,238.1 L618.4,236.9 L618.3,238.2 L617.9,239.8 L616.1,240.9 Z",NC,37117 2837,13317,0.44,0.61,Wilkes,"M542.3,282.9 L543.9,282.3 L544.1,282.4 L545.2,284.9 L547.2,287.8 L546.8,287.5 L544.9,288.7 L544.8,288.8 L544.5,288.9 L541.5,288.8 L540.5,287.2 L539.8,286.5 Z",GA,13317 2838,06081,0.40,0.04,San Mateo,"M11.9,183.1 L11.8,185.1 L14.3,188.0 L13.2,188.3 L13.0,190.8 L10.4,191.7 L10.3,193.1 L9.4,185.4 L10.5,182.7 L10.9,182.8 Z M12.1,183.1 L12.1,183.2 L12.0,183.1 L12.1,183.1 Z",CA,6081 2839,39159,0.46,0.51,Union,"M517.0,176.0 L517.2,175.9 L518.3,175.8 L520.5,175.4 L520.6,176.5 L521.1,179.8 L522.3,181.3 L522.4,181.9 L521.9,182.0 L521.0,182.1 L518.1,182.5 L518.0,180.5 L517.3,180.6 L517.0,176.2 L517.0,176.0 Z",OH,39159 2840,39035,0.53,0.58,Cuyahoga,"M541.1,154.3 L541.5,156.7 L541.7,158.0 L539.1,158.3 L539.7,159.5 L538.2,159.7 L538.2,159.7 L538.2,159.7 L538.2,159.7 L536.9,159.9 L535.8,160.1 L534.4,159.1 L534.1,156.5 L537.7,155.7 L539.7,153.3 L539.9,154.5 Z",OH,39035 2841,39153,0.50,0.51,Summit,"M539.1,158.3 L541.7,158.0 L542.2,161.5 L542.6,163.9 L542.5,165.3 L539.6,165.7 L539.4,164.4 L538.9,164.5 L538.5,162.1 L538.2,159.7 Z",OH,39153 2842,39103,0.47,0.50,Medina,"M538.5,162.1 L538.9,164.5 L537.1,164.8 L533.4,165.3 L532.8,165.4 L532.7,164.2 L532.5,163.0 L535.8,160.1 L536.9,159.9 L538.2,159.7 L538.2,159.7 Z",OH,39103 2843,48285,0.43,0.39,Lavaca,"M341.1,369.4 L343.3,369.4 L345.0,369.4 L349.7,374.5 L348.2,375.7 L344.9,378.2 L344.0,379.0 L343.8,378.8 L343.4,378.3 L341.5,375.8 L339.6,373.5 L340.2,370.2 Z",TX,48285 2844,40105,0.50,0.50,Nowata,"M360.6,252.3 L360.5,246.5 L360.8,245.6 L362.9,245.6 L364.4,245.6 L365.1,245.6 L365.9,245.6 L365.6,246.5 L365.7,252.3 L363.5,252.3 Z",OK,40105 2845,13125,0.47,0.39,Glascock,"M544.5,295.0 L544.5,294.9 L544.3,294.8 L546.9,293.2 L548.8,293.8 L546.9,295.8 L546.0,296.7 L544.8,296.1 Z",GA,13125 2846,46113,0.94,0.51,Shannon,"M274.4,141.9 L273.2,141.8 L271.8,141.7 L272.1,137.6 L272.4,133.8 L272.6,131.6 L275.0,130.4 L282.7,130.9 L283.2,130.8 L282.9,134.5 L283.2,136.0 L282.9,140.4 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L276.1,142.1 Z",SD,46113 2847,20117,0.50,0.50,Marshall,"M352.0,195.3 L353.7,195.3 L354.9,195.3 L354.9,201.1 L354.9,202.6 L351.5,202.6 L350.4,202.6 L349.5,202.6 L347.5,202.6 L347.6,199.5 L347.6,195.3 L350.0,195.3 Z",KS,20117 2848,22065,0.49,0.43,Madison,"M422.7,318.8 L427.3,318.6 L428.2,318.1 L430.6,321.7 L427.7,324.1 L424.9,324.3 L422.5,324.5 L421.9,322.8 L422.5,321.0 L422.3,319.5 Z M429.2,325.5 L429.0,325.5 L428.8,325.5 L428.7,324.5 Z",LA,22065 2849,13313,0.48,0.48,Whitfield,"M507.9,274.0 L508.9,273.0 L509.7,270.1 L509.7,270.1 L509.7,270.1 L510.1,270.0 L512.0,269.8 L510.9,274.7 L511.3,275.8 L511.2,276.2 L509.5,276.3 L509.3,274.6 Z",GA,13313 2850,20203,0.50,0.50,Wichita,"M285.0,214.9 L285.3,214.9 L286.1,214.9 L288.9,215.1 L290.8,215.2 L290.5,219.7 L290.4,222.5 L287.5,222.3 L284.9,222.2 L284.6,222.2 L284.6,222.2 L284.8,217.7 Z",KS,20203 2851,31027,0.50,0.50,Cedar,"M339.6,147.4 L341.8,147.2 L343.6,148.3 L344.0,148.8 L345.4,149.0 L345.4,150.2 L345.3,155.9 L343.6,155.9 L341.0,155.8 L341.0,154.4 L339.5,154.3 L339.6,148.5 Z",NE,31027 2852,17111,0.50,0.50,McHenry,"M448.4,149.9 L449.7,149.8 L453.4,149.5 L454.2,149.4 L454.7,149.4 L455.1,153.6 L455.2,155.1 L454.7,155.1 L454.7,155.1 L451.7,155.4 L450.4,155.5 L450.0,155.5 L448.9,155.6 L448.6,151.6 Z",IL,17111 2853,30069,0.99,0.19,Petroleum,"M220.3,71.1 L220.8,71.8 L220.8,72.8 L215.8,72.2 L211.6,71.7 L212.7,65.9 L211.8,62.8 L216.5,62.7 L217.2,58.2 L221.5,59.0 L221.4,61.1 L220.6,62.6 Z",MT,30069 2854,29033,0.50,0.49,Carroll,"M387.0,202.9 L387.0,202.2 L387.0,201.5 L389.3,201.4 L393.2,201.3 L393.2,202.9 L395.6,205.1 L392.7,207.4 L390.8,206.7 L390.7,207.8 L387.2,208.3 L387.2,207.8 Z",MO,29033 2855,53021,0.11,0.49,Franklin,"M101.6,53.1 L101.5,53.1 L101.4,53.0 L98.9,52.3 L94.0,56.4 L90.6,57.2 L90.6,57.2 L88.3,55.2 L89.4,51.7 L88.0,48.0 L88.9,48.3 L89.2,47.3 L95.9,49.1 L102.2,50.7 L102.2,50.7 L101.8,50.6 Z",WA,53021 2856,53075,0.76,0.55,Whitman,"M102.2,50.7 L104.7,50.4 L107.2,42.8 L108.1,43.0 L108.7,43.2 L112.3,44.1 L117.5,45.3 L117.2,46.7 L117.0,47.5 L116.2,50.7 L114.7,57.1 L114.4,58.2 L114.2,59.0 L112.4,58.7 L112.2,57.9 L112.2,57.9 L112.2,57.9 L110.4,53.3 L105.8,53.5 L101.9,53.8 L101.6,53.1 L101.8,50.6 L102.2,50.7 Z",WA,53075 2857,31169,0.50,0.50,Thayer,"M334.7,189.2 L339.5,189.3 L340.4,189.3 L340.4,189.3 L340.4,189.3 L340.4,191.0 L340.4,195.2 L335.5,195.1 L334.5,195.1 L334.5,194.3 Z",NE,31169 2858,47033,0.49,0.58,Crockett,"M448.6,262.1 L448.5,262.0 L448.7,261.0 L449.5,260.8 L450.6,258.8 L451.8,261.0 L454.6,261.9 L454.6,261.9 L453.3,264.2 L452.6,263.9 L449.8,263.0 Z",TN,47033 2859,47053,0.49,0.50,Gibson,"M451.8,261.0 L450.6,258.8 L450.9,258.4 L450.8,255.4 L453.4,255.2 L453.4,254.9 L455.2,256.4 L457.3,257.3 L457.3,259.0 L457.4,261.8 L456.7,261.9 L454.6,261.9 L454.6,261.9 Z",TN,47053 2860,19079,0.50,0.50,Hamilton,"M389.6,157.9 L388.3,157.9 L386.7,158.0 L384.0,158.0 L383.8,158.0 L383.7,153.6 L383.1,152.2 L384.6,152.2 L389.0,152.1 L389.0,152.1 L389.5,153.5 Z",IA,19079 2861,13255,0.50,0.46,Spalding,"M523.6,298.7 L520.7,298.8 L520.1,299.3 L520.1,299.0 L520.0,298.7 L520.0,298.7 L519.8,298.3 L520.0,298.1 L520.9,298.0 L521.3,296.3 L521.5,296.3 L521.8,296.2 L524.6,296.1 L525.4,296.7 L525.2,297.5 L525.3,298.3 L525.4,298.7 Z",GA,13255 2862,20107,0.50,0.50,Linn,"M376.3,228.1 L371.9,228.1 L370.2,228.1 L370.2,224.4 L370.3,222.2 L373.1,222.2 L376.2,222.2 L376.3,225.0 L376.3,227.7 L376.3,227.8 Z",KS,20107 2863,29217,0.50,0.50,Vernon,"M376.3,228.1 L376.3,227.8 L376.3,227.7 L381.3,227.7 L383.7,227.9 L383.7,229.0 L383.6,230.2 L383.6,232.6 L383.6,234.6 L381.1,234.5 L376.4,234.5 L376.4,234.2 L376.4,234.2 L376.3,232.4 Z",MO,29217 2864,18121,0.50,0.50,Parke,"M468.4,190.9 L471.3,190.6 L472.6,190.5 L472.7,191.9 L473.8,191.8 L474.0,194.2 L474.2,196.2 L473.1,196.3 L471.8,196.4 L470.3,196.5 L469.4,196.6 L469.4,192.4 Z",IN,18121 2865,19069,0.50,0.50,Franklin,"M388.8,146.2 L391.3,146.1 L394.7,146.0 L394.8,148.5 L394.9,151.9 L393.3,151.9 L389.0,152.1 L388.9,149.3 L388.8,146.2 Z",IA,19069 2866,13035,0.48,0.49,Butts,"M525.4,296.7 L525.8,296.5 L527.6,293.9 L528.1,294.5 L528.6,295.1 L529.6,297.1 L529.6,298.1 L528.8,297.8 L526.5,298.1 L525.8,298.2 L525.3,298.3 L525.2,297.5 Z",GA,13035 2867,48035,0.55,0.50,Bosque,"M331.2,327.7 L334.6,325.8 L334.9,325.8 L336.3,327.0 L336.8,326.4 L337.3,330.4 L339.6,333.6 L336.7,335.2 L334.8,336.2 L333.6,334.1 L332.5,334.7 L331.0,332.1 L329.2,328.9 L329.5,328.7 L331.2,327.7 Z",TX,48035 2868,38069,0.48,0.51,Pierce,"M311.2,50.4 L315.2,50.5 L318.5,50.7 L318.5,52.3 L318.4,53.6 L314.4,53.5 L314.4,62.4 L312.8,62.3 L311.5,62.3 L310.3,62.2 L310.0,62.2 L310.0,53.3 L309.7,50.3 L309.7,50.3 L310.4,50.3 Z",ND,38069 2869,17015,0.50,0.51,Carroll,"M436.6,155.8 L436.9,158.7 L437.0,160.3 L433.3,160.5 L431.2,160.7 L431.2,159.5 L431.0,158.9 L430.8,157.5 L428.8,156.4 L430.4,156.2 L433.8,156.0 L435.5,155.9 Z",IL,17015 2870,41031,0.50,0.62,Jefferson,"M69.3,75.5 L68.9,76.6 L68.0,79.6 L62.9,78.2 L58.9,80.1 L57.5,79.7 L50.4,77.6 L51.3,75.7 L52.3,73.1 L53.1,71.9 L53.4,70.9 L61.1,73.2 Z",OR,41031 2871,01051,0.51,0.49,Elmore,"M494.5,309.6 L495.3,309.5 L499.7,309.0 L501.5,308.8 L501.9,313.2 L501.9,313.9 L500.1,314.6 L496.9,313.7 L494.6,315.4 L494.4,313.3 L494.1,310.4 L494.0,309.7 Z",AL,1051 2872,13187,0.56,0.59,Lumpkin,"M525.7,272.5 L525.6,274.1 L526.3,276.1 L525.5,276.8 L524.6,277.8 L521.5,276.2 L521.4,275.1 L521.5,274.7 L521.7,274.3 L523.4,274.2 Z",GA,13187 2873,39083,0.47,0.54,Knox,"M527.3,178.3 L527.3,177.8 L527.2,177.1 L528.5,177.0 L528.3,173.6 L531.4,173.1 L531.9,173.0 L533.0,172.6 L533.3,172.5 L533.8,172.4 L534.0,174.3 L534.1,175.2 L534.4,177.9 L530.9,178.3 Z",OH,39083 2874,48175,0.58,0.51,Goliad,"M331.4,385.5 L332.4,384.7 L334.4,383.1 L336.8,381.3 L338.5,382.3 L340.7,383.9 L340.6,387.6 L339.2,388.8 L337.3,390.4 L332.5,387.7 Z",TX,48175 2875,48065,0.50,0.50,Carson,"M288.4,266.6 L288.4,266.7 L288.2,270.9 L288.0,274.1 L284.2,273.8 L280.6,273.6 L280.8,270.2 L281.1,266.3 L281.1,266.2 L286.2,266.5 L288.4,266.6 L288.4,266.6 L288.4,266.6 Z",TX,48065 2876,48379,0.50,0.50,Rains,"M362.7,313.3 L363.1,316.6 L363.2,317.3 L360.4,316.6 L358.9,315.4 L358.8,313.0 L359.9,313.0 L362.7,313.0 Z",TX,48379 2877,20067,0.50,0.50,Grant,"M284.6,231.0 L287.4,231.2 L290.4,231.3 L290.2,233.2 L290.0,237.2 L286.6,237.0 L284.2,236.8 L284.5,232.5 Z",KS,20067 2878,51105,0.54,0.72,Lee,"M523.9,241.0 L525.7,239.7 L526.6,239.5 L530.8,237.6 L533.8,234.6 L534.5,235.3 L535.5,236.0 L533.4,238.4 L533.1,239.8 L529.4,240.3 L526.6,240.7 L524.6,240.9 Z",VA,51105 2879,35051,0.48,0.55,Sierra,"M212.5,297.8 L212.2,300.1 L211.9,303.4 L203.7,306.4 L197.9,306.4 L197.5,309.3 L195.1,309.0 L193.1,308.7 L190.5,301.7 L188.9,298.1 L189.5,293.5 L193.5,294.0 L210.8,296.2 L212.3,296.3 L212.1,297.7 Z",NM,35051 2880,31123,0.52,0.50,Morrill,"M265.1,167.5 L265.3,165.9 L265.5,163.1 L265.6,162.4 L266.0,158.1 L272.2,158.6 L274.3,158.7 L274.4,158.7 L274.5,158.7 L274.7,163.1 L274.4,168.2 L271.2,167.9 Z",NE,31123 2881,05109,0.50,0.48,Pike,"M386.7,289.6 L389.4,289.6 L393.1,289.6 L393.8,294.5 L394.7,296.0 L394.4,296.2 L393.6,296.1 L392.6,296.3 L388.4,295.3 L388.4,292.4 Z",AR,5109 2882,08077,0.11,0.47,Mesa,"M210.1,198.5 L209.3,198.8 L208.6,199.0 L204.8,201.4 L202.0,200.9 L196.4,203.9 L196.0,206.6 L195.7,209.4 L186.8,208.1 L187.8,201.9 L189.0,193.8 L196.1,194.8 L209.8,196.6 L209.3,197.3 Z",CO,8077 2883,29065,0.51,0.50,Dent,"M422.4,232.2 L422.4,232.7 L422.5,234.0 L420.4,234.0 L421.9,236.9 L419.0,237.0 L416.1,237.1 L414.6,237.1 L413.8,234.3 L413.7,231.0 L417.4,230.9 L420.3,230.8 Z",MO,29065 2884,51185,0.55,0.49,Tazewell,"M546.2,228.5 L547.9,227.2 L548.1,226.6 L550.5,226.8 L552.8,224.2 L553.5,224.7 L554.9,225.6 L554.7,228.0 L552.7,229.8 L549.6,231.6 L548.3,231.3 L547.4,229.9 Z",VA,51185 2885,42103,0.52,0.53,Pike,"M624.5,141.2 L623.1,142.9 L621.9,146.4 L619.6,144.2 L616.8,145.1 L618.2,141.3 L619.0,138.3 L620.5,140.1 L623.5,140.3 L624.2,140.7 Z",PA,42103 2886,42115,0.50,0.51,Susquehanna,"M604.8,134.7 L609.3,133.7 L612.4,133.0 L613.1,135.4 L614.0,138.8 L612.6,139.1 L610.9,139.5 L606.3,140.5 L606.0,140.4 L605.4,138.4 L604.4,134.8 L604.6,134.8 Z",PA,42115 2887,48343,0.50,0.50,Morris,"M377.1,314.5 L376.3,314.6 L376.3,314.6 L376.3,314.3 L376.1,314.1 L375.4,313.8 L374.7,312.8 L374.8,307.9 L374.8,306.4 L375.3,307.2 L375.7,307.0 L376.4,307.3 L377.0,308.0 L377.0,311.5 Z",TX,48343 2888,42125,0.51,0.44,Washington,"M563.0,177.5 L559.0,177.9 L556.5,179.0 L556.4,178.4 L556.3,178.1 L556.0,176.5 L555.9,175.8 L555.4,172.6 L555.2,171.8 L555.1,170.8 L555.0,170.5 L556.0,170.3 L557.0,170.2 L559.7,172.2 L564.0,173.7 L563.7,174.4 L564.1,174.9 L564.4,176.4 Z",PA,42125 2889,50001,0.49,0.44,Addison,"M629.4,89.8 L633.3,88.3 L634.1,90.3 L634.9,91.7 L637.1,91.8 L637.0,92.2 L636.8,93.1 L634.9,95.0 L635.4,95.8 L632.3,96.4 L630.9,98.2 L631.0,97.9 L630.5,97.4 L628.9,93.7 Z",VT,50001 2890,50023,0.46,0.51,Washington,"M637.1,91.8 L634.9,91.7 L634.1,90.3 L634.0,88.3 L634.6,85.2 L636.5,85.6 L638.6,83.1 L641.5,83.8 L640.7,87.9 L638.3,89.3 Z",VT,50023 2891,20103,0.50,0.50,Leavenworth,"M373.9,208.6 L372.3,208.6 L372.2,212.1 L370.8,212.0 L370.3,212.3 L368.9,212.3 L368.6,211.3 L368.7,209.9 L368.6,205.0 L371.3,205.0 L371.4,205.0 L372.3,207.0 Z",KS,20103 2892,20087,0.50,0.50,Jefferson,"M368.6,205.0 L368.7,209.9 L368.6,211.3 L366.6,211.5 L364.5,211.1 L363.2,211.0 L363.3,208.5 L363.3,205.1 L363.6,205.1 L365.0,205.0 Z",KS,20087 2893,26121,0.51,0.49,Muskegon,"M483.0,133.1 L483.0,133.6 L483.1,134.6 L481.9,136.2 L477.3,136.7 L476.1,134.5 L474.4,131.0 L477.5,130.7 L479.6,130.5 L479.9,133.4 Z",MI,26121 2894,28049,0.45,0.58,Hinds,"M435.6,318.6 L436.8,317.9 L437.0,317.4 L440.0,318.7 L442.7,320.0 L440.3,324.0 L440.7,326.0 L434.6,326.4 L433.7,326.5 L433.5,325.0 L433.4,323.5 L433.7,321.3 Z",MS,28049 2895,48281,0.47,0.74,Lampasas,"M325.1,338.9 L325.5,338.7 L326.5,338.1 L329.8,344.0 L330.3,344.9 L330.2,344.9 L330.2,345.5 L328.9,345.4 L322.5,345.4 L321.3,344.3 L320.8,341.9 L325.2,339.0 Z",TX,48281 2896,51107,0.54,0.50,Loudoun,"M599.9,186.2 L599.1,187.8 L598.0,190.2 L597.6,189.6 L596.1,188.9 L593.8,188.7 L592.0,188.6 L593.0,187.2 L593.3,186.3 L593.8,183.4 L594.1,182.9 L594.4,182.9 L594.6,182.7 L596.0,182.7 L597.7,183.9 L597.3,185.7 Z",VA,51107 2897,29185,0.50,0.49,St. Clair,"M390.2,231.3 L390.0,231.3 L389.5,231.3 L387.0,230.3 L383.6,230.2 L383.7,229.0 L383.7,227.9 L383.7,227.7 L383.7,225.0 L390.2,225.0 L390.7,224.9 L391.0,225.0 L391.0,227.1 L391.0,229.8 Z",MO,29185 2898,29129,0.50,0.50,Mercer,"M391.5,185.1 L391.6,187.0 L391.7,188.4 L391.7,189.2 L391.7,190.4 L387.6,190.6 L386.7,190.6 L386.6,187.1 L386.4,185.3 L388.3,185.3 L389.2,185.2 L390.7,185.2 Z",MO,29129 2899,37127,0.52,0.49,Nash,"M604.9,234.8 L604.5,237.4 L604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 L604.2,239.8 L603.6,240.2 L599.7,243.1 L598.8,242.5 L598.6,241.8 L599.3,239.3 L600.7,234.8 L602.5,235.5 Z",NC,37127 2900,29159,0.50,0.50,Pettis,"M390.7,212.8 L390.7,212.7 L390.7,212.6 L395.0,212.6 L396.5,212.7 L396.5,214.5 L396.5,216.6 L396.5,218.3 L396.5,219.3 L396.5,219.3 L393.6,219.3 L390.7,219.8 L390.7,219.5 L390.7,219.1 L390.8,213.3 L390.7,212.8 Z",MO,29159 2901,30089,0.53,0.50,Sanders,"M149.2,54.4 L145.5,51.6 L142.8,50.8 L138.1,46.0 L134.2,45.3 L133.9,43.2 L131.3,36.0 L131.8,33.5 L132.2,32.0 L135.6,31.9 L136.9,38.4 L143.0,37.8 L143.0,37.8 L143.0,37.8 L143.0,37.8 L142.7,40.3 L146.7,42.6 L146.3,45.7 L148.9,46.3 Z",MT,30089 2902,51047,0.48,0.61,Culpeper,"M598.2,197.6 L598.4,197.9 L598.5,198.3 L598.2,198.2 L597.5,198.6 L596.5,198.2 L592.6,200.4 L592.3,198.9 L590.1,197.1 L590.9,197.1 L593.4,193.7 L596.9,197.8 Z",VA,51047 2903,54069,0.48,0.48,Ohio,"M553.6,176.2 L553.7,175.9 L553.8,175.7 L554.9,175.7 L555.9,175.8 L556.0,176.5 L556.3,178.1 L554.1,178.3 L553.5,178.3 L553.6,177.2 Z",WV,54069 2904,54065,0.50,0.44,Morgan,"M589.2,178.8 L587.8,179.5 L587.3,183.0 L586.8,182.7 L585.6,182.1 L584.3,181.8 L583.9,181.6 L583.9,181.6 L584.6,180.2 L585.2,179.3 L586.9,177.9 Z",WV,54065 2905,51165,0.92,0.73,Rockingham,"M578.7,195.4 L579.3,193.8 L581.1,195.0 L583.1,196.1 L584.6,197.0 L584.2,198.7 L587.2,199.6 L586.6,201.2 L585.3,202.4 L585.5,202.7 L584.4,203.8 L582.0,202.6 L577.4,200.5 L578.1,197.4 Z M581.7,201.1 L582.8,200.5 L582.6,199.9 L581.9,199.5 Z",VA,51165 2906,18183,0.49,0.49,Whitley,"M492.9,166.2 L492.6,167.7 L493.0,170.6 L491.5,170.8 L489.1,171.1 L488.6,171.1 L488.5,170.4 L488.3,168.2 L488.5,166.2 L490.0,166.5 Z",IN,18183 2907,06093,0.47,0.55,Siskiyou,"M16.3,123.7 L16.4,120.4 L14.2,119.5 L16.0,112.2 L19.0,110.1 L21.1,110.8 L22.5,111.1 L24.7,111.8 L33.8,114.5 L35.3,114.9 L43.8,117.6 L42.8,121.2 L40.1,130.7 L31.8,128.3 L27.3,127.0 L27.5,123.9 L21.2,126.4 L21.3,128.5 Z",CA,6093 2908,46037,0.50,0.50,Day,"M343.4,101.9 L343.4,104.4 L343.4,106.3 L343.4,107.1 L343.4,108.8 L341.6,108.7 L340.2,108.7 L336.0,108.6 L334.3,108.6 L334.4,108.3 L334.4,107.1 L334.5,103.1 L334.5,101.3 L341.7,101.4 Z",SD,46037 2909,22071,0.49,0.48,Orleans,"M444.5,359.9 L447.8,357.6 L449.9,357.1 L449.9,357.1 L449.9,357.1 L449.7,358.2 L451.3,357.7 L451.3,357.8 L451.2,357.8 L451.2,357.9 L451.0,358.1 L450.9,358.2 L450.8,358.7 L450.8,358.7 L450.8,358.7 L450.8,358.7 L450.6,358.8 L450.3,358.9 L450.3,359.5 L449.1,359.3 L448.7,359.6 L448.7,359.6 L448.7,359.6 L448.7,359.6 L446.1,361.2 L447.2,362.1 L447.2,362.1 L446.3,362.1 L444.3,361.8 Z M447.2,362.1 L447.3,362.1 L447.7,362.5 L447.2,362.1 Z",LA,22071 2910,01127,0.84,0.68,Walker,"M484.4,291.9 L484.5,292.2 L484.6,292.6 L483.4,295.4 L480.7,298.1 L479.8,297.0 L478.4,296.8 L476.4,292.6 L474.9,291.9 L474.8,291.1 L474.8,290.4 L476.7,290.4 L481.5,289.9 L482.5,291.6 Z",AL,1127 2911,29063,0.50,0.50,DeKalb,"M376.0,199.4 L376.0,199.2 L376.0,198.2 L376.0,197.3 L375.9,194.6 L379.5,194.5 L380.9,194.5 L381.1,194.5 L381.2,198.7 L381.2,199.1 L381.2,199.4 L379.7,199.4 Z",MO,29063 2912,12039,0.51,0.53,Gadsden,"M519.3,343.1 L519.6,342.9 L520.1,341.3 L520.1,341.3 L520.1,341.3 L524.7,340.9 L527.1,340.7 L528.1,340.7 L528.5,340.6 L527.0,344.6 L523.9,346.3 L520.2,344.3 Z",FL,12039 2913,13083,0.60,0.51,Dade,"M502.9,271.0 L504.2,270.8 L504.4,270.8 L503.5,273.4 L502.8,277.0 L502.2,275.0 L501.7,273.2 L501.3,272.0 L501.1,271.1 L502.3,271.0 Z",GA,13083 2914,51187,0.39,0.42,Warren,"M589.5,188.7 L590.7,188.7 L591.6,189.2 L590.9,190.5 L590.3,191.4 L589.8,193.0 L588.7,193.6 L588.5,193.2 L587.1,192.7 L587.9,190.6 L587.5,189.5 L589.4,189.0 Z",VA,51187 2915,47113,0.50,0.50,Madison,"M457.4,261.8 L458.0,261.8 L458.8,261.7 L458.9,264.1 L459.0,265.1 L458.3,266.8 L456.1,268.0 L455.4,268.1 L452.8,268.2 L452.8,267.1 L452.6,263.9 L453.3,264.2 L454.6,261.9 L454.6,261.9 L456.7,261.9 Z",TN,47113 2916,39089,0.50,0.49,Licking,"M527.5,180.9 L527.4,178.9 L527.3,178.3 L530.9,178.3 L534.4,177.9 L534.6,177.9 L534.7,179.1 L535.1,182.7 L534.8,183.4 L532.4,183.6 L531.8,183.5 L531.7,183.6 L527.7,184.0 L527.7,183.4 Z",OH,39089 2917,01101,0.57,0.51,Montgomery,"M493.5,316.6 L494.0,315.5 L494.6,315.4 L496.9,313.7 L500.1,314.6 L500.7,316.0 L501.9,316.9 L500.8,317.4 L501.2,320.7 L501.3,322.1 L498.5,322.5 L497.0,322.6 L495.3,321.4 L495.0,318.1 Z",AL,1101 2918,01041,0.50,0.50,Crenshaw,"M495.3,321.4 L497.0,322.6 L498.5,322.5 L498.8,325.4 L499.8,328.2 L499.3,329.8 L499.5,331.3 L498.1,329.9 L494.9,330.3 L495.4,328.1 L494.9,322.9 L495.5,322.8 Z",AL,1041 2919,21155,0.54,0.56,Marion,"M503.7,226.2 L503.7,226.8 L503.7,227.6 L503.9,229.9 L503.5,229.9 L501.2,230.0 L498.2,229.6 L497.6,228.3 L497.3,228.2 L498.0,225.9 L498.6,225.1 L500.7,226.6 Z",KY,21155 2920,28067,0.50,0.51,Jones,"M452.9,329.5 L453.2,329.4 L454.1,329.3 L458.3,328.7 L459.4,328.5 L459.8,333.9 L459.9,335.1 L458.0,335.2 L457.0,335.3 L455.0,335.4 L453.3,335.6 L453.2,333.8 Z",MS,28067 2921,55021,0.97,0.45,Columbia,"M433.8,131.7 L434.6,131.6 L436.0,131.5 L439.3,131.3 L440.3,131.2 L441.8,131.3 L443.3,131.1 L443.3,131.1 L443.6,135.5 L443.7,137.0 L439.3,137.2 L435.0,137.5 L436.1,132.9 Z",WI,55021 2922,27029,0.49,0.50,Clearwater,"M363.2,75.1 L363.1,69.2 L363.1,69.2 L362.8,66.2 L362.7,61.8 L362.7,60.9 L362.7,60.3 L366.8,60.3 L367.4,70.6 L367.5,72.1 L367.6,75.0 L364.9,75.1 Z",MN,27029 2923,20163,0.50,0.50,Rooks,"M311.3,201.7 L313.8,201.8 L318.3,201.9 L318.4,201.9 L318.5,201.9 L318.4,204.8 L318.3,209.2 L316.3,209.1 L311.2,208.9 L311.1,208.9 L311.0,208.9 L311.2,204.4 Z",KS,20163 2924,18041,0.50,0.47,Fayette,"M495.8,190.8 L496.3,190.7 L496.9,190.6 L497.5,191.8 L499.4,191.6 L499.6,193.3 L499.8,194.7 L498.6,194.8 L496.4,195.1 L496.0,192.2 Z",IN,18041 2925,31079,0.50,0.50,Hall,"M323.3,183.1 L323.4,180.0 L323.5,177.3 L323.5,177.3 L325.8,177.4 L329.0,177.5 L329.0,177.5 L329.0,180.4 L328.9,181.9 L328.9,183.3 L327.1,183.2 Z",NE,31079 2926,31081,0.50,0.49,Hamilton,"M329.0,180.4 L332.5,177.1 L334.8,175.5 L334.8,177.6 L334.8,177.6 L334.8,180.3 L334.7,183.4 L331.0,183.3 L328.9,183.3 L328.9,183.3 L328.9,183.3 L328.9,183.3 L328.9,181.9 Z",NE,31081 2927,31115,0.50,0.50,Loup,"M311.7,165.3 L311.8,162.1 L311.9,159.5 L312.2,159.5 L312.2,159.5 L312.2,159.5 L312.2,159.5 L312.2,159.5 L316.0,159.6 L317.6,159.6 L317.7,159.6 L317.7,159.7 L317.7,161.7 L317.5,165.5 L317.1,165.4 Z",NE,31115 2928,01007,0.47,0.49,Bibb,"M479.3,306.9 L481.1,304.5 L483.9,302.3 L484.2,302.3 L484.5,302.3 L484.6,303.6 L486.9,305.3 L486.9,305.3 L487.3,308.9 L485.3,309.1 L485.3,309.1 L481.0,309.6 L479.5,309.0 L479.5,308.5 Z",AL,1007 2929,01021,0.46,0.47,Chilton,"M486.9,305.3 L490.7,304.6 L492.0,305.3 L493.3,308.7 L494.5,309.6 L494.0,309.7 L494.1,310.4 L489.8,310.9 L487.0,311.8 L487.0,311.8 L485.6,312.0 L485.5,310.9 L485.4,310.5 L485.3,309.1 L487.3,308.9 Z",AL,1021 2930,28075,0.53,0.50,Lauderdale,"M458.8,315.8 L461.1,315.7 L466.3,315.2 L466.2,318.6 L466.2,319.8 L466.2,320.7 L466.2,321.1 L460.8,321.6 L459.3,321.8 L458.8,316.1 Z",MS,28075 2931,27011,0.50,0.50,Big Stone,"M352.4,105.9 L349.9,104.5 L348.1,101.5 L351.9,101.5 L355.0,101.6 L355.1,104.5 L356.6,104.5 L356.6,107.4 L356.7,108.4 L354.6,107.3 L352.6,106.9 L352.6,106.3 Z",MN,27011 2932,27013,0.50,0.49,Blue Earth,"M385.1,130.5 L382.8,130.5 L379.3,130.6 L378.6,130.6 L377.8,130.6 L377.8,126.7 L377.7,126.3 L377.7,124.8 L377.7,123.6 L381.5,125.4 L382.0,124.0 L385.0,123.9 L385.0,124.6 L385.0,126.6 Z",MN,27013 2933,26041,0.92,0.41,Delta,"M462.1,86.8 L464.3,86.6 L467.9,86.2 L469.4,86.1 L470.4,92.5 L467.6,94.5 L468.9,90.6 L466.5,91.3 L461.2,97.2 L460.6,97.2 L459.4,90.0 L460.6,86.9 Z",MI,26041 2934,05131,0.50,0.50,Sebastian,"M385.1,275.2 L385.1,276.4 L383.6,277.1 L382.4,279.4 L379.4,280.0 L379.5,272.8 L379.5,272.4 L379.5,272.3 L379.5,272.2 L382.4,272.9 L384.4,271.3 L384.4,275.2 Z",AR,5131 2935,13207,0.47,0.48,Monroe,"M525.9,302.8 L527.0,302.4 L526.5,298.1 L528.8,297.8 L529.6,298.1 L529.6,298.5 L529.8,298.9 L530.9,299.9 L531.7,301.7 L531.7,301.7 L531.7,301.7 L531.5,301.8 L529.4,303.8 L528.1,303.9 L526.1,304.2 L526.0,303.8 Z",GA,13207 2936,29069,0.49,0.93,Dunklin,"M440.2,259.6 L439.6,259.6 L435.7,259.9 L435.0,260.0 L434.5,260.0 L435.2,258.4 L436.8,256.4 L438.4,254.6 L436.1,251.5 L436.5,250.6 L436.9,249.2 L437.0,249.2 L439.5,249.1 L439.7,251.9 L439.7,253.1 L440.0,256.6 Z",MO,29069 2937,13117,0.55,0.52,Forsyth,"M521.3,282.2 L521.1,280.9 L521.0,279.7 L524.1,279.3 L525.1,279.2 L525.7,280.0 L524.0,282.1 L523.5,283.3 L523.8,284.1 L523.8,284.1 L521.5,283.4 Z",GA,13117 2938,48249,0.51,0.16,Jim Wells,"M329.6,395.9 L330.7,396.2 L330.8,397.0 L328.7,398.8 L328.5,403.0 L326.7,403.0 L326.6,409.4 L325.4,409.3 L324.0,409.3 L324.1,405.5 L324.3,395.8 L329.2,395.9 Z",TX,48249 2939,26073,0.50,0.50,Isabella,"M496.3,122.7 L496.7,125.8 L497.0,128.5 L495.1,128.7 L494.1,128.9 L492.7,129.0 L491.2,129.2 L490.7,124.9 L490.5,123.4 L492.4,123.2 L496.3,122.7 L496.3,122.7 Z",MI,26073 2940,48421,0.50,0.50,Sherman,"M282.0,251.6 L281.7,255.9 L281.5,259.0 L274.8,258.6 L274.2,258.5 L274.5,254.2 L274.7,251.1 L275.3,251.1 L276.5,251.2 L279.1,251.4 Z",TX,48421 2941,48341,0.50,0.50,Moore,"M274.2,258.5 L274.8,258.6 L281.5,259.0 L281.5,260.1 L281.1,266.2 L281.1,266.3 L277.8,266.1 L273.7,265.8 L273.7,265.8 L273.7,265.7 L273.9,263.6 Z",TX,48341 2942,56035,0.51,0.69,Sublette,"M179.7,126.8 L182.9,124.9 L186.7,124.0 L190.3,124.6 L191.6,132.4 L196.7,138.6 L196.0,145.8 L190.4,145.0 L183.6,143.8 L177.6,142.7 L177.5,139.8 Z",WY,56035 2943,21069,0.51,0.43,Fleming,"M516.3,210.1 L517.3,210.5 L520.0,209.0 L521.0,210.5 L522.8,211.0 L522.3,213.0 L520.8,214.6 L519.4,213.0 L517.8,213.2 L516.8,212.2 L515.8,211.0 L515.8,210.6 Z",KY,21069 2944,55019,0.50,0.50,Clark,"M426.2,114.6 L426.4,116.9 L426.5,119.0 L420.6,119.4 L419.0,116.5 L418.9,113.9 L418.8,112.1 L418.7,110.5 L418.6,109.2 L424.4,108.9 L425.9,108.7 L426.1,112.8 Z",WI,55019 2945,45091,0.50,0.45,York,"M558.6,260.1 L558.8,260.1 L559.1,260.1 L562.1,259.7 L563.2,259.6 L563.3,261.4 L565.1,260.5 L565.1,260.6 L565.9,262.5 L565.9,264.8 L562.9,265.3 L558.0,266.1 L558.2,265.9 L558.2,265.7 L557.3,262.6 Z",SC,45091 2946,42119,0.40,0.49,Union,"M595.4,153.1 L595.4,152.7 L597.3,152.0 L598.2,150.9 L598.9,153.6 L600.3,154.9 L598.5,155.2 L593.6,157.6 L593.5,157.0 L593.4,156.9 L594.2,155.7 L595.4,153.1 Z",PA,42119 2947,51570,0.63,0.52,Colonial Heights,"M605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.4,216.1 L605.2,216.2 L605.1,216.3 L605.0,216.3 L604.7,215.6 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.5,215.4 L605.6,215.4 L605.5,215.4 L605.5,215.4 Z",VA,51570 2948,51670,0.74,0.41,Hopewell,"M606.3,214.7 L606.4,214.6 L606.5,214.6 L606.5,214.6 L606.6,214.6 L606.6,214.6 L606.3,215.6 L605.8,214.8 L606.0,214.8 L606.3,214.7 L606.3,214.7 Z",VA,51670 2949,51730,0.45,0.54,Petersburg,"M605.2,216.2 L605.4,216.1 L605.5,216.0 L606.3,216.7 L605.5,217.3 L604.8,217.1 L604.6,216.6 L604.8,216.5 L605.0,216.3 L605.1,216.3 Z",VA,51730 2950,22001,0.51,0.50,Acadia,"M412.6,359.6 L410.6,361.4 L407.6,360.8 L408.0,359.2 L407.3,354.2 L407.9,354.2 L409.3,354.1 L412.9,354.0 L414.6,357.0 L414.1,358.0 Z",LA,22001 2951,46123,0.50,0.49,Tripp,"M314.4,144.2 L308.3,144.0 L306.3,143.9 L306.2,141.7 L306.4,137.3 L306.2,135.8 L306.4,131.9 L313.8,131.7 L314.8,135.8 L314.7,136.4 Z",SD,46123 2952,19077,0.50,0.50,Guthrie,"M374.4,170.0 L373.8,168.4 L373.7,164.0 L374.6,164.0 L375.2,164.0 L376.7,164.0 L379.5,163.9 L379.6,168.3 L380.1,169.9 L379.0,170.0 Z",IA,19077 2953,19183,0.50,0.50,Washington,"M409.0,168.9 L409.8,168.9 L410.5,168.8 L414.4,168.6 L414.9,170.1 L415.1,173.6 L415.1,174.5 L413.7,174.5 L412.2,174.6 L410.4,174.7 L409.3,174.7 L409.2,171.7 Z",IA,19183 2954,46111,0.50,0.50,Sanborn,"M335.6,124.7 L335.6,124.7 L335.5,126.9 L335.5,130.6 L334.8,130.5 L334.0,130.5 L330.2,130.4 L329.7,130.4 L329.6,130.4 L329.7,128.9 L329.7,126.0 L329.8,124.6 L334.2,124.7 L335.5,124.7 Z",SD,46111 2955,40051,0.50,0.50,Grady,"M334.9,281.3 L334.9,283.1 L334.9,284.2 L330.3,284.1 L329.0,284.1 L329.1,281.4 L329.1,281.2 L329.2,275.3 L329.2,272.4 L332.3,272.7 L333.6,273.2 L334.1,273.4 L335.0,273.2 L335.0,273.2 L335.0,273.2 L335.0,273.2 L334.9,281.3 Z",OK,40051 2956,55109,0.49,0.50,St. Croix,"M396.6,107.2 L399.8,107.1 L403.8,106.9 L404.1,108.4 L404.3,112.8 L401.4,112.9 L396.7,113.1 L396.8,108.9 Z",WI,55109 2957,42121,0.51,0.50,Venango,"M565.4,153.2 L564.0,154.6 L563.3,157.2 L562.0,157.5 L559.5,157.9 L559.4,157.3 L558.6,152.7 L558.6,152.7 L558.6,152.7 L560.3,150.1 L563.0,149.6 L563.7,149.5 L564.2,149.4 L564.7,152.0 Z",PA,42121 2958,48479,0.49,0.50,Webb,"M296.0,392.4 L305.3,392.7 L306.9,392.7 L306.8,395.7 L315.7,395.5 L315.5,400.8 L315.4,407.5 L315.4,409.0 L313.0,408.9 L307.2,408.6 L305.4,408.7 L304.8,403.4 L301.9,401.8 L295.2,392.4 L295.9,392.4 Z",TX,48479 2959,37123,0.50,0.48,Montgomery,"M573.7,251.8 L575.0,251.5 L575.2,251.5 L577.4,251.0 L579.2,250.7 L581.0,254.8 L582.4,256.0 L579.1,256.3 L576.2,257.5 L575.8,253.7 Z",NC,37123 2960,28065,0.45,0.46,Jefferson Davis,"M450.6,335.8 L450.2,335.8 L449.7,335.8 L447.2,336.0 L445.3,336.8 L444.9,334.6 L444.7,330.6 L446.6,330.4 L447.8,330.2 L448.0,333.0 Z",MS,28065 2961,48031,0.29,0.46,Blanco,"M323.6,354.6 L325.1,355.1 L326.9,355.7 L326.3,356.5 L326.1,356.8 L325.4,358.9 L324.2,362.2 L323.5,362.8 L322.4,363.8 L321.2,362.1 L319.9,360.3 L320.0,358.7 L320.1,354.2 L322.7,354.3 Z",TX,48031 2962,51025,0.53,0.46,Brunswick,"M598.5,225.4 L598.4,224.4 L598.0,221.3 L598.6,221.8 L599.6,221.6 L601.3,221.5 L603.0,222.5 L603.6,225.5 L602.7,228.5 L601.3,228.8 L601.0,228.9 L600.0,229.1 L599.0,229.3 L598.8,227.8 Z",VA,51025 2963,47045,0.50,0.52,Dyer,"M444.5,260.9 L443.5,259.9 L443.2,259.4 L445.0,257.1 L444.4,256.2 L446.3,256.0 L446.4,255.6 L449.6,255.4 L450.8,255.4 L450.9,258.4 L450.6,258.8 L449.5,260.8 L448.7,261.0 L447.7,260.0 Z",TN,47045 2964,05075,0.50,0.49,Lawrence,"M428.5,257.8 L428.4,259.0 L428.1,260.9 L427.9,262.3 L425.7,262.4 L424.2,262.4 L423.4,262.4 L422.7,262.4 L421.3,262.5 L421.1,256.8 L422.3,256.3 L424.8,258.0 Z",AR,5075 2965,38027,0.50,0.50,Eddy,"M320.5,67.0 L320.2,65.6 L320.3,62.6 L328.9,62.9 L329.1,62.9 L329.1,65.9 L329.3,65.9 L329.3,66.8 L329.3,67.3 L325.1,67.2 Z",ND,38027 2966,55057,0.49,0.50,Juneau,"M427.4,132.1 L427.3,132.0 L427.3,130.6 L427.0,126.4 L426.8,123.5 L426.7,122.1 L426.7,121.9 L430.2,121.7 L431.7,121.6 L430.3,124.4 L433.8,131.7 L429.0,132.0 Z",WI,55057 2967,55081,0.50,0.50,Monroe,"M426.8,123.5 L427.0,126.4 L427.3,130.6 L425.8,130.8 L420.0,131.1 L419.6,125.3 L418.9,125.4 L419.6,123.9 Z",WI,55081 2968,47151,0.54,0.53,Scott,"M515.4,248.6 L515.1,249.3 L514.6,249.6 L512.1,248.1 L510.6,246.6 L511.1,246.1 L509.9,244.1 L509.6,243.6 L509.0,242.9 L509.1,242.9 L509.1,242.9 L512.3,242.6 L516.1,242.2 L515.1,244.4 Z",TN,47151 2969,46031,0.51,0.50,Corson,"M287.4,93.2 L287.4,93.2 L289.9,93.3 L304.9,94.2 L305.0,94.2 L305.0,94.2 L307.1,98.3 L305.5,100.1 L304.8,101.1 L306.5,102.2 L303.3,102.1 L293.1,101.5 L293.1,101.5 L288.4,101.2 L286.8,101.1 L287.1,97.4 L287.4,93.2 Z",SD,46031 2970,37181,0.52,0.50,Vance,"M595.3,230.0 L596.7,233.8 L596.5,234.6 L595.3,236.5 L594.2,236.6 L593.1,232.0 L593.6,230.4 L594.7,230.2 Z",NC,37181 2971,45011,0.44,0.50,Barnwell,"M563.0,287.9 L564.1,287.9 L565.2,288.4 L565.9,293.0 L566.5,293.6 L561.5,293.8 L560.7,295.0 L559.4,294.8 L558.4,293.6 L561.2,290.1 Z",SC,45011 2972,47039,0.45,0.50,Decatur,"M467.5,267.2 L467.9,267.7 L467.3,267.7 L465.0,268.1 L464.3,267.4 L464.7,264.3 L464.6,260.8 L464.6,260.7 L464.6,260.3 L466.5,260.2 L467.4,260.6 L466.7,262.3 Z",TN,47039 2973,01055,0.44,0.50,Etowah,"M493.1,289.7 L492.9,288.9 L493.1,287.0 L494.4,285.5 L495.7,285.0 L496.5,284.9 L499.3,284.6 L500.2,286.2 L501.2,288.3 L498.1,289.5 L496.9,290.9 L494.8,288.7 Z",AL,1055 2974,16025,0.63,0.49,Camas,"M133.8,119.0 L132.3,118.7 L131.1,118.4 L126.2,117.4 L125.2,117.2 L126.7,110.5 L128.7,106.6 L131.9,108.1 L131.4,111.8 Z",ID,16025 2975,47119,0.46,0.58,Maury,"M476.2,262.4 L477.6,261.2 L477.6,259.0 L481.5,260.1 L483.8,260.8 L483.1,264.0 L481.8,265.9 L479.6,265.5 L478.4,266.0 L478.4,266.0 L478.4,266.0 L478.4,266.0 L478.1,266.1 L477.2,265.9 L477.2,264.3 Z",TN,47119 2976,17077,0.49,0.51,Jackson,"M441.9,229.2 L442.1,228.3 L442.8,226.6 L446.7,226.4 L448.3,226.3 L448.7,226.2 L448.8,227.7 L448.9,229.0 L449.1,232.1 L445.1,232.4 L444.2,232.9 L444.2,231.0 Z",IL,17077 2977,45043,0.56,0.52,Georgetown,"M590.6,278.1 L591.3,279.1 L592.6,279.0 L594.2,281.0 L595.7,280.7 L594.3,283.6 L593.3,288.9 L593.3,288.6 L592.9,288.5 L592.5,288.5 L592.2,288.5 L592.1,288.6 L590.6,287.8 L590.1,287.6 L587.1,286.9 L589.6,281.9 Z",SC,45043 2978,49045,0.54,0.48,Tooele,"M126.8,173.9 L127.1,172.4 L127.5,170.4 L128.5,165.4 L130.5,155.9 L130.5,155.9 L130.5,155.9 L146.0,158.9 L150.0,158.4 L151.5,162.6 L152.0,163.9 L152.5,165.0 L152.2,169.2 L151.7,174.1 L150.8,176.7 L148.4,178.1 Z M130.5,155.9 L130.5,155.9 L130.5,155.9 L130.5,155.9 Z",UT,49045 2979,51650,0.40,0.52,Hampton,"M618.4,215.8 L618.7,215.8 L618.8,215.5 L618.8,215.5 L619.2,215.3 L619.7,215.5 L620.5,216.8 L619.4,217.4 L618.5,217.1 L618.5,217.1 L618.5,217.1 L618.5,217.1 L618.5,217.1 Z",VA,51650 2980,55011,0.50,0.52,Buffalo,"M405.2,120.4 L405.7,117.4 L410.3,117.0 L411.4,116.9 L411.7,116.9 L412.0,122.8 L411.8,126.5 L409.9,125.0 L408.1,123.9 L406.7,121.1 Z",WI,55011 2981,51069,0.53,0.54,Frederick,"M585.6,182.1 L586.8,182.7 L587.3,183.0 L588.4,183.6 L590.2,184.6 L589.9,187.4 L589.5,188.7 L589.4,189.0 L587.5,189.5 L586.9,188.1 L584.4,189.3 L584.6,189.1 L584.7,188.7 L585.8,187.2 Z M588.4,186.4 L588.9,187.0 L589.2,186.2 L588.5,186.0 Z",VA,51069 2982,54041,0.49,0.50,Lewis,"M561.6,199.1 L560.9,199.2 L560.7,199.1 L560.8,198.4 L558.4,196.7 L556.6,195.2 L556.2,193.8 L557.0,192.9 L557.7,192.3 L559.7,192.5 L561.7,192.7 L561.3,196.7 Z",WV,54041 2983,27119,0.50,0.91,Polk,"M361.3,61.8 L362.5,61.8 L362.7,61.8 L362.8,66.2 L363.1,69.2 L360.4,69.2 L357.2,69.2 L355.9,69.2 L348.2,69.2 L348.2,67.6 L347.8,66.2 L346.3,62.8 L345.0,57.7 L346.8,57.7 L352.3,57.7 L352.3,57.7 L352.3,60.3 L352.5,61.3 L354.0,64.8 L359.8,64.8 Z",MN,27119 2984,27127,0.50,0.50,Redwood,"M368.8,124.9 L367.4,124.9 L364.5,124.9 L363.6,125.0 L362.9,125.0 L362.9,123.6 L362.9,119.1 L365.7,119.1 L365.7,116.5 L368.4,118.2 L371.6,119.8 L371.7,123.4 Z",MN,27127 2985,47047,0.50,0.50,Fayette,"M445.3,269.7 L446.6,269.1 L447.5,269.1 L449.2,269.0 L451.4,268.9 L451.6,272.6 L451.7,275.7 L451.5,275.7 L449.6,275.8 L447.8,276.0 L445.6,276.1 L445.5,272.7 Z",TN,47047 2986,22089,0.49,0.54,St. Charles,"M443.2,365.7 L441.5,365.8 L438.6,362.8 L438.3,360.5 L440.4,359.1 L441.2,359.5 L442.1,359.6 L444.0,363.6 Z",LA,22089 2987,05111,0.05,0.55,Poinsett,"M436.0,264.9 L436.1,266.3 L436.3,269.3 L436.3,269.3 L435.1,269.3 L433.3,269.4 L431.9,269.4 L426.0,269.8 L425.8,266.3 L425.8,265.3 L431.6,265.1 Z",AR,5111 2988,12045,0.51,0.50,Gulf,"M513.5,350.7 L516.0,350.5 L517.5,350.3 L517.5,350.3 L517.1,352.2 L519.2,354.0 L519.6,356.7 L517.0,358.9 L515.5,357.4 L514.0,355.4 L513.8,354.1 L513.7,353.4 L513.8,353.4 L513.6,351.7 Z",FL,12045 2989,47063,0.55,0.53,Hamblen,"M527.7,247.7 L529.3,245.4 L530.2,245.4 L531.3,244.3 L532.7,245.8 L532.0,246.8 L531.7,247.0 L531.1,247.6 L531.0,248.7 L530.1,247.9 Z",TN,47063 2990,48351,0.51,0.21,Newton,"M391.6,358.7 L391.0,358.7 L388.8,358.8 L389.0,346.9 L388.3,343.3 L391.1,343.1 L392.8,342.9 L393.0,343.1 L393.5,342.7 L394.2,345.3 L393.5,348.1 L391.9,352.8 L391.1,356.0 L390.7,357.2 Z",TX,48351 2991,48219,0.49,0.50,Hockley,"M265.1,302.8 L265.2,300.6 L265.3,295.4 L270.4,295.8 L272.8,295.9 L272.5,301.9 L272.4,303.2 L266.5,302.9 Z",TX,48219 2992,37175,0.33,0.53,Transylvania,"M539.2,258.7 L541.2,260.5 L542.2,263.0 L541.7,263.2 L539.8,264.7 L539.5,264.4 L538.0,265.1 L537.1,265.6 L536.6,265.8 L536.7,264.0 L537.1,261.3 L538.3,260.6 Z",NC,37175 2993,37171,0.49,0.50,Surry,"M561.0,236.0 L561.3,236.0 L561.9,235.9 L563.3,235.6 L564.9,235.4 L566.4,235.2 L567.2,235.1 L567.5,237.2 L567.9,239.9 L567.9,240.1 L567.9,240.3 L567.9,240.3 L566.5,239.8 L562.3,241.3 L562.1,239.8 L560.6,238.8 L560.3,238.0 Z",NC,37171 2994,01031,0.49,0.50,Coffee,"M499.8,328.2 L501.9,328.0 L504.9,327.7 L505.4,331.8 L505.7,334.7 L502.7,335.1 L499.9,335.4 L499.5,331.5 L499.5,331.3 L499.3,329.8 Z",AL,1031 2995,16027,0.42,0.50,Canyon,"M108.0,102.9 L108.5,103.0 L110.4,103.4 L110.2,106.4 L108.4,111.9 L105.9,108.1 L103.8,104.1 L103.8,104.1 L104.6,101.2 L105.1,100.9 L106.3,102.7 Z",ID,16027 2996,12073,0.50,0.50,Leon,"M528.5,340.6 L529.0,340.6 L531.4,340.4 L531.6,340.4 L532.6,340.3 L532.4,342.9 L532.4,347.1 L529.9,347.0 L523.1,347.9 L523.0,347.3 L523.9,346.3 L527.0,344.6 Z",FL,12073 2997,40119,0.97,0.51,Payne,"M349.5,263.3 L346.9,263.2 L342.4,263.2 L340.0,262.0 L339.6,259.5 L339.6,259.5 L339.6,259.5 L342.5,258.1 L345.4,258.1 L346.9,259.6 L349.5,259.6 L349.5,261.3 Z",OK,40119 2998,01039,0.50,0.49,Covington,"M492.6,336.2 L492.8,333.2 L492.0,330.6 L493.8,330.4 L494.9,330.3 L498.1,329.9 L499.5,331.3 L499.5,331.5 L499.9,335.4 L500.3,338.6 L500.4,338.7 L498.9,338.9 L497.5,339.1 L495.6,339.3 L493.1,339.5 L492.9,339.4 Z",AL,1039 2999,21045,0.43,0.50,Casey,"M503.5,229.9 L503.9,229.9 L503.7,227.6 L505.6,227.6 L506.3,227.3 L506.5,229.3 L508.6,232.2 L507.5,233.4 L506.4,234.5 L505.7,234.9 L504.4,233.6 L504.1,232.5 L502.5,231.7 L502.8,230.5 Z",KY,21045 3000,21169,0.51,0.49,Metcalfe,"M495.1,235.0 L495.5,234.8 L495.8,234.7 L496.7,235.6 L498.1,235.6 L498.6,237.3 L499.4,238.4 L499.2,239.2 L497.7,240.6 L497.5,240.4 L495.8,240.4 L495.0,236.0 Z",KY,21169 3001,21207,0.52,0.57,Russell,"M502.8,239.4 L501.9,238.8 L502.4,238.3 L502.6,237.0 L504.4,233.6 L505.7,234.9 L506.4,234.5 L506.5,235.7 L507.5,236.4 L506.7,237.4 L504.8,239.1 L504.1,239.7 Z",KY,21207 3002,23019,0.51,0.65,Penobscot,"M674.3,69.2 L673.7,67.9 L671.6,63.9 L676.9,61.0 L677.4,59.2 L673.2,53.0 L674.6,52.2 L671.1,40.7 L675.5,39.6 L679.5,52.5 L683.6,50.2 L686.7,55.8 L685.5,56.4 L681.8,62.4 L683.5,65.7 L679.7,68.3 L675.6,70.2 Z",ME,23019 3003,23025,0.14,0.60,Somerset,"M671.6,63.9 L673.7,67.9 L674.3,69.2 L672.7,69.3 L672.1,70.4 L671.1,72.8 L667.2,73.3 L663.8,70.1 L662.1,65.7 L659.1,66.3 L655.1,58.3 L657.4,53.7 L656.2,51.9 L656.8,41.9 L659.1,41.2 L660.2,40.9 L664.5,57.8 L668.8,65.8 Z",ME,23025 3004,21179,0.45,0.39,Nelson,"M496.9,220.9 L498.2,221.6 L501.2,220.8 L501.3,221.3 L501.5,222.0 L499.7,223.3 L498.6,225.1 L498.0,225.9 L497.3,228.2 L496.0,228.4 L494.9,225.5 L494.0,224.7 L494.0,224.3 L495.1,223.9 Z",KY,21179 3005,21187,0.51,0.54,Owen,"M501.1,210.2 L502.4,209.4 L502.8,208.9 L503.6,208.2 L504.7,207.7 L504.7,207.7 L505.0,209.4 L507.8,211.5 L507.4,212.2 L506.0,213.7 L505.3,214.1 L504.3,213.9 L502.9,212.7 Z",KY,21187 3006,29155,0.52,0.49,Pemiscot,"M444.4,256.2 L445.0,257.1 L443.2,259.4 L442.7,259.4 L440.2,259.6 L440.0,256.6 L439.7,253.1 L444.4,252.4 L445.4,253.6 L445.6,255.0 Z",MO,29155 3007,31125,0.51,0.49,Nance,"M329.1,171.6 L329.1,171.6 L329.1,171.6 L329.1,171.1 L329.1,170.2 L331.5,170.2 L334.9,169.6 L336.5,169.6 L336.5,171.8 L336.4,173.2 L329.2,173.8 Z",NE,31125 3008,48365,0.49,0.49,Panola,"M385.9,322.6 L385.9,323.4 L386.0,325.9 L386.1,329.2 L386.5,329.5 L382.5,329.6 L379.4,329.7 L378.1,329.8 L379.5,322.7 L381.6,323.7 Z",TX,48365 3009,21011,0.51,0.53,Bath,"M520.8,214.6 L522.4,215.9 L522.9,216.6 L521.9,217.4 L519.6,217.9 L517.7,215.9 L516.3,215.1 L517.8,213.2 L517.8,213.2 L519.4,213.0 Z",KY,21011 3010,19167,0.50,0.50,Sioux,"M352.4,143.6 L352.1,141.3 L351.2,140.7 L353.7,140.7 L359.7,140.7 L359.7,143.7 L359.7,146.6 L358.0,146.6 L351.3,146.6 L351.7,144.2 Z",IA,19167 3011,29510,0.76,0.50,St. Louis,"M434.4,213.4 L433.8,214.5 L434.3,215.3 L434.2,216.4 L433.4,217.5 L432.5,216.5 Z",MO,29510 3012,46091,0.50,0.50,Marshall,"M334.5,101.3 L334.6,98.2 L334.7,95.4 L340.5,95.5 L343.5,95.6 L343.5,98.0 L343.4,101.9 L341.7,101.4 Z",SD,46091 3013,31107,0.96,0.51,Knox,"M337.8,147.4 L338.7,147.5 L339.6,147.4 L339.6,148.5 L339.5,154.3 L336.9,154.3 L335.2,154.3 L333.2,154.2 L329.4,154.1 L329.3,154.1 L329.5,148.7 L329.4,148.3 L329.5,146.7 L330.6,147.2 L331.4,147.4 L334.8,147.2 Z",NE,31107 3014,30079,0.46,0.51,Prairie,"M258.3,75.3 L258.2,75.8 L257.9,78.2 L256.4,78.6 L256.4,79.3 L253.3,80.2 L248.0,79.2 L246.5,74.6 L241.1,73.5 L241.5,70.1 L241.7,68.1 L241.7,68.1 L244.7,68.5 L249.6,69.0 L250.1,72.5 L253.4,74.8 Z",MT,30079 3015,19005,0.51,0.49,Allamakee,"M416.7,136.4 L418.6,139.1 L417.3,142.1 L415.8,142.2 L412.0,142.4 L411.9,138.0 L411.6,135.4 L415.8,135.1 L416.4,135.1 L416.3,135.8 Z",IA,19005 3016,48061,0.61,0.94,Cameron,"M329.3,425.0 L334.4,426.0 L336.3,424.6 L340.2,431.8 L336.7,433.6 L329.2,429.8 L329.3,425.6 Z M339.1,424.1 L340.0,428.9 L338.7,424.1 L338.9,424.1 Z",TX,48061 3017,48339,0.05,0.46,Montgomery,"M360.9,361.7 L360.9,361.3 L360.9,359.1 L360.8,357.5 L360.5,352.6 L363.8,354.6 L367.4,354.7 L368.1,356.3 L370.2,357.3 L371.1,359.8 L371.3,360.3 L368.8,362.6 L364.6,360.3 Z",TX,48339 3018,48319,0.50,0.50,Mason,"M307.2,350.2 L307.3,347.5 L307.3,346.4 L310.7,346.5 L313.0,346.6 L313.0,346.9 L314.8,347.0 L314.8,349.9 L314.6,354.1 L310.6,354.0 L309.6,353.9 L307.0,353.8 Z",TX,48319 3019,37043,0.47,0.46,Clay,"M526.3,265.1 L527.4,264.9 L530.2,267.3 L529.9,267.4 L529.3,267.4 L528.3,267.7 L524.0,268.2 L523.3,268.3 L523.0,268.4 L524.7,265.6 Z",NC,37043 3020,36093,0.39,0.37,Schenectady,"M625.5,113.4 L627.4,113.9 L629.6,115.4 L629.6,115.5 L625.4,117.3 L624.3,117.9 L624.1,116.5 L625.9,114.3 Z",NY,36093 3021,20197,0.50,0.50,Wabaunsee,"M351.4,211.3 L352.9,211.4 L352.9,209.2 L356.9,208.8 L357.5,210.0 L358.7,210.4 L358.7,214.3 L358.7,214.7 L358.7,216.5 L354.6,216.5 L353.4,216.4 L352.9,215.0 L351.4,214.2 L351.4,212.5 Z",KS,20197 3022,21181,0.49,0.45,Nicholas,"M513.1,212.5 L513.7,211.5 L514.1,210.9 L515.4,211.2 L515.8,211.0 L516.8,212.2 L517.8,213.2 L517.8,213.2 L516.3,215.1 L514.3,214.0 Z",KY,21181 3023,55071,0.53,0.50,Manitowoc,"M457.3,118.3 L458.5,118.1 L459.9,118.0 L460.7,119.7 L458.4,125.5 L457.1,125.6 L454.6,125.8 L454.2,121.5 L454.1,120.0 L456.0,119.8 Z",WI,55071 3024,37047,0.28,0.72,Columbus,"M603.2,265.1 L604.1,265.7 L604.6,265.6 L600.1,270.1 L599.3,273.7 L595.6,271.1 L592.4,268.9 L593.5,267.0 L594.5,265.4 L600.7,266.0 Z",NC,37047 3025,39053,0.48,0.47,Gallia,"M538.3,205.2 L537.9,205.2 L537.5,205.5 L534.8,204.2 L533.1,201.7 L534.6,201.5 L534.4,198.3 L535.2,198.3 L535.9,198.2 L538.9,198.2 L538.9,198.9 L537.8,202.0 Z",OH,39053 3026,39031,0.51,0.49,Coshocton,"M541.8,177.1 L541.3,178.3 L540.8,178.4 L535.9,179.0 L534.7,179.1 L534.6,177.9 L534.4,177.9 L534.1,175.2 L534.0,174.3 L535.3,174.2 L540.1,173.6 L541.5,174.6 Z",OH,39031 3027,48205,0.88,0.54,Hartley,"M261.9,263.0 L262.0,261.3 L262.3,257.7 L269.6,258.2 L274.2,258.5 L273.9,263.6 L273.7,265.7 L267.4,265.3 L261.7,264.9 L261.7,264.9 L261.9,263.0 Z",TX,48205 3028,19189,0.50,0.50,Winnebago,"M382.8,136.4 L383.2,136.4 L386.7,136.3 L387.3,136.3 L388.6,136.2 L388.6,137.8 L388.7,140.3 L383.5,140.5 L382.9,140.5 L382.8,138.5 Z",IA,19189 3029,48505,0.48,0.50,Zapata,"M313.0,408.9 L312.8,413.4 L312.7,417.1 L311.8,419.0 L309.7,420.4 L305.5,412.6 L305.4,408.7 L307.2,408.6 Z",TX,48505 3030,21019,0.44,0.50,Boyd,"M531.1,210.0 L531.5,208.9 L532.7,207.5 L533.5,208.0 L533.9,208.8 L534.5,211.3 L534.2,211.7 L532.9,211.6 L531.7,212.1 L531.7,210.1 Z",KY,21019 3031,31037,0.50,0.50,Colfax,"M342.3,166.0 L343.6,166.1 L345.2,166.1 L345.8,166.1 L346.6,166.1 L346.6,168.0 L346.6,170.9 L343.1,172.2 L342.2,172.1 L342.2,171.9 Z",NE,31037 3032,45025,0.52,0.30,Chesterfield,"M581.3,267.0 L578.5,268.2 L575.5,270.9 L574.5,268.6 L573.2,267.0 L573.2,267.0 L572.7,266.3 L570.5,264.0 L571.3,263.9 L573.8,263.5 L575.9,263.2 L579.2,262.7 L581.8,265.5 Z",SC,45025 3033,47101,0.49,0.54,Lewis,"M476.2,262.4 L477.2,264.3 L477.2,265.9 L475.1,265.9 L473.4,267.0 L472.4,265.9 L471.4,265.8 L471.7,264.7 L472.0,263.6 L474.7,263.3 Z",TN,47101 3034,41067,0.65,0.49,Washington,"M45.0,57.7 L44.5,59.4 L43.0,59.2 L40.6,56.4 L36.8,55.2 L39.6,53.0 L39.7,50.0 L43.5,51.2 L44.3,52.4 L43.9,53.9 Z",OR,41067 3035,51810,0.45,0.50,Virginia Beach,"M622.0,219.4 L622.6,219.0 L622.3,217.8 L624.9,217.5 L628.0,223.0 L627.8,223.1 L627.6,223.1 L626.0,220.8 L626.5,223.4 L626.1,223.5 L625.9,223.5 L625.3,223.0 L625.6,223.6 L625.4,223.6 L624.4,223.8 L624.6,221.4 Z M622.3,217.8 L622.3,217.8 L622.3,217.8 Z M626.8,223.3 L627.1,222.8 L627.2,223.2 L627.0,223.3 Z",VA,51810 3036,30057,0.72,0.52,Madison,"M174.3,100.0 L173.8,100.6 L173.1,100.5 L165.2,97.2 L165.5,94.2 L162.6,92.2 L163.1,86.2 L161.6,82.8 L163.9,81.2 L167.7,81.8 L169.0,80.4 L172.3,81.8 L177.2,85.3 Z",MT,30057 3037,51103,0.52,0.46,Lancaster,"M614.8,203.9 L616.0,203.9 L617.7,205.9 L615.6,206.8 L613.4,204.7 L614.0,204.1 Z",VA,51103 3038,29013,0.50,0.50,Bates,"M383.7,225.0 L383.7,227.7 L383.7,227.9 L381.3,227.7 L376.3,227.7 L376.3,225.0 L376.2,222.2 L376.2,221.0 L376.2,220.7 L380.2,220.7 L383.4,221.1 L383.4,225.0 Z",MO,29013 3039,33001,0.53,0.51,Belknap,"M651.1,96.2 L651.4,94.0 L652.5,92.3 L656.5,94.6 L657.8,94.8 L658.7,97.7 L658.1,99.1 L653.5,97.4 Z",NH,33001 3040,51159,0.50,0.35,Richmond,"M614.8,203.9 L614.0,204.1 L613.4,204.7 L609.1,202.2 L608.4,201.0 L610.8,201.9 L612.7,202.1 L613.8,202.5 Z M612.8,205.2 L612.8,205.2 L612.8,205.2 Z",VA,51159 3041,20173,0.50,0.50,Sedgwick,"M342.7,230.2 L342.7,231.7 L342.6,237.5 L339.7,237.4 L333.9,237.4 L333.9,234.5 L333.9,233.0 L335.4,233.0 L335.4,230.1 L335.4,230.1 L335.4,230.1 L339.9,230.2 Z",KS,20173 3042,48453,0.09,0.29,Travis,"M326.9,355.7 L326.9,354.7 L328.0,352.3 L332.3,355.7 L337.9,356.0 L336.1,359.5 L333.7,361.9 L333.6,361.8 L332.8,362.6 L328.8,359.1 L326.1,356.8 L326.3,356.5 Z",TX,48453 3043,12057,0.50,0.51,Hillsborough,"M558.4,379.5 L561.7,379.0 L566.5,378.3 L567.2,378.2 L568.6,387.0 L565.2,387.5 L561.2,388.1 L563.1,385.2 L558.8,382.1 L558.7,381.4 Z M560.3,384.1 L560.4,384.1 L560.3,384.2 L560.3,384.2 Z M558.9,382.9 L559.0,382.9 L558.9,383.0 L558.9,382.9 Z",FL,12057 3044,34021,0.54,0.48,Mercer,"M627.5,156.6 L628.0,157.3 L629.3,157.0 L629.3,157.6 L631.5,158.6 L630.7,159.8 L630.6,160.8 L629.0,160.4 L628.9,161.0 L628.0,160.1 L625.4,158.5 L626.5,158.2 Z",NJ,34021 3045,42129,0.85,0.76,Westmoreland,"M574.7,168.4 L574.2,170.0 L574.0,170.4 L573.1,172.7 L571.8,175.0 L569.0,173.7 L564.1,174.9 L563.7,174.4 L564.0,173.7 L564.7,172.9 L565.0,165.9 L564.8,165.5 L564.8,165.5 L564.8,165.5 L566.8,167.0 L568.3,167.3 L568.4,168.0 Z",PA,42129 3046,19029,0.50,0.50,Cass,"M371.6,175.9 L371.0,175.9 L368.7,175.9 L368.6,172.0 L368.6,170.1 L369.5,170.1 L370.1,170.1 L370.1,170.1 L372.6,170.1 L374.4,170.0 L374.4,173.0 L374.4,175.8 L372.9,175.8 Z",IA,19029 3047,21115,0.50,0.49,Johnson,"M535.0,217.8 L534.3,218.4 L535.0,220.5 L533.3,220.1 L531.0,221.1 L530.7,219.8 L529.9,218.9 L530.3,217.9 L529.8,217.1 L530.3,216.4 Z",KY,21115 3048,44003,0.54,0.53,Kent,"M658.4,126.2 L662.5,125.0 L663.0,124.2 L663.6,124.8 L663.3,126.1 L662.7,127.1 L659.0,128.3 L658.9,127.9 L658.8,127.6 L658.8,127.3 Z",RI,44003 3049,50019,0.56,0.53,Orleans,"M635.1,75.3 L638.4,74.5 L642.7,73.3 L643.5,75.4 L643.2,77.3 L641.3,78.2 L639.0,81.7 L637.9,79.6 L635.8,79.1 L636.1,78.1 Z",VT,50019 3050,20085,0.50,0.50,Jackson,"M357.5,202.6 L360.7,202.6 L360.7,201.2 L361.4,201.1 L363.6,201.1 L363.5,202.6 L363.6,205.1 L363.3,205.1 L363.3,208.5 L362.9,208.5 L357.5,208.5 L357.5,205.8 Z",KS,20085 3051,22041,0.50,0.50,Franklin,"M416.8,325.6 L418.5,322.5 L422.5,321.0 L421.9,322.8 L422.5,324.5 L422.6,326.3 L421.6,329.9 L419.3,330.0 L417.0,328.6 L416.6,326.7 Z",LA,22041 3052,28155,0.49,0.50,Webster,"M456.1,299.4 L455.1,299.5 L455.1,300.0 L453.8,300.1 L451.1,301.5 L451.1,301.5 L451.1,301.5 L449.3,301.7 L449.1,298.0 L449.0,297.5 L449.0,297.3 L453.4,296.9 L453.4,296.7 L454.5,296.6 L455.6,296.5 L455.8,298.2 Z",MS,28155 3053,25011,0.96,0.48,Franklin,"M639.2,113.7 L639.4,113.6 L640.3,113.4 L641.8,113.1 L646.0,112.1 L647.3,111.8 L648.1,111.7 L649.0,112.4 L649.4,117.9 L644.5,118.1 L640.6,116.5 L640.2,114.0 Z",MA,25011 3054,46007,0.07,0.46,Bennett,"M294.0,136.7 L293.8,140.4 L293.6,143.2 L293.6,143.2 L288.6,143.0 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L283.1,142.6 L282.9,140.4 L283.2,136.0 L289.1,136.4 Z",SD,46007 3055,30093,0.48,0.61,Silver Bow,"M161.6,82.8 L161.1,80.6 L157.7,78.0 L161.8,75.6 L164.5,73.8 L165.5,80.0 L167.7,81.8 L163.9,81.2 Z",MT,30093 3056,05057,0.50,0.50,Hempstead,"M386.6,299.7 L388.4,299.7 L388.4,295.3 L392.6,296.3 L393.6,296.1 L393.4,298.3 L393.4,304.2 L391.4,304.2 L390.0,304.1 L389.3,303.9 L388.5,302.0 L386.5,301.1 Z",AR,5057 3057,29029,0.50,0.50,Camden,"M401.6,224.3 L404.1,227.6 L405.6,227.5 L405.6,227.9 L405.6,230.2 L402.8,229.8 L399.7,229.8 L398.0,229.8 L396.8,229.8 L396.8,228.2 L396.8,227.2 L396.8,225.1 L396.5,223.8 L397.9,224.9 Z",MO,29029 3058,51117,0.46,0.41,Mecklenburg,"M590.5,228.4 L591.9,225.1 L592.0,224.8 L595.6,225.5 L598.5,225.4 L598.8,227.8 L599.0,229.3 L596.3,229.8 L595.3,230.0 L594.7,230.2 L593.6,230.4 L592.9,230.6 L589.9,231.1 L589.9,229.5 Z",VA,51117 3059,21233,0.44,0.38,Webster,"M467.9,229.9 L469.1,229.7 L471.0,229.4 L471.5,230.3 L472.7,230.6 L470.0,232.6 L467.2,234.8 L467.0,234.7 L467.4,234.3 L466.0,234.1 L465.5,232.8 L465.5,232.8 L465.5,232.8 L467.0,230.9 Z",KY,21233 3060,40047,0.50,0.50,Garfield,"M329.5,254.2 L329.6,252.6 L329.6,252.0 L334.1,252.1 L338.2,252.2 L338.2,252.2 L338.2,256.6 L338.1,259.4 L336.4,259.4 L335.2,259.3 L331.9,259.3 L329.4,259.2 L329.4,257.6 Z",OK,40047 3061,26091,0.49,0.50,Lenawee,"M509.7,156.4 L508.0,156.7 L503.8,157.4 L503.4,154.8 L503.0,151.3 L505.2,151.0 L505.8,151.0 L507.4,150.7 L510.3,150.2 L510.9,154.4 L511.2,156.1 L510.0,156.3 Z",MI,26091 3062,13123,0.49,0.43,Gilmer,"M515.1,276.8 L515.0,276.3 L515.0,276.3 L514.6,273.8 L514.9,271.7 L519.2,271.9 L521.2,274.9 L520.5,275.8 L519.3,276.0 L519.0,276.3 Z",GA,13123 3063,28089,0.95,0.15,Madison,"M443.5,311.8 L445.3,311.7 L446.9,311.5 L447.0,313.3 L447.2,315.7 L446.8,316.1 L446.4,316.6 L445.4,316.7 L442.7,320.0 L440.0,318.7 L437.0,317.4 L442.5,314.3 Z",MS,28089 3064,48227,0.50,0.50,Howard,"M283.7,325.9 L282.9,325.8 L282.6,325.8 L278.1,325.6 L276.4,325.4 L276.9,318.6 L276.9,318.1 L280.7,318.3 L284.3,318.6 L284.1,321.1 Z",TX,48227 3065,54099,0.43,0.43,Wayne,"M534.2,211.7 L534.5,211.3 L533.9,208.8 L534.2,209.0 L535.0,208.8 L537.4,210.2 L538.6,211.3 L540.0,214.1 L538.8,216.1 L537.7,217.6 L537.6,217.8 L537.5,217.3 L536.3,216.5 L534.0,213.5 Z",WV,54099 3066,26013,0.53,0.49,Baraga,"M450.0,83.5 L447.6,83.7 L443.5,84.0 L442.9,76.7 L445.4,75.1 L447.9,74.8 L450.1,74.8 L449.6,79.1 Z",MI,26013 3067,51760,0.47,0.63,Richmond,"M604.2,212.8 L602.9,212.6 L601.6,211.5 L603.5,210.4 Z",VA,51760 3068,06079,0.28,0.41,San Luis Obispo,"M31.3,222.1 L31.4,222.1 L31.6,222.1 L32.6,228.5 L38.0,236.2 L37.3,239.1 L29.9,233.5 L21.9,233.6 L22.7,231.0 L16.4,217.8 L25.1,220.3 Z",CA,6079 3069,48001,0.50,0.49,Anderson,"M361.0,335.9 L358.3,333.1 L357.2,329.4 L360.9,328.9 L366.2,328.0 L366.7,333.4 L368.5,336.3 L363.0,337.2 L361.7,337.8 L362.2,335.9 Z",TX,48001 3070,38071,0.05,0.48,Ramsey,"M331.9,57.1 L330.5,57.0 L329.2,61.7 L326.1,59.2 L323.9,60.3 L321.6,57.4 L321.7,53.8 L324.3,53.9 L324.4,50.9 L328.9,51.1 L331.8,51.1 L332.0,54.1 Z",ND,38071 3071,08029,0.87,0.49,Delta,"M207.5,208.1 L201.0,207.3 L196.0,206.6 L196.4,203.9 L202.0,200.9 L204.8,201.4 L208.6,199.0 L207.5,207.6 Z",CO,8029 3072,35021,0.79,0.54,Harding,"M243.6,253.3 L246.1,253.6 L249.4,253.9 L252.1,256.3 L257.9,256.8 L257.3,262.6 L256.8,268.3 L253.3,268.1 L249.2,260.9 L243.9,260.7 L244.7,257.8 Z",NM,35021 3073,30007,0.37,0.50,Broadwater,"M174.8,69.0 L176.6,69.3 L178.7,66.3 L180.8,72.4 L182.1,76.7 L178.8,76.2 L174.1,81.5 L173.3,77.6 Z",MT,30007 3074,48457,0.49,0.51,Tyler,"M378.9,345.2 L379.3,345.2 L380.4,345.6 L383.6,345.9 L386.2,354.0 L383.6,354.1 L379.2,354.2 L377.5,346.0 Z",TX,48457 3075,53077,0.56,0.49,Yakima,"M82.4,45.5 L82.4,46.6 L83.0,47.6 L81.2,54.4 L80.5,57.2 L72.3,55.0 L61.8,51.9 L62.7,48.7 L63.4,46.4 L66.8,41.6 L66.0,40.1 L65.7,38.5 L68.3,35.5 L71.4,39.4 L75.8,40.7 L76.4,43.9 Z",WA,53077 3076,48347,0.50,0.49,Nacogdoches,"M380.2,331.9 L380.7,332.7 L381.1,335.1 L382.4,336.2 L382.2,342.3 L379.6,339.2 L374.4,337.3 L373.1,335.4 L373.3,332.0 L376.0,332.0 Z",TX,48347 3077,30061,0.57,0.45,Mineral,"M134.2,45.3 L138.1,46.0 L142.8,50.8 L145.6,54.8 L143.8,60.0 L142.3,59.9 L139.8,57.8 L139.8,55.9 L136.6,49.6 Z",MT,30061 3078,35047,0.35,0.55,San Miguel,"M230.1,271.8 L227.4,271.5 L224.3,271.2 L224.7,266.8 L225.7,257.4 L235.0,260.1 L243.9,260.7 L249.2,260.9 L253.3,268.1 L250.1,270.0 L246.2,271.7 L246.3,270.5 L230.4,268.9 Z",NM,35047 3079,46103,0.68,0.47,Pennington,"M285.8,117.3 L285.5,120.1 L285.1,125.9 L284.6,130.7 L283.2,130.8 L282.7,130.9 L275.0,130.4 L276.7,127.7 L260.1,126.4 L260.3,123.9 L260.5,121.6 L264.3,121.9 L267.8,122.2 L280.7,123.2 L282.3,118.1 Z",SD,46103 3080,19149,0.99,0.50,Plymouth,"M359.7,146.6 L359.7,149.7 L359.7,152.4 L352.8,152.4 L351.8,152.4 L350.1,149.4 L351.3,146.6 L358.0,146.6 Z",IA,19149 3081,16005,0.51,0.50,Bannock,"M158.2,139.3 L155.8,138.2 L155.2,135.0 L155.3,128.1 L152.6,126.9 L153.7,125.9 L161.1,127.2 L159.7,132.5 L161.4,132.5 L161.6,137.7 L160.9,140.3 Z",ID,16005 3082,04025,0.52,0.69,Yavapai,"M117.1,272.8 L117.1,272.8 L118.1,267.6 L121.1,252.2 L121.9,247.6 L126.5,251.4 L133.2,254.3 L133.7,259.3 L141.3,260.5 L143.9,264.0 L142.9,269.5 L139.8,274.4 L142.4,277.4 L133.3,275.0 L131.3,277.5 L125.2,274.3 Z",AZ,4025 3083,04012,0.50,0.52,La Paz,"M118.1,267.6 L117.1,272.8 L117.1,272.8 L115.5,281.0 L115.1,283.1 L115.1,283.1 L106.5,281.4 L102.5,279.1 L101.0,286.2 L97.6,285.6 L95.1,284.0 L97.4,278.6 L100.1,274.6 L102.2,268.5 L105.0,267.4 L107.1,265.6 L114.1,268.3 Z",AZ,4012 3084,46065,0.92,0.52,Hughes,"M303.5,117.7 L308.0,117.9 L313.7,118.1 L313.9,118.1 L313.7,123.7 L314.2,125.6 L310.3,123.9 L310.9,123.2 L302.9,119.2 Z",SD,46065 3085,40077,0.50,0.50,Latimer,"M364.7,284.4 L364.8,278.6 L367.0,278.1 L370.4,278.0 L372.8,278.0 L372.8,278.0 L371.0,281.4 L371.0,284.4 L368.4,284.4 Z",OK,40077 3086,36067,0.49,0.48,Onondaga,"M604.5,121.2 L602.3,121.9 L600.0,122.5 L597.6,121.8 L595.9,115.6 L599.0,114.1 L601.9,115.0 L603.1,116.4 Z",NY,36067 3087,27097,0.07,0.98,Morrison,"M373.7,88.6 L375.1,89.3 L377.4,89.7 L377.1,91.7 L383.7,91.6 L383.8,94.5 L384.4,97.2 L377.4,97.4 L378.4,98.2 L376.1,98.2 L374.0,98.3 L373.8,89.7 Z",MN,27097 3088,53001,0.50,0.48,Adams,"M107.2,42.8 L104.7,50.4 L102.2,50.7 L102.2,50.7 L95.9,49.1 L89.2,47.3 L89.9,44.5 L94.3,45.6 L95.8,39.9 L97.4,40.3 Z",WA,53001 3089,08039,0.85,0.53,Elbert,"M252.7,209.6 L253.1,205.3 L245.2,204.5 L245.6,200.6 L245.9,197.3 L248.9,197.6 L258.1,198.4 L257.1,210.0 Z",CO,8039 3090,01073,0.83,0.11,Jefferson,"M489.9,292.9 L490.4,292.9 L491.1,296.5 L487.1,300.6 L484.5,302.3 L484.2,302.3 L483.9,302.3 L479.8,298.6 L480.7,298.1 L483.4,295.4 L484.6,292.6 L487.2,291.9 Z",AL,1073 3091,35061,0.11,0.36,Valencia,"M202.9,276.6 L203.7,270.3 L205.6,270.5 L205.6,270.5 L206.0,272.0 L214.4,273.0 L212.9,278.7 L213.5,280.2 L207.3,277.1 Z",NM,35061 3092,26083,0.72,0.81,Keweenaw,"M447.5,70.4 L446.7,69.1 L444.1,69.2 L446.6,66.5 L453.2,66.3 Z M436.3,58.3 L443.1,54.7 L441.2,57.1 L436.3,60.5 Z",MI,26083 3093,41011,0.57,0.52,Coos,"M12.5,91.2 L15.7,85.5 L18.9,81.7 L22.9,83.0 L22.3,92.0 L19.5,96.4 L15.0,97.1 L15.9,93.6 Z",OR,41011 3094,06025,0.53,0.56,Imperial,"M97.6,285.6 L96.5,290.0 L93.7,290.1 L82.2,288.6 L74.0,287.5 L75.8,280.1 L77.3,274.3 L94.6,278.0 L97.4,278.6 L95.1,284.0 Z",CA,6025 3095,20003,0.50,0.50,Anderson,"M364.3,228.2 L364.4,224.5 L364.5,222.3 L367.6,222.3 L370.3,222.2 L370.2,224.4 L370.2,228.1 L366.8,228.2 Z",KS,20003 3096,51770,0.51,0.45,Roanoke,"M570.7,222.4 L570.7,222.4 L570.5,222.4 L570.7,222.4 L570.7,222.4 Z M570.7,222.4 L570.5,221.7 L572.5,221.6 L570.7,222.4 L570.7,222.4 Z",VA,51770 3097,25001,0.41,0.17,Barnstable,"M673.2,120.5 L681.0,120.7 L672.7,125.6 L672.4,122.0 L672.3,121.7 Z",MA,25001 3098,06073,0.42,0.54,San Diego,"M58.1,268.5 L61.5,270.6 L77.3,274.3 L75.8,280.1 L74.0,287.5 L59.6,285.6 L58.4,282.5 L59.1,275.6 L56.4,270.1 L56.9,269.1 Z",CA,6073 3099,32009,0.56,0.36,Esmeralda,"M75.3,187.0 L80.2,196.3 L76.2,213.1 L72.8,208.0 L69.4,203.0 L68.0,200.7 L63.5,194.0 L64.5,194.3 Z",NV,32009 3100,27031,0.51,0.47,Cook,"M414.4,56.0 L417.3,57.3 L424.7,56.7 L430.4,58.2 L425.5,61.7 L420.5,63.7 L415.1,67.9 L414.8,61.0 Z",MN,27031 3101,53009,0.25,0.44,Clallam,"M36.7,11.7 L36.9,6.6 L39.7,3.9 L44.3,8.9 L56.3,14.6 L54.7,17.7 Z",WA,53009 3102,30035,0.49,0.21,Glacier,"M156.8,23.8 L168.7,26.1 L177.4,27.7 L176.2,34.8 L176.0,36.3 L171.6,35.4 L171.0,38.3 L162.5,36.7 L161.9,32.5 L159.0,30.8 Z",MT,30035 3103,35005,0.57,0.40,Chaves,"M247.4,308.5 L232.9,307.2 L232.0,314.6 L224.9,313.9 L226.4,303.7 L232.2,304.2 L234.0,288.3 L235.3,289.9 L244.1,290.8 L247.1,289.6 L248.2,294.1 L252.5,298.7 L249.5,298.5 Z",NM,35005 3104,04007,0.63,0.56,Gila,"M153.3,274.8 L152.6,279.1 L163.0,280.8 L161.9,287.8 L161.6,289.7 L155.1,290.4 L154.7,293.2 L149.4,295.9 L147.2,287.3 L145.0,284.6 L142.4,277.4 L139.8,274.4 L142.9,269.5 L147.0,270.5 Z",AZ,4007 3105,23021,0.16,0.40,Piscataquis,"M671.6,63.9 L668.8,65.8 L664.5,57.8 L660.2,40.9 L670.2,37.8 L671.1,40.7 L674.6,52.2 L673.2,53.0 L677.4,59.2 L676.9,61.0 Z",ME,23021 3106,30021,0.17,0.48,Dawson,"M258.3,75.3 L253.4,74.8 L250.1,72.5 L249.6,69.0 L251.1,58.7 L252.6,58.9 L255.2,62.1 L259.6,62.6 L261.2,67.2 L261.2,67.2 L262.0,72.5 Z",MT,30021 3107,27125,0.50,0.50,Red Lake,"M361.3,61.8 L359.8,64.8 L354.0,64.8 L352.5,61.3 L361.3,61.3 Z",MN,27125 3108,56017,0.53,0.51,Hot Springs,"M206.3,116.4 L208.7,120.7 L215.6,123.5 L216.5,127.6 L207.4,127.1 L202.0,123.9 L197.7,123.0 L196.5,119.5 L201.5,118.7 L203.4,116.0 Z",WY,56017 3109,15003,0.46,0.54,Honolulu,"M216.383,426.614 L216.220,426.379 L216.191,426.137 L216.309,425.864 L216.591,425.645 L217.002,425.570 L217.957,425.489 L218.256,425.522 L218.574,425.396 L218.899,425.094 L218.923,425.202 L219.130,424.757 L219.311,424.536 L219.779,424.149 L220.012,424.109 L220.423,423.874 L220.652,423.857 L221.096,423.966 L221.827,424.600 L222.083,425.108 L222.276,425.669 L222.828,426.139 L223.041,426.659 L223.405,427.021 L223.876,426.966 L224.498,427.275 L224.743,427.712 L224.603,428.014 L224.721,428.177 L224.890,428.815 L225.135,429.117 L225.250,429.462 L225.259,429.859 L225.139,430.192 L224.309,430.899 L223.912,430.969 L223.462,430.795 L223.144,430.972 L222.671,431.080 L222.077,430.900 L221.807,430.564 L221.597,430.427 L221.198,430.446 L220.807,430.325 L220.676,430.397 L219.023,430.582 L218.547,430.392 L218.364,430.127 L218.139,429.184 L217.720,428.944 L217.505,428.624 L217.452,428.341 L217.014,427.855 L216.845,427.513 L216.848,427.246 L216.712,427.245 L216.746,426.888 Z",HI,15003 3110,15007,0.79,0.34,Kauai,"M202.135,422.829 L201.820,422.827 L201.114,422.665 L200.587,422.644 L200.006,422.207 L199.619,421.856 L199.327,421.794 L198.629,421.433 L198.449,421.263 L198.031,420.657 L197.955,420.445 L197.987,419.684 L198.116,419.453 L198.652,418.943 L198.718,418.618 L199.194,418.120 L200.080,417.776 L200.535,417.489 L200.865,417.208 L201.328,417.076 L201.661,417.078 L201.936,417.177 L202.429,417.049 L203.050,417.155 L203.413,417.000 L203.983,417.271 L204.242,417.314 L204.549,417.527 L205.068,418.121 L205.304,418.597 L205.347,419.132 L205.243,419.653 L204.827,420.488 L204.875,421.169 L204.810,421.484 L204.520,421.890 L204.131,422.170 L203.910,422.434 L203.346,422.822 L202.857,423.037 Z M192.407,422.559 L192.442,422.361 L192.724,421.608 L192.911,421.415 L193.180,421.317 L193.710,420.845 L194.021,420.718 L194.204,420.083 L194.441,419.677 L194.929,419.566 L195.456,419.753 L195.916,420.249 L196.166,420.731 L196.052,421.189 L195.789,421.510 L195.848,421.762 L195.737,422.301 L195.389,422.601 L194.979,422.796 L194.626,422.855 L194.380,423.184 L194.251,423.644 L194.026,423.940 L193.441,424.071 L192.867,423.841 L192.477,423.269 Z M190.014,424.432 L190.213,424.842 L190.186,425.261 L190.000,425.454 Z",HI,15007 3111,15009,0.71,0.59,Maui,"M237.692,436.938 L237.573,436.850 L237.109,436.851 L237.109,436.683 L236.683,436.487 L235.928,435.667 L235.735,435.341 L235.711,435.073 L235.558,434.754 L235.560,434.307 L235.764,433.574 L236.086,433.093 L236.300,432.961 L236.549,432.664 L237.186,432.486 L237.516,432.461 L237.900,432.589 L238.739,433.189 L238.927,433.396 L239.073,433.904 L239.224,434.042 L239.786,433.972 L240.119,433.770 L240.586,433.585 L241.131,433.624 L241.377,433.582 L242.108,433.851 L242.341,433.999 L243.061,434.690 L243.555,434.931 L243.729,435.158 L244.333,435.423 L244.727,435.521 L244.725,435.228 L245.225,435.226 L245.470,435.717 L245.623,436.420 L245.610,437.150 L245.396,437.675 L245.206,437.977 L244.374,438.703 L243.845,438.778 L243.090,439.147 L242.353,439.056 L241.690,439.402 L241.197,439.576 L240.165,439.649 L239.609,439.583 L239.128,439.314 L238.827,439.040 L238.780,439.304 L238.889,439.675 L238.769,440.055 L238.491,440.379 L238.232,440.531 L237.404,440.558 L236.136,440.648 L235.588,440.646 L235.587,439.972 L235.536,439.491 L235.786,439.009 L236.142,438.717 L236.744,438.455 L237.443,438.032 L238.030,438.029 L238.249,437.757 L238.687,437.597 L238.489,437.036 L238.063,437.074 Z M231.106,435.037 L231.179,434.530 L231.452,434.182 L232.105,433.863 L232.659,433.841 L233.591,433.931 L234.138,434.105 L234.688,434.535 L235.083,434.994 L235.492,435.561 L235.583,436.114 L235.352,436.586 L235.031,437.042 L234.767,437.241 L234.421,437.345 L234.060,437.611 L233.317,437.595 L232.988,437.682 L232.603,437.578 L232.202,437.127 L231.984,436.592 L231.949,435.949 L231.618,435.863 L231.192,435.322 Z M232.352,430.302 L232.357,431.312 L232.856,431.403 L232.961,431.601 L233.240,431.596 L233.533,431.990 L233.750,431.962 L233.766,431.757 L233.497,431.561 L233.762,431.113 L234.103,430.677 L234.318,430.795 L235.032,430.648 L235.918,430.751 L236.351,430.949 L236.680,431.315 L236.791,431.925 L236.523,432.420 L236.262,432.522 L236.091,432.722 L235.581,433.086 L235.151,433.333 L234.952,433.367 L234.522,433.648 L234.058,433.649 L234.058,433.729 L233.576,433.680 L232.984,433.484 L232.853,433.369 L232.236,433.152 L231.923,433.102 L231.656,432.911 L231.283,432.906 L230.957,433.026 L229.716,433.095 L228.622,432.997 L228.283,432.720 L228.071,432.352 L228.082,432.044 L228.275,431.633 L228.741,431.031 L228.755,430.514 L228.978,430.244 L229.222,430.104 L229.855,430.080 L230.296,430.170 L230.600,430.344 L231.014,430.354 L231.836,430.520 L232.168,430.523 Z",HI,15009 3112,15001,0.45,0.49,Hawaii,"M243.321,449.848 L243.467,449.155 L243.607,448.838 L243.804,448.630 L244.122,448.469 L244.623,447.874 L245.234,447.622 L245.519,446.948 L246.184,446.215 L245.593,445.381 L245.449,445.003 L245.278,444.302 L245.238,443.915 L245.275,443.437 L245.392,443.094 L245.653,442.706 L245.892,442.522 L246.452,442.337 L246.747,442.323 L247.792,442.662 L248.395,443.081 L248.560,443.296 L249.259,443.684 L249.571,443.943 L249.910,444.119 L250.375,444.115 L251.631,444.511 L252.129,444.713 L252.471,444.928 L253.347,445.364 L253.910,445.593 L254.409,445.910 L255.288,446.533 L255.956,447.141 L256.145,447.439 L256.441,447.703 L256.629,447.994 L256.616,449.042 L257.089,449.096 L257.297,449.191 L257.610,449.505 L257.914,450.174 L257.907,450.572 L258.122,450.719 L258.574,451.305 L259.223,451.593 L259.765,452.018 L260.000,452.318 L259.997,452.786 L259.808,453.340 L259.388,453.871 L258.931,454.273 L258.429,454.595 L257.813,455.212 L257.107,455.581 L256.474,455.809 L255.786,456.238 L254.848,456.558 L254.259,456.525 L253.915,456.407 L253.428,456.703 L253.155,457.022 L252.888,457.197 L252.284,457.419 L251.826,457.900 L251.371,458.055 L251.019,458.363 L250.731,459.182 L250.504,459.429 L250.408,459.779 L250.161,460.132 L249.364,460.843 L248.969,461.019 L248.584,461.013 L248.231,460.812 L248.019,460.371 L247.505,460.160 L246.932,459.737 L246.357,459.612 L245.729,459.206 L245.381,458.623 L245.152,458.009 L245.133,457.479 L245.339,456.341 L245.344,455.968 L245.462,455.575 L245.499,454.883 L245.246,454.340 L245.066,453.579 L244.807,453.318 L244.637,452.883 L244.509,452.066 L244.350,451.625 L243.866,451.331 L243.698,450.812 L243.325,450.069 Z",HI,15001 3113,15005,0.44,0.46,Kalawao,"M232.352,430.302 L232.653,430.144 L233.117,430.198 L233.419,430.361 L233.627,430.707 L234.103,430.677 L233.762,431.113 L233.497,431.561 L233.766,431.757 L233.750,431.962 L233.533,431.990 L233.240,431.596 L232.961,431.601 L232.856,431.403 L232.357,431.312 Z",HI,15005 3114,02110,0.52,0.37,Juneau,"M150.92,439.22 L154.58,442.23 L155.54,443.92 L154.09,446.46 L152.12,444.34 L150.54,445.42 L150.23,443.82 L148.79,442.52 L147.94,439.52 Z",AK,2110 3115,02261,0.55,0.49,Valdez-Cordova,"M110.27,438.13 L110.68,436.95 L111.47,437.98 L110.66,438.52 Z M103.60,428.92 L104.53,428.24 L104.87,424.50 L108.77,424.80 L109.60,424.53 L109.78,419.49 L111.47,419.60 L111.60,413.57 L115.53,413.42 L115.52,414.00 L121.46,414.21 L121.82,416.48 L121.53,417.47 L123.89,417.00 L124.95,418.11 L124.95,420.35 L125.44,422.06 L127.97,421.99 L128.00,422.98 L128.29,431.80 L125.85,431.58 L125.82,430.97 L121.33,431.08 L118.99,434.16 L118.99,434.93 L117.26,436.06 L116.07,435.49 L116.87,434.34 L116.12,433.54 L112.77,432.23 L111.62,432.41 L108.08,434.05 L107.71,435.10 L105.64,435.54 L104.85,434.62 L102.37,434.30 L103.70,433.97 L104.02,430.99 Z",AK,2261 3116,02070,0.60,0.46,Dillingham,"M64.43,436.03 L63.22,436.29 L62.93,435.40 L63.57,434.72 Z M71.27,437.97 L70.90,438.65 L70.49,438.17 L67.47,438.86 L66.42,435.59 L65.16,435.70 L63.95,434.26 L63.01,434.26 L61.87,435.95 L60.19,435.09 L62.41,433.01 L63.04,431.42 L64.30,431.14 L65.78,428.59 L66.52,428.77 L67.98,426.26 L69.36,425.43 L69.99,423.85 L71.23,423.57 L71.72,422.53 L75.02,423.32 L76.28,422.95 L77.26,423.76 L81.02,424.58 L79.47,432.48 L77.71,432.71 L76.50,434.20 L74.70,434.38 L74.45,436.91 L74.45,436.91 L71.34,437.67 L71.29,437.90 L71.29,437.90 Z",AK,2070 3117,02013,0.57,0.58,Aleutians East,"M46.55,460.36 L47.39,459.32 L49.17,460.49 L49.21,461.37 L47.48,461.52 Z M58.82,460.63 L60.24,460.50 L60.32,461.60 L59.08,461.16 Z M47.61,453.36 L48.29,452.86 L48.48,453.64 L48.21,453.97 Z M34.66,459.75 L33.77,459.13 L33.95,458.61 L34.51,457.72 L37.43,457.64 L38.55,459.18 L40.10,459.20 L38.96,460.28 Z M61.76,455.79 L59.24,456.75 L60.12,458.12 L61.43,457.83 L61.15,459.07 L61.94,460.66 L61.23,461.19 L59.84,459.47 L57.72,460.37 L57.42,459.46 L58.59,457.00 L56.93,458.69 L55.38,457.30 L52.58,457.99 L52.69,459.13 L49.92,459.45 L49.22,460.16 L48.90,457.74 L46.93,457.34 L46.83,458.79 L42.81,457.91 L41.36,458.76 L39.57,458.15 L39.72,456.44 L41.74,455.01 L47.67,454.72 L53.76,451.57 L56.17,451.38 L58.30,451.94 L59.44,450.51 L61.65,449.32 L65.78,447.84 L65.50,449.07 L63.88,449.85 L61.54,449.88 L60.68,453.77 L61.78,454.03 Z",AK,2013 3118,02180,0.68,0.40,Nome,"M53.80,388.41 L54.35,388.10 L54.63,388.51 L54.10,388.96 Z M54.07,383.31 L53.77,383.20 L54.11,382.44 L54.46,383.05 Z M65.00,404.16 L65.99,403.27 L65.07,402.39 L65.98,401.89 L67.67,403.78 L69.20,404.06 L70.86,402.82 L71.14,399.92 L68.41,396.78 L66.57,398.04 L65.04,395.95 L62.85,395.17 L60.77,395.27 L58.28,393.41 L57.41,392.28 L57.86,390.50 L57.19,388.47 L57.91,387.67 L56.85,386.96 L55.42,384.93 L55.92,383.84 L57.89,383.60 L60.55,382.76 L63.48,382.14 L67.24,381.93 L67.26,382.99 L65.92,387.36 L66.62,387.60 L66.43,389.95 L76.75,393.13 L77.45,392.73 L78.00,392.87 L77.05,394.38 L76.48,396.53 L75.10,397.35 L73.95,401.77 L74.57,401.93 L74.22,403.60 L72.80,404.43 L70.99,404.45 L70.57,406.15 L69.59,407.63 L66.33,406.67 L66.11,405.41 Z M48.54,397.99 L47.14,399.62 L46.07,398.45 L44.61,399.45 L43.27,397.01 L43.18,395.88 L41.92,394.68 L40.46,394.84 L39.80,392.90 L41.01,391.17 L42.93,393.28 L45.07,393.33 L45.43,395.17 L46.41,396.42 Z",AK,2180 3119,02016,0.89,0.90,Aleutians West,"M28.15,433.60 L26.47,434.45 L26.07,433.95 L26.81,432.79 Z M5.00,460.13 L6.82,459.54 L7.12,460.60 L6.23,460.87 Z M12.65,461.24 L14.11,460.39 L14.71,461.07 L14.20,461.71 Z M27.03,437.61 L28.46,437.73 L28.71,438.41 L27.45,438.56 Z M10.65,461.00 L12.07,460.34 L12.43,460.76 L11.18,461.74 Z M33.95,458.61 L33.77,459.13 L34.66,459.75 L34.29,460.65 L30.39,462.04 L29.45,461.72 L26.58,462.18 L25.35,461.35 L22.70,462.28 L19.55,462.83 L20.29,461.30 L26.03,458.78 L26.83,460.42 L29.13,460.29 L29.87,458.27 L31.92,457.74 Z M16.39,461.86 L15.62,461.09 L16.50,460.01 L18.98,460.08 L18.39,461.75 Z",AK,2016 3120,02150,0.71,0.45,Kodiak Island,"M90.14,439.36 L91.72,438.90 L91.70,440.04 L90.35,439.92 Z M71.72,454.46 L72.61,453.95 L72.81,455.53 L71.76,455.72 Z M75.10,457.60 L76.11,456.80 L76.57,457.00 L76.13,458.30 Z M83.72,440.10 L85.37,440.37 L87.74,439.03 L87.65,440.01 L86.28,441.17 L85.24,441.22 L83.78,443.64 L82.73,444.22 L80.82,444.06 L79.20,445.97 L77.98,446.02 L75.84,447.32 L74.78,449.17 L73.57,448.09 L75.36,446.05 L76.95,446.14 L78.03,444.72 L79.37,444.45 L79.74,442.41 L82.87,441.85 Z M91.05,442.57 L92.22,443.16 L91.49,444.80 L89.42,444.85 L90.50,447.83 L89.44,449.70 L88.95,449.23 L87.22,450.90 L84.81,451.56 L82.68,453.42 L82.69,454.45 L79.26,453.94 L81.96,452.57 L80.94,450.86 L81.02,449.48 L80.07,448.52 L81.15,446.99 L85.86,444.20 L89.98,440.34 Z",AK,2150 3121,02290,0.53,0.47,Yukon-Koyukuk,"M107.62,405.70 L100.04,404.79 L98.19,406.89 L97.47,406.30 L96.07,406.67 L95.20,408.81 L93.44,408.58 L93.27,410.53 L94.19,411.87 L92.09,414.47 L92.00,415.05 L91.66,417.26 L89.18,418.62 L79.11,416.68 L79.25,416.04 L74.88,415.10 L74.75,415.65 L72.57,415.11 L72.41,415.65 L68.62,414.63 L67.50,414.30 L67.56,412.56 L68.98,408.24 L69.59,407.63 L70.57,406.15 L70.99,404.45 L72.80,404.43 L74.22,403.60 L74.57,401.93 L73.95,401.77 L75.10,397.35 L76.48,396.53 L77.05,394.38 L78.00,392.87 L77.45,392.73 L78.19,389.97 L79.81,390.41 L80.09,389.36 L82.85,390.04 L83.39,387.80 L85.53,388.29 L85.28,389.42 L86.37,389.65 L86.62,388.54 L87.72,388.77 L88.04,389.97 L89.11,390.20 L89.58,388.56 L91.23,388.89 L91.42,387.94 L93.09,388.25 L93.75,385.42 L92.36,384.55 L92.94,382.35 L91.54,380.92 L91.96,379.50 L114.49,382.28 L114.63,379.11 L118.62,379.13 L126.54,379.13 L126.95,391.19 L127.12,396.41 L124.90,399.03 L122.89,399.41 L122.18,401.05 L120.36,402.23 L120.01,404.10 L118.86,404.00 L119.39,401.36 L117.85,401.52 L116.64,401.00 L114.54,401.60 L114.66,400.89 L113.42,400.17 L113.21,398.81 L111.19,399.80 L109.40,400.16 L106.37,399.92 L106.07,403.88 L107.72,405.67 L107.74,405.70 L107.75,405.71 L107.74,405.71 L107.62,405.70 Z",AK,2290 3122,02105,0.28,0.38,Hoonah-Angoon,"M145.27,437.02 L145.29,436.97 L145.52,437.04 L145.52,437.11 Z M140.27,440.75 L142.46,438.91 L143.52,438.14 L145.55,438.50 L146.71,439.59 L146.31,441.23 L147.96,442.63 L147.64,443.87 L149.33,444.94 L148.79,442.52 L150.23,443.82 L150.54,445.42 L152.12,444.34 L154.09,446.46 L155.54,443.92 L158.30,447.75 L159.12,448.65 L158.08,448.30 L155.98,449.86 L153.38,450.76 L151.86,452.88 L150.94,450.60 L150.14,447.02 L148.77,447.35 L146.32,446.08 L146.03,447.19 L144.55,447.38 L143.81,446.99 L143.80,445.39 L139.64,442.83 L138.65,441.70 L139.61,441.14 Z",AK,2105 3123,02122,0.56,0.49,Kenai Peninsula,"M88.93,425.99 L89.36,422.62 L90.80,422.86 L95.96,423.59 L95.82,424.69 L96.94,424.84 L97.42,426.04 L98.60,425.59 L102.74,428.09 L103.60,428.92 L104.02,430.99 L103.70,433.97 L102.37,434.30 L100.69,435.19 L100.05,436.48 L93.71,438.58 L88.38,438.49 L87.74,439.03 L85.37,440.37 L83.72,440.10 L82.60,439.91 L82.92,435.94 L84.04,436.13 L84.21,435.00 L85.82,434.67 L86.00,433.53 L87.07,433.12 L88.19,428.76 L88.62,428.82 Z",AK,2122 3124,02050,0.61,0.51,Bethel,"M90.80,422.86 L89.36,422.62 L88.93,425.99 L86.04,425.52 L81.02,424.58 L77.26,423.76 L76.28,422.95 L75.02,423.32 L71.72,422.53 L71.23,423.57 L69.99,423.85 L69.36,425.43 L67.98,426.26 L66.52,428.77 L65.78,428.59 L64.30,431.14 L63.04,431.42 L62.41,433.01 L60.19,435.09 L59.00,435.48 L57.13,434.12 L58.38,433.78 L59.01,432.45 L58.69,430.09 L60.11,428.79 L59.65,426.63 L58.17,425.68 L57.41,426.21 L54.42,425.54 L53.48,425.94 L52.73,423.97 L53.20,423.31 L50.78,418.52 L52.37,417.88 L52.37,416.62 L54.62,417.24 L55.94,417.11 L57.16,415.09 L58.10,415.65 L62.00,415.37 L63.73,416.40 L66.23,416.33 L69.32,415.45 L68.62,414.63 L72.41,415.65 L72.57,415.11 L74.75,415.65 L74.88,415.10 L79.25,416.04 L79.11,416.68 L89.18,418.62 L91.66,417.26 L91.37,419.16 Z M46.72,423.13 L43.75,419.74 L43.66,418.39 L45.73,418.68 L48.71,418.15 L50.05,420.12 L49.81,422.36 Z M28.89,409.83 L30.13,411.68 L28.25,411.25 L27.77,409.75 L28.73,407.84 Z",AK,2050 3125,02164,0.48,0.58,Lake and Peninsula,"M71.27,437.97 L71.29,437.90 L71.30,437.90 L76.92,439.10 L77.29,437.26 L74.45,436.91 L74.70,434.38 L76.50,434.20 L77.71,432.71 L79.47,432.48 L81.02,424.58 L86.04,425.52 L88.93,425.99 L88.62,428.82 L88.19,428.76 L87.07,433.12 L86.00,433.53 L85.82,434.67 L84.21,435.00 L84.04,436.13 L82.92,435.94 L82.60,439.91 L83.72,440.10 L82.87,441.85 L79.74,442.41 L79.37,444.45 L78.03,444.72 L76.95,446.14 L75.36,446.05 L73.57,448.09 L74.78,449.17 L74.51,450.56 L66.19,456.78 L61.76,455.79 L61.78,454.03 L60.68,453.77 L61.54,449.88 L63.88,449.85 L65.50,449.07 L65.78,447.84 L67.09,445.79 L70.90,438.65 Z",AK,2164 3126,02060,0.68,0.41,Bristol Bay,"M71.29,437.90 L71.34,437.67 L74.45,436.91 L77.29,437.26 L76.92,439.10 L71.30,437.90 L71.30,437.90 L71.29,437.90 Z",AK,2060 3127,02130,0.51,0.51,Ketchikan Gateway,"M164.66,453.93 L165.79,453.99 L168.04,455.37 L167.71,456.46 L168.78,457.42 L170.00,460.40 L168.35,464.56 L164.14,465.41 L163.77,463.66 L165.19,463.22 L165.30,461.95 L164.10,461.37 L164.15,462.69 L163.07,462.32 L161.48,459.56 L162.29,459.02 L162.39,456.65 L165.13,454.73 Z",AK,2130 3128,02170,0.55,0.46,Matanuska-Susitna,"M92.09,414.47 L95.37,414.98 L95.45,414.51 L102.85,411.87 L107.13,412.26 L107.21,411.36 L110.28,411.50 L111.69,411.56 L111.60,413.57 L111.47,419.60 L109.78,419.49 L109.60,424.53 L108.77,424.80 L104.87,424.50 L100.71,424.37 L99.95,425.37 L98.60,425.59 L97.42,426.04 L96.94,424.84 L95.82,424.69 L95.96,423.59 L90.80,422.86 L91.37,419.16 L91.66,417.26 L92.00,415.05 L92.09,414.47 Z",AK,2170 3129,02090,0.37,0.53,Fairbanks North Star,"M106.07,403.88 L106.37,399.92 L109.40,400.16 L111.19,399.80 L113.21,398.81 L113.42,400.17 L114.66,400.89 L114.54,401.60 L116.64,401.00 L117.85,401.52 L119.39,401.36 L118.86,404.00 L116.29,404.67 L114.71,405.62 L114.14,405.31 L112.70,406.23 L110.51,406.44 L108.37,406.30 L107.75,405.71 L107.75,405.71 L107.75,405.71 L107.74,405.70 L107.72,405.67 L107.72,405.67 L107.62,405.70 L107.62,405.70 L107.62,405.70 Z",AK,2090 3130,02068,0.42,0.41,Denali,"M107.75,405.71 L108.37,406.30 L110.51,406.44 L110.46,408.65 L110.28,411.50 L107.21,411.36 L107.13,412.26 L102.85,411.87 L95.45,414.51 L95.37,414.98 L92.09,414.47 L94.19,411.87 L94.32,410.99 L93.27,410.53 L93.44,408.58 L95.20,408.81 L96.07,406.67 L97.47,406.30 L98.19,406.89 L100.04,404.79 L107.62,405.70 L107.62,405.70 L107.63,405.70 L107.64,405.70 L107.74,405.71 L107.74,405.71 L107.75,405.71 L107.75,405.71 Z",AK,2068 3131,02020,0.66,0.49,Anchorage,"M104.87,424.50 L104.53,428.24 L103.60,428.92 L102.74,428.09 L98.60,425.59 L99.95,425.37 L100.71,424.37 Z",AK,2020 3132,02198,0.33,0.56,Prince of Wales-Hyder,"M168.04,455.37 L169.05,456.38 L168.78,457.42 L167.71,456.46 Z M154.61,458.90 L155.39,455.73 L157.28,455.48 L158.03,456.74 L160.76,458.64 L161.48,459.56 L163.07,462.32 L164.15,462.69 L164.10,461.37 L165.30,461.95 L165.19,463.22 L163.77,463.66 L164.14,465.41 L157.10,466.84 L156.25,464.54 L156.76,463.35 L155.60,462.01 L155.38,459.45 Z",AK,2198 3133,02195,0.39,0.41,Petersburg,"M159.12,448.65 L159.37,450.28 L160.54,450.38 L160.47,451.45 L159.04,452.84 L159.37,453.64 L157.28,455.48 L155.39,455.73 L154.61,458.90 L154.18,460.27 L152.38,459.32 L152.09,457.57 L152.80,456.57 L151.86,452.88 L153.38,450.76 L155.98,449.86 L158.08,448.30 Z",AK,2195 3134,02100,0.09,0.13,Haines,"M148.28,437.05 L150.27,438.23 L150.92,439.22 L147.94,439.52 L148.79,442.52 L149.33,444.94 L147.64,443.87 L147.96,442.63 L146.31,441.23 L146.71,439.59 L145.55,438.50 L143.52,438.14 L143.74,435.90 L145.71,434.84 L147.14,437.22 Z M145.27,437.02 L145.52,437.11 L145.52,437.04 L145.29,436.97 Z",AK,2100 3135,02230,0.37,0.18,Skagway,"M145.71,434.84 L146.46,434.30 L148.11,435.64 L148.28,437.05 L147.14,437.22 Z",AK,2230 3136,02240,0.69,0.48,Southeast Fairbanks,"M111.60,413.57 L111.69,411.56 L110.28,411.50 L110.46,408.65 L110.51,406.44 L112.70,406.23 L114.14,405.31 L114.71,405.62 L116.29,404.67 L118.86,404.00 L120.01,404.10 L120.36,402.23 L122.18,401.05 L122.89,399.41 L124.90,399.03 L127.12,396.41 L127.94,421.11 L127.97,421.99 L125.44,422.06 L124.95,420.35 L124.95,418.11 L123.89,417.00 L121.53,417.47 L121.82,416.48 L121.46,414.21 L115.52,414.00 L115.53,413.42 Z",AK,2240 3137,02220,0.55,0.40,Sitka,"M152.09,457.57 L151.28,456.99 L147.15,452.54 L144.55,447.38 L146.03,447.19 L146.32,446.08 L148.77,447.35 L150.14,447.02 L150.94,450.60 L151.86,452.88 L152.80,456.57 Z",AK,2220 3138,02188,0.42,0.55,Northwest Arctic,"M67.24,381.93 L69.30,382.67 L71.89,381.45 L69.88,379.77 L69.98,376.48 L67.86,372.31 L70.30,373.27 L70.74,372.01 L74.85,373.40 L76.64,373.57 L76.51,374.01 L87.82,377.21 L87.70,377.78 L89.88,378.21 L89.75,378.86 L91.96,379.50 L91.54,380.92 L92.94,382.35 L92.36,384.55 L93.75,385.42 L93.09,388.25 L91.42,387.94 L91.23,388.89 L89.58,388.56 L89.11,390.20 L88.04,389.97 L87.72,388.77 L86.62,388.54 L86.37,389.65 L85.28,389.42 L85.53,388.29 L83.39,387.80 L82.85,390.04 L80.09,389.36 L79.81,390.41 L78.19,389.97 L77.45,392.73 L76.75,393.13 L66.43,389.95 L66.62,387.60 L65.92,387.36 L67.26,382.99 Z",AK,2188 3139,02270,0.50,0.46,Wade Hampton,"M52.37,416.62 L51.44,415.29 L50.78,411.35 L52.33,408.69 L55.10,407.23 L56.49,405.41 L57.25,405.41 L58.11,403.73 L59.72,402.85 L61.11,402.87 L62.89,405.03 L65.00,404.16 L66.11,405.41 L66.33,406.67 L69.59,407.63 L68.98,408.24 L67.56,412.56 L67.50,414.30 L68.62,414.63 L69.32,415.45 L66.23,416.33 L63.73,416.40 L62.00,415.37 L58.10,415.65 L57.16,415.09 L55.94,417.11 L54.62,417.24 Z",AK,2270 3140,02185,0.50,0.52,North Slope,"M126.54,379.13 L118.62,379.13 L114.63,379.11 L114.49,382.28 L91.96,379.50 L89.75,378.86 L89.88,378.21 L87.70,377.78 L87.82,377.21 L76.51,374.01 L76.64,373.57 L74.85,373.40 L70.74,372.01 L70.30,373.27 L67.86,372.31 L67.26,372.08 L66.44,370.20 L65.32,369.32 L66.92,368.79 L68.27,366.22 L70.07,366.95 L72.90,367.56 L74.39,367.08 L75.71,366.09 L77.12,363.28 L79.18,361.46 L81.08,360.63 L82.49,361.22 L84.27,360.55 L86.46,359.07 L88.77,358.93 L89.73,359.78 L91.17,359.28 L92.90,357.59 L94.07,357.00 L97.14,359.59 L98.69,361.34 L101.00,361.44 L102.23,362.14 L103.87,365.13 L106.05,364.59 L107.33,364.60 L109.22,365.44 L111.13,365.53 L113.61,367.34 L115.22,367.71 L117.25,369.19 L118.04,369.31 L119.55,368.34 L121.27,368.14 L125.43,371.06 L126.28,371.30 Z",AK,2185 3141,02282,0.40,0.26,Yakutat,"M128.29,431.80 L129.84,432.83 L130.02,432.26 L131.61,433.00 L132.50,431.95 L134.46,431.72 L134.20,433.48 L135.89,434.54 L136.21,435.43 L139.82,438.59 L140.27,440.75 L139.61,441.14 L138.65,441.70 L137.66,440.35 L133.38,438.30 L130.55,436.51 L129.58,436.52 L124.87,434.80 L122.95,434.37 L118.99,434.93 L118.99,434.16 L121.33,431.08 L125.82,430.97 L125.85,431.58 Z",AK,2282 3142,02275,0.48,0.48,Wrangell,"M161.48,459.56 L160.76,458.64 L158.03,456.74 L157.28,455.48 L159.37,453.64 L159.04,452.84 L160.47,451.45 L161.44,451.86 L161.78,453.14 L162.67,452.92 L164.66,453.93 L165.13,454.73 L162.39,456.65 L162.29,459.02 Z",AK,2275 PKccI2bb8chorogrid/databases/usa_counties_column_descriptions.txtname County name, e.g. "Santa Barbara" state 2-letter state abbreviation, e.g. CA map_path SVG path for county outline fips Federal Information Processing Standards code for county in string format, e.g. "06083" fips_integer Federal Information Processing Standards code for county in integer format, e.g. 6083 middle_x horizontal coordinate of center of county; not used for anything in this script, but provided just in case it's useful middle_y vertical coordinate of center of county; not used for anything in this script, but provided just in case it's useful PKccI+g/chorogrid/databases/usa_counties_statelines.txt PKccIWp"chorogrid/databases/usa_states.csvabbrev,full_name,long_abbrev,FIPS,pop,sqmi,map_path,map_fill_default,map_label_x,map_label_y,map_label_text_anchor,map_label_line_path,altmap_path,square_x,square_y,altsquare_x,altsquare_y,hex_x,hex_y,althex_x,althex_y,fourhex_x,fourhex_y,fourhex_contour,fourhex_label_offset_x,fourhex_label_offset_y AK,Alaska,Alas.,2,710231,663267.26,"m 135.58488,358.02208 -0.24846,65.59232 1.24227,0.74536 2.36034,0.12423 1.11804,-0.86959 1.98765,0 0.12423,2.2361 5.3418,5.21757 0.37268,1.98764 2.60878,-1.49073 0.49692,-0.12423 0.24846,-2.36033 1.11804,-1.24228 0.8696,-0.12423 1.49074,-1.11805 2.36032,1.61496 0.49692,2.23611 1.49073,0.86959 0.8696,1.86342 2.98147,1.36651 2.60878,4.59643 2.11187,2.98146 1.73919,2.11188 1.11805,2.85724 3.85107,1.36651 3.97529,1.61496 0.74537,3.35415 0.37268,2.36033 -0.74536,2.60879 -1.36651,1.73919 -1.24228,-0.62114 -1.11805,-2.36033 -2.11188,-1.11805 -1.3665,-0.8696 -0.62114,0.62114 1.11805,2.11188 0.12423,2.85724 -0.8696,0.37268 -1.49073,-1.49073 -1.61496,-0.99383 0.37268,1.24228 0.99382,1.36651 -0.62114,0.62114 c 0,0 -0.62114,-0.24846 -0.99382,-0.74537 -0.37269,-0.49691 -1.61496,-2.60878 -1.61496,-2.60878 l -0.74537,-1.73919 c 0,0 -0.24846,0.99382 -0.74537,0.74536 -0.49691,-0.24845 -0.99382,-1.11805 -0.99382,-1.11805 l 1.36651,-1.49073 -1.11806,-1.11805 0,-3.85107 -0.62113,0 -0.62114,2.60878 -0.8696,0.37269 -0.74536,-2.85724 -0.49692,-2.85724 -0.62114,-0.37269 0.24846,4.34798 0,0.8696 -1.11805,-0.99382 -2.73301,-4.59644 -1.61497,-0.37268 -0.49691,-2.85724 -1.24228,-2.2361 -1.24228,-0.8696 0,-1.73919 1.61497,-0.99382 -0.37269,-0.24845 -1.98764,0.49691 -2.60879,-1.86342 -1.98764,-2.23611 -3.72684,-1.98764 -3.1057,-1.98765 0.99383,-2.48455 0,-1.24228 -1.36651,1.24228 -2.2361,0.86959 -2.85724,-0.86959 -4.34798,-1.86342 -4.22374,0 -0.49691,0.37268 -4.96912,-2.98147 -1.61496,-0.24845 -2.11187,-4.47221 -2.73302,0.24846 -2.73302,1.11805 0.37269,3.47838 0.86959,-2.2361 0.74538,0.24845 -1.11806,3.35416 2.48456,-2.11187 0.49691,1.24227 -2.98147,3.35415 -0.99382,-0.24845 -0.37269,-1.49074 -0.99381,-0.62114 -0.99383,0.8696 -2.11187,-1.3665 -2.36034,1.61496 -1.3665,1.61496 -2.60879,1.61496 -3.602603,-0.12423 -0.372682,-1.61496 2.857236,-0.49691 0,-0.99382 -1.73919,-0.49692 0.745372,-1.86342 1.73919,-2.98146 0,-1.36651 0.124227,-0.62114 3.35415,-1.73919 0.74537,0.99382 2.11188,0 -0.99383,-1.98764 -2.85724,-0.24845 -3.851066,2.11187 -1.863417,2.60878 -1.366508,1.98765 -0.869591,1.73919 -3.229926,1.11805 -2.360334,1.98764 -0.248455,1.24228 1.73919,0.74537 0.621145,1.61496 -2.11188,2.48456 -4.969107,3.22993 -5.962945,3.22992 -1.614962,0.86959 -4.099518,0.8696 -4.099525,1.73919 1.366508,0.99382 -1.118053,1.11805 -0.372682,0.86959 -2.111872,-0.74536 -2.484554,0.12423 -0.621144,1.73919 -0.745364,0 0.248455,-1.86342 -2.733017,0.99383 -2.236099,0.74536 -2.608785,-0.99383 -2.236101,1.49074 -2.484557,0 -1.614963,0.99383 -1.242279,0.62113 -1.614962,-0.24845 -1.987646,-0.86959 -1.73919,0.49691 -0.745367,0.74536 -1.242279,-0.86959 0,-1.49074 2.36033,-0.99382 4.844886,0.49691 3.354153,-1.24228 1.614962,-1.61496 2.236102,-0.49691 1.366506,-0.62114 2.111874,0.12422 1.242279,0.99383 0.745364,-0.24845 1.73919,-2.11188 2.360334,-0.74537 2.608781,-0.49691 0.993826,-0.24845 0.49691,0.37268 0.621144,0 0.993818,-2.85724 3.105698,-1.11805 1.490736,-2.85724 1.739191,-3.47838 1.242281,-1.11806 0.248455,-1.98764 -1.242281,0.99383 -2.608791,0.4969 -0.496909,-1.86341 -0.993818,-0.24846 -0.745372,0.74537 -0.124227,2.2361 -1.118054,-0.12423 -1.118045,-4.4722 -0.993826,0.99382 -0.869591,-0.37268 -0.248455,-1.49074 -3.105698,0.12423 -1.614963,0.8696 -1.987645,-0.24846 1.118046,-1.11805 0.372682,-1.98765 -0.496909,-1.49073 1.118053,-0.74536 0.993819,-0.12423 -0.49691,-1.36651 0,-3.35415 -0.745363,-0.74537 -0.621145,1.11805 -4.720656,0 -1.11805,-0.99383 -0.496912,-2.98146 -1.614962,-2.73302 0,-0.74536 1.614962,-0.62114 0.124228,-1.61497 0.869595,-0.86959 -0.621139,-0.37268 -0.993823,0.37268 -0.869595,-2.11187 0.745367,-3.85107 3.47838,-2.48455 1.987643,-1.24228 1.490735,-2.85724 2.11188,-0.99383 1.987644,0.8696 0.248455,1.86342 1.863417,-0.24846 2.484554,-1.86342 1.242281,0.49692 0.745364,0.49691 1.242281,0 1.739191,-0.99383 0.621145,-3.35415 c 0,0 0.248454,-2.2361 0.745363,-2.60878 0.49691,-0.37269 0.745364,-0.74537 0.745364,-0.74537 l -0.869591,-1.49073 -1.987646,0.62113 -2.484562,0.62114 -1.490735,-0.37268 -2.733009,-1.36651 -3.851062,-0.12423 -2.733016,-2.85723 0.372682,-2.98147 0.496917,-1.86342 -1.614963,-1.36651 -1.490737,-2.85724 0.372684,-0.62114 5.21757,-0.37268 1.614963,0 0.745363,0.74536 0.496918,0 -0.124228,-1.24228 2.981463,-0.49691 1.987645,0.24846 1.118053,0.8696 -1.118053,1.61496 -0.372682,1.11804 2.11188,1.24229 3.851063,1.3665 1.366508,-0.74536 -1.73919,-3.35415 -0.745371,-2.48456 0.745371,-0.62114 -2.608789,-1.49074 -0.372683,-0.8696 0.372683,-1.24227 -0.621138,-2.98147 -2.236107,-3.60261 -1.863417,-3.22992 2.236107,-1.49074 2.484555,0 1.366508,0.49691 3.229926,-0.12423 2.857238,-2.733 0.869599,-2.36034 2.857244,-1.86342 1.242272,0.74538 2.111872,-0.49692 2.857244,-1.61496 0.869599,-0.12423 0.745364,0.62114 3.47838,-0.12422 2.111872,-2.36034 0.869599,0 2.733007,1.86342 1.49074,1.61496 -0.37269,0.8696 0.49691,0.86959 1.24228,-1.24227 2.98148,0.24845 0.24845,2.85724 1.49074,1.11805 5.46602,0.49691 4.84489,3.22993 1.11804,-0.74537 3.9753,1.98765 1.61496,-0.49691 1.49074,-0.62115 3.72683,1.49074 3.35416,2.2361 z m -88.450249,22.23679 1.614961,4.09952 -0.124228,0.74537 -2.236101,-0.24846 -1.366507,-3.1057 -1.366506,-1.11804 -1.863418,0 -0.124228,-1.98766 1.366507,-1.86341 0.869595,1.86341 1.11805,1.11806 2.111875,0.49691 z m -1.987647,25.71517 2.857242,0.62114 2.85724,0.74536 0.62114,0.74538 -1.242279,2.85723 -2.36033,-0.12423 -2.608785,-2.733 -0.124228,-2.11188 z m -15.901167,-10.80783 0.869596,1.98765 0.869595,1.24228 -0.869595,0.62114 -1.614963,-2.36033 0,-1.49074 0.745367,0 z m -10.559368,56.151 2.608785,-1.73919 2.608785,-0.74537 1.987646,0.24845 0.372684,1.24229 1.490734,0.37268 1.490734,-1.49073 -0.248455,-1.24228 2.111873,-0.49691 2.236102,1.98764 -0.869595,1.3665 -3.354152,0.8696 -2.111874,-0.37268 -2.857241,-0.8696 -3.354152,1.11806 -1.242279,0.24845 -0.869595,-0.49691 z m 37.641043,-3.47838 1.242279,1.49074 1.61496,-1.24228 -1.118049,-0.99383 -1.73919,0.74537 z m 2.236102,2.36033 0.869592,-1.73919 1.614962,0.24845 -0.621136,1.49074 -1.863418,0 z m 18.137266,-1.49074 1.118054,1.36651 0.745371,-0.86959 -0.621144,-1.49074 -1.242281,0.99382 z m 6.708308,-9.56554 0.869599,4.4722 2.236099,0.62114 3.851062,-2.2361 3.354153,-1.98765 -1.242273,-1.86342 0.372682,-1.86341 -1.614963,0.99382 -2.236099,-0.62114 1.242273,-0.86959 1.490735,0.62113 2.981471,-1.3665 0.372682,-1.11805 -1.863417,-0.62114 0.621136,-1.49074 -2.111872,1.49074 -3.602607,2.73301 -3.726835,2.2361 -0.993826,0.8696 z m 32.547702,-15.28003 1.86342,-1.11805 -0.74537,-1.36651 -1.36651,0.74537 0.24846,1.73919 z",2,99.762611,398.17294,middle,,"m 151.26632,459.09682 -0.31386,83.24785 1.56927,0.94599 2.98162,0.15767 1.41234,-1.10366 2.51084,0 0.15693,2.83799 6.74788,6.62199 0.47078,2.52266 3.29546,-1.892 0.62772,-0.15767 0.31385,-2.99565 1.41234,-1.57667 1.0985,-0.15767 1.88313,-1.419 2.98161,2.04967 0.62772,2.838 1.88312,1.10366 1.09849,2.36499 3.76626,1.73433 3.29547,5.83366 2.66776,3.78399 2.19698,2.68033 1.41235,3.62632 4.86475,1.73433 5.02168,2.04967 0.94155,4.25699 0.47078,2.99566 -0.94156,3.31099 -1.7262,2.20733 -1.56927,-0.78832 -1.41234,-2.99567 -2.66777,-1.41899 -1.7262,-1.10367 -0.78464,0.78833 1.41235,2.68033 0.15693,3.62632 -1.0985,0.473 -1.88312,-1.89199 -2.04005,-1.26133 0.47078,1.57666 1.25541,1.73433 -0.78463,0.78833 c 0,0 -0.78464,-0.31533 -1.25542,-0.946 -0.47079,-0.63066 -2.04005,-3.31099 -2.04005,-3.31099 l -0.94157,-2.20733 c 0,0 -0.31385,1.26134 -0.94156,0.946 -0.62772,-0.31534 -1.25542,-1.419 -1.25542,-1.419 l 1.7262,-1.89199 -1.41235,-1.419 0,-4.88766 -0.78463,0 -0.78464,3.31099 -1.09849,0.47301 -0.94156,-3.62633 -0.62772,-3.62633 -0.78463,-0.473 0.31385,5.51833 0,1.10366 -1.41235,-1.26133 -3.45239,-5.83366 -2.04006,-0.47299 -0.6277,-3.62633 -1.56928,-2.83799 -1.56927,-1.10367 0,-2.20733 2.04005,-1.26133 -0.47078,-0.31533 -2.51083,0.63066 -3.29548,-2.36499 -2.51084,-2.838 -4.70781,-2.52266 -3.92319,-2.52266 1.25543,-3.15332 0,-1.57667 -1.72621,1.57667 -2.82468,1.10366 -3.60934,-1.10366 -5.49246,-2.365 -5.33552,0 -0.6277,0.473 -6.2771,-3.784 -2.04005,-0.31533 -2.66776,-5.67599 -3.45241,0.31533 -3.4524,1.419 0.47079,4.41466 1.09848,-2.83799 0.94157,0.31533 -1.41235,4.25699 3.13854,-2.68033 0.62772,1.57666 -3.76626,4.25699 -1.25542,-0.31533 -0.47078,-1.892 -1.25541,-0.78832 -1.25542,1.10367 -2.66777,-1.73434 -2.98162,2.04967 -1.72619,2.04966 -3.29548,2.04966 -4.55089,-0.15767 -0.47078,-2.04966 3.60932,-0.63067 0,-1.26132 -2.19698,-0.63068 0.94157,-2.36499 2.19698,-3.78399 0,-1.73433 0.15693,-0.78834 4.23703,-2.20732 0.94156,1.26133 2.66777,0 -1.25542,-2.52266 -3.60933,-0.31533 -4.86474,2.68033 -2.35391,3.31098 -1.7262,2.52267 -1.09849,2.20733 -4.08011,1.41899 -2.981625,2.52266 -0.313853,1.57667 2.196982,0.946 0.784642,2.04966 -2.667771,3.15333 -6.277083,4.09933 -7.532518,4.09932 -2.040055,1.10366 -5.178599,1.10367 -5.178607,2.20733 1.726203,1.26132 -1.41235,1.41901 -0.470779,1.10365 -2.667762,-0.94599 -3.138541,0.15767 -0.784643,2.20733 -0.941559,0 0.313853,-2.365 -3.452405,1.26134 -2.824688,0.94599 -3.295473,-1.26134 -2.824691,1.892 -3.138545,0 -2.040056,1.26134 -1.569272,0.78833 -2.040055,-0.31534 -2.510837,-1.10366 -2.196982,0.63067 -0.941563,0.94599 -1.569274,-1.10366 0,-1.892 2.981619,-1.26133 6.120164,0.63067 4.237037,-1.57666 2.040055,-2.04967 2.824691,-0.63066 1.7262,-0.78834 2.667765,0.15767 1.569272,1.26133 0.94156,-0.31533 2.196982,-2.68032 2.981625,-0.94601 3.295467,-0.63066 1.255423,-0.31533 0.627706,0.47299 0.784643,0 1.255413,-3.62633 3.923184,-1.41899 1.883129,-3.62633 2.196983,-4.41465 1.569276,-1.419 0.313853,-2.52266 -1.569275,1.26133 -3.29548,0.63066 -0.627707,-2.36499 -1.255412,-0.31533 -0.94157,0.94599 -0.156926,2.838 -1.412349,-0.15767 -1.412339,-5.67599 -1.255423,1.26133 -1.098486,-0.473 -0.313853,-1.89199 -3.923184,0.15766 -2.040055,1.10367 -2.510835,-0.31533 1.412339,-1.419 0.470779,-2.52266 -0.627706,-1.892 1.412349,-0.94599 1.255413,-0.15767 -0.627707,-1.73433 0,-4.25699 -0.941559,-0.94601 -0.784643,1.419 -5.963233,0 -1.412345,-1.26133 -0.62771,-3.78399 -2.040055,-3.46866 0,-0.94599 2.040055,-0.78834 0.156927,-2.04966 1.098491,-1.10366 -0.784636,-0.473 -1.255418,0.473 -1.098491,-2.68033 0.941563,-4.88766 4.393965,-3.15333 2.510832,-1.57666 1.883129,-3.62632 2.667771,-1.26134 2.510835,1.10367 0.313853,2.365 2.353909,-0.31535 3.138541,-2.36499 1.569276,0.63067 0.941559,0.63067 1.569276,0 2.196984,-1.26134 0.784643,-4.25699 c 0,0 0.313853,-2.83799 0.941559,-3.31099 0.627706,-0.473 0.941559,-0.94599 0.941559,-0.94599 l -1.098485,-1.892 -2.510837,0.78833 -3.138552,0.78832 -1.883129,-0.47299 -3.452394,-1.73433 -4.864744,-0.15767 -3.452404,-3.62632 0.47078,-3.78399 0.627716,-2.365 -2.040055,-1.73433 -1.883131,-3.62633 0.470781,-0.78833 6.590946,-0.473 2.040056,0 0.941559,0.946 0.627716,0 -0.156926,-1.57667 3.766247,-0.63066 2.510835,0.31533 1.412349,1.10367 -1.412349,2.04966 -0.470779,1.41899 2.667771,1.57667 4.864746,1.73433 1.726202,-0.94599 -2.196982,-4.25699 -0.941569,-3.15334 0.941569,-0.78832 -3.295478,-1.892 -0.470781,-1.10367 0.470781,-1.57666 -0.784635,-3.78399 -2.824698,-4.57233 -2.353908,-4.09932 2.824698,-1.892 3.138543,0 1.726202,0.63066 4.080111,-0.15766 3.609324,-3.46866 1.098496,-2.99566 3.609331,-2.365 1.569266,0.94601 2.667761,-0.63068 3.609331,-2.04966 1.098496,-0.15767 0.94156,0.78834 4.393962,-0.15766 2.66776,-2.99567 1.0985,0 3.45239,2.36499 1.88313,2.04967 -0.47078,1.10367 0.62771,1.10366 1.56927,-1.57666 3.76626,0.31533 0.31386,3.62632 1.88312,1.419 6.9048,0.63066 6.12017,4.09933 1.41234,-0.94599 5.02168,2.52266 2.04005,-0.63067 1.88313,-0.78833 4.70782,1.89199 4.23704,2.83799 z m -111.73224,28.22228 2.040054,5.203 -0.156927,0.94599 -2.824692,-0.31533 -1.7262,-3.94166 -1.7262,-1.41899 -2.353909,0 -0.156927,-2.52267 1.7262,-2.365 1.098491,2.365 1.412345,1.419 2.667765,0.63066 z m -2.510837,32.63694 3.609328,0.78834 3.609327,0.94599 0.784637,0.946 -1.569273,3.62632 -2.981619,-0.15766 -3.295473,-3.46866 -0.156927,-2.68033 z m -20.086694,-13.71697 1.098492,2.52266 1.098491,1.57666 -1.098491,0.78833 -2.040055,-2.99565 0,-1.892 0.941563,0 z m -13.3388186,71.26519 3.2954728,-2.20733 3.2954728,-0.946 2.510837,0.31533 0.470782,1.57667 1.883128,0.473 1.883126,-1.89199 -0.313854,-1.57667 2.667764,-0.63066 2.824691,2.52266 -1.098491,1.73432 -4.237036,1.10367 -2.667765,-0.473 -3.609327,-1.10367 -4.237037,1.41901 -1.5692727,0.31533 -1.0984909,-0.63067 z m 47.5489686,-4.41465 1.569272,1.89199 2.040053,-1.57666 -1.412343,-1.26134 -2.196982,0.94601 z m 2.824691,2.99565 1.098487,-2.20733 2.040055,0.31534 -0.784633,1.89199 -2.353909,0 z m 22.911381,-1.89199 1.41235,1.73433 0.941569,-1.10366 -0.784643,-1.892 -1.569276,1.26133 z m 8.474078,-12.14031 1.098496,5.67598 2.824688,0.78834 4.864744,-2.838 4.237037,-2.52266 -1.569266,-2.36499 0.47078,-2.365 -2.040055,1.26134 -2.824688,-0.78834 1.569265,-1.10366 1.883129,0.78833 3.766258,-1.73433 0.470783,-1.41899 -2.353912,-0.78834 0.784633,-1.892 -2.667762,1.892 -4.55089,3.46866 -4.707817,2.83799 -1.255423,1.10367 z M 126.4718,542.66 l 2.35391,-1.419 -0.94156,-1.73433 -1.7262,0.946 0.31385,2.20733 z",0,0,0,0,1,0,0,0,2,1,ababcdcdedefaf,0.25,0.5 AL,Alabama,Alab.,1,4779736,52419.02,"m 494.84948,368.08547 -1.2415,-11.67769 -2.11188,-14.41039 0.12423,-10.80779 0.62114,-23.85167 -0.12423,-12.79543 0.12686,-4.9327 5.96029,-0.28486 21.36713,-1.98763 7.81567,-0.68326 -0.11357,1.67708 0.12423,1.61496 0.49691,2.60877 2.60878,6.08715 1.86341,7.57788 1.11804,4.72064 1.24227,3.72682 1.11806,5.34178 1.61495,4.84487 1.98764,2.60879 0.37268,2.60877 1.49074,0.62113 0.12422,1.61497 -1.3665,3.72682 -0.37269,2.48455 -0.12422,1.49073 1.24228,3.35414 0.24845,4.0995 -0.62114,1.86342 0.49692,0.62114 1.11804,0.62113 0.62114,2.73301 -4.84488,0 -5.21755,0.49691 -19.62794,2.23609 -7.82633,0.99382 -0.24845,2.36033 1.3665,1.3665 1.98763,1.49072 0.44636,6.09795 -5.04355,1.97714 -2.11187,-0.24846 2.11187,-1.49072 0,-0.74537 -2.36032,-4.59641 -1.73919,-0.49691 -1.11804,3.35414 -0.99382,2.11186 -0.49691,-0.12422 -2.11186,0 z",3,513.96863,322.13559,middle,,"m 605.09702,471.86898 -1.56829,-14.82097 -2.66776,-18.28924 0.15692,-13.71693 0.78464,-30.27184 -0.15693,-16.23959 0.16025,-6.26044 7.52917,-0.36153 26.99141,-2.52265 9.87293,-0.86717 -0.14347,2.1285 0.15693,2.04966 0.6277,3.31098 3.29547,7.72562 2.3539,9.61763 1.41234,5.9913 1.56926,4.72997 1.41235,6.77963 2.04005,6.14897 2.51082,3.31099 0.47078,3.31098 1.88313,0.78832 0.15693,2.04967 -1.72621,4.72997 -0.47077,3.15332 -0.15693,1.89199 1.56927,4.25698 0.31386,5.20296 -0.78465,2.365 0.62772,0.78833 1.41234,0.78832 0.78463,3.46866 -6.12014,0 -6.59093,0.63066 -24.79444,2.83798 -9.88638,1.26133 -0.31385,2.99565 1.72619,1.73433 2.51082,1.89198 0.56386,7.73934 -6.37113,2.50932 -2.66775,-0.31533 2.66775,-1.89199 0,-0.94599 -2.98161,-5.83363 -2.19697,-0.63066 -1.41234,4.25697 -1.25541,2.68032 -0.62771,-0.15767 -2.66775,0 z",6,6,7,6,8,6,7,6,13,13,abcbcbcdefedefaf,0,0.75 AR,Arkansas,Ark.,5,2915918,53178.62,"m 469.01093,274.47535 -3.74122,0.72055 -4.74347,-0.35137 0.52705,-2.28389 2.45958,-2.10821 0.35136,-1.75684 -1.40547,-2.2839 -8.43283,0.35137 -15.98726,0.70274 -17.91977,0.52705 -17.91978,0.35136 1.22979,5.27053 -10e-6,6.32464 1.05412,8.43291 0.17568,29.07563 1.75684,1.49331 2.28389,-1.0541 2.10821,0.87842 0.50509,8.63048 17.06332,-0.0219 14.75746,-0.70274 8.30107,0.1098 1.14194,-2.04233 -0.30744,-3.33799 -1.0541,-2.2839 1.0541,-1.0541 -1.0541,-1.58116 0.35137,-1.40547 0.70273,-4.74347 2.28389,-2.10821 -0.52704,-1.58116 2.81094,-4.04073 2.10821,-0.70274 0,-1.93252 -0.52705,-1.05411 2.10821,-4.04073 2.1082,-0.87842 -0.22801,-2.80834 1.88386,-0.86698 0.74536,-3.6026 -1.11804,-2.73301 3.10569,-1.73918 0.24845,-1.98764 1.03643,-3.3666 0.70275,-2.41439 z",3,431.36169,296.52194,middle,,"m 572.45722,353.06177 -4.72599,0.9145 -5.99206,-0.44595 0.66578,-2.89865 3.107,-2.67567 0.44385,-2.22973 -1.77542,-2.89866 -10.65254,0.44595 -20.19544,0.8919 -22.63664,0.66891 -22.63665,0.44595 1.5535,6.6892 -1e-5,8.02704 1.33158,10.7028 0.22193,36.90193 2.21928,1.89527 2.88505,-1.33783 2.66315,1.11486 0.63804,10.95356 21.55474,-0.0279 18.64194,-0.8919 10.48609,0.13936 1.44253,-2.59206 -0.38837,-4.23649 -1.33157,-2.89866 1.33157,-1.33783 -1.33157,-2.00676 0.44386,-1.78378 0.88771,-6.02028 2.88506,-2.67567 -0.66578,-2.00676 3.55085,-5.12838 2.66313,-0.89189 0,-2.4527 -0.66578,-1.33785 2.66313,-5.12837 2.66313,-1.11487 -0.28803,-3.56426 2.37973,-1.10035 0.94156,-4.57232 -1.41234,-3.46865 3.92318,-2.20732 0.31385,-2.52265 1.30924,-4.27279 0.88773,-3.06428 z",4,5,5,5,6,5,5,5,12,10,abcbcdedcdefafaf,0,0.75 AZ,Arizona,Ariz.,4,6392017,113998.3,"m 119.96259,307.17049 -2.01871,1.65856 -0.24846,1.11805 0.37269,0.74536 14.53459,8.199 9.31704,5.83868 11.30469,6.58405 12.91964,7.70209 9.44127,1.86341 20.54264,2.69517 1.57484,-10.2275 2.88372,-20.68809 5.35212,-40.88293 3.27147,-23.67213 -19.76446,-2.95025 -20.9064,-3.51368 -25.68848,-4.8548 -2.24533,13.9026 -0.35136,0.35136 -1.31763,2.02037 -1.93252,-0.0878 -0.96627,-2.10821 -2.1082,-0.26353 -0.70274,-0.87841 -0.70274,0 -0.70274,0.43921 -1.49331,0.79058 -0.0878,5.35835 -0.17569,1.31763 -0.4392,9.66263 -1.14195,1.66899 -0.43921,2.54742 2.10821,3.77721 0.96626,4.47994 0.6149,0.79058 0.79057,0.43921 -0.0878,1.75684 -1.22978,1.0541 -2.63527,1.31763 -1.49331,1.49332 -1.14195,2.81094 -0.43921,3.77721 -2.19605,2.10821 -1.58116,0.52705 -0.0878,4.47995 -0.35138,1.31762 0.35138,0.6149 2.81094,0.4392 -0.43922,2.10822 -1.14194,1.66899 -2.89879,0.70274 z",4,167.39363,293.22324,middle,,"m 131.53192,394.55748 -2.55009,2.105 -0.31385,1.41899 0.47078,0.94599 18.36041,10.40593 11.76949,7.41029 14.28031,8.35628 16.32037,9.77527 11.92642,2.36498 25.94989,3.42063 1.98938,-12.98044 3.64278,-26.25671 6.76091,-51.88742 4.13259,-30.04398 -24.96689,-3.74437 -26.40941,-4.45946 -32.45024,-6.16156 -2.83634,17.64477 -0.44385,0.44594 -1.66446,2.56419 -2.4412,-0.11149 -1.22061,-2.67567 -2.66313,-0.33447 -0.88772,-1.11485 -0.8877,0 -0.88772,0.55743 -1.88638,1.00338 -0.11096,6.80067 -0.22194,1.67229 -0.55481,12.26352 -1.44253,2.11824 -0.55482,3.23311 2.66313,4.79393 1.2206,5.68581 0.77675,1.00338 0.99868,0.55743 -0.11097,2.22973 -1.55349,1.33783 -3.32892,1.6723 -1.88638,1.89527 -1.44253,3.56757 -0.55483,4.79392 -2.7741,2.67567 -1.99735,0.66893 -0.11096,5.68581 -0.44386,1.6723 0.44386,0.7804 3.55084,0.55743 -0.55482,2.67568 -1.44253,2.11824 -3.6618,0.89189 z",1,5,2,5,4,6,2,5,5,11,abcbcdcdefefaf,0,1 CA,California,Calif.,6,37253956,163695.57,"m 119.68306,307.08987 3.17832,-0.62212 1.14194,-1.66899 0.43922,-2.10822 -2.81094,-0.4392 -0.35138,-0.6149 0.35138,-1.31762 0.0878,-4.47995 1.58116,-0.52705 2.19605,-2.10821 0.43921,-3.77721 1.14195,-2.81094 1.49331,-1.49332 2.63527,-1.31763 1.22978,-1.0541 0.0878,-1.75684 -0.79057,-0.43921 -0.6149,-0.79058 -0.96626,-4.47994 -2.10821,-3.77721 0.44454,-2.51103 -1.93786,-2.49596 -11.15593,-17.48056 -14.93314,-22.31187 -17.480559,-26.00124 -9.514511,-14.27929 1.257357,-5.04595 5.358368,-19.94014 6.236783,-24.15656 -10.365361,-2.81094 -10.36536,-2.63527 -9.66262,-3.16231 -5.797573,-1.58116 -8.784201,-2.28389 -5.418168,-1.85326 -1.214236,3.63041 -0.124227,5.71446 -3.975274,9.06859 -2.360318,1.98764 -0.248455,0.86959 -1.3665,0.62114 -1.118045,3.22991 -0.621137,2.48454 2.111864,3.22991 1.242273,3.22991 0.869591,2.733 -0.248455,4.96909 -1.3665,2.36032 -0.496909,4.47218 -0.745364,2.85723 1.3665,2.98146 2.111864,3.47836 1.739182,3.72682 0.993819,3.10568 -0.248455,2.48455 -0.248454,0.37268 0,1.61495 4.347955,4.84487 -0.372682,1.86341 -0.496909,1.73918 -0.496909,1.49073 0.124227,6.33559 1.614955,2.85723 1.490727,1.98763 2.111864,0.37268 0.745364,2.11187 -0.869591,2.733 -1.614955,1.24227 -0.869591,0 -0.621136,2.98146 0.372681,2.23609 2.484546,3.35414 1.242273,4.0995 1.118046,3.60259 0.993818,2.36032 2.608773,4.47218 1.118046,1.98763 0.372682,2.2361 1.242273,0.74536 0,1.86341 -0.621137,1.49073 -1.3665,5.466 -0.372682,1.49073 1.863409,2.11186 3.22991,0.37268 3.478364,1.3665 2.981455,1.61496 2.236091,0 2.236092,2.36031 1.987636,3.72682 0.869591,1.73919 2.981455,1.61495 3.726819,0.62114 1.118046,1.61495 0.496909,2.48455 -1.118046,0.49691 0.248455,0.74536 2.484547,0.62114 2.111864,0.12422 2.236091,3.6026 2.981458,3.2299 0.621136,1.73919 1.987637,3.22991 0.248454,2.48454 0,7.20518 0.372682,1.36651 7.702092,1.11804 15.155726,2.11186 11.18046,1.24228 z m -68.076311,-38.69784 0.993822,1.18016 -0.124227,0.99382 -2.484555,-0.0621 -0.434797,-0.93171 -0.496911,-1.11806 2.546668,-0.0621 z m 1.490733,0 0.931708,-0.49691 2.733009,1.61495 2.360328,0.93171 -0.683253,0.49692 -3.478377,-0.18634 -1.242276,-1.24229 -0.621139,-1.11804 z m 15.901149,15.21789 1.366501,1.8013 0.621144,0.74538 1.180163,0.43479 0.434792,-1.11805 -0.745364,-1.36651 -2.049754,-1.55284 -0.807482,0.12423 0,0.9317 z m -1.118053,6.64618 1.366508,2.42245 0.931709,1.49073 -1.118054,0.18634 -0.993818,-0.93171 c 0,0 -0.559027,-1.11804 -0.559027,-1.42862 0,-0.31056 0,-1.67707 0,-1.67707 l 0.372682,-0.0621 z",1,76.23185,246.14764,middle,,"m 131.1788,394.45516 4.01492,-0.78957 1.44253,-2.11824 0.55482,-2.67568 -3.55084,-0.55743 -0.44386,-0.7804 0.44386,-1.6723 0.11096,-5.68581 1.99735,-0.66893 2.7741,-2.67567 0.55483,-4.79392 1.44253,-3.56757 1.88638,-1.89527 3.32892,-1.6723 1.55349,-1.33783 0.11097,-2.22973 -0.99868,-0.55743 -0.77675,-1.00338 -1.2206,-5.68581 -2.66313,-4.79393 0.56155,-3.18692 -2.44794,-3.1678 -14.09241,-22.18582 -18.86387,-28.31757 -22.081812,-33 -12.018933,-18.12286 1.58832,-6.40417 6.768806,-25.30744 7.878436,-30.65879 -13.093744,-3.56758 -13.093744,-3.3446 -12.206028,-4.01351 -7.323618,-2.00676 -11.09639,-2.89865 -6.844345,-2.35209 -1.533849,4.60761 -0.156927,7.25261 -5.02165,11.5096 -2.981604,2.52265 -0.313853,1.10365 -1.726193,0.78833 -1.412339,4.09931 -0.784632,3.15331 2.667751,4.09931 1.569266,4.0993 1.098486,3.46865 -0.313853,6.30662 -1.726193,2.99565 -0.627706,5.67596 -0.941559,3.62631 1.726192,3.78398 2.667751,4.41463 2.196972,4.72997 1.255413,3.94164 -0.313853,3.15332 -0.313853,0.47299 0,2.04966 5.492429,6.14896 -0.470779,2.36498 -0.627707,2.20732 -0.627706,1.89199 0.156927,8.04094 2.040045,3.62631 1.883119,2.52265 2.667751,0.473 0.94156,2.68031 -1.098486,3.46865 -2.040046,1.57665 -1.098486,0 -0.784632,3.78398 0.470779,2.83798 3.138532,4.25697 1.569265,5.20297 1.412339,4.5723 1.255413,2.99565 3.295458,5.67596 1.412339,2.52265 0.470779,2.83798 1.569266,0.946 0,2.36498 -0.784633,1.89199 -1.726192,6.93729 -0.47078,1.89198 2.353899,2.68032 4.08009,0.473 4.393944,1.73432 3.766238,2.04965 2.824678,0 2.824678,2.99565 2.510825,4.72997 1.098486,2.20731 3.766237,2.04966 4.707797,0.78833 1.412339,2.04965 0.627706,3.15331 -1.412339,0.63066 0.313854,0.946 3.138533,0.78833 2.667751,0.15766 2.824678,4.5723 3.766241,4.09931 0.784633,2.20732 2.510825,4.09931 0.313853,3.15331 0,9.14461 0.47078,1.73432 9.729446,1.41899 19.145039,2.68031 14.12339,1.57666 z M 45.183356,345.341 l 1.255416,1.49783 -0.156926,1.26132 -3.138543,-0.0788 -0.549245,-1.1825 -0.627708,-1.419 3.217006,-0.0788 z m 1.883125,0 1.176953,-0.63066 3.452396,2.04965 2.981616,1.1825 -0.863099,0.63067 -4.39396,-0.2365 -1.569271,-1.57667 -0.784635,-1.41899 z m 20.086671,19.31411 1.726192,2.28615 0.784643,0.94601 1.490807,0.55182 0.549238,-1.41899 -0.941559,-1.73433 -2.589293,-1.97083 -1.020028,0.15767 0,1.1825 z m -1.412349,8.43513 1.726202,3.0745 1.176954,1.89199 -1.412349,0.2365 -1.255412,-1.1825 c 0,0 -0.706175,-1.41899 -0.706175,-1.81316 0,-0.39416 0,-2.12849 0,-2.12849 l 0.47078,-0.0788 z",0,4,1,5,2,5,1,5,2,9,abcbcbcbcdefefefef,0.5,1.33 CO,Colorado,Colo.,8,5029196,104093.57,"m 302.76193,257.45181 3.16231,-50.59702 1.22979,-17.21704 -25.64987,-2.10821 -18.79846,-1.58118 -28.63624,-3.16229 -15.89943,-1.9325 -2.02038,17.04138 -2.45957,17.21703 -2.88372,21.50623 -1.15702,8.53575 -0.43921,2.98663 26.44045,3.16231 28.3851,3.40194 25.17658,1.6929 5.1168,0.52705 8.7842,0.43921",1,258.24854,224.8846,middle,,"m 362.44794,331.45599 3.99469,-64.21624 1.5535,-21.85137 -32.40146,-2.67567 -23.74661,-2.00679 -36.17392,-4.01349 -20.08449,-2.45267 -2.55219,21.62841 -3.10699,21.85136 -3.64277,27.29507 -1.46158,10.83332 -0.55481,3.79055 33.40014,4.01351 35.85666,4.31765 31.8036,2.14857 6.46364,0.66892 11.09639,0.55743",2,4,3,5,4,4,3,4,6,10,ababcbcdedefef,0.75,0.5 CT,Connecticut,Conn.,9,3574097,5543.33,"m 686.15954,147.58201 -0.74382,-3.23085 -0.62113,-3.35414 -1.24228,-4.59642 -3.97529,0.86959 -16.77071,3.66471 0.49691,2.54667 1.11804,5.59025 0,6.21137 -0.86959,1.73919 1.4081,1.62074 3.80791,-2.61364 2.733,-2.48454 1.49073,-1.61496 0.62114,0.49691 2.11186,-1.11804 3.97528,-0.8696 6.45985,-2.85724 z",1,705.39459,163.55754,start,"M 702.90072,158.8296 674.35164,147.02673","m 846.76397,192.01248 -0.9396,-4.1005 -0.78464,-4.25698 -1.56926,-5.83364 -5.02167,1.10366 -21.18513,4.65114 0.62771,3.23216 1.41234,7.09497 0,7.8833 -1.09849,2.20732 1.77874,2.057 4.81024,-3.31715 3.45238,-3.15331 1.88312,-2.04966 0.78463,0.63067 2.66776,-1.41899 5.02165,-1.10366 8.16022,-3.62633 z",9,3,10,3,11,3,10,3,19,5,abababcdcdefedef,1,0 DC,District of Columbia,D.C.,11,601723,68.34,"m 628.83713,202.9815 0.72247,-1.49655 1.9094,1.29013 -1.18692,2.37385 -0.15482,-1.03211 z",4,688.53888,242.67511,start,"m 686.12234,237.35122 -55.5888,-33.40877","m 773.21913,261.4512 1.53679,-3.0021 4.53889,3.25227 -3.14506,4.78906 -0.64331,-2.35879 -0.96496,-1.35809 z",8,5,11,5,10,5,11,5,17,8,ababcbcdedefef,0.75,0.5 DE,Delaware,Del.,10,897934,2489.27,"m 646.28254,186.46517 0.62264,-1.61582 0.18634,-0.99382 -1.55284,0 -1.61497,1.24228 -1.11804,1.11805 1.11804,3.22991 1.73919,4.34797 1.61496,7.45365 1.24228,4.84488 3.85105,-0.12423 4.71988,-0.9313 -1.73993,-5.65193 -0.74537,0.37268 -2.733,-1.86341 -1.3665,-3.60259 -1.49072,-2.733 -1.73919,-0.74537 -1.61495,-2.733 0.62113,-1.61495 z",3,694.91876,209.81764,start,"m 692.37939,206.29906 -42.81037,-7.06641","m 796.3905,241.36184 0.78652,-2.05075 0.2354,-1.26133 -1.96159,0 -2.04006,1.57667 -1.41233,1.41899 1.41233,4.09931 2.19699,5.51831 2.04004,9.45996 1.56928,6.14898 4.86473,-0.15767 5.96226,-1.18198 -2.19793,-7.17327 -0.94156,0.473 -3.45238,-2.36499 -1.7262,-4.5723 -1.88311,-3.46864 -2.19698,-0.946 -2.04004,-3.46864 0.78463,-2.04965 z",9,4,9,4,11,4,9,4,20,7,abcbcdcdefefaf,0,1 FL,Florida,Fla.,12,18801310,65754.59,"m 594.72914,351.066 1.60519,6.30316 2.86607,7.4864 4.0995,7.20518 2.85723,4.84486 3.72682,4.22373 3.10568,2.85723 1.24227,2.23609 -0.86959,0.99382 -0.62113,0.99382 2.23609,5.71445 2.23609,2.23609 1.98764,4.09951 2.733,4.47218 3.47836,6.33559 0.99382,5.83868 0.37268,9.19282 0.49691,1.3665 -0.24846,2.60878 -1.8634,0.99381 0.24845,1.49073 -0.49691,1.49073 0.24846,1.86341 0.37268,1.49073 -2.11187,2.48454 -2.36032,1.11805 -2.98145,0.12422 -1.11805,1.24228 -1.86341,0.74536 -0.99381,-0.37268 -0.86959,-0.74536 -0.24846,-2.2361 -0.62114,-2.60877 -2.60877,-3.97527 -2.733,-1.73918 -2.98145,-0.24846 -0.62114,0.99382 -2.36032,-3.35414 -0.49691,-2.733 -1.98763,-3.10568 -1.36651,-0.86959 -1.24227,1.61495 -1.3665,-0.24845 -1.61495,-3.85105 -2.23609,-2.98145 -2.2361,-4.0995 -1.98763,-2.36032 -2.733,-2.85723 1.61495,-1.86341 2.48455,-4.22373 -0.12423,-1.24227 -3.47836,-0.74536 -1.24228,0.49691 0.24846,0.49691 1.98764,0.74536 -1.11805,3.47836 -0.62114,0.37269 -1.3665,-3.10569 -0.99382,-3.72682 -0.24845,-2.11186 1.11805,-3.60259 0,-7.32941 -2.36032,-2.85723 -0.99382,-2.36032 -3.97527,-0.99382 -1.49073,-0.4969 -1.24228,-1.98764 -2.60877,-1.24227 -0.86959,-2.60878 -2.11186,-0.74536 -1.86341,-2.85723 -3.22991,-1.11804 -2.23609,-1.11805 -1.98764,0 -3.10568,0.62114 -0.12423,1.49072 0.62114,0.74537 -0.37268,0.86959 -2.36032,-0.12423 -2.85723,2.733 -2.733,1.49073 -2.98146,0 -2.48454,0.99382 -0.24846,-2.11187 -1.24227,-1.49072 -2.23609,-0.8696 -1.24227,-1.11804 -6.21137,-2.98146 -5.83868,-1.3665 -3.35414,0.49691 -4.59641,0.37269 -4.59641,1.61495 -2.67361,0.47103 -0.18283,-6.1858 -1.98763,-1.49072 -1.3665,-1.3665 0.24845,-2.36033 7.82633,-0.99382 19.62794,-2.23609 5.21755,-0.49691 4.72065,-0.12423 1.98764,2.98146 1.11804,1.11804 6.08716,0.12423 8.31438,-0.49691 16.53111,-0.99382 4.18473,-0.51821 3.51737,0.0213 0.12423,2.23609 1.98764,0.62113 0.24845,-3.35413 -1.24227,-3.47838 0.86959,-1.24227 4.47219,0.62114 3.97528,0.24845 z m 9.50463,102.42533 1.86341,-0.49691 0.99382,-0.18634 1.11805,-1.80131 1.8013,-1.24227 0.99383,0.37268 1.30439,0.24846 0.31057,0.80748 -2.6709,0.93171 -3.22992,1.11804 -1.8013,0.93171 -0.68325,-0.68325 z m 10.37301,-3.85106 0.93171,0.80749 2.11187,-1.61497 4.09952,-3.22991 2.85723,-2.98148 1.92553,-5.09333 0.74537,-1.30439 0.12423,-2.60878 -0.55903,0.37268 -0.74536,2.17398 -1.11806,3.54049 -2.48455,4.03741 -3.35414,3.22992 -2.60879,1.49073 -1.92553,1.18016 z",2,591.73761,380.66617,middle,,"m 731.26714,450.26838 2.02771,7.99978 3.62048,9.50152 5.17858,9.1446 3.60931,6.14896 4.7078,5.36063 3.92316,3.62631 1.56927,2.83798 -1.09849,1.26133 -0.78463,1.26132 2.82468,7.25262 2.82468,2.83798 2.51082,5.20297 3.45238,5.67596 4.39395,8.04095 1.25541,7.41028 0.47078,11.66726 0.62771,1.73432 -0.31386,3.31098 -2.35389,1.26132 0.31385,1.89199 -0.62771,1.89199 0.31386,2.36498 0.47078,1.89199 -2.66776,3.15331 -2.9816,1.41899 -3.76624,0.15767 -1.41234,1.57666 -2.3539,0.94599 -1.25541,-0.473 -1.09848,-0.94599 -0.31386,-2.83798 -0.78463,-3.31098 -3.29546,-5.0453 -3.45238,-2.20732 -3.76624,-0.31533 -0.78463,1.26132 -2.98161,-4.25697 -0.6277,-3.46864 -2.51083,-3.94164 -1.72619,-1.10366 -1.56927,2.04965 -1.72619,-0.31533 -2.04004,-4.88763 -2.82468,-3.78398 -2.82468,-5.20296 -2.51083,-2.99565 -3.45238,-3.62631 2.04005,-2.36499 3.13853,-5.36063 -0.15693,-1.57665 -4.39394,-0.946 -1.56927,0.63067 0.31385,0.63066 2.51083,0.94599 -1.41234,4.41464 -0.78463,0.473 -1.7262,-3.94164 -1.25541,-4.72997 -0.31385,-2.68032 1.41234,-4.5723 0,-9.30227 -2.98161,-3.62631 -1.25541,-2.99565 -5.02165,-1.26132 -1.88312,-0.63067 -1.56926,-2.52265 -3.29546,-1.57665 -1.09849,-3.31098 -2.66775,-0.946 -2.3539,-3.6263 -4.08009,-1.419 -2.82468,-1.41899 -2.51082,0 -3.92316,0.78833 -0.15693,1.89199 0.78463,0.94599 -0.47078,1.10366 -2.9816,-0.15766 -3.60931,3.46864 -3.45239,1.89199 -3.76624,0 -3.13853,1.26132 -0.31385,-2.68031 -1.56927,-1.89199 -2.82467,-1.10366 -1.56927,-1.41899 -7.84633,-3.78397 -7.37555,-1.73433 -4.23701,0.63067 -5.80629,0.47299 -5.80628,2.04966 -3.37736,0.59781 -0.23096,-7.85083 -2.51082,-1.89198 -1.72619,-1.73433 0.31385,-2.99565 9.88638,-1.26133 24.79444,-2.83798 6.59093,-0.63066 5.96322,-0.15768 2.51082,3.78399 1.41234,1.41899 7.68942,0.15766 10.50291,-0.63066 20.88244,-1.26132 5.28626,-0.65771 4.44321,0.027 0.15693,2.83799 2.51082,0.78832 0.31386,-4.25697 -1.56927,-4.41465 1.09849,-1.57665 5.64936,0.78833 5.02166,0.31533 z m 12.00645,129.99521 2.3539,-0.63066 1.25542,-0.2365 1.41235,-2.28616 2.27544,-1.57666 1.25542,0.473 1.64773,0.31533 0.39231,1.02483 -3.37392,1.1825 -4.08011,1.41899 -2.27544,1.18249 -0.8631,-0.86716 z m 13.10341,-4.88765 1.17695,1.02484 2.66777,-2.04967 5.17859,-4.09931 3.60932,-3.784 2.43237,-6.46431 0.94157,-1.65549 0.15693,-3.31099 -0.70618,0.473 -0.94156,2.75915 -1.41235,4.49348 -3.13854,5.12416 -4.23703,4.09932 -3.29546,1.892 -2.43238,1.49782 z",8,7,8,8,8,7,8,8,15,15,ababcbcbcdefefedef,0.5,-0.1 GA,Georgia,Ga.,13,9687653,59424.77,"m 544.04433,284.48008 -3.72683,0.62114 -6.45983,0.86959 -6.58405,0.68324 0,1.67708 0.12423,1.61496 0.49691,2.60877 2.60878,6.08715 1.86341,7.57788 1.11804,4.72064 1.24227,3.72682 1.11806,5.34178 1.61495,4.84487 1.98764,2.60879 0.37268,2.60877 1.49074,0.62113 0.12422,1.61497 -1.3665,3.72682 -0.37269,2.48455 -0.12422,1.49073 1.24228,3.35414 0.24845,4.0995 -0.62114,1.86342 0.49692,0.62114 1.11804,0.62113 0.49691,2.60878 1.98764,2.98146 1.11804,1.11804 6.08716,0.12423 8.31438,-0.49691 16.53111,-0.99382 4.18473,-0.51821 3.51737,0.0213 0.12423,2.23609 1.98764,0.62113 0.24845,-3.35413 -1.24227,-3.47838 0.86959,-1.24227 4.47219,0.62114 3.82487,0.2442 -0.59587,-4.84029 1.73918,-7.70209 1.11804,-3.22991 -0.37268,-1.98763 3.10568,-5.34178 -0.46005,-1.24245 -1.40243,0.74519 -1.98764,-0.99383 -0.49691,-1.61496 -0.99382,-2.733 -1.73919,-1.61496 -1.98763,-0.49691 -1.24228,-3.72682 -2.11187,-4.59641 -3.22991,-1.49074 -1.61496,-1.49073 -0.99382,-1.98763 -1.61495,-1.49074 -1.73919,-0.99382 -1.73919,-2.23609 -2.36032,-1.73918 -3.47837,-1.36651 -0.37268,-1.11804 -1.86341,-2.2361 -0.37268,-1.11805 -2.60878,-3.97527 -2.60877,0.12422 -3.10569,-1.86341 -0.99382,-0.99382 -0.24846,-1.3665 0.62114,-1.49073 1.73918,-0.74537 -0.12423,-1.75426 -1.3665,0.38776 -4.47219,0.74536 -5.34178,0.62114 -5.21755,0.37269 z",1,566.18921,333.23096,middle,,"m 667.241,365.75948 -4.7078,0.78833 -8.16019,1.10366 -8.31712,0.86715 0,2.1285 0.15693,2.04966 0.6277,3.31098 3.29547,7.72562 2.3539,9.61763 1.41234,5.9913 1.56926,4.72997 1.41235,6.77963 2.04005,6.14897 2.51082,3.31099 0.47078,3.31098 1.88313,0.78832 0.15693,2.04967 -1.72621,4.72997 -0.47077,3.15332 -0.15693,1.89199 1.56927,4.25698 0.31386,5.20296 -0.78465,2.365 0.62772,0.78833 1.41234,0.78832 0.62771,3.31098 2.51082,3.78399 1.41234,1.41899 7.68942,0.15766 10.50291,-0.63066 20.88244,-1.26132 5.28626,-0.65771 4.44321,0.027 0.15693,2.83799 2.51082,0.78832 0.31386,-4.25697 -1.56927,-4.41465 1.09849,-1.57665 5.64936,0.78833 4.83165,0.30993 -0.75271,-6.14315 2.19697,-9.77527 1.41234,-4.0993 -0.47078,-2.52265 3.92316,-6.77963 -0.58115,-1.57688 -1.77158,0.94577 -2.51082,-1.26134 -0.62771,-2.04965 -1.25541,-3.46864 -2.19699,-2.04967 -2.51082,-0.63066 -1.56927,-4.72997 -2.66776,-5.83364 -4.08009,-1.89199 -2.04005,-1.89199 -1.25542,-2.52265 -2.04004,-1.892 -2.19697,-1.26132 -2.19699,-2.83799 -2.9816,-2.20731 -4.39395,-1.73434 -0.47078,-1.41899 -2.3539,-2.83798 -0.47078,-1.419 -3.29547,-5.0453 -3.29546,0.15767 -3.92317,-2.365 -1.25541,-1.26132 -0.31386,-1.73432 0.78464,-1.89199 2.19697,-0.94601 -0.15693,-2.22646 -1.72619,0.49214 -5.64937,0.946 -6.74785,0.78832 -6.59093,0.47301 z",7,6,7,7,9,6,7,7,14,13,ababcbcdedefef,0.75,0.5 HI,Hawaii,Haw.,15,1360301,10930.98,"m 193.2266,408.4586 1.49074,-2.73302 1.73919,-0.24845 0.24845,0.62113 -1.61496,2.36034 -1.86342,0 z m 7.82636,-2.85725 4.72066,1.98765 1.61496,-0.24846 1.24228,-2.98147 -0.49691,-2.60878 -3.22993,-0.37268 -3.1057,1.3665 -0.74536,2.85724 z m 23.6033,7.70214 2.85723,4.22374 1.86342,-0.24846 0.8696,-0.37268 1.11804,0.99382 2.85725,-0.12423 0.74537,-1.11804 -2.23611,-1.36651 -1.49073,-2.85724 -1.61497,-2.73301 -4.47219,2.2361 -0.49691,1.36651 z m 15.52848,6.83253 0.99382,-1.49074 3.60261,0.74537 0.49691,-0.37269 4.72066,0.49691 -0.24846,0.99383 -1.98764,1.11805 -3.35416,-0.24846 -4.22374,-1.24227 z m 4.09952,3.97529 1.49073,2.98147 2.36033,-0.8696 0.24845,-1.24228 -1.24227,-1.61496 -2.85724,-0.24846 0,0.99383 z m 5.34179,-0.8696 1.73919,-2.2361 3.60261,1.86342 3.35415,0.8696 3.35416,2.11187 0,1.49073 -2.73301,1.36651 -3.72684,0.74536 -1.86342,-1.11805 -3.72684,-5.09334 z m 12.79548,11.92587 1.24227,-0.99381 2.60879,1.24228 5.83871,2.733 2.60879,1.61497 1.24227,1.86341 1.49073,3.35416 3.1057,1.98764 -0.24845,0.99383 -2.98147,2.48455 -3.22993,1.11806 -1.11804,-0.49691 -2.36034,1.3665 -1.86342,2.48456 -1.73919,2.2361 -1.3665,-0.12423 -2.73301,-1.98764 -0.24846,-3.47838 0.49691,-1.86342 -1.24228,-4.34798 -1.61496,-1.36651 -0.12423,-1.98764 1.73919,-0.74537 1.61496,-2.36032 0.37269,-0.74538 -1.24228,-1.3665 -0.24845,-1.61497 z",4,224.62474,449.79517,middle,,"m 224.08057,523.10937 1.88313,-3.46866 2.19698,-0.31533 0.31386,0.78832 -2.04006,2.99567 -2.35391,0 z m 9.88643,-3.62633 5.96324,2.52266 2.04005,-0.31533 1.56927,-3.78399 -0.62771,-3.31099 -4.08011,-0.473 -3.92318,1.73432 -0.94156,3.62633 z m 29.81618,9.77532 3.60933,5.36065 2.3539,-0.31533 1.0985,-0.473 1.41234,1.26133 3.60933,-0.15767 0.94157,-1.41899 -2.8247,-1.73433 -1.88313,-3.62633 -2.04005,-3.46865 -5.64938,2.83799 -0.62771,1.73433 z m 19.61591,8.67165 1.25542,-1.892 4.55089,0.946 0.62771,-0.473 5.96323,0.63066 -0.31385,1.26134 -2.51083,1.41899 -4.23704,-0.31533 -5.33553,-1.57666 z m 5.1786,5.04532 1.88313,3.784 2.98162,-1.10367 0.31385,-1.57667 -1.56927,-2.04966 -3.60933,-0.31533 0,1.26133 z m 6.74787,-1.10367 2.19699,-2.83799 4.55089,2.36499 4.23703,1.10367 4.23704,2.68033 0,1.892 -3.45239,1.73433 -4.70783,0.94599 -2.35391,-1.419 -4.70782,-6.46432 z m 16.16352,15.13597 1.56927,-1.26132 3.29547,1.57666 7.37558,3.46866 3.29548,2.04966 1.56927,2.36499 1.88312,4.257 3.92319,2.52266 -0.31385,1.26133 -3.76626,3.15332 -4.08011,1.41901 -1.41234,-0.63067 -2.98163,1.73432 -2.35391,3.15334 -2.19698,2.83799 -1.7262,-0.15767 -3.45239,-2.52266 -0.31386,-4.41465 0.62771,-2.365 -1.56928,-5.51833 -2.04005,-1.73433 -0.15693,-2.52266 2.19698,-0.94599 2.04006,-2.99566 0.47078,-0.946 -1.56927,-1.73434 -0.31385,-2.04966 z",0,7,0,8,0,7,0,8,1,13,abcbcbcdefedefaf,0,0.75 IA,Iowa,Iowa,19,3046355,56271.55,"m 450.29264,164.16357 0.0439,1.40546 1.75684,0.52705 0.70273,0.87842 0.35137,1.40547 2.98663,2.63527 0.52706,1.75684 -0.52706,2.63526 -1.40547,2.81094 -0.52705,1.93252 -1.75684,1.40548 -1.40548,0.52706 -4.04073,1.0541 -0.52706,1.40547 -0.52704,1.58116 0.52704,1.0541 1.40548,1.22979 -0.17568,3.16231 -1.40548,1.22979 -0.52705,1.22979 0,2.10821 -1.40547,0.35136 -1.22979,0.87843 -0.17569,1.05411 0.17569,1.58115 -1.31763,1.36155 -2.54742,-2.59134 -0.87842,-1.75684 -5.97326,0.52705 -7.55442,0.35137 -19.50093,0.70274 -10.36536,0.17568 -7.20304,0.17569 -0.83671,0.0932 -1.27151,-4.1339 -0.17568,-5.09485 -1.22979,-3.16231 -0.52705,-4.04073 -1.75684,-2.81095 -0.70273,-3.68937 -2.10822,-5.79757 -0.87841,-4.12858 -1.05411,-1.66899 -1.22979,-2.10821 1.40547,-3.338 1.05411,-4.3921 -2.10821,-1.58116 -0.35137,-2.10821 0.70274,-1.93253 1.31764,0 8.87203,0 38.12345,-0.52705 13.87904,-0.52705 3.16232,-0.0878 0.52705,2.54741 1.75684,1.22979 0.17568,1.0541 -1.58116,2.63526 0.17569,2.45958 1.93253,2.98663 1.93252,0.87842 2.28389,0.35136 1.01019,2.10823 z",1,414.09293,178.65936,middle,,"m 548.81188,213.0573 0.0554,1.78378 2.21927,0.66891 0.88771,1.11486 0.44386,1.78379 3.77277,3.3446 0.66579,2.22973 -0.66579,3.3446 -1.77542,3.56756 -0.66578,2.4527 -2.21928,1.78379 -1.77543,0.66892 -5.10433,1.33784 -0.66579,1.78378 -0.66578,2.00676 0.66578,1.33784 1.77542,1.56082 -0.22193,4.0135 -1.77542,1.56082 -0.66578,1.56081 0,2.67567 -1.77542,0.44595 -1.5535,1.11487 -0.22193,1.33784 0.22193,2.00676 -1.66446,1.72803 -3.21795,-3.28885 -1.10965,-2.22973 -7.54554,0.66892 -9.5429,0.44594 -24.634,0.8919 -13.09374,0.22297 -9.09904,0.22298 -1.05694,0.11825 -1.6062,-5.24663 -0.22192,-6.46623 -1.5535,-4.01351 -0.66578,-5.12838 -2.21928,-3.56757 -0.88771,-4.68243 -2.66314,-7.35812 -1.10963,-5.23987 -1.33157,-2.11824 -1.5535,-2.67567 1.77542,-4.23649 1.33157,-5.57433 -2.66313,-2.00676 -0.44386,-2.67567 0.88772,-2.45271 1.66446,0 11.20735,0 48.15835,-0.66892 17.5323,-0.66891 3.99471,-0.11148 0.66578,3.23309 2.21928,1.56082 0.22192,1.33784 -1.99735,3.34459 0.22193,3.12163 2.44121,3.79054 2.44121,1.11486 2.88506,0.44595 1.27609,2.67569 z",4,3,4,3,5,3,4,3,9,6,abababcdcdefedef,1,0 ID,Idaho,Ida.,16,1567582,83570.08,"m 122.19944,145.85176 3.64857,-14.18961 3.338,-13.61551 1.0541,-3.25016 1.93253,-4.56778 -0.96626,-1.75684 -1.93254,0.0878 -0.61488,-0.79058 0.35136,-0.87841 0.26352,-2.37174 3.42585,-4.21642 1.40547,-0.35137 0.87842,-0.87841 0.43921,-2.45958 0.70273,-0.52705 2.98663,-4.479945 2.98663,-3.337997 0.17569,-2.898785 -2.63527,-2.020369 -1.01018,-3.381916 0.30745,-7.422647 2.81095,-12.649256 3.42583,-15.987245 2.89879,-10.36535 0.5855,-2.922542 10.85005,2.066037 -3.44189,16.404419 2.63526,5.79757 -1.0541,3.513681 1.40547,3.51368 2.45958,1.054107 2.81094,7.905785 2.81095,2.81094 0.35136,0.878424 2.63527,0.878424 0.35137,1.581149 -5.44621,13.52768 0,1.932526 1.93253,2.45957 0.70273,0 3.68936,-2.28389 0.52706,-0.878423 1.22979,0.527053 -0.17569,4.04073 2.10821,9.66263 2.28389,1.93252 0.70274,0.52705 1.40547,1.75684 -0.35137,2.63527 0.52705,2.63525 0.87843,0.70274 1.75684,-1.75684 2.1082,0 2.45959,1.2298 1.93252,-0.70275 3.16231,0 2.81094,1.22979 2.10822,-0.35136 0.35136,-2.2839 2.28389,-0.52705 1.05411,1.05411 0.35137,2.45957 2.02037,1.58116 -2.89879,18.79819 -3.95292,23.27819 -3.68939,-0.61485 -6.41247,-1.0541 -7.90577,-1.40548 -9.22342,-1.58115 -9.75047,-1.80076 -6.14893,-1.53724 -7.1152,-1.40547 -7.46658,-1.49332 -16.12213,-3.46663 z",1,162.44559,131.69563,middle,,"m 134.35755,189.8165 4.60895,-18.00904 4.21663,-17.2804 1.33157,-4.12501 2.4412,-5.79729 -1.2206,-2.22973 -2.44121,0.11148 -0.77674,-1.00338 0.44385,-1.11486 0.33289,-3.01014 4.32759,-5.35135 1.77543,-0.44595 1.10963,-1.11486 0.55482,-3.12163 0.88771,-0.66891 3.77278,-5.68581 3.77277,-4.23649 0.22193,-3.67905 -3.32892,-2.5642 -1.27608,-4.29222 0.38837,-9.420609 3.55085,-16.054064 4.32759,-20.290542 3.6618,-13.155398 0.73962,-3.709203 13.70601,2.622153 -4.34786,20.820006 3.32892,7.358106 -1.33157,4.45946 1.77542,4.45946 3.107,1.337842 3.55084,10.03379 3.55085,3.567561 0.44385,1.11487 3.32892,1.114868 0.44386,2.00675 -6.87976,17.16893 0,2.45271 2.4412,3.12161 0.88771,0 4.66048,-2.89864 0.66579,-1.11487 1.5535,0.66892 -0.22194,5.12838 2.66314,12.26352 2.88506,2.4527 0.88771,0.66892 1.77542,2.22973 -0.44385,3.3446 0.66578,3.34459 1.10964,0.8919 2.21928,-2.22973 2.66313,0 3.107,1.56081 2.4412,-0.8919 3.99471,0 3.55084,1.56082 2.66314,-0.44595 0.44385,-2.89865 2.88506,-0.66892 1.33157,1.33784 0.44385,3.12162 2.55218,2.00676 -3.66181,23.85811 -4.99342,29.544 -4.66051,-0.78035 -8.10036,-1.33784 -9.98675,-1.78379 -11.65121,-2.00676 -12.31701,-2.28547 -7.76746,-1.95101 -8.98807,-1.78378 -9.43194,-1.89528 -20.36582,-4.39974 z",1,2,1,3,2,3,1,3,5,5,abcbcdcdefefaf,0,1 IL,Illinois,Ill.,17,12830632,57914.38,"m 489.38424,241.24891 0,-2.85723 0.37268,-3.47837 1.73918,-2.23609 1.36651,-2.98146 1.98764,-3.22991 -0.37268,-4.47219 -1.3665,-2.11188 -0.24846,-2.48454 0.62114,-4.22374 -0.37268,-5.34178 -0.99383,-12.29852 -0.99382,-11.8016 -0.62152,-8.94409 -0.9942,-0.62084 -0.62113,-1.98764 -0.99382,-2.85723 -1.24227,-1.3665 -1.11805,-1.98763 -0.17948,-4.21797 -7.60967,1.00839 -20.9064,1.31762 -6.676,-0.3294 0.17568,1.82272 1.75684,0.52705 0.70273,0.87842 0.35137,1.40547 2.98663,2.63527 0.52706,1.75684 -0.52706,2.63526 -1.40547,2.81094 -0.52705,1.93252 -1.75684,1.40548 -1.40548,0.52706 -4.04073,1.0541 -0.52705,1.40547 -0.52705,1.58116 0.52705,1.0541 1.40547,1.22979 -0.17568,3.16231 -1.40548,1.22979 -0.52705,1.22979 0,2.10821 -1.40547,0.35136 -1.22979,0.87843 -0.17568,1.05411 0.17568,1.58115 -1.31763,1.01018 -0.79058,2.15214 0.35137,2.81094 1.75684,5.62189 5.62189,5.79757 4.21642,2.81095 -0.17569,3.338 0.70275,1.0541 4.91915,0.35137 2.10821,1.05411 -0.52705,2.81094 -1.75684,4.56778 -0.52706,2.45959 1.75684,2.98662 4.91915,4.04074 3.51369,0.52705 1.58115,3.86505 1.58116,2.45957 -0.70274,2.28389 1.2298,3.16232 1.40547,1.58116 2.27892,-0.26004 0.44048,-1.57509 1.73919,-1.3665 1.61496,-0.49691 2.11186,0.99382 2.73301,0.99381 0.86959,-0.24845 0.12423,-1.73918 -0.99382,-1.86342 0.24846,-1.73918 1.49072,-1.11805 1.98765,-0.49691 1.24227,-0.49691 -0.62114,-1.3665 -0.4969,-1.49073 0.86959,-0.62114 0.74536,-2.60878 z",3,470.94992,213.07855,middle,,"m 598.19322,310.89175 0,-3.62631 0.47078,-4.41464 2.19697,-2.83799 1.7262,-3.78398 2.51083,-4.09931 -0.47078,-5.67597 -1.7262,-2.68033 -0.31385,-3.15331 0.78463,-5.36064 -0.47078,-6.77963 -1.25542,-15.60892 -1.25541,-14.97825 -0.78512,-11.35157 -1.25589,-0.78796 -0.78463,-2.52265 -1.25542,-3.62631 -1.56926,-1.73432 -1.41234,-2.52265 -0.22673,-5.35332 -9.61269,1.27981 -26.40941,1.6723 -8.43327,-0.41806 0.22193,2.31334 2.21927,0.66891 0.88771,1.11486 0.44386,1.78379 3.77277,3.3446 0.66579,2.22973 -0.66579,3.3446 -1.77542,3.56756 -0.66578,2.4527 -2.21928,1.78379 -1.77543,0.66892 -5.10433,1.33784 -0.66579,1.78378 -0.66578,2.00676 0.66578,1.33784 1.77542,1.56082 -0.22193,4.0135 -1.77542,1.56082 -0.66578,1.56081 0,2.67567 -1.77542,0.44595 -1.5535,1.11487 -0.22193,1.33784 0.22193,2.00676 -1.66446,1.28208 -0.99867,2.73143 0.44385,3.56757 2.21928,7.13514 7.1017,7.35811 5.32626,3.56757 -0.22193,4.23649 0.88772,1.33784 6.21398,0.44594 2.66313,1.33784 -0.66578,3.56757 -2.21928,5.7973 -0.66579,3.12163 2.21928,3.79053 6.21398,5.12839 4.43857,0.66891 1.99734,4.90542 1.99735,3.12161 -0.88771,2.89865 1.5535,4.01352 1.77542,2.00675 2.87879,-0.33003 0.55642,-1.99906 2.19699,-1.73432 2.04004,-0.63066 2.66775,1.26132 3.4524,1.26133 1.09848,-0.31533 0.15693,-2.20732 -1.25541,-2.365 0.31385,-2.20732 1.88312,-1.41899 2.51083,-0.63066 1.56927,-0.63066 -0.78463,-1.73433 -0.62771,-1.89199 1.09849,-0.78833 0.94156,-3.31099 z",5,2,5,3,6,3,5,3,11,7,abcbcdcdefefaf,0,1 IN,Indiana,Ind.,18,6483802,36417.73,"m 489.50847,241.37314 -0.12423,-2.98146 0.37268,-3.47837 1.73918,-2.23609 1.36651,-2.98146 1.98764,-3.22991 -0.37268,-4.47219 -1.3665,-2.11188 -0.24846,-2.48454 0.62114,-4.22374 -0.37268,-5.34178 -0.99383,-12.29852 -0.99382,-11.8016 -0.74575,-9.0062 2.35994,0.68354 1.11805,0.74536 0.86959,-0.24845 1.61495,-1.49073 2.17438,-1.24257 3.91354,-0.12452 16.89494,-1.73919 4.72064,-0.49691 0.12423,0.86959 1.11805,11.3047 1.3665,10.55934 1.98764,18.01299 0.37268,4.34796 -0.37268,1.73918 1.11805,1.11805 0.24846,1.49073 -2.11187,1.49073 -2.98146,1.3665 -2.11187,0.24846 -0.37268,3.47837 -3.6026,2.98145 -2.23609,2.73301 0.24845,1.73918 -0.62114,1.61496 -3.60259,0 -0.8696,-1.24227 -0.86959,0.62113 -2.2361,1.24228 0.12424,2.60878 -1.61496,0.37268 -0.62114,-0.86959 -1.49073,-1.24228 -2.2361,1.11805 -1.3665,2.48455 -1.3665,-0.62114 -1.11804,-1.49073 -2.73301,0.37268 -4.47219,0.74537 -2.23609,1.3665 z",2,510.78357,196.97531,middle,,"m 598.35014,311.04942 -0.15692,-3.78398 0.47078,-4.41464 2.19697,-2.83799 1.7262,-3.78398 2.51083,-4.09931 -0.47078,-5.67597 -1.7262,-2.68033 -0.31385,-3.15331 0.78463,-5.36064 -0.47078,-6.77963 -1.25542,-15.60892 -1.25541,-14.97825 -0.94205,-11.4304 2.98113,0.86753 1.41234,0.94599 1.09848,-0.31533 2.04005,-1.89199 2.74671,-1.57703 4.94368,-0.15804 21.34205,-2.20733 5.96321,-0.63066 0.15692,1.10366 1.41235,14.34759 1.7262,13.4016 2.51082,22.86156 0.47078,5.5183 -0.47078,2.20732 1.41234,1.41899 0.31386,1.89199 -2.66776,1.892 -3.76624,1.73432 -2.66776,0.31533 -0.47078,4.41465 -4.55088,3.78397 -2.82468,3.46866 0.31386,2.20732 -0.78464,2.04965 -4.55088,0 -1.09848,-1.57666 -1.09849,0.78833 -2.82469,1.57667 0.15694,3.31098 -2.04005,0.47299 -0.78464,-1.10366 -1.88312,-1.57665 -2.82468,1.41899 -1.7262,3.15331 -1.72619,-0.78833 -1.41234,-1.89198 -3.45239,0.47299 -5.64937,0.946 -2.82468,1.73432 z",5,3,6,3,7,3,6,3,13,8,abcbcdcdefefaf,0,1 KS,Kansas,Kan.,20,2853118,82276.84,"m 401.67207,259.7357 -10.18972,0.52705 -35.6636,-0.35136 -34.60996,-1.58118 -18.55666,-0.96625 3.18427,-50.59701 16.77783,0.61489 31.09586,1.0541 33.90725,0.35137 4.65562,0 2.37175,2.10821 1.75684,0.17568 1.0541,0.70274 0,2.28389 -1.40547,1.2298 -0.35137,1.75684 1.58115,2.63526 1.93254,2.28389 1.93252,1.40547 1.0541,8.95989 -0.52705,27.40672 z",3,351.38654,238.09323,middle,,"m 487.39333,334.35464 -12.87187,0.66891 -45.05102,-0.44593 -43.72003,-2.00678 -23.44118,-1.22634 4.02244,-64.21623 21.19412,0.78039 39.28094,1.33783 42.83237,0.44596 5.88108,0 2.99604,2.67567 2.21928,0.22297 1.33156,0.8919 0,2.89865 -1.77542,1.56081 -0.44386,2.22973 1.99735,3.3446 2.44122,2.89865 2.4412,1.78378 1.33156,11.37163 -0.66578,34.7838 z",3,5,4,5,5,5,4,5,8,9,ababcdcdedefaf,0.25,0.5 KY,Kentucky,Ky.,21,4339367,40409.02,"m 569.54734,238.34152 -2.3967,2.41048 -3.22991,2.73301 -3.47838,4.09951 -1.3665,1.3665 0,1.61495 -2.98146,1.61496 -4.34795,2.60878 -2.00701,1.08037 -39.85766,3.7645 -12.11036,1.3665 -3.55115,0.39399 -2.97261,-0.0213 0,2.98147 -6.45983,0.37268 -5.34178,0.49691 -8.01534,0.15799 0.77227,-0.9551 1.67526,-1.35402 1.58115,-0.87841 0.17569,-2.45958 0.70274,-1.40548 -1.23476,-1.95101 0.61616,-1.46527 1.73919,-1.3665 1.61496,-0.49691 2.11186,0.99382 2.73301,0.99381 0.86959,-0.24845 0.12423,-1.73918 -0.99382,-1.86342 0.24846,-1.73918 1.49072,-1.11805 1.98765,-0.49691 1.24227,-0.49691 -0.62114,-1.3665 -0.4969,-1.49073 0.86959,-0.62114 0.80747,-2.54667 2.29821,-1.30438 4.47219,-0.74537 2.73301,-0.37268 1.11804,1.49073 1.3665,0.62114 1.3665,-2.48455 2.2361,-1.11805 1.49073,1.24228 0.62114,0.86959 1.61496,-0.37268 -0.12424,-2.60878 2.2361,-1.24228 0.86959,-0.62113 0.8696,1.24227 3.60259,0 0.62114,-1.61496 -0.24845,-1.73918 2.23609,-2.73301 3.6026,-2.98145 0.37268,-3.47837 2.11187,-0.24846 2.98146,-1.3665 2.11187,-1.49073 -0.24846,-1.49073 -1.11805,-1.11805 0.4348,-1.67706 3.1678,-0.18635 1.86341,-0.62113 2.2361,1.24227 1.24227,3.35414 4.47219,0.24845 1.3665,1.36651 1.61496,0.12423 1.86341,-1.11805 2.36032,0.37268 0.99382,1.11805 2.11187,-1.98765 1.3665,-0.99381 1.24227,0 0.49691,2.11187 1.36651,0.74536 2.733,1.61496 0.12423,4.22373 0.62114,1.24228 1.98764,1.11804 0.49691,1.73919 2.23609,2.85723 1.98764,2.11187 2.52093,1.68902 z",1,528.31409,249.39801,middle,,"m 699.45696,307.20178 -3.02756,3.05931 -4.08011,3.46865 -4.39395,5.20298 -1.72619,1.73432 0,2.04965 -3.76625,2.04966 -5.49243,3.31099 -2.53529,1.37117 -50.34904,4.7778 -15.29808,1.73432 -4.48588,0.50004 -3.75506,-0.027 0,3.78399 -8.1602,0.473 -6.74785,0.63066 -10.12515,0.20052 0.97555,-1.21218 2.11622,-1.71848 1.99735,-1.11486 0.22193,-3.12163 0.88771,-1.78379 -1.55977,-2.47616 0.77835,-1.85969 2.19699,-1.73432 2.04004,-0.63066 2.66775,1.26132 3.4524,1.26133 1.09848,-0.31533 0.15693,-2.20732 -1.25541,-2.365 0.31385,-2.20732 1.88312,-1.41899 2.51083,-0.63066 1.56927,-0.63066 -0.78463,-1.73433 -0.62771,-1.89199 1.09849,-0.78833 1.02002,-3.23216 2.90314,-1.65548 5.64937,-0.946 3.45239,-0.47299 1.41234,1.89198 1.72619,0.78833 1.7262,-3.15331 2.82468,-1.41899 1.88312,1.57665 0.78464,1.10366 2.04005,-0.47299 -0.15694,-3.31098 2.82469,-1.57667 1.09849,-0.78833 1.09848,1.57666 4.55088,0 0.78464,-2.04965 -0.31386,-2.20732 2.82468,-3.46866 4.55088,-3.78397 0.47078,-4.41465 2.66776,-0.31533 3.76624,-1.73432 2.66776,-1.892 -0.31386,-1.89199 -1.41234,-1.41899 0.54925,-2.12848 4.00163,-0.2365 2.3539,-0.78833 2.82469,1.57666 1.56926,4.25697 5.64937,0.31533 1.72619,1.73433 2.04005,0.15767 2.35391,-1.41899 2.9816,0.47299 1.25541,1.41899 2.66776,-2.52266 1.7262,-1.26132 1.56926,0 0.62771,2.68033 1.7262,0.94599 3.45239,2.04965 0.15692,5.36064 0.78463,1.57666 2.51084,1.41899 0.62771,2.20733 2.82467,3.62631 2.51083,2.68032 3.1845,2.14366 z",5,4,6,4,7,4,6,4,14,10,ababcdcdedefaf,0.25,0.5 LA,Louisiana,La.,22,4533372,51839.7,"m 477.83033,372.86823 -0.96547,-1.74883 -0.87843,-2.98663 -2.63525,-2.45957 0.87841,-5.79758 -0.52705,-0.70273 -1.40547,0.17568 -6.32463,0.52705 -18.62251,0.52706 -0.35137,-1.22979 0.52705,-6.14895 2.63527,-4.74347 4.04073,-7.02736 -0.70273,-1.58116 0.87841,0 0.52706,-2.45957 -1.75685,-1.40547 0.17569,-1.40548 -1.58115,-3.51368 -0.26353,-4.21642 -8.345,0 -14.75746,0.70274 -17.06332,0.022 0.022,7.35676 0.52705,7.20305 0.52706,2.98663 1.93252,3.16231 0.70273,3.86506 3.338,4.21641 0.17568,2.45958 0.52706,0.52705 -0.52706,6.50031 -2.28389,3.86505 1.22979,1.58116 -0.52705,1.93252 -0.52705,5.6219 -1.05411,2.45957 0.0941,2.77904 3.6013,-1.16815 6.21137,-0.24845 7.95055,2.733 4.96909,0.86959 2.85722,-1.11805 2.48455,0.86959 2.48455,0.74537 0.62113,-1.61496 -2.48454,-0.86959 -1.98764,0.37268 -2.11186,-1.24227 c 0,0 0.12422,-0.99382 0.62113,-1.11804 0.49691,-0.12423 2.36032,-0.74537 2.36032,-0.74537 l 1.3665,1.11805 1.3665,-0.74537 2.48455,0.49691 1.11804,1.86341 0.24846,1.73918 3.47836,0.24846 1.3665,1.3665 -0.62113,1.24227 -0.99382,0.62114 1.24227,1.24227 6.45982,2.733 2.733,-0.99382 0.74536,-1.86341 1.98764,-0.49691 1.3665,-1.11804 0.99382,0.74536 0.62114,2.23609 -1.73919,0.62114 0.49691,0.49691 2.60878,-0.99382 1.73918,-2.60877 0.62113,-0.37268 -1.61495,-0.24846 0.62114,-1.24227 -0.12423,-1.11805 1.61495,-0.37268 0.86959,-0.99382 0.49691,0.62114 c 0,0 -0.12422,2.36032 0.49691,2.36032 0.62114,0 3.22991,0.49691 3.22991,0.49691 l 3.10568,1.49072 0.74537,1.11805 2.23609,0 0.86959,0.74536 1.73918,-2.36031 0,-1.11805 -0.99382,0 -2.60877,-2.11186 -4.47218,-0.62114 -2.48455,-1.73918 0.86959,-2.11187 1.73919,0.24846 0.12422,-0.49691 -1.3665,-0.74537 0,-0.37268 2.48455,0 1.3665,-2.36032 -0.99382,-1.49072 -0.24845,-2.11187 -1.11805,0.12423 -1.49073,1.61496 -0.49691,1.98763 -2.36031,-0.49691 -0.74537,-1.3665 1.3665,-1.49072 1.55284,-1.3665 0.68324,-0.55902 z",4,445.27219,370.36136,middle,,"m 583.59807,477.93912 -1.21961,-2.21956 -1.10964,-3.79054 -3.32891,-3.12162 1.10963,-7.35811 -0.66578,-0.89189 -1.77542,0.22297 -7.98941,0.66892 -23.52435,0.66892 -0.44385,-1.56081 0.66578,-7.80406 3.32892,-6.02028 5.10434,-8.91892 -0.88771,-2.00675 1.10963,0 0.66579,-3.12162 -2.21928,-1.78379 0.22193,-1.78378 -1.99735,-4.45946 -0.33289,-5.35136 -10.54158,0 -18.64194,0.8919 -21.55474,0.0279 0.0277,9.33699 0.66578,9.14189 0.66579,3.79055 2.4412,4.01351 0.88771,4.90542 4.21663,5.35134 0.22192,3.12163 0.6658,0.66892 -0.6658,8.25 -2.88505,4.90541 1.55349,2.00675 -0.66579,2.45271 -0.66578,7.13514 -1.33157,3.12162 0.11887,3.52708 4.54925,-1.48259 7.84633,-0.31533 10.0433,3.46865 6.27706,1.10366 3.60931,-1.41899 3.13853,1.10366 3.13853,0.94599 0.78464,-2.04965 -3.13854,-1.10366 -2.51082,0.47299 -2.66775,-1.57665 c 0,0 0.15692,-1.26133 0.78463,-1.41899 0.62771,-0.15767 2.9816,-0.946 2.9816,-0.946 l 1.7262,1.41899 1.72619,-0.94599 3.13853,0.63066 1.41234,2.36499 0.31385,2.20732 4.39395,0.31533 1.72619,1.73432 -0.78463,1.57665 -1.25542,0.78833 1.56927,1.57666 8.16018,3.46864 3.45238,-1.26132 0.94156,-2.36499 2.51083,-0.63066 1.72619,-1.41899 1.25541,0.94599 0.78464,2.83799 -2.19698,0.78832 0.62771,0.63067 3.29546,-1.26133 2.19697,-3.31098 0.78463,-0.47299 -2.04004,-0.31534 0.78463,-1.57665 -0.15693,-1.41899 2.04005,-0.473 1.09849,-1.26132 0.6277,0.78832 c 0,0 -0.15692,2.99565 0.62771,2.99565 0.78463,0 4.08009,0.63066 4.08009,0.63066 l 3.92316,1.89199 0.94156,1.41899 2.82468,0 1.09849,0.946 2.19697,-2.99565 0,-1.41899 -1.25541,0 -3.29546,-2.68032 -5.64936,-0.78833 -3.13853,-2.20731 1.09849,-2.68032 2.19697,0.31533 0.15692,-0.63066 -1.72619,-0.946 0,-0.47299 3.13853,0 1.7262,-2.99565 -1.25542,-1.89199 -0.31385,-2.68031 -1.41234,0.15766 -1.88312,2.04966 -0.6277,2.52265 -2.98161,-0.63067 -0.94156,-1.73432 1.72619,-1.89199 1.96158,-1.73431 0.86309,-0.70949 z",4,6,5,6,6,6,5,6,10,13,abcbcdcdefefaf,0,1 MA,Massachusetts,Mass.,25,6547629,10554.57,"m 705.69499,142.99268 1.669,-0.52706 0.35138,-1.31763 0.79058,0.0878 0.79058,1.75685 -0.96627,0.35136 -2.98663,0.0879 0.35136,-0.43921 z m -7.20306,0.61489 1.75684,-2.02037 1.2298,0 1.40547,1.14195 -1.84468,0.79058 -1.669,0.79057 -0.87843,-0.70273 z m -26.74124,-16.89672 13.41658,-3.22992 1.73919,-0.49691 1.61495,-2.48454 2.87151,-1.27817 2.22022,3.39103 -1.86341,3.97527 -0.24845,1.11805 1.49073,1.98764 0.86959,-0.62114 1.3665,0 1.73918,1.98764 2.98145,4.59641 2.733,0.37268 1.73919,-0.74537 1.3665,-1.3665 -0.62114,-2.11186 -1.61495,-1.24227 -1.11805,0.62113 -0.74536,-0.99381 0.37268,-0.37269 1.61495,-0.12422 1.3665,0.62113 1.49073,1.86341 0.74536,2.23609 0.24846,1.86341 -3.22991,1.11805 -2.98146,1.49073 -2.98145,3.47836 -1.49073,1.11805 0,-0.74537 1.86341,-1.11804 0.37268,-1.3665 -0.62113,-2.36032 -2.23609,1.11804 -0.62114,1.11805 0.37268,1.73918 -2.11105,1.11757 -2.11108,-3.47885 -2.60878,-3.35414 -1.24227,-0.8696 -4.41008,1.18017 -3.91318,0.80747 -16.77071,3.66471 -0.74536,-4.41007 0.4969,-8.1369 3.97529,-0.68326 5.21755,-0.99382",3,725.99261,126.77104,start,"m 724.40769,124.31571 -45.27262,7.92879","m 871.44157,186.18783 2.10832,-0.66893 0.44386,-1.67229 0.99868,0.11148 0.99868,2.22974 -1.22061,0.44594 -3.77278,0.11149 0.44385,-0.55743 z m -9.09906,0.78041 2.21928,-2.5642 1.55351,0 1.77542,1.44933 -2.33024,1.00338 -2.10832,1.00337 -1.10965,-0.89188 z m -33.78011,-21.44483 16.94811,-4.09932 2.19699,-0.63066 2.04004,-3.15331 3.62735,-1.62221 2.80463,4.3038 -2.3539,5.0453 -0.31385,1.41899 1.88312,2.52265 1.09848,-0.78833 1.7262,0 2.19697,2.52265 3.76624,5.83363 3.45238,0.47299 2.19697,-0.94599 1.72619,-1.73432 -0.78463,-2.68032 -2.04004,-1.57665 -1.41234,0.78832 -0.94156,-1.26132 0.47078,-0.473 2.04004,-0.15766 1.7262,0.78833 1.88311,2.36498 0.94156,2.83798 0.31386,2.36498 -4.08009,1.419 -3.76624,1.89198 -3.76624,4.41464 -1.88312,1.41899 0,-0.94599 2.3539,-1.41899 0.47078,-1.73433 -0.78463,-2.99564 -2.82468,1.41899 -0.78463,1.41899 0.47078,2.20732 -2.66673,1.41838 -2.66676,-4.41525 -3.29547,-4.25698 -1.56926,-1.10366 -5.5709,1.49783 -4.94321,1.02482 -21.18513,4.65114 -0.94156,-5.59713 0.62771,-10.32712 5.02166,-0.86716 6.59092,-1.26134",9,2,10,2,11,2,10,2,19,3,ababcbcdedefef,0.75,0.5 MD,Maryland,Md.,24,5773552,12406.68,"m 657.09032,204.97503 -4.71913,0.99301 -3.85105,0.12423 -1.24228,-4.84488 -1.61496,-7.45365 -1.73919,-4.34797 -0.99005,-3.37987 -6.37836,1.24669 -11.43156,2.16957 -28.7794,5.80245 0.86935,3.85119 0.74536,4.34796 0.24846,-0.24846 1.61496,-1.86341 1.73918,-2.36032 1.86341,-0.12423 1.11805,-1.11804 1.3665,-1.98764 0.99382,0.49691 2.23609,-0.24846 1.98765,-1.61495 1.54218,-1.11676 1.41797,-0.37268 1.26358,0.8683 2.23609,1.11805 1.49073,1.3665 0.93171,1.18016 3.1678,1.30438 0,2.2361 4.22374,0.99382 1.49072,0.99382 0.74537,-1.49073 1.73919,1.24227 -1.11806,2.48456 -0.24845,2.11186 -1.3665,1.98764 0,1.61496 0.49691,1.3665 3.89137,1.04178 3.31284,-0.0474 2.36032,0.74537 1.61495,0.24845 0.74537,-1.61495 -1.11805,-1.61496 0,-1.3665 -1.86341,-1.61495 -1.61495,-4.22373 0.99382,-4.0995 -0.12423,-1.61496 -0.99382,-0.99381 c 0,0 1.11805,-1.24228 1.11805,-1.73919 0,-0.49691 0.37268,-1.61495 0.37268,-1.61495 l 1.49073,-0.99382 1.49072,-1.24227 0.37269,0.74536 -1.11805,1.24227 -0.99382,2.85723 0.24846,0.86959 1.3665,0.24846 0.37268,4.22372 -1.61496,0.74537 0.24846,2.733 0.37268,-0.12423 0.86959,-1.49073 1.24227,1.3665 -1.24227,0.99382 -0.24845,2.60878 1.98763,2.60877 2.98146,0.37268 1.24227,-0.62114 2.48455,3.97528 1.3665,0.37268 0,2.733 -1.73918,3.72682 -0.37269,5.34177 1.11805,2.60878 1.11804,0.12422 1.49073,-3.22991 0.62114,-2.733 0.12423,-5.466 2.36031,-3.72682 1.61496,-5.34177 0,-4.34796 z m -12.60677,7.51453 0.86959,1.92552 0.12423,1.36651 0.86959,1.42862 c 0,0 0.68325,-0.68325 0.68325,-0.93171 0,-0.24845 -0.55901,-2.36032 -0.55901,-2.36032 l -0.55903,-1.80131 -1.42862,0.37269 z",2,706.13965,228.27612,start,"M 704.06943,224.78459 644.69906,207.68993","m 810.04311,264.85402 -5.9613,1.26029 -4.86473,0.15767 -1.56928,-6.14898 -2.04004,-9.45996 -2.19699,-5.51831 -1.25065,-4.28963 -8.05729,1.58226 -14.44058,2.75356 -36.35475,7.3643 1.09817,4.88781 0.94156,5.5183 0.31386,-0.31533 2.04005,-2.36498 2.19697,-2.99566 2.3539,-0.15767 1.41235,-1.41899 1.72619,-2.52265 1.25542,0.63067 2.82467,-0.31534 2.51084,-2.04965 1.94812,-1.41735 1.7912,-0.473 1.59619,1.10202 2.82468,1.41899 1.88312,1.73433 1.17695,1.49782 4.00164,1.65549 0,2.83799 5.33551,1.26132 1.88312,1.26133 0.94156,-1.89199 2.19698,1.57666 -1.41235,3.15332 -0.31385,2.68032 -1.7262,2.52265 0,2.04966 0.62771,1.73432 4.91566,1.32219 4.18486,-0.0601 2.9816,0.946 2.04005,0.31533 0.94156,-2.04966 -1.41234,-2.04965 0,-1.73432 -2.3539,-2.04965 -2.04005,-5.36063 1.25542,-5.20297 -0.15693,-2.04965 -1.25541,-1.26133 c 0,0 1.41234,-1.57665 1.41234,-2.20732 0,-0.63066 0.47077,-2.04965 0.47077,-2.04965 l 1.88312,-1.26133 1.88312,-1.57665 0.47078,0.94599 -1.41234,1.57666 -1.25541,3.62631 0.31385,1.10366 1.7262,0.31533 0.47078,5.36063 -2.04005,0.94599 0.31385,3.46865 0.47078,-0.15767 1.09849,-1.89199 1.56926,1.73433 -1.56926,1.26132 -0.31385,3.31098 2.51082,3.31098 3.76624,0.47299 1.56926,-0.78832 3.13854,5.0453 1.72619,0.47299 0,3.46865 -2.19697,4.72997 -0.47078,6.77962 1.41233,3.31098 1.41234,0.15766 1.88312,-4.09931 0.78464,-3.46864 0.15692,-6.93729 2.98161,-4.72997 2.04004,-6.77962 0,-5.51829 z m -15.92514,9.53721 1.09849,2.44382 0.15693,1.73433 1.09848,1.81316 c 0,0 0.8631,-0.86717 0.8631,-1.1825 0,-0.31533 -0.70616,-2.99565 -0.70616,-2.99565 l -0.70618,-2.28617 -1.80466,0.47301 z",8,4,8,4,10,4,8,4,17,7,ababcbcbcdefefedef,0.5,-0.1 ME,Maine,Maine,23,1328361,35384.65,"m 723.55192,68.821924 1.49073,1.614955 1.73918,2.857228 0,1.490727 -1.61496,3.602591 -1.49072,0.49691 -2.60878,2.360318 -3.72681,4.223728 c 0,0 -0.49691,0 -0.99382,0 -0.49691,0 -0.74537,-1.614955 -0.74537,-1.614955 l -1.3665,0.124228 -0.74536,1.118045 -1.86341,1.118046 -0.74536,1.118045 1.24227,1.118046 -0.37268,0.496909 -0.37268,2.111864 -1.49073,-0.124227 0,-1.242273 -0.24846,-0.993818 -1.11804,0.248454 -1.3665,-2.484546 -1.61496,0.993819 0.99382,1.118045 0.24846,0.869591 -0.62114,0.993819 0.24845,2.360317 0.12423,1.24227 -1.24227,1.98764 -2.23609,0.37268 -0.24846,2.23609 -4.0995,2.36032 -0.99382,0.37268 -1.24227,-1.11804 -2.36032,2.733 0.74537,2.48454 -1.11805,0.99382 -0.12423,3.35414 -1.21198,5.85636 -1.8921,-0.88829 -0.37269,-2.36032 -2.98146,-0.86959 -0.24845,-2.11188 -5.59025,-18.012992 -3.66237,-11.353397 1.8764,-0.265198 1.16326,0.314985 0,-1.987637 0.62114,-4.223728 1.98764,-3.602591 1.11804,-3.105683 -1.49072,-1.863409 0,-4.59641 0.62113,-0.745364 0.62114,-2.111863 -0.12423,-1.118046 -0.12423,-3.726819 1.3665,-3.726819 2.2361,-6.8325 1.61495,-3.22991 0.99382,0 0.99382,0.124227 0,0.869591 0.99382,1.739182 2.11186,0.49691 0.62114,-0.621137 0,-0.745364 3.10568,-2.236091 1.3665,-1.3665 1.11804,0.124227 4.59641,1.86341 1.49073,0.745363 6.95673,22.982049 4.59641,0 0.62114,1.490728 0.12422,3.726818 2.23609,1.739182 0.62114,0 0.12423,-0.372682 -0.37268,-0.869591 2.11186,-0.124227 z m -16.08492,23.16674 1.18016,-1.180163 1.05594,0.807481 0.4348,1.863418 -1.30439,0.68325 -1.36651,-2.173986 z m 5.15545,-4.534308 1.3665,1.428618 c 0,0 0.99383,0.06209 0.99383,-0.186345 0,-0.248455 0.18634,-1.552845 0.18634,-1.552845 l 0.68325,-0.621137 -0.62113,-1.366508 -1.55285,0.559027 -1.05594,1.73919 z",2,701.45251,77.111656,middle,,"m 893.99882,92.052491 1.88312,2.049653 2.19697,3.626309 0,1.891988 -2.04004,4.572299 -1.88312,0.63067 -3.29546,2.99564 -4.7078,5.36063 c 0,0 -0.6277,0 -1.25541,0 -0.6277,0 -0.94156,-2.04965 -0.94156,-2.04965 l -1.72619,0.15767 -0.94156,1.41899 -2.3539,1.41899 -0.94156,1.41899 1.56927,1.41899 -0.47078,0.63066 -0.47078,2.68032 -1.88312,-0.15767 0,-1.57665 -0.31385,-1.26133 -1.41234,0.31533 -1.72619,-3.15331 -2.04005,1.26132 1.25541,1.419 0.31386,1.10365 -0.78464,1.26133 0.31386,2.99565 0.15692,1.57665 -1.56926,2.52265 -2.82468,0.473 -0.31385,2.83798 -5.17858,2.99565 -1.25541,0.47299 -1.56927,-1.41899 -2.9816,3.46865 0.94156,3.15331 -1.41234,1.26133 -0.15693,4.25697 -1.531,7.43272 -2.39014,-1.12739 -0.47079,-2.99566 -3.76624,-1.10366 -0.31385,-2.68032 -7.06172,-22.86157 -4.6264,-14.40939 2.37031,-0.33659 1.46947,0.39977 0,-2.52265 0.78463,-5.360629 2.51083,-4.572303 1.41234,-3.94164 -1.88312,-2.364985 0,-5.833628 0.78463,-0.945994 0.78463,-2.680315 -0.15692,-1.418991 -0.15693,-4.729969 1.72619,-4.729968 2.82468,-8.67161 2.04005,-4.099306 1.25541,0 1.25541,0.157666 0,1.103659 1.25541,2.207319 2.66775,0.630662 0.78464,-0.788328 0,-0.945994 3.92316,-2.837981 1.72619,-1.734322 1.41234,0.157666 5.80629,2.364984 1.88311,0.945994 8.78789,29.168141 5.80628,0 0.78464,1.891987 0.15692,4.729969 2.82468,2.207319 0.78463,0 0.15693,-0.472997 -0.47078,-1.10366 2.66775,-0.157665 z m -20.31881,29.402549 1.49081,-1.49783 1.33388,1.02483 0.54925,2.36499 -1.64774,0.86717 -1.7262,-2.75916 z m 6.51248,-5.75481 1.72619,1.81316 c 0,0 1.25542,0.0788 1.25542,-0.23651 0,-0.31533 0.23539,-1.97082 0.23539,-1.97082 l 0.8631,-0.78833 -0.78463,-1.73433 -1.96159,0.7095 -1.33388,2.20733 z",10,0,11,0,12,0,12,0,22,0,abcbcdcdefefaf,0,1 MI,Michigan,Mich.,26,9883640,96716.11,"m 461.05437,72.455356 1.40547,-1.581157 1.669,-0.614896 4.12859,-2.986638 1.75684,-0.439212 0.35137,0.351374 -3.9529,3.952901 -2.54743,1.493311 -1.58115,0.702741 -1.22979,-0.878424 z m 66.22032,24.688764 0.49691,1.92552 2.48456,0.12423 0.99382,-0.93171 c 0,0 -0.0621,-1.11804 -0.31057,-1.24227 -0.24846,-0.12423 -1.24227,-1.42862 -1.24227,-1.42862 l -1.67708,0.18634 -1.24228,0.12423 -0.24845,0.86959 0.74536,0.37269 z m 23.10439,48.45027 -2.48455,-6.33559 -1.73918,-6.95673 -1.86341,-2.48455 -1.98764,-1.3665 -1.24227,0.86959 -2.98146,1.3665 -1.49072,3.85105 -2.11187,2.85723 -0.86959,0.49691 -1.11804,-0.49691 c 0,0 -1.98764,-1.11805 -1.86341,-1.61496 0.12422,-0.49691 0.37268,-3.85104 0.37268,-3.85104 l 2.60877,-0.99382 0.62114,-2.60877 0.49691,-1.98764 1.86341,-1.24227 -0.24846,-7.7021 -1.24227,-1.73918 -0.99382,-0.62113 -0.62114,-1.61496 0.62114,-0.62114 1.24227,0.24846 0.12423,-1.24227 -1.86341,-1.73919 -0.99382,-1.98763 -1.98763,0 -3.47837,-1.11805 -4.22372,-2.60877 -2.11187,0 -0.49691,0.49691 -0.74536,-0.37268 -2.36032,-1.73919 -2.23609,1.3665 -2.23609,1.73919 0.24845,2.733 0.74537,0.24845 1.61495,0.37268 0.37268,0.62114 -1.98763,0.62114 -1.98764,0.24845 -1.11805,1.3665 -0.24845,1.61496 0.24845,1.24227 0.24846,4.22373 -2.733,1.61495 -0.49691,-0.12423 0,-3.22991 0.99382,-1.8634 0.49691,-1.86341 -0.62114,-0.62114 -1.49073,0.62114 -0.74536,3.22991 -2.11187,0.86959 -1.3665,1.49072 -0.12422,0.74537 0.49691,0.62113 -0.49691,1.98764 -1.73919,0.37268 0,0.86959 0.62114,1.86341 -0.86959,4.72064 -1.24227,3.10568 0.49691,3.60259 0.37268,0.86959 -0.62114,1.86341 -0.24845,0.62114 -0.24846,2.11186 2.733,4.59641 2.23609,4.9691 1.11805,3.72681 -0.62114,3.6026 -0.74536,4.59641 -1.86341,3.97527 -0.24845,2.11186 -2.36917,2.39048 -0.57109,0.59068 3.56217,-0.12452 16.89494,-1.73919 4.72064,-0.49691 0.24846,0.93171 5.96292,-0.93171 7.82633,-1.24227 4.00812,-0.35419 -1.0275,-0.88749 0.12423,-1.11804 1.61495,-2.85723 1.53732,-1.33544 -0.17082,-3.88211 1.2272,-1.22719 0.83808,-0.26353 0.17081,-2.733 1.18016,-2.32926 0.80748,0.46585 0.12423,0.49691 0.62113,0.12422 1.49073,-0.74536 -0.24845,-7.32941 z m -101.05271,-50.38684 1.42242,-0.7948 2.11186,-0.62114 2.733,-1.73918 0,-0.745366 0.49691,-0.496909 4.59641,-0.745364 1.86341,-1.490728 3.35414,-1.614954 0.12423,-0.993819 1.49072,-2.236091 1.3665,-0.621136 0.99382,-1.366501 1.73918,-1.739182 3.35414,-1.863409 3.60259,-0.372682 0.86959,0.869591 -0.24845,0.745364 -2.85723,0.745364 -1.11804,2.360318 -1.73919,0.621137 -0.37268,1.863409 -1.86341,2.484546 -0.24845,1.987636 0.62113,0.372682 0.74537,-0.869591 2.733,-2.236091 0.99382,0.993818 1.73918,0 2.48454,0.745364 1.11805,0.869591 1.11805,2.360319 2.11186,2.111864 2.98145,-0.12423 1.11805,-0.74536 1.24227,0.99382 1.24228,0.37268 0.99381,-0.62114 0.8696,0 1.24227,-0.74536 3.10568,-2.733002 2.60877,-0.869591 5.09332,-0.248455 3.47837,-1.490727 1.98763,-0.993818 1.11805,0.124227 0,4.347955 0.37268,0.248455 2.23609,0.621136 1.49073,-0.372682 4.72064,-1.242273 0.86959,-0.869591 1.11804,0.372682 0,5.341774 2.48455,2.36032 0.99382,0.49691 0.99382,0.74536 -0.99382,0.24846 -0.62114,-0.24846 -2.85723,-0.37268 -1.61495,0.49691 -1.73918,-0.12423 -2.48455,1.11805 -1.3665,0 -4.47218,-0.99382 -3.97528,0.12423 -1.49072,1.98763 -5.34178,0.49691 -1.86341,0.62114 -0.86959,2.36032 -0.99382,0.86959 -0.37268,-0.12423 -1.11804,-1.24227 -3.47837,1.86341 -0.49691,0 -0.86959,-1.24228 -0.62113,0.12423 -1.49073,3.35414 -0.74536,3.10568 -2.88052,6.25173 -1.25307,-0.88199 -1.05411,-1.0541 -1.22979,-7.90579 -2.81094,-0.87841 -1.0541,-1.75684 -9.66263,-2.10822 -1.93252,-0.87842 -6.32463,-1.75684 -6.32463,-0.87842 -3.29408,-4.12858 z",1,525.00439,153.34297,middle,,"m 562.40632,96.663935 1.77542,-2.006758 2.10832,-0.780407 5.21532,-3.790554 2.21927,-0.557435 0.44387,0.445954 -4.99339,5.016905 -3.21796,1.895267 -1.99735,0.891898 -1.5535,-1.11487 z m 83.65092,31.334245 0.62771,2.44383 3.13854,0.15766 1.25542,-1.18249 c 0,0 -0.0784,-1.419 -0.39232,-1.57666 -0.31385,-0.15767 -1.56926,-1.81316 -1.56926,-1.81316 l -2.11852,0.23649 -1.56927,0.15767 -0.31385,1.10367 0.94155,0.47299 z m 29.18595,61.49167 -3.13853,-8.04095 -2.19697,-8.82927 -2.3539,-3.15332 -2.51082,-1.73432 -1.56927,1.10366 -3.76623,1.73432 -1.88312,4.88764 -2.66776,3.62631 -1.09848,0.63066 -1.41234,-0.63066 c 0,0 -2.51083,-1.419 -2.3539,-2.04966 0.15693,-0.63066 0.47078,-4.88763 0.47078,-4.88763 l 3.29546,-1.26133 0.78463,-3.31097 0.62771,-2.52265 2.3539,-1.57666 -0.31386,-9.77527 -1.56926,-2.20732 -1.25541,-0.78833 -0.78464,-2.04965 0.78464,-0.78833 1.56926,0.31533 0.15693,-1.57665 -2.3539,-2.20732 -1.25541,-2.52265 -2.51083,0 -4.39394,-1.41899 -5.33551,-3.31098 -2.66775,0 -0.6277,0.63066 -0.94156,-0.47299 -2.98161,-2.20732 -2.82468,1.73432 -2.82467,2.20732 0.31385,3.46864 0.94156,0.31533 2.04004,0.473 0.47078,0.78833 -2.51082,0.78833 -2.51083,0.31533 -1.41234,1.73432 -0.31385,2.04965 0.31385,1.57666 0.31386,5.36063 -3.45239,2.04965 -0.6277,-0.15766 0,-4.09931 1.25541,-2.36498 0.62771,-2.36499 -0.78464,-0.78833 -1.88312,0.78833 -0.94155,4.09931 -2.66776,1.10366 -1.72619,1.89198 -0.15693,0.946 0.62771,0.78833 -0.62771,2.52265 -2.19697,0.47299 0,1.10366 0.78464,2.36499 -1.09849,5.99129 -1.56927,3.94164 0.62771,4.5723 0.47078,1.10366 -0.78463,2.36499 -0.31386,0.78833 -0.31385,2.68031 3.45239,5.83363 2.82467,6.30663 1.41234,4.72996 -0.78463,4.57231 -0.94156,5.83363 -2.3539,5.0453 -0.31385,2.68031 -2.99278,3.03392 -0.72141,0.74968 4.49981,-0.15804 21.34205,-2.20733 5.96321,-0.63066 0.31385,1.1825 7.5325,-1.1825 9.88638,-1.57665 5.06315,-0.44953 -1.29797,-1.12637 0.15693,-1.41899 2.04004,-3.62631 1.94198,-1.69491 -0.21578,-4.92705 1.55022,-1.55752 1.05868,-0.33447 0.21577,-3.46864 1.4908,-2.95622 1.02003,0.59123 0.15693,0.63067 0.78463,0.15766 1.88312,-0.94599 -0.31386,-9.30227 z m -127.65192,-63.94949 1.79682,-1.00875 2.66775,-0.78833 3.45239,-2.20732 0,-0.94599 0.6277,-0.63066 5.80629,-0.946 2.3539,-1.89198 4.23701,-2.04966 0.15693,-1.26132 1.88312,-2.83798 1.72619,-0.78833 1.25541,-1.73432 2.19697,-2.20732 4.23702,-2.36499 4.55087,-0.47299 1.09849,1.10366 -0.31386,0.94599 -3.60931,0.94599 -1.41234,2.99565 -2.19697,0.78833 -0.47078,2.36498 -2.3539,3.15331 -0.31385,2.52265 0.78463,0.473 0.94156,-1.10366 3.45239,-2.83798 1.25541,1.26133 2.19697,0 3.13853,0.94599 1.41234,1.10366 1.41234,2.99565 2.66775,2.68031 3.76624,-0.15766 1.41234,-0.946 1.56927,1.26133 1.56926,0.47299 1.25541,-0.78832 1.09849,0 1.56927,-0.946 3.92316,-3.46864 3.29546,-1.10366 6.43399,-0.31533 4.39394,-1.89199 2.51082,-1.26132 1.41234,0.15766 0,5.5183 0.47078,0.31533 2.82468,0.78833 1.88312,-0.473 5.96321,-1.57666 1.09849,-1.10366 1.41233,0.473 0,6.77962 3.13854,2.99565 1.25541,0.63066 1.25541,0.946 -1.25541,0.31533 -0.78463,-0.31533 -3.60932,-0.473 -2.04004,0.63066 -2.19697,-0.15766 -3.13853,1.41899 -1.7262,0 -5.64935,-1.26133 -5.02165,0.15767 -1.88312,2.52265 -6.74784,0.63066 -2.3539,0.78833 -1.09849,2.99565 -1.25541,1.10365 -0.47078,-0.15766 -1.41234,-1.57666 -4.39394,2.36499 -0.62771,0 -1.09848,-1.57666 -0.78464,0.15767 -1.88312,4.25697 -0.94156,3.94164 -3.63872,7.93451 -1.58291,-1.11939 -1.33157,-1.33784 -1.5535,-10.03379 -3.55083,-1.11486 -1.33158,-2.22973 -12.20603,-2.67569 -2.4412,-1.11486 -7.98941,-2.22973 -7.9894,-1.11487 -4.16115,-5.23986 z",6,2,7,2,8,2,7,2,12,5,abcbcbcdedefafef,0.5,1.5 MN,Minnesota,Minn.,27,5303925,86938.87,"m 376.72493,108.12033 -0.35137,-6.50031 -1.40547,-5.62189 -1.40547,-10.365355 -0.35137,-7.554419 -1.40547,-2.635264 -1.22979,-3.865047 0,-7.905785 0.52705,-2.986631 -1.39929,-4.18931 23.15512,0.02711 0.24846,-6.335592 0.49691,-0.124227 1.73918,0.372682 1.49073,0.621137 0.62113,4.223727 1.11805,4.720637 1.24227,1.242273 3.72682,0 0.24845,1.118046 4.84487,0.248455 0,1.614954 3.72682,0 0.24845,-0.993818 0.86959,-0.869591 1.73918,-0.496909 0.99382,0.745364 2.23609,0 2.98146,1.987636 4.0995,1.86341 1.86341,0.372681 0.37268,-0.745363 1.11805,-0.372682 0.37268,2.236091 1.98763,0.993818 0.37269,-0.372682 0.99381,0.124228 0,1.614955 1.98764,0.745363 2.36032,0 1.24227,-0.621136 2.48455,-2.484546 1.98764,-0.372682 0.62113,1.3665 0.37268,0.993819 0.74537,0 0.74536,-0.621137 6.8325,-0.248454 1.3665,2.360318 0.49691,0 0.54837,-0.833209 3.41183,-0.284836 -0.47036,1.75164 -3.0267,1.411731 -7.10487,3.120756 -3.66913,1.542192 -2.36032,1.987637 -1.86341,2.733 -1.73918,2.981455 -1.3665,0.621136 -3.47837,3.851046 -0.99382,0.124228 -2.60877,2.36032 0.52867,0.41742 -2.16428,2.08019 -0.17568,2.1082 0,6.50032 -0.87843,1.22979 -4.04073,2.98662 -1.75684,4.56779 0.35137,0.17568 1.93252,1.58116 0.52705,2.45958 -1.40547,2.45957 0,2.98663 0.35137,5.09484 2.28389,2.2839 2.63527,0 1.40547,2.45957 2.63526,0.35137 2.98663,4.3921 5.4462,3.16232 1.58116,2.1082 0.70274,5.79758 -3.16231,0 -13.87905,0.52705 -38.12344,0.52705 -8.87204,0 0.4392,-5.27052 -0.17568,-23.36598 -0.35137,-2.28389 -3.16231,-2.63527 -0.87843,-1.40547 0,-1.22979 1.58116,-1.22978 1.05411,-1.05411 0.17568,-2.45958 z",3,400.15503,102.217,middle,,"m 455.87958,141.92887 -0.44386,-8.25 -1.77542,-7.13513 -1.77543,-13.15541 -0.44385,-9.58785 -1.77543,-3.3446 -1.55349,-4.905402 0,-10.03379 0.66578,-3.790544 -1.76761,-5.316949 29.25004,0.03441 0.31386,-8.040947 0.6277,-0.157666 2.19697,0.472997 1.88312,0.788328 0.78464,5.360632 1.41234,5.991293 1.56926,1.576657 4.7078,0 0.31385,1.41899 6.12014,0.315331 0,2.049654 4.70779,0 0.31386,-1.261325 1.09848,-1.10366 2.19697,-0.630662 1.25542,0.945993 2.82468,0 3.76623,2.52265 5.17858,2.364985 2.3539,0.472997 0.47078,-0.945994 1.41234,-0.472997 0.47078,2.837981 2.51082,1.261325 0.47078,-0.472997 1.25541,0.157666 0,2.049653 2.51083,0.945994 2.9816,0 1.56927,-0.788328 3.13853,-3.153313 2.51083,-0.472997 0.78463,1.734322 0.47078,1.261325 0.94156,0 0.94156,-0.788328 8.63096,-0.315331 1.72619,2.995647 0.62771,0 0.69271,-1.057485 4.30989,-0.361506 -0.59417,2.223131 -3.82338,1.791727 -8.97504,3.960774 -4.63492,1.9573 -2.9816,2.52265 -2.3539,3.46865 -2.19697,3.78397 -1.7262,0.78833 -4.39394,4.88763 -1.25541,0.15767 -3.29546,2.99565 0.66783,0.52977 -2.73397,2.64012 -0.22192,2.67567 0,8.25001 -1.10965,1.56081 -5.10434,3.79053 -2.21927,5.79731 0.44385,0.22297 2.44121,2.00676 0.66578,3.12162 -1.77543,3.12162 0,3.79055 0.44386,6.46621 2.88506,2.89866 3.32893,0 1.77542,3.12162 3.32891,0.44594 3.77278,5.57433 6.87976,4.01352 1.99735,2.67567 0.88772,7.35812 -3.99471,0 -17.5323,0.66891 -48.15835,0.66892 -11.20735,0 0.55481,-6.68919 -0.22192,-29.65542 -0.44386,-2.89864 -3.9947,-3.3446 -1.10964,-1.78379 0,-1.56081 1.99735,-1.56081 1.33157,-1.33784 0.22193,-3.12163 z",4,2,4,2,5,2,4,2,9,4,ababcdcdedefaf,0.25,0.5 MO,Missouri,Mo.,29,5988927,69704.31,"m 441.72804,201.23291 -2.45958,-2.45959 -0.87842,-1.75684 -5.97326,0.52705 -7.55441,0.35137 -19.50094,0.70274 -10.36536,0.17568 -6.06107,0.0878 -1.75687,0.0878 0.96627,1.93252 -0.17569,1.75684 1.93253,2.98663 2.37172,3.16231 2.37175,2.10821 1.75684,0.17568 1.0541,0.70274 0,2.28389 -1.40547,1.2298 -0.35137,1.75684 1.58115,2.63526 1.93254,2.28389 1.93252,1.40547 1.0541,8.95989 -0.52705,27.1432 0.17568,3.60151 0.35137,5.27052 17.91978,-0.35136 17.91977,-0.52705 15.98726,-0.70274 8.43283,-0.35137 1.40547,2.2839 -0.35136,1.75684 -2.45958,2.10821 -0.52705,2.28389 4.74347,0.35137 3.86504,-0.52706 1.58116,-4.91915 -0.1098,-4.32622 2.21802,-1.11999 1.0541,-1.22979 1.58115,-0.87841 0.17569,-2.45958 0.70274,-1.40548 -1.05411,-1.86664 -2.28389,0.28549 -1.40547,-1.58116 -1.2298,-3.16232 0.70274,-2.28389 -1.58116,-2.45957 -1.58115,-3.86505 -3.51369,-0.52705 -4.91915,-4.04074 -1.75684,-2.98662 0.52706,-2.45959 1.75684,-4.56778 0.52705,-2.81094 -2.10821,-1.05411 -4.91915,-0.35137 -0.70275,-1.0541 0.17569,-3.338 -4.21642,-2.81095 -5.62189,-5.79757 -1.75684,-5.62189 -0.35137,-2.81094 0.70274,-1.93252 z",2,431.64618,239.59296,middle,,"m 537.99288,260.10462 -3.10698,-3.12164 -1.10965,-2.22973 -7.54554,0.66892 -9.5429,0.44594 -24.634,0.8919 -13.09374,0.22297 -7.65648,0.11149 -2.2193,0.11149 1.2206,2.4527 -0.22193,2.22973 2.44121,3.79054 2.99601,4.01352 2.99604,2.67567 2.21928,0.22297 1.33156,0.8919 0,2.89865 -1.77542,1.56081 -0.44386,2.22973 1.99735,3.3446 2.44122,2.89865 2.4412,1.78378 1.33156,11.37163 -0.66578,34.44934 0.22193,4.57095 0.44385,6.68919 22.63665,-0.44595 22.63664,-0.66891 20.19544,-0.8919 10.65254,-0.44595 1.77542,2.89866 -0.44385,2.22973 -3.107,2.67567 -0.66578,2.89865 5.99206,0.44595 4.8824,-0.66892 1.99736,-6.24325 -0.13871,-5.49071 2.80185,-1.42145 1.33156,-1.56081 1.99735,-1.11486 0.22193,-3.12163 0.88771,-1.78379 -1.33157,-2.36909 -2.88506,0.36233 -1.77542,-2.00675 -1.5535,-4.01352 0.88771,-2.89865 -1.99735,-3.12161 -1.99734,-4.90542 -4.43857,-0.66891 -6.21398,-5.12839 -2.21928,-3.79053 0.66579,-3.12163 2.21928,-5.7973 0.66578,-3.56757 -2.66313,-1.33784 -6.21398,-0.44594 -0.88772,-1.33784 0.22193,-4.23649 -5.32626,-3.56757 -7.1017,-7.35811 -2.21928,-7.13514 -0.44385,-3.56757 0.8877,-2.45269 z",4,4,5,4,6,4,5,4,10,9,abcbcdcdefefaf,0,1 MS,Mississippi,Miss.,28,2967297,48430.19,"m 494.74863,368.23823 -0.89297,0.96528 -3.97527,0 -1.11805,-0.62113 -1.61495,-0.24846 -5.21755,1.49073 -1.3665,-0.62114 -1.98764,3.22991 -0.84724,0.59787 -0.8636,-1.91189 -0.87843,-2.98663 -2.63525,-2.45957 0.87841,-5.79758 -0.52705,-0.70273 -1.40547,0.17568 -6.32463,0.52705 -18.62251,0.52706 -0.35137,-1.22979 0.52705,-6.14895 2.63527,-4.74347 4.04073,-7.02736 -0.70273,-1.58116 0.87841,0 0.52706,-2.45957 -1.75685,-1.40547 0.17569,-1.40548 -1.58115,-3.51368 -0.21961,-4.10661 1.05409,-2.04233 -0.30744,-3.338 -1.0541,-2.2839 1.0541,-1.0541 -1.0541,-1.58115 0.35137,-1.40548 0.70273,-4.74347 2.28389,-2.1082 -0.52704,-1.58116 2.81094,-4.04074 2.10821,-0.70273 0,-1.93253 -0.52705,-1.0541 2.10821,-4.04073 2.1082,-0.87843 0.0826,-2.62199 6.66661,-0.0595 18.5099,-1.49073 4.21752,-0.17568 0.006,4.89632 0.12423,12.79543 -0.62114,23.85167 -0.12423,10.80779 2.11188,14.41039 1.14065,11.83045 z",2,472.15259,336.51953,middle,,"m 604.96963,472.06286 -1.12802,1.22511 -5.02165,0 -1.41234,-0.78833 -2.04005,-0.31533 -6.59091,1.89199 -1.72619,-0.78833 -2.51083,4.09931 -1.07025,0.75879 -1.09093,-2.42651 -1.10964,-3.79054 -3.32891,-3.12162 1.10963,-7.35811 -0.66578,-0.89189 -1.77542,0.22297 -7.98941,0.66892 -23.52435,0.66892 -0.44385,-1.56081 0.66578,-7.80406 3.32892,-6.02028 5.10434,-8.91892 -0.88771,-2.00675 1.10963,0 0.66579,-3.12162 -2.21928,-1.78379 0.22193,-1.78378 -1.99735,-4.45946 -0.27741,-5.212 1.33156,-2.59206 -0.38837,-4.23649 -1.33157,-2.89866 1.33157,-1.33783 -1.33157,-2.00676 0.44386,-1.78378 0.88771,-6.02028 2.88506,-2.67567 -0.66578,-2.00676 3.55085,-5.12838 2.66313,-0.89189 0,-2.4527 -0.66578,-1.33785 2.66313,-5.12837 2.66313,-1.11487 0.10429,-3.32776 8.42141,-0.0755 23.3821,-1.89199 5.32766,-0.22297 0.008,6.21427 0.15693,16.23959 -0.78463,30.27184 -0.15693,13.71693 2.66776,18.28924 1.4409,15.01485 z",5,6,6,6,7,6,6,6,12,12,abcbcdcdefefaf,0,1 MT,Montana,Mont.,30,989415,147042.4,"m 288.81012,103.72823 0.62113,-8.93857 1.73553,-19.170877 1.0541,-11.595157 0.96879,-10.935492 -24.55809,-2.527622 -22.48514,-2.733 -22.48514,-3.105682 -24.84546,-4.099501 -14.16191,-2.608773 -25.14634,-5.327431 -3.44189,16.404419 2.63526,5.79757 -1.0541,3.513681 1.40547,3.51368 2.45958,1.054107 2.81094,7.905785 2.81095,2.81094 0.35136,0.878424 2.63527,0.878424 0.35137,1.581149 -5.44621,13.52768 0,1.932526 1.93253,2.45957 0.70273,0 3.68936,-2.28389 0.52706,-0.878423 1.22979,0.527053 -0.17569,4.04073 2.10821,9.66263 2.28389,1.93252 0.70274,0.52705 1.40547,1.75684 -0.35137,2.63527 0.52705,2.63525 0.87843,0.70274 1.75684,-1.75684 2.1082,0 2.45959,1.2298 1.93252,-0.70275 3.16231,0 2.81094,1.22979 2.10822,-0.35136 0.35136,-2.2839 2.28389,-0.52705 1.05411,1.05411 0.35137,2.45957 1.98398,1.91213 1.17833,-8.76381 15.28451,2.28389 21.78483,3.16232 12.47357,1.58115 24.65788,2.53236 8.81528,0.92453 1.30166,-12.22497 0.46494,-4.23259 z",4,229.21559,82.773193,middle,,"m 344.82371,136.35455 0.78463,-11.34458 2.19235,-24.33111 1.33157,-14.716228 1.2238,-13.879005 -31.02231,-3.207983 -28.40371,-3.468644 -28.4037,-3.941641 -31.38532,-5.202965 -17.88963,-3.310978 -31.7654,-6.761419 -4.34786,20.820006 3.32892,7.358106 -1.33157,4.45946 1.77542,4.45946 3.107,1.337842 3.55084,10.03379 3.55085,3.567561 0.44385,1.11487 3.32892,1.114868 0.44386,2.00675 -6.87976,17.16893 0,2.45271 2.4412,3.12161 0.88771,0 4.66048,-2.89864 0.66579,-1.11487 1.5535,0.66892 -0.22194,5.12838 2.66314,12.26352 2.88506,2.4527 0.88771,0.66892 1.77542,2.22973 -0.44385,3.3446 0.66578,3.34459 1.10964,0.8919 2.21928,-2.22973 2.66313,0 3.107,1.56081 2.4412,-0.8919 3.99471,0 3.55084,1.56082 2.66314,-0.44595 0.44385,-2.89865 2.88506,-0.66892 1.33157,1.33784 0.44385,3.12162 2.50621,2.42682 1.4885,-11.12277 19.30772,2.89865 27.51905,4.01351 15.75689,2.00676 31.14836,3.21399 11.13565,1.17338 1.64427,-15.51556 0.58733,-5.37188 z",2,2,2,2,3,2,2,2,5,3,ababcdcdedefaf,0.25,0.5 NC,North Carolina,N.C.,37,9535483,53818.51,"m 653.54019,238.75683 1.31404,3.61062 2.733,4.96909 1.86341,1.86341 0.49691,1.73918 -1.86341,0.12423 0.62113,0.49691 -0.24845,3.22991 -1.98764,0.99382 -0.49691,1.61495 -0.99381,2.23609 -2.85723,1.24228 -1.86341,-0.24846 -1.11805,-0.12423 -1.24227,-0.99381 0.24845,0.99381 0,0.74537 1.49073,0 0.62114,0.99382 -1.49073,4.84486 3.22991,0 0.49691,1.24227 1.73918,-1.73918 0.99382,-0.37268 -1.49073,2.733 -2.36032,3.72682 -0.99381,0 -0.8696,-0.37268 -2.11186,0.49691 -3.97527,1.8634 -4.96909,4.09951 -2.60878,3.60259 -1.49073,4.96909 -0.37268,1.86341 -3.60259,0.37268 -4.53004,1.70636 -7.64328,-6.30319 -9.68974,-5.83869 -2.23609,-0.62115 -9.68975,1.11806 -3.35414,0.37268 -1.24228,-2.48455 -1.73918,-1.49073 -12.67121,0.37268 -5.59023,0.62114 -6.95674,3.47837 -4.72064,1.98763 -1.24228,0.24846 -4.47219,0.74536 -5.34178,0.62114 -5.21755,0.37269 0.24845,-3.72683 1.3665,-1.11804 2.11187,-0.49691 0.49691,-2.85724 3.22992,-2.11186 2.98146,-1.11806 3.22991,-2.733 3.35414,-1.61495 0.49691,-2.36033 2.98146,-2.98145 0.49691,-0.12423 c 0,0 0,0.86959 0.62114,0.86959 0.62113,0 1.49073,0.24846 1.49073,0.24846 l 1.73919,-2.73301 1.61495,-0.49691 1.73918,0.24845 1.24228,-2.733 2.23609,-1.98764 0.37269,-1.61496 0,-3.04357 3.47837,0.55903 5.4837,-0.99383 12.1566,-1.49073 13.16811,-1.98763 15.83197,-2.89985 14.72799,-2.93884 8.82015,-2.2361 3.77828,-1.24981 z m 2.99345,25.34935 1.98764,-1.92554 2.42244,-1.98764 1.18016,-0.49691 0.12423,-1.55285 -0.49691,-4.72065 -1.11805,-1.8013 -0.49691,-1.42862 0.55902,-0.18634 2.11188,4.22374 0.31057,3.41626 -0.12423,2.60878 -2.60878,1.18017 -2.17399,1.86341 -0.86959,0.93171 -0.80748,-0.12422 z",2,610.9856,270.01581,middle,,"m 805.55852,307.72887 1.65991,4.5825 3.45239,6.30662 2.3539,2.36499 0.6277,2.20732 -2.3539,0.15766 0.78464,0.63067 -0.31386,4.0993 -2.51082,1.26133 -0.62771,2.04965 -1.25541,2.83798 -3.60931,1.57666 -2.3539,-0.31533 -1.41234,-0.15767 -1.56926,-1.26132 0.31385,1.26132 0,0.94599 1.88312,0 0.78463,1.26133 -1.88312,6.14896 4.08009,0 0.62771,1.57665 2.19697,-2.20731 1.25541,-0.473 -1.88312,3.46864 -2.9816,4.72997 -1.25541,0 -1.09849,-0.473 -2.66775,0.63067 -5.02165,2.36498 -6.27706,5.20297 -3.29546,4.5723 -1.88312,6.30663 -0.47078,2.36498 -4.55087,0.473 -5.72245,2.16566 -9.65515,-7.99983 -12.24029,-7.41029 -2.82468,-0.78834 -12.24029,1.419 -4.23703,0.473 -1.56926,-3.15332 -2.19697,-1.89199 -16.00654,0.473 -7.06171,0.78832 -8.7879,4.41465 -5.96322,2.52265 -1.56926,0.31533 -5.64937,0.946 -6.74785,0.78832 -6.59093,0.47301 0.31386,-4.72998 1.72619,-1.41899 2.66776,-0.63066 0.62771,-3.62632 4.0801,-2.68032 3.76624,-1.419 4.0801,-3.46864 4.23701,-2.04965 0.62771,-2.99566 3.76625,-3.78398 0.6277,-0.15766 c 0,0 0,1.10366 0.78464,1.10366 0.78463,0 1.88313,0.31533 1.88313,0.31533 l 2.19697,-3.46865 2.04004,-0.63067 2.19697,0.31533 1.56928,-3.46864 2.82468,-2.52266 0.47078,-2.04965 0,-3.86282 4.39395,0.7095 6.92713,-1.26133 15.35647,-1.89199 16.63425,-2.52265 19.99927,-3.6804 18.60471,-3.72989 11.14181,-2.83799 4.77281,-1.58623 z m 3.78138,32.17265 2.51084,-2.44383 3.06007,-2.52266 1.49081,-0.63066 0.15692,-1.97083 -0.6277,-5.99131 -1.41234,-2.28616 -0.62772,-1.81316 0.70618,-0.2365 2.66776,5.36065 0.39232,4.33582 -0.15693,3.31099 -3.29547,1.49783 -2.74623,2.36499 -1.09848,1.1825 -1.02003,-0.15767 z",6,5,8,5,8,5,8,5,16,11,ababcbcdedefef,0.75,0.5 ND,North Dakota,N.D.,38,672591,70699.79,"m 376.90061,108.12033 -0.52705,-6.50031 -1.40547,-5.62189 -1.40547,-10.365355 -0.35137,-7.554419 -1.40547,-2.635264 -1.22979,-3.865047 0,-7.905785 0.52705,-2.986631 -1.50221,-4.225692 -22.58183,-0.433424 -14.28614,-0.496909 -20.37327,-0.993818 -19.16992,-1.447652 -0.96879,10.935492 -1.0541,11.595157 -1.73553,19.170877 -0.49691,9.33166 43.16683,2.76923 44.79944,1.22978 z",1,332.07056,84.718712,middle,,"m 456.1015,141.92887 -0.66578,-8.25 -1.77542,-7.13513 -1.77543,-13.15541 -0.44385,-9.58785 -1.77543,-3.3446 -1.55349,-4.905402 0,-10.03379 0.66578,-3.790544 -1.89762,-5.363124 -28.52585,-0.550089 -18.04655,-0.630662 -25.73596,-1.261325 -24.21584,-1.837317 -1.2238,13.879005 -1.33157,14.716228 -2.19235,24.33111 -0.62772,11.84347 54.52927,3.51463 56.59161,1.5608 z",3,2,3,2,4,2,3,2,7,4,ababcdcdedefaf,0.25,0.5 NE,Nebraska,Neb.,31,1826341,77353.73,"m 387.09029,198.94901 1.05411,1.93252 -0.17569,1.75684 1.93253,2.98663 2.45957,3.16231 -4.74347,0 -33.90725,-0.35137 -31.09586,-1.0541 -16.77783,-0.61489 1.31763,-17.1292 -25.64987,-2.10821 3.338,-33.81918 11.94651,0.79057 15.4602,0.87842 13.70336,0.87842 18.27114,0.87842 8.25716,-0.35137 1.58115,1.75684 3.68937,2.2839 0.87842,0.70273 3.338,-1.0541 2.98663,-0.35137 2.10821,-0.17568 1.40547,1.05411 3.86505,1.22979 2.28389,1.22978 0.35137,1.22979 0.70273,1.58116 1.40548,0 1.22979,-0.0879 0.87841,4.12858 2.10822,5.79757 0.70273,3.68937 1.75684,2.81095 0.52705,4.04073 1.22979,3.16231 0.17569,5.09485 1.4889,4.22707",4,336.19342,185.5667,middle,,"m 468.97332,257.20596 1.33157,2.4527 -0.22193,2.22973 2.44121,3.79054 3.10698,4.01352 -5.99205,0 -42.83237,-0.44596 -39.28094,-1.33783 -21.19412,-0.78039 1.66446,-21.73989 -32.40146,-2.67567 4.21663,-42.92232 15.09109,1.00338 19.52965,1.11486 17.31038,1.11487 23.0805,1.11486 10.43061,-0.44594 1.99735,2.22973 4.66048,2.89865 1.10964,0.89189 4.21663,-1.33784 3.77278,-0.44595 2.66313,-0.22297 1.77543,1.33784 4.88241,1.56082 2.88505,1.5608 0.44387,1.56082 0.8877,2.00675 1.77543,0 1.5535,-0.11149 1.10963,5.23987 2.66314,7.35812 0.88771,4.68243 2.21928,3.56757 0.66578,5.12838 1.5535,4.01351 0.22192,6.46623 1.88082,5.36488",3,4,4,4,5,4,4,4,8,7,ababcbcdedefef,0.75,0.5 NH,New Hampshire,N.H.,33,1316470,9349.94,"m 691.39372,119.19196 0.23179,-1.17603 0.83777,-2.52897 -1.95422,-0.70196 -0.37269,-2.36032 -2.98146,-0.86959 -0.24845,-2.11188 -5.59025,-18.012992 -3.53594,-11.175495 -0.68936,-0.004 -0.49691,1.242273 -0.49691,-0.372682 -0.74536,-0.745363 -1.11804,1.490727 -0.73484,4.215658 0.23948,4.354952 1.49073,2.111872 0,3.10569 -2.85723,3.10569 -1.98764,0.8696 0,0.86959 0.86959,1.3665 0,6.58406 -0.62114,7.08097 -0.12422,3.72683 0.74536,0.99382 -0.12423,3.47837 -0.37268,1.36651 1.11805,1.55283 13.29235,-3.1678 1.73919,-0.49691 1.61495,-2.48454 2.87231,-1.30752 z",4,662.2525,67.392227,end,"m 663.31514,67.409215 16.19754,41.228165","m 853.37589,155.98066 0.29281,-1.49258 1.05829,-3.2097 -2.46861,-0.8909 -0.47079,-2.99566 -3.76624,-1.10366 -0.31385,-2.68032 -7.06172,-22.86157 -4.46668,-14.18361 -0.87081,-0.005 -0.62771,1.57665 -0.6277,-0.47299 -0.94156,-0.946 -1.41234,1.89199 -0.92826,5.35039 0.30252,5.52718 1.88312,2.68032 0,3.94165 -3.60932,3.94164 -2.51083,1.10367 0,1.10366 1.09849,1.73432 0,8.3563 -0.78463,8.98696 -0.15693,4.72998 0.94156,1.26134 -0.15693,4.41463 -0.47078,1.73434 1.41234,1.97081 16.79118,-4.02048 2.19699,-0.63066 2.04004,-3.15331 3.62835,-1.65946 z",10,1,10,1,11,1,11,1,20,1,abcbcbcdefedefaf,0,0.75 NJ,New Jersey,N.J.,34,8791894,8721.3,"m 650.50778,155.65587 -1.61496,1.86342 0,2.36032 -1.49073,2.36032 -0.12423,1.24228 0.99382,0.99382 -0.12422,1.86342 -1.73919,0.86959 0.62113,2.11186 0.12423,0.8696 2.11187,0.24846 0.74537,1.98763 2.733,1.86342 1.86341,1.24227 0,0.62114 -2.48454,2.36033 -1.24228,1.73918 -1.11805,2.11187 -1.73918,0.99382 -0.93171,0.55903 -0.18634,0.9317 -0.46816,2.00315 0.83934,1.72453 2.48455,2.23609 3.72682,1.73919 3.10568,0.4969 0.12423,1.11805 -0.62114,0.74536 0.24846,2.11187 0.62113,0 1.61496,-1.86341 0.62113,-3.72682 2.11187,-3.10568 2.36032,-4.96909 0.86959,-4.22373 -0.49691,-0.86959 -0.12423,-7.20519 -1.24227,-2.60877 -0.86959,0.62114 -2.11187,0.24845 -0.37268,-0.37268 0.86959,-0.74536 1.61496,-1.49073 0.0485,-0.84055 -0.29538,-2.63872 0.37268,-2.11187 -0.12423,-1.61496 -1.98763,-0.8696 -3.47838,-0.74536 -2.98146,-0.86959 -2.85723,-1.36651 z",4,700.09253,192.66393,start,"m 698.06931,188.53057 -39.47949,-12.4266","m 801.7279,202.25958 -2.04004,2.365 0,2.99565 -1.88313,2.99565 -0.15693,1.57667 1.25542,1.26132 -0.15692,2.365 -2.19698,1.10366 0.78463,2.68031 0.15693,1.10367 2.66776,0.31533 0.94156,2.52265 3.45239,2.365 2.3539,1.57665 0,0.78833 -3.13853,2.99566 -1.56928,2.20732 -1.41234,2.68032 -2.19697,1.26133 -1.17695,0.7095 -0.2354,1.18249 -0.59139,2.54233 1.06028,2.18873 3.13853,2.83798 4.7078,2.20732 3.92317,0.63067 0.15692,1.41899 -0.78463,0.94599 0.31385,2.68032 0.78464,0 2.04004,-2.36499 0.78463,-4.72997 2.66776,-3.94164 2.9816,-6.30662 1.09849,-5.36063 -0.62771,-1.10366 -0.15693,-9.14461 -1.56926,-3.31098 -1.09849,0.78833 -2.66775,0.31533 -0.47078,-0.473 1.09849,-0.94599 2.04004,-1.89199 0.0613,-1.0668 -0.37314,-3.34898 0.47078,-2.68033 -0.15693,-2.04965 -2.51083,-1.10367 -4.39395,-0.946 -3.76625,-1.10366 -3.60932,-1.73433 z",8,3,9,3,10,3,9,3,18,6,abababcdcdefedef,1,0 NM,New Mexico,N.M.,35,2059179,121589.48,"m 232.23297,340.75546 -0.62312,-3.71874 6.149,0.52707 22.31181,2.10819 22.31188,1.22979 1.75684,-18.27114 2.98661,-42.69102 1.22981,-14.4063 1.05411,0.0219 -0.011,-9.00381 -25.36324,-1.84662 -28.3851,-3.40194 -26.48437,-3.16232 -3.22755,23.63575 -5.35212,40.88294 -2.88372,20.68808 -1.57484,10.22751 11.88068,1.52855 0.99382,-7.70209 12.79541,1.98764 10.43508,1.3665 z",3,245.47946,301.72498,middle,,"m 273.35425,437.18254 -0.78715,-4.71971 7.76755,0.66893 28.18477,2.67566 28.18484,1.56081 2.21928,-23.1892 3.77274,-54.18218 1.55352,-18.28406 1.33157,0.0279 -0.0139,-11.42737 -32.03939,-2.34367 -35.85666,-4.31765 -33.45562,-4.01351 -4.07711,29.9978 -6.76091,51.88741 -3.64278,26.25671 -1.98938,12.98045 15.00794,1.94 1.25541,-9.77527 16.16344,2.52265 13.18181,1.73432 z",2,5,3,6,4,5,3,6,7,12,ababcdcdedefaf,0.25,0.5 NV,Nevada,Nev.,32,2700551,110560.71,"m 122.19944,145.85176 16.12213,3.46663 7.46658,1.49332 7.1152,1.40547 6.19286,1.62507 -0.92234,4.26035 -2.72311,13.43982 -2.89878,15.72373 -1.49331,6.85167 -1.66901,10.4532 -2.54741,12.73709 -2.45958,11.68299 -1.5126,8.06969 -2.26461,13.62729 -0.35136,0.35136 -1.31763,2.02037 -1.93252,-0.0878 -0.96627,-2.10821 -2.1082,-0.26353 -0.70274,-0.87841 -0.70274,0 -0.70274,0.43921 -1.49331,0.79058 -0.0878,5.35835 -0.17569,1.31763 -0.4392,9.66263 -1.13928,1.68719 -1.9352,-2.47777 -11.15593,-17.48056 -14.93314,-22.31187 -17.480559,-26.00124 -9.514511,-14.27929 1.257357,-5.04595 5.358368,-19.94014 6.0611,-24.08912 25.825555,6.25718 10.54104,2.28389",3,114.96906,189.02165,middle,,"m 134.35755,189.8165 20.36582,4.39974 9.43194,1.89528 8.98807,1.78378 7.82295,2.06249 -1.16512,5.4071 -3.43988,17.05744 -3.66181,19.95608 -1.88638,8.69595 -2.10832,13.26689 -3.21795,16.16555 -3.10699,14.8277 -1.91075,10.24181 -2.8607,17.29536 -0.44385,0.44594 -1.66446,2.56419 -2.4412,-0.11149 -1.22061,-2.67567 -2.66313,-0.33447 -0.88772,-1.11485 -0.8877,0 -0.88772,0.55743 -1.88638,1.00338 -0.11096,6.80067 -0.22194,1.67229 -0.55481,12.26352 -1.43917,2.14134 -2.44457,-3.14471 -14.09241,-22.18582 -18.86387,-28.31757 -22.081812,-33 -12.018933,-18.12286 1.58832,-6.40417 6.768806,-25.30744 7.656509,-30.5732 32.62339,7.94143 13.31567,2.89864",1,3,2,4,3,4,2,4,3,9,ababcdcbcdefefef,0.5,0.5 NY,New York,N.Y.,36,19378102,54556,"m 650.50778,155.65587 -0.8696,-0.74536 -1.98764,-0.12423 -1.73918,-1.49073 -1.86342,-4.09951 -2.30885,-0.71521 -1.79066,-1.64511 -14.28617,3.10569 -33.04453,6.70829 -6.83252,1.11804 -0.56723,-5.31936 2.0566,-1.38799 0.99382,-0.86959 0.74536,-1.24227 1.3665,-0.86959 1.49073,-1.3665 0.37268,-1.24228 1.61496,-2.11186 0.86959,-0.74537 -0.12423,-0.74536 -0.99382,-2.36032 -1.3665,-0.12422 -1.49072,-4.72064 2.23609,-1.3665 3.35413,-1.11805 3.10569,-0.99382 2.48454,-0.37268 4.84487,-0.12423 1.49072,0.99382 1.24228,0.12423 1.61495,-0.99382 1.98764,-0.86959 3.97527,-0.37268 1.61496,-1.3665 1.3665,-2.48455 1.24227,-1.49072 1.61495,0 1.49073,-0.8696 0.12423,-1.73918 -1.11805,-1.61495 -0.24845,-1.11805 0.86959,-1.61495 0,-1.11805 -1.3665,0 -1.3665,-0.62113 -0.62114,-0.8696 -0.12422,-1.98763 4.47218,-4.22373 0.49691,-0.62114 1.11804,-2.23609 2.23609,-3.47836 2.11187,-2.85723 1.61495,-1.86341 1.85588,-1.40288 2.36785,-0.95744 4.22373,-0.99382 2.48454,0.12423 3.47837,-1.11804 5.81344,-1.591584 0.39943,3.826604 1.86342,4.96911 0.62114,3.97528 -0.74537,2.98146 1.98764,3.47838 0.62114,1.61495 -0.62114,2.2361 2.2361,0.99382 0.49691,0.24845 2.36033,8.44748 0.37268,3.97528 -0.37268,8.32325 0.62113,4.22373 0.62114,2.73301 1.11804,5.59025 0,6.21137 -0.86959,1.73919 1.41343,1.53135 -0.17269,1.20257 -1.49073,1.3665 0.24846,0.99382 0.99382,-0.24846 1.11804,-0.99381 1.73918,-1.98764 0.8696,-0.49691 1.24227,0.49691 1.73918,0.12423 6.08714,-2.98146 2.23609,-2.11186 0.99382,-1.11805 3.22991,1.24228 -2.60878,2.733 -2.98145,2.23609 -5.466,4.0995 -1.98764,0.74536 -4.47218,1.49073 -3.10568,0.86959 -1.16432,-0.40952 -0.44911,-2.57284 0.37268,-2.11187 -0.12423,-1.61496 -1.98763,-0.8696 -3.47838,-0.74536 -2.98146,-0.86959 -2.85723,-1.36651 z",2,632.1756,142.33945,middle,,"m 801.7279,202.25958 -1.09848,-0.94599 -2.51084,-0.15767 -2.19697,-1.89198 -2.35391,-5.20298 -2.91659,-0.90773 -2.262,-2.08793 -18.04659,3.94165 -41.74256,8.51397 -8.63098,1.41899 -0.71654,-6.75118 2.59794,-1.7616 1.25542,-1.10366 0.94156,-1.57665 1.72619,-1.10366 1.88312,-1.73432 0.47078,-1.57666 2.04004,-2.68031 1.09849,-0.946 -0.15693,-0.94599 -1.25541,-2.99565 -1.72619,-0.15766 -1.88312,-5.9913 2.82468,-1.73432 4.23701,-1.41899 3.92317,-1.26133 3.13853,-0.47299 6.12013,-0.15767 1.88312,1.26133 1.56927,0.15766 2.04004,-1.26132 2.51083,-1.10366 5.02165,-0.473 2.04004,-1.73432 1.7262,-3.15331 1.56926,-1.89199 2.04005,0 1.88312,-1.10366 0.15692,-2.20732 -1.41234,-2.04965 -0.31385,-1.41899 1.09849,-2.04966 0,-1.41899 -1.7262,0 -1.72619,-0.78832 -0.78463,-1.10366 -0.15693,-2.52265 5.64936,-5.36064 0.62771,-0.78832 1.41233,-2.83798 2.82468,-4.41464 2.66775,-3.62631 2.04005,-2.36499 2.34438,-1.78049 2.99112,-1.21515 5.33551,-1.26133 3.13853,0.15767 4.39394,-1.41899 7.34366,-2.01999 0.50458,4.85662 2.35391,6.30664 0.78463,5.04531 -0.94156,3.78399 2.51082,4.41464 0.78464,2.04966 -0.78464,2.83799 2.82469,1.26132 0.62771,0.31534 2.98161,10.72129 0.47078,5.04531 -0.47078,10.56362 0.78464,5.36064 0.78463,3.46865 1.41234,7.09497 0,7.8833 -1.09849,2.20732 1.78547,1.94354 -0.21814,1.52628 -1.88312,1.73432 0.31385,1.26132 1.25542,-0.31533 1.41233,-1.26132 2.19698,-2.52265 1.09848,-0.63066 1.56927,0.63066 2.19697,0.15766 7.6894,-3.78397 2.82468,-2.68032 1.25541,-1.41899 4.08009,1.57666 -3.29545,3.46864 -3.76624,2.83798 -6.90477,5.20297 -2.51083,0.94599 -5.64935,1.89199 -3.92317,1.10366 -1.47079,-0.51976 -0.56732,-3.26536 0.47078,-2.68033 -0.15693,-2.04965 -2.51083,-1.10367 -4.39395,-0.946 -3.76625,-1.10366 -3.60932,-1.73433 z",8,2,9,2,10,2,9,2,18,4,ababcdcdedefaf,0.25,0.5 OH,Ohio,Ohio,39,11536504,44824.9,"m 576.96506,159.16309 -5.46734,3.20198 -2.98146,1.73919 -2.60877,2.85722 -3.10568,2.98146 -2.48455,0.62114 -2.23609,0.37268 -4.22373,1.98763 -1.61495,0.12423 -2.60878,-2.36032 -3.97527,0.49691 -1.98764,-1.11804 -1.82972,-1.03804 -3.75967,0.54053 -7.82633,1.24227 -5.96292,0.93171 0.99382,11.24258 1.3665,10.55934 1.98764,18.01299 0.4348,4.41008 3.1678,-0.18635 1.86341,-0.62113 2.2361,1.24227 1.24227,3.35414 4.47219,0.24845 1.3665,1.36651 1.61496,0.12423 1.86341,-1.11805 2.36032,0.37268 0.99382,1.11805 2.11187,-1.98765 1.3665,-0.99381 1.24227,0 0.49691,2.11187 1.36651,0.74536 2.67088,1.80129 1.67708,-0.0621 1.49073,-0.62114 0.12423,-2.11186 1.24227,-1.11805 0.12423,-3.85105 0.74536,-2.98146 0.99382,-0.49691 0.99382,0.86959 0.37269,1.3665 1.3665,-0.74536 0.37268,-1.24228 -0.86959,-1.3665 0,-1.86341 0.74537,-0.99382 1.73918,-2.60878 0.99382,-1.11804 1.61496,0.37268 1.73918,-1.24228 2.36032,-2.60877 1.73919,-2.98147 0.24845,-4.34795 0.37269,-3.85106 0,-3.6026 -0.8696,-2.36031 0.74537,-1.11806 1.05616,-0.55916 -1.4284,-8.26128 -2.23609,-14.87846 z",3,551.37781,201.07253,middle,,"m 708.82718,206.71085 -6.90647,4.06386 -3.76624,2.20732 -3.29545,3.6263 -3.92317,3.78398 -3.13853,0.78833 -2.82468,0.47299 -5.3355,2.52265 -2.04005,0.15767 -3.29545,-2.99565 -5.02165,0.63067 -2.51083,-1.41899 -2.31134,-1.31745 -4.7493,0.68603 -9.88638,1.57665 -7.5325,1.1825 1.25542,14.26875 1.7262,13.4016 2.51082,22.86156 0.54925,5.59714 4.00163,-0.2365 2.3539,-0.78833 2.82469,1.57666 1.56926,4.25697 5.64937,0.31533 1.72619,1.73433 2.04005,0.15767 2.35391,-1.41899 2.9816,0.47299 1.25541,1.41899 2.66776,-2.52266 1.7262,-1.26132 1.56926,0 0.62771,2.68033 1.7262,0.94599 3.37392,2.28615 2.11851,-0.0788 1.88313,-0.78833 0.15693,-2.68032 1.56926,-1.419 0.15693,-4.88763 0.94156,-3.78399 1.25541,-0.63066 1.25541,1.10366 0.47079,1.73432 1.72619,-0.94599 0.47078,-1.57666 -1.09848,-1.73432 0,-2.36499 0.94156,-1.26133 2.19697,-3.31098 1.25541,-1.41899 2.04006,0.473 2.19697,-1.57667 2.9816,-3.31097 2.19699,-3.78399 0.31385,-5.5183 0.47078,-4.88764 0,-4.57231 -1.09849,-2.99565 0.94156,-1.419 1.33416,-0.70967 -1.80438,-10.48497 -2.82467,-18.88331 z",6,3,7,3,8,3,7,3,14,7,abcbcdcdefefaf,0,1 OK,Oklahoma,Okla.,40,3751351,69898.19,"m 302.54232,257.27612 -8.21326,-0.35133 -4.94111,-0.37333 0.19764,0.15372 -0.41723,8.87204 16.75588,0.83447 23.89304,0.87843 -1.05411,18.27114 -0.35137,13.70335 0.17569,1.22979 3.338,2.81095 1.58115,0.87842 0.52706,-0.17569 0.52705,-1.58115 1.05411,1.40547 1.58115,0 0,-1.05411 2.10821,1.05411 -0.35137,2.98663 3.16232,0.17569 1.93252,0.87842 3.16232,0.52705 1.93252,1.40547 1.75684,-1.58115 2.63526,0.52705 1.93253,2.63526 0.70273,0 0,1.75684 1.75684,0.52705 1.75684,-1.75684 1.40547,0.52705 1.93253,0 0.70274,1.93253 3.68936,1.40547 1.05411,-0.52705 1.40547,-3.16232 0.87842,0 0.87842,1.58116 3.16232,0.52705 2.81094,1.05411 2.2839,0.70274 1.40547,-0.70274 0.52705,-1.93253 3.338,0 1.58115,0.70274 2.10821,-1.58116 0.87842,0 0.52705,1.22979 3.16232,0 1.22979,-1.58116 1.40547,0.35137 1.58116,1.93253 2.45957,1.40547 2.45958,0.70274 2.10821,1.22979 -0.17568,-29.33916 -1.05412,-8.43291 10e-6,-6.32464 -1.22979,-5.27053 -0.35137,-5.27052 -0.17568,-3.42583 -10.18972,0.61489 -35.6636,-0.35136 -34.60996,-1.58118 -18.66647,-1.05409 z",4,367.73105,290.01865,middle,,"m 362.17052,331.23301 -10.37517,-0.44589 -6.24172,-0.47382 0.24967,0.19509 -0.52705,11.26013 21.16638,1.05909 30.1822,1.11487 -1.33157,23.1892 -0.44386,17.3919 0.22193,1.56081 4.21663,3.56757 1.99735,1.11486 0.66579,-0.22297 0.66578,-2.00676 1.33157,1.78379 1.99735,0 0,-1.33784 2.66314,1.33784 -0.44386,3.79054 3.9947,0.22298 2.44121,1.11487 3.9947,0.66891 2.44121,1.78379 2.21928,-2.00676 3.32892,0.66892 2.4412,3.3446 0.88771,0 0,2.22973 2.21928,0.66891 2.21928,-2.22973 1.77542,0.66892 2.4412,0 0.88772,2.45271 4.66048,1.78377 1.33158,-0.66891 1.77542,-4.01352 1.10963,0 1.10965,2.00676 3.9947,0.66892 3.55084,1.33784 2.88507,0.8919 1.77542,-0.8919 0.66578,-2.4527 4.21663,0 1.99735,0.89188 2.66314,-2.00675 1.10964,0 0.66578,1.56081 3.9947,0 1.5535,-2.00676 1.77542,0.44595 1.99736,2.45271 3.10698,1.78377 3.107,0.8919 2.66313,1.56082 -0.22193,-37.2364 -1.33158,-10.7028 1e-5,-8.02704 -1.5535,-6.6892 -0.44385,-6.68919 -0.22193,-4.34797 -12.87187,0.78039 -45.05102,-0.44593 -43.72003,-2.00678 -23.57989,-1.33783 z",3,6,4,6,5,6,4,6,8,11,ababcbcdedefef,0.75,0.5 OR,Oregon,Ore.,41,3831074,98380.64,"m 122.42217,145.54119 3.42584,-13.87904 3.338,-13.61551 1.0541,-3.25016 1.93253,-4.56778 -0.96626,-1.75684 -1.93254,0.0878 -0.61488,-0.79058 0.35136,-0.87841 0.26352,-2.37174 3.42585,-4.21642 1.40547,-0.35137 0.87842,-0.87841 0.43921,-2.45958 0.70273,-0.52705 2.98663,-4.479945 2.98663,-3.337997 0.17569,-2.898785 -2.63527,-2.020369 -0.80564,-3.219089 -10.7895,-2.754165 -11.59515,-2.723102 -11.85867,0.08784 -0.35136,-1.0541 -4.21643,1.581157 -3.42583,-0.439212 -1.844685,-1.22979 -0.966262,0.527057 -3.601518,-0.175691 -1.317628,-1.054099 -4.040739,-1.581157 -0.614895,0.08785 -3.337997,-1.141953 -1.493314,1.405474 -4.743471,-0.263521 -4.567781,-3.162314 0.527049,-0.614895 0.175684,-5.973261 -1.756841,-2.986623 -3.162314,-0.439212 -0.527049,-1.932524 -1.808869,-0.35853 -4.455852,1.582064 -1.739182,4.969091 -2.484546,7.702092 -2.484546,4.969092 -3.851046,10.807774 -4.969091,10.435093 -6.211365,9.68973 -1.490727,2.23609 -0.621137,6.58405 -0.993818,4.59641 1.711145,3.45054 5.418168,1.85326 8.784201,2.28389 5.797573,1.58116 9.66262,3.16231 10.36536,2.63527 10.365361,2.98662 m 35.880332,8.39205 -36.056015,-8.50029 25.825555,6.25718 10.54104,2.28389",2,89.740685,105.57977,middle,,"m 134.63891,189.42233 4.32759,-17.61487 4.21663,-17.2804 1.33157,-4.12501 2.4412,-5.79729 -1.2206,-2.22973 -2.44121,0.11148 -0.77674,-1.00338 0.44385,-1.11486 0.33289,-3.01014 4.32759,-5.35135 1.77543,-0.44595 1.10963,-1.11486 0.55482,-3.12163 0.88771,-0.66891 3.77278,-5.68581 3.77277,-4.23649 0.22193,-3.67905 -3.32892,-2.5642 -1.01771,-4.08557 -13.62952,-3.4955 -14.64724,-3.456085 -14.98013,0.111481 -0.44385,-1.337832 -5.32627,2.006756 -4.32759,-0.557433 -2.330246,-1.560814 -1.220603,0.668926 -4.549514,-0.222982 -1.664456,-1.337832 -5.104347,-2.006758 -0.776749,0.111491 -4.216629,-1.449333 -1.886386,1.783786 -5.992053,-0.334453 -5.770119,-4.013516 0.66578,-0.780407 0.221927,-7.581088 -2.219278,-3.790534 -3.994703,-0.557435 -0.66578,-2.452702 -2.285002,-0.455036 -5.628727,2.007909 -2.196972,6.306625 -3.138531,9.775269 -3.138531,6.306627 -4.864724,13.71691 -6.277062,13.24391 -7.846328,12.29792 -1.883119,2.83798 -0.784633,8.35628 -1.255412,5.83363 2.161555,4.37933 6.844345,2.35209 11.09639,2.89865 7.323618,2.00676 12.206028,4.01351 13.093744,3.3446 13.093744,3.79054 m 45.324803,10.65095 -45.54673,-10.78832 32.62339,7.94143 13.31567,2.89864",0,3,1,4,2,4,1,4,3,7,ababcdcdedefaf,0.25,0.5 PA,Pennsylvania,Pa.,42,12702379,46055.24,"m 647.15363,183.85553 0.8696,-0.49691 1.73918,-0.99382 1.11805,-2.11187 1.24228,-1.73918 2.48454,-2.36033 0,-0.62114 -1.86341,-1.24227 -2.733,-1.86342 -0.74537,-1.98763 -2.11187,-0.24846 -0.12423,-0.8696 -0.62113,-2.11186 1.73919,-0.86959 0.12422,-1.86342 -0.99382,-0.99382 0.12423,-1.24228 1.49073,-2.36032 0,-2.36032 1.8013,-1.86341 -1.05594,-0.74537 -1.98764,-0.12423 -1.73918,-1.49073 -1.86342,-4.09951 -2.30885,-0.71521 -1.79066,-1.64511 -14.28617,3.10569 -33.04453,6.70829 -6.83252,1.11804 -0.38089,-5.44359 -4.21688,4.32647 -0.99381,0.37268 -3.22924,2.31217 2.23676,14.70609 1.29663,8.26127 2.74473,14.80141 3.55868,-0.57722 9.17799,-1.15457 29.14456,-5.89029 11.43156,-2.16957 6.37836,-1.24669 0.99005,-0.96809 1.61497,-1.24228 1.61495,0 z",1,613.80927,175.45938,middle,,"m 797.49088,238.04976 1.09849,-0.63066 2.19697,-1.26133 1.41234,-2.68032 1.56928,-2.20732 3.13853,-2.99566 0,-0.78833 -2.3539,-1.57665 -3.45239,-2.365 -0.94156,-2.52265 -2.66776,-0.31533 -0.15693,-1.10367 -0.78463,-2.68031 2.19698,-1.10366 0.15692,-2.365 -1.25542,-1.26132 0.15693,-1.57667 1.88313,-2.99565 0,-2.99565 2.27544,-2.36499 -1.33388,-0.946 -2.51084,-0.15767 -2.19697,-1.89198 -2.35391,-5.20298 -2.91659,-0.90773 -2.262,-2.08793 -18.04659,3.94165 -41.74256,8.51397 -8.63098,1.41899 -0.48115,-6.90884 -5.32685,5.49102 -1.25541,0.47299 -4.07924,2.93454 2.82552,18.66453 1.63794,10.48498 3.46719,18.7855 4.49541,-0.73258 11.59383,-1.46535 36.81603,-7.47578 14.44058,-2.75356 8.05729,-1.58226 1.25065,-1.22867 2.04006,-1.57667 2.04005,0 z",7,3,8,3,9,3,8,3,16,6,ababcdcdedefaf,0.25,0.5 RI,Rhode Island,R.I.,44,1052567,1545.05,"m 685.78685,147.58201 -0.37113,-3.23085 -0.62113,-3.35414 -1.30439,-4.5343 4.41008,-1.18017 1.24227,0.8696 2.60878,3.35414 2.23531,3.41673 -2.23691,1.18064 -0.99382,-0.12423 -0.86959,1.36651 -1.86341,1.49072 -2.23606,0.74535 z",2,727.89392,146.59099,start,"M 727.31491,142.43267 691.0582,141.14982","m 846.29318,192.01248 -0.46881,-4.1005 -0.78464,-4.25698 -1.64772,-5.7548 5.5709,-1.49783 1.56926,1.10366 3.29547,4.25698 2.82369,4.33642 -2.82571,1.49843 -1.25541,-0.15767 -1.09849,1.73433 -2.35389,1.89198 -2.82465,0.94598 z",10,3,11,2,12,2,11,2,22,6,abcbcdcdefefaf,0,1 SC,South Carolina ,S.C.,45,4625364,32020.2,"m 599.07617,326.71778 -1.36557,0.74501 -1.98764,-0.99383 -0.49691,-1.61496 -0.99382,-2.733 -1.73919,-1.61496 -1.98763,-0.49691 -1.24228,-3.72682 -2.11187,-4.59641 -3.22991,-1.49074 -1.61496,-1.49073 -0.99382,-1.98763 -1.61495,-1.49074 -1.73919,-0.99382 -1.73919,-2.23609 -2.36032,-1.73918 -3.47837,-1.36651 -0.37268,-1.11804 -1.86341,-2.2361 -0.37268,-1.11805 -2.60878,-3.97527 -2.60877,0.12422 -3.10569,-1.86341 -0.99382,-0.99382 -0.24846,-1.3665 0.62114,-1.49073 1.73918,-0.74537 -0.24845,-1.61496 4.72064,-1.98763 6.95674,-3.47837 5.59023,-0.62114 12.67121,-0.37268 1.73918,1.49073 1.24228,2.48455 3.35414,-0.37268 9.68975,-1.11806 2.23609,0.62115 9.68974,5.83869 7.76751,6.24107 -4.16587,4.19444 -1.98764,4.72064 -0.37268,4.84486 -1.24227,0.62114 -0.86959,2.11186 -1.86341,0.49691 -1.61496,2.733 -2.11186,2.11187 -1.73918,2.60877 -1.24228,0.62114 -2.733,2.60877 -2.23609,0.12423 0.74537,2.48454 -3.85105,4.22373 -1.61496,0.99382 z",3,596.43842,298.00009,middle,,"m 736.75841,419.36633 -1.72503,0.94554 -2.51082,-1.26134 -0.62771,-2.04965 -1.25541,-3.46864 -2.19699,-2.04967 -2.51082,-0.63066 -1.56927,-4.72997 -2.66776,-5.83364 -4.08009,-1.89199 -2.04005,-1.89199 -1.25542,-2.52265 -2.04004,-1.892 -2.19697,-1.26132 -2.19699,-2.83799 -2.9816,-2.20731 -4.39395,-1.73434 -0.47078,-1.41899 -2.3539,-2.83798 -0.47078,-1.419 -3.29547,-5.0453 -3.29546,0.15767 -3.92317,-2.365 -1.25541,-1.26132 -0.31386,-1.73432 0.78464,-1.89199 2.19697,-0.94601 -0.31386,-2.04965 5.96322,-2.52265 8.7879,-4.41465 7.06171,-0.78832 16.00654,-0.473 2.19697,1.89199 1.56926,3.15332 4.23703,-0.473 12.24029,-1.419 2.82468,0.78834 12.24029,7.41029 9.81209,7.92099 -5.26242,5.32346 -2.51083,5.99129 -0.47078,6.14896 -1.56926,0.78833 -1.09849,2.68032 -2.3539,0.63066 -2.04004,3.46864 -2.66775,2.68032 -2.19698,3.31098 -1.56926,0.78833 -3.45239,3.31097 -2.82467,0.15767 0.94156,3.15331 -4.86473,5.36063 -2.04004,1.26133 z",7,5,8,6,9,5,8,6,16,12,abcbabcdcdefefef,1,1.75 SD,South Dakota,S.D.,46,814180,77116.49,"m 378.04696,166.14754 -0.73286,-1.5705 -1.29191,-2.17032 1.40547,-3.338 1.05411,-4.3921 -2.10821,-1.58116 -0.35137,-2.10821 0.70274,-1.93253 1.40547,0 0.35137,-5.27052 -0.17568,-23.36598 -0.35137,-2.28389 -3.16231,-2.63526 -0.87843,-1.40548 0,-1.22979 1.58116,-1.22978 1.05411,-1.05411 0.26353,-2.45958 -44.71161,-1.22978 -43.16683,-2.98663 -0.58916,4.0569 -1.23952,12.19388 -1.03372,13.79119 -1.22978,19.76447 11.94651,0.79057 15.4602,0.87842 13.70336,0.87842 18.27114,0.87842 8.25716,-0.35137 1.58115,1.75684 3.68937,2.2839 0.87842,0.70273 3.338,-1.0541 2.98663,-0.35137 2.10821,-0.17568 1.40547,1.05411 3.86505,1.22979 2.28389,1.22978 0.35137,1.22979 0.70273,1.58116 1.40548,0 0.97066,-0.12423 z",2,333.7366,137.44273,middle,,"m 457.5496,215.5753 -0.92578,-1.99323 -1.63196,-2.75451 1.77542,-4.23649 1.33157,-5.57433 -2.66313,-2.00676 -0.44386,-2.67567 0.88772,-2.45271 1.77542,0 0.44385,-6.68919 -0.22192,-29.65542 -0.44386,-2.89864 -3.9947,-3.3446 -1.10964,-1.78379 0,-1.56081 1.99735,-1.56081 1.33157,-1.33784 0.33289,-3.12163 -56.48065,-1.5608 -54.52926,-3.79054 -0.74425,5.1489 -1.56578,15.47611 -1.30582,17.50338 -1.55348,25.08447 15.09109,1.00338 19.52965,1.11486 17.31038,1.11487 23.0805,1.11486 10.43061,-0.44594 1.99735,2.22973 4.66048,2.89865 1.10964,0.89189 4.21663,-1.33784 3.77278,-0.44595 2.66313,-0.22297 1.77543,1.33784 4.88241,1.56082 2.88505,1.5608 0.44387,1.56082 0.8877,2.00675 1.77543,0 1.22617,-0.15766 z",3,3,3,3,4,3,3,3,7,6,ababcdcdedefaf,0.25,0.5 TN,Tennessee,Tenn.,47,6346105,42143.27,"m 549.75879,255.78353 -39.87702,3.85105 -12.11036,1.3665 -3.55115,0.39399 -2.97261,-0.0213 0,2.98147 -6.45983,0.37268 -5.34178,0.49691 -8.52669,0.0406 -0.20344,4.48422 -1.64307,4.82241 -0.76466,2.31764 -1.03643,3.3666 -0.24845,1.98764 -3.10569,1.73918 1.11804,2.73301 -0.74536,3.35414 -1.18014,1.30439 6.27346,-0.0621 18.5099,-1.49073 4.09954,-0.12422 6.21134,-0.37269 21.36713,-1.98764 7.81567,-0.62114 6.47048,-0.74536 6.45983,-0.86959 3.72683,-0.62114 0.24845,-3.72683 1.3665,-1.11804 2.11187,-0.49691 0.49691,-2.85724 3.22992,-2.11186 2.98146,-1.11805 3.22991,-2.733 3.35414,-1.61496 0.49691,-2.36032 2.98146,-2.98146 0.49691,-0.12423 c 0,0 0,0.86959 0.62114,0.86959 0.62113,0 1.49073,0.24846 1.49073,0.24846 l 1.73919,-2.73301 1.61495,-0.49691 1.73918,0.24846 1.24228,-2.733 2.23609,-1.98765 0.37269,-1.61495 0.13553,-3.02163 -1.75049,0.0401 -1.86341,1.49074 -6.08715,0.12423 -9.21776,1.46057 -7.55295,0.65129 z",4,511.66321,279.41211,middle,,"m 674.45964,329.33866 -50.3735,4.88765 -15.29808,1.73432 -4.48588,0.50004 -3.75506,-0.027 0,3.78399 -8.1602,0.473 -6.74785,0.63066 -10.7711,0.0516 -0.25698,5.69123 -2.07556,6.12046 -0.96594,2.94149 -1.30924,4.27279 -0.31385,2.52265 -3.92318,2.20732 1.41234,3.46865 -0.94156,4.25697 -1.49078,1.65551 7.92478,-0.0788 23.3821,-1.89199 5.17862,-0.15766 7.8463,-0.47301 26.99141,-2.52265 9.87293,-0.78833 8.17365,-0.94599 8.16019,-1.10366 4.7078,-0.78833 0.31386,-4.72998 1.72619,-1.41899 2.66776,-0.63066 0.62771,-3.62632 4.0801,-2.68032 3.76624,-1.419 4.0801,-3.46864 4.23701,-2.04965 0.62771,-2.99566 3.76625,-3.78398 0.6277,-0.15766 c 0,0 0,1.10366 0.78464,1.10366 0.78463,0 1.88313,0.31533 1.88313,0.31533 l 2.19697,-3.46865 2.04004,-0.63067 2.19697,0.31533 1.56928,-3.46864 2.82468,-2.52266 0.47078,-2.04965 0.17121,-3.83496 -2.21126,0.051 -2.3539,1.892 -7.68942,0.15767 -11.64407,1.85371 -9.54104,0.8266 z",5,5,6,5,7,5,6,5,15,11,abcdcdededefababaf,-0.5,1.3 TX,Texas,Texas,48,25145561,268580.82,"m 288.48759,265.5772 17.43665,0.83449 23.89304,0.87843 -1.05411,18.27114 -0.35137,13.70335 0.17569,1.22979 3.338,2.81095 1.58115,0.87842 0.52706,-0.17569 0.52705,-1.58115 1.05411,1.40547 1.58115,0 0,-1.05411 2.10821,1.05411 -0.35137,2.98663 3.16232,0.17569 1.93252,0.87842 3.16232,0.52705 1.93252,1.40547 1.75684,-1.58115 2.63526,0.52705 1.93253,2.63526 0.70273,0 0,1.75684 1.75684,0.52705 1.75684,-1.75684 1.40547,0.52705 1.93253,0 0.70274,1.93253 3.68936,1.40547 1.05411,-0.52705 1.40547,-3.16232 0.87842,0 0.87842,1.58116 3.16232,0.52705 2.81094,1.05411 2.2839,0.70274 1.40547,-0.70274 0.52705,-1.93253 3.338,0 1.58115,0.70274 2.10821,-1.58116 0.87842,0 0.52705,1.22979 3.16232,0 1.22979,-1.58116 1.40547,0.35137 1.58116,1.93253 2.45957,1.40547 2.45958,0.70274 2.10821,0.96626 1.75684,1.49331 2.28389,-1.0541 2.10821,0.87842 0.51607,8.53166 0.011,7.45559 0.52705,7.20304 0.52705,2.98664 1.93253,3.16231 0.70273,3.86505 3.338,4.21642 0.17568,2.45958 0.52706,0.52705 -0.52706,6.50031 -2.28389,3.86505 1.22979,1.58115 -0.52706,1.93253 -0.52705,5.62189 -1.0541,2.45958 0.21768,2.75399 -4.96973,1.34144 -7.57787,3.47837 -0.74536,1.49072 -1.98764,1.49073 -1.61495,1.11805 -0.99382,0.62113 -4.34796,4.09951 -2.11186,1.61495 -4.0995,2.48455 -4.34796,1.86341 -4.84486,2.60877 -1.3665,1.11804 -4.47218,2.733 -2.60878,0.49691 -2.98145,4.22373 -3.10568,0.24846 -0.74537,1.49072 1.73918,1.49073 -1.11804,4.22373 -0.99382,3.47836 -0.86959,2.98146 -0.62114,3.47836 0.62114,1.86341 1.3665,5.34177 0.74536,4.72064 1.3665,2.11187 -0.74536,1.11804 -2.36032,1.49073 -4.34795,-2.98146 -4.22373,-0.86959 -0.99382,0.37268 -2.48455,-0.4969 -3.22991,-2.36032 -3.97527,-0.86959 -5.83868,-2.60878 -1.61496,-2.98145 -0.99381,-4.96909 -2.48455,-1.49073 -0.49691,-1.73918 0.49691,-0.49691 0.24845,-2.60878 -0.99381,-0.4969 -0.49691,-0.74537 0.99382,-3.35414 -1.24228,-1.73918 -2.48454,-0.99382 -2.60878,-3.35413 -2.733,-5.09332 -3.22991,-1.98764 0.12423,-1.49073 -4.0995,-9.44127 -0.62114,-3.22991 -1.3665,-1.49073 -0.12422,-1.11804 -4.59641,-4.0995 -1.98764,-2.36032 0,-0.86959 -1.98764,-1.61496 -5.21754,-0.86959 -5.71446,-0.49691 -2.36032,-1.73918 -3.47836,1.3665 -2.733,1.11805 -1.73918,2.48454 -0.74537,2.85723 -3.35413,4.72064 -1.86341,1.86341 -1.98764,-0.74537 -1.3665,-0.86959 -1.49073,-0.49691 -2.98145,-1.73918 0,-0.49691 -1.3665,-1.49073 -3.97528,-1.61495 -5.71445,-5.96291 -1.73918,-3.60259 0,-6.21137 -2.48455,-4.96909 -0.37268,-2.11186 -1.24227,-0.74537 -0.8696,-1.61495 -3.85104,-1.61496 -0.99382,-1.24227 -5.466,-6.08714 -0.99382,-2.48454 -3.6026,-1.73919 -1.11804,-3.35416 -1.98766,-2.23609 -1.49072,-0.37265 -0.49889,-3.59452 6.149,0.52707 22.31182,2.10819 22.31188,1.22979 1.75684,-18.27114 2.9866,-42.69102 1.22981,-14.4063 1.05411,0.0219 m 76.05818,179.79914 -0.43479,-5.46602 -2.11188,-5.52813 -0.43479,-5.40391 1.18016,-6.33561 2.54667,-5.27968 2.67089,-4.16163 2.42244,-2.73301 0.49691,0.18635 -3.66471,5.09333 -3.35415,5.03123 -1.55285,5.09333 -0.24846,3.97529 0.68326,4.72065 1.98764,5.52814 0.37268,3.97528 0.12423,1.11805 -0.68325,0.18634 z",1,345.48349,355.95175,middle,,"m 344.41629,341.7685 22.02634,1.05911 30.1822,1.11487 -1.33157,23.1892 -0.44386,17.3919 0.22193,1.56081 4.21663,3.56757 1.99735,1.11486 0.66579,-0.22297 0.66578,-2.00676 1.33157,1.78379 1.99735,0 0,-1.33784 2.66314,1.33784 -0.44386,3.79054 3.9947,0.22298 2.44121,1.11487 3.9947,0.66891 2.44121,1.78379 2.21928,-2.00676 3.32892,0.66892 2.4412,3.3446 0.88771,0 0,2.22973 2.21928,0.66891 2.21928,-2.22973 1.77542,0.66892 2.4412,0 0.88772,2.45271 4.66048,1.78377 1.33158,-0.66891 1.77542,-4.01352 1.10963,0 1.10965,2.00676 3.9947,0.66892 3.55084,1.33784 2.88507,0.8919 1.77542,-0.8919 0.66578,-2.4527 4.21663,0 1.99735,0.89188 2.66314,-2.00675 1.10964,0 0.66578,1.56081 3.9947,0 1.5535,-2.00676 1.77542,0.44595 1.99736,2.45271 3.10698,1.78377 3.107,0.8919 2.66313,1.22635 2.21928,1.89527 2.88505,-1.33783 2.66315,1.11486 0.65191,10.82813 0.0139,9.46242 0.66578,9.14189 0.66579,3.79055 2.4412,4.01351 0.88771,4.90542 4.21663,5.35134 0.22192,3.12163 0.6658,0.66892 -0.6658,8.25 -2.88505,4.90541 1.55349,2.00675 -0.66579,2.45271 -0.66578,7.13514 -1.33157,3.12162 0.27499,3.49528 -6.27788,1.70253 -9.57252,4.41464 -0.94156,1.89198 -2.51082,1.89199 -2.04005,1.41899 -1.25541,0.78833 -5.49243,5.20296 -2.66775,2.04966 -5.17858,3.15331 -5.49243,2.36498 -6.12013,3.31098 -1.7262,1.41899 -5.64935,3.46865 -3.29546,0.63066 -3.76624,5.36063 -3.92316,0.31533 -0.94156,1.89199 2.19697,1.89199 -1.41234,5.36063 -1.25541,4.41464 -1.09849,3.78397 -0.78463,4.41464 0.78463,2.36498 1.7262,6.77962 0.94155,5.9913 1.7262,2.68031 -0.94156,1.41899 -2.98161,1.89199 -5.49243,-3.78397 -5.3355,-1.10366 -1.25541,0.47299 -3.13853,-0.63066 -4.08009,-2.99564 -5.02165,-1.10366 -7.37555,-3.31098 -2.04005,-3.78398 -1.25541,-6.30662 -3.13853,-1.89199 -0.62771,-2.20732 0.62771,-0.63066 0.31385,-3.31098 -1.25541,-0.63066 -0.62771,-0.946 1.25542,-4.25697 -1.56927,-2.20732 -3.13853,-1.26132 -3.29546,-4.25697 -3.45238,-6.46429 -4.08009,-2.52265 0.15692,-1.89199 -5.17857,-11.98259 -0.78464,-4.0993 -1.72619,-1.89199 -0.15693,-1.41899 -5.80628,-5.20297 -2.51082,-2.99565 0,-1.10365 -2.51083,-2.04966 -6.59091,-1.10366 -7.21863,-0.63066 -2.9816,-2.20732 -4.39394,1.73432 -3.45239,1.41899 -2.19697,3.15332 -0.94156,3.62631 -4.23702,5.99129 -2.3539,2.36498 -2.51082,-0.94599 -1.72619,-1.10366 -1.88312,-0.63066 -3.76624,-2.20732 0,-0.63066 -1.72619,-1.89199 -5.02165,-2.04965 -7.21862,-7.56795 -2.19698,-4.57231 0,-7.88328 -3.13853,-6.30662 -0.47078,-2.68032 -1.56926,-0.94599 -1.09849,-2.04966 -4.86472,-2.04965 -1.25541,-1.57665 -6.90477,-7.72562 -1.25542,-3.15331 -4.55088,-2.20733 -1.41233,-4.257 -2.51085,-2.83798 -1.88311,-0.47296 -0.63022,-4.56205 7.76755,0.66893 28.18477,2.67566 28.18484,1.56081 2.21928,-23.1892 3.77274,-54.18218 1.55352,-18.28406 1.33157,0.0279 m 96.07832,228.19578 -0.54924,-6.9373 -2.66776,-7.01615 -0.54925,-6.85848 1.49081,-8.04097 3.21701,-6.70081 3.37392,-5.28182 3.06009,-3.46866 0.6277,0.23651 -4.62935,6.46431 -4.23702,6.38548 -1.9616,6.46431 -0.31385,5.04532 0.8631,5.99132 2.51083,7.01614 0.47078,5.04531 0.15693,1.419 -0.8631,0.23649 z",3,7,3,7,5,7,3,7,8,13,ababcdcdedefaf,0.25,0.5 UT,Utah,Utah,49,2763885,84898.83,"m 209.12229,248.31627 -19.67662,-3.16231 -20.9064,-3.51368 -25.74738,-4.74933 1.59078,-7.89985 2.45958,-11.68299 2.54741,-12.73709 1.66901,-10.4532 1.49331,-6.85167 2.89878,-15.72373 2.72311,-13.43982 0.85646,-4.2823 9.77242,1.73488 9.22342,1.58115 7.90577,1.40548 6.41247,1.0541 3.68939,0.61485 -1.26431,8.1689 -1.28308,9.13593 5.01324,0.7134 12.97747,1.75684 7.0496,0.90414 -2.37707,17.00498 -2.45957,17.21703 -2.88372,21.50623 -1.15702,8.53575 -0.52705,3.16231 z",2,179.80402,209.57777,middle,,"m 244.16034,319.86144 -24.85592,-4.01352 -26.40941,-4.45946 -32.52464,-6.0277 2.00951,-10.02626 3.10699,-14.8277 3.21795,-16.16555 2.10832,-13.26689 1.88638,-8.69595 3.66181,-19.95608 3.43988,-17.05744 1.0819,-5.43497 12.34474,2.20186 11.65121,2.00676 9.98675,1.78379 8.10036,1.33784 4.66051,0.78035 -1.59709,10.36773 -1.62082,11.59504 6.33283,0.90543 16.39342,2.22973 8.9052,1.14752 -3.00276,21.5822 -3.10699,21.85136 -3.64277,27.29507 -1.46158,10.83332 -0.66578,4.01352 z",1,4,3,4,3,5,3,5,5,8,ababcdcdcdefafef,0.5,0.5 VA,Virginia,Va.,51,8001024,42774.2,"m 569.63519,237.77055 1.49073,2.733 0.99381,0.99382 2.2361,0.62114 1.98764,-0.49692 1.86342,-1.73918 c 0,0 1.3665,1.11805 1.86341,0.99382 0.49691,-0.12423 3.35414,-0.74537 3.35414,-0.74537 l 1.3665,-3.60259 1.98764,0.74537 2.48455,-1.86342 1.11805,0.24845 1.61495,-1.49072 0.12423,-2.11187 -0.62114,-0.99382 3.85106,-8.32324 1.61495,-5.09333 0.24846,-3.35414 1.3665,-0.12423 1.24228,2.11187 0.99382,0.62114 1.98763,0 0.86959,-4.22374 0.24846,-2.36031 2.60878,-0.24846 0.37268,-1.73919 2.36032,-1.86341 0.49692,-1.24227 1.24227,-2.11187 0.37268,-1.61496 0.12423,-4.09951 3.47836,1.3665 4.34797,2.36033 0.62113,-3.91316 3.22992,1.55283 0,2.2361 4.22374,0.99382 1.49072,0.99382 0.74537,-1.49073 1.73919,1.24227 -1.11806,2.48456 -0.24845,2.11186 -1.3665,1.98764 0,1.61496 0.49691,1.3665 3.89137,1.04178 1.44943,1.19485 3.97528,0.24845 1.98763,1.73918 2.48455,0.49691 0.99382,0.99382 -0.37269,3.47836 0.74537,0.74537 0.12423,1.73918 0.99381,1.61495 -0.12422,1.36651 -2.48455,-0.8696 0,0.74537 1.49073,1.24227 0,0.86959 1.11804,0.86959 0.99382,1.24228 0.12423,1.73918 -1.73918,1.11804 0.24845,0.37269 1.98764,-0.37269 2.48454,-0.49691 0.8696,-0.12422 3.13191,5.39987 -3.75205,1.30791 -8.82015,2.2361 -14.72799,2.93884 -15.83197,2.89985 -13.16811,1.98763 -12.1566,1.49073 -5.4837,0.99383 -3.46707,-0.47496 -1.62626,-0.0219 -1.86341,1.49073 -6.08715,0.12423 -9.21776,1.46057 -7.68341,0.71653 2.11811,-1.05905 4.34795,-2.60879 2.98146,-1.61495 0,-1.61496 1.3665,-1.3665 3.47838,-4.0995 3.22991,-2.73301 2.48455,-2.98146 z",3,612.4281,238.30475,middle,,"m 699.56793,306.47712 1.88312,3.46864 1.25541,1.26132 2.82469,0.78834 2.51082,-0.63067 2.35391,-2.20732 c 0,0 1.72619,1.41899 2.3539,1.26133 0.6277,-0.15767 4.23703,-0.946 4.23703,-0.946 l 1.72619,-4.5723 2.51082,0.94599 3.13854,-2.36499 1.41234,0.31533 2.04005,-1.89199 0.15692,-2.68031 -0.78463,-1.26133 4.86474,-10.56362 2.04004,-6.4643 0.31385,-4.25698 1.7262,-0.15766 1.56927,2.68032 1.25541,0.78833 2.51083,0 1.09849,-5.36064 0.31385,-2.99565 3.29547,-0.31533 0.47078,-2.20733 2.9816,-2.36498 0.62772,-1.57666 1.56926,-2.68033 0.47078,-2.04965 0.15693,-5.20297 4.39394,1.73432 5.49245,2.99565 0.78463,-4.96647 4.0801,1.97082 0,2.83799 5.33551,1.26132 1.88312,1.26133 0.94156,-1.89199 2.19698,1.57666 -1.41235,3.15332 -0.31385,2.68032 -1.7262,2.52265 0,2.04966 0.62771,1.73432 4.91566,1.32219 1.83096,1.51647 5.02165,0.31533 2.51082,2.20732 3.13853,0.63066 1.25542,1.26133 -0.47078,4.41463 0.94156,0.946 0.15692,2.20732 1.25542,2.04965 -0.15693,1.73432 -3.13853,-1.10366 0,0.946 1.88312,1.57665 0,1.10366 1.41234,1.10366 1.25541,1.57666 0.15692,2.20732 -2.19697,1.41899 0.31386,0.47299 2.51082,-0.47299 3.13853,-0.63067 1.09849,-0.15766 3.9563,6.85335 -4.73967,1.65997 -11.14181,2.83799 -18.60471,3.72989 -19.99927,3.6804 -16.63425,2.52265 -15.35647,1.89199 -6.92713,1.26133 -4.37967,-0.6028 -2.05433,-0.0279 -2.3539,1.892 -7.68942,0.15767 -11.64407,1.85371 -9.70584,0.90939 2.67563,-1.34411 5.49243,-3.31099 3.76625,-2.04966 0,-2.04965 1.72619,-1.73432 4.39395,-5.20298 4.08011,-3.46865 3.13853,-3.78397 z",7,4,7,5,9,4,7,5,17,10,abababcdcdefedef,1,0 VT,Vermont,Vt.,50,625741,9614.26,"m 662.68208,128.57427 -0.62113,-4.34797 -2.36033,-8.44748 -0.49691,-0.24845 -2.2361,-0.99382 0.62114,-2.2361 -0.62114,-1.61495 -1.98764,-3.47838 0.74537,-2.98146 -0.62114,-3.97528 -1.86342,-4.96911 -0.61903,-3.782678 20.86735,-5.533842 0.24923,4.471649 1.49073,2.111871 0,3.10569 -2.85723,3.10568 -1.98764,0.8696 0,0.86959 0.86959,1.3665 0,6.58407 -0.62114,7.08097 -0.12422,3.72682 0.74536,0.99383 -0.12423,3.47836 -0.37268,1.36651 1.11805,1.55284 -5.34178,1.05594 -3.85106,0.8696 z",1,651.25427,82.325127,end,"m 652.75036,81.584718 9.82602,27.452952","m 817.10675,167.88841 -0.78464,-5.51831 -2.98161,-10.72129 -0.62771,-0.31534 -2.82469,-1.26132 0.78464,-2.83799 -0.78464,-2.04966 -2.51082,-4.41464 0.94156,-3.78399 -0.78463,-5.04531 -2.35391,-6.30664 -0.78198,-4.80087 26.36008,-7.02339 0.31484,5.67529 1.88312,2.68032 0,3.94165 -3.60932,3.94164 -2.51083,1.10367 0,1.10366 1.09849,1.73432 0,8.3563 -0.78463,8.98696 -0.15693,4.72998 0.94156,1.26134 -0.15693,4.41464 -0.47078,1.73433 1.41234,1.97081 -6.74785,1.34018 -4.86473,1.10366 z",9,1,9,1,10,1,10,1,18,1,ababcdcdcdefafef,0.5,0.5 WA,Washington,Wash.,53,6724540,71299.64,"m 86.017464,14.286144 3.354137,1.118045 7.453637,2.111864 6.584042,1.490728 15.40419,4.347955 17.64027,4.347955 12.39002,2.855256 -0.77172,2.984683 -2.89879,10.36535 -3.42583,15.987245 -2.81095,12.649256 -0.14683,7.453709 -10.74558,-2.6224 -11.59515,-2.723102 -11.85867,0.08784 -0.35136,-1.0541 -4.21642,1.581157 -3.42584,-0.439212 -1.844685,-1.22979 -0.966262,0.527057 -3.601518,-0.175691 -1.317628,-1.054099 -4.040739,-1.581157 -0.614895,0.08785 -3.337997,-1.141953 -1.493314,1.405474 -4.743471,-0.263521 -4.567781,-3.162314 0.527049,-0.614895 0.175684,-5.973261 -1.756841,-2.986623 -3.162314,-0.439212 -0.527049,-1.932524 -1.808869,-0.35853 -1.474397,-1.150937 -1.3665,0.745364 -1.739182,-2.236091 0.248454,-2.236091 2.111864,-0.248455 1.242273,-3.105682 -1.987637,-0.869591 0.124228,-2.857228 3.354137,-0.496909 -2.111864,-2.111864 -1.118046,-5.466001 0.496909,-2.236091 0,-6.087137 -1.3665,-2.484546 1.739182,-7.205183 1.614955,0.372682 1.863409,2.236091 2.111864,1.987637 2.484546,1.490727 3.478364,1.614955 2.36032,0.496909 2.236091,1.118046 2.608776,0.745364 1.739182,-0.124228 0,-1.863409 0.993818,-0.869591 1.614955,-0.993819 0.248455,0.869592 0.248454,1.3665 -1.739182,0.372682 -0.248454,1.614954 1.3665,1.118046 0.869591,1.863409 0.496909,1.490728 1.118046,-0.124227 0.124227,-0.993819 -0.745364,-0.993818 -0.372682,-2.484546 0.621137,-1.3665 -0.496909,-1.118046 0,-1.739182 1.3665,-2.733 -0.869591,-1.987637 -1.86341,-3.726819 0.248455,-0.621136 0.869591,-0.621136 z m -7.266953,4.594509 1.552848,-0.124227 0.372681,1.055936 1.180164,-1.242281 1.801299,0 0.621137,1.180163 -1.180163,1.304391 0.496917,0.621144 -0.559027,1.552845 -1.055936,0.310564 c 0,0 -0.683254,0.06209 -0.683254,-0.186337 0,-0.248454 1.118053,-1.987644 1.118053,-1.987644 l -1.30439,-0.4348 -0.248455,1.118054 -0.559026,0.496909 -1.180166,-1.73919 -0.372682,-1.925527 z",3,105.76946,53.653282,middle,,"m 88.651704,22.837281 4.237017,1.418991 9.415599,2.680316 8.3171,1.891987 19.4589,5.518297 22.28357,5.518297 15.65134,3.623807 -0.97487,3.788071 -3.6618,13.155398 -4.32759,20.290542 -3.55085,16.054064 -0.18548,9.460029 -13.57404,-3.32827 -14.64724,-3.456085 -14.98013,0.111481 -0.44385,-1.337832 -5.32627,2.006756 -4.32759,-0.557433 -2.330246,-1.560814 -1.220603,0.668926 -4.549514,-0.222982 -1.664456,-1.337832 -5.104347,-2.006758 -0.776749,0.111491 -4.216629,-1.449333 -1.886386,1.783786 -5.992053,-0.334453 -5.770119,-4.013516 0.66578,-0.780407 0.221927,-7.581088 -2.219278,-3.790534 -3.994703,-0.557435 -0.66578,-2.452702 -2.285002,-0.455036 -1.862489,-1.460735 -1.726192,0.945994 -2.196972,-2.837981 0.313853,-2.837982 2.667751,-0.315331 1.569266,-3.941641 -2.510825,-1.103659 0.156927,-3.626309 4.237017,-0.630663 -2.667752,-2.680315 -1.412339,-6.937288 0.627706,-2.837981 0,-7.725616 -1.726192,-3.153312 2.196972,-9.144607 2.040045,0.472997 2.353899,2.837982 2.667751,2.52265 3.138532,1.891987 4.393943,2.049653 2.981607,0.630663 2.824678,1.41899 3.295461,0.945994 2.196972,-0.157666 0,-2.364984 1.255412,-1.103659 2.040046,-1.261325 0.313853,1.103659 0.313853,1.734322 -2.196972,0.472997 -0.313853,2.049653 1.726192,1.418991 1.098486,2.364984 0.627706,1.891987 1.412339,-0.157665 0.156927,-1.261325 -0.941559,-1.261325 -0.47078,-3.153313 0.784633,-1.734322 -0.627707,-1.41899 0,-2.207319 1.726193,-3.468644 -1.098486,-2.52265 -2.353899,-4.729968 0.313853,-0.788329 1.098486,-0.788328 z m -9.17977,5.831217 1.96159,-0.157666 0.47078,1.340163 1.490807,-1.576666 2.275441,0 0.784632,1.497828 -1.490807,1.655494 0.627716,0.788338 -0.706174,1.970826 -1.333881,0.394159 c 0,0 -0.863101,0.07881 -0.863101,-0.236494 0,-0.315331 1.412349,-2.52266 1.412349,-2.52266 l -1.647734,-0.551834 -0.313853,1.419 -0.706175,0.630663 -1.49081,-2.207329 -0.47078,-2.443822 z",0,2,1,2,2,2,1,2,3,5,ababcdcdedefaf,0.25,0.5 WI,Wisconsin,Wis.,55,5686986,65497.82,"m 485.29769,161.87966 0.11051,-3.2414 -1.24227,-3.47837 -0.49691,-4.72064 -0.86959,-1.86341 0.74536,-2.36031 0.62114,-2.2361 1.11805,-1.98763 -0.49691,-2.60877 -0.49691,-2.73301 0.37268,-1.3665 1.49073,-1.8634 0.12422,-2.11187 -0.62113,-0.99382 0.49691,-1.98763 0.37268,-2.48455 2.11186,-4.34795 2.23609,-5.21755 0.12423,-1.73918 -0.24845,-0.74537 -0.62114,0.37269 -3.22991,4.84486 -2.11186,3.10568 -1.49073,1.3665 -0.62114,1.73918 -1.11804,0.62114 -0.86959,1.49073 -1.11805,-0.24846 -0.12423,-1.3665 0.99382,-1.86341 1.61496,-3.60259 1.3665,-1.24227 0.8463,-1.76094 -1.25307,-0.69564 -1.05411,-1.0541 -1.22979,-7.90579 -2.81094,-0.87841 -1.0541,-1.75684 -9.66263,-2.10822 -1.93252,-0.87842 -6.32463,-1.75684 -6.32463,-0.87842 -3.20401,-4.1533 -0.40683,0.9691 -0.86959,-0.12423 -0.49691,-0.86959 -2.11187,-0.62114 -0.86959,0.12423 -1.3665,0.74536 -0.74536,-0.4969 0.49691,-1.49073 1.49072,-2.360321 0.8696,-0.869591 -1.49073,-1.118046 -1.61496,0.621137 -2.23609,1.490727 -5.71445,2.484544 -2.23609,0.49691 -2.2361,-0.37268 -0.7544,-0.67489 -1.62657,2.17868 -0.17568,2.10821 0,6.50031 -0.87843,1.22979 -4.04073,2.98662 -1.75684,4.56779 0.35137,0.17568 1.93252,1.58116 0.52705,2.45958 -1.40547,2.45957 0,2.98663 0.35137,5.09484 2.28389,2.2839 2.63527,0 1.40547,2.45957 2.63526,0.35137 2.98663,4.3921 5.4462,3.16232 1.58116,2.1082 0.70274,5.70975 0.52705,2.54741 1.75684,1.22979 0.17568,1.0541 -1.58115,2.63526 0.17568,2.45958 1.93253,2.98663 1.93252,0.87842 2.28389,0.35136 0.94431,1.93254 7.04934,-1e-5 20.46718,-1.22978 7.55441,-0.87843 z",4,455.37177,127.33792,middle,,"m 593.031,210.15863 0.1396,-4.11389 -1.56926,-4.41464 -0.62771,-5.99129 -1.09849,-2.36499 0.94156,-2.99564 0.78464,-2.83799 1.41234,-2.52265 -0.62771,-3.31097 -0.62771,-3.46865 0.47078,-1.73432 1.88312,-2.36498 0.15693,-2.68032 -0.78463,-1.26132 0.6277,-2.52265 0.47078,-3.15332 2.66775,-5.51829 2.82468,-6.62196 0.15693,-2.20732 -0.31386,-0.94599 -0.78463,0.47299 -4.08009,6.14896 -2.66775,3.94164 -1.88312,1.73433 -0.78463,2.20731 -1.41234,0.78833 -1.09849,1.89199 -1.41234,-0.31533 -0.15692,-1.73432 1.25541,-2.36499 2.04005,-4.5723 1.72619,-1.57666 1.06907,-2.23492 -1.58291,-0.88289 -1.33157,-1.33784 -1.5535,-10.03379 -3.55083,-1.11486 -1.33158,-2.22973 -12.20603,-2.67569 -2.4412,-1.11486 -7.98941,-2.22973 -7.9894,-1.11487 -4.04737,-5.27125 -0.51393,1.22996 -1.09849,-0.15767 -0.6277,-1.10366 -2.66775,-0.78832 -1.09849,0.15766 -1.72619,0.94599 -0.94156,-0.63066 0.6277,-1.89199 1.88312,-2.99564 1.09849,-1.10366 -1.88312,-1.41899 -2.04004,0.78833 -2.82468,1.89198 -7.21862,3.15332 -2.82468,0.63066 -2.82468,-0.473 -0.95298,-0.85655 -2.05472,2.76512 -0.22192,2.67567 0,8.25001 -1.10965,1.56081 -5.10434,3.79053 -2.21927,5.79731 0.44385,0.22297 2.44121,2.00676 0.66578,3.12162 -1.77543,3.12162 0,3.79055 0.44386,6.46621 2.88506,2.89866 3.32893,0 1.77542,3.12162 3.32891,0.44594 3.77278,5.57433 6.87976,4.01352 1.99735,2.67567 0.88772,7.24664 0.66578,3.23309 2.21928,1.56082 0.22192,1.33784 -1.99735,3.34459 0.22193,3.12163 2.44121,3.79054 2.44121,1.11486 2.88506,0.44595 1.19287,2.45272 8.90487,-2e-5 25.85458,-1.56081 9.54289,-1.11487 z",5,1,5,2,6,2,5,2,11,4,abcbcbcdefedefaf,0,0.75 WV,West Virginia,W.Va.,54,1852994,24229.76,"m 596.35917,195.33621 0.85452,3.79959 0.74536,4.34796 0.24846,-0.24846 1.61496,-1.86341 1.73918,-2.36032 1.86341,-0.12423 1.11805,-1.11804 1.3665,-1.98764 0.99382,0.49691 2.23609,-0.24846 1.98765,-1.61495 1.54218,-1.11676 1.41797,-0.37268 1.26358,0.8683 2.23609,1.11805 1.49073,1.3665 1.05594,0.99382 -0.80748,3.85105 -4.34797,-2.36033 -3.47836,-1.3665 -0.12423,4.09951 -0.37268,1.61496 -1.24227,2.11187 -0.49692,1.24227 -2.36032,1.86341 -0.37268,1.73919 -2.60878,0.24846 -0.24846,2.36031 -0.86959,4.22374 -1.98763,0 -0.99382,-0.62114 -1.24228,-2.11187 -1.3665,0.12423 -0.24846,3.35414 -1.61495,5.09333 -3.85106,8.32324 0.62114,0.99382 -0.12423,2.11187 -1.61495,1.49072 -1.11805,-0.24845 -2.48455,1.86342 -1.98764,-0.74537 -1.3665,3.60259 c 0,0 -2.85723,0.62114 -3.35414,0.74537 -0.49691,0.12423 -1.86341,-0.99382 -1.86341,-0.99382 l -1.86342,1.73918 -1.98764,0.49692 -2.2361,-0.62114 -0.99381,-0.99382 -1.68461,-2.32329 -2.4149,-1.52776 -1.98764,-2.11187 -2.23609,-2.85723 -0.49691,-1.73919 -1.98764,-1.11804 -0.62114,-1.24228 -0.18635,-4.0374 1.67708,-0.0621 1.49073,-0.62114 0.12423,-2.11186 1.24227,-1.11805 0.12423,-3.85105 0.74536,-2.98146 0.99382,-0.49691 0.99382,0.86959 0.37269,1.3665 1.3665,-0.74536 0.37268,-1.24228 -0.86959,-1.3665 0,-1.86341 0.74537,-0.99382 1.73918,-2.60878 0.99382,-1.11804 1.61496,0.37268 1.73918,-1.24228 2.36032,-2.60877 1.73919,-2.98147 0.24845,-4.34795 0.37269,-3.85106 0,-3.6026 -0.8696,-2.36031 0.74537,-1.11806 0.98628,-0.99382 2.68284,15.23607 3.55868,-0.57722 9.55798,-1.19082 z",4,582.16223,221.07581,middle,,"m 733.32623,252.6207 1.07944,4.82233 0.94156,5.5183 0.31386,-0.31533 2.04005,-2.36498 2.19697,-2.99566 2.3539,-0.15767 1.41235,-1.41899 1.72619,-2.52265 1.25542,0.63067 2.82467,-0.31534 2.51084,-2.04965 1.94812,-1.41735 1.7912,-0.473 1.59619,1.10202 2.82468,1.41899 1.88312,1.73433 1.33388,1.26132 -1.02002,4.88764 -5.49245,-2.99565 -4.39394,-1.73432 -0.15693,5.20297 -0.47078,2.04965 -1.56926,2.68033 -0.62772,1.57666 -2.9816,2.36498 -0.47078,2.20733 -3.29547,0.31533 -0.31385,2.99565 -1.09849,5.36064 -2.51083,0 -1.25541,-0.78833 -1.56927,-2.68032 -1.7262,0.15766 -0.31385,4.25698 -2.04004,6.4643 -4.86474,10.56362 0.78463,1.26133 -0.15692,2.68031 -2.04005,1.89199 -1.41234,-0.31533 -3.13854,2.36499 -2.51082,-0.94599 -1.72619,4.5723 c 0,0 -3.60933,0.78833 -4.23703,0.946 -0.62771,0.15766 -2.3539,-1.26133 -2.3539,-1.26133 l -2.35391,2.20732 -2.51082,0.63067 -2.82469,-0.78834 -1.25541,-1.26132 -2.12803,-2.94865 -3.05056,-1.93899 -2.51083,-2.68032 -2.82467,-3.62631 -0.62771,-2.20733 -2.51084,-1.41899 -0.78463,-1.57666 -0.23539,-5.12414 2.11851,-0.0788 1.88313,-0.78833 0.15693,-2.68032 1.56926,-1.419 0.15693,-4.88763 0.94156,-3.78399 1.25541,-0.63066 1.25541,1.10366 0.47079,1.73432 1.72619,-0.94599 0.47078,-1.57666 -1.09848,-1.73432 0,-2.36499 0.94156,-1.26133 2.19697,-3.31098 1.25541,-1.41899 2.04006,0.473 2.19697,-1.57667 2.9816,-3.31097 2.19699,-3.78399 0.31385,-5.5183 0.47078,-4.88764 0,-4.57231 -1.09849,-2.99565 0.94156,-1.419 1.24589,-1.26133 3.38902,19.33716 4.49541,-0.73258 12.07384,-1.51135 z",6,4,7,4,8,4,7,4,16,8,abcbcdcdefefaf,0,1 WY,Wyoming,Wyo.,56,563626,97813.56,"m 287.0746,120.00474 -8.84636,-0.74348 -24.65788,-2.53236 -12.47357,-1.58115 -21.78483,-3.16232 -15.28451,-2.28389 -1.09049,8.58812 -2.95024,18.64291 -4.04074,23.36598 -1.17649,8.08111 -1.28308,9.13593 5.01324,0.7134 12.97747,1.75684 6.78609,0.90412 15.80625,1.89612 28.63624,3.16229 18.79846,1.58118 3.338,-34.08271 1.22978,-19.50094 1.00266,-13.94115 z",3,241.82925,151.55153,middle,,"m 342.63136,157.01221 -11.1749,-0.9436 -31.14836,-3.21399 -15.75689,-2.00676 -27.51905,-4.01351 -19.30772,-2.89865 -1.37753,10.89979 -3.72681,23.66103 -5.10435,29.65542 -1.48616,10.25631 -1.62082,11.59504 6.33283,0.90543 16.39342,2.22973 8.57233,1.14749 19.96679,2.40649 36.17392,4.01349 23.74661,2.00679 4.21663,-43.25678 1.55348,-24.75001 1.26658,-17.69371 z",2,3,2,3,3,3,2,3,7,8,ababcdcdedefaf,0.25,0.5 PKccISOP6chorogrid/databases/usa_states_column_descriptions.txtabbrev Postal abbreviation for 50 states and D.C. full_name Full name long_abbrev Abbreviation, based on but not identical to recommendations of Associated Press FIPS Federal Information Processing Standards pop Population in 2013 sqmi Area in square miles map_path SVG path for geographic map map_fill_default Number, 1-4, so that no states sharing a border will have same fill map_label_x X-coordinate for map label, e.g. state name map_label_y Y-coordinate for map label map_label_text_anchor Text anchor (start, middle, end) for label map_label_line_path Path for line connecting state and label, if applicable altmap_path Alternate SVG path, without labels square_x Horizontal position of square grid square_y Vertical position of square grid altsquare_x Alternate horizontal position of square grid altsquare_y Alternate vertical position of square grid hex_x Horizontal position of hex grid hex_y Vertical position of hex grid fourhex_x Horizontal position of topmost, then leftmost, hex in four-hex multihex layout fourhex_y Vertical position of topmost, then leftmost, hex in four-hex multihex layout fourhex_contour Contour of four-hex layout: a=up&right, b=down&right, c=down, d=down&left, e=up&left, f=up fourhex_label_offset_x Horizontal offset of label, in terms of hex width fourhex_label_offset_y Vertical offset of label, in terms of hex width PKccIU8f .chorogrid/sample_data/TRANSPOSITION_338FED.csv"'" "Transposition of votes by federal electoral district (FED) from the 2003 to the 2013 Representation Order" "Voting results - May 2, 2011 general election" "Province and territory numeric code","2013 FED Number","2013 FED Name","2003 FED Number from which the 2013 FED Number is constituted","2003 FED from which the 2013 FED Name is constituted","2013 FED - Population","2003 FED - 2011 Population","Population transferred to 2013 FED","Polling divisions transferred - Poll type","Polling divisions transferred - % transferred","Polling divisions transferred - From no.","Polling divisions transferred - To no.","Polling divisions transferred - Total polls","Electors on lists","All votes","Conservative votes","NDP-New Democratic Party votes","Liberal votes","Bloc Qubcois votes","Green Party votes","Other votes" 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"A.P.",9.1,602.0,617.0,2,0,14,4,1,9,0,0,0 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"A.P.",38,609.0,609.0,1,0,45,30,5,10,0,1,0 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"A.P.",67,619.0,619.0,1,0,46,18,4,24,0,0,0 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"A.P.",100,603.0,621.0,15,0,2335,1046,194,1069,0,15,11 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"M.P.",33,508.0,508.0,1,47,33,15,3,14,0,0,1 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"M.P.",67,507.0,507.0,1,57,49,23,2,21,0,1,1 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"M.P.",100,501.0,509.0,6,571,293,86,21,174,0,6,6 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"O.P.",0.4,159.0,159.0,1,1,1,0,0,0,0,0,0 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"O.P.",100,40.0,210.0,154,47229,23403,9851,3592,9656,0,126,178 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"SVR1",75,.,.,".",287,102,64,8,27,0,1,1 10,10001,"Avalon",10001,"Avalon",81540,78908,59548,"SVR2",75,.,.,".",0,478,203,28,241,0,3,2 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"A.P.",43,612.0,612.0,1,0,121,30,84,8,0,0,0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"A.P.",77,603.0,603.0,1,0,236,54,160,19,0,2,0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"A.P.",100,610.0,610.0,1,0,479,98,343,32,0,6,0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"M.P.",100,501.0,501.0,1,222,124,37,54,30,0,3,0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"O.P.",71,41.1,41.1,1,236,105,19,78,6,0,2,-0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"O.P.",100,39.0,155.0,36,15618,7488,1551,5441,443,0,53,0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"SVR1",21,.,.,".",100,42,21,11,8,0,2,0 10,10001,"Avalon",10006,"St. John's East",81540,100559,21992,"SVR2",21,.,.,".",0,232,64,135,29,0,4,0 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"A.P.",33,619.0,619.0,1,0,23,9,2,12,0,0,0 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"A.P.",91,602.0,617.0,2,0,143,39,7,92,0,4,1 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"A.P.",100,600.0,618.0,3,0,252,72,19,158,0,1,2 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"M.P.",33,507.0,507.0,1,29,24,12,1,11,0,0,1 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"M.P.",100,500.0,500.0,1,89,51,15,5,30,0,0,1 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"O.P.",100,1.0,61.0,56,13997,7633,2486,1050,3988,0,49,60 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"SVR1",22,.,.,".",85,30,19,2,8,0,0,0 10,10002,"Bonavista--Burin--Trinity",10001,"Avalon",76704,78908,16898,"SVR2",22,.,.,".",0,141,60,8,71,0,1,1 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"A.P.",0.1,609.0,609.0,1,0,0,0,0,0,0,0,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"A.P.",64,604.0,604.0,1,0,17,9,3,5,0,1,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"A.P.",100,605.0,615.0,6,0,465,107,62,290,0,6,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"M.P.",33,500.0,500.0,1,41,24,6,0,17,0,0,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"M.P.",100,502.0,506.0,3,342,177,48,7,120,0,2,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"O.P.",1.0,130.0,130.0,1,1,1,0,0,0,0,0,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"O.P.",100,66.0,229.1,84,22953,8910,2449,1357,5013,0,91,0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"SVR1",34,.,.,".",159,53,31,4,18,0,1,-0 10,10002,"Bonavista--Burin--Trinity",10002,"Bonavista - Gander - Grand Falls - Windsor",76704,84735,27780,"SVR2",34,.,.,".",0,182,52,13,115,0,1,0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"A.P.",100,614.0,614.0,1,0,33,14,2,17,0,0,-0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"A.P.",100,612.0,620.0,7,0,610,202,60,342,0,6,0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"M.P.",100,501.0,503.0,3,278,200,57,6,135,0,2,0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"O.P.",94,117.0,117.0,1,176,111,45,16,49,0,1,0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"O.P.",100,117.1,219.0,97,25111,11439,3552,1653,6135,0,99,0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"SVR1",45,.,.,".",347,112,66,7,35,0,4,0 10,10002,"Bonavista--Burin--Trinity",10005,"Random - Burin - St. George's",76704,69192,32026,"SVR2",45,.,.,".",0,227,62,18,145,0,2,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"A.P.",36,604.0,604.0,1,0,9,5,1,3,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"A.P.",100,609.0,609.0,1,0,196,43,21,132,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"A.P.",100,600.0,616.0,9,0,1404,399,138,855,0,12,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"M.P.",67,500.0,500.0,1,83,47,12,1,35,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"M.P.",100,501.0,507.0,4,364,208,47,21,138,0,2,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"O.P.",99,130.0,130.0,1,110,50,25,1,24,0,1,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"O.P.",100,1.0,180.1,132,45568,18950,5198,2643,10951,0,158,0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"SVR1",66,.,.,".",315,105,60,8,35,0,1,-0 10,10003,"Coast of Bays--Central--Notre Dame",10002,"Bonavista - Gander - Grand Falls - Windsor",78092,84735,56955,"SVR2",66,.,.,".",0,359,104,26,227,0,3,-0 10,10003,"Coast of Bays--Central--Notre Dame",10003,"Humber - St. Barbe - Baie Verte",78092,71563,13878,"A.P.",100,605.0,608.0,4,0,204,84,22,93,0,5,0 10,10003,"Coast of Bays--Central--Notre Dame",10003,"Humber - St. Barbe - Baie Verte",78092,71563,13878,"M.P.",100,506.0,508.0,2,122,81,23,9,41,0,3,5 10,10003,"Coast of Bays--Central--Notre Dame",10003,"Humber - St. Barbe - Baie Verte",78092,71563,13878,"O.P.",100,73.0,114.0,42,11175,4486,1802,713,1871,0,32,68 10,10003,"Coast of Bays--Central--Notre Dame",10003,"Humber - St. Barbe - Baie Verte",78092,71563,13878,"SVR1",19,.,.,".",116,38,25,2,10,0,0,1 10,10003,"Coast of Bays--Central--Notre Dame",10003,"Humber - St. Barbe - Baie Verte",78092,71563,13878,"SVR2",19,.,.,".",0,107,28,13,64,0,1,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"A.P.",0.5,614.0,614.0,1,0,0,0,0,0,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"A.P.",33,608.0,608.0,1,0,12,3,1,9,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"A.P.",100,610.0,615.0,3,0,102,41,15,46,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"O.P.",5.9,117.0,117.0,1,11,7,3,1,3,0,0,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"O.P.",100,94.0,156.0,25,6170,2330,793,278,1225,0,34,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"SVR1",11,.,.,".",84,27,16,2,8,0,1,0 10,10003,"Coast of Bays--Central--Notre Dame",10005,"Random - Burin - St. George's",78092,69192,7259,"SVR2",11,.,.,".",0,55,15,4,35,0,0,0 10,10004,"Labrador",10004,"Labrador",26728,26728,26728,"A.P.",100,600.0,618.0,18,0,987,568,67,345,0,7,0 10,10004,"Labrador",10004,"Labrador",26728,26728,26728,"M.P.",100,500.0,501.0,2,88,58,12,3,40,0,3,0 10,10004,"Labrador",10004,"Labrador",26728,26728,26728,"O.P.",100,1.0,65.0,62,19995,9300,3512,2025,3641,0,122,0 10,10004,"Labrador",10004,"Labrador",26728,26728,26728,"SVR1",100,.,.,".",222,101,51,10,38,0,2,0 10,10004,"Labrador",10004,"Labrador",26728,26728,26728,"SVR2",100,.,.,".",0,246,113,15,113,0,5,0 10,10005,"Long Range Mountains",10003,"Humber - St. Barbe - Baie Verte",87592,71563,57685,"A.P.",100,600.0,619.0,16,0,1495,369,205,902,0,10,9 10,10005,"Long Range Mountains",10003,"Humber - St. Barbe - Baie Verte",87592,71563,57685,"M.P.",100,500.0,507.0,7,403,253,48,22,170,0,3,10 10,10005,"Long Range Mountains",10003,"Humber - St. Barbe - Baie Verte",87592,71563,57685,"O.P.",100,1.0,189.0,156,46808,22747,4963,3700,13656,0,192,236 10,10005,"Long Range Mountains",10003,"Humber - St. Barbe - Baie Verte",87592,71563,57685,"SVR1",81,.,.,".",485,158,102,10,43,0,1,2 10,10005,"Long Range Mountains",10003,"Humber - St. Barbe - Baie Verte",87592,71563,57685,"SVR2",81,.,.,".",0,445,115,55,269,0,6,1 10,10005,"Long Range Mountains",10005,"Random - Burin - St. George's",87592,69192,29907,"A.P.",67,608.0,608.0,1,0,24,5,1,17,0,0,0 10,10005,"Long Range Mountains",10005,"Random - Burin - St. George's",87592,69192,29907,"A.P.",100,600.0,609.0,9,0,552,184,89,274,0,5,0 10,10005,"Long Range Mountains",10005,"Random - Burin - St. George's",87592,69192,29907,"M.P.",100,500.0,500.0,1,101,53,19,4,30,0,0,0 10,10005,"Long Range Mountains",10005,"Random - Burin - St. George's",87592,69192,29907,"O.P.",100,1.0,93.0,86,24939,9783,3119,2283,4233,0,148,0 10,10005,"Long Range Mountains",10005,"Random - Burin - St. George's",87592,69192,29907,"SVR1",44,.,.,".",340,109,65,7,34,0,4,0 10,10005,"Long Range Mountains",10005,"Random - Burin - St. George's",87592,69192,29907,"SVR2",44,.,.,".",0,222,61,18,142,0,2,0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"A.P.",23,603.0,603.0,1,0,72,17,49,6,0,1,-0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"A.P.",57,612.0,612.0,1,0,162,40,111,10,0,0,0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"A.P.",100,600.0,613.0,11,0,3398,761,2296,299,0,42,0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"M.P.",100,500.0,504.0,4,843,489,154,231,99,0,5,0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"O.P.",29,41.1,41.1,1,96,42,7,32,2,0,1,0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"O.P.",100,1.0,138.0,155,58935,30062,6032,21817,1890,0,323,0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"SVR1",79,.,.,".",374,156,77,41,31,0,7,-0 10,10006,"St. John's East",10006,"St. John's East",81936,100559,78567,"SVR2",79,.,.,".",0,864,236,505,107,0,16,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"A.P.",39,600.0,600.0,1,0,153,22,72,57,0,2,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"M.P.",33,501.0,501.0,1,45,23,9,6,8,0,0,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"O.P.",96,7.0,7.0,1,344,174,20,108,44,0,2,-0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"O.P.",96,5.0,5.0,1,389,187,9,117,59,0,2,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"O.P.",97,10.0,10.0,1,235,78,7,62,9,0,0,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"O.P.",100,1.0,1.0,1,431,202,24,137,38,0,3,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"O.P.",100,2.0,9.1,4,1559,742,104,445,182,0,11,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"SVR1",4.5,.,.,".",22,9,6,2,2,0,0,0 10,10006,"St. John's East",10007,"St. John's South - Mount Pearl",81936,82851,3369,"SVR2",4.5,.,.,".",0,45,13,11,21,0,0,-0 10,10007,"St. John's South--Mount Pearl",10001,"Avalon",81944,78908,2462,"A.P.",62,609.0,609.0,1,0,76,49,7,17,0,2,0 10,10007,"St. John's South--Mount Pearl",10001,"Avalon",81944,78908,2462,"M.P.",67,508.0,508.0,1,95,66,30,6,28,0,1,1 10,10007,"St. John's South--Mount Pearl",10001,"Avalon",81944,78908,2462,"O.P.",100,159.0,159.0,1,255,161,76,26,57,0,1,2 10,10007,"St. John's South--Mount Pearl",10001,"Avalon",81944,78908,2462,"O.P.",100,160.0,163.0,4,1670,985,530,163,280,0,6,6 10,10007,"St. John's South--Mount Pearl",10001,"Avalon",81944,78908,2462,"SVR1",3.2,.,.,".",12,4,3,0,1,0,0,0 10,10007,"St. John's South--Mount Pearl",10001,"Avalon",81944,78908,2462,"SVR2",3.2,.,.,".",0,20,9,1,10,0,0,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"A.P.",61,600.0,600.0,1,0,235,34,110,88,0,3,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"A.P.",100,601.0,612.0,12,0,3369,887,1229,1231,0,22,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"M.P.",67,501.0,501.0,1,91,47,19,12,15,0,1,-0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"M.P.",100,500.0,503.0,3,363,252,88,35,129,0,0,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"O.P.",0.4,1.0,1.0,1,2,1,0,1,0,0,0,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"O.P.",2.8,10.0,10.0,1,7,2,0,2,0,0,0,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"O.P.",3.8,5.0,5.0,1,15,7,0,5,2,0,0,-0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"O.P.",4.5,7.0,7.0,1,16,8,1,5,2,0,0,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"O.P.",100,3.0,400.0,175,63049,32300,7249,16060,8759,0,232,0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"SVR1",95,.,.,".",457,199,117,32,44,0,5,-0 10,10007,"St. John's South--Mount Pearl",10007,"St. John's South - Mount Pearl",81944,82851,79482,"SVR2",95,.,.,".",0,952,274,230,440,0,8,0 11,11001,"Cardigan",11001,"Cardigan",36005,36005,36005,"A.P.",100,600.0,606.0,7,0,3564,1457,235,1821,0,51,0 11,11001,"Cardigan",11001,"Cardigan",36005,36005,36005,"M.P.",100,500.0,503.0,4,391,264,106,16,136,0,6,0 11,11001,"Cardigan",11001,"Cardigan",36005,36005,36005,"O.P.",100,1.0,73.0,73,27040,16612,6257,1877,8176,0,302,0 11,11001,"Cardigan",11001,"Cardigan",36005,36005,36005,"SVR1",100,.,.,".",150,75,45,3,25,0,2,0 11,11001,"Cardigan",11001,"Cardigan",36005,36005,36005,"SVR2",100,.,.,".",0,615,242,33,328,0,12,0 11,11002,"Charlottetown",11002,"Charlottetown",34562,34562,34562,"A.P.",100,600.0,604.0,5,0,2566,816,479,1227,0,40,4 11,11002,"Charlottetown",11002,"Charlottetown",34562,34562,34562,"M.P.",100,500.0,502.0,3,637,396,144,69,164,0,5,14 11,11002,"Charlottetown",11002,"Charlottetown",34562,34562,34562,"O.P.",100,1.0,74.0,74,25934,14664,4763,3986,5491,0,355,69 11,11002,"Charlottetown",11002,"Charlottetown",34562,34562,34562,"SVR1",100,.,.,".",189,98,60,5,29,0,4,0 11,11002,"Charlottetown",11002,"Charlottetown",34562,34562,34562,"SVR2",100,.,.,".",0,744,257,93,381,0,13,0 11,11003,"Egmont",11003,"Egmont",34598,34598,34598,"A.P.",100,600.0,607.0,8,0,3806,2202,269,1294,0,41,0 11,11003,"Egmont",11003,"Egmont",34598,34598,34598,"M.P.",100,500.0,501.0,2,442,266,136,24,104,0,2,0 11,11003,"Egmont",11003,"Egmont",34598,34598,34598,"O.P.",100,1.0,75.0,75,26555,14499,7797,2039,4395,0,268,0 11,11003,"Egmont",11003,"Egmont",34598,34598,34598,"SVR1",100,.,.,".",200,93,69,4,18,0,2,0 11,11003,"Egmont",11003,"Egmont",34598,34598,34598,"SVR2",100,.,.,".",0,489,263,33,186,0,7,0 11,11004,"Malpeque",11004,"Malpeque",35039,35039,35039,"A.P.",100,600.0,605.0,6,0,3265,1339,304,1520,0,102,0 11,11004,"Malpeque",11004,"Malpeque",35039,35039,35039,"M.P.",100,500.0,500.0,1,152,78,30,5,41,0,2,0 11,11004,"Malpeque",11004,"Malpeque",35039,35039,35039,"O.P.",100,1.0,71.0,71,26635,16414,6363,2623,6767,0,661,0 11,11004,"Malpeque",11004,"Malpeque",35039,35039,35039,"SVR1",100,.,.,".",131,63,36,3,24,0,0,0 11,11004,"Malpeque",11004,"Malpeque",35039,35039,35039,"SVR2",100,.,.,".",0,474,166,35,253,0,20,0 12,12001,"Cape Breton--Canso",12001,"Cape Breton - Canso",75247,68435,68435,"A.P.",100,600.0,613.0,14,0,3652,1113,500,1938,0,101,0 12,12001,"Cape Breton--Canso",12001,"Cape Breton - Canso",75247,68435,68435,"M.P.",100,500.0,503.0,4,489,246,85,23,128,0,10,0 12,12001,"Cape Breton--Canso",12001,"Cape Breton - Canso",75247,68435,68435,"O.P.",100,1.0,183.0,183,56279,30552,9366,6376,13816,0,994,0 12,12001,"Cape Breton--Canso",12001,"Cape Breton - Canso",75247,68435,68435,"SVR1",100,.,.,".",563,189,117,12,53,0,7,0 12,12001,"Cape Breton--Canso",12001,"Cape Breton - Canso",75247,68435,68435,"SVR2",100,.,.,".",0,837,192,73,543,0,29,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"A.P.",19,608.0,608.0,1,0,115,56,16,38,0,4,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"A.P.",91,621.0,621.0,1,0,104,56,19,22,0,7,-0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"A.P.",100,610.0,610.0,1,0,202,125,21,48,0,8,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"O.P.",35,125.0,125.0,1,111,73,39,18,13,0,2,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"O.P.",55,126.0,126.0,1,215,110,56,31,20,0,3,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"O.P.",73,123.0,123.0,1,394,250,130,63,49,0,7,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"O.P.",100,126.1,152.0,15,4585,2591,1337,654,512,0,88,0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"SVR1",9.2,.,.,".",30,14,10,1,2,0,1,-0 12,12001,"Cape Breton--Canso",12002,"Central Nova",75247,72114,6812,"SVR2",9.2,.,.,".",0,63,37,10,14,0,3,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"A.P.",8.9,621.0,621.0,1,0,10,5,2,2,0,1,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"A.P.",81,608.0,608.0,1,0,480,235,69,158,0,19,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"A.P.",100,600.0,622.0,20,0,3868,2228,733,745,0,162,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"M.P.",100,500.0,505.0,6,672,389,183,45,150,0,11,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"O.P.",27,123.0,123.0,1,144,91,48,23,18,0,3,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"O.P.",45,126.0,126.0,1,173,89,45,25,17,0,2,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"O.P.",65,125.0,125.0,1,201,132,71,34,23,0,5,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"O.P.",100,1.0,400.0,169,51143,28681,16469,7542,3624,0,1046,0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"SVR1",91,.,.,".",295,141,99,12,25,0,5,-0 12,12002,"Central Nova",12002,"Central Nova",74597,72114,65302,"SVR2",91,.,.,".",0,622,364,94,134,0,29,0 12,12002,"Central Nova",12007,"Cumberland - Colchester - Musquodoboit Valley",74597,87982,5358,"A.P.",86,614.0,614.0,1,0,91,33,33,20,0,3,2 12,12002,"Central Nova",12007,"Cumberland - Colchester - Musquodoboit Valley",74597,87982,5358,"A.P.",100,613.0,613.0,1,0,121,73,24,21,0,3,0 12,12002,"Central Nova",12007,"Cumberland - Colchester - Musquodoboit Valley",74597,87982,5358,"O.P.",100,193.0,208.0,15,4135,2141,948,772,282,0,84,55 12,12002,"Central Nova",12007,"Cumberland - Colchester - Musquodoboit Valley",74597,87982,5358,"SVR1",6.0,.,.,".",29,11,7,1,3,0,1,0 12,12002,"Central Nova",12007,"Cumberland - Colchester - Musquodoboit Valley",74597,87982,5358,"SVR2",6.0,.,.,".",0,45,26,5,12,0,2,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"A.P.",8.4,613.0,613.0,1,0,46,14,24,5,0,2,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"A.P.",100,614.0,614.0,1,0,225,55,115,39,0,16,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"M.P.",33,500.0,500.0,1,42,21,5,10,4,0,2,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"O.P.",0.7,171.0,171.0,1,2,1,0,1,0,0,0,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"O.P.",1.4,167.0,167.0,1,5,3,1,1,0,0,0,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"O.P.",29,161.0,161.0,1,112,53,16,31,4,0,3,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"O.P.",37,165.0,165.0,1,92,48,11,30,4,0,4,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"O.P.",100,166.0,178.0,9,2853,1528,541,781,129,0,77,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"SVR1",4.5,.,.,".",62,19,11,5,2,0,1,0 12,12002,"Central Nova",12008,"Sackville - Eastern Shore",74597,91266,3937,"SVR2",4.5,.,.,".",0,19,6,10,3,0,0,0 12,12003,"Cumberland--Colchester",12007,"Cumberland - Colchester - Musquodoboit Valley",82321,87982,82321,"A.P.",100,600.0,616.0,15,0,5158,2881,795,1237,0,210,35 12,12003,"Cumberland--Colchester",12007,"Cumberland - Colchester - Musquodoboit Valley",82321,87982,82321,"M.P.",100,500.0,508.0,9,815,506,261,92,127,0,19,7 12,12003,"Cumberland--Colchester",12007,"Cumberland - Colchester - Musquodoboit Valley",82321,87982,82321,"O.P.",100,1.0,192.0,196,63552,31001,16225,7454,5308,0,1749,265 12,12003,"Cumberland--Colchester",12007,"Cumberland - Colchester - Musquodoboit Valley",82321,87982,82321,"SVR1",94,.,.,".",453,174,103,16,46,0,8,1 12,12003,"Cumberland--Colchester",12007,"Cumberland - Colchester - Musquodoboit Valley",82321,87982,82321,"SVR2",94,.,.,".",0,707,405,82,185,0,29,7 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"A.P.",100,608.0,608.0,1,0,724,184,179,346,0,15,0 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"A.P.",100,600.0,609.0,9,0,6475,1586,1786,2880,0,223,0 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"M.P.",100,500.0,506.0,7,860,599,206,179,205,0,9,0 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"O.P.",99,22.1,22.1,1,204,98,21,41,33,0,4,0 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"O.P.",100,1.0,400.0,197,68168,33849,8162,13177,11148,0,1362,0 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"SVR1",100,.,.,".",1523,568,333,65,147,0,23,0 12,12004,"Dartmouth--Cole Harbour",12003,"Dartmouth - Cole Harbour",91212,89163,89163,"SVR2",100,.,.,".",0,909,210,251,422,0,26,0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"A.P.",14,609.0,609.0,1,0,59,15,33,8,0,2,-0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"A.P.",16,608.0,608.0,1,0,59,20,30,9,0,1,0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"O.P.",0.9,113.0,113.0,1,3,2,1,1,0,0,0,0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"O.P.",51,108.0,108.0,1,167,91,31,42,16,0,3,0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"O.P.",100,109.0,123.0,4,1177,550,236,236,63,0,15,0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"SVR1",2.0,.,.,".",27,8,5,2,1,0,0,0 12,12004,"Dartmouth--Cole Harbour",12008,"Sackville - Eastern Shore",91212,91266,2049,"SVR2",2.0,.,.,".",0,8,3,4,1,0,0,-0 12,12005,"Halifax",12004,"Halifax",92643,92515,92515,"A.P.",100,600.0,611.0,12,0,6928,1178,3123,2347,0,268,12 12,12005,"Halifax",12004,"Halifax",92643,92515,92515,"M.P.",100,500.0,502.0,3,392,247,86,81,73,0,7,0 12,12005,"Halifax",12004,"Halifax",92643,92515,92515,"O.P.",100,1.0,413.0,224,72009,37107,6622,19831,8855,0,1666,133 12,12005,"Halifax",12004,"Halifax",92643,92515,92515,"SVR1",100,.,.,".",956,411,158,108,123,0,20,2 12,12005,"Halifax",12004,"Halifax",92643,92515,92515,"SVR2",100,.,.,".",0,1294,232,603,395,0,59,5 12,12005,"Halifax",12005,"Halifax West",92643,97710,128,"A.P.",1.4,608.0,608.0,1,0,7,2,2,2,0,0,0 12,12005,"Halifax",12005,"Halifax West",92643,97710,128,"O.P.",19,130.0,130.0,1,77,38,14,13,9,0,2,0 12,12005,"Halifax",12005,"Halifax West",92643,97710,128,"SVR1",0.1,.,.,".",1,0,0,0,0,0,0,0 12,12005,"Halifax",12005,"Halifax West",92643,97710,128,"SVR2",0.1,.,.,".",0,1,0,0,1,0,0,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"A.P.",76,607.0,607.0,1,0,663,205,174,255,0,30,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"A.P.",100,600.0,606.0,7,0,6128,2014,1078,2815,0,221,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"M.P.",100,500.0,502.0,3,264,198,90,45,60,0,3,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"O.P.",73,125.0,125.0,1,247,146,56,41,44,0,4,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"O.P.",100,1.0,402.0,149,63528,31440,9191,9814,11111,0,1324,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"SVR1",89,.,.,".",785,307,183,38,71,0,14,0 12,12006,"Halifax West",12005,"Halifax West",87275,97710,87275,"SVR2",89,.,.,".",0,897,266,127,468,0,36,0 12,12007,"Kings--Hants",12006,"Kings - Hants",83306,83306,83306,"A.P.",100,600.0,615.0,16,0,5284,1890,787,2437,0,170,0 12,12007,"Kings--Hants",12006,"Kings - Hants",83306,83306,83306,"M.P.",100,500.0,502.0,3,488,279,121,25,125,0,8,0 12,12007,"Kings--Hants",12006,"Kings - Hants",83306,83306,83306,"O.P.",100,1.0,176.0,197,64309,33778,12364,7134,12964,0,1316,0 12,12007,"Kings--Hants",12006,"Kings - Hants",83306,83306,83306,"SVR1",100,.,.,".",558,227,142,17,61,0,7,0 12,12007,"Kings--Hants",12006,"Kings - Hants",83306,83306,83306,"SVR2",100,.,.,".",0,596,197,80,300,0,19,0 12,12008,"Sackville--Preston--Chezzetcook",12003,"Dartmouth - Cole Harbour",85583,89163,0,"A.P.",0.0,608.0,608.0,1,0,0,0,0,0,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12003,"Dartmouth - Cole Harbour",85583,89163,0,"O.P.",0.6,22.1,22.1,1,1,1,0,0,0,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12003,"Dartmouth - Cole Harbour",85583,89163,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12003,"Dartmouth - Cole Harbour",85583,89163,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12007,"Cumberland - Colchester - Musquodoboit Valley",85583,87982,303,"A.P.",14,614.0,614.0,1,0,15,6,6,3,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12007,"Cumberland - Colchester - Musquodoboit Valley",85583,87982,303,"O.P.",100,209.0,209.0,1,203,137,72,41,20,0,1,3 12,12008,"Sackville--Preston--Chezzetcook",12007,"Cumberland - Colchester - Musquodoboit Valley",85583,87982,303,"SVR1",0.3,.,.,".",1,1,0,0,0,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12007,"Cumberland - Colchester - Musquodoboit Valley",85583,87982,303,"SVR2",0.3,.,.,".",0,2,1,0,1,0,0,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"A.P.",84,608.0,608.0,1,0,317,105,158,46,0,7,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"A.P.",86,609.0,609.0,1,0,351,93,201,45,0,13,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"A.P.",92,613.0,613.0,1,0,501,155,265,60,0,22,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"A.P.",100,600.0,612.0,11,0,4531,1401,2366,613,0,151,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"M.P.",67,500.0,500.0,1,85,41,9,20,9,0,3,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",49,108.0,108.0,1,161,88,29,41,15,0,2,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",63,165.0,165.0,1,157,82,18,51,6,0,6,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",71,161.0,161.0,1,269,128,38,73,10,0,6,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",99,167.0,167.0,1,336,185,66,89,19,0,12,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",99,113.0,113.0,1,373,189,70,82,22,0,15,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",99,171.0,171.0,1,251,143,38,89,9,0,7,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"O.P.",100,2.0,400.0,196,62876,31501,9318,17389,3431,0,1363,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"SVR1",94,.,.,".",1280,389,224,105,43,0,18,0 12,12008,"Sackville--Preston--Chezzetcook",12008,"Sackville - Eastern Shore",85583,91266,85280,"SVR2",94,.,.,".",0,394,128,198,57,0,10,0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"A.P.",24,607.0,607.0,1,0,209,64,55,80,0,9,0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"A.P.",99,608.0,608.0,1,0,451,142,119,158,0,33,0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"O.P.",27,125.0,125.0,1,93,55,21,16,17,0,2,0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"O.P.",81,130.0,130.0,1,334,164,60,55,39,0,10,-0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"O.P.",100,125.1,143.0,17,7437,4330,1418,1641,1034,0,237,0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"SVR1",11,.,.,".",96,38,23,5,9,0,2,0 12,12009,"South Shore--St. Margarets",12005,"Halifax West",92561,97710,10307,"SVR2",11,.,.,".",0,110,33,16,57,0,4,0 12,12009,"South Shore--St. Margarets",12009,"South Shore - St. Margaret's",92561,82254,82254,"A.P.",100,600.0,616.0,17,0,4469,1913,1330,1089,0,137,0 12,12009,"South Shore--St. Margarets",12009,"South Shore - St. Margaret's",92561,82254,82254,"M.P.",100,500.0,503.0,4,812,329,179,52,89,0,9,0 12,12009,"South Shore--St. Margarets",12009,"South Shore - St. Margaret's",92561,82254,82254,"O.P.",100,1.0,191.0,188,66100,35720,15421,13358,5546,0,1395,0 12,12009,"South Shore--St. Margarets",12009,"South Shore - St. Margaret's",92561,82254,82254,"SVR1",100,.,.,".",384,156,89,20,40,0,7,0 12,12009,"South Shore--St. Margarets",12009,"South Shore - St. Margaret's",92561,82254,82254,"SVR2",100,.,.,".",0,923,346,273,273,0,31,0 12,12010,"Sydney--Victoria",12010,"Sydney - Victoria",73328,73328,73328,"A.P.",100,600.0,621.0,22,0,6742,2782,845,2962,0,153,0 12,12010,"Sydney--Victoria",12010,"Sydney - Victoria",73328,73328,73328,"M.P.",100,500.0,503.0,4,453,226,85,33,103,0,5,0 12,12010,"Sydney--Victoria",12010,"Sydney - Victoria",73328,73328,73328,"O.P.",100,1.0,403.0,181,59668,28957,10692,6056,11206,0,1003,0 12,12010,"Sydney--Victoria",12010,"Sydney - Victoria",73328,73328,73328,"SVR1",100,.,.,".",598,233,135,19,69,0,10,0 12,12010,"Sydney--Victoria",12010,"Sydney - Victoria",73328,73328,73328,"SVR2",100,.,.,".",0,893,329,96,448,0,20,0 12,12011,"West Nova",12011,"West Nova",83654,83654,83654,"A.P.",100,600.0,613.0,14,0,4991,2264,410,2191,0,126,0 12,12011,"West Nova",12011,"West Nova",83654,83654,83654,"M.P.",100,500.0,505.0,6,761,420,159,49,201,0,11,0 12,12011,"West Nova",12011,"West Nova",83654,83654,83654,"O.P.",100,1.0,400.0,201,66100,36291,17103,5095,12771,0,1322,0 12,12011,"West Nova",12011,"West Nova",83654,83654,83654,"SVR1",100,.,.,".",1077,404,297,25,72,0,10,0 12,12011,"West Nova",12011,"West Nova",83654,83654,83654,"SVR2",100,.,.,".",0,848,381,52,397,0,18,0 13,13001,"Acadie--Bathurst",13001,"Acadie - Bathurst",79340,77792,77792,"A.P.",100,600.0,618.0,19,0,8499,1543,5499,1457,0,0,0 13,13001,"Acadie--Bathurst",13001,"Acadie - Bathurst",79340,77792,77792,"M.P.",100,500.0,518.0,19,1856,1277,236,664,377,0,0,0 13,13001,"Acadie--Bathurst",13001,"Acadie - Bathurst",79340,77792,77792,"O.P.",100,1.0,201.0,201,64107,35025,5435,25189,4401,0,0,0 13,13001,"Acadie--Bathurst",13001,"Acadie - Bathurst",79340,77792,77792,"SVR1",100,.,.,".",335,138,56,58,24,0,0,0 13,13001,"Acadie--Bathurst",13001,"Acadie - Bathurst",79340,77792,77792,"SVR2",100,.,.,".",0,1075,186,657,232,0,0,0 13,13001,"Acadie--Bathurst",13006,"Miramichi",79340,51996,1548,"A.P.",50,600.0,600.0,1,0,175,74,47,50,0,5,0 13,13001,"Acadie--Bathurst",13006,"Miramichi",79340,51996,1548,"O.P.",0.4,6.0,6.0,1,1,1,0,0,0,0,0,0 13,13001,"Acadie--Bathurst",13006,"Miramichi",79340,51996,1548,"O.P.",53,3.0,3.0,1,176,72,21,34,16,0,1,0 13,13001,"Acadie--Bathurst",13006,"Miramichi",79340,51996,1548,"O.P.",100,1.0,5.0,4,1190,555,180,211,139,0,25,0 13,13001,"Acadie--Bathurst",13006,"Miramichi",79340,51996,1548,"SVR1",3.2,.,.,".",9,3,2,0,1,0,0,0 13,13001,"Acadie--Bathurst",13006,"Miramichi",79340,51996,1548,"SVR2",3.2,.,.,".",0,27,16,2,9,0,0,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"A.P.",27,608.0,608.0,1,0,85,59,10,12,0,3,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"A.P.",52,602.0,602.0,1,0,236,97,34,95,0,10,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"A.P.",96,604.0,604.0,1,0,220,72,35,107,0,7,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"A.P.",100,600.0,620.0,18,0,8153,2490,1292,4057,0,314,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"M.P.",100,500.0,506.0,7,1185,733,160,83,448,0,42,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",4.4,20.0,20.0,1,19,11,5,2,3,0,1,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",4.8,70.0,70.0,1,13,7,4,2,1,0,0,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",22,23.0,23.0,1,48,29,15,6,7,0,2,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",55,62.0,62.0,1,183,89,43,31,11,0,4,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",76,40.0,40.0,1,276,163,56,44,59,0,5,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",86,69.0,69.0,1,273,171,112,36,16,0,7,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",96,45.0,45.0,1,273,163,61,38,56,0,9,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"O.P.",100,1.0,152.1,169,55611,30384,9947,7543,11541,0,1353,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"SVR1",92,.,.,".",246,101,51,12,35,0,3,0 13,13002,"Beausjour",13002,"Beausjour",80416,78076,71361,"SVR2",92,.,.,".",0,625,174,71,360,0,20,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"A.P.",0.0,609.0,609.0,1,0,0,0,0,0,0,0,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"A.P.",1.6,605.0,605.0,1,0,12,5,2,5,0,0,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"A.P.",54,610.0,610.0,1,0,349,71,81,187,0,10,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"A.P.",100,614.0,614.0,1,0,560,136,138,263,0,23,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"M.P.",25,507.0,507.0,1,49,39,12,6,20,0,1,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",0.0,157.0,157.0,1,0,0,0,0,0,0,0,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",27,61.0,61.0,1,178,98,29,42,25,0,2,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",36,161.0,161.0,1,244,110,23,44,39,0,4,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",56,163.0,163.0,1,255,144,25,47,67,0,5,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",90,161.1,161.1,1,449,287,49,108,125,0,5,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",92,162.1,162.1,1,801,480,112,181,174,0,13,-0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"O.P.",100,163.1,169.0,9,4133,2151,584,755,761,0,51,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"SVR1",8.2,.,.,".",36,20,9,1,8,0,1,0 13,13002,"Beausjour",13007,"Moncton - Riverview - Dieppe",80416,98539,9055,"SVR2",8.2,.,.,".",0,66,26,10,27,0,2,0 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"A.P.",8.8,610.0,610.0,1,0,51,34,6,9,0,2,1 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"A.P.",54,606.0,606.0,1,0,250,151,41,52,0,5,1 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"A.P.",74,600.0,600.0,1,0,569,331,63,154,0,20,1 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"A.P.",100,601.0,614.0,11,0,6067,3011,884,1904,0,248,20 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"M.P.",100,501.0,506.0,6,976,566,308,86,147,0,13,12 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"O.P.",11,7.0,7.0,1,64,34,17,8,8,0,1,0 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"O.P.",51,4.0,4.0,1,158,100,58,20,19,0,2,1 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"O.P.",88,126.0,126.0,1,439,270,167,47,49,0,5,1 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"O.P.",100,1.0,159.0,153,57244,28930,12974,8032,6531,0,1224,169 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"SVR1",87,.,.,".",1450,557,404,35,88,0,28,3 13,13003,"Fredericton",13003,"Fredericton",81759,93181,81329,"SVR2",87,.,.,".",0,1207,688,140,322,0,52,5 13,13003,"Fredericton",13008,"New Brunswick Southwest",81759,63618,430,"A.P.",13,600.0,600.0,1,0,41,19,10,10,0,2,0 13,13003,"Fredericton",13008,"New Brunswick Southwest",81759,63618,430,"O.P.",1.5,6.0,6.0,1,6,3,1,1,0,0,0,0 13,13003,"Fredericton",13008,"New Brunswick Southwest",81759,63618,430,"O.P.",100,7.0,7.0,1,330,123,47,49,20,0,7,0 13,13003,"Fredericton",13008,"New Brunswick Southwest",81759,63618,430,"SVR1",0.7,.,.,".",3,1,1,0,0,0,0,-0 13,13003,"Fredericton",13008,"New Brunswick Southwest",81759,63618,430,"SVR2",0.7,.,.,".",0,3,2,0,1,0,0,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"A.P.",0.6,604.0,604.0,1,0,1,0,0,1,0,0,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"A.P.",73,608.0,608.0,1,0,226,157,28,33,0,9,-0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"O.P.",3.9,45.0,45.0,1,11,7,2,2,2,0,0,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"O.P.",14,69.0,69.0,1,45,28,18,6,3,0,1,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"O.P.",45,62.0,62.0,1,152,74,35,26,9,0,4,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"O.P.",95,70.0,70.0,1,267,141,78,38,22,0,3,-0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"O.P.",100,69.1,74.0,5,1942,1073,642,259,122,0,50,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"SVR1",3.8,.,.,".",10,4,2,0,1,0,0,0 13,13004,"Fundy Royal",13002,"Beausjour",79331,78076,2997,"SVR2",3.8,.,.,".",0,26,7,3,15,0,1,0 13,13004,"Fundy Royal",13004,"Fundy Royal",79331,73484,73365,"A.P.",86,610.0,610.0,1,0,242,172,45,16,0,8,0 13,13004,"Fundy Royal",13004,"Fundy Royal",79331,73484,73365,"A.P.",100,600.0,615.0,15,0,6135,3953,1092,827,0,263,0 13,13004,"Fundy Royal",13004,"Fundy Royal",79331,73484,73365,"M.P.",100,500.0,503.0,4,440,236,130,36,53,0,17,0 13,13004,"Fundy Royal",13004,"Fundy Royal",79331,73484,73365,"O.P.",100,1.0,139.0,144,55917,29041,16405,8551,2659,0,1426,0 13,13004,"Fundy Royal",13004,"Fundy Royal",79331,73484,73365,"SVR1",100,.,.,".",325,133,96,17,14,0,6,0 13,13004,"Fundy Royal",13004,"Fundy Royal",79331,73484,73365,"SVR2",100,.,.,".",0,587,380,83,91,0,33,0 13,13004,"Fundy Royal",13008,"New Brunswick Southwest",79331,63618,309,"A.P.",12,608.0,608.0,1,0,24,15,4,4,0,0,0 13,13004,"Fundy Royal",13008,"New Brunswick Southwest",79331,63618,309,"O.P.",8.6,55.0,55.0,1,35,22,14,4,2,0,1,0 13,13004,"Fundy Royal",13008,"New Brunswick Southwest",79331,63618,309,"O.P.",22,56.0,56.0,1,68,39,18,11,6,0,3,0 13,13004,"Fundy Royal",13008,"New Brunswick Southwest",79331,63618,309,"O.P.",30,57.0,57.0,1,160,81,48,21,7,0,5,0 13,13004,"Fundy Royal",13008,"New Brunswick Southwest",79331,63618,309,"SVR1",0.5,.,.,".",2,1,0,0,0,0,0,0 13,13004,"Fundy Royal",13008,"New Brunswick Southwest",79331,63618,309,"SVR2",0.5,.,.,".",0,2,1,0,0,0,0,0 13,13004,"Fundy Royal",13009,"Saint John",79331,84670,2660,"A.P.",36,600.0,600.0,1,0,247,139,50,52,0,5,1 13,13004,"Fundy Royal",13009,"Saint John",79331,84670,2660,"O.P.",100,1.0,4.0,5,1915,971,487,296,160,0,23,5 13,13004,"Fundy Royal",13009,"Saint John",79331,84670,2660,"SVR1",3.0,.,.,".",15,7,3,1,2,0,0,0 13,13004,"Fundy Royal",13009,"Saint John",79331,84670,2660,"SVR2",3.0,.,.,".",0,26,15,4,8,0,1,0 13,13005,"Madawaska--Restigouche",13005,"Madawaska - Restigouche",62540,61106,61106,"A.P.",100,600.0,616.0,17,0,7034,3151,894,2664,0,122,203 13,13005,"Madawaska--Restigouche",13005,"Madawaska - Restigouche",62540,61106,61106,"M.P.",100,500.0,509.0,10,1574,868,340,59,393,0,13,63 13,13005,"Madawaska--Restigouche",13005,"Madawaska - Restigouche",62540,61106,61106,"O.P.",100,1.0,153.0,152,49065,25953,10171,5519,8793,0,460,1010 13,13005,"Madawaska--Restigouche",13005,"Madawaska - Restigouche",62540,61106,61106,"SVR1",100,.,.,".",327,128,66,13,40,0,4,5 13,13005,"Madawaska--Restigouche",13005,"Madawaska - Restigouche",62540,61106,61106,"SVR2",100,.,.,".",0,1014,496,77,419,0,13,9 13,13005,"Madawaska--Restigouche",13006,"Miramichi",62540,51996,1434,"A.P.",50,600.0,600.0,1,0,173,73,46,49,0,4,0 13,13005,"Madawaska--Restigouche",13006,"Miramichi",62540,51996,1434,"O.P.",47,3.0,3.0,1,159,64,18,31,14,0,1,0 13,13005,"Madawaska--Restigouche",13006,"Miramichi",62540,51996,1434,"O.P.",100,6.0,6.0,1,309,197,59,100,28,0,11,-0 13,13005,"Madawaska--Restigouche",13006,"Miramichi",62540,51996,1434,"O.P.",100,7.0,9.0,3,836,462,149,208,88,0,17,0 13,13005,"Madawaska--Restigouche",13006,"Miramichi",62540,51996,1434,"SVR1",3.0,.,.,".",8,3,2,0,1,0,0,0 13,13005,"Madawaska--Restigouche",13006,"Miramichi",62540,51996,1434,"SVR2",3.0,.,.,".",0,26,16,2,8,0,0,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"A.P.",3.4,604.0,604.0,1,0,8,3,1,4,0,0,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"A.P.",48,602.0,602.0,1,0,219,90,32,88,0,9,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"O.P.",24,40.0,40.0,1,87,51,17,14,18,0,1,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"O.P.",78,23.0,23.0,1,168,104,53,21,23,0,6,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"O.P.",96,20.0,20.0,1,406,231,112,45,56,0,18,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"O.P.",100,19.0,24.0,5,2041,1123,238,679,176,0,30,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"SVR1",4.3,.,.,".",11,5,2,1,2,0,0,0 13,13006,"Miramichi--Grand Lake",13002,"Beausjour",59343,78076,3718,"SVR2",4.3,.,.,".",0,29,8,3,17,0,1,0 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"A.P.",91,610.0,610.0,1,0,533,352,68,88,0,17,7 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"A.P.",100,609.0,609.0,1,0,558,362,70,95,0,24,7 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"M.P.",100,500.0,500.0,1,88,76,39,16,17,0,4,0 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"O.P.",12,126.0,126.0,1,61,37,23,7,7,0,1,0 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"O.P.",100,109.0,125.0,17,4777,1935,1154,416,294,0,45,26 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"SVR1",7.2,.,.,".",121,47,34,3,7,0,2,0 13,13006,"Miramichi--Grand Lake",13003,"Fredericton",59343,93181,5781,"SVR2",7.2,.,.,".",0,101,58,12,27,0,4,0 13,13006,"Miramichi--Grand Lake",13006,"Miramichi",59343,51996,49014,"A.P.",100,601.0,611.0,11,0,4882,2835,725,1233,0,89,0 13,13006,"Miramichi--Grand Lake",13006,"Miramichi",59343,51996,49014,"M.P.",100,500.0,502.0,3,446,243,99,28,106,0,10,0 13,13006,"Miramichi--Grand Lake",13006,"Miramichi",59343,51996,49014,"O.P.",100,10.0,131.0,125,40153,22959,12019,5609,4773,0,558,0 13,13006,"Miramichi--Grand Lake",13006,"Miramichi",59343,51996,49014,"SVR1",94,.,.,".",260,103,64,7,31,0,2,0 13,13006,"Miramichi--Grand Lake",13006,"Miramichi",59343,51996,49014,"SVR2",94,.,.,".",0,798,485,48,254,0,11,0 13,13006,"Miramichi--Grand Lake",13010,"Tobique - Mactaquac",59343,68709,830,"A.P.",12,611.0,611.0,1,0,48,29,7,9,0,2,0 13,13006,"Miramichi--Grand Lake",13010,"Tobique - Mactaquac",59343,68709,830,"O.P.",30,126.0,126.0,1,81,43,24,13,6,0,0,0 13,13006,"Miramichi--Grand Lake",13010,"Tobique - Mactaquac",59343,68709,830,"O.P.",100,123.0,124.0,2,571,355,242,63,37,0,13,0 13,13006,"Miramichi--Grand Lake",13010,"Tobique - Mactaquac",59343,68709,830,"SVR1",1.2,.,.,".",3,2,1,0,0,0,0,0 13,13006,"Miramichi--Grand Lake",13010,"Tobique - Mactaquac",59343,68709,830,"SVR2",1.2,.,.,".",0,14,9,1,3,0,0,-0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"A.P.",46,610.0,610.0,1,0,302,62,71,161,0,8,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"A.P.",98,605.0,605.0,1,0,753,294,141,298,0,20,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"A.P.",100,600.0,613.0,12,0,7589,3191,1416,2692,0,290,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"M.P.",75,507.0,507.0,1,146,116,35,17,59,0,4,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"M.P.",100,500.0,508.0,8,1242,809,300,118,363,0,28,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"O.P.",7.6,162.1,162.1,1,66,39,9,15,14,0,1,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"O.P.",9.9,161.1,161.1,1,49,32,5,12,14,0,1,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"O.P.",44,163.0,163.0,1,197,111,19,37,52,0,3,-0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"O.P.",64,161.0,161.0,1,425,193,41,77,69,0,6,-0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"O.P.",73,61.0,61.0,1,488,266,79,113,67,0,7,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"O.P.",100,1.0,402.0,177,66139,33243,11893,10495,9359,0,1496,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"SVR1",92,.,.,".",401,219,106,15,88,0,11,0 13,13007,"Moncton--Riverview--Dieppe",13007,"Moncton - Riverview - Dieppe",89484,98539,89484,"SVR2",92,.,.,".",0,737,293,111,310,0,24,-0 13,13008,"New Brunswick Southwest",13003,"Fredericton",66197,93181,3318,"A.P.",46,606.0,606.0,1,0,215,130,36,45,0,4,0 13,13008,"New Brunswick Southwest",13003,"Fredericton",66197,93181,3318,"O.P.",100,135.0,139.0,6,2369,1165,628,339,146,0,48,4 13,13008,"New Brunswick Southwest",13003,"Fredericton",66197,93181,3318,"SVR1",3.5,.,.,".",58,22,16,1,4,0,1,0 13,13008,"New Brunswick Southwest",13003,"Fredericton",66197,93181,3318,"SVR2",3.5,.,.,".",0,49,28,6,13,0,2,0 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"A.P.",87,600.0,600.0,1,0,283,130,69,68,0,15,1 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"A.P.",88,608.0,608.0,1,0,171,110,29,29,0,3,1 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"A.P.",100,601.0,621.0,20,0,4486,2774,693,737,0,221,61 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"M.P.",100,500.0,505.0,6,602,296,166,28,86,0,5,11 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"O.P.",70,57.0,57.0,1,378,193,112,50,18,0,12,1 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"O.P.",78,56.0,56.0,1,235,135,63,40,19,0,12,2 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"O.P.",91,55.0,55.0,1,368,234,152,44,24,0,12,3 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"O.P.",99,6.0,6.0,1,364,180,85,65,23,0,6,2 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"O.P.",100,1.0,138.0,136,46655,25064,13979,6252,3158,0,1308,367 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"SVR1",99,.,.,".",372,131,89,8,26,0,9,0 13,13008,"New Brunswick Southwest",13008,"New Brunswick Southwest",66197,63618,62879,"SVR2",99,.,.,".",0,382,240,35,82,0,25,1 13,13009,"Saint John--Rothesay",13004,"Fundy Royal",82129,73484,119,"A.P.",14,610.0,610.0,1,0,40,29,8,3,0,1,0 13,13009,"Saint John--Rothesay",13004,"Fundy Royal",82129,73484,119,"O.P.",100,79.0,79.0,1,112,61,40,13,5,0,3,0 13,13009,"Saint John--Rothesay",13004,"Fundy Royal",82129,73484,119,"SVR1",0.2,.,.,".",1,0,0,0,0,0,0,0 13,13009,"Saint John--Rothesay",13004,"Fundy Royal",82129,73484,119,"SVR2",0.2,.,.,".",0,1,1,0,0,0,0,0 13,13009,"Saint John--Rothesay",13009,"Saint John",82129,84670,82010,"A.P.",64,600.0,600.0,1,0,446,251,91,93,0,10,1 13,13009,"Saint John--Rothesay",13009,"Saint John",82129,84670,82010,"A.P.",100,601.0,613.0,13,0,5534,3146,1080,1138,0,128,42 13,13009,"Saint John--Rothesay",13009,"Saint John",82129,84670,82010,"M.P.",100,500.0,504.0,5,973,494,225,73,156,0,21,19 13,13009,"Saint John--Rothesay",13009,"Saint John",82129,84670,82010,"O.P.",100,5.0,172.0,169,60864,28313,13612,9639,4037,0,806,219 13,13009,"Saint John--Rothesay",13009,"Saint John",82129,84670,82010,"SVR1",97,.,.,".",497,219,109,28,75,0,6,2 13,13009,"Saint John--Rothesay",13009,"Saint John",82129,84670,82010,"SVR2",97,.,.,".",0,856,469,120,243,0,17,5 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"A.P.",0.0,601.0,601.0,1,0,0,0,0,0,0,0,0 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"A.P.",26,600.0,600.0,1,0,200,116,22,54,0,7,1 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"O.P.",0.0,28.0,28.0,1,0,0,0,0,0,0,0,0 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"O.P.",49,4.0,4.0,1,151,94,56,19,18,0,1,0 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"O.P.",89,7.0,7.0,1,531,283,139,64,69,0,10,1 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"O.P.",100,7.1,7.2,2,1198,619,261,180,156,0,17,5 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"SVR1",2.8,.,.,".",46,18,13,1,3,0,1,0 13,13010,"Tobique--Mactaquac",13003,"Fredericton",70632,93181,2753,"SVR2",2.8,.,.,".",0,39,22,4,10,0,2,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"A.P.",88,611.0,611.0,1,0,345,208,55,67,0,16,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"A.P.",100,600.0,612.0,12,0,5337,3424,650,1148,0,115,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"M.P.",100,500.0,503.0,4,397,220,132,29,56,0,3,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"O.P.",70,126.0,126.0,1,191,101,57,30,13,0,1,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"O.P.",100,1.0,155.1,162,51565,25977,16182,5424,3708,0,663,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"SVR1",99,.,.,".",265,120,75,16,24,0,6,0 13,13010,"Tobique--Mactaquac",13010,"Tobique - Mactaquac",70632,68709,67879,"SVR2",99,.,.,".",0,1102,725,100,266,0,12,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24001,"Abitibi - Tmiscamingue",85475,103610,816,"A.P.",50,600.0,600.0,1,0,32,3,12,4,14,0,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24001,"Abitibi - Tmiscamingue",85475,103610,816,"O.P.",100,1.0,3.0,3,599,340,23,165,15,130,7,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24001,"Abitibi - Tmiscamingue",85475,103610,816,"SVR1",0.7,.,.,".",2,1,0,0,0,0,0,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24001,"Abitibi - Tmiscamingue",85475,103610,816,"SVR2",0.7,.,.,".",0,8,1,2,1,3,0,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24046,"Abitibi - Baie-James - Nunavik - Eeyou",85475,84659,84659,"A.P.",100,600.0,611.0,12,0,3944,1131,1542,384,801,86,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24046,"Abitibi - Baie-James - Nunavik - Eeyou",85475,84659,84659,"M.P.",100,500.0,503.0,4,490,327,116,65,66,68,12,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24046,"Abitibi - Baie-James - Nunavik - Eeyou",85475,84659,84659,"O.P.",100,1.0,151.0,152,58529,25517,5405,12031,2599,4409,1073,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24046,"Abitibi - Baie-James - Nunavik - Eeyou",85475,84659,84659,"SVR1",100,.,.,".",306,187,29,40,65,15,38,0 24,24001,"Abitibi--Baie-James--Nunavik--Eeyou",24046,"Abitibi - Baie-James - Nunavik - Eeyou",85475,84659,84659,"SVR2",100,.,.,".",0,1193,408,283,168,322,12,0 24,24002,"Abitibi--Tmiscamingue",24001,"Abitibi - Tmiscamingue",102794,103610,102794,"A.P.",50,600.0,600.0,1,0,32,3,12,4,14,0,0 24,24002,"Abitibi--Tmiscamingue",24001,"Abitibi - Tmiscamingue",102794,103610,102794,"A.P.",100,601.0,621.0,21,0,5530,678,2320,506,1949,77,0 24,24002,"Abitibi--Tmiscamingue",24001,"Abitibi - Tmiscamingue",102794,103610,102794,"M.P.",100,500.0,512.0,13,1342,702,114,242,97,240,9,0 24,24002,"Abitibi--Tmiscamingue",24001,"Abitibi - Tmiscamingue",102794,103610,102794,"O.P.",100,4.0,230.0,235,79900,40474,3767,21649,2077,12401,580,0 24,24002,"Abitibi--Tmiscamingue",24001,"Abitibi - Tmiscamingue",102794,103610,102794,"SVR1",99,.,.,".",236,114,33,26,21,32,3,0 24,24002,"Abitibi--Tmiscamingue",24001,"Abitibi - Tmiscamingue",102794,103610,102794,"SVR2",99,.,.,".",0,1118,156,335,135,475,18,0 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"A.P.",0.5,611.0,611.0,1,0,4,0,1,1,2,0,0 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"A.P.",98,610.0,610.0,1,0,619,27,154,156,276,4,2 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"A.P.",100,601.0,609.0,9,0,4686,314,991,1512,1809,47,13 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"M.P.",40,500.0,500.0,1,64,40,5,10,14,7,1,4 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"M.P.",67,501.0,501.0,1,123,73,7,15,23,22,2,3 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"M.P.",100,502.0,503.0,2,326,180,23,28,76,42,5,6 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"O.P.",8.9,16.0,16.0,1,21,11,0,4,3,4,0,0 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"O.P.",72,32.0,32.0,1,270,144,10,57,31,45,1,0 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"O.P.",92,31.0,31.0,1,318,178,13,53,62,46,3,1 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"O.P.",100,29.0,405.0,168,61387,33506,2807,10604,9242,10176,461,216 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"SVR1",86,.,.,".",128,62,12,14,27,9,0,1 24,24003,"Ahuntsic-Cartierville",24002,"Ahuntsic",110473,100840,86365,"SVR2",86,.,.,".",0,751,31,108,168,435,7,2 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"A.P.",30,602.0,602.0,1,0,81,9,10,52,9,1,0 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"A.P.",70,603.0,603.0,1,0,123,22,24,64,11,2,0 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"A.P.",100,600.0,601.0,2,0,675,58,159,353,87,17,1 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"M.P.",67,502.0,502.0,1,155,112,15,19,59,17,1,2 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"O.P.",100,1.0,407.0,40,15628,7235,791,2278,3222,759,153,32 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"SVR1",20,.,.,".",21,12,2,2,6,1,1,-0 24,24003,"Ahuntsic-Cartierville",24066,"Saint-Laurent - Cartierville",110473,117950,24108,"SVR2",20,.,.,".",0,108,20,19,56,10,2,1 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"A.P.",72,611.0,611.0,1,0,439,44,174,77,137,6,1 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"A.P.",76,602.0,602.0,1,0,535,73,206,102,150,4,0 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"A.P.",81,609.0,609.0,1,0,559,68,192,154,137,8,1 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"A.P.",100,600.0,610.0,9,0,5482,642,1976,1252,1530,64,18 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"M.P.",50,502.0,502.0,1,59,21,3,8,6,5,0,0 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"M.P.",100,500.0,501.0,2,423,144,19,35,48,38,2,2 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"O.P.",1.0,58.0,58.0,1,5,3,0,1,1,1,0,0 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"O.P.",26,55.0,55.0,1,113,56,4,30,9,12,1,0 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"O.P.",55,172.0,172.0,1,165,97,3,43,20,28,2,1 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"O.P.",56,3.0,3.0,1,161,84,6,39,8,30,0,1 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"O.P.",90,4.0,4.0,1,252,131,13,58,25,30,3,1 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"O.P.",100,1.0,400.0,181,72894,39988,4436,17467,8804,8486,604,191 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"SVR1",88,.,.,".",125,68,15,11,23,16,3,0 24,24004,"Alfred-Pellan",24003,"Alfred-Pellan",98045,110650,98045,"SVR2",88,.,.,".",0,552,71,89,223,166,2,3 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"A.P.",88,609.0,609.0,1,0,431,63,92,133,125,13,4 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"A.P.",100,600.0,622.0,14,0,4541,651,1469,958,1323,106,34 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"M.P.",25,500.0,500.0,1,22,15,2,7,4,1,0,1 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"M.P.",100,501.0,501.0,1,75,60,6,3,33,16,1,1 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"O.P.",2.0,155.0,155.0,1,14,9,1,4,1,3,0,0 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"O.P.",100,1.0,400.0,133,51977,25017,2992,10527,3546,6909,837,206 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"SVR1",54,.,.,".",102,58,24,9,11,11,2,1 24,24005,"Argenteuil--La Petite-Nation",24004,"Argenteuil - Papineau - Mirabel",94208,124180,63948,"SVR2",54,.,.,".",0,345,42,78,112,107,5,1 24,24005,"Argenteuil--La Petite-Nation",24050,"Pontiac",94208,105733,30260,"A.P.",18,617.0,617.0,1,0,37,9,12,10,5,1,-0 24,24005,"Argenteuil--La Petite-Nation",24050,"Pontiac",94208,105733,30260,"A.P.",100,619.0,627.0,9,0,2152,651,888,269,323,20,1 24,24005,"Argenteuil--La Petite-Nation",24050,"Pontiac",94208,105733,30260,"M.P.",100,500.0,500.0,1,104,31,12,6,8,4,1,0 24,24005,"Argenteuil--La Petite-Nation",24050,"Pontiac",94208,105733,30260,"O.P.",100,126.0,192.0,61,22743,10990,1918,6621,894,1359,163,35 24,24005,"Argenteuil--La Petite-Nation",24050,"Pontiac",94208,105733,30260,"SVR1",28,.,.,".",88,45,21,4,13,5,1,0 24,24005,"Argenteuil--La Petite-Nation",24050,"Pontiac",94208,105733,30260,"SVR2",28,.,.,".",0,186,69,45,42,25,5,1 24,24006,"Avignon--La Mitis--Matane--Matapdia",24019,"Gaspsie - les-de-la-Madeleine",74547,81991,15246,"A.P.",37,609.0,609.0,1,0,183,34,53,50,42,5,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24019,"Gaspsie - les-de-la-Madeleine",74547,81991,15246,"A.P.",100,610.0,611.0,2,0,589,107,234,77,148,23,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24019,"Gaspsie - les-de-la-Madeleine",74547,81991,15246,"M.P.",67,503.0,503.0,1,83,25,6,3,11,3,1,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24019,"Gaspsie - les-de-la-Madeleine",74547,81991,15246,"O.P.",100,139.0,176.0,39,12599,6175,921,2782,842,1350,280,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24019,"Gaspsie - les-de-la-Madeleine",74547,81991,15246,"SVR1",18,.,.,".",46,22,9,3,3,6,1,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24019,"Gaspsie - les-de-la-Madeleine",74547,81991,15246,"SVR2",18,.,.,".",0,169,34,20,62,49,4,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"A.P.",80,608.0,608.0,1,0,127,32,18,23,52,2,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"A.P.",100,600.0,616.0,12,0,4530,561,753,1481,1668,67,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"M.P.",50,501.0,501.0,1,35,13,3,1,6,4,0,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"M.P.",100,502.0,509.0,8,984,490,105,51,207,114,13,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"O.P.",100,1.0,180.0,150,47999,23625,2901,5761,5467,8983,513,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"SVR1",83,.,.,".",185,91,31,11,15,33,2,0 24,24006,"Avignon--La Mitis--Matane--Matapdia",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",74547,71389,59301,"SVR2",83,.,.,".",0,485,64,36,232,147,7,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"A.P.",88,626.0,626.0,1,0,184,91,32,53,7,2,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"A.P.",100,600.0,634.0,33,0,7738,3824,2066,1131,597,120,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"M.P.",75,509.0,509.0,1,95,56,30,5,17,5,0,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"M.P.",100,500.0,508.0,9,1346,584,354,81,99,42,8,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"O.P.",100,1.0,403.0,230,81822,42473,21475,13304,4257,2741,696,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"SVR1",98,.,.,".",213,128,79,14,17,16,3,0 24,24007,"Beauce",24005,"Beauce",106337,108268,106337,"SVR2",98,.,.,".",0,883,547,112,149,64,11,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"A.P.",0.4,601.0,601.0,1,0,3,1,1,0,1,0,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"A.P.",2.9,600.0,600.0,1,0,15,5,7,1,3,0,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"A.P.",98,603.0,603.0,1,0,678,203,270,37,155,11,3 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"A.P.",100,602.0,602.0,1,0,747,213,336,37,153,8,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"A.P.",100,604.0,619.0,16,0,6972,1946,2741,484,1680,94,27 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"M.P.",25,500.0,500.0,1,34,21,9,3,2,8,0,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"M.P.",100,501.0,515.0,15,2975,1658,555,540,272,229,26,36 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",2.3,23.0,23.0,1,11,6,2,3,0,1,0,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",3.9,25.0,25.0,1,14,7,2,4,0,1,0,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",18,6.0,6.0,1,77,40,12,18,1,6,2,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",20,7.0,7.0,1,90,40,12,18,1,9,1,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",76,40.0,40.0,1,227,102,24,55,4,20,0,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",100,30.0,30.0,1,294,167,37,94,13,21,3,0 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"O.P.",100,26.0,403.0,186,68346,33374,8015,16363,1897,6274,675,150 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"SVR1",85,.,.,".",415,208,108,31,25,40,3,2 24,24008,"Beauport--Limoilou",24007,"Beauport - Limoilou",92944,103556,87375,"SVR2",85,.,.,".",0,671,192,165,63,237,10,3 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"A.P.",4.2,613.0,613.0,1,0,17,4,5,1,6,0,0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"A.P.",92,612.0,612.0,1,0,712,193,259,59,195,7,0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"M.P.",33,504.0,504.0,1,107,16,2,4,3,6,0,0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"M.P.",50,503.0,503.0,1,82,40,11,11,7,11,1,0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"O.P.",42,184.0,184.0,1,210,68,15,26,4,22,1,-0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"O.P.",100,191.0,201.0,11,4074,1997,463,887,111,494,42,0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"SVR1",5.9,.,.,".",14,6,3,1,0,1,0,-0 24,24008,"Beauport--Limoilou",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92944,93430,5569,"SVR2",5.9,.,.,".",0,24,4,5,3,11,0,0 24,24009,"Bcancour--Nicolet--Saurel",24054,"Bas-Richelieu - Nicolet - Bcancour",93779,93779,93779,"A.P.",100,600.0,613.0,14,0,6517,785,2125,833,2649,125,0 24,24009,"Bcancour--Nicolet--Saurel",24054,"Bas-Richelieu - Nicolet - Bcancour",93779,93779,93779,"M.P.",100,500.0,506.0,7,891,501,81,76,148,188,8,0 24,24009,"Bcancour--Nicolet--Saurel",24054,"Bas-Richelieu - Nicolet - Bcancour",93779,93779,93779,"O.P.",100,1.0,207.0,215,76189,40895,5371,15193,3805,15205,1321,0 24,24009,"Bcancour--Nicolet--Saurel",24054,"Bas-Richelieu - Nicolet - Bcancour",93779,93779,93779,"SVR1",100,.,.,".",210,107,31,20,14,38,4,0 24,24009,"Bcancour--Nicolet--Saurel",24054,"Bas-Richelieu - Nicolet - Bcancour",93779,93779,93779,"SVR2",100,.,.,".",0,1712,210,291,224,966,21,0 24,24010,"Bellechasse--Les Etchemins--Lvis",24034,"Lvis - Bellechasse",112385,112385,112385,"A.P.",100,600.0,620.0,21,0,8849,3503,2769,652,1830,95,0 24,24010,"Bellechasse--Les Etchemins--Lvis",24034,"Lvis - Bellechasse",112385,112385,112385,"M.P.",100,500.0,515.0,16,2040,997,506,186,164,124,17,0 24,24010,"Bellechasse--Les Etchemins--Lvis",24034,"Lvis - Bellechasse",112385,112385,112385,"O.P.",100,1.0,403.0,231,88175,48193,21482,16781,2529,6625,776,0 24,24010,"Bellechasse--Les Etchemins--Lvis",24034,"Lvis - Bellechasse",112385,112385,112385,"SVR1",100,.,.,".",300,148,77,21,17,28,5,0 24,24010,"Bellechasse--Les Etchemins--Lvis",24034,"Lvis - Bellechasse",112385,112385,112385,"SVR2",100,.,.,".",0,634,282,133,59,150,10,0 24,24011,"Beloeil--Chambly",24012,"Chambly - Borduas",109955,129315,109955,"A.P.",72,600.0,600.0,1,0,480,48,166,74,147,6,39 24,24011,"Beloeil--Chambly",24012,"Chambly - Borduas",109955,129315,109955,"A.P.",100,601.0,618.0,16,0,8880,919,3236,1088,2612,123,902 24,24011,"Beloeil--Chambly",24012,"Chambly - Borduas",109955,129315,109955,"M.P.",100,500.0,505.0,6,967,459,84,99,131,123,9,13 24,24011,"Beloeil--Chambly",24012,"Chambly - Borduas",109955,129315,109955,"O.P.",100,5.0,401.0,211,83752,48248,3510,21348,3906,12980,764,5740 24,24011,"Beloeil--Chambly",24012,"Chambly - Borduas",109955,129315,109955,"SVR1",86,.,.,".",211,113,40,21,16,21,3,11 24,24011,"Beloeil--Chambly",24012,"Chambly - Borduas",109955,129315,109955,"SVR2",86,.,.,".",0,527,64,138,80,208,9,29 24,24012,"Berthier--Maskinong",24008,"Berthier - Maskinong",98590,112341,86118,"A.P.",100,600.0,621.0,18,0,6525,953,2503,967,1981,88,33 24,24012,"Berthier--Maskinong",24008,"Berthier - Maskinong",98590,112341,86118,"M.P.",100,500.0,511.0,9,1058,563,119,112,206,109,13,4 24,24012,"Berthier--Maskinong",24008,"Berthier - Maskinong",98590,112341,86118,"O.P.",100,1.0,207.0,170,68297,34970,4443,14205,4349,10878,831,264 24,24012,"Berthier--Maskinong",24008,"Berthier - Maskinong",98590,112341,86118,"SVR1",77,.,.,".",204,104,41,21,13,24,5,1 24,24012,"Berthier--Maskinong",24008,"Berthier - Maskinong",98590,112341,86118,"SVR2",77,.,.,".",0,401,66,115,75,138,5,2 24,24012,"Berthier--Maskinong",24025,"Joliette",98590,113140,12472,"A.P.",76,603.0,603.0,1,0,443,46,194,29,165,9,0 24,24012,"Berthier--Maskinong",24025,"Joliette",98590,113140,12472,"A.P.",100,608.0,608.0,1,0,514,57,233,32,177,15,0 24,24012,"Berthier--Maskinong",24025,"Joliette",98590,113140,12472,"O.P.",86,1.0,1.0,1,54,40,2,20,5,14,0,0 24,24012,"Berthier--Maskinong",24025,"Joliette",98590,113140,12472,"O.P.",100,11.0,96.0,19,10171,5335,491,2773,227,1668,176,0 24,24012,"Berthier--Maskinong",24025,"Joliette",98590,113140,12472,"SVR1",11,.,.,".",25,13,3,3,2,4,0,0 24,24012,"Berthier--Maskinong",24025,"Joliette",98590,113140,12472,"SVR2",11,.,.,".",0,56,7,14,6,25,2,0 24,24013,"Thrse-De Blainville",24040,"Marc-Aurle-Fortin",98499,115283,44989,"A.P.",100,600.0,610.0,5,0,3290,374,1354,437,1073,52,0 24,24013,"Thrse-De Blainville",24040,"Marc-Aurle-Fortin",98499,115283,44989,"M.P.",50,503.0,503.0,1,157,38,4,14,8,13,0,0 24,24013,"Thrse-De Blainville",24040,"Marc-Aurle-Fortin",98499,115283,44989,"M.P.",100,500.0,504.0,2,306,197,34,70,36,50,7,0 24,24013,"Thrse-De Blainville",24040,"Marc-Aurle-Fortin",98499,115283,44989,"O.P.",100,1.0,408.0,86,35467,19355,1773,9925,1820,5363,474,0 24,24013,"Thrse-De Blainville",24040,"Marc-Aurle-Fortin",98499,115283,44989,"SVR1",41,.,.,".",53,30,11,7,9,4,0,0 24,24013,"Thrse-De Blainville",24040,"Marc-Aurle-Fortin",98499,115283,44989,"SVR2",41,.,.,".",0,345,54,101,59,124,7,0 24,24013,"Thrse-De Blainville",24071,"Terrebonne - Blainville",98499,121095,53510,"A.P.",100,609.0,614.0,6,0,2769,287,1240,293,922,27,0 24,24013,"Thrse-De Blainville",24071,"Terrebonne - Blainville",98499,121095,53510,"M.P.",100,502.0,502.0,1,29,19,1,3,4,11,0,0 24,24013,"Thrse-De Blainville",24071,"Terrebonne - Blainville",98499,121095,53510,"O.P.",100,104.0,169.0,81,37918,22082,2144,11409,2266,5821,442,0 24,24013,"Thrse-De Blainville",24071,"Terrebonne - Blainville",98499,121095,53510,"SVR1",43,.,.,".",63,33,12,4,12,6,0,0 24,24013,"Thrse-De Blainville",24071,"Terrebonne - Blainville",98499,121095,53510,"SVR2",43,.,.,".",0,164,21,54,17,69,3,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24012,"Chambly - Borduas",95326,129315,2624,"A.P.",28,600.0,600.0,1,0,184,18,64,28,57,2,15 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24012,"Chambly - Borduas",95326,129315,2624,"O.P.",100,1.0,4.1,5,2041,1282,112,579,83,351,23,134 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24012,"Chambly - Borduas",95326,129315,2624,"SVR1",2.1,.,.,".",5,3,1,1,0,0,0,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24012,"Chambly - Borduas",95326,129315,2624,"SVR2",2.1,.,.,".",0,13,2,3,2,5,0,1 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24035,"Longueuil - Pierre-Boucher",95326,99571,18451,"A.P.",100,600.0,610.0,3,0,2067,204,993,274,554,40,2 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24035,"Longueuil - Pierre-Boucher",95326,99571,18451,"O.P.",100,1.0,37.0,38,14496,9140,723,4981,1012,2136,149,139 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24035,"Longueuil - Pierre-Boucher",95326,99571,18451,"SVR1",18,.,.,".",39,20,6,5,4,4,1,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24035,"Longueuil - Pierre-Boucher",95326,99571,18451,"SVR2",18,.,.,".",0,117,11,41,14,47,4,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24074,"Verchres - Les Patriotes",95326,104355,74251,"A.P.",100,600.0,614.0,11,0,6139,575,2363,756,2345,100,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24074,"Verchres - Les Patriotes",95326,104355,74251,"M.P.",100,500.0,506.0,6,555,246,35,36,69,97,9,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24074,"Verchres - Les Patriotes",95326,104355,74251,"O.P.",100,1.0,401.0,138,57478,33239,2693,14650,2920,12192,784,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24074,"Verchres - Les Patriotes",95326,104355,74251,"SVR1",72,.,.,".",140,71,25,12,15,14,4,0 24,24014,"Pierre-Boucher--Les Patriotes--Verchres",24074,"Verchres - Les Patriotes",95326,104355,74251,"SVR2",72,.,.,".",0,734,77,154,85,410,9,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"A.P.",1.9,610.0,610.0,1,0,12,1,3,3,5,0,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"A.P.",20,600.0,600.0,1,0,29,3,7,7,12,0,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"A.P.",100,611.0,611.0,1,0,721,50,169,161,334,6,1 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"M.P.",33,501.0,501.0,1,61,36,4,8,12,11,1,1 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"M.P.",60,500.0,500.0,1,97,60,8,14,21,10,1,5 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"O.P.",7.5,31.0,31.0,1,26,14,1,4,5,4,0,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"O.P.",28,32.0,32.0,1,104,56,4,22,12,17,1,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"O.P.",91,16.0,16.0,1,212,118,2,44,28,44,0,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"O.P.",100,1.0,20.0,19,7210,3936,272,1392,907,1280,57,28 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"SVR1",11,.,.,".",16,8,1,2,3,1,0,0 24,24015,"Bourassa",24002,"Ahuntsic",100286,100840,10448,"SVR2",11,.,.,".",0,93,4,13,21,54,1,0 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"A.P.",76,601.0,601.0,1,0,290,32,60,134,62,2,0 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"A.P.",98,603.0,603.0,1,0,337,21,88,160,63,3,1 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"A.P.",100,602.0,602.0,1,0,396,36,108,167,82,0,3 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"A.P.",100,604.0,610.0,7,0,2910,248,778,1237,594,45,8 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"M.P.",67,501.0,501.0,1,94,21,4,4,11,3,0,0 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"M.P.",100,502.0,504.0,3,352,173,21,31,94,19,7,1 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"O.P.",14,14.0,14.0,1,49,29,3,9,11,5,1,0 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"O.P.",59,47.0,47.0,1,296,133,18,50,44,17,2,2 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"O.P.",100,19.0,19.0,1,281,85,9,35,32,6,3,0 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"O.P.",100,16.0,410.0,161,60107,27887,2326,9336,11219,4466,448,92 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"SVR1",87,.,.,".",143,89,16,17,42,10,3,0 24,24015,"Bourassa",24009,"Bourassa",100286,100453,89838,"SVR2",87,.,.,".",0,480,31,74,254,113,8,1 24,24015,"Bourassa",24022,"Honor-Mercier",100286,109827,0,"A.P.",0.0,609.0,609.0,1,0,0,0,0,0,0,0,0 24,24015,"Bourassa",24022,"Honor-Mercier",100286,109827,0,"O.P.",0.0,82.0,82.0,1,0,0,0,0,0,0,0,0 24,24015,"Bourassa",24022,"Honor-Mercier",100286,109827,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24015,"Bourassa",24022,"Honor-Mercier",100286,109827,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"A.P.",100,606.0,606.0,1,0,705,65,229,158,241,13,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"A.P.",100,600.0,613.0,13,0,9244,1121,3057,2732,2202,132,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"M.P.",100,500.0,511.0,12,1664,955,150,213,403,162,27,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"O.P.",98,118.0,118.0,1,493,258,14,113,32,91,9,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"O.P.",100,1.0,167.0,207,77984,40440,4722,18633,7854,8310,921,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"SVR1",100,.,.,".",219,110,43,26,29,9,3,0 24,24016,"Brome--Missisquoi",24010,"Brome - Missisquoi",98616,98632,98616,"SVR2",100,.,.,".",0,826,141,134,380,156,15,0 24,24017,"Brossard--Saint-Lambert",24011,"Brossard - La Prairie",100828,128001,79273,"A.P.",100,600.0,608.0,9,0,6480,970,1790,2628,1025,60,7 24,24017,"Brossard--Saint-Lambert",24011,"Brossard - La Prairie",100828,128001,79273,"M.P.",100,500.0,502.0,3,532,244,60,61,81,34,3,5 24,24017,"Brossard--Saint-Lambert",24011,"Brossard - La Prairie",100828,128001,79273,"O.P.",100,1.0,400.0,154,60090,29233,3964,11757,9022,3971,455,64 24,24017,"Brossard--Saint-Lambert",24011,"Brossard - La Prairie",100828,128001,79273,"SVR1",63,.,.,".",121,63,24,8,19,11,2,0 24,24017,"Brossard--Saint-Lambert",24011,"Brossard - La Prairie",100828,128001,79273,"SVR2",63,.,.,".",0,660,87,123,284,163,4,0 24,24017,"Brossard--Saint-Lambert",24065,"Saint-Lambert",100828,92419,21555,"A.P.",64,607.0,607.0,1,0,403,42,101,122,131,7,0 24,24017,"Brossard--Saint-Lambert",24065,"Saint-Lambert",100828,92419,21555,"A.P.",100,608.0,611.0,4,0,2425,289,670,947,492,27,0 24,24017,"Brossard--Saint-Lambert",24065,"Saint-Lambert",100828,92419,21555,"M.P.",100,500.0,500.0,1,96,69,18,18,25,8,0,0 24,24017,"Brossard--Saint-Lambert",24065,"Saint-Lambert",100828,92419,21555,"O.P.",100,103.0,149.0,45,17112,9250,807,3469,2874,1919,181,0 24,24017,"Brossard--Saint-Lambert",24065,"Saint-Lambert",100828,92419,21555,"SVR1",23,.,.,".",53,27,7,4,9,6,0,0 24,24017,"Brossard--Saint-Lambert",24065,"Saint-Lambert",100828,92419,21555,"SVR2",23,.,.,".",0,132,15,30,35,52,1,0 24,24018,"Rimouski-Neigette--Tmiscouata--Les Basques",24056,"Rimouski-Neigette - Tmiscouata - Les Basques",84809,84809,84809,"A.P.",100,600.0,613.0,14,0,5292,820,1793,688,1911,80,0 24,24018,"Rimouski-Neigette--Tmiscouata--Les Basques",24056,"Rimouski-Neigette - Tmiscouata - Les Basques",84809,84809,84809,"M.P.",100,500.0,508.0,9,1708,976,269,240,263,191,13,0 24,24018,"Rimouski-Neigette--Tmiscouata--Les Basques",24056,"Rimouski-Neigette - Tmiscouata - Les Basques",84809,84809,84809,"O.P.",100,1.0,190.0,192,66644,35919,5020,16237,3018,10885,759,0 24,24018,"Rimouski-Neigette--Tmiscouata--Les Basques",24056,"Rimouski-Neigette - Tmiscouata - Les Basques",84809,84809,84809,"SVR1",100,.,.,".",273,117,52,23,13,26,3,0 24,24018,"Rimouski-Neigette--Tmiscouata--Les Basques",24056,"Rimouski-Neigette - Tmiscouata - Les Basques",84809,84809,84809,"SVR2",100,.,.,".",0,412,57,67,119,157,12,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24013,"Charlesbourg - Haute-Saint-Charles",103331,102906,102906,"A.P.",100,600.0,616.0,17,0,9530,2928,3846,759,1875,87,35 24,24019,"Charlesbourg--Haute-Saint-Charles",24013,"Charlesbourg - Haute-Saint-Charles",103331,102906,102906,"M.P.",100,500.0,503.0,4,789,385,118,107,85,56,11,8 24,24019,"Charlesbourg--Haute-Saint-Charles",24013,"Charlesbourg - Haute-Saint-Charles",103331,102906,102906,"O.P.",100,1.0,400.0,195,80927,42672,12772,19924,2563,6553,717,143 24,24019,"Charlesbourg--Haute-Saint-Charles",24013,"Charlesbourg - Haute-Saint-Charles",103331,102906,102906,"SVR1",100,.,.,".",629,268,170,42,23,26,7,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24013,"Charlesbourg - Haute-Saint-Charles",103331,102906,102906,"SVR2",100,.,.,".",0,754,232,212,75,222,10,3 24,24019,"Charlesbourg--Haute-Saint-Charles",24038,"Louis-Saint-Laurent",103331,107291,425,"A.P.",0.0,600.0,600.0,1,0,0,0,0,0,0,0,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24038,"Louis-Saint-Laurent",103331,107291,425,"A.P.",6.7,606.0,606.0,1,0,33,11,13,2,7,0,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24038,"Louis-Saint-Laurent",103331,107291,425,"O.P.",0.0,1.0,1.0,1,0,0,0,0,0,0,0,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24038,"Louis-Saint-Laurent",103331,107291,425,"O.P.",60,36.0,36.0,1,274,131,54,52,4,16,5,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24038,"Louis-Saint-Laurent",103331,107291,425,"SVR1",0.3,.,.,".",5,2,1,0,0,0,0,0 24,24019,"Charlesbourg--Haute-Saint-Charles",24038,"Louis-Saint-Laurent",103331,107291,425,"SVR2",0.3,.,.,".",0,4,2,1,0,1,0,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"A.P.",0.0,602.0,602.0,1,0,0,0,0,0,0,0,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"A.P.",2.1,603.0,603.0,1,0,15,4,6,1,3,0,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"A.P.",97,600.0,600.0,1,0,516,179,219,17,91,7,2 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"A.P.",100,601.0,601.0,1,0,753,221,318,32,178,4,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"M.P.",75,500.0,500.0,1,101,64,26,9,5,24,0,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",0.3,30.0,30.0,1,1,1,0,0,0,0,0,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",24,40.0,40.0,1,70,32,7,17,1,6,0,-0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",80,7.0,7.0,1,370,167,47,76,3,38,2,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",82,6.0,6.0,1,351,180,55,83,4,30,8,1 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",96,25.0,25.0,1,342,167,44,95,7,19,2,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",98,23.0,23.0,1,453,256,95,125,10,21,4,1 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"O.P.",100,1.0,24.0,25,10618,5750,1781,2676,230,954,88,21 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"SVR1",15,.,.,".",71,35,18,5,4,7,0,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24007,"Beauport - Limoilou",92496,103556,16181,"SVR2",15,.,.,".",0,114,33,28,11,41,2,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"A.P.",8.3,612.0,612.0,1,0,65,17,23,5,18,1,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"A.P.",96,613.0,613.0,1,0,377,101,118,12,145,2,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"A.P.",100,602.0,615.0,12,0,6373,1287,2120,438,2428,100,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"M.P.",50,503.0,503.0,1,82,40,11,11,7,11,1,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"M.P.",67,504.0,504.0,1,213,31,5,7,6,13,1,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"M.P.",100,500.0,506.0,4,672,208,49,33,34,84,8,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"O.P.",58,184.0,184.0,1,287,94,21,35,6,31,1,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"O.P.",100,33.0,190.0,161,61122,31508,6742,11945,1634,10621,566,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"SVR1",82,.,.,".",201,88,47,16,4,18,4,0 24,24020,"Beauport-Cte-de-Beaupr-le d'Orlans-Charlevoix",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",92496,93430,76315,"SVR2",82,.,.,".",0,337,62,75,45,151,4,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"A.P.",0.5,608.0,608.0,1,0,1,0,1,0,0,0,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"A.P.",29,610.0,610.0,1,0,96,27,34,17,15,3,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"A.P.",100,611.0,620.0,5,0,1690,263,609,199,589,30,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"M.P.",100,500.0,500.0,1,70,44,8,6,13,14,3,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"O.P.",1.3,149.0,149.0,1,6,3,0,1,0,1,0,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"O.P.",3.5,148.0,148.0,1,13,7,2,3,1,1,0,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"O.P.",90,166.0,166.0,1,368,186,30,80,7,62,6,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"O.P.",100,136.0,212.0,56,22369,12282,1430,5731,1055,3812,254,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"SVR1",26,.,.,".",54,29,8,4,5,10,3,0 24,24021,"Chteauguay--Lacolle",24006,"Beauharnois - Salaberry",92169,109381,29793,"SVR2",26,.,.,".",0,171,21,26,18,103,3,0 24,24021,"Chteauguay--Lacolle",24015,"Chteauguay - Saint-Constant",92169,113459,62376,"A.P.",100,600.0,621.0,13,0,4309,565,1896,618,1180,40,10 24,24021,"Chteauguay--Lacolle",24015,"Chteauguay - Saint-Constant",92169,113459,62376,"M.P.",100,500.0,504.0,5,849,537,91,186,100,141,12,7 24,24021,"Chteauguay--Lacolle",24015,"Chteauguay - Saint-Constant",92169,113459,62376,"O.P.",100,1.0,105.0,105,47533,25697,2961,13454,2544,6152,500,86 24,24021,"Chteauguay--Lacolle",24015,"Chteauguay - Saint-Constant",92169,113459,62376,"SVR1",55,.,.,".",101,56,22,5,10,14,5,-0 24,24021,"Chteauguay--Lacolle",24015,"Chteauguay - Saint-Constant",92169,113459,62376,"SVR2",55,.,.,".",0,285,32,80,43,122,7,2 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"A.P.",3.7,610.0,610.0,1,0,13,4,3,0,5,0,0 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"A.P.",71,608.0,608.0,1,0,297,90,87,17,99,2,2 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"A.P.",100,602.0,602.0,1,0,457,140,135,59,117,7,0 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"A.P.",100,603.0,615.0,11,0,3831,1249,1017,320,1191,41,13 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"M.P.",100,500.0,501.0,2,216,96,28,22,17,27,2,0 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"O.P.",11,145.0,145.0,1,33,21,5,10,1,4,0,0 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"O.P.",22,146.0,146.0,1,84,46,10,21,3,10,1,0 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"O.P.",32,136.0,136.0,1,119,70,18,27,4,21,0,0 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"O.P.",92,135.0,135.0,1,292,165,35,74,7,44,4,1 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"O.P.",98,18.0,18.0,1,367,219,54,93,14,52,4,3 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"O.P.",100,15.0,402.0,173,65424,36995,9012,14634,1954,10557,575,263 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"SVR1",85,.,.,".",758,287,171,37,25,42,8,3 24,24022,"Chicoutimi--Le Fjord",24016,"Chicoutimi - Le Fjord",81501,96857,81501,"SVR2",85,.,.,".",0,599,200,77,59,249,11,3 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"A.P.",78,616.0,616.0,1,0,463,40,205,54,159,5,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"A.P.",79,618.0,618.0,1,0,456,33,194,54,168,6,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"A.P.",100,611.0,611.0,1,0,628,66,197,161,177,28,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"A.P.",100,600.0,617.0,15,0,6540,872,2531,1071,1965,101,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"M.P.",100,500.0,506.0,7,949,580,135,156,163,105,21,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"O.P.",3.1,143.0,143.0,1,15,9,1,5,1,2,0,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"O.P.",12,144.0,144.0,1,50,26,2,15,2,7,0,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"O.P.",97,149.0,149.0,1,540,269,24,137,22,71,14,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"O.P.",100,1.0,199.0,179,71678,36928,4350,18438,4103,9069,968,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"SVR1",91,.,.,".",235,108,45,24,17,16,5,0 24,24023,"Compton--Stanstead",24017,"Compton - Stanstead",101946,105626,95475,"SVR2",91,.,.,".",0,383,44,93,99,136,11,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"A.P.",0.0,603.0,603.0,1,0,0,0,0,0,0,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"A.P.",1.8,601.0,601.0,1,0,13,1,5,2,4,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"A.P.",3.5,604.0,604.0,1,0,25,2,10,2,11,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"A.P.",100,600.0,600.0,1,0,492,44,183,41,220,4,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"O.P.",0.2,13.1,13.1,1,1,1,0,0,0,0,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"O.P.",0.4,37.0,37.0,1,2,1,0,1,0,0,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"O.P.",3.6,11.0,11.0,1,8,5,0,3,1,1,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"O.P.",22,11.1,11.1,1,81,36,4,20,1,10,1,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"O.P.",59,57.1,57.1,1,302,162,11,74,13,60,4,1 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"O.P.",100,1.0,10.1,12,4587,2574,213,1222,149,945,41,4 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"SVR1",6.0,.,.,".",19,10,4,2,1,3,0,0 24,24023,"Compton--Stanstead",24070,"Sherbrooke",101946,104308,6471,"SVR2",6.0,.,.,".",0,63,9,16,13,24,1,0 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"A.P.",56,604.0,604.0,1,0,397,57,153,139,43,2,2 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"A.P.",88,608.0,608.0,1,0,409,66,134,142,58,7,1 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"A.P.",100,603.0,607.0,4,0,1372,170,487,475,208,22,10 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"O.P.",0.0,98.0,98.0,1,0,0,0,0,0,0,0,0 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"O.P.",100,27.0,145.0,86,33286,15355,2414,6115,4852,1520,309,145 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"SVR1",45,.,.,".",65,38,13,4,12,7,3,0 24,24024,"Dorval--Lachine--LaSalle",24029,"LaSalle - mard",106886,99845,47057,"SVR2",45,.,.,".",0,171,28,46,57,37,4,0 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"A.P.",74,608.0,608.0,1,0,268,26,97,85,46,11,2 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"A.P.",88,600.0,600.0,1,0,242,50,84,93,5,8,2 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"A.P.",100,601.0,607.0,7,0,3966,624,1351,1351,486,129,25 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"M.P.",100,500.0,504.0,5,926,471,66,103,222,62,9,9 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"O.P.",0.0,133.0,133.0,1,0,0,0,0,0,0,0,0 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"O.P.",30,139.0,139.0,1,162,55,4,24,22,2,3,0 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"O.P.",100,2.0,113.0,114,45801,22434,2874,10039,5789,2737,836,159 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"SVR1",60,.,.,".",124,77,19,14,28,5,7,4 24,24024,"Dorval--Lachine--LaSalle",24045,"Notre-Dame-de-Grce - Lachine",106886,105306,59829,"SVR2",60,.,.,".",0,257,30,61,115,34,14,2 24,24025,"Drummond",24018,"Drummond",98681,98681,98681,"A.P.",100,600.0,613.0,14,0,5575,998,2418,615,1465,79,0 24,24025,"Drummond",24018,"Drummond",98681,98681,98681,"M.P.",100,500.0,504.0,5,1067,605,165,156,165,111,8,0 24,24025,"Drummond",24018,"Drummond",98681,98681,98681,"O.P.",100,1.0,400.0,184,75993,39854,6089,21553,2991,8342,879,0 24,24025,"Drummond",24018,"Drummond",98681,98681,98681,"SVR1",100,.,.,".",220,130,41,36,21,30,2,0 24,24025,"Drummond",24018,"Drummond",98681,98681,98681,"SVR2",100,.,.,".",0,1256,262,326,187,462,19,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"A.P.",63,609.0,609.0,1,0,315,59,90,85,72,8,-0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"A.P.",100,600.0,614.0,12,0,3468,682,698,724,1322,42,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"M.P.",33,503.0,503.0,1,42,12,3,2,6,2,0,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"M.P.",100,500.0,502.0,3,365,150,33,20,53,39,5,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"O.P.",100,1.0,210.0,172,56091,24856,4217,8421,3327,8373,518,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"SVR1",82,.,.,".",203,97,38,12,15,26,6,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24019,"Gaspsie - les-de-la-Madeleine",78833,81991,66745,"SVR2",82,.,.,".",0,754,149,89,278,218,20,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"A.P.",20,608.0,608.0,1,0,32,8,5,6,13,0,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"A.P.",100,609.0,612.0,4,0,1215,316,147,406,327,19,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"M.P.",50,501.0,501.0,1,35,13,3,1,6,4,0,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"M.P.",100,500.0,500.0,1,108,73,16,5,38,14,0,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"O.P.",100,90.0,119.0,30,10013,4227,1195,687,1026,1237,82,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"SVR1",17,.,.,".",38,19,6,2,3,7,0,0 24,24026,"Gaspsie--Les les-de-la-Madeleine",24041,"Haute-Gaspsie - La Mitis - Matane - Matapdia",78833,71389,12088,"SVR2",17,.,.,".",0,101,13,7,48,30,2,0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"A.P.",0.4,600.0,600.0,1,0,3,0,2,1,1,0,-0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"A.P.",44,613.0,613.0,1,0,183,10,86,42,43,3,0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"A.P.",100,601.0,618.0,17,0,8780,751,4920,1564,1468,77,0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"M.P.",100,500.0,503.0,4,480,218,31,77,76,34,0,0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"O.P.",4.5,1.0,1.0,1,23,12,1,7,1,2,0,0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"O.P.",100,17.0,218.0,210,80853,41079,3159,26389,5185,5854,492,0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"SVR1",91,.,.,".",530,262,92,60,48,55,6,-0 24,24027,"Gatineau",24020,"Gatineau",106424,116780,106424,"SVR2",91,.,.,".",0,798,66,353,165,207,8,0 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"A.P.",86,601.0,601.0,1,0,552,53,263,46,176,9,6 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"A.P.",96,600.0,600.0,1,0,451,67,169,80,126,7,2 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"A.P.",100,602.0,609.0,8,0,3467,182,1464,395,1322,57,47 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"M.P.",50,500.0,500.0,1,75,36,3,5,26,1,1,1 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"M.P.",100,501.0,505.0,5,887,327,48,94,76,93,4,12 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",8.0,24.0,24.0,1,37,17,2,9,3,3,0,0 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",55,25.0,25.0,1,226,101,6,53,18,22,1,1 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",58,15.0,15.0,1,135,70,13,27,16,14,1,0 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",73,17.0,17.0,1,263,125,12,63,20,27,1,2 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",74,31.0,31.0,1,254,128,13,61,18,36,0,1 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",83,35.0,35.0,1,258,116,6,53,16,41,0,0 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",87,32.0,32.0,1,388,190,26,80,26,55,2,2 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",88,36.0,36.0,1,357,161,11,70,20,55,4,2 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",90,28.0,28.0,1,335,189,18,96,22,51,2,1 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",90,37.0,37.0,1,438,182,15,83,21,55,4,5 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",93,39.0,39.0,1,437,199,20,106,30,42,1,1 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"O.P.",100,1.0,407.0,161,66222,33802,2273,16701,3528,10296,589,415 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"SVR1",88,.,.,".",215,142,23,39,37,42,1,1 24,24028,"Hochelaga",24021,"Hochelaga",103436,102114,89199,"SVR2",88,.,.,".",0,611,25,201,89,282,9,5 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"A.P.",2.7,611.0,611.0,1,0,20,3,6,7,4,0,0 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"A.P.",85,612.0,612.0,1,0,315,36,96,85,91,4,3 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"M.P.",50,500.0,500.0,1,57,25,5,3,11,4,1,1 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"O.P.",37,169.0,169.0,1,142,72,7,28,16,19,0,2 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"O.P.",100,182.0,200.0,11,4192,2424,220,1030,474,646,39,15 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"SVR1",5.4,.,.,".",8,4,1,1,1,1,0,0 24,24028,"Hochelaga",24022,"Honor-Mercier",103436,109827,5790,"SVR2",5.4,.,.,".",0,23,3,4,10,5,1,0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"A.P.",35,611.0,611.0,1,0,165,17,61,20,64,2,0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"A.P.",81,612.0,612.0,1,0,355,44,142,52,112,3,2 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"O.P.",0.6,173.0,173.0,1,2,1,0,0,0,0,0,-0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"O.P.",28,181.0,181.0,1,86,37,3,16,6,12,1,0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"O.P.",30,183.0,183.0,1,99,45,6,25,6,7,1,-0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"O.P.",43,182.0,182.0,1,124,58,3,23,8,21,2,0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"O.P.",62,171.0,171.0,1,234,94,8,42,8,34,1,1 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"O.P.",100,174.0,197.0,17,5854,2686,226,1301,347,752,41,19 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"SVR1",8.0,.,.,".",19,11,2,2,2,4,0,0 24,24028,"Hochelaga",24028,"La Pointe-de-l'le",103436,99894,8447,"SVR2",8.0,.,.,".",0,30,3,8,4,14,1,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"A.P.",0.0,602.0,602.0,1,0,0,0,0,0,0,0,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"A.P.",2.4,603.0,603.0,1,0,8,1,2,4,2,0,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"A.P.",24,601.0,601.0,1,0,91,10,19,42,19,1,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"A.P.",100,600.0,600.0,1,0,314,38,86,143,43,3,1 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"M.P.",33,501.0,501.0,1,47,11,2,2,5,1,0,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"M.P.",100,500.0,500.0,1,339,76,5,24,30,15,2,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"O.P.",0.3,19.0,19.0,1,1,0,0,0,0,0,0,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"O.P.",41,47.0,47.0,1,203,92,13,35,30,11,2,1 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"O.P.",86,14.0,14.0,1,297,175,20,53,66,32,4,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"O.P.",100,1.0,404.0,19,7977,4333,494,1445,1782,524,77,11 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"SVR1",13,.,.,".",21,13,2,3,6,2,1,0 24,24029,"Honor-Mercier",24009,"Bourassa",102587,100453,10615,"SVR2",13,.,.,".",0,70,4,11,37,16,1,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"A.P.",15,612.0,612.0,1,0,57,7,17,16,16,1,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"A.P.",22,608.0,608.0,1,0,116,9,33,31,42,1,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"A.P.",39,607.0,607.0,1,0,191,10,61,54,65,1,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"A.P.",86,611.0,611.0,1,0,663,112,207,221,116,3,4 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"A.P.",100,600.0,610.0,9,0,4641,618,1294,1773,886,53,17 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"M.P.",50,502.0,502.0,1,95,74,9,18,28,14,4,3 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"M.P.",100,503.0,503.0,1,206,162,30,36,57,27,5,7 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",1.2,149.0,149.0,1,4,2,0,1,0,1,0,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",1.4,110.0,110.0,1,6,3,0,1,1,1,0,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",2.8,168.0,168.0,1,12,4,0,2,1,1,0,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",81,137.0,137.0,1,368,225,28,89,58,45,3,2 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",86,157.0,157.0,1,334,165,9,72,41,42,2,0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",94,148.0,148.0,1,359,210,24,83,50,49,4,1 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"O.P.",100,1.0,404.0,176,66914,32900,4347,12188,10431,5137,547,250 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"SVR1",84,.,.,".",121,65,16,13,21,14,1,-0 24,24029,"Honor-Mercier",24022,"Honor-Mercier",102587,109827,91972,"SVR2",84,.,.,".",0,358,49,61,155,84,10,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"A.P.",9.6,600.0,600.0,1,0,90,11,46,24,8,1,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"A.P.",48,610.0,610.0,1,0,369,22,196,100,45,5,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"A.P.",85,601.0,601.0,1,0,515,68,238,162,40,8,-0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"A.P.",100,612.0,612.0,1,0,593,57,311,163,53,9,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"A.P.",100,602.0,615.0,12,0,6556,668,3209,1784,776,119,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"M.P.",100,500.0,506.0,7,1699,972,118,411,342,82,19,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",1.0,12.0,12.0,1,7,3,0,2,1,0,0,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",19,134.0,134.0,1,76,33,3,22,4,2,1,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",19,11.0,11.0,1,79,47,6,27,10,4,0,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",37,7.0,7.0,1,222,127,16,78,25,6,2,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",47,129.1,129.1,1,234,110,7,75,22,5,1,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",78,6.0,6.0,1,416,255,43,155,44,10,3,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",100,146.0,146.0,1,514,301,20,209,52,19,2,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"O.P.",100,12.1,405.0,199,74675,39160,3806,24189,7205,3145,815,0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"SVR1",85,.,.,".",562,294,106,72,86,24,7,-0 24,24030,"Hull--Aylmer",24023,"Hull - Aylmer",103447,124117,103447,"SVR2",85,.,.,".",0,853,99,312,280,143,20,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"A.P.",24,603.0,603.0,1,0,141,15,62,9,52,3,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"A.P.",100,600.0,620.0,19,0,8470,1020,3396,819,3009,226,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"M.P.",100,500.0,503.0,4,595,268,41,67,69,79,12,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"O.P.",14,1.0,1.0,1,9,7,0,3,1,2,0,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"O.P.",100,2.0,404.0,170,80645,41320,3760,20151,2276,13371,1762,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"SVR1",89,.,.,".",196,102,23,21,20,35,4,0 24,24031,"Joliette",24025,"Joliette",100683,113140,100668,"SVR2",89,.,.,".",0,442,60,113,50,203,18,0 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"A.P.",0.1,602.0,602.0,1,0,1,0,0,0,0,0,-0 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"A.P.",29,608.0,608.0,1,0,121,37,35,7,40,1,1 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"A.P.",96,610.0,610.0,1,0,348,108,92,13,131,3,2 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"A.P.",100,600.0,601.0,2,0,417,125,138,22,127,4,1 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"O.P.",2.1,18.0,18.0,1,8,5,1,2,0,1,0,0 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"O.P.",8.2,135.0,135.0,1,26,15,3,7,1,4,0,0 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"O.P.",68,136.0,136.0,1,252,148,39,57,7,43,1,1 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"O.P.",78,146.0,146.0,1,291,158,35,73,10,35,4,2 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"O.P.",89,145.0,145.0,1,275,175,45,83,7,37,4,0 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"O.P.",100,3.0,153.0,25,11088,6316,1405,2685,291,1786,105,44 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"SVR1",15,.,.,".",136,51,31,7,4,8,1,1 24,24032,"Jonquire",24016,"Chicoutimi - Le Fjord",87596,96857,15356,"SVR2",15,.,.,".",0,107,36,14,10,45,2,0 24,24032,"Jonquire",24026,"Jonquire - Alma",87596,99258,68354,"A.P.",100,600.0,615.0,11,0,3895,1602,1220,103,933,37,0 24,24032,"Jonquire",24026,"Jonquire - Alma",87596,99258,68354,"M.P.",100,503.0,506.0,4,589,299,188,49,16,37,9,0 24,24032,"Jonquire",24026,"Jonquire - Alma",87596,99258,68354,"O.P.",100,1.0,403.0,154,55378,31933,11308,14558,581,5106,380,0 24,24032,"Jonquire",24026,"Jonquire - Alma",87596,99258,68354,"SVR1",69,.,.,".",375,154,90,22,11,25,6,0 24,24032,"Jonquire",24026,"Jonquire - Alma",87596,99258,68354,"SVR2",69,.,.,".",0,563,266,115,17,158,7,0 24,24032,"Jonquire",24060,"Roberval - Lac-Saint-Jean",87596,78765,3886,"A.P.",100,605.0,605.0,1,0,141,48,33,6,54,0,0 24,24032,"Jonquire",24060,"Roberval - Lac-Saint-Jean",87596,78765,3886,"M.P.",29,500.0,500.0,1,36,22,10,2,3,7,1,0 24,24032,"Jonquire",24060,"Roberval - Lac-Saint-Jean",87596,78765,3886,"O.P.",100,40.0,46.0,7,3015,1748,532,632,152,396,36,0 24,24032,"Jonquire",24060,"Roberval - Lac-Saint-Jean",87596,78765,3886,"SVR1",4.8,.,.,".",15,6,3,1,1,1,0,0 24,24032,"Jonquire",24060,"Roberval - Lac-Saint-Jean",87596,78765,3886,"SVR2",4.8,.,.,".",0,32,14,4,2,11,0,-0 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"A.P.",11,611.0,611.0,1,0,88,15,28,29,15,0,1 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"A.P.",61,607.0,607.0,1,0,304,17,96,85,103,2,1 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"A.P.",78,608.0,608.0,1,0,409,30,118,108,149,2,2 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"M.P.",50,500.0,502.0,2,151,99,14,21,39,18,5,4 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"M.P.",100,501.0,501.0,1,257,94,15,25,23,27,2,2 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",5.8,148.0,148.0,1,22,13,1,5,3,3,0,0 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",14,157.0,157.0,1,53,26,1,11,6,7,0,-0 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",19,137.0,137.0,1,85,52,7,20,13,10,1,1 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",63,169.0,169.0,1,241,123,13,48,27,32,0,3 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",97,168.0,168.0,1,417,131,14,52,31,33,1,0 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",99,110.0,110.0,1,442,234,10,103,45,71,3,2 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",99,149.0,149.0,1,346,178,10,83,28,52,3,2 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"O.P.",100,111.0,163.0,17,6890,3708,294,1582,640,1093,70,29 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"SVR1",11,.,.,".",16,9,2,2,3,2,0,0 24,24033,"La Pointe-de-l'le",24022,"Honor-Mercier",103512,109827,12065,"SVR2",11,.,.,".",0,47,6,8,20,11,1,0 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"A.P.",19,612.0,612.0,1,0,82,10,33,12,26,1,0 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"A.P.",65,611.0,611.0,1,0,303,32,113,36,117,5,1 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"A.P.",100,600.0,610.0,11,0,5153,413,2203,501,1947,74,15 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"M.P.",100,500.0,506.0,7,1316,472,69,124,113,144,12,10 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"O.P.",38,171.0,171.0,1,141,57,5,26,5,20,1,0 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"O.P.",57,182.0,182.0,1,162,75,3,31,11,28,2,1 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"O.P.",70,183.0,183.0,1,234,107,14,58,14,17,4,0 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"O.P.",72,181.0,181.0,1,220,95,6,41,14,31,1,1 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"O.P.",99,173.0,173.0,1,318,154,11,78,12,53,1,0 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"O.P.",100,1.0,401.0,181,71175,37203,2729,18589,3128,11866,732,159 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"SVR1",92,.,.,".",217,124,26,26,21,47,3,2 24,24033,"La Pointe-de-l'le",24028,"La Pointe-de-l'le",103512,99894,91447,"SVR2",92,.,.,".",0,345,34,91,49,159,10,2 24,24034,"La Prairie",24011,"Brossard - La Prairie",99811,128001,48728,"A.P.",100,609.0,614.0,6,0,4250,512,1590,1047,1048,48,5 24,24034,"La Prairie",24011,"Brossard - La Prairie",99811,128001,48728,"M.P.",100,503.0,503.0,1,175,83,21,20,21,18,0,3 24,24034,"La Prairie",24011,"Brossard - La Prairie",99811,128001,48728,"O.P.",100,126.0,189.1,88,35805,20753,2103,10086,3695,4518,325,26 24,24034,"La Prairie",24011,"Brossard - La Prairie",99811,128001,48728,"SVR1",37,.,.,".",72,37,14,4,11,6,1,0 24,24034,"La Prairie",24011,"Brossard - La Prairie",99811,128001,48728,"SVR2",37,.,.,".",0,391,51,73,168,96,2,0 24,24034,"La Prairie",24015,"Chteauguay - Saint-Constant",99811,113459,51083,"A.P.",100,607.0,620.0,9,0,3763,404,1713,359,1239,42,6 24,24034,"La Prairie",24015,"Chteauguay - Saint-Constant",99811,113459,51083,"O.P.",100,106.0,400.0,91,40340,21092,1636,11751,1351,5996,308,50 24,24034,"La Prairie",24015,"Chteauguay - Saint-Constant",99811,113459,51083,"SVR1",45,.,.,".",85,47,18,4,9,12,4,0 24,24034,"La Prairie",24015,"Chteauguay - Saint-Constant",99811,113459,51083,"SVR2",45,.,.,".",0,237,27,67,35,101,5,1 24,24035,"Lac-Saint-Jean",24026,"Jonquire - Alma",105783,99258,30904,"A.P.",100,602.0,606.0,5,0,1437,513,479,43,390,12,0 24,24035,"Lac-Saint-Jean",24026,"Jonquire - Alma",105783,99258,30904,"M.P.",100,500.0,502.0,3,436,257,111,58,22,61,5,0 24,24035,"Lac-Saint-Jean",24026,"Jonquire - Alma",105783,99258,30904,"O.P.",100,21.0,400.0,67,24155,13864,4334,6339,237,2763,191,0 24,24035,"Lac-Saint-Jean",24026,"Jonquire - Alma",105783,99258,30904,"SVR1",31,.,.,".",165,68,40,10,5,11,2,0 24,24035,"Lac-Saint-Jean",24026,"Jonquire - Alma",105783,99258,30904,"SVR2",31,.,.,".",0,248,117,50,8,70,3,0 24,24035,"Lac-Saint-Jean",24060,"Roberval - Lac-Saint-Jean",105783,78765,74879,"A.P.",100,600.0,616.0,16,0,5563,2891,993,276,1365,38,0 24,24035,"Lac-Saint-Jean",24060,"Roberval - Lac-Saint-Jean",105783,78765,74879,"M.P.",71,500.0,500.0,1,89,56,25,6,6,16,2,0 24,24035,"Lac-Saint-Jean",24060,"Roberval - Lac-Saint-Jean",105783,78765,74879,"M.P.",100,501.0,510.0,10,1561,963,577,107,116,151,12,0 24,24035,"Lac-Saint-Jean",24060,"Roberval - Lac-Saint-Jean",105783,78765,74879,"O.P.",100,1.0,169.0,161,58635,31074,13992,9301,993,6330,458,0 24,24035,"Lac-Saint-Jean",24060,"Roberval - Lac-Saint-Jean",105783,78765,74879,"SVR1",95,.,.,".",294,127,59,25,15,24,4,0 24,24035,"Lac-Saint-Jean",24060,"Roberval - Lac-Saint-Jean",105783,78765,74879,"SVR2",95,.,.,".",0,633,287,78,45,222,2,0 24,24036,"Lac-Saint-Louis",24027,"Lac-Saint-Louis",108795,108436,108436,"A.P.",100,600.0,610.0,11,0,8327,2644,1826,3257,298,302,0 24,24036,"Lac-Saint-Louis",24027,"Lac-Saint-Louis",108795,108436,108436,"M.P.",100,500.0,503.0,4,430,239,74,43,104,13,5,0 24,24036,"Lac-Saint-Louis",24027,"Lac-Saint-Louis",108795,108436,108436,"O.P.",100,1.0,404.0,204,81939,44791,12442,14255,14763,1363,1968,0 24,24036,"Lac-Saint-Louis",24027,"Lac-Saint-Louis",108795,108436,108436,"SVR1",100,.,.,".",173,76,30,8,29,2,7,0 24,24036,"Lac-Saint-Louis",24027,"Lac-Saint-Louis",108795,108436,108436,"SVR2",100,.,.,".",0,675,204,121,304,13,33,0 24,24036,"Lac-Saint-Louis",24045,"Notre-Dame-de-Grce - Lachine",108795,105306,359,"A.P.",13,600.0,600.0,1,0,35,7,12,13,1,1,0 24,24036,"Lac-Saint-Louis",24045,"Notre-Dame-de-Grce - Lachine",108795,105306,359,"O.P.",100,1.0,1.0,1,243,117,33,47,31,3,3,0 24,24036,"Lac-Saint-Louis",24045,"Notre-Dame-de-Grce - Lachine",108795,105306,359,"SVR1",0.3,.,.,".",1,0,0,0,0,0,0,0 24,24036,"Lac-Saint-Louis",24045,"Notre-Dame-de-Grce - Lachine",108795,105306,359,"SVR2",0.3,.,.,".",0,1,0,0,1,0,0,0 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"A.P.",0.0,602.0,602.0,1,0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"A.P.",100,605.0,616.0,9,0,4017,378,1402,752,1380,97,8 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"M.P.",100,501.0,501.0,1,376,112,19,33,27,24,7,2 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"O.P.",0.0,43.0,43.0,1,0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"O.P.",100,68.0,427.0,121,41873,20011,1553,9774,2470,5635,535,44 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"SVR1",47,.,.,".",113,74,14,18,27,11,3,0 24,24037,"LaSalle--mard--Verdun",24024,"Jeanne-Le Ber",105317,115821,52519,"SVR2",47,.,.,".",0,417,27,91,167,125,7,0 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"A.P.",12,608.0,608.0,1,0,54,9,18,19,8,1,0 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"A.P.",44,604.0,604.0,1,0,318,45,123,112,35,2,2 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"A.P.",100,600.0,611.0,6,0,3503,458,1330,949,674,70,22 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"M.P.",100,500.0,500.0,1,288,139,19,25,59,21,6,9 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"O.P.",100,1.0,400.0,108,41036,19956,2186,9195,4272,3487,513,303 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"SVR1",55,.,.,".",80,48,16,5,14,8,3,1 24,24037,"LaSalle--mard--Verdun",24029,"LaSalle - mard",105317,99845,52788,"SVR2",55,.,.,".",0,212,35,56,70,45,4,1 24,24037,"LaSalle--mard--Verdun",24045,"Notre-Dame-de-Grce - Lachine",105317,105306,0,"A.P.",0.0,608.0,608.0,1,0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24045,"Notre-Dame-de-Grce - Lachine",105317,105306,0,"O.P.",0.0,139.0,139.0,1,0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24045,"Notre-Dame-de-Grce - Lachine",105317,105306,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24045,"Notre-Dame-de-Grce - Lachine",105317,105306,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24075,"Westmount - Ville-Marie",105317,103263,10,"A.P.",0.1,608.0,608.0,1,0,1,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24075,"Westmount - Ville-Marie",105317,103263,10,"O.P.",1.7,175.0,175.0,1,7,3,0,1,1,0,0,0 24,24037,"LaSalle--mard--Verdun",24075,"Westmount - Ville-Marie",105317,103263,10,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24037,"LaSalle--mard--Verdun",24075,"Westmount - Ville-Marie",105317,103263,10,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24038,"Laurentides--Labelle",24030,"Laurentides - Labelle",111357,111342,111342,"A.P.",100,600.0,629.0,30,0,10216,1144,3753,1659,3433,203,24 24,24038,"Laurentides--Labelle",24030,"Laurentides - Labelle",111357,111342,111342,"M.P.",100,500.0,511.0,12,1371,795,121,194,194,245,35,6 24,24038,"Laurentides--Labelle",24030,"Laurentides - Labelle",111357,111342,111342,"O.P.",100,1.0,205.0,240,90434,44150,3846,20510,4889,13632,1157,116 24,24038,"Laurentides--Labelle",24030,"Laurentides - Labelle",111357,111342,111342,"SVR1",100,.,.,".",220,129,30,29,37,26,5,2 24,24038,"Laurentides--Labelle",24030,"Laurentides - Labelle",111357,111342,111342,"SVR2",100,.,.,".",0,1296,105,314,390,463,23,1 24,24039,"Laurier--Sainte-Marie",24021,"Hochelaga",107034,102114,11218,"A.P.",100,610.0,610.0,1,0,604,24,298,56,212,10,4 24,24039,"Laurier--Sainte-Marie",24021,"Hochelaga",107034,102114,11218,"O.P.",100,171.0,405.0,22,8716,4058,212,2023,378,1300,89,56 24,24039,"Laurier--Sainte-Marie",24021,"Hochelaga",107034,102114,11218,"SVR1",11,.,.,".",27,18,3,5,5,5,0,0 24,24039,"Laurier--Sainte-Marie",24021,"Hochelaga",107034,102114,11218,"SVR2",11,.,.,".",0,76,3,25,11,35,1,1 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"A.P.",29,603.0,603.0,1,0,204,11,71,34,79,6,3 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"A.P.",35,606.0,606.0,1,0,159,5,69,21,59,4,2 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"A.P.",89,609.0,609.0,1,0,595,48,218,108,204,11,7 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"A.P.",100,600.0,611.0,9,0,4966,149,1840,544,2264,114,55 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"O.P.",13,112.0,112.0,1,51,31,1,14,3,11,1,1 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"O.P.",28,113.0,113.0,1,125,74,1,41,6,24,1,1 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"O.P.",62,111.0,111.0,1,240,132,6,72,12,35,6,2 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"O.P.",100,192.0,192.0,1,255,122,28,40,23,21,3,7 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"O.P.",100,1.0,403.0,174,67445,35791,1136,17282,3112,12824,945,492 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"SVR1",86,.,.,".",187,124,11,30,32,36,13,3 24,24039,"Laurier--Sainte-Marie",24031,"Laurier - Sainte-Marie",107034,102342,87901,"SVR2",86,.,.,".",0,884,58,247,165,371,31,12 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"A.P.",13,602.0,602.0,1,0,57,3,29,16,6,2,1 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"M.P.",25,500.0,500.0,1,26,4,0,1,3,0,0,0 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"O.P.",10,32.0,32.0,1,57,32,1,23,4,2,2,0 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"O.P.",39,36.0,36.0,1,97,30,1,12,14,0,2,-0 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"O.P.",53,34.0,34.0,1,240,140,6,91,28,7,5,3 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"O.P.",100,35.0,35.0,1,464,219,15,137,41,12,13,1 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"SVR1",1.4,.,.,".",3,1,0,1,0,0,0,0 24,24039,"Laurier--Sainte-Marie",24047,"Outremont",107034,95357,1077,"SVR2",1.4,.,.,".",0,15,1,8,4,2,0,0 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"A.P.",25,610.0,610.0,1,0,79,11,20,35,11,1,0 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"A.P.",93,600.0,600.0,1,0,423,31,161,150,59,19,5 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"M.P.",50,500.0,505.0,3,336,147,30,35,69,11,3,1 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"O.P.",41,9.0,9.0,1,170,60,8,27,15,5,4,1 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"O.P.",61,15.1,15.1,1,249,107,16,51,28,8,2,1 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"O.P.",64,12.0,12.0,1,289,70,8,28,19,13,1,0 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"O.P.",100,1.0,401.0,10,4339,1800,177,833,481,236,55,18 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"SVR1",7.0,.,.,".",19,11,2,2,6,0,1,0 24,24039,"Laurier--Sainte-Marie",24075,"Westmount - Ville-Marie",107034,103263,6838,"SVR2",7.0,.,.,".",0,65,12,16,30,3,4,0 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"A.P.",39,607.0,607.0,1,0,159,32,67,35,19,5,1 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"A.P.",69,613.0,613.0,1,0,350,42,170,42,88,4,3 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"A.P.",99,614.0,614.0,1,0,237,40,104,70,19,4,0 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"A.P.",100,600.0,615.0,11,0,5297,887,2138,1246,921,71,34 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"O.P.",4.1,104.0,104.0,1,12,6,1,3,1,1,0,0 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"O.P.",62,107.0,107.0,1,215,52,7,25,16,4,1,0 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"O.P.",89,109.2,109.2,1,882,368,56,181,98,25,5,3 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"O.P.",99,114.0,114.0,1,440,178,21,85,61,3,2,6 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"O.P.",100,1.0,406.0,184,75286,37461,6141,18125,7485,4588,689,433 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"SVR1",83,.,.,".",102,51,16,9,18,4,3,1 24,24040,"Laval--Les les",24033,"Laval - Les les",103053,124527,103053,"SVR2",83,.,.,".",0,483,90,162,135,83,10,2 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"A.P.",13,609.0,609.0,1,0,81,9,32,11,28,1,0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"A.P.",47,612.0,612.0,1,0,277,27,106,42,93,9,0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"A.P.",100,610.0,617.0,5,0,2438,304,909,359,824,42,0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"M.P.",50,500.0,500.0,1,77,23,4,5,7,7,1,0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"M.P.",100,505.0,507.0,3,237,106,19,23,30,29,5,0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"O.P.",100,120.0,182.4,75,26360,12573,1355,5980,1342,3553,343,0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"SVR1",32,.,.,".",100,50,21,6,10,9,3,-0 24,24041,"Longueuil--Charles-LeMoyne",24062,"Saint-Bruno - Saint-Hubert",104895,105532,34031,"SVR2",32,.,.,".",0,317,39,71,65,131,10,-0 24,24041,"Longueuil--Charles-LeMoyne",24065,"Saint-Lambert",104895,92419,70864,"A.P.",36,607.0,607.0,1,0,231,24,58,70,75,4,0 24,24041,"Longueuil--Charles-LeMoyne",24065,"Saint-Lambert",104895,92419,70864,"A.P.",100,600.0,614.0,10,0,5407,647,2013,1012,1642,93,0 24,24041,"Longueuil--Charles-LeMoyne",24065,"Saint-Lambert",104895,92419,70864,"M.P.",100,501.0,501.0,1,147,70,13,13,23,19,2,0 24,24041,"Longueuil--Charles-LeMoyne",24065,"Saint-Lambert",104895,92419,70864,"O.P.",100,1.0,402.0,150,55944,25328,2464,12217,3205,6819,623,0 24,24041,"Longueuil--Charles-LeMoyne",24065,"Saint-Lambert",104895,92419,70864,"SVR1",77,.,.,".",171,87,22,14,29,21,2,0 24,24041,"Longueuil--Charles-LeMoyne",24065,"Saint-Lambert",104895,92419,70864,"SVR2",77,.,.,".",0,432,48,98,112,169,4,0 24,24042,"Lvis--Lotbinire",24036,"Lotbinire - Chutes-de-la-Chaudire",107593,107566,107566,"A.P.",100,600.0,626.0,27,0,9779,3785,3465,588,1810,131,0 24,24042,"Lvis--Lotbinire",24036,"Lotbinire - Chutes-de-la-Chaudire",107593,107566,107566,"M.P.",100,500.0,508.0,9,727,472,177,101,75,111,8,0 24,24042,"Lvis--Lotbinire",24036,"Lotbinire - Chutes-de-la-Chaudire",107593,107566,107566,"O.P.",100,1.0,181.0,196,81668,45555,18302,17994,2148,6324,787,0 24,24042,"Lvis--Lotbinire",24036,"Lotbinire - Chutes-de-la-Chaudire",107593,107566,107566,"SVR1",100,.,.,".",330,151,87,15,21,25,3,0 24,24042,"Lvis--Lotbinire",24036,"Lotbinire - Chutes-de-la-Chaudire",107593,107566,107566,"SVR2",100,.,.,".",0,369,109,108,34,111,7,0 24,24042,"Lvis--Lotbinire",24042,"Mgantic - L'rable",107593,86851,27,"A.P.",0.3,602.0,602.0,1,0,2,1,0,0,0,0,0 24,24042,"Lvis--Lotbinire",24042,"Mgantic - L'rable",107593,86851,27,"O.P.",4.8,40.0,40.0,1,25,16,8,5,1,2,0,0 24,24042,"Lvis--Lotbinire",24042,"Mgantic - L'rable",107593,86851,27,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24042,"Lvis--Lotbinire",24042,"Mgantic - L'rable",107593,86851,27,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24043,"Longueuil--Saint-Hubert",24035,"Longueuil - Pierre-Boucher",104366,99571,81120,"A.P.",100,602.0,612.0,10,0,7094,708,3113,780,2376,101,16 24,24043,"Longueuil--Saint-Hubert",24035,"Longueuil - Pierre-Boucher",104366,99571,81120,"M.P.",100,500.0,502.0,3,578,226,42,57,82,38,4,3 24,24043,"Longueuil--Saint-Hubert",24035,"Longueuil - Pierre-Boucher",104366,99571,81120,"O.P.",100,38.0,404.0,170,63506,32948,2571,17725,3071,8801,715,65 24,24043,"Longueuil--Saint-Hubert",24035,"Longueuil - Pierre-Boucher",104366,99571,81120,"SVR1",82,.,.,".",172,91,28,21,20,18,3,1 24,24043,"Longueuil--Saint-Hubert",24035,"Longueuil - Pierre-Boucher",104366,99571,81120,"SVR2",82,.,.,".",0,517,46,183,64,207,15,2 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"A.P.",21,606.0,606.0,1,0,133,8,52,11,60,2,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"A.P.",53,612.0,612.0,1,0,317,31,121,49,106,10,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"A.P.",98,605.0,605.0,1,0,647,80,252,83,220,12,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"A.P.",100,613.0,614.0,2,0,1086,132,388,131,412,23,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"M.P.",33,502.0,502.0,1,32,18,3,4,4,7,0,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"M.P.",67,503.0,503.0,1,73,38,6,9,7,13,3,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"M.P.",100,504.0,504.0,1,114,62,15,19,11,16,1,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"O.P.",73,54.0,54.0,1,222,90,15,34,15,23,2,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"O.P.",77,60.0,60.0,1,238,134,9,56,17,50,2,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"O.P.",81,59.0,59.0,1,301,182,11,74,27,64,6,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"O.P.",100,45.0,118.0,49,17398,8819,854,4174,889,2655,247,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"SVR1",22,.,.,".",69,34,15,4,7,6,2,0 24,24043,"Longueuil--Saint-Hubert",24062,"Saint-Bruno - Saint-Hubert",104366,105532,23246,"SVR2",22,.,.,".",0,218,27,49,45,90,7,0 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"A.P.",99,600.0,600.0,1,0,354,128,128,17,77,4,0 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"A.P.",100,605.0,605.0,1,0,623,108,178,93,232,12,1 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"A.P.",100,603.0,603.0,1,0,477,111,157,69,128,10,2 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"A.P.",100,601.0,625.0,23,0,11379,2693,3467,1850,3227,121,21 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"M.P.",100,500.0,504.0,5,1484,758,190,177,253,108,18,12 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"O.P.",87,1.1,1.1,1,332,158,63,74,4,14,2,1 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"O.P.",99,48.0,48.0,1,581,310,53,113,41,96,8,0 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"O.P.",100,27.0,27.0,1,501,218,34,119,16,43,5,1 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"O.P.",100,1.0,405.0,196,79295,45331,9557,18799,5618,10451,802,104 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"SVR1",100,.,.,".",509,226,126,31,32,30,7,0 24,24044,"Louis-Hbert",24037,"Louis-Hbert",104038,104060,104038,"SVR2",100,.,.,".",0,602,132,116,116,230,7,1 24,24045,"Louis-Saint-Laurent",24013,"Charlesbourg - Haute-Saint-Charles",106888,102906,0,"A.P.",0.0,604.0,604.0,1,0,0,0,0,0,0,0,0 24,24045,"Louis-Saint-Laurent",24013,"Charlesbourg - Haute-Saint-Charles",106888,102906,0,"O.P.",0.0,46.0,47.0,2,0,0,0,0,0,0,0,0 24,24045,"Louis-Saint-Laurent",24013,"Charlesbourg - Haute-Saint-Charles",106888,102906,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24045,"Louis-Saint-Laurent",24013,"Charlesbourg - Haute-Saint-Charles",106888,102906,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24045,"Louis-Saint-Laurent",24037,"Louis-Hbert",106888,104060,22,"A.P.",1.5,600.0,600.0,1,0,5,2,2,0,1,0,0 24,24045,"Louis-Saint-Laurent",24037,"Louis-Hbert",106888,104060,22,"O.P.",13,1.1,1.1,1,52,24,10,11,1,2,0,0 24,24045,"Louis-Saint-Laurent",24037,"Louis-Hbert",106888,104060,22,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 24,24045,"Louis-Saint-Laurent",24037,"Louis-Hbert",106888,104060,22,"SVR2",0.1,.,.,".",0,0,0,0,0,0,0,0 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"A.P.",93,606.0,606.0,1,0,468,152,177,34,99,2,4 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"A.P.",100,600.0,623.0,23,0,10536,4037,3702,763,1900,107,27 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"M.P.",100,500.0,503.0,4,520,280,106,48,60,47,10,9 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"O.P.",40,36.0,36.0,1,181,86,35,35,3,10,3,0 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"O.P.",100,1.0,405.0,215,84457,43492,15961,18301,2608,5777,713,132 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"SVR1",100,.,.,".",1508,633,463,78,36,48,8,1 24,24045,"Louis-Saint-Laurent",24038,"Louis-Saint-Laurent",106888,107291,106866,"SVR2",100,.,.,".",0,1090,512,222,102,243,9,2 24,24046,"Manicouagan",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",94766,93430,11546,"A.P.",100,600.0,601.0,2,0,513,70,162,37,237,7,0 24,24046,"Manicouagan",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",94766,93430,11546,"M.P.",100,505.0,505.0,1,59,42,5,13,11,12,1,0 24,24046,"Manicouagan",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",94766,93430,11546,"O.P.",100,1.0,32.0,31,9508,4506,532,1832,193,1884,65,0 24,24046,"Manicouagan",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",94766,93430,11546,"SVR1",13,.,.,".",31,14,7,2,1,3,1,-0 24,24046,"Manicouagan",24014,"Montmorency - Charlevoix - Haute-Cte-Nord",94766,93430,11546,"SVR2",13,.,.,".",0,52,10,12,7,23,1,-0 24,24046,"Manicouagan",24039,"Manicouagan",94766,83220,83220,"A.P.",100,600.0,615.0,16,0,3729,563,1559,226,1292,89,0 24,24046,"Manicouagan",24039,"Manicouagan",94766,83220,83220,"M.P.",100,500.0,503.0,4,513,249,53,56,42,89,9,0 24,24046,"Manicouagan",24039,"Manicouagan",94766,83220,83220,"O.P.",100,1.0,182.0,184,64908,29110,3153,14661,1573,8938,785,0 24,24046,"Manicouagan",24039,"Manicouagan",94766,83220,83220,"SVR1",100,.,.,".",227,95,32,27,6,26,4,0 24,24046,"Manicouagan",24039,"Manicouagan",94766,83220,83220,"SVR2",100,.,.,".",0,407,77,134,35,150,11,0 24,24047,"Mgantic--L'rable",24005,"Beauce",88745,108268,1931,"A.P.",13,626.0,626.0,1,0,26,13,5,8,1,0,0 24,24047,"Mgantic--L'rable",24005,"Beauce",88745,108268,1931,"A.P.",100,627.0,627.0,1,0,86,47,20,10,7,2,0 24,24047,"Mgantic--L'rable",24005,"Beauce",88745,108268,1931,"M.P.",25,509.0,509.0,1,32,19,10,2,6,2,0,0 24,24047,"Mgantic--L'rable",24005,"Beauce",88745,108268,1931,"O.P.",100,209.0,212.0,4,1430,655,318,190,85,52,10,0 24,24047,"Mgantic--L'rable",24005,"Beauce",88745,108268,1931,"SVR1",1.7,.,.,".",4,2,1,0,0,0,0,0 24,24047,"Mgantic--L'rable",24005,"Beauce",88745,108268,1931,"SVR2",1.7,.,.,".",0,16,10,2,3,1,0,0 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"A.P.",100,602.0,602.0,1,0,541,259,136,39,98,5,5 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"A.P.",100,600.0,616.0,16,0,5993,2914,1334,474,1181,57,33 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"M.P.",100,500.0,508.0,9,1334,890,511,87,151,101,22,18 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"O.P.",95,40.0,40.0,1,500,317,153,92,24,42,5,1 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"O.P.",100,1.0,187.0,186,68155,35922,17548,9948,1835,5842,559,190 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"SVR1",100,.,.,".",224,101,61,11,11,14,4,-0 24,24047,"Mgantic--L'rable",24042,"Mgantic - L'rable",88745,86851,86814,"SVR2",100,.,.,".",0,852,476,103,66,201,3,3 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"A.P.",12,609.0,609.0,1,0,60,9,13,19,18,2,0 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"A.P.",100,611.0,623.0,9,0,3177,384,1298,333,1077,58,27 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"M.P.",75,500.0,500.0,1,66,44,7,20,11,4,1,2 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"O.P.",98,155.0,155.0,1,681,439,57,176,42,148,14,2 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"O.P.",100,125.0,205.0,98,43699,23741,2202,12033,1827,7037,461,181 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"SVR1",46,.,.,".",87,49,21,7,10,9,2,0 24,24048,"Mirabel",24004,"Argenteuil - Papineau - Mirabel",103536,124180,60232,"SVR2",46,.,.,".",0,294,36,66,96,92,4,0 24,24048,"Mirabel",24057,"Rivire-des-Mille-les",103536,104211,15689,"A.P.",100,607.0,612.0,2,0,1079,109,450,117,386,17,0 24,24048,"Mirabel",24057,"Rivire-des-Mille-les",103536,104211,15689,"M.P.",33,501.0,501.0,1,23,10,2,2,3,2,1,0 24,24048,"Mirabel",24057,"Rivire-des-Mille-les",103536,104211,15689,"O.P.",100,146.0,162.1,26,11721,6249,506,3199,505,1890,149,0 24,24048,"Mirabel",24057,"Rivire-des-Mille-les",103536,104211,15689,"SVR1",15,.,.,".",19,10,4,2,2,2,1,0 24,24048,"Mirabel",24057,"Rivire-des-Mille-les",103536,104211,15689,"SVR2",15,.,.,".",0,117,10,25,20,59,3,0 24,24048,"Mirabel",24059,"Rivire-du-Nord",103536,115180,13080,"A.P.",100,609.0,616.0,2,0,804,95,382,68,251,8,0 24,24048,"Mirabel",24059,"Rivire-du-Nord",103536,115180,13080,"O.P.",100,159.0,173.1,20,9575,4930,336,2892,239,1357,106,0 24,24048,"Mirabel",24059,"Rivire-du-Nord",103536,115180,13080,"SVR1",11,.,.,".",17,9,3,1,2,2,0,0 24,24048,"Mirabel",24059,"Rivire-du-Nord",103536,115180,13080,"SVR2",11,.,.,".",0,110,13,37,13,45,1,0 24,24048,"Mirabel",24071,"Terrebonne - Blainville",103536,121095,14535,"A.P.",100,600.0,601.0,2,0,884,115,330,52,376,11,0 24,24048,"Mirabel",24071,"Terrebonne - Blainville",103536,121095,14535,"M.P.",100,500.0,500.0,1,119,110,22,34,13,40,1,0 24,24048,"Mirabel",24071,"Terrebonne - Blainville",103536,121095,14535,"O.P.",100,1.0,21.0,21,10085,5315,441,2543,302,1912,117,0 24,24048,"Mirabel",24071,"Terrebonne - Blainville",103536,121095,14535,"SVR1",12,.,.,".",17,9,3,1,3,2,0,-0 24,24048,"Mirabel",24071,"Terrebonne - Blainville",103536,121095,14535,"SVR2",12,.,.,".",0,44,6,15,4,19,1,0 24,24049,"Montarville",24012,"Chambly - Borduas",95095,129315,16736,"A.P.",100,604.0,614.0,2,0,1430,124,522,141,492,12,139 24,24049,"Montarville",24012,"Chambly - Borduas",95095,129315,16736,"O.P.",100,92.0,112.0,28,12203,7532,488,3391,602,2118,119,814 24,24049,"Montarville",24012,"Chambly - Borduas",95095,129315,16736,"SVR1",12,.,.,".",30,16,6,3,2,3,0,2 24,24049,"Montarville",24012,"Chambly - Borduas",95095,129315,16736,"SVR2",12,.,.,".",0,76,9,20,11,30,1,4 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"A.P.",1.9,605.0,605.0,1,0,13,2,5,2,4,0,-0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"A.P.",79,606.0,606.0,1,0,485,28,189,42,219,7,-0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"A.P.",87,609.0,609.0,1,0,529,59,207,70,184,9,-0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"A.P.",100,600.0,608.0,7,0,3592,530,1283,733,954,92,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"M.P.",33,503.0,503.0,1,36,19,3,4,4,6,2,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"M.P.",50,500.0,500.0,1,77,23,4,5,7,7,1,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"M.P.",67,502.0,502.0,1,65,36,7,9,7,13,0,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"M.P.",100,501.0,501.0,1,101,67,14,28,13,12,0,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"O.P.",19,59.0,59.0,1,72,43,3,18,6,15,1,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"O.P.",23,60.0,60.0,1,70,40,3,16,5,15,1,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"O.P.",27,54.0,54.0,1,81,33,6,12,6,9,1,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"O.P.",100,1.0,401.0,109,36520,21547,2160,10108,3261,5357,661,0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"SVR1",45,.,.,".",138,69,30,9,14,12,4,-0 24,24049,"Montarville",24062,"Saint-Bruno - Saint-Hubert",95095,105532,48255,"SVR2",45,.,.,".",0,440,55,99,91,182,14,0 24,24049,"Montarville",24074,"Verchres - Les Patriotes",95095,104355,30104,"A.P.",100,608.0,611.0,4,0,2265,222,890,263,850,40,0 24,24049,"Montarville",24074,"Verchres - Les Patriotes",95095,104355,30104,"M.P.",100,505.0,505.0,1,185,117,20,27,29,34,7,0 24,24049,"Montarville",24074,"Verchres - Les Patriotes",95095,104355,30104,"O.P.",100,86.0,402.0,55,22060,13482,1198,6318,1177,4488,301,0 24,24049,"Montarville",24074,"Verchres - Les Patriotes",95095,104355,30104,"SVR1",28,.,.,".",54,27,10,5,6,6,1,0 24,24049,"Montarville",24074,"Verchres - Les Patriotes",95095,104355,30104,"SVR2",28,.,.,".",0,282,29,59,32,157,4,0 24,24050,"Montcalm",24043,"Montcalm",99518,144141,90869,"A.P.",69,605.0,605.0,1,0,174,20,67,10,73,4,0 24,24050,"Montcalm",24043,"Montcalm",99518,144141,90869,"A.P.",100,600.0,611.0,9,0,5420,537,2444,322,1952,165,0 24,24050,"Montcalm",24043,"Montcalm",99518,144141,90869,"M.P.",100,500.0,501.0,2,420,137,24,29,32,42,10,0 24,24050,"Montcalm",24043,"Montcalm",99518,144141,90869,"O.P.",100,1.0,172.0,152,68436,35122,2672,18813,1586,10619,1432,0 24,24050,"Montcalm",24043,"Montcalm",99518,144141,90869,"SVR1",64,.,.,".",124,59,17,9,16,15,2,-0 24,24050,"Montcalm",24043,"Montcalm",99518,144141,90869,"SVR2",64,.,.,".",0,219,21,74,21,90,12,0 24,24050,"Montcalm",24053,"Repentigny",99518,119855,8649,"A.P.",100,601.0,601.0,1,0,458,45,171,41,191,10,0 24,24050,"Montcalm",24053,"Repentigny",99518,119855,8649,"M.P.",33,501.0,501.0,1,73,39,5,12,11,10,1,0 24,24050,"Montcalm",24053,"Repentigny",99518,119855,8649,"O.P.",100,29.0,42.0,14,6344,3065,207,1590,158,1051,59,0 24,24050,"Montcalm",24053,"Repentigny",99518,119855,8649,"SVR1",6.8,.,.,".",12,6,2,2,1,1,0,0 24,24050,"Montcalm",24053,"Repentigny",99518,119855,8649,"SVR2",6.8,.,.,".",0,55,5,17,5,27,1,0 24,24051,"Montmagny--L'Islet--Kamouraska--Rivire-du-Loup",24058,"Montmagny - L'Islet - Kamouraska - Rivire-du-Loup",97261,97261,97261,"A.P.",100,600.0,613.0,14,0,5640,1996,1697,374,1495,78,0 24,24051,"Montmagny--L'Islet--Kamouraska--Rivire-du-Loup",24058,"Montmagny - L'Islet - Kamouraska - Rivire-du-Loup",97261,97261,97261,"M.P.",100,500.0,514.0,15,1790,999,496,174,198,116,15,0 24,24051,"Montmagny--L'Islet--Kamouraska--Rivire-du-Loup",24058,"Montmagny - L'Islet - Kamouraska - Rivire-du-Loup",97261,97261,97261,"O.P.",100,1.0,226.0,226,76971,40300,14544,15292,2109,7763,592,0 24,24051,"Montmagny--L'Islet--Kamouraska--Rivire-du-Loup",24058,"Montmagny - L'Islet - Kamouraska - Rivire-du-Loup",97261,97261,97261,"SVR1",100,.,.,".",208,102,54,18,12,17,1,0 24,24051,"Montmagny--L'Islet--Kamouraska--Rivire-du-Loup",24058,"Montmagny - L'Islet - Kamouraska - Rivire-du-Loup",97261,97261,97261,"SVR2",100,.,.,".",0,504,186,104,50,159,5,0 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"A.P.",100,602.0,602.0,1,0,595,159,103,268,43,20,2 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"A.P.",100,600.0,612.0,12,0,5643,2294,662,2405,187,82,13 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"M.P.",100,500.0,502.0,3,730,304,111,21,149,8,3,12 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"O.P.",100,39.0,39.0,1,395,157,27,45,72,10,4,0 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"O.P.",100,1.0,412.0,170,67331,31571,10973,6051,12959,870,563,155 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"SVR1",100,.,.,".",98,58,11,9,32,4,2,0 24,24052,"Mount Royal",24044,"Mount Royal",101258,101273,101258,"SVR2",100,.,.,".",0,678,316,72,266,14,9,1 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"A.P.",26,608.0,608.0,1,0,96,10,35,30,17,4,1 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"A.P.",100,609.0,613.0,5,0,2007,335,597,867,86,110,12 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"M.P.",100,505.0,506.0,2,337,185,42,22,110,0,7,4 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"O.P.",70,139.0,139.0,1,382,131,11,57,51,4,7,1 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"O.P.",100,115.0,401.0,76,29920,14599,2411,5349,5505,470,750,114 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"SVR1",39,.,.,".",81,50,12,9,19,3,5,2 24,24053,"Notre-Dame-de-Grce--Westmount",24045,"Notre-Dame-de-Grce - Lachine",104410,105306,45118,"SVR2",39,.,.,".",0,168,20,40,75,22,9,1 24,24053,"Notre-Dame-de-Grce--Westmount",24047,"Outremont",104410,95357,1201,"A.P.",14,606.0,606.0,1,0,73,11,32,24,5,1,0 24,24053,"Notre-Dame-de-Grce--Westmount",24047,"Outremont",104410,95357,1201,"O.P.",71,80.0,80.0,1,322,167,42,67,48,5,4,1 24,24053,"Notre-Dame-de-Grce--Westmount",24047,"Outremont",104410,95357,1201,"O.P.",100,140.0,141.0,2,726,367,97,152,97,12,9,0 24,24053,"Notre-Dame-de-Grce--Westmount",24047,"Outremont",104410,95357,1201,"SVR1",1.6,.,.,".",3,2,0,1,0,0,0,0 24,24053,"Notre-Dame-de-Grce--Westmount",24047,"Outremont",104410,95357,1201,"SVR2",1.6,.,.,".",0,17,2,9,4,2,0,0 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"A.P.",1.4,602.0,602.0,1,0,10,3,2,5,0,0,0 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"A.P.",10,603.0,603.0,1,0,61,12,17,26,3,3,0 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"A.P.",75,609.0,609.0,1,0,614,191,119,277,10,14,3 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"A.P.",94,605.0,605.0,1,0,916,250,162,437,37,24,6 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"A.P.",100,608.0,608.0,1,0,534,42,203,211,43,33,3 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"A.P.",100,604.0,607.0,3,0,2579,423,730,1122,192,103,9 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"M.P.",50,505.0,505.0,1,130,49,9,6,28,6,1,0 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"M.P.",100,501.0,503.0,3,626,340,65,40,226,5,2,2 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"O.P.",21,38.0,38.0,1,89,36,9,9,15,2,1,0 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"O.P.",66,45.0,45.0,1,278,110,30,41,30,6,3,1 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"O.P.",98,175.0,175.0,1,403,181,27,70,68,10,6,1 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"O.P.",100,63.0,409.0,108,43239,20710,3707,7732,7498,846,820,107 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"SVR1",58,.,.,".",154,95,17,18,49,3,8,1 24,24053,"Notre-Dame-de-Grce--Westmount",24075,"Westmount - Ville-Marie",104410,103263,58091,"SVR2",58,.,.,".",0,541,101,129,250,28,31,2 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"A.P.",65,606.0,606.0,1,0,290,9,125,38,106,7,4 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"A.P.",71,603.0,603.0,1,0,490,27,171,81,188,16,7 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"O.P.",38,111.0,111.0,1,148,82,3,45,8,21,3,1 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"O.P.",72,113.0,113.0,1,317,187,4,103,15,59,4,2 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"O.P.",87,112.0,112.0,1,344,212,9,98,19,78,5,3 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"O.P.",100,83.0,119.0,21,9424,4890,192,2541,600,1340,139,78 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"SVR1",13,.,.,".",28,19,2,5,5,5,2,0 24,24054,"Outremont",24031,"Laurier - Sainte-Marie",100916,102342,12882,"SVR2",13,.,.,".",0,133,9,37,25,56,5,2 24,24054,"Outremont",24044,"Mount Royal",100916,101273,15,"A.P.",0.0,602.0,602.0,1,0,0,0,0,0,0,0,0 24,24054,"Outremont",24044,"Mount Royal",100916,101273,15,"O.P.",0.5,39.0,39.0,1,2,1,0,0,0,0,0,0 24,24054,"Outremont",24044,"Mount Royal",100916,101273,15,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24054,"Outremont",24044,"Mount Royal",100916,101273,15,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"A.P.",50,600.0,600.0,1,0,257,13,169,42,26,6,2 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"A.P.",79,606.0,606.0,1,0,406,59,176,132,29,7,2 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"A.P.",84,602.0,602.0,1,0,373,22,192,105,38,13,4 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"A.P.",100,601.0,608.0,6,0,3768,253,2050,1006,394,51,14 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"M.P.",25,500.0,500.0,1,26,4,0,1,3,0,0,0 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"M.P.",100,502.0,502.0,1,315,142,24,35,62,9,6,6 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"O.P.",0.0,36.0,36.0,1,0,0,0,0,0,0,0,0 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"O.P.",47,34.0,34.0,1,210,123,5,80,24,7,4,3 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"O.P.",90,32.0,32.0,1,497,277,6,203,34,18,13,3 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"O.P.",100,3.0,402.0,140,58189,28903,2547,16663,6486,2371,614,222 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"SVR1",91,.,.,".",188,91,9,51,16,5,8,1 24,24054,"Outremont",24047,"Outremont",100916,95357,87255,"SVR2",91,.,.,".",0,989,96,507,249,102,27,7 24,24054,"Outremont",24075,"Westmount - Ville-Marie",100916,103263,764,"A.P.",5.6,605.0,605.0,1,0,54,15,10,26,2,1,0 24,24054,"Outremont",24075,"Westmount - Ville-Marie",100916,103263,764,"O.P.",100,101.0,101.0,1,478,181,39,56,76,5,5,0 24,24054,"Outremont",24075,"Westmount - Ville-Marie",100916,103263,764,"SVR1",0.6,.,.,".",2,1,0,0,1,0,0,0 24,24054,"Outremont",24075,"Westmount - Ville-Marie",100916,103263,764,"SVR2",0.6,.,.,".",0,6,1,1,3,0,0,0 24,24055,"Papineau",24047,"Outremont",108977,95357,4695,"A.P.",44,600.0,600.0,1,0,224,11,148,37,22,5,1 24,24055,"Papineau",24047,"Outremont",108977,95357,4695,"O.P.",100,1.0,63.1,7,3147,1557,120,740,569,73,27,28 24,24055,"Papineau",24047,"Outremont",108977,95357,4695,"SVR1",4.8,.,.,".",10,5,0,3,1,0,0,0 24,24055,"Papineau",24047,"Outremont",108977,95357,4695,"SVR2",4.8,.,.,".",0,53,5,27,13,5,1,0 24,24055,"Papineau",24048,"Papineau",108977,100396,100396,"A.P.",100,600.0,611.0,12,0,5810,227,1197,2255,2014,84,33 24,24055,"Papineau",24048,"Papineau",108977,100396,100396,"M.P.",100,500.0,503.0,4,600,248,16,35,141,47,6,3 24,24055,"Papineau",24048,"Papineau",108977,100396,100396,"O.P.",100,1.0,174.0,174,70238,35938,1738,10762,13678,8773,705,282 24,24055,"Papineau",24048,"Papineau",108977,100396,100396,"SVR1",100,.,.,".",135,81,8,15,37,17,2,2 24,24055,"Papineau",24048,"Papineau",108977,100396,100396,"SVR2",100,.,.,".",0,695,32,93,318,240,9,3 24,24055,"Papineau",24067,"Saint-Lonard - Saint-Michel",108977,108811,3886,"A.P.",38,606.0,606.0,1,0,118,12,34,49,19,2,0 24,24055,"Papineau",24067,"Saint-Lonard - Saint-Michel",108977,108811,3886,"O.P.",8.7,151.0,151.0,1,40,15,2,7,4,3,0,-0 24,24055,"Papineau",24067,"Saint-Lonard - Saint-Michel",108977,108811,3886,"O.P.",33,150.0,150.0,1,161,55,7,18,18,10,1,-0 24,24055,"Papineau",24067,"Saint-Lonard - Saint-Michel",108977,108811,3886,"O.P.",100,144.0,149.0,6,2464,1082,134,444,281,195,24,4 24,24055,"Papineau",24067,"Saint-Lonard - Saint-Michel",108977,108811,3886,"SVR1",3.7,.,.,".",5,3,0,1,2,0,0,-0 24,24055,"Papineau",24067,"Saint-Lonard - Saint-Michel",108977,108811,3886,"SVR2",3.7,.,.,".",0,8,1,2,4,1,0,0 24,24056,"Pierrefonds--Dollard",24049,"Pierrefonds - Dollard",108740,108740,108740,"A.P.",100,600.0,612.0,13,0,6375,1851,1745,2221,369,189,0 24,24056,"Pierrefonds--Dollard",24049,"Pierrefonds - Dollard",108740,108740,108740,"M.P.",100,500.0,504.0,5,666,389,102,86,171,23,7,0 24,24056,"Pierrefonds--Dollard",24049,"Pierrefonds - Dollard",108740,108740,108740,"O.P.",100,1.0,185.0,203,80905,40216,10659,14360,11767,1960,1470,0 24,24056,"Pierrefonds--Dollard",24049,"Pierrefonds - Dollard",108740,108740,108740,"SVR1",100,.,.,".",196,87,28,20,32,3,4,0 24,24056,"Pierrefonds--Dollard",24049,"Pierrefonds - Dollard",108740,108740,108740,"SVR2",100,.,.,".",0,958,261,179,441,37,40,0 24,24057,"Pontiac",24020,"Gatineau",106499,116780,10356,"A.P.",56,613.0,613.0,1,0,229,12,107,52,53,4,0 24,24057,"Pontiac",24020,"Gatineau",106499,116780,10356,"A.P.",100,600.0,600.0,1,0,746,53,388,122,174,8,-0 24,24057,"Pontiac",24020,"Gatineau",106499,116780,10356,"O.P.",96,1.0,1.0,1,480,261,30,152,30,49,1,0 24,24057,"Pontiac",24020,"Gatineau",106499,116780,10356,"O.P.",100,2.0,16.0,15,7122,4356,312,2682,669,655,38,0 24,24057,"Pontiac",24020,"Gatineau",106499,116780,10356,"SVR1",8.5,.,.,".",49,25,9,6,5,5,1,0 24,24057,"Pontiac",24020,"Gatineau",106499,116780,10356,"SVR2",8.5,.,.,".",0,75,6,33,15,19,1,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"A.P.",0.0,612.0,612.0,1,0,0,0,0,0,0,0,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"A.P.",15,601.0,601.0,1,0,91,12,42,28,7,1,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"A.P.",52,610.0,610.0,1,0,397,24,212,108,48,6,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"A.P.",90,600.0,600.0,1,0,842,108,431,223,74,6,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",0.2,146.0,146.0,1,1,1,0,0,0,0,0,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",22,6.0,6.0,1,115,71,12,43,12,3,1,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",53,129.1,129.1,1,260,123,8,84,24,6,1,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",63,7.0,7.0,1,375,214,26,132,42,11,3,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",81,11.0,11.0,1,329,196,25,113,40,16,2,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",81,134.0,134.0,1,322,141,15,95,16,10,6,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",99,12.0,12.0,1,674,310,46,187,60,14,3,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"O.P.",100,1.0,128.2,18,11301,6585,697,4237,1131,440,80,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"SVR1",15,.,.,".",97,51,18,12,15,4,1,0 24,24057,"Pontiac",24023,"Hull - Aylmer",106499,124117,20670,"SVR2",15,.,.,".",0,147,17,54,48,24,3,0 24,24057,"Pontiac",24050,"Pontiac",106499,105733,75473,"A.P.",82,617.0,617.0,1,0,167,42,55,43,20,7,0 24,24057,"Pontiac",24050,"Pontiac",106499,105733,75473,"A.P.",100,600.0,618.0,18,0,5873,2157,1712,1274,618,103,9 24,24057,"Pontiac",24050,"Pontiac",106499,105733,75473,"M.P.",100,501.0,504.0,4,193,83,41,7,30,2,2,1 24,24057,"Pontiac",24050,"Pontiac",106499,105733,75473,"O.P.",100,1.0,140.0,167,59313,28784,9286,12898,3516,2480,530,74 24,24057,"Pontiac",24050,"Pontiac",106499,105733,75473,"SVR1",72,.,.,".",229,116,56,12,33,12,3,1 24,24057,"Pontiac",24050,"Pontiac",106499,105733,75473,"SVR2",72,.,.,".",0,485,179,116,110,64,13,2 24,24058,"Portneuf--Jacques-Cartier",24051,"Portneuf - Jacques-Cartier",104394,104394,104394,"A.P.",100,600.0,620.0,21,0,8931,0,2897,614,2675,150,2595 24,24058,"Portneuf--Jacques-Cartier",24051,"Portneuf - Jacques-Cartier",104394,104394,104394,"M.P.",100,500.0,504.0,5,898,401,0,107,75,68,22,129 24,24058,"Portneuf--Jacques-Cartier",24051,"Portneuf - Jacques-Cartier",104394,104394,104394,"O.P.",100,1.0,400.0,175,78962,42269,0,19176,2679,7756,1081,11577 24,24058,"Portneuf--Jacques-Cartier",24051,"Portneuf - Jacques-Cartier",104394,104394,104394,"SVR1",100,.,.,".",1233,436,0,110,56,55,20,195 24,24058,"Portneuf--Jacques-Cartier",24051,"Portneuf - Jacques-Cartier",104394,104394,104394,"SVR2",100,.,.,".",0,431,0,97,39,191,6,98 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"A.P.",0.0,603.0,603.0,1,0,0,0,0,0,0,0,0 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"A.P.",0.1,605.0,605.0,1,0,1,0,0,0,0,0,0 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"O.P.",0.0,47.0,47.0,1,0,0,0,0,0,0,0,0 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"O.P.",0.2,27.0,27.0,1,1,0,0,0,0,0,0,0 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"O.P.",0.9,48.0,48.0,1,5,3,0,1,0,1,0,0 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24059,"Qubec",24037,"Louis-Hbert",96525,104060,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24059,"Qubec",24052,"Qubec",96525,96525,96525,"A.P.",100,600.0,623.0,24,0,9655,1881,3324,1076,3192,149,33 24,24059,"Qubec",24052,"Qubec",96525,96525,96525,"M.P.",100,500.0,506.0,7,1494,812,210,179,240,147,15,21 24,24059,"Qubec",24052,"Qubec",96525,96525,96525,"O.P.",100,1.0,400.0,208,78609,41150,7010,18743,3295,10976,958,168 24,24059,"Qubec",24052,"Qubec",96525,96525,96525,"SVR1",100,.,.,".",505,286,131,46,35,66,6,2 24,24059,"Qubec",24052,"Qubec",96525,96525,96525,"SVR2",100,.,.,".",0,611,98,101,89,303,16,4 24,24060,"Repentigny",24053,"Repentigny",111191,119855,111191,"A.P.",100,600.0,617.0,17,0,7516,635,3441,773,2582,85,0 24,24060,"Repentigny",24053,"Repentigny",111191,119855,111191,"M.P.",67,501.0,501.0,1,146,79,10,24,23,19,3,0 24,24060,"Repentigny",24053,"Repentigny",111191,119855,111191,"M.P.",100,500.0,504.0,4,548,361,54,124,68,98,17,0 24,24060,"Repentigny",24053,"Repentigny",111191,119855,111191,"O.P.",100,1.0,406.0,211,86754,49469,3545,26492,3662,14887,883,0 24,24060,"Repentigny",24053,"Repentigny",111191,119855,111191,"SVR1",93,.,.,".",170,88,34,20,15,15,4,0 24,24060,"Repentigny",24053,"Repentigny",111191,119855,111191,"SVR2",93,.,.,".",0,751,64,238,73,361,15,0 24,24061,"Richmond--Arthabaska",24055,"Richmond - Arthabaska",103897,103887,103887,"A.P.",100,600.0,617.0,18,0,7186,1792,2142,599,2555,98,0 24,24061,"Richmond--Arthabaska",24055,"Richmond - Arthabaska",103897,103887,103887,"M.P.",100,500.0,507.0,8,1553,931,372,152,174,212,21,0 24,24061,"Richmond--Arthabaska",24055,"Richmond - Arthabaska",103897,103887,103887,"O.P.",100,1.0,401.0,216,80830,44180,10717,14838,2816,14849,960,0 24,24061,"Richmond--Arthabaska",24055,"Richmond - Arthabaska",103897,103887,103887,"SVR1",100,.,.,".",254,122,50,29,21,20,2,0 24,24061,"Richmond--Arthabaska",24055,"Richmond - Arthabaska",103897,103887,103887,"SVR2",100,.,.,".",0,884,214,155,101,397,17,0 24,24062,"Rivire-des-Mille-les",24040,"Marc-Aurle-Fortin",102816,115283,14294,"A.P.",100,606.0,607.0,2,0,1329,183,568,250,301,27,0 24,24062,"Rivire-des-Mille-les",24040,"Marc-Aurle-Fortin",102816,115283,14294,"M.P.",50,503.0,503.0,1,157,38,4,14,8,13,0,0 24,24062,"Rivire-des-Mille-les",24040,"Marc-Aurle-Fortin",102816,115283,14294,"O.P.",100,114.0,137.0,24,10949,6325,766,3181,887,1336,155,0 24,24062,"Rivire-des-Mille-les",24040,"Marc-Aurle-Fortin",102816,115283,14294,"SVR1",13,.,.,".",16,9,3,2,3,1,0,0 24,24062,"Rivire-des-Mille-les",24040,"Marc-Aurle-Fortin",102816,115283,14294,"SVR2",13,.,.,".",0,107,17,31,18,38,2,-0 24,24062,"Rivire-des-Mille-les",24057,"Rivire-des-Mille-les",102816,104211,88522,"A.P.",100,600.0,611.0,11,0,5984,751,2470,899,1759,105,0 24,24062,"Rivire-des-Mille-les",24057,"Rivire-des-Mille-les",102816,104211,88522,"M.P.",67,501.0,501.0,1,47,20,4,3,5,5,3,0 24,24062,"Rivire-des-Mille-les",24057,"Rivire-des-Mille-les",102816,104211,88522,"M.P.",100,500.0,500.0,1,188,71,17,16,22,15,1,0 24,24062,"Rivire-des-Mille-les",24057,"Rivire-des-Mille-les",102816,104211,88522,"O.P.",100,1.0,145.0,167,67579,37824,3572,19319,3604,10404,925,0 24,24062,"Rivire-des-Mille-les",24057,"Rivire-des-Mille-les",102816,104211,88522,"SVR1",85,.,.,".",112,61,22,12,10,12,4,0 24,24062,"Rivire-des-Mille-les",24057,"Rivire-des-Mille-les",102816,104211,88522,"SVR2",85,.,.,".",0,673,60,141,113,339,20,0 24,24063,"Rivire-du-Nord",24059,"Rivire-du-Nord",102085,115180,102085,"A.P.",100,600.0,615.0,15,0,7270,791,3426,624,2305,124,0 24,24063,"Rivire-du-Nord",24059,"Rivire-du-Nord",102085,115180,102085,"M.P.",100,500.0,502.0,3,316,170,25,46,46,49,4,0 24,24063,"Rivire-du-Nord",24059,"Rivire-du-Nord",102085,115180,102085,"O.P.",100,1.0,403.0,195,80583,39253,3074,22491,2284,10692,712,0 24,24063,"Rivire-du-Nord",24059,"Rivire-du-Nord",102085,115180,102085,"SVR1",89,.,.,".",147,77,24,12,17,21,4,0 24,24063,"Rivire-du-Nord",24059,"Rivire-du-Nord",102085,115180,102085,"SVR2",89,.,.,".",0,926,108,316,107,383,13,0 24,24064,"Rosemont--La Petite-Patrie",24047,"Outremont",106293,95357,480,"A.P.",6.3,600.0,600.0,1,0,32,2,21,5,3,1,0 24,24064,"Rosemont--La Petite-Patrie",24047,"Outremont",106293,95357,480,"O.P.",100,2.0,2.0,1,406,198,7,135,24,25,6,1 24,24064,"Rosemont--La Petite-Patrie",24047,"Outremont",106293,95357,480,"SVR1",0.6,.,.,".",1,1,0,0,0,0,0,0 24,24064,"Rosemont--La Petite-Patrie",24047,"Outremont",106293,95357,480,"SVR2",0.6,.,.,".",0,7,1,3,2,1,0,0 24,24064,"Rosemont--La Petite-Patrie",24061,"Rosemont - La Petite-Patrie",106293,105813,105813,"A.P.",100,600.0,619.0,20,0,7940,381,3323,899,3144,122,71 24,24064,"Rosemont--La Petite-Patrie",24061,"Rosemont - La Petite-Patrie",106293,105813,105813,"M.P.",100,500.0,504.0,5,785,359,44,86,110,89,6,24 24,24064,"Rosemont--La Petite-Patrie",24061,"Rosemont - La Petite-Patrie",106293,105813,105813,"O.P.",100,1.0,400.0,207,80992,44616,1855,23717,3752,14088,750,454 24,24064,"Rosemont--La Petite-Patrie",24061,"Rosemont - La Petite-Patrie",106293,105813,105813,"SVR1",100,.,.,".",184,117,23,25,35,27,6,1 24,24064,"Rosemont--La Petite-Patrie",24061,"Rosemont - La Petite-Patrie",106293,105813,105813,"SVR2",100,.,.,".",0,858,25,333,124,354,15,7 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"A.P.",24,602.0,602.0,1,0,167,23,64,32,47,1,0 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"O.P.",10,4.0,4.0,1,29,15,2,7,3,4,0,0 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"O.P.",44,3.0,3.0,1,125,65,4,31,6,23,0,1 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"O.P.",74,55.0,55.0,1,327,162,11,85,27,36,2,1 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"O.P.",99,58.0,58.0,1,483,304,31,144,59,64,5,1 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"O.P.",100,56.0,57.0,2,776,500,47,232,84,129,5,3 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"SVR1",2.1,.,.,".",3,2,0,0,1,0,0,0 24,24065,"Marc-Aurle-Fortin",24003,"Alfred-Pellan",96082,110650,2261,"SVR2",2.1,.,.,".",0,13,2,2,5,4,0,0 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"A.P.",0.5,603.0,603.0,1,0,2,0,1,0,0,0,0 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"A.P.",36,604.0,604.0,1,0,117,20,43,30,24,1,0 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"A.P.",47,602.0,602.0,1,0,284,41,101,56,81,4,1 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"A.P.",100,600.0,611.0,3,0,1588,318,480,213,312,263,2 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"O.P.",5.6,58.0,58.0,1,23,12,1,6,2,2,0,0 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"O.P.",100,1.0,81.2,52,22217,12210,1407,5856,1868,2773,250,56 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"SVR1",26,.,.,".",44,21,7,2,7,5,1,-0 24,24065,"Marc-Aurle-Fortin",24032,"Laval",96082,110376,29235,"SVR2",26,.,.,".",0,194,22,47,64,59,2,1 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"A.P.",0.1,606.0,606.0,1,0,0,0,0,0,0,0,0 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"A.P.",31,613.0,613.0,1,0,155,19,76,19,39,2,1 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"A.P.",100,603.0,603.0,1,0,366,57,137,68,100,1,3 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"O.P.",1.5,89.0,89.0,1,7,3,0,1,1,0,0,0 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"O.P.",100,36.0,54.1,15,6229,3523,339,1986,487,607,84,20 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"SVR1",6.7,.,.,".",8,4,1,1,1,0,0,0 24,24065,"Marc-Aurle-Fortin",24033,"Laval - Les les",96082,124527,8586,"SVR2",6.7,.,.,".",0,39,7,13,11,7,1,0 24,24065,"Marc-Aurle-Fortin",24040,"Marc-Aurle-Fortin",96082,115283,56000,"A.P.",100,602.0,611.0,5,0,3652,349,1603,493,1153,54,0 24,24065,"Marc-Aurle-Fortin",24040,"Marc-Aurle-Fortin",96082,115283,56000,"M.P.",100,501.0,502.0,2,445,228,40,61,66,57,4,0 24,24065,"Marc-Aurle-Fortin",24040,"Marc-Aurle-Fortin",96082,115283,56000,"O.P.",100,34.0,406.0,85,40313,23221,2083,12055,2865,5799,419,0 24,24065,"Marc-Aurle-Fortin",24040,"Marc-Aurle-Fortin",96082,115283,56000,"SVR1",46,.,.,".",60,34,12,7,10,5,0,0 24,24065,"Marc-Aurle-Fortin",24040,"Marc-Aurle-Fortin",96082,115283,56000,"SVR2",46,.,.,".",0,391,61,115,67,141,7,0 24,24066,"Saint-Hyacinthe--Bagot",24063,"Saint-Hyacinthe - Bagot",99629,99629,99629,"A.P.",100,600.0,614.0,15,0,5757,1105,2545,387,1635,85,0 24,24066,"Saint-Hyacinthe--Bagot",24063,"Saint-Hyacinthe - Bagot",99629,99629,99629,"M.P.",100,500.0,508.0,9,1259,737,236,226,121,132,22,0 24,24066,"Saint-Hyacinthe--Bagot",24063,"Saint-Hyacinthe - Bagot",99629,99629,99629,"O.P.",100,1.0,402.0,204,77861,44309,6617,23989,2185,10649,869,0 24,24066,"Saint-Hyacinthe--Bagot",24063,"Saint-Hyacinthe - Bagot",99629,99629,99629,"SVR1",100,.,.,".",169,109,34,24,12,32,7,0 24,24066,"Saint-Hyacinthe--Bagot",24063,"Saint-Hyacinthe - Bagot",99629,99629,99629,"SVR2",100,.,.,".",0,588,116,179,79,203,11,0 24,24067,"Saint-Jean",24064,"Saint-Jean",108244,108244,108244,"A.P.",100,600.0,613.0,14,0,7752,999,3260,926,2411,156,0 24,24067,"Saint-Jean",24064,"Saint-Jean",108244,108244,108244,"M.P.",100,500.0,504.0,5,900,433,96,94,101,127,15,0 24,24067,"Saint-Jean",24064,"Saint-Jean",108244,108244,108244,"O.P.",100,1.0,402.0,220,84437,43337,4295,21394,3475,13039,1134,0 24,24067,"Saint-Jean",24064,"Saint-Jean",108244,108244,108244,"SVR1",100,.,.,".",440,224,110,28,33,49,4,0 24,24067,"Saint-Jean",24064,"Saint-Jean",108244,108244,108244,"SVR2",100,.,.,".",0,793,103,167,109,397,17,0 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"A.P.",30,603.0,603.0,1,0,53,10,10,27,5,1,0 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"A.P.",70,602.0,602.0,1,0,189,22,24,120,21,2,-0 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"A.P.",100,604.0,615.0,12,0,4570,1006,1019,2085,374,74,12 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"M.P.",33,502.0,502.0,1,78,56,7,9,29,8,1,1 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"M.P.",100,500.0,503.0,3,818,349,63,56,202,24,3,1 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"O.P.",100,30.0,408.0,144,62086,26774,5010,8232,11203,1616,590,123 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"SVR1",80,.,.,".",84,47,8,9,25,2,3,0 24,24068,"Saint-Laurent",24066,"Saint-Laurent - Cartierville",93842,117950,93842,"SVR2",80,.,.,".",0,429,81,78,223,38,6,3 24,24069,"Saint-Lonard--Saint-Michel",24002,"Ahuntsic",110649,100840,4027,"A.P.",80,600.0,600.0,1,0,116,12,26,27,48,1,2 24,24069,"Saint-Lonard--Saint-Michel",24002,"Ahuntsic",110649,100840,4027,"O.P.",100,21.0,28.0,8,2885,1394,157,452,555,195,21,14 24,24069,"Saint-Lonard--Saint-Michel",24002,"Ahuntsic",110649,100840,4027,"SVR1",3.9,.,.,".",6,3,1,1,1,0,0,0 24,24069,"Saint-Lonard--Saint-Michel",24002,"Ahuntsic",110649,100840,4027,"SVR2",3.9,.,.,".",0,35,1,5,8,20,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"A.P.",3.7,600.0,600.0,1,0,17,3,6,3,5,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"A.P.",14,601.0,601.0,1,0,87,8,41,7,28,1,1 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"M.P.",50,500.0,500.0,1,75,36,3,5,26,1,1,1 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",7.1,39.0,39.0,1,34,15,1,8,2,3,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",9.7,37.0,37.0,1,47,20,2,9,2,6,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",10,28.0,28.0,1,39,22,2,11,2,6,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",12,36.0,36.0,1,47,21,1,9,3,7,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",13,32.0,32.0,1,59,29,4,12,4,8,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",17,35.0,35.0,1,53,23,1,11,3,8,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",26,31.0,31.0,1,88,44,4,21,6,12,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",27,17.0,17.0,1,99,48,4,24,8,10,1,1 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",42,15.0,15.0,1,99,52,10,20,11,10,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",45,25.0,25.0,1,185,83,5,44,15,18,0,1 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"O.P.",92,24.0,24.0,1,418,191,20,102,34,32,3,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"SVR1",1.5,.,.,".",4,3,0,1,1,1,0,0 24,24069,"Saint-Lonard--Saint-Michel",24021,"Hochelaga",110649,102114,1697,"SVR2",1.5,.,.,".",0,11,0,4,2,5,0,0 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"A.P.",62,606.0,606.0,1,0,194,21,57,82,31,4,1 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"A.P.",100,600.0,610.0,10,0,2827,390,864,1157,374,38,4 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"O.P.",67,150.0,150.0,1,331,112,15,38,37,22,1,0 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"O.P.",91,151.0,151.0,1,422,157,21,68,38,27,2,0 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"O.P.",100,1.0,401.0,189,68441,31404,4357,10118,13525,2675,576,153 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"SVR1",96,.,.,".",135,79,11,14,46,7,1,0 24,24069,"Saint-Lonard--Saint-Michel",24067,"Saint-Lonard - Saint-Michel",110649,108811,104925,"SVR2",96,.,.,".",0,212,20,55,97,32,8,0 24,24070,"Saint-Maurice--Champlain",24068,"Saint-Maurice - Champlain",110273,95944,95944,"A.P.",100,600.0,619.0,20,0,8112,1427,2880,1181,2521,103,0 24,24070,"Saint-Maurice--Champlain",24068,"Saint-Maurice - Champlain",110273,95944,95944,"M.P.",100,500.0,506.0,7,826,430,76,94,115,134,11,0 24,24070,"Saint-Maurice--Champlain",24068,"Saint-Maurice - Champlain",110273,95944,95944,"O.P.",100,1.0,401.0,218,79396,37943,6634,15420,4127,10936,826,0 24,24070,"Saint-Maurice--Champlain",24068,"Saint-Maurice - Champlain",110273,95944,95944,"SVR1",100,.,.,".",312,142,53,29,24,31,5,0 24,24070,"Saint-Maurice--Champlain",24068,"Saint-Maurice - Champlain",110273,95944,95944,"SVR2",100,.,.,".",0,1051,257,205,223,339,27,0 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"A.P.",0.3,608.0,608.0,1,0,2,0,1,0,1,0,0 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"A.P.",99,600.0,600.0,1,0,689,93,370,34,174,14,4 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"A.P.",100,612.0,612.0,1,0,676,93,350,40,170,15,8 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"M.P.",33,513.0,513.0,1,59,33,6,13,11,3,1,0 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"M.P.",50,502.0,504.0,2,118,53,10,14,12,15,3,2 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"O.P.",4.5,54.0,54.0,1,16,9,1,6,1,2,0,0 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"O.P.",88,13.0,13.0,1,464,270,46,147,14,58,3,3 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"O.P.",100,1.0,49.0,25,10713,5610,723,3212,231,1264,110,70 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"SVR1",14,.,.,".",48,27,9,5,4,7,0,0 24,24070,"Saint-Maurice--Champlain",24072,"Trois-Rivires",110273,96880,14329,"SVR2",14,.,.,".",0,129,24,31,14,57,2,2 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"A.P.",71,610.0,610.0,1,0,237,66,85,42,36,8,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"A.P.",99,608.0,608.0,1,0,265,43,97,29,89,7,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"A.P.",100,600.0,618.0,14,0,6931,1071,2546,750,2468,96,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"M.P.",100,501.0,506.0,6,632,324,68,67,92,90,7,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"O.P.",10,166.0,166.0,1,42,21,4,9,1,7,1,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"O.P.",96,148.0,148.0,1,349,205,54,88,25,29,9,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"O.P.",99,149.0,149.0,1,441,191,19,91,17,61,4,-0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"O.P.",100,1.0,402.0,166,64951,31524,3848,14435,2221,10465,555,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"SVR1",74,.,.,".",159,85,25,10,13,29,7,0 24,24071,"Salaberry--Surot",24006,"Beauharnois - Salaberry",107036,109381,79588,"SVR2",74,.,.,".",0,499,62,75,54,301,7,0 24,24071,"Salaberry--Surot",24073,"Vaudreuil-Soulanges",107036,139353,27448,"A.P.",100,612.0,622.0,5,0,1866,220,672,222,729,23,0 24,24071,"Salaberry--Surot",24073,"Vaudreuil-Soulanges",107036,139353,27448,"M.P.",67,503.0,503.0,1,91,33,8,5,12,7,1,-0 24,24071,"Salaberry--Surot",24073,"Vaudreuil-Soulanges",107036,139353,27448,"M.P.",100,504.0,504.0,1,86,57,20,20,5,11,1,0 24,24071,"Salaberry--Surot",24073,"Vaudreuil-Soulanges",107036,139353,27448,"O.P.",100,157.0,197.0,52,20800,11587,1309,5308,885,3826,259,0 24,24071,"Salaberry--Surot",24073,"Vaudreuil-Soulanges",107036,139353,27448,"SVR1",20,.,.,".",38,21,5,4,5,5,1,0 24,24071,"Salaberry--Surot",24073,"Vaudreuil-Soulanges",107036,139353,27448,"SVR2",20,.,.,".",0,163,28,34,21,74,5,0 24,24072,"Shefford",24010,"Brome - Missisquoi",107538,98632,16,"A.P.",0.2,606.0,606.0,1,0,1,0,0,0,0,0,0 24,24072,"Shefford",24010,"Brome - Missisquoi",107538,98632,16,"O.P.",2.1,118.0,118.0,1,11,6,0,2,1,2,0,0 24,24072,"Shefford",24010,"Brome - Missisquoi",107538,98632,16,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,-0 24,24072,"Shefford",24010,"Brome - Missisquoi",107538,98632,16,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 24,24072,"Shefford",24069,"Shefford",107538,107522,107522,"A.P.",100,600.0,612.0,13,0,7018,1072,3128,866,1843,109,0 24,24072,"Shefford",24069,"Shefford",107538,107522,107522,"M.P.",100,500.0,506.0,7,1573,778,203,222,194,142,17,0 24,24072,"Shefford",24069,"Shefford",107538,107522,107522,"O.P.",100,1.0,400.0,191,82875,45318,6469,24021,3639,10305,884,0 24,24072,"Shefford",24069,"Shefford",107538,107522,107522,"SVR1",100,.,.,".",218,115,50,18,19,25,3,0 24,24072,"Shefford",24069,"Shefford",107538,107522,107522,"SVR2",100,.,.,".",0,746,114,186,137,300,9,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"A.P.",0.2,611.0,611.0,1,0,1,0,0,0,0,0,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"A.P.",21,618.0,618.0,1,0,118,9,50,14,44,2,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"A.P.",22,616.0,616.0,1,0,132,12,59,15,45,1,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"A.P.",100,607.0,607.0,1,0,607,57,251,72,217,10,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"O.P.",2.7,149.0,149.0,1,15,7,1,4,1,2,0,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"O.P.",88,144.0,144.0,1,360,189,14,105,13,53,4,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"O.P.",97,143.0,143.0,1,462,269,21,151,19,78,0,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"O.P.",100,76.0,107.0,15,6144,2872,248,1471,240,850,63,0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"SVR1",8.7,.,.,".",22,10,4,2,2,2,1,-0 24,24073,"Sherbrooke",24017,"Compton - Stanstead",107988,105626,10151,"SVR2",8.7,.,.,".",0,36,4,9,9,13,1,0 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"A.P.",97,604.0,604.0,1,0,692,65,264,46,303,13,1 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"A.P.",98,601.0,601.0,1,0,704,76,295,91,236,7,-0 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"A.P.",100,603.0,603.0,1,0,733,115,258,112,237,6,5 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"A.P.",100,602.0,617.0,14,0,5907,621,2240,679,2278,70,19 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"M.P.",100,500.0,511.0,12,1818,1177,239,273,278,358,14,15 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"O.P.",41,57.1,57.1,1,208,111,7,51,9,41,2,0 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"O.P.",78,11.1,11.1,1,289,129,14,70,5,37,3,0 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"O.P.",96,11.0,11.0,1,227,148,10,67,31,38,2,0 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"O.P.",100,37.0,37.0,1,518,324,25,139,51,107,2,-0 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"O.P.",100,13.1,13.1,1,848,425,29,222,29,139,5,2 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"O.P.",100,12.0,412.0,207,73711,37138,3093,16726,3235,13202,701,181 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"SVR1",94,.,.,".",299,160,67,25,22,40,5,1 24,24073,"Sherbrooke",24070,"Sherbrooke",107988,104308,97837,"SVR2",94,.,.,".",0,981,135,249,209,371,13,4 24,24074,"Vaudreuil--Soulanges",24073,"Vaudreuil-Soulanges",111905,139353,111905,"A.P.",100,600.0,620.0,18,0,8444,1606,2966,1339,2347,186,0 24,24074,"Vaudreuil--Soulanges",24073,"Vaudreuil-Soulanges",111905,139353,111905,"M.P.",33,503.0,503.0,1,45,16,4,2,6,4,0,0 24,24074,"Vaudreuil--Soulanges",24073,"Vaudreuil-Soulanges",111905,139353,111905,"M.P.",100,500.0,502.0,3,363,189,46,47,53,36,7,0 24,24074,"Vaudreuil--Soulanges",24073,"Vaudreuil-Soulanges",111905,139353,111905,"O.P.",100,1.0,401.0,190,82750,46103,7982,20965,5371,10428,1357,0 24,24074,"Vaudreuil--Soulanges",24073,"Vaudreuil-Soulanges",111905,139353,111905,"SVR1",80,.,.,".",152,82,20,17,22,21,3,0 24,24074,"Vaudreuil--Soulanges",24073,"Vaudreuil-Soulanges",111905,139353,111905,"SVR2",80,.,.,".",0,644,112,137,82,293,21,0 24,24075,"Terrebonne",24043,"Montcalm",106322,144141,53272,"A.P.",31,605.0,605.0,1,0,78,9,30,5,32,2,0 24,24075,"Terrebonne",24043,"Montcalm",106322,144141,53272,"A.P.",100,606.0,614.0,5,0,2564,213,1236,169,885,61,0 24,24075,"Terrebonne",24043,"Montcalm",106322,144141,53272,"O.P.",100,75.0,183.0,83,38628,21080,1583,11685,1319,5842,651,0 24,24075,"Terrebonne",24043,"Montcalm",106322,144141,53272,"SVR1",36,.,.,".",69,33,10,5,9,8,1,0 24,24075,"Terrebonne",24043,"Montcalm",106322,144141,53272,"SVR2",36,.,.,".",0,123,12,42,12,51,7,-0 24,24075,"Terrebonne",24071,"Terrebonne - Blainville",106322,121095,53050,"A.P.",100,602.0,608.0,7,0,2828,250,1260,258,993,67,0 24,24075,"Terrebonne",24071,"Terrebonne - Blainville",106322,121095,53050,"M.P.",100,501.0,501.0,1,99,49,7,13,6,22,1,0 24,24075,"Terrebonne",24071,"Terrebonne - Blainville",106322,121095,53050,"O.P.",100,22.0,103.0,95,40337,22754,1892,11293,1632,7391,546,0 24,24075,"Terrebonne",24071,"Terrebonne - Blainville",106322,121095,53050,"SVR1",46,.,.,".",67,36,12,4,13,6,0,0 24,24075,"Terrebonne",24071,"Terrebonne - Blainville",106322,121095,53050,"SVR2",46,.,.,".",0,175,23,58,18,73,3,0 24,24076,"Trois-Rivires",24008,"Berthier - Maskinong",108774,112341,26223,"A.P.",100,605.0,608.0,4,0,2567,412,1062,434,613,35,11 24,24076,"Trois-Rivires",24008,"Berthier - Maskinong",108774,112341,26223,"M.P.",100,501.0,512.0,4,775,409,77,99,149,75,5,4 24,24076,"Trois-Rivires",24008,"Berthier - Maskinong",108774,112341,26223,"O.P.",100,35.0,401.0,49,20441,10910,1761,4244,1840,2801,211,53 24,24076,"Trois-Rivires",24008,"Berthier - Maskinong",108774,112341,26223,"SVR1",23,.,.,".",63,32,12,7,4,7,1,0 24,24076,"Trois-Rivires",24008,"Berthier - Maskinong",108774,112341,26223,"SVR2",23,.,.,".",0,123,20,35,23,42,2,1 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"A.P.",0.9,600.0,600.0,1,0,6,1,3,0,2,0,0 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"A.P.",100,608.0,608.0,1,0,790,106,416,50,202,14,2 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"A.P.",100,601.0,614.0,12,0,6835,917,3168,764,1801,105,80 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"M.P.",50,502.0,504.0,2,118,53,10,14,12,15,3,2 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"M.P.",67,513.0,513.0,1,118,67,11,26,21,6,2,0 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"M.P.",100,500.0,514.0,12,1984,1270,214,435,250,285,42,44 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"O.P.",12,13.0,13.0,1,64,38,6,21,2,8,0,0 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"O.P.",96,54.0,54.0,1,347,197,29,117,14,32,2,2 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"O.P.",100,14.0,400.0,179,65185,32681,3705,18417,2041,7507,639,372 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"SVR1",86,.,.,".",286,158,57,33,22,42,3,3 24,24076,"Trois-Rivires",24072,"Trois-Rivires",108774,96880,82551,"SVR2",86,.,.,".",0,771,145,183,81,337,15,9 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"A.P.",0.0,609.0,609.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"A.P.",100,600.0,617.0,9,0,4866,504,1641,1442,1174,100,5 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"M.P.",100,500.0,500.0,1,466,88,12,17,27,27,5,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"O.P.",0.0,103.0,103.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"O.P.",100,1.0,425.0,109,46412,22029,2125,10196,4926,4108,612,62 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"SVR1",53,.,.,".",125,82,15,20,31,13,4,-0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24024,"Jeanne-Le Ber",103070,115821,63302,"SVR2",53,.,.,".",0,462,31,101,185,138,7,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"A.P.",0.0,611.0,611.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"A.P.",11,609.0,609.0,1,0,74,6,27,13,25,1,1 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"O.P.",0.0,179.0,179.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"O.P.",0.4,192.0,192.0,1,1,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"O.P.",100,194.2,194.3,2,1204,637,48,293,109,178,7,2 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"SVR1",1.5,.,.,".",3,2,0,1,1,1,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24031,"Laurier - Sainte-Marie",103070,102342,1559,"SVR2",1.5,.,.,".",0,16,1,4,3,7,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"A.P.",0.0,604.0,604.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"A.P.",3.8,602.0,602.0,1,0,17,1,9,5,2,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"A.P.",6.8,606.0,606.0,1,0,35,5,15,11,3,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"M.P.",50,500.0,500.0,1,52,8,0,2,5,0,0,1 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"O.P.",0.0,79.0,79.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"O.P.",29,80.0,80.0,1,132,68,17,28,20,2,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"O.P.",61,36.0,36.0,1,153,48,2,20,22,1,4,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"O.P.",100,81.0,81.0,1,307,139,23,60,45,9,2,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"SVR1",1.0,.,.,".",2,1,0,1,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24047,"Outremont",103070,95357,649,"SVR2",1.0,.,.,".",0,11,1,6,3,1,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"A.P.",6.5,600.0,600.0,1,0,30,2,11,10,4,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"A.P.",25,609.0,609.0,1,0,205,64,40,92,3,5,1 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"A.P.",75,610.0,610.0,1,0,236,35,60,105,34,2,1 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"A.P.",90,603.0,603.0,1,0,525,105,148,223,24,23,2 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"A.P.",99,602.0,602.0,1,0,711,234,112,330,23,7,5 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"A.P.",100,601.0,601.0,1,0,445,42,140,181,60,22,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"M.P.",50,500.0,504.0,2,206,98,21,29,41,5,2,1 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",0.0,11.0,11.0,1,0,0,0,0,0,0,0,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",34,45.0,45.0,1,145,58,16,21,16,3,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",36,12.0,12.0,1,160,38,4,16,11,7,1,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",39,15.1,15.1,1,163,70,10,34,19,5,2,1 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",59,9.0,9.0,1,243,86,12,38,22,6,6,2 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",79,38.0,38.0,1,339,138,33,35,58,6,6,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"O.P.",100,13.0,404.0,59,25501,8470,1333,3414,2879,536,271,37 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"SVR1",35,.,.,".",92,57,10,11,29,2,4,0 24,24077,"Ville-Marie--Le Sud-Ouest--le-des-Soeurs",24075,"Westmount - Ville-Marie",103070,103263,37560,"SVR2",35,.,.,".",0,324,60,77,150,17,19,1 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"A.P.",19,609.0,609.0,1,0,133,16,45,37,32,2,0 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"A.P.",28,611.0,611.0,1,0,169,17,67,29,53,2,1 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"A.P.",100,612.0,612.0,1,0,477,51,184,87,146,8,1 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"M.P.",50,502.0,502.0,1,59,21,3,8,6,5,0,0 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"O.P.",45,172.0,172.0,1,133,78,3,35,16,22,1,1 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"O.P.",100,171.0,404.0,27,8483,4535,540,1854,899,1152,73,17 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"SVR1",10,.,.,".",15,8,2,1,3,2,0,0 24,24078,"Vimy",24003,"Alfred-Pellan",104373,110650,10344,"SVR2",10,.,.,".",0,65,8,10,26,19,0,0 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"A.P.",53,602.0,602.0,1,0,316,45,112,63,91,4,1 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"A.P.",64,604.0,604.0,1,0,206,34,74,52,42,3,0 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"A.P.",100,603.0,603.0,1,0,415,55,158,95,106,1,1 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"A.P.",100,605.0,613.0,8,0,3989,497,1452,811,1163,53,13 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"M.P.",100,500.0,501.0,2,227,90,10,19,44,12,4,1 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"O.P.",94,58.0,58.0,1,398,196,20,97,33,42,5,0 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"O.P.",100,47.0,414.0,162,62170,30642,3809,13466,5884,6676,661,146 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"SVR1",74,.,.,".",125,60,19,4,20,14,2,0 24,24078,"Vimy",24032,"Laval",104373,110376,81141,"SVR2",74,.,.,".",0,547,61,132,180,165,6,2 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"A.P.",1.0,614.0,614.0,1,0,2,0,1,1,0,0,0 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"A.P.",61,607.0,607.0,1,0,250,50,106,54,31,7,2 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"A.P.",100,606.0,606.0,1,0,444,49,179,117,91,7,1 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"O.P.",1.2,114.0,114.0,1,5,2,0,1,1,0,0,0 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"O.P.",11,109.2,109.2,1,107,45,7,22,12,3,1,0 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"O.P.",38,107.0,107.0,1,130,32,4,15,9,3,0,0 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"O.P.",96,104.0,104.0,1,292,129,20,66,25,13,3,2 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"O.P.",98,89.0,89.0,1,442,187,30,94,47,13,0,4 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"O.P.",100,87.0,108.0,20,8585,4059,657,1915,1028,349,64,46 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"SVR1",10,.,.,".",13,6,2,1,2,1,0,0 24,24078,"Vimy",24033,"Laval - Les les",104373,124527,12888,"SVR2",10,.,.,".",0,60,11,20,17,10,1,0 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"A.P.",15,612.0,612.0,1,0,68,28,8,31,0,1,0 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"A.P.",88,613.0,613.0,1,0,381,154,25,193,0,9,0 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"A.P.",100,602.0,614.0,10,0,6238,3034,494,2584,0,121,5 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"M.P.",50,501.0,501.0,1,58,30,12,6,11,0,2,0 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"M.P.",100,500.0,502.0,2,363,257,140,44,71,0,2,0 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"O.P.",100,45.0,405.0,153,72913,36211,15754,5981,13392,0,1039,45 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"SVR1",79,.,.,".",133,78,32,7,35,0,2,1 35,35001,"Ajax",35001,"Ajax - Pickering",109600,137217,109600,"SVR2",79,.,.,".",0,903,381,59,437,0,24,2 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"A.P.",2.5,600.0,600.0,1,0,5,2,3,1,0,0,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"A.P.",100,601.0,620.0,20,0,5350,1890,2266,1038,0,156,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"M.P.",100,500.0,503.0,4,426,247,63,85,91,0,8,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"O.P.",20,10.0,10.0,1,23,14,0,13,1,0,0,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"O.P.",100,11.0,201.0,187,56345,28323,8299,15296,3835,0,893,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"SVR1",97,.,.,".",283,142,64,24,40,0,14,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35002,"Algoma - Manitoulin - Kapuskasing",79801,74828,72703,"SVR2",97,.,.,".",0,1136,364,472,265,0,35,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35056,"Nickel Belt",79801,92391,281,"A.P.",76,600.0,600.0,1,0,47,14,27,5,0,0,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35056,"Nickel Belt",79801,92391,281,"O.P.",76,1.0,1.0,1,201,65,24,30,8,0,3,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35056,"Nickel Belt",79801,92391,281,"SVR1",0.3,.,.,".",1,0,0,0,0,0,0,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35056,"Nickel Belt",79801,92391,281,"SVR2",0.3,.,.,".",0,2,1,1,1,0,0,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35079,"Sault Ste. Marie",79801,88869,6817,"A.P.",100,608.0,608.0,1,0,106,66,31,8,0,1,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35079,"Sault Ste. Marie",79801,88869,6817,"A.P.",100,610.0,610.0,1,0,236,134,54,41,0,7,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35079,"Sault Ste. Marie",79801,88869,6817,"O.P.",100,174.0,174.0,1,588,368,183,134,38,0,13,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35079,"Sault Ste. Marie",79801,88869,6817,"O.P.",100,175.0,188.0,14,4832,3022,1581,1094,259,0,77,11 35,35002,"Algoma--Manitoulin--Kapuskasing",35079,"Sault Ste. Marie",79801,88869,6817,"SVR1",7.9,.,.,".",20,11,5,2,3,0,0,0 35,35002,"Algoma--Manitoulin--Kapuskasing",35079,"Sault Ste. Marie",79801,88869,6817,"SVR2",7.9,.,.,".",0,101,43,28,28,0,1,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"A.P.",39,611.0,611.0,1,0,237,127,25,72,0,11,3 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"A.P.",64,612.0,612.0,1,0,302,163,29,88,0,15,8 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"A.P.",100,613.0,614.0,2,0,1093,622,51,350,0,57,13 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"M.P.",100,505.0,505.0,1,99,51,27,5,11,0,6,2 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"O.P.",100,182.0,400.0,42,17347,9430,5256,1341,2183,0,474,176 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"SVR1",19,.,.,".",39,19,8,2,6,0,1,2 35,35003,"Aurora--Oak Ridges--Richmond Hill",35053,"Newmarket - Aurora",106064,133181,24732,"SVR2",19,.,.,".",0,106,54,11,33,0,6,2 35,35003,"Aurora--Oak Ridges--Richmond Hill",35059,"Oak Ridges - Markham",106064,228997,55932,"A.P.",100,602.0,622.0,6,0,2761,1448,258,955,0,60,40 35,35003,"Aurora--Oak Ridges--Richmond Hill",35059,"Oak Ridges - Markham",106064,228997,55932,"M.P.",50,504.0,504.0,1,66,43,23,6,11,0,2,2 35,35003,"Aurora--Oak Ridges--Richmond Hill",35059,"Oak Ridges - Markham",106064,228997,55932,"M.P.",100,502.0,505.0,2,250,95,43,19,28,0,3,2 35,35003,"Aurora--Oak Ridges--Richmond Hill",35059,"Oak Ridges - Markham",106064,228997,55932,"O.P.",100,34.0,402.0,81,35243,16165,8106,3045,4320,0,473,221 35,35003,"Aurora--Oak Ridges--Richmond Hill",35059,"Oak Ridges - Markham",106064,228997,55932,"SVR1",23,.,.,".",38,23,12,2,8,0,1,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35059,"Oak Ridges - Markham",106064,228997,55932,"SVR2",23,.,.,".",0,116,62,8,42,0,2,1 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"A.P.",60,608.0,608.0,1,0,590,277,70,229,0,14,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"A.P.",100,600.0,600.0,1,0,787,422,67,263,0,35,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",6.2,97.0,97.0,1,31,12,6,3,4,0,0,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",61,109.0,109.0,1,323,141,72,21,43,0,5,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",69,102.0,102.0,1,215,82,34,18,28,0,3,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",87,107.1,107.1,1,222,103,32,22,49,0,1,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",95,99.0,99.0,1,276,106,56,18,31,0,1,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",99,99.1,99.1,1,359,143,53,22,61,0,7,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"O.P.",100,1.0,108.0,32,14643,6731,3272,1206,2071,0,182,0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"SVR1",18,.,.,".",20,12,4,1,6,0,1,-0 35,35003,"Aurora--Oak Ridges--Richmond Hill",35075,"Richmond Hill",106064,129609,25400,"SVR2",18,.,.,".",0,110,44,13,49,0,4,-0 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"A.P.",0.1,602.0,602.0,1,0,1,0,0,0,0,0,0 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"A.P.",95,609.0,609.0,1,0,871,482,149,193,0,40,8 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"A.P.",100,610.0,616.0,7,0,4825,3108,689,800,0,203,25 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"M.P.",50,505.0,505.0,1,120,79,51,10,14,0,4,2 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"M.P.",100,502.0,502.0,1,118,61,34,6,14,0,2,5 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"O.P.",1.6,28.1,28.1,1,9,4,2,1,0,0,0,0 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"O.P.",15,124.0,124.0,1,50,15,7,5,2,0,1,0 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"O.P.",100,125.0,235.0,115,45100,20757,12359,4448,2700,0,1139,111 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"SVR1",48,.,.,".",240,123,74,9,31,0,5,4 35,35004,"Barrie--Innisfil",35004,"Barrie",101584,135711,68505,"SVR2",48,.,.,".",0,566,334,72,124,0,32,4 35,35004,"Barrie--Innisfil",35104,"York - Simcoe",101584,128703,33079,"A.P.",100,600.0,603.0,4,0,2196,1568,285,240,0,91,12 35,35004,"Barrie--Innisfil",35104,"York - Simcoe",101584,128703,33079,"M.P.",33,500.0,500.0,1,49,24,13,7,2,0,1,1 35,35004,"Barrie--Innisfil",35104,"York - Simcoe",101584,128703,33079,"O.P.",100,1.0,51.0,55,23868,11536,7120,2654,1009,0,668,85 35,35004,"Barrie--Innisfil",35104,"York - Simcoe",101584,128703,33079,"SVR1",26,.,.,".",51,26,13,4,8,0,1,0 35,35004,"Barrie--Innisfil",35104,"York - Simcoe",101584,128703,33079,"SVR2",26,.,.,".",0,90,61,8,16,0,4,1 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"A.P.",5.3,609.0,609.0,1,0,49,27,8,11,0,2,0 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"A.P.",100,602.0,602.0,1,0,855,502,92,206,0,52,4 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"A.P.",100,600.0,608.0,7,0,5816,3278,825,1364,0,325,24 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"M.P.",50,505.0,505.0,1,120,79,51,10,14,0,4,2 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"M.P.",100,500.0,504.0,4,732,322,193,43,72,0,10,4 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"O.P.",85,124.0,124.0,1,281,81,39,28,9,0,5,0 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"O.P.",98,28.1,28.1,1,566,227,143,47,24,0,13,1 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"O.P.",100,1.0,400.0,130,47345,21176,10999,5314,3366,0,1390,107 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"SVR1",52,.,.,".",259,132,79,10,34,0,5,4 35,35005,"Barrie--Springwater--Oro-Medonte",35004,"Barrie",97876,135711,67206,"SVR2",52,.,.,".",0,612,360,77,135,0,35,5 35,35005,"Barrie--Springwater--Oro-Medonte",35085,"Simcoe - Grey",97876,134530,18223,"A.P.",100,608.0,609.0,2,0,2143,1215,281,351,0,86,210 35,35005,"Barrie--Springwater--Oro-Medonte",35085,"Simcoe - Grey",97876,134530,18223,"M.P.",50,506.0,506.0,1,37,10,5,1,3,0,1,1 35,35005,"Barrie--Springwater--Oro-Medonte",35085,"Simcoe - Grey",97876,134530,18223,"O.P.",100,109.0,142.0,34,13250,6740,3677,1253,813,0,329,668 35,35005,"Barrie--Springwater--Oro-Medonte",35085,"Simcoe - Grey",97876,134530,18223,"SVR1",13,.,.,".",100,43,27,3,7,0,1,3 35,35005,"Barrie--Springwater--Oro-Medonte",35085,"Simcoe - Grey",97876,134530,18223,"SVR2",13,.,.,".",0,179,96,16,33,0,7,27 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"A.P.",55,607.0,607.0,1,0,441,280,46,93,0,22,0 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"A.P.",76,606.0,606.0,1,0,449,263,36,117,0,33,1 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",12,119.0,119.0,1,53,33,20,4,6,0,2,0 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",27,114.0,114.0,1,119,76,46,13,11,0,6,1 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",32,134.0,134.0,1,149,85,52,16,13,0,4,1 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",52,127.0,127.0,1,263,146,104,10,27,0,4,0 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",53,120.0,120.0,1,231,134,84,16,26,0,7,1 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",84,111.0,111.0,1,284,195,115,45,24,0,11,1 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",87,110.1,110.1,1,361,248,138,52,29,0,26,3 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"O.P.",100,110.0,142.0,20,7839,4485,2615,727,783,0,346,14 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"SVR1",10,.,.,".",31,16,8,2,6,0,1,0 35,35005,"Barrie--Springwater--Oro-Medonte",35086,"Simcoe North",97876,121119,12447,"SVR2",10,.,.,".",0,98,61,8,24,0,7,0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"A.P.",86,609.0,609.0,1,0,409,247,44,97,0,22,0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"A.P.",100,610.0,616.0,4,0,2316,1323,360,554,0,79,0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"M.P.",100,502.0,502.0,1,77,33,12,8,11,0,2,0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"O.P.",95,139.0,139.0,1,419,263,154,75,26,0,9,-0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"O.P.",100,140.0,400.0,75,30621,15324,8570,3563,2580,0,611,0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"SVR1",33,.,.,".",394,162,119,12,24,0,7,0 35,35006,"Bay of Quinte",35058,"Northumberland - Quinte West",109488,125261,43135,"SVR2",33,.,.,".",0,236,118,24,81,0,13,0 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"A.P.",18,605.0,605.0,1,0,164,107,20,35,0,2,0 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"A.P.",100,607.0,614.0,8,0,5555,2902,778,1681,0,168,26 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"M.P.",67,501.0,501.0,1,269,174,107,20,39,0,1,6 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"M.P.",100,502.0,507.0,6,795,421,240,62,93,0,14,12 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"O.P.",100,83.0,400.0,122,49775,24262,11624,6458,5031,0,935,214 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"SVR1",57,.,.,".",282,127,73,12,34,0,6,2 35,35006,"Bay of Quinte",35073,"Prince Edward - Hastings",109488,117057,66353,"SVR2",57,.,.,".",0,560,309,72,156,0,18,5 35,35007,"Beaches--East York",35005,"Beaches - East York",107084,107084,107084,"A.P.",100,600.0,611.0,12,0,6648,1422,2168,2704,0,330,24 35,35007,"Beaches--East York",35005,"Beaches - East York",107084,107084,107084,"M.P.",100,500.0,501.0,2,261,159,50,57,47,0,5,0 35,35007,"Beaches--East York",35005,"Beaches - East York",107084,107084,107084,"O.P.",100,1.0,414.0,198,72860,41277,9473,17888,11933,0,1879,104 35,35007,"Beaches--East York",35005,"Beaches - East York",107084,107084,107084,"SVR1",100,.,.,".",181,115,25,27,58,0,5,0 35,35007,"Beaches--East York",35005,"Beaches - East York",107084,107084,107084,"SVR2",100,.,.,".",0,470,97,125,225,0,21,2 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"A.P.",0.0,606.0,606.0,1,0,0,0,0,0,0,0,0 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"A.P.",9.0,612.0,612.0,1,0,63,12,27,23,0,1,0 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"A.P.",100,608.0,613.0,5,0,1990,929,333,614,0,98,16 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"O.P.",0.0,120.0,120.0,1,0,0,0,0,0,0,0,0 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"O.P.",99,199.0,199.0,1,407,231,126,52,44,0,6,3 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"O.P.",100,128.0,409.0,81,28456,13151,6129,3406,2850,0,669,97 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"SVR1",27,.,.,".",41,22,7,3,12,0,0,0 35,35008,"Brampton Centre",35006,"Bramalea - Gore - Malton",103122,192020,46392,"SVR2",27,.,.,".",0,125,53,22,47,0,2,0 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"A.P.",22,612.0,612.0,1,0,46,23,5,16,0,2,0 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"A.P.",50,608.0,608.0,1,0,120,56,19,38,0,6,1 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"A.P.",56,618.0,618.0,1,0,119,68,16,34,0,1,0 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"A.P.",100,614.0,620.0,6,0,2306,1198,330,706,0,66,6 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"O.P.",100,135.0,414.0,84,30898,13994,6474,3458,3333,0,654,75 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"SVR1",35,.,.,".",50,29,12,2,15,0,0,0 35,35008,"Brampton Centre",35007,"Brampton - Springdale",103122,149130,50598,"SVR2",35,.,.,".",0,180,113,11,54,0,2,0 35,35008,"Brampton Centre",35008,"Brampton West",103122,204146,0,"A.P.",0.0,611.0,611.0,1,0,0,0,0,0,0,0,0 35,35008,"Brampton Centre",35008,"Brampton West",103122,204146,0,"O.P.",0.5,140.0,140.0,1,2,1,0,0,0,0,0,0 35,35008,"Brampton Centre",35008,"Brampton West",103122,204146,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35008,"Brampton Centre",35008,"Brampton West",103122,204146,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35008,"Brampton Centre",35047,"Mississauga - Brampton South",103122,147096,6132,"A.P.",40,601.0,601.0,1,0,356,101,27,224,0,3,1 35,35008,"Brampton Centre",35047,"Mississauga - Brampton South",103122,147096,6132,"A.P.",56,600.0,600.0,1,0,314,130,36,142,0,6,1 35,35008,"Brampton Centre",35047,"Mississauga - Brampton South",103122,147096,6132,"O.P.",94,23.0,23.0,1,369,147,64,24,55,0,4,0 35,35008,"Brampton Centre",35047,"Mississauga - Brampton South",103122,147096,6132,"O.P.",100,1.0,9.1,10,3625,1591,646,302,610,0,28,5 35,35008,"Brampton Centre",35047,"Mississauga - Brampton South",103122,147096,6132,"SVR1",4.2,.,.,".",5,3,1,0,1,0,0,-0 35,35008,"Brampton Centre",35047,"Mississauga - Brampton South",103122,147096,6132,"SVR2",4.2,.,.,".",0,10,4,1,5,0,0,0 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"A.P.",0.0,607.0,607.0,1,0,0,0,0,0,0,0,0 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"A.P.",91,612.0,612.0,1,0,633,122,269,228,0,11,3 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"A.P.",100,600.0,605.0,6,0,4889,1176,1927,1730,0,49,7 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"O.P.",0.0,99.0,99.0,1,0,0,0,0,0,0,0,0 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"O.P.",1.0,199.0,199.0,1,4,2,1,1,0,0,0,0 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"O.P.",100,1.0,200.0,99,47285,19645,5612,7878,5653,0,377,125 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"SVR1",44,.,.,".",67,36,11,5,20,0,0,0 35,35009,"Brampton East",35006,"Bramalea - Gore - Malton",99712,192020,88940,"SVR2",44,.,.,".",0,205,87,37,78,0,3,0 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"A.P.",44,600.0,600.0,1,0,387,221,32,130,0,1,3 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"A.P.",50,601.0,601.0,1,0,252,131,20,96,0,5,2 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"M.P.",50,501.0,501.0,1,63,24,11,5,7,0,1,1 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"O.P.",99,2.0,2.0,1,654,336,171,62,97,0,5,1 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"O.P.",100,1.0,11.0,8,4631,2177,875,537,724,0,35,6 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"SVR1",6.0,.,.,".",9,5,2,0,3,0,0,0 35,35009,"Brampton East",35007,"Brampton - Springdale",99712,149130,10772,"SVR2",6.0,.,.,".",0,31,19,2,9,0,0,-0 35,35009,"Brampton East",35096,"Vaughan",99712,196068,0,"A.P.",0.0,600.0,600.0,1,0,0,0,0,0,0,0,0 35,35009,"Brampton East",35096,"Vaughan",99712,196068,0,"O.P.",0.3,1.0,1.0,1,2,1,1,0,0,0,0,0 35,35009,"Brampton East",35096,"Vaughan",99712,196068,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35009,"Brampton East",35096,"Vaughan",99712,196068,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,-0 35,35010,"Brampton North",35006,"Bramalea - Gore - Malton",111951,192020,17585,"A.P.",100,606.0,607.0,2,0,949,421,164,330,0,32,2 35,35010,"Brampton North",35006,"Bramalea - Gore - Malton",111951,192020,17585,"O.P.",100,99.0,127.0,29,11447,5388,2425,1442,1216,0,259,46 35,35010,"Brampton North",35006,"Bramalea - Gore - Malton",111951,192020,17585,"SVR1",11,.,.,".",16,9,3,1,5,0,0,0 35,35010,"Brampton North",35006,"Bramalea - Gore - Malton",111951,192020,17585,"SVR2",11,.,.,".",0,50,21,9,19,0,1,0 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"A.P.",44,618.0,618.0,1,0,95,55,13,27,0,0,0 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"A.P.",50,601.0,608.0,2,0,371,187,39,134,0,11,2 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"A.P.",56,600.0,600.0,1,0,487,277,41,164,0,2,3 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"A.P.",78,612.0,612.0,1,0,162,82,19,54,0,6,1 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"A.P.",100,602.0,613.0,10,0,5154,2926,470,1602,0,144,12 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"M.P.",50,501.0,501.0,1,63,24,11,5,7,0,1,1 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"M.P.",100,500.0,500.0,1,198,107,53,18,26,0,6,4 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"O.P.",1.2,2.0,2.0,1,8,4,2,1,1,0,0,0 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"O.P.",100,4.0,134.0,125,52357,24242,11440,4897,6829,0,974,102 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"SVR1",59,.,.,".",86,49,21,3,25,0,1,0 35,35010,"Brampton North",35007,"Brampton - Springdale",111951,149130,87760,"SVR2",59,.,.,".",0,307,192,18,92,0,4,0 35,35010,"Brampton North",35008,"Brampton West",111951,204146,6606,"A.P.",73,600.0,600.0,1,0,303,136,21,144,0,1,0 35,35010,"Brampton North",35008,"Brampton West",111951,204146,6606,"O.P.",100,1.0,15.0,11,4245,2085,1194,335,521,0,24,11 35,35010,"Brampton North",35008,"Brampton West",111951,204146,6606,"SVR1",3.6,.,.,".",6,3,1,0,2,0,0,0 35,35010,"Brampton North",35008,"Brampton West",111951,204146,6606,"SVR2",3.6,.,.,".",0,22,8,2,11,0,0,0 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"A.P.",96,612.0,612.0,1,0,149,86,14,44,0,4,1 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"A.P.",100,611.0,611.0,1,0,408,223,56,118,0,9,2 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"A.P.",100,618.0,618.0,1,0,647,236,53,346,0,6,6 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"A.P.",100,610.0,621.0,8,0,4054,1830,342,1787,0,80,15 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"M.P.",50,501.0,501.0,1,155,33,12,6,15,0,1,1 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"M.P.",100,500.0,502.0,2,506,281,189,26,59,0,4,3 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"O.P.",78,157.0,157.0,1,275,136,80,21,29,0,6,1 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"O.P.",94,140.0,140.0,1,421,185,84,44,49,0,7,1 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"O.P.",99,224.0,224.0,1,388,135,45,28,58,0,3,2 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"O.P.",100,128.0,413.0,140,55883,25987,12091,4647,8484,0,623,142 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"SVR1",49,.,.,".",87,46,19,4,23,0,0,0 35,35011,"Brampton South",35008,"Brampton West",107364,204146,95778,"SVR2",49,.,.,".",0,302,110,31,154,0,6,1 35,35011,"Brampton South",35047,"Mississauga - Brampton South",107364,147096,11586,"A.P.",44,600.0,600.0,1,0,251,104,28,114,0,4,0 35,35011,"Brampton South",35047,"Mississauga - Brampton South",107364,147096,11586,"A.P.",60,601.0,601.0,1,0,539,154,40,339,0,5,1 35,35011,"Brampton South",35047,"Mississauga - Brampton South",107364,147096,11586,"M.P.",67,500.0,500.0,1,213,77,33,15,27,0,2,1 35,35011,"Brampton South",35047,"Mississauga - Brampton South",107364,147096,11586,"O.P.",100,10.0,401.0,15,6012,2306,843,481,929,0,44,9 35,35011,"Brampton South",35047,"Mississauga - Brampton South",107364,147096,11586,"SVR1",6.6,.,.,".",8,5,2,0,2,0,0,0 35,35011,"Brampton South",35047,"Mississauga - Brampton South",107364,147096,11586,"SVR2",6.6,.,.,".",0,16,7,1,8,0,0,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"A.P.",0.0,618.0,618.0,1,0,0,0,0,0,0,0,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"A.P.",0.4,611.0,611.0,1,0,2,1,0,1,0,0,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"A.P.",3.7,612.0,612.0,1,0,6,3,1,2,0,0,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"A.P.",27,600.0,600.0,1,0,110,50,8,52,0,1,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"A.P.",100,601.0,613.0,10,0,4584,1908,452,2137,0,65,22 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"M.P.",50,501.0,501.0,1,155,33,12,6,15,0,1,1 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"O.P.",0.5,224.0,224.0,1,2,1,0,0,0,0,0,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"O.P.",5.2,140.0,140.0,1,23,10,5,2,3,0,0,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"O.P.",22,157.0,157.0,1,77,39,22,6,8,0,2,0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"O.P.",100,7.0,175.0,134,55617,23383,9852,5085,7896,0,373,177 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"SVR1",47,.,.,".",84,45,18,4,22,0,0,-0 35,35012,"Brampton West",35008,"Brampton West",101762,204146,101762,"SVR2",47,.,.,".",0,293,106,30,149,0,6,1 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"A.P.",54,600.0,600.0,1,0,227,135,27,54,0,10,1 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"A.P.",77,601.0,601.0,1,0,514,322,63,105,0,25,0 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"A.P.",100,602.0,614.0,13,0,5481,2735,1161,1406,0,158,21 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"M.P.",100,500.0,502.0,3,506,176,79,41,43,0,6,7 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"O.P.",42,7.0,7.0,1,171,88,47,16,22,0,2,1 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"O.P.",49,6.0,6.0,1,151,78,48,14,12,0,4,-0 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"O.P.",79,5.0,5.0,1,400,232,136,50,35,0,8,2 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"O.P.",79,12.0,12.0,1,303,167,99,35,27,0,5,1 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"O.P.",100,8.0,400.0,233,90466,47354,22664,14431,8476,0,1525,258 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"SVR1",97,.,.,".",231,133,71,13,44,0,4,1 35,35013,"Brantford--Brant",35009,"Brant",132443,137102,132443,"SVR2",97,.,.,".",0,635,331,96,186,0,19,3 35,35014,"Bruce--Grey--Owen Sound",35026,"Bruce - Grey - Owen Sound",106475,106475,106475,"A.P.",100,600.0,618.0,19,0,8928,5263,1062,1882,0,721,0 35,35014,"Bruce--Grey--Owen Sound",35026,"Bruce - Grey - Owen Sound",106475,106475,106475,"M.P.",100,500.0,509.0,10,1248,710,453,92,121,0,44,0 35,35014,"Bruce--Grey--Owen Sound",35026,"Bruce - Grey - Owen Sound",106475,106475,106475,"O.P.",100,1.0,400.0,193,78490,39923,22145,7724,5872,0,4182,0 35,35014,"Bruce--Grey--Owen Sound",35026,"Bruce - Grey - Owen Sound",106475,106475,106475,"SVR1",100,.,.,".",239,132,76,15,28,0,13,0 35,35014,"Bruce--Grey--Owen Sound",35026,"Bruce - Grey - Owen Sound",106475,106475,106475,"SVR2",100,.,.,".",0,1361,807,115,300,0,139,0 35,35015,"Burlington",35003,"Ancaster - Dundas - Flamborough - Westdale",120569,116357,0,"A.P.",0.2,605.0,605.0,1,0,2,1,0,1,0,0,0 35,35015,"Burlington",35003,"Ancaster - Dundas - Flamborough - Westdale",120569,116357,0,"O.P.",3.2,77.0,77.0,1,10,6,3,1,1,0,0,0 35,35015,"Burlington",35003,"Ancaster - Dundas - Flamborough - Westdale",120569,116357,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35015,"Burlington",35003,"Ancaster - Dundas - Flamborough - Westdale",120569,116357,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35015,"Burlington",35010,"Burlington",120569,119615,119615,"A.P.",100,600.0,615.0,16,0,9702,5245,1256,2935,0,252,14 35,35015,"Burlington",35010,"Burlington",120569,119615,119615,"M.P.",100,500.0,510.0,10,2272,1167,662,228,231,0,33,13 35,35015,"Burlington",35010,"Burlington",120569,119615,119615,"O.P.",100,1.0,415.0,252,89235,49250,26649,9900,10746,0,1843,112 35,35015,"Burlington",35010,"Burlington",120569,119615,119615,"SVR1",100,.,.,".",209,106,61,5,37,0,3,0 35,35015,"Burlington",35010,"Burlington",120569,119615,119615,"SVR2",100,.,.,".",0,627,341,60,205,0,20,1 35,35015,"Burlington",35030,"Halton",120569,203437,954,"A.P.",17,618.0,618.0,1,0,93,56,8,28,0,1,0 35,35015,"Burlington",35030,"Halton",120569,203437,954,"O.P.",100,217.0,218.0,2,642,296,143,90,50,0,13,0 35,35015,"Burlington",35030,"Halton",120569,203437,954,"SVR1",0.5,.,.,".",1,0,0,0,0,0,0,0 35,35015,"Burlington",35030,"Halton",120569,203437,954,"SVR2",0.5,.,.,".",0,3,1,0,1,0,0,0 35,35016,"Cambridge",35009,"Brant",111693,137102,1722,"A.P.",23,601.0,601.0,1,0,154,96,19,31,0,7,0 35,35016,"Cambridge",35009,"Brant",111693,137102,1722,"O.P.",100,14.0,16.0,3,1261,784,466,130,149,0,32,7 35,35016,"Cambridge",35009,"Brant",111693,137102,1722,"SVR1",1.3,.,.,".",3,2,1,0,1,0,0,0 35,35016,"Cambridge",35009,"Brant",111693,137102,1722,"SVR2",1.3,.,.,".",0,9,5,1,3,0,0,0 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"A.P.",1.1,609.0,609.0,1,0,9,6,2,1,0,0,0 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"A.P.",100,601.0,616.0,14,0,6139,3580,1088,1275,0,185,11 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"M.P.",50,502.0,502.0,1,66,39,15,10,11,0,2,2 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"M.P.",100,500.0,501.0,2,301,193,110,35,44,0,1,3 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"O.P.",21,35.0,35.0,1,76,38,19,14,3,0,2,0 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"O.P.",100,36.0,223.0,192,75724,36829,18967,11127,5257,0,1367,111 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"SVR1",81,.,.,".",201,111,65,6,36,0,3,0 35,35016,"Cambridge",35011,"Cambridge",111693,136082,109971,"SVR2",81,.,.,".",0,522,314,80,112,0,15,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"A.P.",100,607.0,607.0,1,0,500,292,102,100,0,7,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"A.P.",100,600.0,612.0,12,0,5449,3170,1080,1023,0,176,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"M.P.",100,500.0,506.0,7,1097,534,309,72,137,0,16,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"O.P.",97,100.1,100.1,1,274,163,96,46,16,0,5,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"O.P.",100,1.0,403.0,213,72648,36240,19166,10051,5787,0,1236,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"SVR1",100,.,.,".",205,115,74,12,24,0,5,0 35,35017,"Chatham-Kent--Leamington",35013,"Chatham-Kent - Essex",111866,105579,105564,"SVR2",100,.,.,".",0,445,250,85,85,0,25,0 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"A.P.",5.0,610.0,610.0,1,0,44,24,8,10,0,1,0 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"A.P.",80,602.0,602.0,1,0,345,157,124,55,0,9,0 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"M.P.",33,500.0,500.0,1,50,29,11,9,8,0,1,1 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"O.P.",57,37.0,37.0,1,210,112,43,43,24,0,3,0 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"O.P.",100,32.0,183.0,10,3778,1910,832,816,201,0,58,3 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"SVR1",4.5,.,.,".",8,4,3,0,1,0,0,0 35,35017,"Chatham-Kent--Leamington",35021,"Essex",111866,125878,5401,"SVR2",4.5,.,.,".",0,33,18,9,5,0,1,0 35,35017,"Chatham-Kent--Leamington",35046,"Lambton - Kent - Middlesex",111866,106805,901,"A.P.",7.7,610.0,610.0,1,0,47,29,9,7,0,1,0 35,35017,"Chatham-Kent--Leamington",35046,"Lambton - Kent - Middlesex",111866,106805,901,"O.P.",2.0,162.0,162.0,1,12,7,4,2,1,0,0,0 35,35017,"Chatham-Kent--Leamington",35046,"Lambton - Kent - Middlesex",111866,106805,901,"O.P.",52,163.0,163.0,1,164,49,29,9,10,0,2,0 35,35017,"Chatham-Kent--Leamington",35046,"Lambton - Kent - Middlesex",111866,106805,901,"O.P.",100,164.0,164.0,1,529,343,162,117,59,0,5,0 35,35017,"Chatham-Kent--Leamington",35046,"Lambton - Kent - Middlesex",111866,106805,901,"SVR1",0.9,.,.,".",2,1,0,0,0,0,0,0 35,35017,"Chatham-Kent--Leamington",35046,"Lambton - Kent - Middlesex",111866,106805,901,"SVR2",0.9,.,.,".",0,5,3,1,1,0,0,0 35,35018,"Davenport",35015,"Davenport",102360,102360,102360,"A.P.",95,603.0,603.0,1,0,390,47,203,122,0,14,4 35,35018,"Davenport",35015,"Davenport",102360,102360,102360,"A.P.",100,600.0,609.0,9,0,3922,474,2142,1111,0,170,25 35,35018,"Davenport",35015,"Davenport",102360,102360,102360,"O.P.",100,1.0,407.0,175,66326,33961,4947,18287,9381,0,1092,254 35,35018,"Davenport",35015,"Davenport",102360,102360,102360,"SVR1",100,.,.,".",132,94,14,21,45,0,13,1 35,35018,"Davenport",35015,"Davenport",102360,102360,102360,"SVR2",100,.,.,".",0,696,71,332,238,0,46,10 35,35019,"Don Valley East",35016,"Don Valley East",93007,111363,57147,"A.P.",100,605.0,611.0,7,0,2907,1113,451,1264,0,71,8 35,35019,"Don Valley East",35016,"Don Valley East",93007,111363,57147,"M.P.",50,500.0,500.0,1,85,40,16,5,14,0,5,1 35,35019,"Don Valley East",35016,"Don Valley East",93007,111363,57147,"M.P.",100,501.0,501.0,1,196,55,28,11,14,0,1,1 35,35019,"Don Valley East",35016,"Don Valley East",93007,111363,57147,"O.P.",100,74.0,430.0,101,36001,17430,6512,4642,5667,0,516,93 35,35019,"Don Valley East",35016,"Don Valley East",93007,111363,57147,"SVR1",52,.,.,".",73,36,10,4,20,0,2,0 35,35019,"Don Valley East",35016,"Don Valley East",93007,111363,57147,"SVR2",52,.,.,".",0,162,49,25,83,0,3,2 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"A.P.",6.7,601.0,601.0,1,0,52,33,1,16,0,1,0 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"A.P.",88,604.0,604.0,1,0,877,389,46,419,0,20,3 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"A.P.",100,608.0,609.0,2,0,992,280,122,563,0,22,5 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"M.P.",100,500.0,500.0,1,149,90,45,9,32,0,2,2 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"O.P.",100,29.0,447.0,60,23805,12307,4222,2368,5300,0,345,72 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"SVR1",29,.,.,".",44,26,10,2,13,0,1,-0 35,35019,"Don Valley East",35017,"Don Valley West",93007,123200,35860,"SVR2",29,.,.,".",0,199,87,8,98,0,4,1 35,35020,"Don Valley North",35016,"Don Valley East",103073,111363,54216,"A.P.",100,600.0,604.0,5,0,2052,759,306,925,0,58,4 35,35020,"Don Valley North",35016,"Don Valley East",103073,111363,54216,"M.P.",50,500.0,500.0,1,85,40,16,5,14,0,5,1 35,35020,"Don Valley North",35016,"Don Valley East",103073,111363,54216,"O.P.",100,1.0,428.0,93,33183,16310,5865,4404,5456,0,449,136 35,35020,"Don Valley North",35016,"Don Valley East",103073,111363,54216,"SVR1",48,.,.,".",67,33,10,3,18,0,2,0 35,35020,"Don Valley North",35016,"Don Valley East",103073,111363,54216,"SVR2",48,.,.,".",0,148,45,22,77,0,3,1 35,35020,"Don Valley North",35045,"Markham - Unionville",103073,136857,0,"A.P.",0.0,600.0,600.0,1,0,0,0,0,0,0,0,0 35,35020,"Don Valley North",35045,"Markham - Unionville",103073,136857,0,"O.P.",0.0,25.0,25.0,1,0,0,0,0,0,0,0,0 35,35020,"Don Valley North",35045,"Markham - Unionville",103073,136857,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35020,"Don Valley North",35045,"Markham - Unionville",103073,136857,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35020,"Don Valley North",35100,"Willowdale",103073,140456,48857,"A.P.",6.3,600.0,600.0,1,0,27,13,3,12,0,0,0 35,35020,"Don Valley North",35100,"Willowdale",103073,140456,48857,"A.P.",100,601.0,611.0,5,0,2412,1136,229,1047,0,0,0 35,35020,"Don Valley North",35100,"Willowdale",103073,140456,48857,"M.P.",100,500.0,502.0,2,146,88,40,10,38,0,0,0 35,35020,"Don Valley North",35100,"Willowdale",103073,140456,48857,"O.P.",100,8.0,488.3,93,34716,17782,7809,3111,6862,0,0,0 35,35020,"Don Valley North",35100,"Willowdale",103073,140456,48857,"SVR1",37,.,.,".",66,37,11,3,22,0,0,0 35,35020,"Don Valley North",35100,"Willowdale",103073,140456,48857,"SVR2",37,.,.,".",0,285,98,32,155,0,0,0 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"A.P.",12,604.0,604.0,1,0,117,52,6,56,0,3,0 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"A.P.",93,601.0,601.0,1,0,731,464,19,228,0,20,1 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"A.P.",100,600.0,610.0,7,0,5754,2582,280,2680,0,203,9 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"M.P.",100,501.0,501.0,1,116,66,28,14,18,0,2,4 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"O.P.",0.0,98.0,98.0,1,0,0,0,0,0,0,0,0 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"O.P.",100,1.0,448.0,143,57885,31727,14535,3379,12660,0,1066,87 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"SVR1",71,.,.,".",108,62,23,5,31,0,3,0 35,35021,"Don Valley West",35017,"Don Valley West",99820,123200,87340,"SVR2",71,.,.,".",0,482,212,21,237,0,11,2 35,35021,"Don Valley West",35077,"St. Paul's",99820,116463,12480,"A.P.",45,608.0,608.0,1,0,273,75,40,146,0,11,1 35,35021,"Don Valley West",35077,"St. Paul's",99820,116463,12480,"A.P.",63,607.0,607.0,1,0,459,132,34,269,0,21,2 35,35021,"Don Valley West",35077,"St. Paul's",99820,116463,12480,"A.P.",100,606.0,606.0,1,0,536,149,66,301,0,17,3 35,35021,"Don Valley West",35077,"St. Paul's",99820,116463,12480,"O.P.",100,104.0,415.0,28,9044,5008,1610,993,2120,0,255,30 35,35021,"Don Valley West",35077,"St. Paul's",99820,116463,12480,"SVR1",11,.,.,".",24,13,4,1,7,0,0,0 35,35021,"Don Valley West",35077,"St. Paul's",99820,116463,12480,"SVR2",11,.,.,".",0,97,28,14,51,0,4,1 35,35022,"Dufferin--Caledon",35018,"Dufferin - Caledon",116341,116341,116341,"A.P.",100,600.0,614.0,15,0,8000,4948,733,1263,0,1056,0 35,35022,"Dufferin--Caledon",35018,"Dufferin - Caledon",116341,116341,116341,"M.P.",100,500.0,504.0,5,884,376,247,48,65,0,16,0 35,35022,"Dufferin--Caledon",35018,"Dufferin - Caledon",116341,116341,116341,"O.P.",100,1.0,171.0,189,80101,39653,23169,5590,4906,0,5988,0 35,35022,"Dufferin--Caledon",35018,"Dufferin - Caledon",116341,116341,116341,"SVR1",100,.,.,".",170,88,48,8,23,0,9,0 35,35022,"Dufferin--Caledon",35018,"Dufferin - Caledon",116341,116341,116341,"SVR2",100,.,.,".",0,432,235,30,104,0,63,0 35,35023,"Durham",35014,"Durham",115395,126833,91559,"A.P.",29,612.0,612.0,1,0,121,69,17,29,0,3,2 35,35023,"Durham",35014,"Durham",115395,126833,91559,"A.P.",100,603.0,611.0,9,0,5396,3046,806,1253,0,244,47 35,35023,"Durham",35014,"Durham",115395,126833,91559,"M.P.",50,501.0,501.0,1,83,38,16,7,10,0,5,1 35,35023,"Durham",35014,"Durham",115395,126833,91559,"M.P.",67,500.0,500.0,1,83,42,13,14,11,0,1,3 35,35023,"Durham",35014,"Durham",115395,126833,91559,"O.P.",100,31.0,165.0,153,65905,34878,18848,8379,5514,0,1752,385 35,35023,"Durham",35014,"Durham",115395,126833,91559,"SVR1",72,.,.,".",135,76,44,9,16,0,4,1 35,35023,"Durham",35014,"Durham",115395,126833,91559,"SVR2",72,.,.,".",0,314,177,33,87,0,14,4 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"A.P.",6.3,611.0,611.0,1,0,41,26,10,3,0,1,0 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"A.P.",24,609.0,609.0,1,0,119,68,38,8,0,4,1 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"A.P.",25,610.0,610.0,1,0,215,125,61,24,0,5,1 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"A.P.",100,612.0,612.0,1,0,769,515,156,82,0,12,4 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"O.P.",100,1.0,405.0,27,13014,6527,3691,2039,584,0,169,44 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"SVR1",15,.,.,".",41,25,11,3,9,0,1,1 35,35023,"Durham",35061,"Oshawa",115395,125322,19783,"SVR2",15,.,.,".",0,98,55,30,11,0,2,0 35,35023,"Durham",35099,"Whitby - Oshawa",115395,146307,4053,"A.P.",57,612.0,612.0,1,0,235,155,40,27,0,11,1 35,35023,"Durham",35099,"Whitby - Oshawa",115395,146307,4053,"O.P.",100,193.0,200.0,8,3233,1651,1023,366,181,0,77,4 35,35023,"Durham",35099,"Whitby - Oshawa",115395,146307,4053,"SVR1",3.1,.,.,".",7,4,2,0,1,0,0,0 35,35023,"Durham",35099,"Whitby - Oshawa",115395,146307,4053,"SVR2",3.1,.,.,".",0,27,17,3,5,0,1,0 35,35024,"Eglinton--Lawrence",35019,"Eglinton - Lawrence",113150,113150,113150,"A.P.",100,600.0,612.0,13,0,7710,3751,518,3230,0,211,0 35,35024,"Eglinton--Lawrence",35019,"Eglinton - Lawrence",113150,113150,113150,"O.P.",100,1.0,426.0,196,73354,39197,17997,5038,14878,0,1284,0 35,35024,"Eglinton--Lawrence",35019,"Eglinton - Lawrence",113150,113150,113150,"SVR1",100,.,.,".",168,108,25,9,67,0,7,0 35,35024,"Eglinton--Lawrence",35019,"Eglinton - Lawrence",113150,113150,113150,"SVR2",100,.,.,".",0,1374,879,48,415,0,32,0 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"A.P.",33,602.0,602.0,1,0,99,58,16,21,0,3,1 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"A.P.",100,600.0,619.0,19,0,6657,4179,1130,1105,0,167,76 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"M.P.",100,500.0,502.0,3,333,193,91,44,41,0,10,7 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"O.P.",0.9,24.0,24.0,1,3,2,1,1,0,0,0,0 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"O.P.",4.1,25.0,25.0,1,11,6,3,2,1,0,0,0 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"O.P.",89,27.0,27.0,1,417,262,163,49,40,0,6,4 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"O.P.",100,1.0,208.0,206,77706,41135,23584,10445,5220,0,1280,606 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"SVR1",96,.,.,".",235,116,65,12,36,0,3,1 35,35025,"Elgin--Middlesex--London",35020,"Elgin - Middlesex - London",110109,114294,110109,"SVR2",96,.,.,".",0,428,244,75,95,0,9,5 35,35026,"Essex",35021,"Essex",120477,125878,120477,"A.P.",20,602.0,602.0,1,0,88,40,32,14,0,2,0 35,35026,"Essex",35021,"Essex",120477,125878,120477,"A.P.",95,610.0,610.0,1,0,840,462,161,191,0,26,1 35,35026,"Essex",35021,"Essex",120477,125878,120477,"A.P.",100,600.0,612.0,11,0,6132,3203,1782,1005,0,137,5 35,35026,"Essex",35021,"Essex",120477,125878,120477,"M.P.",67,500.0,500.0,1,100,58,22,17,15,0,2,1 35,35026,"Essex",35021,"Essex",120477,125878,120477,"M.P.",100,501.0,504.0,4,655,298,147,65,80,0,5,1 35,35026,"Essex",35021,"Essex",120477,125878,120477,"O.P.",43,37.0,37.0,1,156,84,32,32,17,0,2,0 35,35026,"Essex",35021,"Essex",120477,125878,120477,"O.P.",100,1.0,400.0,210,85290,41921,19886,15232,5715,0,1025,63 35,35026,"Essex",35021,"Essex",120477,125878,120477,"SVR1",96,.,.,".",174,91,56,8,21,0,5,1 35,35026,"Essex",35021,"Essex",120477,125878,120477,"SVR2",96,.,.,".",0,708,391,200,103,0,13,1 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"A.P.",60,603.0,603.0,1,0,186,83,26,74,0,3,0 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"A.P.",73,600.0,600.0,1,0,323,123,44,150,0,4,1 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"A.P.",100,601.0,613.0,12,0,6267,2788,507,2819,0,145,8 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"M.P.",100,500.0,502.0,3,1004,316,113,44,149,0,6,4 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"O.P.",100,1.0,430.0,205,75575,42109,17509,6420,16908,0,1148,124 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"SVR1",94,.,.,".",139,80,22,8,48,0,1,1 35,35027,"Etobicoke Centre",35022,"Etobicoke Centre",114910,113606,107348,"SVR2",94,.,.,".",0,405,156,33,206,0,10,-0 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"A.P.",63,601.0,601.0,1,0,126,49,10,63,0,4,0 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"A.P.",71,600.0,600.0,1,0,79,32,16,29,0,2,0 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"A.P.",75,602.0,602.0,1,0,158,56,23,76,0,5,0 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"M.P.",25,500.0,500.0,1,30,15,11,2,2,0,1,1 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"O.P.",100,1.0,410.0,14,5528,3181,1349,654,1070,0,101,7 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"SVR1",6.4,.,.,".",10,5,1,1,3,0,0,0 35,35027,"Etobicoke Centre",35023,"Etobicoke - Lakeshore",114910,122999,7562,"SVR2",6.4,.,.,".",0,40,15,4,19,0,1,0 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"A.P.",25,602.0,602.0,1,0,53,19,8,25,0,2,0 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"A.P.",29,600.0,600.0,1,0,32,13,7,11,0,1,0 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"A.P.",38,601.0,601.0,1,0,76,30,6,38,0,2,0 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"A.P.",100,603.0,623.0,21,0,5810,2340,707,2563,0,186,14 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"M.P.",75,500.0,500.0,1,89,45,32,5,6,0,2,2 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"M.P.",100,501.0,502.0,2,159,85,34,18,29,0,2,2 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"O.P.",100,6.0,459.0,234,81223,44154,17774,9512,14877,0,1828,163 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"SVR1",94,.,.,".",149,77,19,10,43,0,4,1 35,35028,"Etobicoke--Lakeshore",35023,"Etobicoke - Lakeshore",115437,122999,115437,"SVR2",94,.,.,".",0,584,225,65,274,0,20,1 35,35029,"Etobicoke North",35022,"Etobicoke Centre",117601,113606,6258,"A.P.",27,600.0,600.0,1,0,121,46,17,56,0,2,1 35,35029,"Etobicoke North",35022,"Etobicoke Centre",117601,113606,6258,"A.P.",40,603.0,603.0,1,0,124,55,17,50,0,2,-0 35,35029,"Etobicoke North",35022,"Etobicoke Centre",117601,113606,6258,"O.P.",100,2.0,429.0,14,5038,2560,738,616,1141,0,55,10 35,35029,"Etobicoke North",35022,"Etobicoke Centre",117601,113606,6258,"SVR1",6.2,.,.,".",9,5,1,1,3,0,0,0 35,35029,"Etobicoke North",35022,"Etobicoke Centre",117601,113606,6258,"SVR2",6.2,.,.,".",0,27,10,2,14,0,1,0 35,35029,"Etobicoke North",35024,"Etobicoke North",117601,111343,111343,"A.P.",100,600.0,610.0,11,0,4293,1438,624,2177,0,0,54 35,35029,"Etobicoke North",35024,"Etobicoke North",117601,111343,111343,"M.P.",100,500.0,501.0,2,424,128,45,36,42,0,0,5 35,35029,"Etobicoke North",35024,"Etobicoke North",117601,111343,111343,"O.P.",100,1.0,426.0,155,62479,27582,8814,6945,11304,0,0,519 35,35029,"Etobicoke North",35024,"Etobicoke North",117601,111343,111343,"SVR1",100,.,.,".",111,71,11,7,50,0,0,3 35,35029,"Etobicoke North",35024,"Etobicoke North",117601,111343,111343,"SVR2",100,.,.,".",0,161,49,18,92,0,0,2 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"A.P.",7.4,605.0,605.0,1,0,73,29,10,29,0,5,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"A.P.",7.5,614.0,614.0,1,0,45,27,5,12,0,1,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"A.P.",13,609.0,609.0,1,0,121,65,8,44,0,3,1 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"A.P.",86,610.0,610.0,1,0,283,158,36,76,0,14,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"A.P.",100,600.0,604.0,5,0,3441,2155,367,768,0,147,4 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"M.P.",50,503.0,503.0,1,66,49,24,6,17,0,2,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"M.P.",100,500.0,501.0,2,290,167,93,41,25,0,6,2 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"O.P.",56,77.0,77.0,1,180,98,55,17,19,0,6,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"O.P.",68,209.0,209.0,1,222,110,70,14,20,0,6,1 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"O.P.",79,208.0,208.0,1,344,193,124,28,25,0,16,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"O.P.",87,185.0,185.0,1,247,161,80,28,40,0,13,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"O.P.",100,1.0,210.0,83,30630,17326,10529,2839,2991,0,886,81 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"SVR1",37,.,.,".",58,31,17,2,10,0,3,0 35,35030,"Flamborough--Glanbrook",35003,"Ancaster - Dundas - Flamborough - Westdale",97081,116357,43819,"SVR2",37,.,.,".",0,236,120,27,78,0,10,-0 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"A.P.",10,608.0,608.0,1,0,28,10,12,5,0,1,0 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"A.P.",14,609.0,613.0,2,0,96,36,33,24,0,2,0 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"A.P.",15,610.0,610.0,1,0,55,22,22,9,0,2,0 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"A.P.",38,611.0,611.0,1,0,188,69,79,35,0,3,2 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"M.P.",33,501.0,501.0,1,131,78,29,35,13,0,1,1 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"M.P.",50,500.0,500.0,1,142,93,45,27,16,0,2,5 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"O.P.",44,144.0,144.0,1,246,120,47,62,8,0,3,-0 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"O.P.",100,145.0,203.1,13,5692,3093,1219,1226,535,0,79,34 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"SVR1",7.0,.,.,".",14,7,4,1,2,0,0,-0 35,35030,"Flamborough--Glanbrook",35033,"Hamilton Mountain",97081,125586,9375,"SVR2",7.0,.,.,".",0,29,9,13,6,0,1,0 35,35030,"Flamborough--Glanbrook",35055,"Niagara West - Glanbrook",97081,122134,43887,"A.P.",100,600.0,605.0,6,0,2502,1370,555,446,0,117,14 35,35030,"Flamborough--Glanbrook",35055,"Niagara West - Glanbrook",97081,122134,43887,"O.P.",100,1.0,401.0,78,31351,16521,8594,4832,2362,0,548,185 35,35030,"Flamborough--Glanbrook",35055,"Niagara West - Glanbrook",97081,122134,43887,"SVR1",35,.,.,".",62,30,19,2,6,0,3,0 35,35030,"Flamborough--Glanbrook",35055,"Niagara West - Glanbrook",97081,122134,43887,"SVR2",35,.,.,".",0,210,125,17,50,0,12,6 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"A.P.",40,600.0,600.0,1,0,326,186,28,105,0,7,0 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"A.P.",95,601.0,601.0,1,0,381,261,41,68,0,10,1 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"A.P.",100,602.0,619.0,18,0,8615,4573,907,2873,0,239,23 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"M.P.",100,500.0,514.0,15,2200,1187,508,92,530,0,35,22 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"O.P.",4.3,1.4,1.4,1,34,18,8,3,7,0,0,0 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"O.P.",23,1.0,1.0,1,176,94,42,16,32,0,3,0 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"O.P.",61,18.0,18.0,1,232,137,81,24,28,0,4,1 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"O.P.",90,8.0,8.0,1,269,169,86,29,46,0,5,3 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"O.P.",100,2.0,167.1,213,77892,42646,20376,7905,12614,0,1618,133 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"SVR1",95,.,.,".",522,247,164,19,51,0,10,2 35,35031,"Glengarry--Prescott--Russell",35025,"Glengarry - Prescott - Russell",106240,112212,106240,"SVR2",95,.,.,".",0,1084,517,85,447,0,33,2 35,35032,"Guelph",35027,"Guelph",121688,121688,121688,"A.P.",100,600.0,613.0,14,0,8979,2910,930,4477,0,599,63 35,35032,"Guelph",35027,"Guelph",121688,121688,121688,"M.P.",100,500.0,502.0,3,1067,413,134,58,190,0,15,16 35,35032,"Guelph",35027,"Guelph",121688,121688,121688,"O.P.",100,1.0,213.0,196,89981,47596,15777,8746,19756,0,2836,481 35,35032,"Guelph",35027,"Guelph",121688,121688,121688,"SVR1",100,.,.,".",268,158,73,9,64,0,10,2 35,35032,"Guelph",35027,"Guelph",121688,121688,121688,"SVR2",100,.,.,".",0,1875,458,137,1101,0,159,20 35,35033,"Haldimand--Norfolk",35028,"Haldimand - Norfolk",108051,108051,108051,"A.P.",100,600.0,615.0,16,0,8104,4379,1117,2326,0,250,32 35,35033,"Haldimand--Norfolk",35028,"Haldimand - Norfolk",108051,108051,108051,"M.P.",100,500.0,507.0,8,1055,513,255,42,198,0,14,4 35,35033,"Haldimand--Norfolk",35028,"Haldimand - Norfolk",108051,108051,108051,"O.P.",100,1.0,401.0,204,79370,40864,20571,8820,9701,0,1379,393 35,35033,"Haldimand--Norfolk",35028,"Haldimand - Norfolk",108051,108051,108051,"SVR1",100,.,.,".",215,97,50,12,29,0,5,1 35,35033,"Haldimand--Norfolk",35028,"Haldimand - Norfolk",108051,108051,108051,"SVR2",100,.,.,".",0,788,400,71,295,0,17,5 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"A.P.",54,614.0,614.0,1,0,425,289,65,58,0,13,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"A.P.",99,602.0,602.0,1,0,527,313,105,91,0,18,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"A.P.",100,600.0,624.0,22,0,8355,5441,1198,1384,0,332,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"M.P.",100,500.0,507.0,8,1530,625,387,91,125,0,22,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"O.P.",1.4,49.0,49.0,1,6,4,2,1,0,0,0,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"O.P.",96,16.0,16.0,1,264,121,66,39,12,0,3,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"O.P.",100,1.0,209.1,219,85518,43687,25735,10460,5165,0,2327,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"SVR1",94,.,.,".",223,119,75,13,24,0,7,0 35,35034,"Haliburton--Kawartha Lakes--Brock",35029,"Haliburton - Kawartha Lakes - Brock",110182,117576,110182,"SVR2",94,.,.,".",0,838,533,96,171,0,38,0 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"A.P.",100,600.0,611.0,9,0,1973,445,1118,375,0,0,35 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"M.P.",67,501.0,506.0,2,243,116,34,50,26,0,0,6 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"M.P.",75,502.0,502.0,1,140,32,6,17,8,0,0,1 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"M.P.",100,500.0,505.0,4,657,353,88,167,82,0,0,16 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"O.P.",100,1.0,408.0,166,59590,27420,6305,16891,3485,0,0,739 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"SVR1",78,.,.,".",275,168,43,39,78,0,0,9 35,35035,"Hamilton Centre",35031,"Hamilton Centre",101932,116398,91997,"SVR2",78,.,.,".",0,672,146,377,134,0,0,16 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"A.P.",0.0,601.0,601.0,1,0,0,0,0,0,0,0,0 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"A.P.",12,600.0,600.0,1,0,28,7,17,3,0,0,1 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"A.P.",44,602.0,602.0,1,0,205,53,123,17,0,9,4 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"A.P.",61,603.0,603.0,1,0,220,70,102,34,0,9,4 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"O.P.",0.0,23.0,23.0,1,0,0,0,0,0,0,0,0 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"O.P.",84,22.0,22.0,1,232,73,12,54,3,0,0,4 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"O.P.",100,21.0,60.0,19,6837,3104,850,1759,254,0,153,88 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"SVR1",8.3,.,.,".",16,10,4,2,4,0,0,1 35,35035,"Hamilton Centre",35032,"Hamilton East - Stoney Creek",101932,117721,9935,"SVR2",8.3,.,.,".",0,49,15,26,6,0,1,1 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"A.P.",39,603.0,603.0,1,0,140,45,65,22,0,6,3 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"A.P.",56,602.0,602.0,1,0,264,68,158,22,0,11,5 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"A.P.",88,600.0,600.0,1,0,215,55,127,20,0,4,9 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"A.P.",100,601.0,613.0,11,0,4581,1873,1857,702,0,83,66 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"M.P.",100,500.0,502.0,3,513,167,68,50,28,0,4,17 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"O.P.",16,22.0,22.0,1,43,14,2,10,1,0,0,1 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"O.P.",100,1.0,409.0,204,77887,38812,14246,17270,5181,0,1160,955 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"SVR1",92,.,.,".",182,111,39,18,43,0,3,7 35,35036,"Hamilton East--Stoney Creek",35032,"Hamilton East - Stoney Creek",107786,117721,107786,"SVR2",92,.,.,".",0,544,161,293,71,0,7,12 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"A.P.",41,612.0,612.0,1,0,193,61,85,44,0,3,0 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"A.P.",63,611.0,611.0,1,0,314,116,132,58,0,5,3 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"A.P.",85,610.0,610.0,1,0,304,120,124,51,0,9,0 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"A.P.",86,609.0,609.0,1,0,299,103,109,83,0,4,0 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"A.P.",90,608.0,608.0,1,0,246,90,101,45,0,7,3 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"A.P.",100,600.0,607.0,8,0,4039,1298,1977,641,0,90,33 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"M.P.",50,500.0,500.0,1,142,93,45,27,16,0,2,5 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"M.P.",67,501.0,501.0,1,263,156,57,69,26,0,1,2 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"O.P.",56,144.0,144.0,1,310,151,59,77,11,0,4,0 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"O.P.",100,1.0,405.0,189,73244,38779,12438,18935,5962,0,1134,310 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"SVR1",83,.,.,".",171,85,43,12,27,0,3,0 35,35037,"Hamilton Mountain",35033,"Hamilton Mountain",103615,125586,103615,"SVR2",83,.,.,".",0,350,105,158,77,0,8,2 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"A.P.",14,610.0,610.0,1,0,47,26,6,12,0,2,0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"A.P.",87,609.0,609.0,1,0,823,444,54,298,0,23,4 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"A.P.",92,605.0,605.0,1,0,914,361,122,361,0,67,2 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"A.P.",92,614.0,614.0,1,0,553,329,57,150,0,13,4 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"A.P.",100,606.0,613.0,6,0,4413,2075,619,1549,0,159,11 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"M.P.",50,503.0,503.0,1,66,49,24,6,17,0,2,0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"M.P.",100,504.0,511.0,7,1212,697,336,155,188,0,10,8 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"O.P.",13,185.0,185.0,1,37,24,12,4,6,0,2,0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"O.P.",21,208.0,208.0,1,91,51,33,8,6,0,4,0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"O.P.",32,209.0,209.0,1,106,52,33,6,9,0,3,0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"O.P.",41,77.0,77.0,1,131,71,40,13,14,0,4,0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"O.P.",100,79.0,406.0,133,52592,28513,12743,6427,7679,0,1535,129 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"SVR1",63,.,.,".",99,53,29,3,16,0,4,-0 35,35038,"Hamilton West--Ancaster--Dundas",35003,"Ancaster - Dundas - Flamborough - Westdale",109535,116357,72538,"SVR2",63,.,.,".",0,399,204,47,133,0,16,0 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"A.P.",100,608.0,610.0,3,0,1312,514,539,241,0,0,18 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"M.P.",25,502.0,502.0,1,47,11,2,6,3,0,0,0 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"M.P.",33,501.0,506.0,2,121,58,17,25,13,0,0,3 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"M.P.",100,507.0,507.0,1,250,134,36,55,30,0,0,13 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"O.P.",100,161.0,406.0,48,17159,9320,3330,4445,1376,0,0,169 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"SVR1",22,.,.,".",80,49,12,11,22,0,0,3 35,35038,"Hamilton West--Ancaster--Dundas",35031,"Hamilton Centre",109535,116398,24401,"SVR2",22,.,.,".",0,195,42,109,39,0,0,4 35,35038,"Hamilton West--Ancaster--Dundas",35033,"Hamilton Mountain",109535,125586,12596,"A.P.",59,612.0,612.0,1,0,276,87,122,63,0,4,0 35,35038,"Hamilton West--Ancaster--Dundas",35033,"Hamilton Mountain",109535,125586,12596,"A.P.",86,613.0,613.0,1,0,274,111,91,63,0,8,1 35,35038,"Hamilton West--Ancaster--Dundas",35033,"Hamilton Mountain",109535,125586,12596,"O.P.",100,191.0,212.0,22,8936,4864,1697,2046,954,0,128,39 35,35038,"Hamilton West--Ancaster--Dundas",35033,"Hamilton Mountain",109535,125586,12596,"SVR1",10,.,.,".",21,10,5,2,3,0,0,0 35,35038,"Hamilton West--Ancaster--Dundas",35033,"Hamilton Mountain",109535,125586,12596,"SVR2",10,.,.,".",0,42,13,19,9,0,1,0 35,35039,"Hastings--Lennox and Addington",35036,"Kingston and the Islands",92528,125227,0,"A.P.",0.1,602.0,602.0,1,0,1,0,0,0,0,0,0 35,35039,"Hastings--Lennox and Addington",35036,"Kingston and the Islands",92528,125227,0,"O.P.",1.1,15.0,15.0,1,4,2,1,1,0,0,0,0 35,35039,"Hastings--Lennox and Addington",35036,"Kingston and the Islands",92528,125227,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35039,"Hastings--Lennox and Addington",35036,"Kingston and the Islands",92528,125227,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,-0 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"A.P.",50,609.0,609.0,1,0,165,122,17,20,0,6,1 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"A.P.",99,623.0,623.0,1,0,105,76,11,15,0,4,0 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"A.P.",100,613.0,622.0,7,0,3132,1710,517,817,0,78,10 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"M.P.",100,502.0,503.0,2,214,85,48,7,28,0,2,0 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"O.P.",98,3.0,3.0,1,211,84,48,26,7,0,2,1 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"O.P.",100,1.0,402.0,89,31157,15787,7697,4198,3193,0,617,82 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"SVR1",35,.,.,".",171,79,48,8,18,0,4,1 35,35039,"Hastings--Lennox and Addington",35040,"Lanark - Frontenac - Lennox and Addington",92528,119617,41824,"SVR2",35,.,.,".",0,326,179,32,93,0,20,1 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"A.P.",82,605.0,605.0,1,0,764,497,95,162,0,9,1 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"A.P.",100,600.0,606.0,6,0,3442,2183,549,573,0,117,20 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"M.P.",33,501.0,501.0,1,134,87,54,10,20,0,1,3 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"M.P.",100,500.0,500.0,1,197,95,70,7,13,0,0,5 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"O.P.",100,1.0,100.0,98,37546,18409,10610,4794,2252,0,598,155 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"SVR1",43,.,.,".",210,95,55,9,25,0,5,1 35,35039,"Hastings--Lennox and Addington",35073,"Prince Edward - Hastings",92528,117057,50704,"SVR2",43,.,.,".",0,418,231,54,116,0,13,4 35,35040,"Huron--Bruce",35034,"Huron - Bruce",104842,104842,104842,"A.P.",100,600.0,612.0,13,0,8528,4778,1560,1983,0,179,28 35,35040,"Huron--Bruce",35034,"Huron - Bruce",104842,104842,104842,"M.P.",100,500.0,509.0,8,1281,672,406,103,146,0,9,8 35,35040,"Huron--Bruce",35034,"Huron - Bruce",104842,104842,104842,"O.P.",100,1.0,207.0,209,77222,43403,23727,11744,6466,0,1251,215 35,35040,"Huron--Bruce",35034,"Huron - Bruce",104842,104842,104842,"SVR1",100,.,.,".",192,110,64,13,26,0,7,0 35,35040,"Huron--Bruce",35034,"Huron - Bruce",104842,104842,104842,"SVR2",100,.,.,".",0,528,280,73,163,0,9,3 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",2.6,616.0,616.0,1,0,6,5,0,1,0,0,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",5.9,617.0,617.0,1,0,26,18,2,5,0,1,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",93,604.0,604.0,1,0,566,346,43,163,0,14,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",93,603.0,603.0,1,0,636,452,33,122,0,29,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",100,614.0,614.0,1,0,608,382,61,147,0,18,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",100,610.0,610.0,1,0,627,400,77,125,0,25,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"A.P.",100,600.0,613.0,11,0,7121,4304,585,1938,0,294,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"M.P.",50,504.0,504.0,1,24,18,13,1,4,0,1,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"M.P.",100,502.0,506.0,3,555,356,214,25,108,0,9,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",6.3,34.1,34.1,1,41,21,11,5,4,0,1,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",7.8,142.2,142.2,1,37,19,14,2,3,0,0,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",7.9,31.1,31.1,1,18,12,9,1,1,0,0,-0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",65,144.0,144.0,1,427,217,121,47,42,0,8,-0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",100,139.0,139.0,1,902,512,231,129,129,0,22,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",100,94.0,94.0,1,496,261,127,56,76,0,3,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"O.P.",100,1.0,405.0,172,68930,38863,20065,6641,10308,0,1849,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"SVR1",67,.,.,".",454,239,173,7,52,0,6,0 35,35041,"Kanata--Carleton",35012,"Carleton - Mississippi Mills",100846,149769,100846,"SVR2",67,.,.,".",0,694,400,50,217,0,27,-0 35,35041,"Kanata--Carleton",35052,"Nepean - Carleton",100846,159032,0,"A.P.",0.0,600.0,600.0,1,0,0,0,0,0,0,0,0 35,35041,"Kanata--Carleton",35052,"Nepean - Carleton",100846,159032,0,"O.P.",0.4,11.0,11.0,1,2,1,0,0,0,0,0,0 35,35041,"Kanata--Carleton",35052,"Nepean - Carleton",100846,159032,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,-0 35,35041,"Kanata--Carleton",35052,"Nepean - Carleton",100846,159032,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35042,"Kenora",35035,"Kenora",55977,55977,55977,"A.P.",100,600.0,608.0,9,0,2860,1677,456,647,0,67,13 35,35042,"Kenora",35035,"Kenora",55977,55977,55977,"M.P.",100,500.0,500.0,1,147,89,43,18,25,0,2,1 35,35042,"Kenora",35035,"Kenora",55977,55977,55977,"O.P.",100,1.0,128.0,135,41733,20808,9410,6240,4491,0,544,123 35,35042,"Kenora",35035,"Kenora",55977,55977,55977,"SVR1",100,.,.,".",156,109,30,32,34,0,10,3 35,35042,"Kenora",35035,"Kenora",55977,55977,55977,"SVR2",100,.,.,".",0,720,407,109,184,0,13,7 35,35042,"Kenora",35092,"Timmins - James Bay",55977,81957,0,"A.P.",0.0,614.0,614.0,1,0,0,0,0,0,0,0,0 35,35042,"Kenora",35092,"Timmins - James Bay",55977,81957,0,"O.P.",0.0,2.0,2.0,1,0,0,0,0,0,0,0,0 35,35042,"Kenora",35092,"Timmins - James Bay",55977,81957,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35042,"Kenora",35092,"Timmins - James Bay",55977,81957,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35043,"King--Vaughan",35059,"Oak Ridges - Markham",109235,228997,18617,"A.P.",100,600.0,620.0,4,0,1783,1074,114,512,0,57,26 35,35043,"King--Vaughan",35059,"Oak Ridges - Markham",109235,228997,18617,"M.P.",50,504.0,504.0,1,66,43,23,6,11,0,2,2 35,35043,"King--Vaughan",35059,"Oak Ridges - Markham",109235,228997,18617,"O.P.",100,1.0,33.0,37,13626,6970,4269,828,1506,0,268,99 35,35043,"King--Vaughan",35059,"Oak Ridges - Markham",109235,228997,18617,"SVR1",8.9,.,.,".",15,9,5,1,3,0,0,-0 35,35043,"King--Vaughan",35059,"Oak Ridges - Markham",109235,228997,18617,"SVR2",8.9,.,.,".",0,45,24,3,16,0,1,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"A.P.",28,603.0,603.0,1,0,125,72,6,44,0,2,-0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"A.P.",36,600.0,600.0,1,0,226,138,10,73,0,4,-0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"A.P.",100,601.0,609.0,4,0,3023,1864,194,907,0,58,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"M.P.",67,502.0,502.0,1,83,45,33,1,11,0,1,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"M.P.",100,501.0,501.0,1,86,44,14,7,22,0,1,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"O.P.",52,58.0,58.0,1,1403,652,365,72,207,0,8,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"O.P.",100,1.0,1.0,1,548,302,209,14,59,0,20,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"O.P.",100,2.0,147.0,97,53216,25441,14032,3518,7254,0,637,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"SVR1",44,.,.,".",30,23,8,1,14,0,0,0 35,35043,"King--Vaughan",35096,"Vaughan",109235,196068,90618,"SVR2",44,.,.,".",0,92,47,4,37,0,4,-0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"A.P.",0.0,601.0,601.0,1,0,0,0,0,0,0,0,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"A.P.",98,602.0,602.0,1,0,1175,516,142,480,0,36,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"A.P.",100,603.0,616.0,14,0,11073,3908,1451,5233,0,481,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"M.P.",50,503.0,503.0,1,47,24,14,4,6,0,0,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"M.P.",100,500.0,504.0,4,633,465,202,56,193,0,14,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"O.P.",0.4,14.0,14.0,1,1,0,0,0,0,0,0,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"O.P.",71,15.0,15.0,1,259,137,64,38,29,0,5,-0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"O.P.",100,16.0,414.0,222,87700,42046,13861,10410,15930,0,1845,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"SVR1",94,.,.,".",1323,692,416,39,210,0,27,0 35,35044,"Kingston and the Islands",35036,"Kingston and the Islands",116996,125227,116996,"SVR2",94,.,.,".",0,1024,307,102,585,0,29,0 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"A.P.",38,610.0,610.0,1,0,229,109,26,84,0,8,1 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"A.P.",44,601.0,601.0,1,0,299,142,36,114,0,6,1 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"A.P.",87,609.0,609.0,1,0,611,322,65,206,0,18,0 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"A.P.",100,602.0,608.0,7,0,4136,1697,611,1637,0,163,28 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"M.P.",100,500.0,501.0,2,327,221,124,19,70,0,3,5 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",0.1,172.2,172.2,1,1,0,0,0,0,0,0,0 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",14,172.3,172.3,1,60,31,16,5,9,0,1,0 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",17,181.0,181.0,1,65,26,11,10,5,0,1,0 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",18,189.0,189.0,1,69,28,12,9,6,0,1,0 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",51,180.0,180.0,1,200,71,22,27,18,0,3,1 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",77,173.0,173.0,1,423,244,130,41,60,0,12,1 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"O.P.",100,25.0,401.0,157,62467,32749,13402,7736,9923,0,1416,272 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"SVR1",79,.,.,".",204,107,34,10,57,0,5,1 35,35045,"Kitchener Centre",35037,"Kitchener Centre",102433,109915,86965,"SVR2",79,.,.,".",0,469,190,65,193,0,19,2 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"A.P.",0.6,603.0,603.0,1,0,4,2,0,2,0,0,0 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"A.P.",30,611.0,611.0,1,0,189,85,25,70,0,8,1 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"A.P.",33,605.0,605.0,1,0,366,133,31,183,0,19,0 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"A.P.",85,604.0,604.0,1,0,434,116,64,218,0,33,3 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"O.P.",4.8,129.0,129.0,1,20,13,5,1,6,0,1,0 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"O.P.",12,165.0,165.0,1,40,26,12,2,12,0,1,0 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"O.P.",100,168.0,403.0,33,11309,6445,2313,1505,2129,0,420,78 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"SVR1",12,.,.,".",30,19,7,1,10,0,1,0 35,35045,"Kitchener Centre",35039,"Kitchener - Waterloo",102433,130162,15468,"SVR2",12,.,.,".",0,280,84,16,163,0,16,1 35,35046,"Kitchener--Conestoga",35037,"Kitchener Centre",93827,109915,14818,"A.P.",56,601.0,601.0,1,0,373,177,45,143,0,7,1 35,35046,"Kitchener--Conestoga",35037,"Kitchener Centre",93827,109915,14818,"A.P.",100,600.0,600.0,1,0,621,298,70,238,0,14,1 35,35046,"Kitchener--Conestoga",35037,"Kitchener Centre",93827,109915,14818,"O.P.",100,1.0,400.0,28,11220,6312,2923,1297,1851,0,193,48 35,35046,"Kitchener--Conestoga",35037,"Kitchener Centre",93827,109915,14818,"SVR1",14,.,.,".",36,19,6,2,10,0,1,0 35,35046,"Kitchener--Conestoga",35037,"Kitchener Centre",93827,109915,14818,"SVR2",14,.,.,".",0,83,34,11,34,0,3,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"A.P.",1.4,612.0,612.0,1,0,6,3,1,1,0,0,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"A.P.",26,606.0,606.0,1,0,91,45,19,24,0,3,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"A.P.",50,608.0,608.0,1,0,172,91,32,41,0,8,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"A.P.",100,600.0,605.0,6,0,3742,2377,376,862,0,127,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"M.P.",100,500.0,501.0,2,291,149,89,17,35,0,8,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"O.P.",0.6,85.0,85.0,1,3,1,1,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"O.P.",0.8,85.1,85.1,1,6,2,1,1,0,0,0,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"O.P.",16,147.0,147.0,1,62,32,14,8,8,0,2,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"O.P.",90,93.0,93.0,1,376,147,80,37,27,0,4,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"O.P.",100,1.0,92.1,104,44235,23481,13543,4453,4544,0,941,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"SVR1",51,.,.,".",83,38,18,5,12,0,3,0 35,35046,"Kitchener--Conestoga",35038,"Kitchener - Conestoga",93827,130937,67507,"SVR2",51,.,.,".",0,229,123,30,73,0,3,0 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"A.P.",0.0,606.0,606.0,1,0,0,0,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"A.P.",0.1,608.0,608.0,1,0,1,1,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"A.P.",84,603.0,603.0,1,0,536,229,56,229,0,21,1 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"M.P.",50,503.0,503.0,1,83,51,22,8,19,0,1,1 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"O.P.",0.0,70.0,70.0,1,0,0,0,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"O.P.",2.2,43.0,43.0,1,6,3,1,1,1,0,0,0 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"O.P.",100,169.0,182.1,16,7436,3986,1777,870,1187,0,119,33 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"SVR1",7.9,.,.,".",20,13,5,1,7,0,0,0 35,35046,"Kitchener--Conestoga",35039,"Kitchener - Waterloo",93827,130162,11502,"SVR2",7.9,.,.,".",0,185,56,11,108,0,10,1 35,35046,"Kitchener--Conestoga",35098,"Wellington - Halton Hills",93827,115880,0,"A.P.",0.0,603.0,603.0,1,0,0,0,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35098,"Wellington - Halton Hills",93827,115880,0,"O.P.",0.3,60.0,60.0,1,2,1,1,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35098,"Wellington - Halton Hills",93827,115880,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35046,"Kitchener--Conestoga",35098,"Wellington - Halton Hills",93827,115880,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"A.P.",99,609.0,609.0,1,0,824,517,148,133,0,24,2 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"A.P.",100,600.0,614.0,2,0,1026,619,171,197,0,36,3 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"M.P.",50,502.0,502.0,1,66,39,15,10,11,0,2,2 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"O.P.",79,35.0,35.0,1,287,143,72,53,11,0,7,0 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"O.P.",100,1.0,98.1,43,17822,8986,5005,2473,1159,0,330,19 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"SVR1",19,.,.,".",48,26,16,2,8,0,1,0 35,35047,"Kitchener South--Hespeler",35011,"Cambridge",97673,136082,26111,"SVR2",19,.,.,".",0,124,75,19,27,0,4,-0 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"A.P.",13,609.0,609.0,1,0,92,48,10,31,0,3,-0 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"A.P.",62,610.0,610.0,1,0,371,178,42,137,0,13,2 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",23,173.0,173.0,1,127,73,39,13,18,0,3,0 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",49,180.0,180.0,1,193,68,22,26,17,0,2,1 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",82,189.0,189.0,1,322,128,54,41,30,0,2,1 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",83,181.0,181.0,1,311,126,51,46,22,0,6,0 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",86,172.3,172.3,1,383,197,104,30,57,0,3,3 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",100,172.2,172.2,1,729,359,188,60,101,0,9,1 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"O.P.",100,182.0,190.0,9,3326,1717,767,382,500,0,55,13 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"SVR1",6.7,.,.,".",17,9,3,1,5,0,0,0 35,35047,"Kitchener South--Hespeler",35037,"Kitchener Centre",97673,109915,8132,"SVR2",6.7,.,.,".",0,40,16,6,16,0,2,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"A.P.",50,608.0,608.0,1,0,170,90,32,40,0,8,-0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"A.P.",74,606.0,606.0,1,0,254,126,52,68,0,8,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"A.P.",99,612.0,612.0,1,0,401,220,61,98,0,23,-0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"A.P.",100,607.0,615.0,7,0,2396,1345,402,589,0,60,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"M.P.",100,502.0,502.0,1,94,56,34,10,12,0,0,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"O.P.",0.0,84.0,84.0,1,0,0,0,0,0,0,0,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"O.P.",10,93.0,93.0,1,42,17,9,4,3,0,0,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"O.P.",84,147.0,147.0,1,337,175,78,45,43,0,9,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"O.P.",99,85.1,85.1,1,757,320,172,87,45,0,16,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"O.P.",99,85.0,85.0,1,495,246,130,61,43,0,12,-0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"O.P.",100,85.2,404.0,98,41905,21020,10175,5899,4003,0,943,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"SVR1",49,.,.,".",80,36,18,4,11,0,3,0 35,35047,"Kitchener South--Hespeler",35038,"Kitchener - Conestoga",97673,130937,63430,"SVR2",49,.,.,".",0,223,120,29,71,0,3,0 35,35048,"Lambton--Kent--Middlesex",35013,"Chatham-Kent - Essex",105919,105579,15,"A.P.",0.1,607.0,607.0,1,0,1,0,0,0,0,0,0 35,35048,"Lambton--Kent--Middlesex",35013,"Chatham-Kent - Essex",105919,105579,15,"O.P.",2.7,100.1,100.1,1,7,4,3,1,0,0,0,0 35,35048,"Lambton--Kent--Middlesex",35013,"Chatham-Kent - Essex",105919,105579,15,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35048,"Lambton--Kent--Middlesex",35013,"Chatham-Kent - Essex",105919,105579,15,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"A.P.",92,610.0,610.0,1,0,564,353,108,87,0,12,5 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"A.P.",100,600.0,615.0,15,0,6171,3748,1108,1093,0,179,43 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"M.P.",100,500.0,505.0,6,685,418,235,59,97,0,17,10 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"O.P.",48,163.0,163.0,1,152,45,26,8,9,0,1,0 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"O.P.",98,162.0,162.0,1,566,317,169,83,52,0,11,2 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"O.P.",100,1.0,400.0,213,77458,42652,24394,10719,5734,0,1453,352 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"SVR1",99,.,.,".",186,97,54,14,25,0,5,0 35,35048,"Lambton--Kent--Middlesex",35046,"Lambton - Kent - Middlesex",105919,106805,105904,"SVR2",99,.,.,".",0,507,340,62,89,0,15,1 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"A.P.",7.1,603.0,603.0,1,0,49,35,3,9,0,2,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"A.P.",100,622.0,624.0,3,0,1650,1187,117,286,0,60,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"M.P.",50,504.0,504.0,1,24,18,13,1,4,0,1,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"M.P.",100,500.0,500.0,1,219,121,83,14,22,0,2,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"O.P.",92,31.1,31.1,1,208,142,103,18,18,0,4,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"O.P.",100,181.0,199.0,20,9040,4876,2925,749,918,0,284,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"SVR1",8.9,.,.,".",60,32,23,1,7,0,1,0 35,35049,"Lanark--Frontenac--Kingston",35012,"Carleton - Mississippi Mills",98409,149769,12385,"SVR2",8.9,.,.,".",0,92,53,7,29,0,4,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"A.P.",1.5,602.0,602.0,1,0,18,8,2,7,0,1,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"A.P.",100,601.0,601.0,1,0,636,323,70,227,0,16,-0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"A.P.",100,600.0,600.0,1,0,162,71,36,51,0,4,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"M.P.",50,503.0,503.0,1,47,24,14,4,6,0,0,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"O.P.",28,15.0,15.0,1,103,54,26,15,12,0,2,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"O.P.",100,14.0,14.0,1,282,119,53,28,29,0,9,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"O.P.",100,1.0,21.0,15,5561,2891,1356,657,790,0,88,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"SVR1",6.3,.,.,".",89,47,28,3,14,0,2,0 35,35049,"Lanark--Frontenac--Kingston",35036,"Kingston and the Islands",98409,125227,8231,"SVR2",6.3,.,.,".",0,69,21,7,40,0,2,0 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"A.P.",0.5,623.0,623.0,1,0,1,0,0,0,0,0,0 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"A.P.",50,609.0,609.0,1,0,165,122,17,20,0,6,1 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"A.P.",100,600.0,624.0,16,0,7701,5124,905,1332,0,298,42 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"M.P.",100,500.0,504.0,3,556,294,198,25,48,0,11,12 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"O.P.",1.6,3.0,3.0,1,3,1,1,0,0,0,0,0 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"O.P.",100,8.0,401.0,167,58830,30255,17955,6336,4140,0,1609,215 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"SVR1",65,.,.,".",321,148,89,15,35,0,8,1 35,35049,"Lanark--Frontenac--Kingston",35040,"Lanark - Frontenac - Lennox and Addington",98409,119617,77793,"SVR2",65,.,.,".",0,613,338,61,175,0,37,3 35,35049,"Lanark--Frontenac--Kingston",35041,"Leeds - Grenville",98409,99306,0,"A.P.",0.1,612.0,612.0,1,0,1,0,0,0,0,0,0 35,35049,"Lanark--Frontenac--Kingston",35041,"Leeds - Grenville",98409,99306,0,"O.P.",1.1,17.0,17.0,1,5,3,2,1,0,0,0,0 35,35049,"Lanark--Frontenac--Kingston",35041,"Leeds - Grenville",98409,99306,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35049,"Lanark--Frontenac--Kingston",35041,"Leeds - Grenville",98409,99306,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"A.P.",100,612.0,612.0,1,0,515,376,54,70,0,16,-0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"A.P.",100,600.0,616.0,16,0,8188,5351,1008,1472,0,357,0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"M.P.",100,500.0,503.0,4,698,337,228,28,65,0,16,0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"O.P.",99,17.0,17.0,1,443,237,153,51,26,0,7,0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"O.P.",100,1.0,400.0,200,75282,39283,23411,7825,6023,0,2024,0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"SVR1",100,.,.,".",374,185,114,19,44,0,8,-0 35,35050,"Leeds-Grenville-Thousand Islands and Rideau Lakes",35041,"Leeds - Grenville",99306,99306,99306,"SVR2",100,.,.,".",0,574,356,47,139,0,32,0 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"A.P.",67,602.0,602.0,1,0,203,119,34,42,0,5,3 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"O.P.",11,27.0,27.0,1,52,33,20,6,5,0,1,1 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"O.P.",96,25.0,25.0,1,256,147,75,47,16,0,4,5 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"O.P.",99,24.0,24.0,1,380,215,94,102,15,0,2,2 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"O.P.",100,18.0,23.0,6,2259,1133,440,473,170,0,39,11 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"SVR1",3.6,.,.,".",9,4,2,0,1,0,0,0 35,35051,"London--Fanshawe",35020,"Elgin - Middlesex - London",119334,114294,4185,"SVR2",3.6,.,.,".",0,16,9,3,4,0,0,0 35,35051,"London--Fanshawe",35042,"London - Fanshawe",119334,106434,106434,"A.P.",100,600.0,609.0,10,0,4897,1829,2274,628,0,105,61 35,35051,"London--Fanshawe",35042,"London - Fanshawe",119334,106434,106434,"M.P.",100,500.0,500.0,1,168,94,34,26,24,0,8,2 35,35051,"London--Fanshawe",35042,"London - Fanshawe",119334,106434,106434,"O.P.",100,1.0,400.0,181,74652,36928,12178,19097,4125,0,1067,461 35,35051,"London--Fanshawe",35042,"London - Fanshawe",119334,106434,106434,"SVR1",100,.,.,".",318,146,63,32,42,0,6,3 35,35051,"London--Fanshawe",35042,"London - Fanshawe",119334,106434,106434,"SVR2",100,.,.,".",0,548,190,260,74,0,16,8 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"A.P.",76,609.0,609.0,1,0,162,62,49,41,0,8,2 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"M.P.",33,500.0,500.0,1,31,17,6,4,7,0,0,0 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"O.P.",14,201.0,201.0,1,75,26,6,12,6,0,1,0 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"O.P.",91,210.0,210.0,1,388,169,42,77,39,0,6,5 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"O.P.",95,200.0,200.0,1,385,144,47,56,32,0,8,1 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"O.P.",100,197.0,197.0,1,412,173,51,84,31,0,7,0 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"O.P.",100,192.0,218.0,13,5096,2321,800,1007,374,0,124,16 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"SVR1",7.3,.,.,".",31,16,7,2,6,0,1,0 35,35051,"London--Fanshawe",35043,"London North Centre",119334,117899,8715,"SVR2",7.3,.,.,".",0,64,24,10,27,0,2,0 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"A.P.",24,609.0,609.0,1,0,51,19,15,13,0,3,1 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"A.P.",100,600.0,611.0,11,0,6147,2621,880,2424,0,203,19 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"M.P.",67,500.0,500.0,1,62,34,12,8,13,0,0,1 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"M.P.",100,501.0,505.0,5,1333,712,295,104,269,0,38,6 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"O.P.",0.2,197.0,197.0,1,1,0,0,0,0,0,0,0 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"O.P.",5.1,200.0,200.0,1,21,8,3,3,2,0,0,0 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"O.P.",9.0,210.0,210.0,1,38,17,4,8,4,0,1,0 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"O.P.",86,201.0,201.0,1,470,160,39,76,37,0,8,1 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"O.P.",100,1.0,414.0,197,79743,41436,15042,10446,14057,0,1719,172 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"SVR1",93,.,.,".",392,204,87,21,79,0,16,1 35,35052,"London North Centre",35043,"London North Centre",118079,117899,109184,"SVR2",93,.,.,".",0,812,301,134,342,0,32,4 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"A.P.",3.4,610.0,610.0,1,0,20,6,6,8,0,1,0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"A.P.",90,608.0,608.0,1,0,456,197,98,151,0,11,0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"O.P.",0.0,111.0,111.0,1,0,0,0,0,0,0,0,0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"O.P.",56,98.0,98.0,1,168,95,25,47,21,0,3,0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"O.P.",67,110.0,110.0,1,187,85,17,37,24,0,6,-0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"O.P.",99,95.0,95.0,1,464,274,130,60,81,0,3,0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"O.P.",100,85.0,415.0,23,5700,2808,934,1015,739,0,114,6 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"SVR1",7.0,.,.,".",22,12,5,1,4,0,1,0 35,35052,"London North Centre",35044,"London West",118079,127985,8895,"SVR2",7.0,.,.,".",0,111,65,15,30,0,1,0 35,35053,"London West",35044,"London West",119090,127985,119090,"A.P.",10,608.0,608.0,1,0,53,23,11,17,0,1,0 35,35053,"London West",35044,"London West",119090,127985,119090,"A.P.",97,610.0,610.0,1,0,589,167,164,234,0,21,2 35,35053,"London West",35044,"London West",119090,127985,119090,"A.P.",100,600.0,615.0,14,0,6964,3621,1056,2131,0,152,4 35,35053,"London West",35044,"London West",119090,127985,119090,"M.P.",100,500.0,502.0,3,489,290,138,71,73,0,7,1 35,35053,"London West",35044,"London West",119090,127985,119090,"O.P.",1.0,95.0,95.0,1,5,3,1,1,1,0,0,0 35,35053,"London West",35044,"London West",119090,127985,119090,"O.P.",33,110.0,110.0,1,91,41,9,18,12,0,3,-0 35,35053,"London West",35044,"London West",119090,127985,119090,"O.P.",44,98.0,98.0,1,134,76,19,38,16,0,2,0 35,35053,"London West",35044,"London West",119090,127985,119090,"O.P.",100,1.0,417.0,227,86368,48684,21376,13253,12660,0,1345,50 35,35053,"London West",35044,"London West",119090,127985,119090,"SVR1",93,.,.,".",287,160,68,20,56,0,17,0 35,35053,"London West",35044,"London West",119090,127985,119090,"SVR2",93,.,.,".",0,1483,874,198,394,0,15,2 35,35054,"Markham--Stouffville",35045,"Markham - Unionville",109780,136857,10209,"A.P.",33,606.0,606.0,1,0,152,66,14,68,0,4,0 35,35054,"Markham--Stouffville",35045,"Markham - Unionville",109780,136857,10209,"A.P.",100,605.0,605.0,1,0,611,302,50,234,0,25,0 35,35054,"Markham--Stouffville",35045,"Markham - Unionville",109780,136857,10209,"O.P.",29,167.0,167.0,1,142,66,25,17,23,0,0,0 35,35054,"Markham--Stouffville",35045,"Markham - Unionville",109780,136857,10209,"O.P.",100,142.0,159.0,16,7074,3673,1647,641,1230,0,141,14 35,35054,"Markham--Stouffville",35045,"Markham - Unionville",109780,136857,10209,"SVR1",7.8,.,.,".",9,5,1,1,3,0,0,0 35,35054,"Markham--Stouffville",35045,"Markham - Unionville",109780,136857,10209,"SVR2",7.8,.,.,".",0,22,7,1,12,0,1,0 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"A.P.",3.4,613.0,613.0,1,0,21,9,3,8,0,0,0 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"A.P.",75,615.0,615.0,1,0,466,227,45,181,0,11,2 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"A.P.",100,606.0,625.0,10,0,6715,3668,738,2147,0,137,25 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"M.P.",50,503.0,503.0,1,84,65,44,5,14,0,1,1 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"M.P.",100,500.0,506.0,3,501,160,87,29,31,0,7,6 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"O.P.",54,207.0,207.0,1,136,68,31,12,19,0,5,1 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"O.P.",100,100.0,404.0,160,67625,34894,17563,6435,9594,0,947,355 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"SVR1",44,.,.,".",73,44,23,4,16,0,2,0 35,35054,"Markham--Stouffville",35059,"Oak Ridges - Markham",109780,228997,99571,"SVR2",44,.,.,".",0,223,120,16,81,0,4,2 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"A.P.",0.0,605.0,605.0,1,0,0,0,0,0,0,0,0 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"A.P.",2.5,600.0,600.0,1,0,8,4,1,3,0,0,0 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"A.P.",67,606.0,606.0,1,0,309,134,29,137,0,8,1 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"A.P.",100,607.0,612.0,6,0,3348,952,496,1769,0,120,11 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"O.P.",0.0,63.0,143.0,2,0,0,0,0,0,0,0,0 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"O.P.",15,25.0,25.0,1,70,26,13,4,9,0,0,0 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"O.P.",71,167.0,167.0,1,348,160,61,40,58,0,1,1 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"O.P.",100,64.0,404.0,106,49618,21744,5819,6741,8581,0,481,122 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"SVR1",54,.,.,".",63,37,9,5,22,0,0,1 35,35055,"Markham--Thornhill",35045,"Markham - Unionville",102221,136857,76832,"SVR2",54,.,.,".",0,150,51,9,87,0,4,0 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"A.P.",24,612.0,612.0,1,0,141,83,9,44,0,4,1 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"A.P.",62,610.0,610.0,1,0,392,257,19,113,0,1,1 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"A.P.",100,611.0,613.0,2,0,1554,898,107,501,0,47,1 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"M.P.",33,502.0,502.0,1,65,46,27,6,10,0,4,0 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"O.P.",100,146.0,146.0,1,554,280,144,47,77,0,9,3 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"O.P.",100,145.0,438.0,47,19429,9670,5264,1386,2662,0,313,45 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"SVR1",20,.,.,".",26,17,7,1,8,0,1,-0 35,35055,"Markham--Thornhill",35089,"Thornhill",102221,140265,25389,"SVR2",20,.,.,".",0,193,134,7,48,0,5,0 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"A.P.",97,600.0,600.0,1,0,291,135,49,97,0,9,1 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"A.P.",100,601.0,604.0,4,0,2607,1096,220,1178,0,106,7 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"M.P.",100,500.0,500.0,1,279,152,102,15,28,0,4,3 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"O.P.",85,25.0,25.0,1,395,146,73,20,50,0,3,0 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"O.P.",100,1.0,406.0,81,34596,16249,7194,2534,5763,0,688,70 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"SVR1",38,.,.,".",44,26,6,4,16,0,0,0 35,35056,"Markham--Unionville",35045,"Markham - Unionville",104693,136857,49816,"SVR2",38,.,.,".",0,106,36,6,61,0,3,-0 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"A.P.",25,615.0,615.0,1,0,155,76,15,60,0,4,1 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"A.P.",97,613.0,613.0,1,0,595,264,89,234,0,6,3 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"A.P.",100,609.0,612.0,4,0,2485,1321,285,806,0,52,21 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"M.P.",50,503.0,503.0,1,84,65,44,5,14,0,1,1 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"O.P.",46,207.0,207.0,1,114,57,26,10,16,0,5,0 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"O.P.",100,149.0,222.0,85,36015,16255,7576,3238,4875,0,298,268 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"SVR1",24,.,.,".",39,23,12,2,8,0,1,0 35,35056,"Markham--Unionville",35059,"Oak Ridges - Markham",104693,228997,54877,"SVR2",24,.,.,".",0,118,63,8,43,0,2,1 35,35057,"Milton",35030,"Halton",88065,203437,88065,"A.P.",0.1,615.0,615.0,1,0,0,0,0,0,0,0,0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"A.P.",2.8,608.0,608.0,1,0,16,8,2,7,0,0,0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"A.P.",56,601.0,601.0,1,0,329,198,27,91,0,12,1 35,35057,"Milton",35030,"Halton",88065,203437,88065,"A.P.",100,607.0,607.0,1,0,382,202,34,134,0,10,2 35,35057,"Milton",35030,"Halton",88065,203437,88065,"A.P.",100,600.0,620.0,7,0,4122,2344,430,1223,0,116,9 35,35057,"Milton",35030,"Halton",88065,203437,88065,"M.P.",50,504.0,504.0,1,40,15,9,3,3,0,0,0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"M.P.",100,500.0,500.0,1,228,131,77,17,30,0,5,2 35,35057,"Milton",35030,"Halton",88065,203437,88065,"O.P.",0.8,194.0,194.0,1,6,3,2,0,1,0,0,0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"O.P.",40,90.0,90.0,1,282,142,71,22,47,0,2,-0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"O.P.",94,84.0,84.0,1,282,104,59,25,13,0,7,-0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"O.P.",100,1.0,405.0,118,55518,28292,15513,5011,6507,0,1151,110 35,35057,"Milton",35030,"Halton",88065,203437,88065,"SVR1",43,.,.,".",80,39,23,0,15,0,0,0 35,35057,"Milton",35030,"Halton",88065,203437,88065,"SVR2",43,.,.,".",0,269,124,22,113,0,7,3 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"A.P.",6.3,615.0,615.0,1,0,29,14,4,10,0,1,0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"A.P.",42,608.0,608.0,1,0,329,136,38,150,0,5,0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"A.P.",58,605.0,605.0,1,0,471,201,63,196,0,10,1 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"A.P.",92,607.0,607.0,1,0,438,179,56,198,0,5,1 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"A.P.",100,613.0,614.0,2,0,784,355,73,342,0,11,3 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",18,142.0,142.0,1,96,37,11,11,15,0,0,0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",51,155.0,155.0,1,202,81,36,9,34,0,1,1 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",64,159.0,159.0,1,358,149,71,22,52,0,4,0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",66,170.0,170.0,1,184,81,36,19,24,0,2,0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",79,174.0,174.0,1,312,113,42,18,51,0,0,2 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",89,176.0,176.0,1,258,123,35,27,57,0,4,0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"O.P.",100,66.0,414.0,50,17509,7788,3319,1611,2657,0,179,22 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"SVR1",20,.,.,".",23,14,6,1,7,0,0,-0 35,35058,"Mississauga Centre",35047,"Mississauga - Brampton South",118756,147096,28030,"SVR2",20,.,.,".",0,47,21,3,23,0,0,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"A.P.",18,609.0,609.0,1,0,77,23,11,40,0,2,1 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"A.P.",34,611.0,611.0,1,0,208,73,27,102,0,5,1 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"A.P.",100,607.0,610.0,3,0,1231,438,152,612,0,27,2 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"M.P.",50,502.0,502.0,1,82,54,25,11,18,0,1,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",0.0,120.0,120.0,1,0,0,0,0,0,0,0,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",0.2,121.0,121.0,1,1,0,0,0,0,0,0,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",17,139.0,139.0,1,90,35,18,5,12,0,0,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",37,138.0,138.0,1,195,107,35,17,51,0,3,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",52,119.0,119.0,1,254,103,32,20,49,0,2,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",74,92.0,92.0,1,526,215,66,66,76,0,5,1 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",77,132.0,132.0,1,256,119,37,25,57,0,0,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"O.P.",100,96.0,457.0,64,24914,11859,4378,2706,4421,0,297,57 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"SVR1",31,.,.,".",43,21,9,2,10,0,0,0 35,35058,"Mississauga Centre",35048,"Mississauga East - Cooksville",118756,139039,43766,"SVR2",31,.,.,".",0,117,43,13,59,0,2,0 35,35058,"Mississauga Centre",35049,"Mississauga - Erindale",118756,160663,37179,"A.P.",56,602.0,602.0,1,0,392,149,34,203,0,5,1 35,35058,"Mississauga Centre",35049,"Mississauga - Erindale",118756,160663,37179,"A.P.",85,603.0,603.0,1,0,702,331,78,271,0,21,1 35,35058,"Mississauga Centre",35049,"Mississauga - Erindale",118756,160663,37179,"A.P.",100,600.0,601.0,2,0,1889,870,147,841,0,29,2 35,35058,"Mississauga Centre",35049,"Mississauga - Erindale",118756,160663,37179,"O.P.",100,1.0,70.0,62,25176,11399,5388,2243,3445,0,297,26 35,35058,"Mississauga Centre",35049,"Mississauga - Erindale",118756,160663,37179,"SVR1",24,.,.,".",43,23,10,1,11,0,0,0 35,35058,"Mississauga Centre",35049,"Mississauga - Erindale",118756,160663,37179,"SVR2",24,.,.,".",0,136,64,6,64,0,2,0 35,35058,"Mississauga Centre",35051,"Mississauga - Streetsville",118756,132637,9781,"A.P.",23,610.0,610.0,1,0,136,49,14,69,0,4,0 35,35058,"Mississauga Centre",35051,"Mississauga - Streetsville",118756,132637,9781,"A.P.",95,611.0,611.0,1,0,390,131,43,208,0,9,0 35,35058,"Mississauga Centre",35051,"Mississauga - Streetsville",118756,132637,9781,"O.P.",31,176.0,176.0,1,81,43,20,9,13,0,1,0 35,35058,"Mississauga Centre",35051,"Mississauga - Streetsville",118756,132637,9781,"O.P.",100,192.0,206.0,15,6118,2910,1130,519,1208,0,53,0 35,35058,"Mississauga Centre",35051,"Mississauga - Streetsville",118756,132637,9781,"SVR1",7.1,.,.,".",9,4,2,0,2,0,0,0 35,35058,"Mississauga Centre",35051,"Mississauga - Streetsville",118756,132637,9781,"SVR2",7.1,.,.,".",0,23,9,2,12,0,0,0 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"A.P.",94,615.0,615.0,1,0,438,214,67,144,0,11,2 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"A.P.",100,616.0,616.0,1,0,409,201,40,154,0,14,0 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"A.P.",100,617.0,618.0,2,0,1054,511,127,398,0,17,1 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"M.P.",100,501.0,502.0,2,224,101,49,14,36,0,1,1 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"O.P.",95,24.0,24.0,1,247,134,69,24,41,0,0,-0 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"O.P.",100,25.0,71.0,46,18709,8982,4511,1701,2523,0,222,25 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"SVR1",20,.,.,".",23,14,6,1,7,0,0,0 35,35059,"Mississauga East--Cooksville",35047,"Mississauga - Brampton South",121792,147096,26519,"SVR2",20,.,.,".",0,48,21,3,23,0,0,0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"A.P.",66,611.0,611.0,1,0,400,140,51,196,0,11,2 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"A.P.",82,609.0,609.0,1,0,342,103,49,180,0,7,3 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"A.P.",100,600.0,613.0,9,0,3816,1572,388,1778,0,59,19 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"M.P.",50,502.0,502.0,1,82,54,25,11,18,0,1,0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"M.P.",100,500.0,501.0,2,197,94,38,13,41,0,2,0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",23,132.0,132.0,1,74,35,11,7,17,0,0,0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",26,92.0,92.0,1,189,77,24,24,27,0,2,1 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",48,119.0,119.0,1,239,96,30,19,46,0,1,0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",63,138.0,138.0,1,331,181,59,30,88,0,5,-0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",83,139.0,139.0,1,426,167,83,21,59,0,2,2 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",100,121.0,121.0,1,445,221,99,34,82,0,5,1 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"O.P.",100,1.0,446.0,152,56579,27092,11320,5103,9930,0,589,150 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"SVR1",69,.,.,".",95,46,20,3,22,0,1,0 35,35059,"Mississauga East--Cooksville",35048,"Mississauga East - Cooksville",121792,139039,95273,"SVR2",69,.,.,".",0,259,95,29,130,0,4,1 35,35059,"Mississauga East--Cooksville",35050,"Mississauga South",121792,112583,0,"A.P.",5.9,603.0,603.0,1,0,35,15,2,16,0,1,0 35,35059,"Mississauga East--Cooksville",35050,"Mississauga South",121792,112583,0,"O.P.",100,54.0,54.0,1,427,147,49,52,40,0,4,2 35,35059,"Mississauga East--Cooksville",35050,"Mississauga South",121792,112583,0,"SVR1",0.5,.,.,".",1,1,0,0,0,0,0,0 35,35059,"Mississauga East--Cooksville",35050,"Mississauga South",121792,112583,0,"SVR2",0.5,.,.,".",0,7,3,0,3,0,0,0 35,35060,"Mississauga--Erin Mills",35030,"Halton",117199,203437,25,"A.P.",0.4,608.0,608.0,1,0,2,1,0,1,0,0,0 35,35060,"Mississauga--Erin Mills",35030,"Halton",117199,203437,25,"O.P.",5.0,90.0,90.0,1,36,18,9,3,6,0,0,0 35,35060,"Mississauga--Erin Mills",35030,"Halton",117199,203437,25,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35060,"Mississauga--Erin Mills",35030,"Halton",117199,203437,25,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35060,"Mississauga--Erin Mills",35049,"Mississauga - Erindale",117199,160663,117174,"A.P.",100,604.0,615.0,12,0,9356,4041,845,4225,0,232,13 35,35060,"Mississauga--Erin Mills",35049,"Mississauga - Erindale",117199,160663,117174,"M.P.",50,503.0,503.0,1,167,116,54,24,32,0,6,1 35,35060,"Mississauga--Erin Mills",35049,"Mississauga - Erindale",117199,160663,117174,"M.P.",100,500.0,502.0,3,360,264,139,35,82,0,4,4 35,35060,"Mississauga--Erin Mills",35049,"Mississauga - Erindale",117199,160663,117174,"O.P.",100,72.0,400.0,177,75512,36233,17179,6574,11407,0,1025,48 35,35060,"Mississauga--Erin Mills",35049,"Mississauga - Erindale",117199,160663,117174,"SVR1",72,.,.,".",129,69,30,4,33,0,1,0 35,35060,"Mississauga--Erin Mills",35049,"Mississauga - Erindale",117199,160663,117174,"SVR2",72,.,.,".",0,410,193,19,192,0,6,0 35,35061,"Mississauga--Lakeshore",35049,"Mississauga - Erindale",118893,160663,6310,"A.P.",15,603.0,603.0,1,0,124,58,14,48,0,4,0 35,35061,"Mississauga--Lakeshore",35049,"Mississauga - Erindale",118893,160663,6310,"A.P.",44,602.0,602.0,1,0,305,116,27,158,0,4,1 35,35061,"Mississauga--Lakeshore",35049,"Mississauga - Erindale",118893,160663,6310,"M.P.",50,503.0,503.0,1,167,116,54,24,32,0,6,1 35,35061,"Mississauga--Lakeshore",35049,"Mississauga - Erindale",118893,160663,6310,"O.P.",100,37.0,71.0,10,3871,1897,1107,251,485,0,52,2 35,35061,"Mississauga--Lakeshore",35049,"Mississauga - Erindale",118893,160663,6310,"SVR1",3.8,.,.,".",7,4,2,0,2,0,0,0 35,35061,"Mississauga--Lakeshore",35049,"Mississauga - Erindale",118893,160663,6310,"SVR2",3.8,.,.,".",0,22,10,1,10,0,0,0 35,35061,"Mississauga--Lakeshore",35050,"Mississauga South",118893,112583,112583,"A.P.",94,603.0,603.0,1,0,556,248,40,253,0,15,1 35,35061,"Mississauga--Lakeshore",35050,"Mississauga South",118893,112583,112583,"A.P.",100,600.0,609.0,9,0,7435,3305,537,3383,0,192,18 35,35061,"Mississauga--Lakeshore",35050,"Mississauga South",118893,112583,112583,"M.P.",100,500.0,503.0,4,965,360,147,46,145,0,10,12 35,35061,"Mississauga--Lakeshore",35050,"Mississauga South",118893,112583,112583,"O.P.",100,1.0,412.0,204,76997,39537,18619,5606,13875,0,1279,158 35,35061,"Mississauga--Lakeshore",35050,"Mississauga South",118893,112583,112583,"SVR1",99,.,.,".",161,96,46,5,43,0,3,0 35,35061,"Mississauga--Lakeshore",35050,"Mississauga South",118893,112583,112583,"SVR2",99,.,.,".",0,1290,559,66,635,0,28,3 35,35062,"Mississauga--Malton",35006,"Bramalea - Gore - Malton",118046,192020,39103,"A.P.",100,614.0,616.0,3,0,1801,449,586,726,0,31,9 35,35062,"Mississauga--Malton",35006,"Bramalea - Gore - Malton",118046,192020,39103,"O.P.",100,201.0,247.0,47,20997,8502,2280,3188,2765,0,207,62 35,35062,"Mississauga--Malton",35006,"Bramalea - Gore - Malton",118046,192020,39103,"SVR1",19,.,.,".",30,16,5,2,9,0,0,0 35,35062,"Mississauga--Malton",35006,"Bramalea - Gore - Malton",118046,192020,39103,"SVR2",19,.,.,".",0,91,39,16,34,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",0.4,601.0,601.0,1,0,4,1,0,2,0,0,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",0.4,616.0,616.0,1,0,2,1,0,1,0,0,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",8.5,607.0,607.0,1,0,41,16,5,18,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",14,603.0,603.0,1,0,90,43,7,39,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",42,605.0,605.0,1,0,335,143,45,140,0,7,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",58,608.0,608.0,1,0,449,185,52,206,0,6,-0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"A.P.",100,602.0,612.0,6,0,2810,1281,269,1206,0,46,8 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",4.5,24.0,24.0,1,12,6,3,1,2,0,0,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",5.9,23.0,23.0,1,23,9,4,2,3,0,0,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",11,176.0,176.0,1,32,15,4,3,7,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",21,174.0,174.0,1,85,31,12,5,14,0,0,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",34,170.0,170.0,1,94,42,19,9,13,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",36,159.0,159.0,1,200,83,39,13,29,0,2,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",49,155.0,155.0,1,191,77,34,9,33,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",82,142.0,142.0,1,442,172,51,53,67,0,1,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"O.P.",100,72.0,413.0,78,34319,15030,6595,3054,5091,0,258,32 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"SVR1",37,.,.,".",43,27,11,3,12,0,0,0 35,35062,"Mississauga--Malton",35047,"Mississauga - Brampton South",118046,147096,57201,"SVR2",37,.,.,".",0,89,39,6,43,0,1,0 35,35062,"Mississauga--Malton",35051,"Mississauga - Streetsville",118046,132637,21742,"A.P.",50,609.0,609.0,1,0,381,141,28,204,0,9,0 35,35062,"Mississauga--Malton",35051,"Mississauga - Streetsville",118046,132637,21742,"A.P.",77,610.0,610.0,1,0,455,165,46,232,0,12,0 35,35062,"Mississauga--Malton",35051,"Mississauga - Streetsville",118046,132637,21742,"A.P.",100,608.0,608.0,1,0,441,151,40,242,0,8,0 35,35062,"Mississauga--Malton",35051,"Mississauga - Streetsville",118046,132637,21742,"O.P.",100,126.0,216.0,31,13297,5577,1981,1137,2311,0,148,0 35,35062,"Mississauga--Malton",35051,"Mississauga - Streetsville",118046,132637,21742,"SVR1",15,.,.,".",20,9,4,0,4,0,1,0 35,35062,"Mississauga--Malton",35051,"Mississauga - Streetsville",118046,132637,21742,"SVR2",15,.,.,".",0,49,19,5,25,0,1,0 35,35063,"Mississauga--Streetsville",35030,"Halton",118757,203437,15,"A.P.",0.5,607.0,607.0,1,0,2,1,0,1,0,0,0 35,35063,"Mississauga--Streetsville",35030,"Halton",118757,203437,15,"O.P.",5.9,84.0,84.0,1,18,7,4,2,1,0,0,0 35,35063,"Mississauga--Streetsville",35030,"Halton",118757,203437,15,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35063,"Mississauga--Streetsville",35030,"Halton",118757,203437,15,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35063,"Mississauga--Streetsville",35047,"Mississauga - Brampton South",118757,147096,17628,"A.P.",86,603.0,603.0,1,0,541,260,43,231,0,5,2 35,35063,"Mississauga--Streetsville",35047,"Mississauga - Brampton South",118757,147096,17628,"A.P.",100,604.0,604.0,1,0,624,312,45,256,0,10,1 35,35063,"Mississauga--Streetsville",35047,"Mississauga - Brampton South",118757,147096,17628,"M.P.",33,500.0,500.0,1,106,39,17,7,13,0,1,0 35,35063,"Mississauga--Streetsville",35047,"Mississauga - Brampton South",118757,147096,17628,"O.P.",100,112.0,136.0,24,10595,5018,2413,942,1539,0,117,7 35,35063,"Mississauga--Streetsville",35047,"Mississauga - Brampton South",118757,147096,17628,"SVR1",11,.,.,".",13,8,3,1,4,0,0,0 35,35063,"Mississauga--Streetsville",35047,"Mississauga - Brampton South",118757,147096,17628,"SVR2",11,.,.,".",0,27,12,2,13,0,0,-0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"A.P.",5.3,611.0,611.0,1,0,22,7,2,12,0,0,0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"A.P.",50,609.0,609.0,1,0,381,141,28,204,0,9,0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"A.P.",100,600.0,613.0,10,0,6047,2697,539,2563,0,248,0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"O.P.",69,176.0,176.0,1,181,97,46,20,30,0,1,0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"O.P.",100,1.0,408.0,178,67670,33124,15294,5377,11163,0,1290,0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"SVR1",78,.,.,".",103,48,22,2,21,0,3,0 35,35063,"Mississauga--Streetsville",35051,"Mississauga - Streetsville",118757,132637,101114,"SVR2",78,.,.,".",0,252,96,23,128,0,5,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"A.P.",100,600.0,600.0,1,0,604,388,68,123,0,25,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"A.P.",100,601.0,620.0,13,0,9922,5832,999,2792,0,299,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"M.P.",33,502.0,503.0,2,100,84,51,7,22,0,4,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"M.P.",100,501.0,501.0,1,141,109,61,18,25,0,5,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"O.P.",100,11.0,11.0,1,527,249,115,73,48,0,14,-0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"O.P.",100,1.0,400.0,171,72144,39403,19228,7896,10599,0,1680,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"SVR1",65,.,.,".",544,275,166,17,74,0,18,0 35,35064,"Nepean",35052,"Nepean - Carleton",104775,159032,104775,"SVR2",65,.,.,".",0,482,246,39,180,0,18,0 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"A.P.",36,612.0,612.0,1,0,173,93,17,50,0,8,4 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"A.P.",61,611.0,611.0,1,0,373,200,39,112,0,17,4 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"A.P.",100,600.0,610.0,11,0,5537,3136,475,1621,0,237,68 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"M.P.",100,500.0,504.0,5,906,539,305,83,104,0,11,36 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"O.P.",100,1.0,192.0,184,74172,39802,21342,6750,9107,0,1755,848 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"SVR1",81,.,.,".",168,83,36,10,27,0,4,6 35,35065,"Newmarket--Aurora",35053,"Newmarket - Aurora",109457,133181,108449,"SVR2",81,.,.,".",0,457,231,48,144,0,26,8 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"A.P.",0.8,608.0,608.0,1,0,5,3,0,1,0,0,0 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"A.P.",9.0,609.0,609.0,1,0,22,16,2,3,0,1,0 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"O.P.",0.8,103.0,103.0,1,2,1,1,0,0,0,0,0 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"O.P.",9.3,107.0,107.0,1,44,23,15,4,4,0,1,1 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"O.P.",71,95.0,95.0,1,623,262,178,39,34,0,11,1 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"SVR1",0.7,.,.,".",1,1,0,0,0,0,0,0 35,35065,"Newmarket--Aurora",35104,"York - Simcoe",109457,128703,1008,"SVR2",0.7,.,.,".",0,3,2,0,0,0,0,0 35,35066,"Niagara Centre",35076,"St. Catharines",105860,112015,0,"A.P.",2.1,610.0,610.0,1,0,10,6,1,2,0,0,0 35,35066,"Niagara Centre",35076,"St. Catharines",105860,112015,0,"O.P.",29,22.0,22.0,1,129,63,36,15,8,0,2,1 35,35066,"Niagara Centre",35076,"St. Catharines",105860,112015,0,"SVR1",0.2,.,.,".",1,0,0,0,0,0,0,0 35,35066,"Niagara Centre",35076,"St. Catharines",105860,112015,0,"SVR2",0.2,.,.,".",0,1,0,0,0,0,0,0 35,35066,"Niagara Centre",35097,"Welland",105860,112727,105860,"A.P.",93,600.0,600.0,1,0,440,236,139,51,0,11,2 35,35066,"Niagara Centre",35097,"Welland",105860,112727,105860,"A.P.",100,601.0,618.0,17,0,6750,2715,2676,1178,0,145,36 35,35066,"Niagara Centre",35097,"Welland",105860,112727,105860,"M.P.",100,500.0,507.0,7,1035,621,204,193,186,0,18,20 35,35066,"Niagara Centre",35097,"Welland",105860,112727,105860,"O.P.",100,2.0,225.0,224,78697,39827,15428,17653,5365,0,1004,377 35,35066,"Niagara Centre",35097,"Welland",105860,112727,105860,"SVR1",94,.,.,".",247,128,58,21,43,0,3,3 35,35066,"Niagara Centre",35097,"Welland",105860,112727,105860,"SVR2",94,.,.,".",0,708,286,259,137,0,21,6 35,35067,"Niagara Falls",35054,"Niagara Falls",128357,128357,128357,"A.P.",100,600.0,616.0,17,0,8106,4582,1275,1945,0,271,33 35,35067,"Niagara Falls",35054,"Niagara Falls",128357,128357,128357,"M.P.",100,500.0,510.0,11,1589,646,366,104,144,0,21,11 35,35067,"Niagara Falls",35054,"Niagara Falls",128357,128357,128357,"O.P.",100,1.0,403.0,241,94324,44648,23504,11236,7924,0,1773,211 35,35067,"Niagara Falls",35054,"Niagara Falls",128357,128357,128357,"SVR1",100,.,.,".",263,144,69,21,47,0,7,0 35,35067,"Niagara Falls",35054,"Niagara Falls",128357,128357,128357,"SVR2",100,.,.,".",0,436,227,45,146,0,14,4 35,35068,"Niagara West",35055,"Niagara West - Glanbrook",86533,122134,78247,"A.P.",100,606.0,617.0,12,0,6127,3746,809,1182,0,278,112 35,35068,"Niagara West",35055,"Niagara West - Glanbrook",86533,122134,78247,"M.P.",100,500.0,501.0,2,166,96,52,18,20,0,5,1 35,35068,"Niagara West",35055,"Niagara West - Glanbrook",86533,122134,78247,"O.P.",100,58.0,405.0,155,58070,32931,19528,6465,4530,0,1540,868 35,35068,"Niagara West",35055,"Niagara West - Glanbrook",86533,122134,78247,"SVR1",65,.,.,".",114,56,35,3,11,0,6,1 35,35068,"Niagara West",35055,"Niagara West - Glanbrook",86533,122134,78247,"SVR2",65,.,.,".",0,390,232,33,92,0,21,12 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"A.P.",1.9,610.0,610.0,1,0,9,5,1,2,0,0,0 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"A.P.",22,600.0,600.0,1,0,118,69,11,30,0,7,1 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"O.P.",3.3,20.0,20.0,1,12,5,2,1,1,0,0,0 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"O.P.",19,8.0,8.0,1,92,52,36,5,9,0,1,0 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"O.P.",23,22.0,22.0,1,102,50,29,12,6,0,2,1 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"O.P.",100,1.0,9.0,2,733,430,294,65,47,0,15,9 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"SVR1",1.1,.,.,".",4,2,1,0,1,0,0,0 35,35068,"Niagara West",35076,"St. Catharines",86533,112015,1419,"SVR2",1.1,.,.,".",0,6,3,1,2,0,0,0 35,35068,"Niagara West",35097,"Welland",86533,112727,6867,"A.P.",6.7,600.0,600.0,1,0,31,17,10,4,0,1,0 35,35068,"Niagara West",35097,"Welland",86533,112727,6867,"A.P.",100,615.0,615.0,1,0,510,287,134,74,0,6,9 35,35068,"Niagara West",35097,"Welland",86533,112727,6867,"O.P.",100,1.0,183.0,15,5013,2856,1642,815,226,0,87,86 35,35068,"Niagara West",35097,"Welland",86533,112727,6867,"SVR1",5.9,.,.,".",15,8,4,1,3,0,0,0 35,35068,"Niagara West",35097,"Welland",86533,112727,6867,"SVR2",5.9,.,.,".",0,45,18,16,9,0,1,0 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"A.P.",0.7,618.0,618.0,1,0,0,0,0,0,0,0,0 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"A.P.",24,600.0,600.0,1,0,15,5,9,2,0,0,0 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"A.P.",100,601.0,617.0,17,0,7419,2265,3604,1344,0,193,13 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"O.P.",1.4,181.0,181.0,1,7,4,1,2,0,0,0,0 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"O.P.",24,1.0,1.0,1,64,20,8,9,2,0,1,-0 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"O.P.",100,3.0,191.1,201,70957,35871,9828,20349,4637,0,1012,45 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"SVR1",99,.,.,".",259,105,55,22,24,0,4,0 35,35069,"Nickel Belt",35056,"Nickel Belt",90962,92391,90962,"SVR2",99,.,.,".",0,714,211,281,200,0,21,1 35,35070,"Nipissing--Timiskaming",35056,"Nickel Belt",90996,92391,1059,"A.P.",99,618.0,618.0,1,0,39,11,14,14,0,0,0 35,35070,"Nipissing--Timiskaming",35056,"Nickel Belt",90996,92391,1059,"O.P.",99,181.0,181.0,1,493,255,68,139,34,0,15,0 35,35070,"Nipissing--Timiskaming",35056,"Nickel Belt",90996,92391,1059,"O.P.",100,182.0,182.0,1,295,123,9,76,35,0,3,0 35,35070,"Nipissing--Timiskaming",35056,"Nickel Belt",90996,92391,1059,"SVR1",1.1,.,.,".",3,1,1,0,0,0,0,0 35,35070,"Nipissing--Timiskaming",35056,"Nickel Belt",90996,92391,1059,"SVR2",1.1,.,.,".",0,8,2,3,2,0,0,0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"A.P.",88,600.0,600.0,1,0,431,172,71,175,0,12,-0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"A.P.",100,601.0,617.0,17,0,5830,2331,801,2388,0,310,0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"M.P.",100,500.0,507.0,8,1865,994,315,132,513,0,34,0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"O.P.",3.9,1.0,1.0,1,15,9,4,2,2,0,0,0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"O.P.",100,2.0,195.0,196,67574,32945,11846,7510,11527,0,2062,0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"SVR1",99,.,.,".",596,258,161,22,62,0,13,0 35,35070,"Nipissing--Timiskaming",35057,"Nipissing - Timiskaming",90996,90995,89937,"SVR2",99,.,.,".",0,1319,448,149,651,0,70,-0 35,35071,"Northumberland--Peterborough South",35014,"Durham",107840,126833,14651,"A.P.",71,612.0,612.0,1,0,301,172,43,73,0,8,6 35,35071,"Northumberland--Peterborough South",35014,"Durham",107840,126833,14651,"A.P.",100,613.0,613.0,1,0,652,382,93,140,0,29,8 35,35071,"Northumberland--Peterborough South",35014,"Durham",107840,126833,14651,"M.P.",33,500.0,500.0,1,42,21,6,7,6,0,1,1 35,35071,"Northumberland--Peterborough South",35014,"Durham",107840,126833,14651,"O.P.",100,166.0,188.0,26,10892,5995,3162,1394,984,0,342,113 35,35071,"Northumberland--Peterborough South",35014,"Durham",107840,126833,14651,"SVR1",12,.,.,".",22,13,7,2,3,0,1,0 35,35071,"Northumberland--Peterborough South",35014,"Durham",107840,126833,14651,"SVR2",12,.,.,".",0,52,29,5,14,0,2,1 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"A.P.",14,609.0,609.0,1,0,65,39,7,15,0,3,0 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"A.P.",100,600.0,615.0,12,0,7232,3959,990,1955,0,328,0 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"M.P.",100,500.0,508.0,8,828,521,277,101,126,0,17,0 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"O.P.",5.4,139.0,139.0,1,24,15,9,4,1,0,0,0 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"O.P.",100,1.0,138.0,159,62983,33643,17540,7365,7137,0,1601,0 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"SVR1",67,.,.,".",808,331,244,24,50,0,13,0 35,35071,"Northumberland--Peterborough South",35058,"Northumberland - Quinte West",107840,125261,82126,"SVR2",67,.,.,".",0,484,242,49,165,0,28,0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"A.P.",0.0,609.0,609.0,1,0,0,0,0,0,0,0,0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"A.P.",0.1,608.0,608.0,1,0,1,0,0,0,0,0,0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"A.P.",83,603.0,603.0,1,0,195,112,30,44,0,8,-0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"A.P.",90,615.0,615.0,1,0,455,243,95,101,0,14,3 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"A.P.",97,616.0,616.0,1,0,276,176,43,50,0,7,-0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"M.P.",67,500.0,500.0,1,84,53,31,7,13,0,1,2 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"O.P.",0.1,173.0,173.0,1,1,0,0,0,0,0,0,0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"O.P.",1.4,123.0,123.0,1,6,3,2,1,1,0,0,0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"O.P.",74,214.0,214.0,1,299,177,118,34,12,0,11,2 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"O.P.",100,194.0,215.0,22,8211,4438,2568,1020,679,0,153,18 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"SVR1",9.4,.,.,".",28,16,7,2,6,0,1,0 35,35071,"Northumberland--Peterborough South",35071,"Peterborough",107840,118938,11063,"SVR2",9.4,.,.,".",0,109,51,15,36,0,7,0 35,35072,"Oakville",35060,"Oakville",119649,119649,119649,"A.P.",100,600.0,611.0,12,0,8537,4372,750,3173,0,242,0 35,35072,"Oakville",35060,"Oakville",119649,119649,119649,"M.P.",100,500.0,502.0,3,570,432,233,71,120,0,8,0 35,35072,"Oakville",35060,"Oakville",119649,119649,119649,"O.P.",100,1.0,406.0,215,85141,48375,25014,7240,14259,0,1862,0 35,35072,"Oakville",35060,"Oakville",119649,119649,119649,"SVR1",100,.,.,".",209,107,69,5,31,0,2,0 35,35072,"Oakville",35060,"Oakville",119649,119649,119649,"SVR2",100,.,.,".",0,764,380,51,307,0,26,0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"A.P.",44,601.0,601.0,1,0,256,154,21,71,0,9,0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"A.P.",83,618.0,618.0,1,0,465,279,42,137,0,7,0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"A.P.",97,608.0,608.0,1,0,558,258,58,224,0,15,4 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"A.P.",100,615.0,615.0,1,0,705,416,82,191,0,14,2 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"A.P.",100,609.0,621.0,10,0,5660,3179,506,1828,0,134,13 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"M.P.",50,504.0,504.0,1,40,15,9,3,3,0,0,0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"M.P.",100,501.0,503.0,3,593,348,186,47,105,0,4,6 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"O.P.",55,90.0,90.0,1,395,199,100,30,65,0,3,0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"O.P.",99,194.0,194.0,1,750,345,205,48,86,0,6,-0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"O.P.",100,91.0,400.0,161,72908,37881,20387,6397,9753,0,1250,94 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"SVR1",57,.,.,".",105,52,31,1,20,0,1,0 35,35073,"Oakville North--Burlington",35030,"Halton",114378,203437,114378,"SVR2",57,.,.,".",0,357,165,29,149,0,10,3 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"A.P.",75,610.0,610.0,1,0,644,374,182,71,0,14,3 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"A.P.",76,609.0,609.0,1,0,385,222,122,25,0,11,5 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"A.P.",94,611.0,611.0,1,0,614,390,153,51,0,18,3 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"A.P.",100,600.0,608.0,9,0,3806,2087,1274,325,0,96,24 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"M.P.",100,500.0,500.0,1,100,70,44,20,3,0,3,0 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"O.P.",100,14.0,404.0,200,76238,36697,18042,14932,2223,0,1272,228 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"SVR1",85,.,.,".",242,147,64,18,52,0,8,5 35,35074,"Oshawa",35061,"Oshawa",125771,125322,105539,"SVR2",85,.,.,".",0,577,321,174,65,0,15,2 35,35074,"Oshawa",35099,"Whitby - Oshawa",125771,146307,20232,"A.P.",43,612.0,612.0,1,0,176,117,30,21,0,8,1 35,35074,"Oshawa",35099,"Whitby - Oshawa",125771,146307,20232,"A.P.",100,613.0,614.0,2,0,986,556,219,176,0,35,0 35,35074,"Oshawa",35099,"Whitby - Oshawa",125771,146307,20232,"O.P.",100,201.0,240.0,40,15401,8239,4531,2333,977,0,375,23 35,35074,"Oshawa",35099,"Whitby - Oshawa",125771,146307,20232,"SVR1",15,.,.,".",35,19,10,1,7,0,1,-0 35,35074,"Oshawa",35099,"Whitby - Oshawa",125771,146307,20232,"SVR2",15,.,.,".",0,129,81,16,26,0,7,0 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"A.P.",95,611.0,611.0,1,0,607,264,201,113,0,24,6 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"A.P.",99,610.0,610.0,1,0,418,138,184,75,0,16,5 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"A.P.",100,600.0,617.0,16,0,11097,2347,5763,2403,0,507,77 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"M.P.",100,500.0,507.0,8,1022,763,279,234,201,0,25,24 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",73,190.0,190.0,1,193,107,36,40,22,0,4,6 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",83,195.0,195.0,1,226,126,65,30,26,0,5,0 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",85,185.0,185.0,1,349,195,67,85,32,0,6,5 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",87,183.0,183.0,1,224,118,40,57,17,0,3,2 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",88,192.0,192.0,1,305,165,67,60,36,0,1,1 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",99,196.0,196.0,1,347,184,61,68,47,0,4,4 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"O.P.",100,1.0,428.0,234,86126,49009,10213,26160,9528,0,2559,549 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"SVR1",100,.,.,".",958,576,160,202,165,0,47,3 35,35075,"Ottawa Centre",35062,"Ottawa Centre",113619,114043,113619,"SVR2",100,.,.,".",0,1320,255,654,350,0,57,4 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"A.P.",4.9,601.0,601.0,1,0,20,13,2,4,0,1,0 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"A.P.",60,600.0,600.0,1,0,495,283,43,158,0,10,1 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"O.P.",10,8.0,8.0,1,31,19,10,3,5,0,1,0 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"O.P.",39,18.0,18.0,1,150,89,52,15,18,0,3,0 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"O.P.",77,1.0,1.0,1,599,321,145,56,110,0,10,1 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"O.P.",96,1.4,1.4,1,752,408,187,67,145,0,9,0 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"O.P.",100,1.1,9.0,6,2530,1407,648,268,438,0,48,5 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"SVR1",4.8,.,.,".",26,12,8,1,3,0,1,0 35,35076,"Orlans",35025,"Glengarry - Prescott - Russell",119247,112212,5972,"SVR2",4.8,.,.,".",0,55,26,4,23,0,2,0 35,35076,"Orlans",35052,"Nepean - Carleton",119247,159032,1300,"A.P.",27,619.0,619.0,1,0,172,98,21,50,0,3,0 35,35076,"Orlans",35052,"Nepean - Carleton",119247,159032,1300,"M.P.",33,502.0,502.0,1,51,41,23,6,10,0,2,-0 35,35076,"Orlans",35052,"Nepean - Carleton",119247,159032,1300,"O.P.",99,157.0,157.0,1,245,127,70,27,22,0,8,0 35,35076,"Orlans",35052,"Nepean - Carleton",119247,159032,1300,"O.P.",100,158.0,159.0,2,777,468,290,80,76,0,22,0 35,35076,"Orlans",35052,"Nepean - Carleton",119247,159032,1300,"SVR1",1.0,.,.,".",8,4,2,0,1,0,0,0 35,35076,"Orlans",35052,"Nepean - Carleton",119247,159032,1300,"SVR2",1.0,.,.,".",0,7,4,1,3,0,0,0 35,35076,"Orlans",35063,"Ottawa - Orlans",119247,119287,111975,"A.P.",100,601.0,624.0,22,0,12803,6113,1130,5260,0,300,0 35,35076,"Orlans",35063,"Ottawa - Orlans",119247,119287,111975,"M.P.",67,501.0,501.0,1,94,73,31,7,35,0,1,0 35,35076,"Orlans",35063,"Ottawa - Orlans",119247,119287,111975,"M.P.",100,500.0,503.0,3,560,423,198,30,187,0,8,0 35,35076,"Orlans",35063,"Ottawa - Orlans",119247,119287,111975,"O.P.",100,15.0,218.0,204,82328,45553,19896,7091,17208,0,1358,0 35,35076,"Orlans",35063,"Ottawa - Orlans",119247,119287,111975,"SVR1",94,.,.,".",1112,579,404,23,128,0,23,0 35,35076,"Orlans",35063,"Ottawa - Orlans",119247,119287,111975,"SVR2",94,.,.,".",0,930,416,70,422,0,22,0 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"A.P.",99,608.0,608.0,1,0,696,294,89,289,0,20,4 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"A.P.",100,600.0,613.0,13,0,9729,3601,1090,4617,0,286,135 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"M.P.",100,500.0,503.0,4,719,501,211,48,197,0,9,36 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"O.P.",92,124.0,124.0,1,327,195,78,28,84,0,3,2 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"O.P.",100,1.0,408.0,219,85396,46486,14946,9329,20103,0,1419,689 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"SVR1",100,.,.,".",930,469,195,44,188,0,23,19 35,35077,"Ottawa South",35064,"Ottawa South",121894,121921,121894,"SVR2",100,.,.,".",0,895,300,82,476,0,27,10 35,35078,"Ottawa--Vanier",35063,"Ottawa - Orlans",110999,119287,7312,"A.P.",100,600.0,616.0,2,0,764,366,93,290,0,15,0 35,35078,"Ottawa--Vanier",35063,"Ottawa - Orlans",110999,119287,7312,"M.P.",33,501.0,501.0,1,47,37,15,3,18,0,0,0 35,35078,"Ottawa--Vanier",35063,"Ottawa - Orlans",110999,119287,7312,"O.P.",100,1.0,401.0,15,5586,2894,1090,632,1063,0,109,0 35,35078,"Ottawa--Vanier",35063,"Ottawa - Orlans",110999,119287,7312,"SVR1",6.4,.,.,".",75,39,27,2,9,0,2,0 35,35078,"Ottawa--Vanier",35063,"Ottawa - Orlans",110999,119287,7312,"SVR2",6.4,.,.,".",0,63,28,5,29,0,1,0 35,35078,"Ottawa--Vanier",35065,"Ottawa - Vanier",110999,103687,103687,"A.P.",100,600.0,615.0,16,0,8574,2463,1896,3680,0,518,17 35,35078,"Ottawa--Vanier",35065,"Ottawa - Vanier",110999,103687,103687,"M.P.",100,500.0,509.0,10,2072,1208,327,201,648,0,27,5 35,35078,"Ottawa--Vanier",35065,"Ottawa - Vanier",110999,103687,103687,"O.P.",100,1.0,431.0,227,76171,40652,10859,12959,14705,0,2037,92 35,35078,"Ottawa--Vanier",35065,"Ottawa - Vanier",110999,103687,103687,"SVR1",100,.,.,".",1066,628,187,72,314,0,51,4 35,35078,"Ottawa--Vanier",35065,"Ottawa - Vanier",110999,103687,103687,"SVR2",100,.,.,".",0,1360,348,263,662,0,83,4 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"A.P.",1.2,610.0,610.0,1,0,5,2,2,1,0,0,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"A.P.",5.1,611.0,611.0,1,0,33,14,11,6,0,1,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"O.P.",0.8,196.0,196.0,1,3,2,1,1,0,0,0,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"O.P.",12,192.0,192.0,1,41,22,9,8,5,0,0,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"O.P.",13,183.0,183.0,1,33,17,6,8,2,0,0,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"O.P.",15,185.0,185.0,1,60,33,11,14,6,0,1,1 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"O.P.",17,195.0,195.0,1,47,26,14,6,5,0,1,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"O.P.",27,190.0,190.0,1,71,39,13,14,8,0,1,2 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"SVR1",0.3,.,.,".",3,2,0,1,0,0,0,0 35,35079,"Ottawa West--Nepean",35062,"Ottawa Centre",111881,114043,424,"SVR2",0.3,.,.,".",0,4,1,2,1,0,0,0 35,35079,"Ottawa West--Nepean",35066,"Ottawa West - Nepean",111881,111457,111457,"A.P.",100,600.0,613.0,14,0,9509,4494,1137,3561,0,317,0 35,35079,"Ottawa West--Nepean",35066,"Ottawa West - Nepean",111881,111457,111457,"M.P.",100,500.0,505.0,6,1059,658,371,74,187,0,26,0 35,35079,"Ottawa West--Nepean",35066,"Ottawa West - Nepean",111881,111457,111457,"O.P.",100,1.0,438.0,235,81285,45160,19860,9797,13614,0,1889,0 35,35079,"Ottawa West--Nepean",35066,"Ottawa West - Nepean",111881,111457,111457,"SVR1",100,.,.,".",530,274,122,22,121,0,9,0 35,35079,"Ottawa West--Nepean",35066,"Ottawa West - Nepean",111881,111457,111457,"SVR2",100,.,.,".",0,822,379,98,307,0,38,0 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"A.P.",46,600.0,600.0,1,0,192,114,23,46,0,8,1 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"O.P.",21,12.0,12.0,1,79,43,26,9,7,0,1,0 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"O.P.",21,5.0,5.0,1,107,62,37,13,10,0,2,1 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"O.P.",51,6.0,6.0,1,155,81,50,14,13,0,4,0 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"O.P.",58,7.0,7.0,1,233,120,65,22,30,0,2,1 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"O.P.",100,1.0,4.0,4,1437,797,509,171,75,0,35,7 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"SVR1",2.1,.,.,".",5,3,2,0,1,0,0,0 35,35080,"Oxford",35009,"Brant",108656,137102,2937,"SVR2",2.1,.,.,".",0,14,7,2,4,0,0,0 35,35080,"Oxford",35067,"Oxford",108656,105719,105719,"A.P.",100,600.0,612.0,13,0,5761,3584,1160,701,0,257,59 35,35080,"Oxford",35067,"Oxford",108656,105719,105719,"M.P.",100,500.0,504.0,5,807,460,305,53,71,0,16,15 35,35080,"Oxford",35067,"Oxford",108656,105719,105719,"O.P.",100,1.0,406.0,221,76037,40220,23444,10774,3575,0,1741,686 35,35080,"Oxford",35067,"Oxford",108656,105719,105719,"SVR1",100,.,.,".",191,101,48,11,36,0,5,1 35,35080,"Oxford",35067,"Oxford",108656,105719,105719,"SVR2",100,.,.,".",0,950,592,166,138,0,39,15 35,35081,"Parkdale--High Park",35068,"Parkdale - High Park",105103,105103,105103,"A.P.",100,600.0,610.0,11,0,7426,983,3306,2817,0,263,57 35,35081,"Parkdale--High Park",35068,"Parkdale - High Park",105103,105103,105103,"M.P.",100,500.0,501.0,2,296,125,30,37,43,0,5,10 35,35081,"Parkdale--High Park",35068,"Parkdale - High Park",105103,105103,105103,"O.P.",100,1.0,429.0,184,73971,42554,6799,20398,13509,0,1369,479 35,35081,"Parkdale--High Park",35068,"Parkdale - High Park",105103,105103,105103,"SVR1",100,.,.,".",196,108,19,24,56,0,7,2 35,35081,"Parkdale--High Park",35068,"Parkdale - High Park",105103,105103,105103,"SVR2",100,.,.,".",0,732,93,281,332,0,22,4 35,35082,"Parry Sound--Muskoka",35069,"Parry Sound - Muskoka",91263,91263,91263,"A.P.",100,600.0,616.0,17,0,8454,5002,1460,1316,0,645,31 35,35082,"Parry Sound--Muskoka",35069,"Parry Sound - Muskoka",91263,91263,91263,"M.P.",100,500.0,506.0,7,1179,496,289,89,88,0,23,7 35,35082,"Parry Sound--Muskoka",35069,"Parry Sound - Muskoka",91263,91263,91263,"O.P.",100,1.0,176.0,192,70066,36245,19856,9501,3684,0,3022,182 35,35082,"Parry Sound--Muskoka",35069,"Parry Sound - Muskoka",91263,91263,91263,"SVR1",100,.,.,".",232,146,68,19,47,0,11,1 35,35082,"Parry Sound--Muskoka",35069,"Parry Sound - Muskoka",91263,91263,91263,"SVR2",100,.,.,".",0,1068,649,148,195,0,75,1 35,35083,"Perth--Wellington",35070,"Perth - Wellington",104912,104912,104912,"A.P.",100,600.0,614.0,15,0,6577,3509,1072,1700,0,210,86 35,35083,"Perth--Wellington",35070,"Perth - Wellington",104912,104912,104912,"M.P.",100,500.0,503.0,4,538,227,125,19,69,0,9,5 35,35083,"Perth--Wellington",35070,"Perth - Wellington",104912,104912,104912,"O.P.",100,1.0,196.1,213,72685,38798,21210,8697,6319,0,1861,711 35,35083,"Perth--Wellington",35070,"Perth - Wellington",104912,104912,104912,"SVR1",100,.,.,".",168,91,45,3,37,0,5,1 35,35083,"Perth--Wellington",35070,"Perth - Wellington",104912,104912,104912,"SVR2",100,.,.,".",0,708,392,70,216,0,27,3 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"A.P.",0.5,602.0,602.0,1,0,3,2,1,0,0,0,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"A.P.",46,614.0,614.0,1,0,363,247,56,49,0,11,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"A.P.",100,605.0,605.0,1,0,324,210,48,57,0,9,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"O.P.",4.1,16.0,16.0,1,11,5,3,2,1,0,0,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"O.P.",99,49.0,49.0,1,420,270,151,75,30,0,15,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"O.P.",100,35.0,48.0,14,5263,2899,1698,677,359,0,165,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"SVR1",6.1,.,.,".",15,8,5,1,2,0,0,0 35,35084,"Peterborough--Kawartha",35029,"Haliburton - Kawartha Lakes - Brock",115269,117576,7394,"SVR2",6.1,.,.,".",0,55,35,6,11,0,3,0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"A.P.",2.9,616.0,616.0,1,0,8,5,1,2,0,0,0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"A.P.",10,615.0,615.0,1,0,51,27,11,11,0,2,0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"A.P.",17,603.0,603.0,1,0,39,23,6,9,0,2,-0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"A.P.",100,608.0,608.0,1,0,787,386,124,255,0,19,4 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"A.P.",100,609.0,609.0,1,0,572,304,125,129,0,13,1 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"A.P.",100,600.0,620.0,16,0,8580,4580,1338,2390,0,244,28 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"M.P.",33,500.0,500.0,1,42,27,15,3,6,0,1,1 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"M.P.",100,501.0,507.0,7,1355,887,417,188,252,0,15,15 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"O.P.",26,214.0,214.0,1,105,63,42,12,4,0,4,1 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"O.P.",99,123.0,123.0,1,446,243,105,74,52,0,11,0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"O.P.",100,173.0,173.0,1,474,257,110,100,41,0,6,0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"O.P.",100,1.0,409.0,212,80393,40741,19516,11332,8170,0,1510,213 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"SVR1",91,.,.,".",265,154,65,22,57,0,10,0 35,35084,"Peterborough--Kawartha",35071,"Peterborough",115269,118938,107875,"SVR2",91,.,.,".",0,1046,490,140,344,0,67,5 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"A.P.",13,613.0,613.0,1,0,54,22,4,28,0,1,0 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"A.P.",85,612.0,612.0,1,0,372,153,42,172,0,4,1 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"A.P.",100,600.0,610.0,3,0,1065,484,68,483,0,30,0 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"M.P.",50,501.0,501.0,1,58,30,12,6,11,0,2,0 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"O.P.",100,1.0,400.0,45,20005,10313,4478,1508,3994,0,317,16 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"SVR1",21,.,.,".",36,21,9,2,10,0,1,0 35,35085,"Pickering--Uxbridge",35001,"Ajax - Pickering",109344,137217,27617,"SVR2",21,.,.,".",0,247,104,16,119,0,7,1 35,35085,"Pickering--Uxbridge",35014,"Durham",109344,126833,20623,"A.P.",100,600.0,602.0,3,0,1900,1094,180,485,0,124,17 35,35085,"Pickering--Uxbridge",35014,"Durham",109344,126833,20623,"M.P.",50,501.0,501.0,1,83,38,16,7,10,0,5,1 35,35085,"Pickering--Uxbridge",35014,"Durham",109344,126833,20623,"O.P.",100,1.0,30.0,37,15193,8258,4605,1271,1728,0,595,59 35,35085,"Pickering--Uxbridge",35014,"Durham",109344,126833,20623,"SVR1",17,.,.,".",31,18,10,2,4,0,1,0 35,35085,"Pickering--Uxbridge",35014,"Durham",109344,126833,20623,"SVR2",17,.,.,".",0,73,41,8,20,0,3,1 35,35085,"Pickering--Uxbridge",35072,"Pickering - Scarborough East",109344,107910,61104,"A.P.",100,600.0,605.0,6,0,3464,1482,354,1510,0,118,0 35,35085,"Pickering--Uxbridge",35072,"Pickering - Scarborough East",109344,107910,61104,"M.P.",50,500.0,500.0,1,110,18,10,3,6,0,0,0 35,35085,"Pickering--Uxbridge",35072,"Pickering - Scarborough East",109344,107910,61104,"O.P.",100,1.0,410.0,110,44235,22928,9957,4232,7740,0,999,0 35,35085,"Pickering--Uxbridge",35072,"Pickering - Scarborough East",109344,107910,61104,"SVR1",57,.,.,".",81,41,15,3,20,0,3,0 35,35085,"Pickering--Uxbridge",35072,"Pickering - Scarborough East",109344,107910,61104,"SVR2",57,.,.,".",0,257,81,25,142,0,8,0 35,35086,"Renfrew--Nipissing--Pembroke",35074,"Renfrew - Nipissing - Pembroke",102537,102537,102537,"A.P.",100,600.0,610.0,11,0,9299,5156,903,1426,0,152,1662 35,35086,"Renfrew--Nipissing--Pembroke",35074,"Renfrew - Nipissing - Pembroke",102537,102537,102537,"M.P.",100,500.0,506.0,7,1339,655,379,54,130,0,5,87 35,35086,"Renfrew--Nipissing--Pembroke",35074,"Renfrew - Nipissing - Pembroke",102537,102537,102537,"O.P.",100,1.0,193.0,201,75278,39980,20988,5858,4779,0,691,7664 35,35086,"Renfrew--Nipissing--Pembroke",35074,"Renfrew - Nipissing - Pembroke",102537,102537,102537,"SVR1",100,.,.,".",1690,677,536,33,59,0,17,32 35,35086,"Renfrew--Nipissing--Pembroke",35074,"Renfrew - Nipissing - Pembroke",102537,102537,102537,"SVR2",100,.,.,".",0,787,403,55,151,0,12,166 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"A.P.",40,608.0,608.0,1,0,395,185,47,154,0,9,-0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"A.P.",100,601.0,609.0,8,0,5651,2391,612,2475,0,173,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"M.P.",100,500.0,501.0,2,240,110,34,14,52,0,10,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",0.0,107.0,107.0,1,0,0,0,0,0,0,0,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",1.1,99.1,99.1,1,4,2,1,0,1,0,0,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",5.1,99.0,99.0,1,15,6,3,1,2,0,0,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",13,107.1,107.1,1,33,16,5,3,7,0,0,-0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",31,102.0,102.0,1,98,37,15,8,12,0,1,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",39,109.0,109.0,1,208,91,46,14,27,0,4,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",94,97.0,97.0,1,469,190,84,41,58,0,6,-0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"O.P.",100,14.0,427.0,184,73673,34134,14820,6168,11792,0,1354,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"SVR1",82,.,.,".",95,55,18,4,30,0,3,0 35,35087,"Richmond Hill",35075,"Richmond Hill",108658,129609,104209,"SVR2",82,.,.,".",0,510,204,60,227,0,19,0 35,35087,"Richmond Hill",35089,"Thornhill",108658,140265,4449,"A.P.",38,610.0,610.0,1,0,245,161,12,71,0,1,1 35,35087,"Richmond Hill",35089,"Thornhill",108658,140265,4449,"M.P.",33,502.0,502.0,1,65,46,27,6,10,0,4,0 35,35087,"Richmond Hill",35089,"Thornhill",108658,140265,4449,"O.P.",0.4,146.0,146.0,1,2,1,1,0,0,0,0,0 35,35087,"Richmond Hill",35089,"Thornhill",108658,140265,4449,"O.P.",100,143.0,437.0,12,3197,1009,503,253,223,0,27,3 35,35087,"Richmond Hill",35089,"Thornhill",108658,140265,4449,"SVR1",3.3,.,.,".",4,3,1,0,1,0,0,0 35,35087,"Richmond Hill",35089,"Thornhill",108658,140265,4449,"SVR2",3.3,.,.,".",0,31,22,1,8,0,1,-0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"A.P.",0.0,610.0,610.0,1,0,0,0,0,0,0,0,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"A.P.",0.0,614.0,614.0,1,0,0,0,0,0,0,0,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"A.P.",7.2,604.0,604.0,1,0,44,27,3,13,0,1,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"A.P.",94,617.0,617.0,1,0,418,282,36,85,0,15,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"A.P.",97,616.0,616.0,1,0,225,172,15,34,0,4,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"A.P.",100,615.0,621.0,5,0,3386,2358,271,654,0,103,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"M.P.",100,501.0,503.0,2,192,143,105,14,22,0,2,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"O.P.",0.2,94.0,94.0,1,1,1,0,0,0,0,0,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"O.P.",0.4,139.0,139.0,1,4,2,1,1,1,0,0,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"O.P.",35,144.0,144.0,1,229,117,65,25,22,0,4,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"O.P.",92,142.2,142.2,1,439,223,169,21,29,0,4,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"O.P.",94,34.1,34.1,1,613,311,165,70,60,0,16,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"O.P.",100,140.0,401.0,57,24330,13785,8465,2072,2639,0,609,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"SVR1",24,.,.,".",164,86,63,3,19,0,2,0 35,35088,"Carleton",35012,"Carleton - Mississippi Mills",89522,149769,36538,"SVR2",24,.,.,".",0,251,145,18,78,0,10,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"A.P.",73,619.0,619.0,1,0,462,262,57,135,0,8,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"A.P.",100,611.0,616.0,6,0,5789,3927,390,1250,0,222,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"M.P.",33,502.0,502.0,1,51,41,23,6,10,0,2,-0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"M.P.",67,503.0,503.0,1,97,87,57,3,24,0,3,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"M.P.",100,500.0,500.0,1,124,71,46,13,11,0,1,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"O.P.",0.7,157.0,157.0,1,2,1,1,0,0,0,0,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"O.P.",100,138.0,206.0,85,37441,21054,12374,3213,4560,0,907,0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"SVR1",34,.,.,".",281,142,86,9,38,0,9,-0 35,35088,"Carleton",35052,"Nepean - Carleton",89522,159032,52957,"SVR2",34,.,.,".",0,250,127,20,93,0,9,0 35,35088,"Carleton",35064,"Ottawa South",89522,121921,27,"A.P.",0.5,608.0,608.0,1,0,4,2,0,2,0,0,0 35,35088,"Carleton",35064,"Ottawa South",89522,121921,27,"O.P.",7.7,124.0,124.0,1,27,16,7,2,7,0,0,0 35,35088,"Carleton",35064,"Ottawa South",89522,121921,27,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35088,"Carleton",35064,"Ottawa South",89522,121921,27,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"A.P.",78,600.0,600.0,1,0,420,245,37,108,0,26,4 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"A.P.",96,610.0,610.0,1,0,449,253,62,113,0,17,3 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"A.P.",100,601.0,611.0,10,0,5183,2755,899,1320,0,165,44 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"M.P.",100,500.0,502.0,3,725,383,271,49,47,0,8,8 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"O.P.",47,22.0,22.0,1,206,101,58,25,13,0,4,1 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"O.P.",81,8.0,8.0,1,391,218,152,22,39,0,5,1 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"O.P.",97,20.0,20.0,1,351,149,58,42,43,0,4,3 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"O.P.",100,2.0,403.0,216,80411,41906,20929,10627,8333,0,1648,369 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"SVR1",99,.,.,".",319,169,74,21,67,0,6,1 35,35089,"St. Catharines",35076,"St. Catharines",110596,112015,110596,"SVR2",99,.,.,".",0,551,294,76,166,0,13,2 35,35090,"Toronto--St. Paul's",35015,"Davenport",103983,102360,0,"A.P.",5.3,603.0,603.0,1,0,22,3,11,7,0,1,0 35,35090,"Toronto--St. Paul's",35015,"Davenport",103983,102360,0,"O.P.",100,64.0,64.0,1,272,166,17,99,41,0,8,1 35,35090,"Toronto--St. Paul's",35015,"Davenport",103983,102360,0,"SVR1",0.4,.,.,".",1,0,0,0,0,0,0,0 35,35090,"Toronto--St. Paul's",35015,"Davenport",103983,102360,0,"SVR2",0.4,.,.,".",0,3,0,1,1,0,0,0 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"A.P.",38,607.0,607.0,1,0,275,79,21,162,0,13,1 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"A.P.",55,608.0,608.0,1,0,328,89,47,176,0,14,2 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"A.P.",100,600.0,615.0,13,0,7032,2428,1019,3263,0,290,32 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"M.P.",100,500.0,500.0,1,122,53,17,10,23,0,1,2 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"O.P.",100,1.0,419.0,196,73980,40216,12993,9757,15415,0,1828,223 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"SVR1",89,.,.,".",197,108,31,11,61,0,4,2 35,35090,"Toronto--St. Paul's",35077,"St. Paul's",103983,116463,103983,"SVR2",89,.,.,".",0,797,229,111,415,0,37,4 35,35091,"Sarnia--Lambton",35078,"Sarnia - Lambton",106293,106293,106293,"A.P.",100,600.0,613.0,14,0,6205,3632,1304,1065,0,155,49 35,35091,"Sarnia--Lambton",35078,"Sarnia - Lambton",106293,106293,106293,"M.P.",100,500.0,507.0,8,1586,878,564,154,137,0,10,13 35,35091,"Sarnia--Lambton",35078,"Sarnia - Lambton",106293,106293,106293,"O.P.",100,1.0,400.0,202,77841,41672,21445,13216,5516,0,1050,445 35,35091,"Sarnia--Lambton",35078,"Sarnia - Lambton",106293,106293,106293,"SVR1",100,.,.,".",261,164,81,25,47,0,10,1 35,35091,"Sarnia--Lambton",35078,"Sarnia - Lambton",106293,106293,106293,"SVR2",100,.,.,".",0,746,390,157,166,0,27,6 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"A.P.",0.1,608.0,608.0,1,0,0,0,0,0,0,0,0 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"A.P.",100,600.0,609.0,9,0,3249,1390,1058,735,0,61,5 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"M.P.",100,500.0,505.0,6,1021,697,211,307,163,0,15,1 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"O.P.",0.4,174.0,174.0,1,3,2,1,1,0,0,0,0 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"O.P.",100,1.0,173.0,170,62558,35133,14147,13396,6711,0,750,129 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"SVR1",92,.,.,".",237,127,65,28,30,0,4,1 35,35092,"Sault Ste. Marie",35079,"Sault Ste. Marie",82052,88869,82052,"SVR2",92,.,.,".",0,1180,502,334,327,0,16,2 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"A.P.",28,606.0,606.0,1,0,179,65,22,87,0,5,-0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"A.P.",100,600.0,610.0,10,0,4481,1579,485,2314,0,103,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"M.P.",100,500.0,501.0,2,446,261,142,26,86,0,7,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"O.P.",0.5,141.0,141.0,1,2,1,0,0,0,0,0,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"O.P.",12,137.0,137.0,1,49,24,9,4,11,0,0,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"O.P.",60,140.0,140.0,1,275,129,48,32,44,0,4,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"O.P.",100,1.0,449.0,170,67185,32005,10830,6156,14291,0,728,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"SVR1",93,.,.,".",88,46,13,6,25,0,3,0 35,35093,"Scarborough--Agincourt",35080,"Scarborough - Agincourt",104499,112048,104499,"SVR2",93,.,.,".",0,612,201,57,338,0,16,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"A.P.",68,606.0,606.0,1,0,309,114,63,127,0,5,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"A.P.",70,605.0,605.0,1,0,275,102,67,96,0,10,-0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"A.P.",78,604.0,604.0,1,0,328,154,46,119,0,9,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"A.P.",100,600.0,609.0,7,0,2826,1220,552,998,0,56,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"M.P.",100,500.0,500.0,1,141,76,12,22,39,0,3,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"O.P.",39,19.0,19.0,1,200,55,18,19,17,0,2,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"O.P.",100,1.0,434.0,167,61576,29455,10033,9430,9230,0,762,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"SVR1",88,.,.,".",99,65,25,3,34,0,4,0 35,35094,"Scarborough Centre",35081,"Scarborough Centre",108826,111911,99922,"SVR2",88,.,.,".",0,252,94,37,117,0,4,0 35,35094,"Scarborough Centre",35084,"Scarborough Southwest",108826,108693,8904,"A.P.",5.3,601.0,601.0,1,0,28,8,7,11,0,1,0 35,35094,"Scarborough Centre",35084,"Scarborough Southwest",108826,108693,8904,"A.P.",81,600.0,600.0,1,0,280,104,53,117,0,6,0 35,35094,"Scarborough Centre",35084,"Scarborough Southwest",108826,108693,8904,"O.P.",100,1.0,423.0,15,5998,2822,947,980,813,0,82,0 35,35094,"Scarborough Centre",35084,"Scarborough Southwest",108826,108693,8904,"SVR1",8.7,.,.,".",11,7,2,1,4,0,0,0 35,35094,"Scarborough Centre",35084,"Scarborough Southwest",108826,108693,8904,"SVR2",8.7,.,.,".",0,31,9,6,16,0,1,0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"A.P.",22,604.0,604.0,1,0,94,44,13,34,0,3,-0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"A.P.",30,605.0,605.0,1,0,120,45,29,41,0,5,0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"A.P.",32,606.0,606.0,1,0,143,52,29,59,0,3,0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"O.P.",61,19.0,19.0,1,307,85,27,29,26,0,2,0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"O.P.",100,23.0,437.0,23,7938,3842,1543,1099,1071,0,129,0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"SVR1",12,.,.,".",13,9,3,0,4,0,1,0 35,35095,"Scarborough--Guildwood",35081,"Scarborough Centre",101914,111911,11989,"SVR2",12,.,.,".",0,33,12,5,16,0,0,-0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"A.P.",30,607.0,607.0,1,0,187,72,29,81,0,5,1 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"A.P.",43,605.0,605.0,1,0,231,93,30,101,0,6,1 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"A.P.",60,609.0,609.0,1,0,216,76,37,100,0,2,1 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"A.P.",87,606.0,606.0,1,0,542,239,80,213,0,10,1 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"A.P.",100,600.0,608.0,6,0,2617,949,458,1149,0,49,12 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"M.P.",50,501.0,501.0,1,199,88,58,9,16,0,3,2 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"M.P.",67,502.0,502.0,1,206,123,47,22,51,0,1,3 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"M.P.",100,500.0,500.0,1,184,69,25,9,24,0,3,8 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",0.4,137.0,137.0,1,2,1,0,0,0,0,0,0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",6.8,133.0,133.0,1,21,12,5,2,4,0,0,0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",9.5,145.0,145.0,1,27,12,3,4,5,0,0,0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",38,114.0,114.0,1,278,136,36,49,44,0,6,0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",67,144.0,144.0,1,243,109,37,29,37,0,4,1 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",86,113.0,113.0,1,233,143,55,17,60,0,10,0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",96,131.0,131.0,1,351,228,82,43,96,0,8,-0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"O.P.",100,1.0,441.0,145,51930,25273,8403,7178,9009,0,508,175 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"SVR1",79,.,.,".",137,83,20,6,50,0,7,0 35,35095,"Scarborough--Guildwood",35082,"Scarborough - Guildwood",101914,111138,89925,"SVR2",79,.,.,".",0,197,72,29,90,0,5,2 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"A.P.",72,606.0,606.0,1,0,464,168,58,225,0,13,0 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"O.P.",40,140.0,140.0,1,185,87,33,22,30,0,3,0 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"O.P.",88,137.0,137.0,1,367,179,66,29,82,0,2,0 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"O.P.",99,141.0,141.0,1,417,178,58,53,66,0,2,0 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"O.P.",100,130.0,144.0,10,4184,2054,702,422,871,0,59,0 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"SVR1",7.0,.,.,".",7,4,1,0,2,0,0,0 35,35096,"Scarborough North",35080,"Scarborough - Agincourt",101080,112048,7549,"SVR2",7.0,.,.,".",0,46,15,4,26,0,1,0 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"A.P.",8.1,611.0,611.0,1,0,37,9,15,13,0,1,0 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"A.P.",51,604.0,604.0,1,0,422,88,197,133,0,3,2 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"A.P.",70,610.0,610.0,1,0,405,95,181,118,0,8,2 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"A.P.",100,600.0,609.0,7,0,3965,1480,1007,1383,0,68,27 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"O.P.",13,91.0,91.0,1,41,15,3,7,4,0,0,0 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"O.P.",16,82.1,82.1,1,83,49,9,32,7,0,0,0 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"O.P.",46,81.4,81.4,1,273,132,15,86,29,0,1,1 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"O.P.",97,80.1,80.1,1,248,128,22,91,14,0,1,0 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"O.P.",100,1.0,420.0,134,59261,27372,9131,10403,7188,0,410,240 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"SVR1",70,.,.,".",95,52,6,6,37,0,2,1 35,35096,"Scarborough North",35083,"Scarborough - Rouge River",101080,135102,93531,"SVR2",70,.,.,".",0,241,58,60,116,0,4,4 35,35097,"Scarborough--Rouge Park",35072,"Pickering - Scarborough East",102646,107910,46806,"A.P.",100,606.0,610.0,5,0,3026,1166,364,1426,0,70,0 35,35097,"Scarborough--Rouge Park",35072,"Pickering - Scarborough East",102646,107910,46806,"M.P.",50,500.0,500.0,1,110,18,10,3,6,0,0,0 35,35097,"Scarborough--Rouge Park",35072,"Pickering - Scarborough East",102646,107910,46806,"O.P.",100,99.0,409.0,89,33903,17934,6424,3926,7040,0,544,0 35,35097,"Scarborough--Rouge Park",35072,"Pickering - Scarborough East",102646,107910,46806,"SVR1",43,.,.,".",62,32,12,3,15,0,2,0 35,35097,"Scarborough--Rouge Park",35072,"Pickering - Scarborough East",102646,107910,46806,"SVR2",43,.,.,".",0,198,63,20,109,0,7,0 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"A.P.",13,606.0,606.0,1,0,82,36,12,32,0,1,0 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"A.P.",40,609.0,609.0,1,0,146,51,25,68,0,2,0 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"A.P.",70,607.0,607.0,1,0,437,169,67,188,0,11,1 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"M.P.",50,501.0,501.0,1,199,88,58,9,16,0,3,2 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"O.P.",4.5,131.0,131.0,1,16,11,4,2,4,0,0,0 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"O.P.",33,144.0,144.0,1,122,54,19,15,18,0,2,1 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"O.P.",91,145.0,145.0,1,260,118,28,40,48,0,1,1 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"O.P.",93,133.0,133.0,1,292,162,65,34,61,0,3,0 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"O.P.",100,137.0,137.0,1,460,211,52,96,56,0,6,2 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"O.P.",100,63.0,415.0,21,8430,4370,1674,1149,1387,0,135,25 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"SVR1",14,.,.,".",25,15,4,1,9,0,1,-0 35,35097,"Scarborough--Rouge Park",35082,"Scarborough - Guildwood",102646,111138,14269,"SVR2",14,.,.,".",0,36,13,5,16,0,1,0 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"A.P.",30,610.0,610.0,1,0,174,41,78,51,0,4,1 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"A.P.",49,604.0,604.0,1,0,412,85,192,129,0,3,2 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"A.P.",92,611.0,611.0,1,0,426,103,170,144,0,6,2 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"A.P.",100,606.0,607.0,2,0,971,218,446,289,0,12,6 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"O.P.",2.6,80.1,80.1,1,7,3,1,2,0,0,0,0 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"O.P.",54,81.4,81.4,1,320,154,17,102,33,0,1,1 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"O.P.",84,82.1,82.1,1,445,261,47,171,40,0,1,3 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"O.P.",87,91.0,91.0,1,270,100,23,45,30,0,2,1 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"O.P.",100,81.1,417.0,56,24100,11168,2457,5617,2877,0,154,63 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"SVR1",30,.,.,".",40,22,3,2,16,0,1,0 35,35097,"Scarborough--Rouge Park",35083,"Scarborough - Rouge River",102646,135102,41571,"SVR2",30,.,.,".",0,101,24,25,48,0,2,1 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"A.P.",57,605.0,605.0,1,0,310,125,40,135,0,8,2 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"M.P.",33,502.0,502.0,1,103,62,23,11,25,0,1,1 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"O.P.",14,113.0,113.0,1,38,23,9,3,10,0,2,-0 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"O.P.",62,114.0,114.0,1,448,218,59,79,71,0,9,1 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"O.P.",100,101.0,114.1,9,3514,1629,491,523,564,0,35,16 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"SVR1",6.1,.,.,".",10,6,2,0,4,0,1,0 35,35098,"Scarborough Southwest",35082,"Scarborough - Guildwood",106733,111138,6944,"SVR2",6.1,.,.,".",0,15,5,2,7,0,0,0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"A.P.",19,600.0,600.0,1,0,65,24,12,27,0,1,0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"A.P.",95,601.0,601.0,1,0,508,149,133,201,0,26,-0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"A.P.",100,602.0,609.0,8,0,3230,1087,825,1170,0,148,0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"M.P.",100,500.0,500.0,1,200,133,47,44,38,0,4,0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"O.P.",100,10.1,425.0,166,63066,32780,10346,11990,9092,0,1352,0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"SVR1",91,.,.,".",114,75,17,8,47,0,3,0 35,35098,"Scarborough Southwest",35084,"Scarborough Southwest",106733,108693,99789,"SVR2",91,.,.,".",0,325,90,60,163,0,11,0 35,35099,"Simcoe--Grey",35085,"Simcoe - Grey",116307,134530,116307,"A.P.",100,600.0,616.0,15,0,12543,6536,1532,2009,0,466,2000 35,35099,"Simcoe--Grey",35085,"Simcoe - Grey",116307,134530,116307,"M.P.",50,506.0,506.0,1,37,10,5,1,3,0,1,1 35,35099,"Simcoe--Grey",35085,"Simcoe - Grey",116307,134530,116307,"M.P.",100,500.0,505.0,6,1017,490,203,75,76,0,16,120 35,35099,"Simcoe--Grey",35085,"Simcoe - Grey",116307,134530,116307,"O.P.",100,1.0,400.0,214,84270,40794,19226,7901,4656,0,2519,6492 35,35099,"Simcoe--Grey",35085,"Simcoe - Grey",116307,134530,116307,"SVR1",87,.,.,".",643,275,177,22,47,0,10,21 35,35099,"Simcoe--Grey",35085,"Simcoe - Grey",116307,134530,116307,"SVR2",87,.,.,".",0,1147,618,100,209,0,47,173 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"A.P.",24,606.0,606.0,1,0,144,84,12,37,0,10,0 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"A.P.",45,607.0,607.0,1,0,366,232,39,77,0,18,0 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"A.P.",100,600.0,612.0,11,0,8012,4379,1158,2026,0,405,44 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"M.P.",100,500.0,501.0,2,435,233,104,48,61,0,12,8 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",13,110.1,110.1,1,56,38,21,8,5,0,4,0 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",16,111.0,111.0,1,53,37,22,8,4,0,2,0 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",47,120.0,120.0,1,208,120,75,14,24,0,6,1 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",48,127.0,127.0,1,243,135,97,10,25,0,4,0 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",68,134.0,134.0,1,309,176,107,32,27,0,8,1 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",73,114.0,114.0,1,317,202,123,34,28,0,15,1 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",88,119.0,119.0,1,386,239,146,32,45,0,16,1 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"O.P.",100,1.0,400.0,208,79171,40885,21808,9063,7318,0,2456,240 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"SVR1",90,.,.,".",271,144,68,17,48,0,7,3 35,35100,"Simcoe North",35086,"Simcoe North",108672,121119,108672,"SVR2",90,.,.,".",0,860,529,65,206,0,57,1 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"A.P.",34,611.0,611.0,1,0,366,84,68,190,0,21,3 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"A.P.",53,612.0,612.0,1,0,224,24,50,127,0,23,1 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"O.P.",0.0,133.0,133.0,1,0,0,0,0,0,0,0,0 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"O.P.",30,134.1,134.1,1,66,41,6,21,11,0,3,-0 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"O.P.",43,140.0,140.0,1,359,191,42,70,67,0,11,2 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"O.P.",78,128.0,128.0,1,690,361,94,125,127,0,12,3 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"O.P.",100,129.0,493.0,12,3576,2024,385,833,680,0,103,23 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"SVR1",5.3,.,.,".",16,10,2,1,6,0,1,0 35,35101,"Spadina--Fort York",35093,"Toronto Centre",82480,130323,5648,"SVR2",5.3,.,.,".",0,35,6,6,21,0,1,0 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"A.P.",70,609.0,609.0,1,0,207,34,98,59,0,14,1 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"A.P.",92,611.0,611.0,1,0,406,32,283,73,0,16,2 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"A.P.",100,606.0,613.0,6,0,2478,394,1247,726,0,92,19 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"M.P.",33,500.0,501.0,2,66,33,4,12,14,0,1,1 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"O.P.",81,144.0,144.0,1,416,199,37,119,33,0,10,0 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"O.P.",100,93.0,489.0,153,52779,29760,6479,15110,6676,0,1207,288 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"SVR1",53,.,.,".",173,100,14,41,41,0,3,1 35,35101,"Spadina--Fort York",35095,"Trinity - Spadina",82480,144733,76832,"SVR2",53,.,.,".",0,535,76,267,163,0,23,6 35,35102,"Stormont--Dundas--South Glengarry",35087,"Stormont - Dundas - South Glengarry",100913,100913,100913,"A.P.",100,600.0,617.0,18,0,9781,6955,1001,1623,0,177,25 35,35102,"Stormont--Dundas--South Glengarry",35087,"Stormont - Dundas - South Glengarry",100913,100913,100913,"M.P.",100,500.0,505.0,6,1262,563,349,47,149,0,7,11 35,35102,"Stormont--Dundas--South Glengarry",35087,"Stormont - Dundas - South Glengarry",100913,100913,100913,"O.P.",100,1.0,198.1,208,75342,35933,21476,7140,6384,0,827,106 35,35102,"Stormont--Dundas--South Glengarry",35087,"Stormont - Dundas - South Glengarry",100913,100913,100913,"SVR1",100,.,.,".",311,146,88,8,39,0,5,6 35,35102,"Stormont--Dundas--South Glengarry",35087,"Stormont - Dundas - South Glengarry",100913,100913,100913,"SVR2",100,.,.,".",0,1127,670,117,315,0,22,3 35,35103,"Sudbury",35088,"Sudbury",92048,92048,92048,"A.P.",100,600.0,616.0,17,0,6568,2067,2801,1485,0,182,33 35,35103,"Sudbury",35088,"Sudbury",92048,92048,92048,"M.P.",100,500.0,504.0,5,984,639,172,216,212,0,16,23 35,35103,"Sudbury",35088,"Sudbury",92048,92048,92048,"O.P.",100,1.0,413.0,206,70755,37274,10348,19329,6183,0,1131,283 35,35103,"Sudbury",35088,"Sudbury",92048,92048,92048,"SVR1",100,.,.,".",280,139,60,36,36,0,6,1 35,35103,"Sudbury",35088,"Sudbury",92048,92048,92048,"SVR2",100,.,.,".",0,821,234,302,256,0,24,5 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"A.P.",76,612.0,612.0,1,0,452,265,29,142,0,13,3 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"A.P.",100,600.0,609.0,10,0,6238,4040,419,1624,0,138,17 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"M.P.",33,502.0,502.0,1,65,46,27,6,10,0,4,0 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"M.P.",50,501.0,501.0,1,147,103,54,16,28,0,5,0 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"M.P.",100,500.0,500.0,1,150,117,68,11,36,0,2,0 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"O.P.",100,1.0,424.0,190,75915,38183,24058,4759,8268,0,958,140 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"SVR1",76,.,.,".",99,64,25,5,31,0,2,0 35,35104,"Thornhill",35089,"Thornhill",110427,140265,110427,"SVR2",76,.,.,".",0,736,509,26,183,0,18,0 35,35104,"Thornhill",35103,"York Centre",110427,118358,0,"A.P.",1.7,602.0,602.0,1,0,4,3,0,1,0,0,0 35,35104,"Thornhill",35103,"York Centre",110427,118358,0,"O.P.",10,33.0,33.0,1,40,22,17,1,4,0,0,0 35,35104,"Thornhill",35103,"York Centre",110427,118358,0,"O.P.",100,461.0,468.0,2,249,146,72,27,46,0,1,0 35,35104,"Thornhill",35103,"York Centre",110427,118358,0,"SVR1",0.4,.,.,".",1,0,0,0,0,0,0,0 35,35104,"Thornhill",35103,"York Centre",110427,118358,0,"SVR2",0.4,.,.,".",0,3,2,0,1,0,0,0 35,35105,"Thunder Bay--Rainy River",35090,"Thunder Bay - Rainy River",82984,82984,82984,"A.P.",100,600.0,613.0,14,0,4842,1461,1978,1304,0,99,0 35,35105,"Thunder Bay--Rainy River",35090,"Thunder Bay - Rainy River",82984,82984,82984,"M.P.",100,500.0,500.0,1,227,60,13,20,26,0,1,0 35,35105,"Thunder Bay--Rainy River",35090,"Thunder Bay - Rainy River",82984,82984,82984,"O.P.",100,1.0,185.0,190,62321,31141,8293,15705,6379,0,764,0 35,35105,"Thunder Bay--Rainy River",35090,"Thunder Bay - Rainy River",82984,82984,82984,"SVR1",100,.,.,".",217,134,46,27,51,0,10,0 35,35105,"Thunder Bay--Rainy River",35090,"Thunder Bay - Rainy River",82984,82984,82984,"SVR2",100,.,.,".",0,981,284,355,307,0,35,0 35,35105,"Thunder Bay--Rainy River",35091,"Thunder Bay - Superior North",82984,80702,0,"A.P.",2.6,608.0,608.0,1,0,7,3,3,1,0,0,0 35,35105,"Thunder Bay--Rainy River",35091,"Thunder Bay - Superior North",82984,80702,0,"O.P.",3.8,46.0,46.0,1,11,7,2,3,1,0,0,0 35,35105,"Thunder Bay--Rainy River",35091,"Thunder Bay - Superior North",82984,80702,0,"O.P.",22,45.0,45.0,1,94,52,21,23,7,0,1,0 35,35105,"Thunder Bay--Rainy River",35091,"Thunder Bay - Superior North",82984,80702,0,"O.P.",27,46.1,46.1,1,62,33,14,10,8,0,1,-0 35,35105,"Thunder Bay--Rainy River",35091,"Thunder Bay - Superior North",82984,80702,0,"SVR1",0.3,.,.,".",1,0,0,0,0,0,0,0 35,35105,"Thunder Bay--Rainy River",35091,"Thunder Bay - Superior North",82984,80702,0,"SVR2",0.3,.,.,".",0,3,1,1,1,0,0,0 35,35106,"Thunder Bay--Superior North",35002,"Algoma - Manitoulin - Kapuskasing",82827,74828,2125,"A.P.",98,600.0,600.0,1,0,211,68,115,24,0,3,0 35,35106,"Thunder Bay--Superior North",35002,"Algoma - Manitoulin - Kapuskasing",82827,74828,2125,"O.P.",80,10.0,10.0,1,94,57,1,50,5,0,1,0 35,35106,"Thunder Bay--Superior North",35002,"Algoma - Manitoulin - Kapuskasing",82827,74828,2125,"O.P.",100,1.0,8.0,7,1677,718,227,407,65,0,19,0 35,35106,"Thunder Bay--Superior North",35002,"Algoma - Manitoulin - Kapuskasing",82827,74828,2125,"SVR1",3.0,.,.,".",9,4,2,1,1,0,0,0 35,35106,"Thunder Bay--Superior North",35002,"Algoma - Manitoulin - Kapuskasing",82827,74828,2125,"SVR2",3.0,.,.,".",0,35,11,15,8,0,1,-0 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"A.P.",97,608.0,608.0,1,0,275,103,119,49,0,4,0 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"A.P.",100,600.0,618.0,18,0,4433,1601,1914,782,0,116,20 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"M.P.",100,500.0,507.0,8,919,489,178,189,110,0,10,2 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"O.P.",73,46.1,46.1,1,165,87,36,27,21,0,3,0 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"O.P.",78,45.0,45.0,1,340,190,76,84,24,0,4,2 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"O.P.",96,46.0,46.0,1,283,163,62,75,23,0,2,1 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"O.P.",100,1.0,404.0,184,59428,29826,8422,15444,4794,0,937,229 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"SVR1",100,.,.,".",243,144,49,36,45,0,10,4 35,35106,"Thunder Bay--Superior North",35091,"Thunder Bay - Superior North",82827,80702,80702,"SVR2",100,.,.,".",0,1017,326,406,251,0,27,7 35,35107,"Timmins--James Bay",35057,"Nipissing - Timiskaming",83104,90995,1058,"A.P.",12,600.0,600.0,1,0,60,24,10,25,0,2,0 35,35107,"Timmins--James Bay",35057,"Nipissing - Timiskaming",83104,90995,1058,"O.P.",96,1.0,1.0,1,381,230,112,50,61,0,8,-0 35,35107,"Timmins--James Bay",35057,"Nipissing - Timiskaming",83104,90995,1058,"O.P.",100,4.0,4.0,1,317,179,75,33,65,0,6,0 35,35107,"Timmins--James Bay",35057,"Nipissing - Timiskaming",83104,90995,1058,"SVR1",1.0,.,.,".",6,3,2,0,1,0,0,-0 35,35107,"Timmins--James Bay",35057,"Nipissing - Timiskaming",83104,90995,1058,"SVR2",1.0,.,.,".",0,13,5,1,7,0,1,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"A.P.",100,614.0,614.0,1,0,34,1,31,2,0,0,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"A.P.",100,600.0,613.0,14,0,5592,1839,2384,1265,0,104,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"M.P.",100,500.0,501.0,2,376,193,34,102,46,0,11,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"O.P.",100,2.0,2.0,1,646,196,10,180,4,0,2,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"O.P.",100,1.0,192.0,178,58854,26616,8462,13792,3765,0,597,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"SVR1",100,.,.,".",219,116,29,54,26,0,7,0 35,35107,"Timmins--James Bay",35092,"Timmins - James Bay",83104,81957,81957,"SVR2",100,.,.,".",0,471,151,195,122,0,3,0 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",0.3,600.0,600.0,1,0,2,1,0,1,0,0,0 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",47,612.0,612.0,1,0,197,21,43,112,0,20,0 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",48,602.0,602.0,1,0,319,67,62,172,0,16,3 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",50,605.0,605.0,1,0,240,68,35,128,0,8,3 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",66,611.0,611.0,1,0,708,162,132,367,0,42,5 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",99,606.0,606.0,1,0,632,86,135,362,0,44,5 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"A.P.",100,603.0,610.0,6,0,2859,410,694,1517,0,215,23 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"M.P.",71,500.0,500.0,1,392,63,13,17,26,0,1,5 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",0.0,138.0,138.0,1,0,0,0,0,0,0,0,0 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",5.3,23.0,23.0,1,17,12,4,2,6,0,1,0 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",22,128.0,128.0,1,200,104,27,36,37,0,3,1 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",57,140.0,140.0,1,472,251,55,91,88,0,14,2 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",70,134.1,134.1,1,158,97,13,50,27,0,7,0 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",81,67.0,67.0,1,372,187,31,73,65,0,17,1 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",94,45.0,45.0,1,748,370,80,133,149,0,7,1 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"O.P.",100,41.0,495.0,172,59080,30675,5331,11987,11413,0,1516,428 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"SVR1",69,.,.,".",208,128,21,19,76,0,10,3 35,35108,"Toronto Centre",35093,"Toronto Centre",93971,130323,93843,"SVR2",69,.,.,".",0,454,76,79,274,0,19,6 35,35108,"Toronto Centre",35095,"Trinity - Spadina",93971,144733,128,"A.P.",4.0,609.0,609.0,1,0,12,2,6,3,0,1,0 35,35108,"Toronto Centre",35095,"Trinity - Spadina",93971,144733,128,"O.P.",16,144.0,144.0,1,81,39,7,23,6,0,2,0 35,35108,"Toronto Centre",35095,"Trinity - Spadina",93971,144733,128,"O.P.",100,475.0,475.0,1,0,0,0,0,0,0,0,0 35,35108,"Toronto Centre",35095,"Trinity - Spadina",93971,144733,128,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 35,35108,"Toronto Centre",35095,"Trinity - Spadina",93971,144733,128,"SVR2",0.1,.,.,".",0,1,0,0,0,0,0,0 35,35109,"Toronto--Danforth",35094,"Toronto - Danforth",104017,104017,104017,"A.P.",100,600.0,609.0,10,0,6906,875,4089,1396,0,501,45 35,35109,"Toronto--Danforth",35094,"Toronto - Danforth",104017,104017,104017,"O.P.",100,1.0,402.0,183,74232,40474,5960,24731,6885,0,2559,339 35,35109,"Toronto--Danforth",35094,"Toronto - Danforth",104017,104017,104017,"SVR1",100,.,.,".",177,123,6,54,54,0,8,1 35,35109,"Toronto--Danforth",35094,"Toronto - Danforth",104017,104017,104017,"SVR2",100,.,.,".",0,583,44,361,137,0,39,2 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"A.P.",0.8,606.0,606.0,1,0,5,1,1,3,0,0,0 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"A.P.",50,605.0,605.0,1,0,240,68,35,128,0,8,3 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"A.P.",52,602.0,602.0,1,0,352,73,68,189,0,17,4 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"A.P.",100,600.0,600.0,1,0,889,345,41,455,0,44,4 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"A.P.",100,601.0,601.0,1,0,785,269,46,429,0,39,2 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"M.P.",29,500.0,500.0,1,157,25,5,7,11,0,1,2 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"O.P.",6.5,45.0,45.0,1,52,26,6,9,10,0,1,0 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"O.P.",19,67.0,67.0,1,89,44,7,18,15,0,4,0 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"O.P.",95,23.0,23.0,1,301,224,75,27,107,0,11,3 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"O.P.",100,1.0,434.0,57,21782,12318,4612,1769,5310,0,547,80 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"SVR1",25,.,.,".",76,47,8,7,28,0,4,1 35,35110,"University--Rosedale",35093,"Toronto Centre",98605,130323,30832,"SVR2",25,.,.,".",0,165,28,29,100,0,7,2 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"A.P.",8.3,611.0,611.0,1,0,37,3,26,7,0,1,0 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"A.P.",26,609.0,609.0,1,0,76,13,36,22,0,5,0 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"A.P.",100,600.0,605.0,6,0,4287,344,2521,1176,0,221,25 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"M.P.",67,500.0,501.0,2,131,66,9,25,28,0,2,3 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"M.P.",100,502.0,503.0,2,292,142,39,31,62,0,2,8 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"O.P.",2.7,144.0,144.0,1,14,7,1,4,1,0,0,0 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"O.P.",100,1.0,488.1,139,46913,26362,3407,15479,6003,0,1238,235 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"SVR1",47,.,.,".",154,89,13,36,37,0,3,1 35,35110,"University--Rosedale",35095,"Trinity - Spadina",98605,144733,67773,"SVR2",47,.,.,".",0,475,67,237,145,0,20,6 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"A.P.",64,600.0,600.0,1,0,395,242,18,129,0,7,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"A.P.",72,603.0,603.0,1,0,326,188,17,115,0,7,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"A.P.",100,604.0,611.0,6,0,3470,2023,214,1159,0,74,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"M.P.",33,502.0,502.0,1,41,23,16,0,6,0,0,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"M.P.",100,500.0,500.0,1,248,132,56,15,58,0,3,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"O.P.",48,58.0,58.0,1,1280,595,332,66,189,0,8,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"O.P.",100,64.0,253.0,154,68084,33364,18823,3778,10087,0,676,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"SVR1",56,.,.,".",38,28,10,1,17,0,0,0 35,35111,"Vaughan--Woodbridge",35096,"Vaughan",105450,196068,105450,"SVR2",56,.,.,".",0,116,60,4,47,0,5,0 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"A.P.",15,604.0,604.0,1,0,77,20,11,39,0,6,0 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"A.P.",15,603.0,603.0,1,0,97,41,10,41,0,4,0 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"A.P.",67,605.0,605.0,1,0,732,265,62,367,0,37,1 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"A.P.",70,611.0,611.0,1,0,437,197,57,162,0,19,2 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"A.P.",100,608.0,608.0,1,0,888,474,64,319,0,24,7 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"A.P.",100,600.0,612.0,8,0,5324,2274,448,2378,0,195,29 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"M.P.",50,503.0,503.0,1,83,51,22,8,19,0,1,1 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"M.P.",100,500.0,504.0,4,662,318,128,40,137,0,8,5 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"O.P.",88,165.0,165.0,1,304,197,88,12,89,0,6,1 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"O.P.",95,129.0,129.0,1,406,256,99,26,116,0,12,3 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"O.P.",98,43.0,43.0,1,259,120,41,29,38,0,10,2 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"O.P.",100,1.0,400.0,193,75104,43119,17927,7130,15678,0,2076,308 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"SVR1",80,.,.,".",205,128,48,6,69,0,5,1 35,35112,"Waterloo",35039,"Kitchener - Waterloo",103192,130162,103192,"SVR2",80,.,.,".",0,1890,568,111,1100,0,105,6 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"A.P.",100,603.0,603.0,1,0,378,240,27,91,0,18,2 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"A.P.",100,600.0,614.0,14,0,8262,5309,726,1703,0,489,35 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"M.P.",100,500.0,503.0,4,572,296,176,33,69,0,11,7 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"O.P.",100,60.0,60.0,1,664,357,221,48,69,0,19,0 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"O.P.",100,1.0,400.0,211,82108,45328,28877,6263,6962,0,2957,269 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"SVR1",100,.,.,".",153,86,41,7,29,0,8,1 35,35113,"Wellington--Halton Hills",35098,"Wellington - Halton Hills",115880,115880,115880,"SVR2",100,.,.,".",0,447,267,42,111,0,25,2 35,35114,"Whitby",35099,"Whitby - Oshawa",122022,146307,122022,"A.P.",100,600.0,611.0,12,0,6729,4151,954,1331,0,279,14 35,35114,"Whitby",35099,"Whitby - Oshawa",122022,146307,122022,"M.P.",100,500.0,500.0,1,394,173,91,39,36,0,6,1 35,35114,"Whitby",35099,"Whitby - Oshawa",122022,146307,122022,"O.P.",100,1.0,403.0,196,83860,45059,26298,10213,6097,0,2300,151 35,35114,"Whitby",35099,"Whitby - Oshawa",122022,146307,122022,"SVR1",82,.,.,".",194,102,53,5,38,0,5,0 35,35114,"Whitby",35099,"Whitby - Oshawa",122022,146307,122022,"SVR2",82,.,.,".",0,708,441,86,142,0,38,2 35,35115,"Willowdale",35089,"Thornhill",109680,140265,0,"M.P.",50,501.0,501.0,1,147,103,54,16,28,0,5,0 35,35115,"Willowdale",35089,"Thornhill",109680,140265,0,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 35,35115,"Willowdale",35089,"Thornhill",109680,140265,0,"SVR2",0.1,.,.,".",0,1,1,0,0,0,0,0 35,35115,"Willowdale",35100,"Willowdale",109680,140456,91599,"A.P.",94,600.0,600.0,1,0,407,193,38,176,0,0,0 35,35115,"Willowdale",35100,"Willowdale",109680,140456,91599,"A.P.",100,604.0,613.0,8,0,3017,1152,356,1509,0,0,0 35,35115,"Willowdale",35100,"Willowdale",109680,140456,91599,"M.P.",100,501.0,501.0,1,126,81,23,15,43,0,0,0 35,35115,"Willowdale",35100,"Willowdale",109680,140456,91599,"O.P.",100,1.0,487.0,174,58418,28583,11549,5920,11114,0,0,0 35,35115,"Willowdale",35100,"Willowdale",109680,140456,91599,"SVR1",63,.,.,".",112,61,18,6,38,0,0,0 35,35115,"Willowdale",35100,"Willowdale",109680,140456,91599,"SVR2",63,.,.,".",0,479,165,55,259,0,0,0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"A.P.",2.2,602.0,602.0,1,0,6,4,0,1,0,0,0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"A.P.",100,600.0,601.0,2,0,849,435,77,325,0,12,0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"O.P.",13,33.0,33.0,1,51,28,21,1,5,0,0,0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"O.P.",50,498.0,498.0,1,73,23,9,6,8,0,1,0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"O.P.",100,1.0,465.0,34,11013,5216,2472,886,1727,0,131,0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"SVR1",16,.,.,".",31,17,7,1,9,0,0,-0 35,35115,"Willowdale",35103,"York Centre",109680,118358,18081,"SVR2",16,.,.,".",0,113,64,7,39,0,3,-0 35,35116,"Windsor--Tecumseh",35101,"Windsor - Tecumseh",115528,115528,115528,"A.P.",100,600.0,613.0,14,0,5881,2070,2760,882,0,150,19 35,35116,"Windsor--Tecumseh",35101,"Windsor - Tecumseh",115528,115528,115528,"M.P.",100,500.0,504.0,5,653,310,73,140,85,0,5,7 35,35116,"Windsor--Tecumseh",35101,"Windsor - Tecumseh",115528,115528,115528,"O.P.",100,1.0,402.0,235,83560,37534,12517,18982,4655,0,1168,212 35,35116,"Windsor--Tecumseh",35101,"Windsor - Tecumseh",115528,115528,115528,"SVR1",100,.,.,".",245,131,72,28,23,0,6,2 35,35116,"Windsor--Tecumseh",35101,"Windsor - Tecumseh",115528,115528,115528,"SVR2",100,.,.,".",0,684,213,325,119,0,25,2 35,35117,"Windsor West",35102,"Windsor West",118973,118973,118973,"A.P.",100,600.0,610.0,11,0,4771,1699,2381,560,0,120,11 35,35117,"Windsor West",35102,"Windsor West",118973,118973,118973,"M.P.",100,500.0,503.0,4,600,310,86,156,52,0,11,5 35,35117,"Windsor West",35102,"Windsor West",118973,118973,118973,"O.P.",100,1.0,409.0,217,81122,34107,10626,18797,3605,0,945,134 35,35117,"Windsor West",35102,"Windsor West",118973,118973,118973,"SVR1",100,.,.,".",262,148,52,37,50,0,8,1 35,35117,"Windsor West",35102,"Windsor West",118973,118973,118973,"SVR2",100,.,.,".",0,409,114,221,60,0,12,2 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"A.P.",96,602.0,602.0,1,0,248,193,9,43,0,3,-0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"A.P.",100,603.0,611.0,9,0,4289,2160,409,1625,0,95,0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"M.P.",100,500.0,500.0,1,214,143,88,9,44,0,2,0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"O.P.",50,498.0,498.0,1,73,23,9,6,8,0,1,0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"O.P.",76,33.0,33.0,1,292,159,124,8,26,0,1,-0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"O.P.",100,35.0,497.0,193,59552,29977,14292,5163,9810,0,712,0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"SVR1",84,.,.,".",166,92,37,7,47,0,2,-0 35,35118,"York Centre",35103,"York Centre",100277,118358,100277,"SVR2",84,.,.,".",0,613,346,39,212,0,16,0 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"A.P.",91,609.0,609.0,1,0,227,162,22,28,0,11,4 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"A.P.",99,608.0,608.0,1,0,543,373,54,84,0,32,1 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"A.P.",100,604.0,617.0,12,0,5493,3881,644,713,0,201,54 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"M.P.",67,500.0,500.0,1,97,49,27,13,3,0,3,3 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"M.P.",100,501.0,504.0,4,597,279,128,56,44,0,31,20 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"O.P.",29,95.0,95.0,1,253,107,72,16,14,0,4,0 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"O.P.",91,107.0,107.0,1,429,229,144,34,34,0,10,5 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"O.P.",99,103.0,103.0,1,245,138,84,23,21,0,10,0 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"O.P.",100,52.0,402.0,160,65259,31287,19544,6293,3375,0,1758,317 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"SVR1",73,.,.,".",143,74,37,11,23,0,2,1 35,35119,"York--Simcoe",35104,"York - Simcoe",94616,128703,94616,"SVR2",73,.,.,".",0,252,171,21,45,0,11,3 35,35120,"York South--Weston",35105,"York South - Weston",116606,116606,116606,"A.P.",100,600.0,607.0,8,0,2890,708,1040,1053,0,89,0 35,35120,"York South--Weston",35105,"York South - Weston",116606,116606,116606,"M.P.",100,500.0,501.0,2,67,36,9,12,12,0,3,0 35,35120,"York South--Weston",35105,"York South - Weston",116606,116606,116606,"O.P.",100,1.0,426.0,181,68143,31954,7775,13005,10300,0,874,0 35,35120,"York South--Weston",35105,"York South - Weston",116606,116606,116606,"SVR1",100,.,.,".",151,102,14,11,71,0,6,0 35,35120,"York South--Weston",35105,"York South - Weston",116606,116606,116606,"SVR2",100,.,.,".",0,216,53,54,106,0,3,0 35,35121,"Humber River--Black Creek",35106,"York West",108198,108198,108198,"A.P.",100,600.0,609.0,10,0,2387,540,487,1298,0,41,21 35,35121,"Humber River--Black Creek",35106,"York West",108198,108198,108198,"M.P.",100,500.0,500.0,1,179,99,19,29,41,0,3,7 35,35121,"Humber River--Black Creek",35106,"York West",108198,108198,108198,"O.P.",100,1.0,425.0,171,57772,24995,5514,7159,11549,0,402,371 35,35121,"Humber River--Black Creek",35106,"York West",108198,108198,108198,"SVR1",100,.,.,".",139,93,21,15,55,0,2,0 35,35121,"Humber River--Black Creek",35106,"York West",108198,108198,108198,"SVR2",100,.,.,".",0,150,28,31,87,0,2,2 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"A.P.",50,603.0,603.0,1,0,126,80,31,11,0,6,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"A.P.",90,600.0,600.0,1,0,247,192,30,16,0,10,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"A.P.",100,608.0,608.0,1,0,313,200,74,19,0,20,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"A.P.",100,605.0,614.0,9,0,1796,1137,407,139,0,113,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"M.P.",40,503.0,503.0,1,37,20,11,4,4,0,0,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"M.P.",75,502.0,502.0,1,63,33,21,6,4,0,2,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"M.P.",100,500.0,507.0,6,597,304,207,50,38,0,9,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"O.P.",1.9,14.0,14.0,1,3,1,1,0,0,0,0,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"O.P.",83,5.0,5.0,1,294,163,122,24,11,0,6,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"O.P.",95,2.0,2.0,1,424,196,145,26,11,0,13,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"O.P.",99,46.0,46.0,1,710,365,264,73,12,0,17,-0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"O.P.",100,39.0,39.0,1,414,234,166,57,6,0,6,-0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"O.P.",100,1.0,400.0,154,52542,27328,17201,7183,1358,0,1586,0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"SVR1",90,.,.,".",333,184,130,18,19,0,17,-0 46,46001,"Brandon--Souris",46001,"Brandon - Souris",83814,89575,80763,"SVR2",90,.,.,".",0,488,304,93,58,0,33,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"A.P.",3.2,600.0,600.0,1,0,3,3,0,0,0,0,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"A.P.",19,604.0,604.0,1,0,19,12,1,3,0,2,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"A.P.",50,606.0,606.0,1,0,54,43,4,4,0,3,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"M.P.",50,505.0,505.0,1,53,29,20,3,4,0,2,1 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"O.P.",3.1,115.0,115.0,1,9,4,3,1,0,0,0,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"O.P.",6.9,9.0,9.0,1,17,10,9,1,0,0,1,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"O.P.",18,72.0,72.0,1,58,28,25,1,1,0,0,1 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"O.P.",21,8.0,8.0,1,49,20,17,0,1,0,1,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"O.P.",41,116.0,116.0,1,47,30,27,0,1,0,2,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"O.P.",100,69.0,114.0,9,2074,1285,902,115,190,0,62,16 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"SVR1",3.9,.,.,".",6,3,2,0,1,0,0,0 46,46001,"Brandon--Souris",46007,"Portage - Lisgar",83814,92863,3051,"SVR2",3.9,.,.,".",0,15,12,1,1,0,1,0 46,46002,"Charleswood--St. James--Assiniboia--Headingley",46002,"Charleswood - St. James - Assiniboia",81864,81864,81864,"A.P.",100,600.0,608.0,9,0,4630,2851,527,1134,0,118,0 46,46002,"Charleswood--St. James--Assiniboia--Headingley",46002,"Charleswood - St. James - Assiniboia",81864,81864,81864,"M.P.",100,500.0,503.0,4,852,596,355,92,136,0,13,0 46,46002,"Charleswood--St. James--Assiniboia--Headingley",46002,"Charleswood - St. James - Assiniboia",81864,81864,81864,"O.P.",100,1.0,405.0,167,61208,34188,19343,7430,5985,0,1430,0 46,46002,"Charleswood--St. James--Assiniboia--Headingley",46002,"Charleswood - St. James - Assiniboia",81864,81864,81864,"SVR1",100,.,.,".",549,256,183,16,46,0,11,0 46,46002,"Charleswood--St. James--Assiniboia--Headingley",46002,"Charleswood - St. James - Assiniboia",81864,81864,81864,"SVR2",100,.,.,".",0,748,532,69,132,0,15,0 46,46003,"Churchill--Keewatinook Aski",46003,"Churchill",85148,78485,78485,"A.P.",100,600.0,619.0,19,0,1830,522,752,522,0,34,0 46,46003,"Churchill--Keewatinook Aski",46003,"Churchill",85148,78485,78485,"M.P.",100,500.0,502.0,3,194,121,31,64,17,0,9,0 46,46003,"Churchill--Keewatinook Aski",46003,"Churchill",85148,78485,78485,"O.P.",100,1.0,124.0,111,45594,17646,4587,9236,3411,0,412,0 46,46003,"Churchill--Keewatinook Aski",46003,"Churchill",85148,78485,78485,"SVR1",100,.,.,".",280,221,24,88,97,0,12,0 46,46003,"Churchill--Keewatinook Aski",46003,"Churchill",85148,78485,78485,"SVR2",100,.,.,".",0,258,92,122,40,0,4,0 46,46003,"Churchill--Keewatinook Aski",46008,"Provencher",85148,98463,69,"A.P.",0.0,601.0,601.0,1,0,0,0,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46008,"Provencher",85148,98463,69,"O.P.",0.5,8.0,8.0,1,1,1,1,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46008,"Provencher",85148,98463,69,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46008,"Provencher",85148,98463,69,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"A.P.",0.1,602.0,602.0,1,0,0,0,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"A.P.",0.3,603.0,603.0,1,0,0,0,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"A.P.",66,600.0,600.0,1,0,22,16,1,5,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"A.P.",100,601.0,605.0,2,0,69,16,43,10,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"M.P.",25,501.0,501.0,1,16,8,2,4,2,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"O.P.",0.3,3.0,3.0,1,1,1,1,0,0,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"O.P.",1.3,15.0,15.0,1,6,2,1,0,0,0,0,-0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"O.P.",18,1.0,1.0,1,81,24,18,6,1,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"O.P.",76,2.0,2.0,1,46,17,3,10,5,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"O.P.",100,4.0,14.0,11,2863,953,207,629,99,0,18,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"SVR1",4.6,.,.,".",8,4,2,1,1,0,0,0 46,46003,"Churchill--Keewatinook Aski",46010,"Selkirk - Interlake",85148,93272,6594,"SVR2",4.6,.,.,".",0,26,17,6,3,0,1,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"A.P.",0.1,608.0,608.0,1,0,0,0,0,0,0,0,-0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"A.P.",10,600.0,600.0,1,0,29,22,3,2,0,1,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"A.P.",50,603.0,603.0,1,0,126,80,31,11,0,6,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"A.P.",100,604.0,604.0,1,0,108,77,19,7,0,5,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"M.P.",25,502.0,502.0,1,21,11,7,2,1,0,1,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"M.P.",60,503.0,503.0,1,56,29,17,6,7,0,0,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"O.P.",0.3,39.0,39.0,1,1,1,0,0,0,0,0,-0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"O.P.",0.6,46.0,46.0,1,4,2,1,0,0,0,0,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"O.P.",5.0,2.0,2.0,1,22,10,8,1,1,0,1,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"O.P.",17,5.0,5.0,1,60,33,25,5,2,0,1,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"O.P.",98,14.0,14.0,1,169,74,59,11,0,0,4,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"O.P.",100,13.0,38.0,17,5504,2832,1864,680,138,0,150,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"SVR1",9.6,.,.,".",35,20,14,2,2,0,2,0 46,46004,"Dauphin--Swan River--Neepawa",46001,"Brandon - Souris",87374,89575,8812,"SVR2",9.6,.,.,".",0,52,32,10,6,0,4,-0 46,46004,"Dauphin--Swan River--Neepawa",46004,"Dauphin - Swan River - Marquette",87374,74800,74800,"A.P.",100,600.0,626.0,27,0,2998,1912,688,262,0,136,0 46,46004,"Dauphin--Swan River--Neepawa",46004,"Dauphin - Swan River - Marquette",87374,74800,74800,"M.P.",100,500.0,514.0,15,1957,1068,575,298,165,0,30,0 46,46004,"Dauphin--Swan River--Neepawa",46004,"Dauphin - Swan River - Marquette",87374,74800,74800,"O.P.",100,1.0,177.0,174,51601,24899,15827,6570,1457,0,1045,0 46,46004,"Dauphin--Swan River--Neepawa",46004,"Dauphin - Swan River - Marquette",87374,74800,74800,"SVR1",100,.,.,".",143,88,20,29,28,0,11,0 46,46004,"Dauphin--Swan River--Neepawa",46004,"Dauphin - Swan River - Marquette",87374,74800,74800,"SVR2",100,.,.,".",0,337,209,72,35,0,21,0 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"A.P.",94,600.0,600.0,1,0,91,82,5,1,0,3,1 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"M.P.",40,500.0,500.0,1,160,50,34,3,8,0,2,2 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"O.P.",68,9.0,9.0,1,169,101,84,8,2,0,5,1 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"O.P.",79,8.0,8.0,1,180,71,61,1,3,0,5,2 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"O.P.",100,1.0,7.0,7,2177,1377,1186,95,39,0,36,21 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"SVR1",4.5,.,.,".",7,4,2,0,1,0,0,0 46,46004,"Dauphin--Swan River--Neepawa",46007,"Portage - Lisgar",87374,92863,3762,"SVR2",4.5,.,.,".",0,18,14,1,2,0,1,0 46,46005,"Elmwood--Transcona",46005,"Elmwood - Transcona",85906,83002,83002,"A.P.",100,600.0,607.0,8,0,4057,2066,1670,211,0,110,0 46,46005,"Elmwood--Transcona",46005,"Elmwood - Transcona",85906,83002,83002,"M.P.",100,501.0,503.0,3,765,446,183,223,30,0,10,0 46,46005,"Elmwood--Transcona",46005,"Elmwood - Transcona",85906,83002,83002,"O.P.",100,1.0,402.0,170,58192,27941,12826,12881,1353,0,881,0 46,46005,"Elmwood--Transcona",46005,"Elmwood - Transcona",85906,83002,83002,"SVR1",100,.,.,".",197,115,38,39,33,0,5,0 46,46005,"Elmwood--Transcona",46005,"Elmwood - Transcona",85906,83002,83002,"SVR2",100,.,.,".",0,414,185,185,33,0,11,0 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"A.P.",0.1,609.0,609.0,1,0,1,0,0,0,0,0,0 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"A.P.",23,610.0,610.0,1,0,119,73,29,13,0,4,1 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"O.P.",1.8,145.0,145.0,1,5,3,2,1,0,0,0,0 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"O.P.",97,156.0,156.0,1,387,207,121,73,9,0,5,0 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"O.P.",100,157.0,159.0,3,1478,735,430,224,51,0,24,6 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"SVR1",2.9,.,.,".",4,2,1,0,1,0,0,0 46,46005,"Elmwood--Transcona",46006,"Kildonan - St. Paul",85906,88752,2821,"SVR2",2.9,.,.,".",0,43,32,6,3,0,1,0 46,46005,"Elmwood--Transcona",46009,"Saint Boniface",85906,89486,83,"A.P.",2.2,600.0,600.0,1,0,12,3,1,7,0,0,0 46,46005,"Elmwood--Transcona",46009,"Saint Boniface",85906,89486,83,"O.P.",42,20.0,20.0,1,295,188,122,31,33,0,2,0 46,46005,"Elmwood--Transcona",46009,"Saint Boniface",85906,89486,83,"SVR1",0.5,.,.,".",1,1,0,0,0,0,0,0 46,46005,"Elmwood--Transcona",46009,"Saint Boniface",85906,89486,83,"SVR2",0.5,.,.,".",0,6,3,0,2,0,0,0 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"A.P.",66,602.0,602.0,1,0,278,138,67,66,0,5,3 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"A.P.",77,610.0,610.0,1,0,391,238,94,43,0,12,3 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"A.P.",100,609.0,609.0,1,0,586,404,101,65,0,13,4 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"A.P.",100,600.0,608.0,8,0,3195,2002,779,321,0,79,14 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"M.P.",67,500.0,500.0,1,98,61,24,24,11,0,1,1 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"M.P.",100,501.0,501.0,1,245,191,123,50,12,0,2,4 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"O.P.",2.7,156.0,156.0,1,11,6,3,2,0,0,0,0 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"O.P.",58,25.1,25.1,1,144,62,31,21,9,0,0,1 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"O.P.",98,145.0,145.0,1,259,163,101,39,15,0,7,1 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"O.P.",100,1.0,155.0,164,58821,30263,17291,9629,2206,0,828,309 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"SVR1",93,.,.,".",132,72,29,8,30,0,5,0 46,46006,"Kildonan--St. Paul",46006,"Kildonan - St. Paul",81794,88752,81794,"SVR2",93,.,.,".",0,1360,1032,193,109,0,18,8 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"A.P.",2.8,600.0,600.0,1,0,3,2,0,0,0,0,0 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"A.P.",50,606.0,606.0,1,0,56,44,4,4,0,4,0 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"A.P.",81,604.0,604.0,1,0,80,54,6,12,0,8,1 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"A.P.",100,601.0,613.0,11,0,2549,1979,195,189,0,134,52 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"M.P.",50,505.0,505.0,1,53,29,20,3,4,0,2,1 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"M.P.",60,500.0,500.0,1,240,75,52,5,13,0,2,4 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"M.P.",100,501.0,511.0,10,1424,855,665,55,89,0,27,19 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"O.P.",26,9.0,9.0,1,64,38,32,3,1,0,2,1 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"O.P.",59,116.0,116.0,1,68,43,38,0,2,0,3,0 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"O.P.",82,72.0,72.0,1,258,123,109,5,5,0,2,2 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"O.P.",97,115.0,115.0,1,283,141,105,23,7,0,5,1 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"O.P.",100,10.0,169.0,163,52266,27753,20933,2902,1585,0,1658,675 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"SVR1",92,.,.,".",138,75,41,8,17,0,6,2 46,46007,"Portage--Lisgar",46007,"Portage - Lisgar",91019,92863,86050,"SVR2",92,.,.,".",0,366,288,27,31,0,16,3 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"A.P.",0.6,608.0,608.0,1,0,1,1,0,0,0,0,0 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"A.P.",63,607.0,607.0,1,0,114,90,10,8,0,4,2 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"M.P.",50,500.0,500.0,1,53,27,18,4,6,0,0,1 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"O.P.",0.2,89.0,89.0,1,0,0,0,0,0,0,0,0 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"O.P.",10,96.0,96.0,1,15,10,7,2,1,0,1,0 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"O.P.",84,84.0,84.0,1,329,170,134,19,10,0,6,2 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"O.P.",100,80.0,88.0,8,2431,1397,1088,188,44,0,34,43 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"SVR1",4.4,.,.,".",6,3,2,0,1,0,0,0 46,46007,"Portage--Lisgar",46008,"Provencher",91019,98463,4796,"SVR2",4.4,.,.,".",0,17,12,2,2,0,0,0 46,46007,"Portage--Lisgar",46010,"Selkirk - Interlake",91019,93272,173,"A.P.",3.7,610.0,610.0,1,0,3,2,1,0,0,0,0 46,46007,"Portage--Lisgar",46010,"Selkirk - Interlake",91019,93272,173,"O.P.",19,63.0,63.0,1,55,30,23,5,1,0,1,0 46,46007,"Portage--Lisgar",46010,"Selkirk - Interlake",91019,93272,173,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 46,46007,"Portage--Lisgar",46010,"Selkirk - Interlake",91019,93272,173,"SVR2",0.1,.,.,".",0,0,0,0,0,0,0,0 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"A.P.",21,601.0,601.0,1,0,85,56,16,8,0,3,2 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"A.P.",37,607.0,607.0,1,0,66,53,6,4,0,2,1 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"A.P.",99,608.0,608.0,1,0,164,109,20,26,0,7,2 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"A.P.",100,602.0,611.0,8,0,2322,1676,337,192,0,65,52 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"M.P.",40,504.0,504.0,1,52,26,14,6,3,0,1,2 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"M.P.",50,500.0,500.0,1,53,27,18,4,6,0,0,1 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"M.P.",100,501.0,508.0,7,1237,650,451,81,90,0,6,22 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"O.P.",16,84.0,84.0,1,61,32,25,3,2,0,1,0 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"O.P.",57,20.0,20.0,1,146,92,59,26,4,0,2,1 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"O.P.",90,96.0,96.0,1,130,88,59,13,8,0,6,1 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"O.P.",99,15.0,15.0,1,448,313,226,61,10,0,9,7 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"O.P.",100,89.0,89.0,1,167,88,59,20,3,0,5,1 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"O.P.",100,14.0,154.0,123,52188,29098,20540,5296,1876,0,863,523 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"SVR1",85,.,.,".",111,66,32,8,20,0,4,3 46,46008,"Provencher",46008,"Provencher",88640,98463,85073,"SVR2",85,.,.,".",0,324,239,35,34,0,9,7 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"A.P.",0.0,619.0,619.0,1,0,0,0,0,0,0,0,0 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"A.P.",71,624.0,624.0,1,0,105,70,23,8,0,3,-0 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"O.P.",0.0,156.0,156.0,1,0,0,0,0,0,0,0,0 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"O.P.",95,162.0,162.0,1,199,127,91,31,4,0,1,0 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"O.P.",100,161.0,165.0,4,1984,1310,837,367,55,0,51,0 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"SVR1",3.3,.,.,".",6,3,1,1,1,0,0,0 46,46008,"Provencher",46010,"Selkirk - Interlake",88640,93272,3567,"SVR2",3.3,.,.,".",0,19,12,4,2,0,1,0 46,46009,"Saint Boniface--Saint Vital",46005,"Elmwood - Transcona",84353,83002,0,"A.P.",0.0,605.0,605.0,1,0,0,0,0,0,0,0,0 46,46009,"Saint Boniface--Saint Vital",46005,"Elmwood - Transcona",84353,83002,0,"O.P.",0.0,104.0,104.0,1,0,0,0,0,0,0,0,0 46,46009,"Saint Boniface--Saint Vital",46005,"Elmwood - Transcona",84353,83002,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 46,46009,"Saint Boniface--Saint Vital",46005,"Elmwood - Transcona",84353,83002,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"A.P.",63,607.0,607.0,1,0,294,155,37,97,0,5,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"A.P.",75,605.0,605.0,1,0,707,416,58,223,0,9,-0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"A.P.",97,603.0,603.0,1,0,644,338,52,237,0,16,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"A.P.",98,600.0,600.0,1,0,531,156,60,294,0,22,-0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"A.P.",100,601.0,608.0,5,0,3141,1655,318,1092,0,76,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"M.P.",100,500.0,501.0,2,429,308,83,31,190,0,4,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"O.P.",23,121.0,121.0,1,57,33,20,7,6,0,0,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"O.P.",58,20.0,20.0,1,414,262,171,43,45,0,3,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"O.P.",68,126.0,126.0,1,523,223,117,53,48,0,6,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"O.P.",100,1.0,401.0,162,58448,32101,16027,5487,9612,0,975,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"SVR1",92,.,.,".",209,118,57,12,47,0,3,0 46,46009,"Saint Boniface--Saint Vital",46009,"Saint Boniface",84353,89486,82767,"SVR2",92,.,.,".",0,1173,548,99,492,0,35,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"A.P.",1.9,608.0,608.0,1,0,16,9,1,5,0,0,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"A.P.",16,607.0,607.0,1,0,152,86,16,47,0,2,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"M.P.",33,500.0,500.0,1,60,22,8,5,6,0,3,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"O.P.",0.2,146.0,146.0,1,1,1,0,0,0,0,0,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"O.P.",33,145.0,145.0,1,145,75,43,14,17,0,1,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"O.P.",97,122.0,122.0,1,322,172,103,28,40,0,2,-0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"O.P.",100,130.0,130.1,2,799,427,259,59,106,0,3,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"SVR1",2.1,.,.,".",5,3,2,0,1,0,0,0 46,46009,"Saint Boniface--Saint Vital",46013,"Winnipeg South",84353,93330,1586,"SVR2",2.1,.,.,".",0,16,8,1,6,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"A.P.",79,601.0,601.0,1,0,312,206,60,31,0,9,6 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"A.P.",100,600.0,600.0,1,0,143,118,15,6,0,4,0 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"M.P.",60,504.0,504.0,1,79,39,22,9,4,0,1,3 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"O.P.",1.2,15.0,15.0,1,6,4,3,1,0,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"O.P.",43,20.0,20.0,1,109,68,45,19,3,0,1,0 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"O.P.",100,8.0,8.0,1,242,154,113,26,8,0,6,1 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"O.P.",100,1.0,18.0,13,6228,3456,2312,760,230,0,112,42 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"SVR1",10,.,.,".",14,8,4,1,2,0,1,0 46,46010,"Selkirk--Interlake--Eastman",46008,"Provencher",91463,98463,8525,"SVR2",10,.,.,".",0,40,29,4,4,0,1,1 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"A.P.",29,624.0,624.0,1,0,43,29,10,4,0,1,-0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"A.P.",34,600.0,600.0,1,0,12,9,1,2,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"A.P.",96,610.0,610.0,1,0,82,54,19,8,0,1,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"A.P.",100,603.0,603.0,1,0,79,51,20,8,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"A.P.",100,602.0,602.0,1,0,80,70,3,7,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"A.P.",100,604.0,623.0,18,0,4066,2740,935,240,0,151,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"M.P.",75,501.0,501.0,1,47,24,7,11,5,0,1,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"M.P.",100,500.0,512.0,12,1296,776,430,268,65,0,13,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",5.2,162.0,162.0,1,11,7,5,2,0,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",24,2.0,2.0,1,15,6,1,3,1,0,0,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",81,63.0,63.0,1,239,133,98,24,6,0,5,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",82,1.0,1.0,1,379,115,83,26,4,0,1,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",99,15.0,15.0,1,423,148,103,33,8,0,5,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",100,3.0,3.0,1,288,186,157,20,8,0,1,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"O.P.",100,6.1,400.0,183,58246,32081,21315,8289,1338,0,1139,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"SVR1",92,.,.,".",162,89,41,21,23,0,4,0 46,46010,"Selkirk--Interlake--Eastman",46010,"Selkirk - Interlake",91463,93272,82938,"SVR2",92,.,.,".",0,532,335,116,56,0,25,0 46,46011,"Winnipeg Centre",46011,"Winnipeg Centre",82026,82026,82026,"A.P.",100,600.0,609.0,10,0,2743,765,1443,314,0,200,21 46,46011,"Winnipeg Centre",46011,"Winnipeg Centre",82026,82026,82026,"M.P.",100,500.0,503.0,4,870,374,142,178,42,0,11,1 46,46011,"Winnipeg Centre",46011,"Winnipeg Centre",82026,82026,82026,"O.P.",100,1.0,405.0,143,53061,22127,6101,12018,2303,0,1577,128 46,46011,"Winnipeg Centre",46011,"Winnipeg Centre",82026,82026,82026,"SVR1",100,.,.,".",433,284,51,78,140,0,14,1 46,46011,"Winnipeg Centre",46011,"Winnipeg Centre",82026,82026,82026,"SVR2",100,.,.,".",0,427,114,211,73,0,28,1 46,46012,"Winnipeg North",46006,"Kildonan - St. Paul",88616,88752,4137,"A.P.",34,602.0,602.0,1,0,143,70,34,34,0,2,2 46,46012,"Winnipeg North",46006,"Kildonan - St. Paul",88616,88752,4137,"M.P.",33,500.0,500.0,1,49,31,12,12,6,0,1,0 46,46012,"Winnipeg North",46006,"Kildonan - St. Paul",88616,88752,4137,"O.P.",42,25.1,25.1,1,103,45,23,15,7,0,0,0 46,46012,"Winnipeg North",46006,"Kildonan - St. Paul",88616,88752,4137,"O.P.",100,24.0,25.0,5,2125,967,449,318,182,0,13,5 46,46012,"Winnipeg North",46006,"Kildonan - St. Paul",88616,88752,4137,"SVR1",3.6,.,.,".",5,3,1,0,1,0,0,0 46,46012,"Winnipeg North",46006,"Kildonan - St. Paul",88616,88752,4137,"SVR2",3.6,.,.,".",0,52,39,7,4,0,1,0 46,46012,"Winnipeg North",46012,"Winnipeg North",88616,84479,84479,"A.P.",100,600.0,607.0,8,0,3512,869,1058,1520,0,55,10 46,46012,"Winnipeg North",46012,"Winnipeg North",88616,84479,84479,"M.P.",100,500.0,506.0,7,904,491,173,224,76,0,11,7 46,46012,"Winnipeg North",46012,"Winnipeg North",88616,84479,84479,"O.P.",100,1.0,402.0,136,50613,20676,5515,7564,7136,0,363,98 46,46012,"Winnipeg North",46012,"Winnipeg North",88616,84479,84479,"SVR1",100,.,.,".",377,291,29,83,162,0,14,3 46,46012,"Winnipeg North",46012,"Winnipeg North",88616,84479,84479,"SVR2",100,.,.,".",0,457,115,124,203,0,15,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"A.P.",3.3,603.0,603.0,1,0,22,12,2,8,0,1,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"A.P.",25,605.0,605.0,1,0,240,142,20,76,0,3,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"A.P.",37,607.0,607.0,1,0,172,91,22,56,0,3,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"O.P.",32,126.0,126.0,1,243,104,54,24,22,0,3,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"O.P.",77,121.0,121.0,1,192,112,68,22,20,0,2,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"O.P.",100,122.0,134.0,11,4775,2727,1447,546,660,0,74,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"SVR1",8.0,.,.,".",18,10,5,1,4,0,0,0 46,46013,"Winnipeg South",46009,"Saint Boniface",85540,89486,6636,"SVR2",8.0,.,.,".",0,102,48,9,43,0,3,-0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"A.P.",83,603.0,603.0,1,0,673,358,53,255,0,7,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"A.P.",84,607.0,607.0,1,0,767,436,81,240,0,11,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"A.P.",98,608.0,608.0,1,0,844,476,79,268,0,22,-0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"A.P.",99,601.0,601.0,1,0,789,485,44,257,0,4,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"A.P.",100,602.0,606.0,4,0,3000,1414,222,1328,0,36,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"M.P.",50,501.0,502.0,2,251,186,107,26,51,0,3,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"M.P.",67,500.0,500.0,1,120,43,16,11,11,0,5,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"O.P.",3.2,122.0,122.0,1,11,6,3,1,1,0,0,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"O.P.",67,145.0,145.0,1,289,150,85,29,34,0,2,-0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"O.P.",87,1.1,1.1,1,302,158,99,18,38,0,3,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"O.P.",100,146.0,146.0,1,545,313,201,31,75,0,7,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"O.P.",100,1.0,401.0,132,51704,28477,14569,4313,8945,0,650,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"SVR1",83,.,.,".",217,116,70,8,37,0,1,0 46,46013,"Winnipeg South",46013,"Winnipeg South",85540,93330,78904,"SVR2",83,.,.,".",0,631,325,43,255,0,8,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"A.P.",0.9,601.0,601.0,1,0,7,4,0,2,0,0,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"A.P.",17,603.0,603.0,1,0,135,72,11,51,0,1,-0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"A.P.",100,600.0,600.0,1,0,817,433,24,346,0,14,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"M.P.",50,501.0,502.0,2,251,186,107,26,51,0,3,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"O.P.",13,1.1,1.1,1,43,23,14,3,6,0,0,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"O.P.",100,2.0,402.0,21,9040,5382,2980,536,1767,0,99,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"SVR1",15,.,.,".",38,20,12,1,6,0,0,0 46,46014,"Winnipeg South Centre",46013,"Winnipeg South",90711,93330,12840,"SVR2",15,.,.,".",0,111,57,8,45,0,1,0 46,46014,"Winnipeg South Centre",46014,"Winnipeg South Centre",90711,77871,77871,"A.P.",100,600.0,607.0,8,0,5909,2354,711,2657,0,153,34 46,46014,"Winnipeg South Centre",46014,"Winnipeg South Centre",90711,77871,77871,"M.P.",100,500.0,506.0,7,1455,938,432,182,271,0,13,40 46,46014,"Winnipeg South Centre",46014,"Winnipeg South Centre",90711,77871,77871,"O.P.",100,1.0,152.0,154,56281,31892,12275,6892,11312,0,1175,238 46,46014,"Winnipeg South Centre",46014,"Winnipeg South Centre",90711,77871,77871,"SVR1",100,.,.,".",339,183,95,20,62,0,3,3 46,46014,"Winnipeg South Centre",46014,"Winnipeg South Centre",90711,77871,77871,"SVR2",100,.,.,".",0,1017,350,140,482,0,39,6 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"A.P.",11,611.0,611.0,1,0,36,28,5,1,0,1,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"A.P.",100,600.0,612.0,12,0,2182,1480,569,77,0,56,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"M.P.",50,506.0,506.0,1,51,26,17,4,3,0,2,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"M.P.",100,500.0,505.0,6,625,296,124,99,61,0,12,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"O.P.",18,140.0,140.0,1,32,22,17,4,0,0,1,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"O.P.",65,139.0,139.0,1,116,66,54,7,0,0,5,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"O.P.",88,138.0,138.0,1,292,157,128,21,4,0,4,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"O.P.",100,1.0,137.0,134,45086,22769,15113,6424,655,0,577,0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"SVR1",92,.,.,".",193,147,27,54,54,0,12,-0 47,47001,"Battlefords--Lloydminster",47001,"Battlefords - Lloydminster",70034,76295,70002,"SVR2",92,.,.,".",0,307,163,110,25,0,9,0 47,47001,"Battlefords--Lloydminster",47010,"Saskatoon - Rosetown - Biggar",70034,72893,32,"A.P.",1.7,600.0,600.0,1,0,9,5,3,0,0,0,0 47,47001,"Battlefords--Lloydminster",47010,"Saskatoon - Rosetown - Biggar",70034,72893,32,"O.P.",17,1.0,1.0,1,28,15,10,4,0,0,0,0 47,47001,"Battlefords--Lloydminster",47010,"Saskatoon - Rosetown - Biggar",70034,72893,32,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 47,47001,"Battlefords--Lloydminster",47010,"Saskatoon - Rosetown - Biggar",70034,72893,32,"SVR2",0.1,.,.,".",0,1,0,0,0,0,0,0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"A.P.",89,611.0,611.0,1,0,300,233,45,12,0,11,0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"M.P.",50,506.0,506.0,1,51,26,17,4,3,0,2,0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"O.P.",12,138.0,138.0,1,38,21,17,3,1,0,0,0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"O.P.",35,139.0,139.0,1,62,35,29,3,0,0,3,0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"O.P.",82,140.0,140.0,1,151,104,78,18,1,0,7,-0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"O.P.",100,141.0,153.0,13,3941,2170,1660,383,46,0,81,0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"SVR1",8.4,.,.,".",18,14,3,5,5,0,1,-0 47,47002,"Cypress Hills--Grasslands",47001,"Battlefords - Lloydminster",67834,76295,6293,"SVR2",8.4,.,.,".",0,28,15,10,2,0,1,0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"A.P.",62,611.0,611.0,1,0,56,39,13,2,0,1,0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"A.P.",100,600.0,612.0,12,0,2249,1578,392,207,0,72,0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"M.P.",100,500.0,505.0,6,652,429,237,142,39,0,11,0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"O.P.",16,23.0,23.0,1,79,50,39,10,1,0,0,0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"O.P.",100,1.0,144.0,138,42617,25326,17766,5401,1491,0,668,0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"SVR1",98,.,.,".",79,41,24,9,5,0,3,-0 47,47002,"Cypress Hills--Grasslands",47004,"Cypress Hills - Grasslands",67834,60983,59356,"SVR2",98,.,.,".",0,510,315,113,62,0,20,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"A.P.",35,608.0,608.0,1,0,16,12,4,0,0,0,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"A.P.",46,600.0,600.0,1,0,67,55,10,0,0,2,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"O.P.",20,131.0,131.0,1,37,9,8,2,0,0,0,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"O.P.",30,5.0,5.0,1,87,48,36,9,1,0,1,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"O.P.",57,133.0,133.0,1,82,46,33,8,3,0,1,-0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"O.P.",93,1.0,1.0,1,313,220,171,45,3,0,1,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"O.P.",100,2.0,132.0,3,1085,595,482,92,7,0,14,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"SVR1",3.2,.,.,".",8,4,2,1,1,0,0,0 47,47002,"Cypress Hills--Grasslands",47005,"Palliser",67834,68544,2185,"SVR2",3.2,.,.,".",0,44,21,19,3,0,1,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"A.P.",35,615.0,615.0,1,0,42,32,7,2,0,1,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"A.P.",50,617.0,617.0,1,0,12,0,8,4,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"A.P.",100,600.0,616.0,16,0,1953,1128,623,155,0,47,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"M.P.",100,500.0,502.0,3,186,120,64,33,16,0,7,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",0.5,143.0,143.0,1,1,0,0,0,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",0.7,152.0,152.0,1,2,1,0,1,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",2.0,141.0,141.0,1,1,1,0,0,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",3.9,142.0,142.0,1,12,7,5,1,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",26,140.0,140.0,1,65,46,33,9,1,0,2,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",60,145.0,145.0,1,208,142,113,21,4,0,4,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",63,144.0,144.0,1,127,73,61,8,1,0,4,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"O.P.",100,1.0,151.0,123,40996,17919,8158,8524,814,0,423,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"SVR1",96,.,.,".",338,289,25,154,90,0,19,0 47,47003,"Desneth--Missinippi--Churchill River",47003,"Desneth - Missinippi - Churchill River",69471,71376,69461,"SVR2",96,.,.,".",0,225,145,64,11,0,6,0 47,47003,"Desneth--Missinippi--Churchill River",47006,"Prince Albert",69471,74228,10,"A.P.",0.1,601.0,601.0,1,0,0,0,0,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47006,"Prince Albert",69471,74228,10,"O.P.",1.6,11.0,11.0,1,6,3,2,1,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47006,"Prince Albert",69471,74228,10,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 47,47003,"Desneth--Missinippi--Churchill River",47006,"Prince Albert",69471,74228,10,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47004,"Cypress Hills - Grasslands",72607,60983,1627,"A.P.",38,611.0,611.0,1,0,35,25,8,2,0,1,0 47,47004,"Carlton Trail--Eagle Creek",47004,"Cypress Hills - Grasslands",72607,60983,1627,"O.P.",84,23.0,23.0,1,414,263,205,51,4,0,3,0 47,47004,"Carlton Trail--Eagle Creek",47004,"Cypress Hills - Grasslands",72607,60983,1627,"O.P.",100,20.0,22.0,3,696,456,318,106,23,0,9,0 47,47004,"Carlton Trail--Eagle Creek",47004,"Cypress Hills - Grasslands",72607,60983,1627,"SVR1",2.5,.,.,".",2,1,1,0,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47004,"Cypress Hills - Grasslands",72607,60983,1627,"SVR2",2.5,.,.,".",0,13,8,3,2,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"A.P.",3.0,601.0,601.0,1,0,2,1,0,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"A.P.",27,606.0,606.0,1,0,45,30,11,2,0,1,2 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"A.P.",60,600.0,600.0,1,0,103,62,33,6,0,1,2 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"A.P.",96,603.0,603.0,1,0,93,62,23,6,0,3,0 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"A.P.",98,605.0,605.0,1,0,462,289,113,38,0,10,13 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"A.P.",99,604.0,604.0,1,0,107,72,23,2,0,6,4 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"M.P.",100,500.0,502.0,2,165,91,41,30,13,0,5,2 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",5.0,6.0,6.0,1,5,2,1,1,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",18,18.0,18.0,1,30,17,14,2,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",70,31.0,31.0,1,300,209,137,51,12,0,4,4 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",76,56.0,56.0,1,118,82,58,15,6,0,0,3 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",80,7.0,7.0,1,99,66,36,17,1,0,2,10 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",87,57.0,57.0,1,223,155,112,35,4,0,1,3 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",89,55.0,55.0,1,251,180,141,30,3,0,4,2 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",90,58.0,58.0,1,263,178,125,45,4,0,2,3 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",91,40.0,40.0,1,284,189,159,17,5,0,1,7 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"O.P.",100,8.0,59.0,33,10244,5959,3931,1417,304,0,128,179 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"SVR1",21,.,.,".",29,17,7,6,4,0,1,0 47,47004,"Carlton Trail--Eagle Creek",47009,"Saskatoon - Humboldt",72607,82743,16611,"SVR2",21,.,.,".",0,144,56,63,20,0,3,2 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"A.P.",3.0,605.0,605.0,1,0,23,14,7,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"A.P.",98,600.0,600.0,1,0,490,315,163,10,0,3,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"A.P.",100,601.0,602.0,2,0,843,638,183,13,0,9,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"O.P.",62,33.0,33.0,1,274,172,106,58,2,0,5,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"O.P.",83,1.0,1.0,1,133,74,50,21,2,0,2,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"O.P.",100,2.0,36.0,35,11341,6172,4098,1886,79,0,109,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"SVR1",24,.,.,".",75,58,9,24,23,0,2,0 47,47004,"Carlton Trail--Eagle Creek",47010,"Saskatoon - Rosetown - Biggar",72607,72893,16399,"SVR2",24,.,.,".",0,225,101,116,5,0,3,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"A.P.",9.0,604.0,604.0,1,0,41,26,10,3,0,1,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"A.P.",94,603.0,603.0,1,0,208,136,52,9,0,10,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"A.P.",100,600.0,611.0,5,0,1482,1138,219,83,0,42,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"M.P.",100,500.0,502.0,3,233,156,116,17,17,0,6,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"O.P.",0.2,19.0,19.0,1,1,1,0,0,0,0,0,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"O.P.",0.6,57.0,57.0,1,2,1,1,0,0,0,0,-0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"O.P.",98,56.0,56.0,1,329,197,128,58,4,0,8,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"O.P.",100,1.0,55.0,72,24722,13420,9447,2985,527,0,461,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"SVR1",44,.,.,".",65,43,13,11,17,0,1,0 47,47004,"Carlton Trail--Eagle Creek",47011,"Saskatoon - Wanuskewin",72607,82553,37970,"SVR2",44,.,.,".",0,165,83,52,23,0,7,-0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"A.P.",50,607.0,607.0,1,0,104,70,27,4,0,4,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"A.P.",100,611.0,611.0,1,0,138,99,30,5,0,4,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"A.P.",100,608.0,613.0,5,0,606,414,163,17,0,12,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"O.P.",99,141.0,141.0,1,279,188,149,35,2,0,3,-0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"O.P.",100,115.0,157.0,45,12513,7827,5402,2016,233,0,176,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"SVR1",21,.,.,".",28,16,7,4,4,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47002,"Blackstrap",76106,85541,18468,"SVR2",21,.,.,".",0,227,132,68,21,0,6,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"A.P.",54,600.0,600.0,1,0,79,65,12,0,0,2,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"A.P.",65,608.0,608.0,1,0,30,22,7,0,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"A.P.",88,604.0,604.0,1,0,118,100,11,2,0,6,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"A.P.",100,601.0,610.0,5,0,1485,766,607,64,0,48,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"M.P.",100,500.0,507.0,5,1082,504,248,194,53,0,9,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"O.P.",7.3,1.0,1.0,1,25,17,13,4,0,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"O.P.",18,75.0,75.0,1,91,60,37,18,3,0,2,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"O.P.",43,133.0,133.0,1,63,35,26,7,3,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"O.P.",70,5.0,5.0,1,205,113,86,23,3,0,2,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"O.P.",80,131.0,131.0,1,146,37,29,6,0,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"O.P.",100,4.0,135.0,74,26333,14550,7757,5946,401,0,446,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"SVR1",56,.,.,".",142,65,33,20,9,0,3,-0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47005,"Palliser",76106,68544,38626,"SVR2",56,.,.,".",0,770,367,338,49,0,17,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"A.P.",7.3,608.0,608.0,1,0,14,7,6,1,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"A.P.",7.8,605.0,605.0,1,0,25,14,8,3,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"A.P.",99,604.0,604.0,1,0,280,163,97,14,0,7,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"A.P.",100,602.0,602.0,1,0,254,182,52,13,0,7,-0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"A.P.",100,600.0,603.0,3,0,241,177,50,8,0,6,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"O.P.",26,43.0,43.0,1,48,36,27,7,2,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"O.P.",75,42.1,42.1,1,158,109,65,31,11,0,3,-0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"O.P.",82,31.0,31.0,1,292,189,108,62,16,0,4,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"O.P.",95,44.0,44.0,1,386,244,127,88,24,0,6,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"O.P.",100,25.0,25.0,1,223,121,81,26,9,0,5,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"O.P.",100,1.0,42.0,41,12269,8002,5411,2028,344,0,219,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"SVR1",26,.,.,".",29,16,8,4,3,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47007,"Regina - Lumsden - Lake Centre",76106,70276,16970,"SVR2",26,.,.,".",0,106,60,29,15,0,3,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"A.P.",1.9,605.0,605.0,1,0,9,5,2,1,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"A.P.",22,606.0,606.0,1,0,38,25,10,1,0,0,1 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"M.P.",33,501.0,501.0,1,18,18,7,4,3,0,3,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"O.P.",10,58.0,58.0,1,30,21,14,5,1,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"O.P.",13,57.0,57.0,1,33,23,17,5,1,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"O.P.",24,56.0,56.0,1,38,26,18,5,2,0,0,1 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"O.P.",100,60.0,62.0,2,519,319,214,86,11,0,1,7 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"SVR1",1.1,.,.,".",2,1,0,0,0,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47009,"Saskatoon - Humboldt",76106,82743,917,"SVR2",1.1,.,.,".",0,8,3,3,1,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47012,"Souris - Moose Mountain",76106,68013,875,"A.P.",49,605.0,605.0,1,0,27,20,5,2,0,0,-0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47012,"Souris - Moose Mountain",76106,68013,875,"O.P.",97,31.0,31.0,1,210,140,111,20,7,0,2,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47012,"Souris - Moose Mountain",76106,68013,875,"O.P.",100,32.0,32.0,1,481,297,198,68,26,0,5,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47012,"Souris - Moose Mountain",76106,68013,875,"SVR1",1.5,.,.,".",1,1,0,0,0,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47012,"Souris - Moose Mountain",76106,68013,875,"SVR2",1.5,.,.,".",0,6,4,1,1,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47013,"Wascana",76106,82241,250,"A.P.",23,608.0,608.0,1,0,18,11,2,5,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47013,"Wascana",76106,82241,250,"O.P.",25,139.0,139.0,1,68,49,26,8,13,0,2,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47013,"Wascana",76106,82241,250,"O.P.",44,137.0,137.0,1,82,61,38,8,15,0,1,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47013,"Wascana",76106,82241,250,"SVR1",0.3,.,.,".",0,0,0,0,0,0,0,0 47,47005,"Moose Jaw--Lake Centre--Lanigan",47013,"Wascana",76106,82241,250,"SVR2",0.3,.,.,".",0,1,0,0,1,0,0,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"A.P.",65,615.0,615.0,1,0,75,57,13,3,0,2,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",37,144.0,144.0,1,76,44,36,4,1,0,2,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",40,145.0,145.0,1,137,94,75,14,2,0,3,-0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",74,140.0,140.0,1,189,133,98,25,4,0,7,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",96,142.0,142.0,1,311,168,136,21,2,0,10,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",98,141.0,141.0,1,59,27,21,4,1,0,2,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",99,143.0,143.0,1,137,86,67,14,0,0,5,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"O.P.",100,146.0,147.0,2,628,331,240,71,7,0,13,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"SVR1",3.5,.,.,".",12,11,1,6,3,0,1,0 47,47006,"Prince Albert",47003,"Desneth - Missinippi - Churchill River",79344,71376,1900,"SVR2",3.5,.,.,".",0,8,5,2,0,0,0,0 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"A.P.",100,601.0,601.0,1,0,265,175,74,9,0,7,0 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"A.P.",100,600.0,611.0,11,0,3067,2073,832,105,0,52,5 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"M.P.",100,500.0,505.0,6,800,403,188,138,59,0,5,13 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"O.P.",98,11.0,11.0,1,364,174,107,56,5,0,5,1 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"O.P.",100,1.0,145.0,147,50279,26252,16289,8503,804,0,565,91 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"SVR1",100,.,.,".",207,151,33,52,50,0,14,2 47,47006,"Prince Albert",47006,"Prince Albert",79344,74228,74218,"SVR2",100,.,.,".",0,592,347,185,38,0,18,4 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"A.P.",40,600.0,600.0,1,0,67,40,21,4,0,0,1 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"A.P.",50,601.0,601.0,1,0,31,23,6,1,0,1,1 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"O.P.",20,7.0,7.0,1,24,16,9,4,0,0,1,2 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"O.P.",95,6.0,6.0,1,89,34,10,19,4,0,1,0 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"O.P.",100,1.0,17.0,7,1562,969,551,347,31,0,18,22 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"SVR1",2.9,.,.,".",4,2,1,1,1,0,0,0 47,47006,"Prince Albert",47009,"Saskatoon - Humboldt",79344,82743,2719,"SVR2",2.9,.,.,".",0,20,8,9,3,0,0,0 47,47006,"Prince Albert",47011,"Saskatoon - Wanuskewin",79344,82553,507,"A.P.",5.5,603.0,603.0,1,0,12,8,3,1,0,1,0 47,47006,"Prince Albert",47011,"Saskatoon - Wanuskewin",79344,82553,507,"O.P.",100,19.0,19.0,1,370,246,176,57,6,0,8,0 47,47006,"Prince Albert",47011,"Saskatoon - Wanuskewin",79344,82553,507,"SVR1",0.6,.,.,".",1,1,0,0,0,0,0,0 47,47006,"Prince Albert",47011,"Saskatoon - Wanuskewin",79344,82553,507,"SVR2",0.6,.,.,".",0,2,1,1,0,0,0,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"A.P.",12,604.0,604.0,1,0,16,13,1,0,0,1,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"A.P.",89,605.0,605.0,1,0,560,112,398,30,0,20,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"A.P.",100,606.0,612.0,4,0,1233,483,602,125,0,23,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"M.P.",100,504.0,508.0,4,737,448,196,155,91,0,6,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"O.P.",82,75.0,75.0,1,405,269,167,78,14,0,10,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"O.P.",100,79.0,130.1,51,18554,11266,4128,5930,864,0,344,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"SVR1",39,.,.,".",100,46,23,14,6,0,2,0 47,47007,"Regina--Lewvan",47005,"Palliser",79587,68544,26609,"SVR2",39,.,.,".",0,543,258,238,34,0,12,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"A.P.",85,605.0,605.0,1,0,271,151,84,28,0,8,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"A.P.",93,608.0,608.0,1,0,179,85,74,16,0,4,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"A.P.",100,606.0,611.0,5,0,1572,765,626,155,0,26,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"O.P.",3.3,42.1,42.1,1,7,5,3,1,0,0,0,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"O.P.",5.3,44.0,44.0,1,22,14,7,5,1,0,0,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"O.P.",100,45.0,136.0,101,37617,21748,10313,9099,1741,0,595,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"SVR1",73,.,.,".",83,45,21,11,10,0,3,0 47,47007,"Regina--Lewvan",47007,"Regina - Lumsden - Lake Centre",79587,70276,52978,"SVR2",73,.,.,".",0,298,168,82,41,0,7,0 47,47008,"Regina--Qu'Appelle",47002,"Blackstrap",72891,85541,10,"A.P.",0.2,611.0,611.0,1,0,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47002,"Blackstrap",72891,85541,10,"O.P.",1.4,141.0,141.0,1,4,3,2,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47002,"Blackstrap",72891,85541,10,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47002,"Blackstrap",72891,85541,10,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47005,"Palliser",72891,68544,1124,"A.P.",11,605.0,605.0,1,0,70,14,50,4,0,2,0 47,47008,"Regina--Qu'Appelle",47005,"Palliser",72891,68544,1124,"O.P.",100,80.0,81.0,2,676,342,77,225,23,0,17,0 47,47008,"Regina--Qu'Appelle",47005,"Palliser",72891,68544,1124,"SVR1",1.4,.,.,".",3,2,1,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47005,"Palliser",72891,68544,1124,"SVR2",1.4,.,.,".",0,19,9,8,1,0,0,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"A.P.",0.0,602.0,602.0,1,0,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"A.P.",1.4,604.0,604.0,1,0,4,2,1,0,0,0,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"A.P.",7.3,605.0,605.0,1,0,23,13,7,2,0,1,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"O.P.",0.4,25.0,25.0,1,1,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"O.P.",18,31.0,31.0,1,64,41,23,13,3,0,1,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"O.P.",21,42.1,42.1,1,45,31,18,9,3,0,1,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"O.P.",74,43.0,43.0,1,136,102,76,18,4,0,3,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"SVR1",0.5,.,.,".",1,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47007,"Regina - Lumsden - Lake Centre",72891,70276,328,"SVR2",0.5,.,.,".",0,2,1,1,0,0,0,0 47,47008,"Regina--Qu'Appelle",47008,"Regina - Qu'Appelle",72891,71219,71219,"A.P.",100,600.0,610.0,11,0,2684,1612,911,97,0,59,5 47,47008,"Regina--Qu'Appelle",47008,"Regina - Qu'Appelle",72891,71219,71219,"M.P.",100,500.0,505.0,6,553,330,151,105,55,0,16,3 47,47008,"Regina--Qu'Appelle",47008,"Regina - Qu'Appelle",72891,71219,71219,"O.P.",100,2.0,400.0,147,48603,26257,13960,10248,1161,0,774,114 47,47008,"Regina--Qu'Appelle",47008,"Regina - Qu'Appelle",72891,71219,71219,"SVR1",100,.,.,".",230,167,34,66,52,0,14,1 47,47008,"Regina--Qu'Appelle",47008,"Regina - Qu'Appelle",72891,71219,71219,"SVR2",100,.,.,".",0,283,139,89,35,0,16,4 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"A.P.",8.3,612.0,612.0,1,0,8,5,2,1,0,0,0 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"O.P.",1.8,139.0,139.0,1,5,3,2,1,0,0,0,0 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"O.P.",21,137.0,137.0,1,38,19,15,3,1,0,1,0 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"O.P.",22,136.0,136.0,1,35,21,12,5,3,0,0,0 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"O.P.",30,138.0,138.0,1,63,38,28,6,2,0,2,0 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"SVR1",0.3,.,.,".",0,0,0,0,0,0,0,0 47,47008,"Regina--Qu'Appelle",47014,"Yorkton - Melville",72891,66476,210,"SVR2",0.3,.,.,".",0,2,2,0,0,0,0,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"A.P.",9.6,608.0,608.0,1,0,7,5,1,2,0,0,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"A.P.",100,600.0,612.0,9,0,3763,1389,539,1749,0,86,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"M.P.",100,501.0,508.0,8,1522,1190,434,297,442,0,17,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"O.P.",29,137.0,137.0,1,53,40,25,5,9,0,1,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"O.P.",100,1.0,417.0,153,52678,30982,11023,6414,12767,0,778,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"SVR1",94,.,.,".",174,103,28,20,53,0,2,0 47,47009,"Regina--Wascana",47013,"Wascana",77208,82241,77208,"SVR2",94,.,.,".",0,481,153,66,249,0,14,0 47,47010,"Saskatoon--Grasswood",47002,"Blackstrap",72010,85541,67063,"A.P.",50,607.0,607.0,1,0,104,70,27,4,0,4,0 47,47010,"Saskatoon--Grasswood",47002,"Blackstrap",72010,85541,67063,"A.P.",100,600.0,616.0,10,0,4241,2147,1623,383,0,88,0 47,47010,"Saskatoon--Grasswood",47002,"Blackstrap",72010,85541,67063,"M.P.",100,500.0,502.0,3,165,112,29,45,24,0,14,0 47,47010,"Saskatoon--Grasswood",47002,"Blackstrap",72010,85541,67063,"O.P.",100,1.0,402.0,138,48857,28296,14227,11454,1919,0,696,0 47,47010,"Saskatoon--Grasswood",47002,"Blackstrap",72010,85541,67063,"SVR1",79,.,.,".",109,63,28,15,17,0,3,0 47,47010,"Saskatoon--Grasswood",47002,"Blackstrap",72010,85541,67063,"SVR2",79,.,.,".",0,871,505,262,80,0,23,0 47,47010,"Saskatoon--Grasswood",47009,"Saskatoon - Humboldt",72010,82743,4947,"A.P.",4.5,608.0,608.0,1,0,35,7,22,5,0,1,0 47,47010,"Saskatoon--Grasswood",47009,"Saskatoon - Humboldt",72010,82743,4947,"A.P.",69,612.0,612.0,1,0,231,114,79,30,0,7,1 47,47010,"Saskatoon--Grasswood",47009,"Saskatoon - Humboldt",72010,82743,4947,"O.P.",85,79.0,79.0,1,315,199,63,93,33,0,8,2 47,47010,"Saskatoon--Grasswood",47009,"Saskatoon - Humboldt",72010,82743,4947,"O.P.",100,130.0,152.0,9,3218,1876,910,732,140,0,55,39 47,47010,"Saskatoon--Grasswood",47009,"Saskatoon - Humboldt",72010,82743,4947,"SVR1",6.2,.,.,".",9,5,2,2,1,0,0,0 47,47010,"Saskatoon--Grasswood",47009,"Saskatoon - Humboldt",72010,82743,4947,"SVR2",6.2,.,.,".",0,42,17,19,6,0,1,1 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"A.P.",3.8,603.0,603.0,1,0,4,2,1,0,0,0,0 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"A.P.",31,612.0,612.0,1,0,103,51,35,13,0,3,1 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"A.P.",96,608.0,608.0,1,0,759,158,463,107,0,25,6 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"A.P.",100,609.0,613.0,4,0,2458,1298,818,253,0,55,34 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"O.P.",15,79.0,79.0,1,57,36,11,17,6,0,2,0 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"O.P.",30,31.0,31.0,1,132,91,60,23,5,0,2,2 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"O.P.",100,68.0,400.0,94,35251,19361,9041,7779,1766,0,515,260 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"SVR1",62,.,.,".",87,52,20,17,11,0,2,1 47,47011,"Saskatoon--University",47009,"Saskatoon - Humboldt",76257,82743,52423,"SVR2",62,.,.,".",0,425,166,187,59,0,7,6 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"A.P.",46,606.0,606.0,1,0,222,81,108,23,0,11,0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"A.P.",91,604.0,604.0,1,0,413,265,105,30,0,14,0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"A.P.",100,608.0,613.0,4,0,1477,844,378,221,0,34,0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"M.P.",33,503.0,503.0,1,83,65,32,26,6,0,1,-0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"M.P.",100,506.0,507.0,2,358,309,233,36,36,0,4,0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"O.P.",97,57.0,57.0,1,333,160,114,42,3,0,2,0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"O.P.",100,58.0,402.0,49,17120,9038,4623,3264,807,0,344,0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"SVR1",31,.,.,".",46,30,9,8,12,0,1,-0 47,47011,"Saskatoon--University",47011,"Saskatoon - Wanuskewin",76257,82553,23834,"SVR2",31,.,.,".",0,117,59,37,16,0,5,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"A.P.",97,605.0,605.0,1,0,738,472,246,12,0,10,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"A.P.",100,603.0,606.0,3,0,1774,925,775,36,0,38,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"M.P.",100,500.0,502.0,3,681,429,212,189,25,0,3,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"O.P.",38,33.0,33.0,1,166,104,65,36,1,0,3,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"O.P.",100,37.0,138.0,101,37009,18049,7279,9950,399,0,421,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"SVR1",76,.,.,".",240,188,28,78,74,0,8,0 47,47012,"Saskatoon West",47010,"Saskatoon - Rosetown - Biggar",76704,72893,56462,"SVR2",76,.,.,".",0,725,325,375,16,0,10,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"A.P.",0.4,604.0,604.0,1,0,2,1,0,0,0,0,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"A.P.",54,606.0,606.0,1,0,260,95,125,26,0,13,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"A.P.",100,605.0,614.0,3,0,959,491,365,66,0,37,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"M.P.",67,503.0,503.0,1,166,130,65,53,11,0,1,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"M.P.",100,504.0,505.0,2,419,273,128,123,16,0,6,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"O.P.",1.8,56.0,56.0,1,6,4,2,1,0,0,0,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"O.P.",2.2,57.0,57.0,1,8,4,3,1,0,0,0,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"O.P.",100,78.0,401.0,35,13357,6704,2812,3222,442,0,228,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"SVR1",24,.,.,".",36,24,7,6,9,0,1,0 47,47012,"Saskatoon West",47011,"Saskatoon - Wanuskewin",76704,82553,20242,"SVR2",24,.,.,".",0,91,46,29,13,0,4,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"A.P.",51,605.0,605.0,1,0,28,20,5,2,0,1,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"A.P.",100,600.0,615.0,15,0,2041,1483,369,132,0,57,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"M.P.",100,500.0,508.0,9,921,562,304,149,90,0,19,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"O.P.",3.4,31.0,31.0,1,7,5,4,1,0,0,0,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"O.P.",100,1.0,149.0,148,45346,25608,19137,4760,921,0,790,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"SVR1",99,.,.,".",95,56,27,10,13,0,7,0 47,47013,"Souris--Moose Mountain",47012,"Souris - Moose Mountain",72058,68013,67138,"SVR2",99,.,.,".",0,422,290,73,42,0,17,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"A.P.",67,608.0,608.0,1,0,52,32,5,15,0,0,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"A.P.",100,609.0,611.0,3,270,191,78,45,67,0,1,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"O.P.",27,137.0,137.0,1,50,37,23,5,9,0,1,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"O.P.",75,139.0,139.0,1,205,149,80,23,40,0,6,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"O.P.",100,138.0,146.0,8,2702,1590,936,240,369,0,45,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"SVR1",5.6,.,.,".",10,6,2,1,3,0,0,0 47,47013,"Souris--Moose Mountain",47013,"Wascana",72058,82241,4783,"SVR2",5.6,.,.,".",0,29,9,4,15,0,1,0 47,47013,"Souris--Moose Mountain",47014,"Yorkton - Melville",72058,66476,137,"A.P.",0.1,612.0,612.0,1,0,0,0,0,0,0,0,0 47,47013,"Souris--Moose Mountain",47014,"Yorkton - Melville",72058,66476,137,"O.P.",0.5,153.0,153.0,1,1,1,0,0,0,0,0,-0 47,47013,"Souris--Moose Mountain",47014,"Yorkton - Melville",72058,66476,137,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 47,47013,"Souris--Moose Mountain",47014,"Yorkton - Melville",72058,66476,137,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 47,47014,"Yorkton--Melville",47003,"Desneth - Missinippi - Churchill River",71270,71376,15,"A.P.",0.0,616.0,616.0,1,0,0,0,0,0,0,0,0 47,47014,"Yorkton--Melville",47003,"Desneth - Missinippi - Churchill River",71270,71376,15,"A.P.",50,617.0,617.0,1,0,11,0,8,3,0,0,0 47,47014,"Yorkton--Melville",47003,"Desneth - Missinippi - Churchill River",71270,71376,15,"O.P.",0.0,149.0,149.0,1,0,0,0,0,0,0,0,0 47,47014,"Yorkton--Melville",47003,"Desneth - Missinippi - Churchill River",71270,71376,15,"O.P.",99,152.0,152.0,1,251,107,8,78,19,0,2,0 47,47014,"Yorkton--Melville",47003,"Desneth - Missinippi - Churchill River",71270,71376,15,"SVR1",0.6,.,.,".",2,2,0,1,1,0,0,0 47,47014,"Yorkton--Melville",47003,"Desneth - Missinippi - Churchill River",71270,71376,15,"SVR2",0.6,.,.,".",0,1,1,0,0,0,0,0 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"A.P.",1.1,604.0,604.0,1,0,1,1,0,0,0,0,0 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"A.P.",47,601.0,601.0,1,0,29,21,5,1,0,1,0 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"A.P.",51,606.0,606.0,1,0,87,58,22,3,0,1,3 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"A.P.",100,602.0,602.0,1,0,78,56,15,4,0,0,3 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"M.P.",67,501.0,501.0,1,37,36,15,9,6,0,6,1 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"O.P.",8.9,40.0,40.0,1,28,19,15,2,1,0,0,1 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"O.P.",11,55.0,55.0,1,31,22,17,4,0,0,1,0 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"O.P.",82,18.0,18.0,1,141,81,67,11,1,0,1,2 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"O.P.",100,19.0,67.0,14,3410,2065,1487,436,61,0,34,47 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"SVR1",6.4,.,.,".",9,5,2,2,1,0,0,0 47,47014,"Yorkton--Melville",47009,"Saskatoon - Humboldt",71270,82743,5126,"SVR2",6.4,.,.,".",0,44,17,19,6,0,1,1 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"A.P.",92,612.0,612.0,1,0,83,57,17,8,0,1,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"A.P.",100,600.0,616.0,16,0,3127,2204,597,263,0,63,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"M.P.",100,500.0,500.0,1,0,0,0,0,0,0,0,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"O.P.",70,138.0,138.0,1,145,86,64,13,4,0,5,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"O.P.",78,136.0,136.0,1,124,73,44,18,10,0,2,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"O.P.",79,137.0,137.0,1,145,74,55,10,5,0,3,-0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"O.P.",98,139.0,139.0,1,301,180,122,43,9,0,6,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"O.P.",99,153.0,153.0,1,202,125,87,28,7,0,4,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"O.P.",100,1.0,174.0,173,49626,27062,18645,6072,1680,0,665,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"SVR1",100,.,.,".",112,72,26,17,24,0,5,0 47,47014,"Yorkton--Melville",47014,"Yorkton - Melville",71270,66476,66129,"SVR2",100,.,.,".",0,804,538,99,150,0,17,0 48,48001,"Banff--Airdrie",48020,"Macleod",105442,123778,2656,"A.P.",36,610.0,610.0,1,0,206,162,11,15,0,11,8 48,48001,"Banff--Airdrie",48020,"Macleod",105442,123778,2656,"O.P.",1.1,3.0,3.0,1,5,3,3,0,0,0,0,0 48,48001,"Banff--Airdrie",48020,"Macleod",105442,123778,2656,"O.P.",100,4.0,6.0,5,1714,1006,764,80,56,0,61,45 48,48001,"Banff--Airdrie",48020,"Macleod",105442,123778,2656,"SVR1",2.0,.,.,".",3,1,1,0,0,0,0,0 48,48001,"Banff--Airdrie",48020,"Macleod",105442,123778,2656,"SVR2",2.0,.,.,".",0,17,14,1,1,0,1,1 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"A.P.",0.0,603.0,603.0,1,0,0,0,0,0,0,0,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"A.P.",1.3,602.0,602.0,1,0,7,6,0,0,0,0,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"A.P.",97,609.0,609.0,1,0,691,562,41,54,0,34,1 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"A.P.",100,607.0,607.0,1,0,742,594,65,42,0,41,1 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"A.P.",100,605.0,612.0,6,0,3965,2567,480,577,0,334,7 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"M.P.",100,503.0,505.0,3,524,312,246,24,31,0,8,3 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",0.3,47.0,47.0,1,2,1,1,0,0,0,0,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",15,9.0,9.0,1,54,29,24,1,1,0,2,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",55,125.0,125.0,1,280,147,109,15,16,0,7,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",96,73.0,73.0,1,524,299,238,19,22,0,18,1 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",98,74.0,74.0,1,653,372,306,32,14,0,20,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",99,125.1,125.1,1,275,176,136,5,21,0,15,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"O.P.",100,10.0,400.0,153,66690,33577,23662,4698,2453,0,2668,96 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"SVR1",72,.,.,".",134,80,49,6,19,0,7,0 48,48001,"Banff--Airdrie",48027,"Wild Rose",105442,138617,102786,"SVR2",72,.,.,".",0,695,497,56,90,0,51,2 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"A.P.",0.0,612.0,612.0,1,0,0,0,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"A.P.",65,606.0,606.0,1,0,108,94,9,1,0,2,2 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"A.P.",71,605.0,605.0,1,0,395,366,16,1,0,6,5 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"A.P.",100,600.0,613.0,8,0,2599,2123,281,79,0,91,25 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"M.P.",100,500.0,512.0,12,1334,810,684,53,35,0,13,25 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",0.0,206.0,206.0,1,0,0,0,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",27,93.0,93.0,1,94,49,45,1,1,0,1,0 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",44,114.0,114.0,1,215,116,99,9,2,0,4,2 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",74,87.0,87.0,1,271,199,182,6,2,0,4,5 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",79,113.0,113.0,1,363,197,171,13,6,0,5,2 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",85,89.0,89.0,1,374,211,174,22,3,0,7,5 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"O.P.",100,1.0,222.0,133,48900,26650,22333,2687,447,0,858,325 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"SVR1",58,.,.,".",72,43,21,6,13,0,3,-0 48,48002,"Battle River--Crowfoot",48010,"Crowfoot",107140,125481,70576,"SVR2",58,.,.,".",0,328,268,28,16,0,10,6 48,48002,"Battle River--Crowfoot",48021,"Medicine Hat",107140,119670,532,"A.P.",50,602.0,602.0,1,0,40,30,2,4,0,4,1 48,48002,"Battle River--Crowfoot",48021,"Medicine Hat",107140,119670,532,"O.P.",100,60.0,60.0,1,356,117,104,5,1,0,6,1 48,48002,"Battle River--Crowfoot",48021,"Medicine Hat",107140,119670,532,"SVR1",0.4,.,.,".",1,1,0,0,0,0,0,-0 48,48002,"Battle River--Crowfoot",48021,"Medicine Hat",107140,119670,532,"SVR2",0.4,.,.,".",0,2,1,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"A.P.",0.1,606.0,606.0,1,0,0,0,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"A.P.",0.5,602.0,602.0,1,0,1,1,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"A.P.",15,616.0,616.0,1,0,67,52,5,5,0,5,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"A.P.",97,604.0,604.0,1,0,171,129,25,8,0,10,-0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"A.P.",100,605.0,614.0,5,0,691,574,54,25,0,35,3 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"M.P.",50,501.0,501.0,1,58,39,33,3,3,0,0,1 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"M.P.",100,504.0,513.0,5,489,366,305,31,16,0,14,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"O.P.",1.8,91.0,91.0,1,7,4,3,1,0,0,0,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"O.P.",8.8,54.0,54.0,1,30,17,14,2,0,0,1,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"O.P.",57,72.0,72.0,1,217,138,103,21,6,0,9,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"O.P.",100,73.0,73.0,1,475,311,220,41,8,0,42,1 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"O.P.",100,68.0,210.0,69,24911,13872,11386,1360,333,0,717,76 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"SVR1",31,.,.,".",67,39,31,2,5,0,1,0 48,48002,"Battle River--Crowfoot",48024,"Vegreville - Wainwright",107140,117230,36012,"SVR2",31,.,.,".",0,115,87,10,7,0,10,1 48,48002,"Battle River--Crowfoot",48026,"Wetaskiwin",107140,113780,20,"A.P.",0.8,603.0,603.0,1,0,3,2,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48026,"Wetaskiwin",107140,113780,20,"O.P.",8.7,31.0,31.0,1,23,14,11,1,0,0,1,0 48,48002,"Battle River--Crowfoot",48026,"Wetaskiwin",107140,113780,20,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48002,"Battle River--Crowfoot",48026,"Wetaskiwin",107140,113780,20,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"A.P.",19,605.0,605.0,1,0,105,97,4,0,0,2,1 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"A.P.",35,606.0,606.0,1,0,58,50,5,1,0,1,1 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"A.P.",92,609.0,609.0,1,0,134,109,17,2,0,4,3 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"A.P.",97,615.0,615.0,1,0,448,396,21,17,0,10,5 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"A.P.",98,610.0,610.0,1,0,534,458,34,28,0,10,4 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"A.P.",100,611.0,614.0,3,0,1051,876,101,32,0,37,5 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"M.P.",100,511.0,513.0,2,204,122,107,5,3,0,4,3 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",21,113.0,113.0,1,96,52,45,3,2,0,1,1 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",42,93.0,93.0,1,147,76,71,2,1,0,1,0 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",56,114.0,114.0,1,279,149,128,11,2,0,6,2 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",68,146.0,146.0,1,212,88,66,7,7,0,5,1 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",70,167.0,167.0,1,386,163,137,13,6,0,7,1 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",87,174.0,174.0,1,145,80,69,6,0,0,3,2 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"O.P.",100,101.0,212.0,81,34876,16998,14311,1390,483,0,592,222 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"SVR1",41,.,.,".",51,30,15,4,9,0,2,0 48,48003,"Bow River",48010,"Crowfoot",103871,125481,53516,"SVR2",41,.,.,".",0,231,189,20,11,0,7,5 48,48003,"Bow River",48020,"Macleod",103871,123778,9911,"A.P.",100,604.0,614.0,2,0,314,258,18,11,0,9,18 48,48003,"Bow River",48020,"Macleod",103871,123778,9911,"M.P.",100,501.0,501.0,1,92,72,61,8,1,0,0,2 48,48003,"Bow River",48020,"Macleod",103871,123778,9911,"O.P.",100,86.0,101.0,15,6397,2999,2358,333,95,0,89,124 48,48003,"Bow River",48020,"Macleod",103871,123778,9911,"SVR1",7.6,.,.,".",10,5,3,1,1,0,1,0 48,48003,"Bow River",48020,"Macleod",103871,123778,9911,"SVR2",7.6,.,.,".",0,65,51,4,4,0,3,3 48,48003,"Bow River",48021,"Medicine Hat",103871,119670,40444,"A.P.",100,600.0,613.0,5,0,1373,1167,69,75,0,49,13 48,48003,"Bow River",48021,"Medicine Hat",103871,119670,40444,"M.P.",100,500.0,502.0,2,319,273,233,11,18,0,8,3 48,48003,"Bow River",48021,"Medicine Hat",103871,119670,40444,"O.P.",100,1.0,59.0,61,24890,10862,9033,872,448,0,381,128 48,48003,"Bow River",48021,"Medicine Hat",103871,119670,40444,"SVR1",31,.,.,".",64,38,18,4,12,0,3,0 48,48003,"Bow River",48021,"Medicine Hat",103871,119670,40444,"SVR2",31,.,.,".",0,149,106,12,22,0,9,0 48,48004,"Calgary Centre",48002,"Calgary East",108931,111223,3590,"A.P.",100,605.0,605.0,1,0,155,79,16,48,0,12,-0 48,48004,"Calgary Centre",48002,"Calgary East",108931,111223,3590,"O.P.",100,110.0,110.0,1,637,308,153,48,69,0,35,3 48,48004,"Calgary Centre",48002,"Calgary East",108931,111223,3590,"O.P.",100,107.0,111.0,5,2239,1167,472,195,356,0,139,5 48,48004,"Calgary Centre",48002,"Calgary East",108931,111223,3590,"SVR1",3.8,.,.,".",8,5,2,1,2,0,0,0 48,48004,"Calgary Centre",48002,"Calgary East",108931,111223,3590,"SVR2",3.8,.,.,".",0,15,10,2,2,0,1,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"A.P.",0.7,600.0,600.0,1,0,2,2,0,0,0,0,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"A.P.",57,608.0,608.0,1,0,291,176,30,61,0,25,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"A.P.",100,602.0,610.0,8,0,5206,2953,538,1187,0,528,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"M.P.",33,500.0,500.0,1,59,49,32,6,7,0,3,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"M.P.",100,502.0,507.0,6,855,700,511,68,85,0,36,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"O.P.",9.5,14.0,14.0,1,20,5,3,1,1,0,1,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"O.P.",100,33.0,404.0,187,72486,32731,18101,5300,5911,0,3419,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"SVR1",82,.,.,".",293,145,72,10,47,0,16,0 48,48004,"Calgary Centre",48006,"Calgary Centre",108931,127891,105341,"SVR2",82,.,.,".",0,672,383,71,150,0,68,0 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"A.P.",29,603.0,603.0,1,0,104,69,10,11,0,13,0 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"A.P.",67,607.0,607.0,1,0,223,135,31,28,0,29,0 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"A.P.",100,604.0,611.0,7,0,3535,1782,426,763,0,552,12 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"M.P.",67,501.0,501.0,1,147,112,74,16,17,0,5,-0 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"M.P.",100,502.0,504.0,3,833,570,416,65,62,0,20,7 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"O.P.",100,74.0,400.0,156,56481,29882,15451,5300,4527,0,4481,123 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"SVR1",68,.,.,".",156,86,38,6,31,0,10,0 48,48005,"Calgary Confederation",48003,"Calgary Centre-North",111785,114784,77131,"SVR2",68,.,.,".",0,421,223,39,94,0,63,2 48,48005,"Calgary Confederation",48005,"Calgary - Nose Hill",111785,152363,8914,"A.P.",55,605.0,605.0,1,0,394,248,45,62,0,40,0 48,48005,"Calgary Confederation",48005,"Calgary - Nose Hill",111785,152363,8914,"O.P.",100,96.0,113.0,18,6238,3480,2131,520,447,0,382,0 48,48005,"Calgary Confederation",48005,"Calgary - Nose Hill",111785,152363,8914,"SVR1",6.1,.,.,".",10,5,3,0,1,0,0,0 48,48005,"Calgary Confederation",48005,"Calgary - Nose Hill",111785,152363,8914,"SVR2",6.1,.,.,".",0,53,36,5,9,0,3,0 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"A.P.",64,609.0,609.0,1,0,189,108,24,34,0,22,0 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"A.P.",89,604.0,604.0,1,0,734,412,64,180,0,77,1 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"A.P.",100,605.0,608.0,2,0,715,323,88,210,0,92,2 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"M.P.",50,500.0,500.0,1,100,76,56,9,10,0,1,1 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"M.P.",67,502.0,506.0,2,294,225,160,22,29,0,10,3 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"M.P.",100,503.0,507.0,2,465,370,263,32,55,0,15,5 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"O.P.",100,63.0,148.0,49,17850,9446,4601,1323,2352,0,1125,45 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"SVR1",18,.,.,".",34,18,9,0,6,0,2,0 48,48005,"Calgary Confederation",48009,"Calgary West",111785,149593,25740,"SVR2",18,.,.,".",0,134,81,10,29,0,13,0 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"A.P.",16,607.0,607.0,1,0,37,24,6,4,0,2,0 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"A.P.",39,606.0,606.0,1,0,149,117,14,11,0,5,0 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"A.P.",100,600.0,604.0,5,0,1521,986,208,230,0,87,10 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"M.P.",67,500.0,500.0,1,212,57,47,3,5,0,2,1 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"O.P.",100,1.0,130.0,121,44700,16812,11229,2486,2023,0,936,138 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"SVR1",59,.,.,".",131,72,27,8,34,0,3,-0 48,48006,"Calgary Forest Lawn",48002,"Calgary East",108251,111223,68354,"SVR2",59,.,.,".",0,241,156,34,39,0,12,1 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"A.P.",0.1,602.0,602.0,1,0,1,0,0,0,0,0,0 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"A.P.",64,606.0,606.0,1,0,282,148,10,116,0,5,2 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"A.P.",100,607.0,611.0,3,0,1397,851,101,379,0,63,3 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"M.P.",67,501.0,501.0,1,185,107,76,6,16,0,4,5 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"M.P.",100,500.0,500.0,1,176,118,88,7,15,0,5,3 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"O.P.",1.4,25.0,25.0,1,3,1,0,0,0,0,0,0 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"O.P.",100,50.0,170.1,67,25476,9917,5709,1165,2474,0,505,64 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"SVR1",30,.,.,".",46,29,9,4,15,0,2,0 48,48006,"Calgary Forest Lawn",48004,"Calgary Northeast",108251,150003,39851,"SVR2",30,.,.,".",0,149,98,11,34,0,6,0 48,48006,"Calgary Forest Lawn",48010,"Crowfoot",108251,125481,46,"A.P.",0.4,610.0,610.0,1,0,2,2,0,0,0,0,0 48,48006,"Calgary Forest Lawn",48010,"Crowfoot",108251,125481,46,"O.P.",6.5,146.0,146.0,1,20,8,6,1,1,0,1,0 48,48006,"Calgary Forest Lawn",48010,"Crowfoot",108251,125481,46,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48006,"Calgary Forest Lawn",48010,"Crowfoot",108251,125481,46,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48007,"Calgary Heritage",48007,"Calgary Southeast",108320,152929,1259,"A.P.",4.0,601.0,601.0,1,0,28,22,2,2,0,2,0 48,48007,"Calgary Heritage",48007,"Calgary Southeast",108320,152929,1259,"O.P.",100,26.0,26.0,1,823,281,165,66,30,0,15,5 48,48007,"Calgary Heritage",48007,"Calgary Southeast",108320,152929,1259,"SVR1",0.8,.,.,".",1,1,0,0,0,0,0,0 48,48007,"Calgary Heritage",48007,"Calgary Southeast",108320,152929,1259,"SVR2",0.8,.,.,".",0,6,5,0,1,0,0,0 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"A.P.",0.2,611.0,611.0,1,0,1,0,0,0,0,0,0 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"A.P.",17,609.0,609.0,1,0,83,65,10,6,0,3,-0 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"A.P.",39,607.0,607.0,1,0,347,291,21,24,0,9,2 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"A.P.",100,601.0,601.0,1,0,458,339,49,45,0,22,3 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"A.P.",100,600.0,610.0,8,0,3860,2925,337,367,0,217,14 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"M.P.",50,501.0,501.0,1,126,50,42,1,5,0,1,1 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"M.P.",100,500.0,502.0,2,540,298,235,20,32,0,5,6 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"O.P.",2.5,207.0,207.0,1,31,13,10,2,1,0,0,0 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"O.P.",100,48.0,48.0,1,334,142,100,20,15,0,7,0 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"O.P.",100,1.0,221.0,190,75104,40455,30018,5085,2874,0,2256,222 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"SVR1",80,.,.,".",138,81,47,6,19,0,7,1 48,48007,"Calgary Heritage",48008,"Calgary Southwest",108320,136011,107061,"SVR2",80,.,.,".",0,630,497,43,65,0,23,2 48,48008,"Calgary Midnapore",48002,"Calgary East",111227,111223,0,"A.P.",0.0,605.0,605.0,1,0,0,0,0,0,0,0,-0 48,48008,"Calgary Midnapore",48002,"Calgary East",111227,111223,0,"O.P.",0.1,110.0,110.0,1,1,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48002,"Calgary East",111227,111223,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48002,"Calgary East",111227,111223,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48007,"Calgary Southeast",111227,152929,81172,"A.P.",96,601.0,601.0,1,0,669,526,49,51,0,39,4 48,48008,"Calgary Midnapore",48007,"Calgary Southeast",111227,152929,81172,"A.P.",100,600.0,608.0,7,0,3482,2719,275,266,0,202,20 48,48008,"Calgary Midnapore",48007,"Calgary Southeast",111227,152929,81172,"M.P.",100,500.0,504.0,4,780,610,491,45,46,0,18,10 48,48008,"Calgary Midnapore",48007,"Calgary Southeast",111227,152929,81172,"O.P.",100,1.0,401.0,155,59067,32269,24147,3495,2012,0,2390,225 48,48008,"Calgary Midnapore",48007,"Calgary Southeast",111227,152929,81172,"SVR1",56,.,.,".",101,51,34,1,13,0,3,1 48,48008,"Calgary Midnapore",48007,"Calgary Southeast",111227,152929,81172,"SVR2",56,.,.,".",0,434,344,25,38,0,26,2 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"A.P.",0.0,601.0,601.0,1,0,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"A.P.",61,607.0,607.0,1,0,545,457,34,37,0,15,2 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"A.P.",83,609.0,609.0,1,0,415,325,48,27,0,14,-0 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"A.P.",100,611.0,611.0,1,0,358,281,28,33,0,12,4 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"M.P.",50,501.0,501.0,1,126,50,42,1,5,0,1,1 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"M.P.",100,503.0,503.0,1,210,167,136,14,10,0,6,1 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"O.P.",0.0,54.0,54.0,1,0,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"O.P.",0.4,48.0,48.0,1,1,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"O.P.",97,207.0,207.0,1,1176,491,368,74,32,0,16,0 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"O.P.",100,159.0,226.0,41,17197,8614,6683,1016,503,0,368,44 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"SVR1",20,.,.,".",34,20,12,2,5,0,2,0 48,48008,"Calgary Midnapore",48008,"Calgary Southwest",111227,136011,28950,"SVR2",20,.,.,".",0,155,122,11,16,0,6,0 48,48008,"Calgary Midnapore",48020,"Macleod",111227,123778,1105,"A.P.",9.2,609.0,609.0,1,0,46,37,2,3,0,2,2 48,48008,"Calgary Midnapore",48020,"Macleod",111227,123778,1105,"O.P.",0.0,37.0,37.0,1,0,0,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48020,"Macleod",111227,123778,1105,"O.P.",83,24.0,24.0,1,759,391,291,26,27,0,17,29 48,48008,"Calgary Midnapore",48020,"Macleod",111227,123778,1105,"SVR1",0.9,.,.,".",1,1,0,0,0,0,0,0 48,48008,"Calgary Midnapore",48020,"Macleod",111227,123778,1105,"SVR2",0.9,.,.,".",0,8,6,0,0,0,0,0 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"A.P.",33,607.0,607.0,1,0,111,67,15,14,0,15,0 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"A.P.",71,603.0,603.0,1,0,259,173,26,29,0,32,0 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"A.P.",100,600.0,602.0,3,0,1375,964,148,149,0,109,5 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"M.P.",33,501.0,501.0,1,73,56,37,8,8,0,3,-0 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"M.P.",100,500.0,500.0,1,261,207,163,16,20,0,7,1 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"O.P.",100,1.0,129.0,80,26585,13140,8729,1920,1234,0,1205,52 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"SVR1",32,.,.,".",73,40,18,3,15,0,5,0 48,48009,"Calgary Nose Hill",48003,"Calgary Centre-North",109286,114784,37653,"SVR2",32,.,.,".",0,197,104,19,44,0,29,1 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"A.P.",4.1,602.0,602.0,1,0,20,15,2,2,0,1,0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"A.P.",21,611.0,611.0,1,0,95,67,11,14,0,3,0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"A.P.",86,603.0,603.0,1,0,692,498,35,140,0,19,0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"A.P.",100,606.0,610.0,5,0,3085,2225,279,435,0,146,0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"M.P.",33,500.0,500.0,1,123,90,75,4,10,0,1,-0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"O.P.",58,50.0,50.0,1,256,124,100,5,12,0,8,0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"O.P.",100,51.0,196.0,101,48353,22114,15602,2841,2441,0,1230,0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"SVR1",48,.,.,".",76,41,24,4,11,0,2,-0 48,48009,"Calgary Nose Hill",48005,"Calgary - Nose Hill",109286,152363,71611,"SVR2",48,.,.,".",0,415,282,41,68,0,23,-0 48,48009,"Calgary Nose Hill",48027,"Wild Rose",109286,138617,22,"A.P.",0.0,607.0,607.0,1,0,0,0,0,0,0,0,0 48,48009,"Calgary Nose Hill",48027,"Wild Rose",109286,138617,22,"O.P.",0.0,74.0,74.0,1,0,0,0,0,0,0,0,0 48,48009,"Calgary Nose Hill",48027,"Wild Rose",109286,138617,22,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48009,"Calgary Nose Hill",48027,"Wild Rose",109286,138617,22,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"A.P.",14,603.0,603.0,1,0,115,83,6,23,0,3,-0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"A.P.",45,605.0,605.0,1,0,329,207,37,51,0,33,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"A.P.",79,611.0,611.0,1,0,348,247,39,51,0,11,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"A.P.",96,602.0,602.0,1,0,453,337,39,56,0,21,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"A.P.",100,600.0,604.0,3,0,1946,1483,152,228,0,83,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"M.P.",67,500.0,500.0,1,246,181,151,8,21,0,1,-0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"O.P.",42,50.0,50.0,1,184,90,72,4,8,0,5,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"O.P.",100,1.0,205.0,95,46351,23046,16203,3068,2334,0,1441,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"SVR1",46,.,.,".",73,40,23,4,11,0,2,0 48,48010,"Calgary Rocky Ridge",48005,"Calgary - Nose Hill",108901,152363,71838,"SVR2",46,.,.,".",0,398,271,40,66,0,22,0 48,48010,"Calgary Rocky Ridge",48009,"Calgary West",108901,149593,36756,"A.P.",11,604.0,604.0,1,0,86,49,7,21,0,9,0 48,48010,"Calgary Rocky Ridge",48009,"Calgary West",108901,149593,36756,"A.P.",100,600.0,603.0,4,0,2589,1752,217,404,0,211,5 48,48010,"Calgary Rocky Ridge",48009,"Calgary West",108901,149593,36756,"M.P.",50,500.0,500.0,1,100,76,56,9,10,0,1,1 48,48010,"Calgary Rocky Ridge",48009,"Calgary West",108901,149593,36756,"O.P.",100,1.0,401.0,63,25364,13979,9000,1392,2225,0,1317,45 48,48010,"Calgary Rocky Ridge",48009,"Calgary West",108901,149593,36756,"SVR1",25,.,.,".",47,25,12,0,8,0,3,0 48,48010,"Calgary Rocky Ridge",48009,"Calgary West",108901,149593,36756,"SVR2",25,.,.,".",0,182,110,14,39,0,18,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"A.P.",0.1,607.0,607.0,1,0,0,0,0,0,0,0,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"A.P.",2.6,609.0,609.0,1,0,19,15,1,1,0,1,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"O.P.",1.1,125.1,125.1,1,3,2,1,0,0,0,0,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"O.P.",1.4,74.0,74.0,1,9,5,4,0,0,0,0,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"O.P.",3.6,73.0,73.0,1,20,11,9,1,1,0,1,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"O.P.",45,125.0,125.0,1,233,122,91,12,13,0,6,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"SVR1",0.3,.,.,".",1,0,0,0,0,0,0,0 48,48010,"Calgary Rocky Ridge",48027,"Wild Rose",108901,138617,307,"SVR2",0.3,.,.,".",0,3,2,0,0,0,0,0 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"A.P.",0.0,605.0,605.0,1,0,0,0,0,0,0,0,0 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"A.P.",61,606.0,606.0,1,0,232,183,23,18,0,9,1 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"A.P.",84,607.0,607.0,1,0,197,129,34,23,0,12,0 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"A.P.",100,608.0,609.0,2,0,416,295,61,42,0,16,2 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"M.P.",33,500.0,500.0,1,106,29,23,1,3,0,1,0 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"M.P.",100,501.0,501.0,1,273,132,83,29,13,0,6,1 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"O.P.",0.0,110.0,110.0,1,0,0,0,0,0,0,0,0 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"O.P.",100,123.0,195.0,72,27461,12922,9244,1699,1135,0,760,84 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"SVR1",37,.,.,".",81,45,17,5,21,0,2,0 48,48011,"Calgary Shepard",48002,"Calgary East",110296,111223,39279,"SVR2",37,.,.,".",0,149,97,21,24,0,7,0 48,48011,"Calgary Shepard",48007,"Calgary Southeast",110296,152929,70498,"A.P.",100,604.0,613.0,6,0,3016,2378,223,250,0,151,14 48,48011,"Calgary Shepard",48007,"Calgary Southeast",110296,152929,70498,"M.P.",100,503.0,503.0,1,166,115,89,10,11,0,1,4 48,48011,"Calgary Shepard",48007,"Calgary Southeast",110296,152929,70498,"O.P.",100,98.0,404.0,93,45424,21841,16966,2271,1262,0,1210,132 48,48011,"Calgary Shepard",48007,"Calgary Southeast",110296,152929,70498,"SVR1",43,.,.,".",77,39,26,0,10,0,2,0 48,48011,"Calgary Shepard",48007,"Calgary Southeast",110296,152929,70498,"SVR2",43,.,.,".",0,331,262,19,29,0,20,1 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"A.P.",1.6,610.0,610.0,1,0,9,8,1,0,0,0,0 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"A.P.",2.5,615.0,615.0,1,0,12,10,1,0,0,0,0 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"O.P.",13,174.0,174.0,1,23,12,11,1,0,0,0,0 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"O.P.",26,146.0,146.0,1,81,34,25,3,3,0,2,1 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"O.P.",30,167.0,167.0,1,163,69,58,5,2,0,3,0 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"SVR1",0.3,.,.,".",0,0,0,0,0,0,0,0 48,48011,"Calgary Shepard",48010,"Crowfoot",110296,125481,519,"SVR2",0.3,.,.,".",0,2,1,0,0,0,0,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"A.P.",43,608.0,608.0,1,0,219,132,22,46,0,18,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"A.P.",99,600.0,600.0,1,0,327,231,37,42,0,17,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"A.P.",100,601.0,601.0,1,0,688,457,81,103,0,47,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"M.P.",67,500.0,500.0,1,118,97,65,12,14,0,7,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"O.P.",91,14.0,14.0,1,190,50,28,10,6,0,5,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"O.P.",100,1.0,172.1,43,15452,7878,5157,1111,929,0,681,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"SVR1",18,.,.,".",63,31,16,2,10,0,3,0 48,48012,"Calgary Signal Hill",48006,"Calgary Centre",109647,127891,22550,"SVR2",18,.,.,".",0,144,82,15,32,0,15,0 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"A.P.",36,609.0,609.0,1,0,108,62,14,20,0,13,0 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"A.P.",100,606.0,618.0,11,0,5596,3778,326,1013,0,471,8 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"M.P.",33,502.0,506.0,2,147,112,80,11,15,0,5,2 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"M.P.",100,501.0,505.0,3,772,555,399,67,65,0,20,4 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"O.P.",100,93.0,404.0,150,58529,28649,18399,3016,4538,0,2594,102 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"SVR1",57,.,.,".",110,58,29,1,20,0,7,1 48,48012,"Calgary Signal Hill",48009,"Calgary West",109647,149593,87097,"SVR2",57,.,.,".",0,425,258,33,92,0,42,1 48,48012,"Calgary Signal Hill",48020,"Macleod",109647,123778,0,"A.P.",0.5,610.0,610.0,1,0,3,2,0,0,0,0,0 48,48012,"Calgary Signal Hill",48020,"Macleod",109647,123778,0,"O.P.",0.2,8.0,8.0,1,2,1,1,0,0,0,0,0 48,48012,"Calgary Signal Hill",48020,"Macleod",109647,123778,0,"O.P.",6.6,10.0,10.0,1,52,30,23,1,2,0,1,2 48,48012,"Calgary Signal Hill",48020,"Macleod",109647,123778,0,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 48,48012,"Calgary Signal Hill",48020,"Macleod",109647,123778,0,"SVR2",0.1,.,.,".",0,1,0,0,0,0,0,0 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"A.P.",36,606.0,606.0,1,0,156,82,6,65,0,3,1 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"A.P.",100,602.0,602.0,1,0,696,285,38,356,0,17,1 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"A.P.",100,600.0,609.0,7,0,3549,1962,245,1149,0,175,18 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"M.P.",33,501.0,501.0,1,93,53,38,3,8,0,2,2 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"M.P.",100,502.0,502.0,1,176,132,93,14,19,0,5,1 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"O.P.",99,25.0,25.0,1,181,36,17,1,19,0,0,0 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"O.P.",100,1.0,402.0,145,60861,24413,13839,2618,6707,0,1144,105 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"SVR1",70,.,.,".",110,70,23,8,34,0,4,0 48,48013,"Calgary Skyview",48004,"Calgary Northeast",110189,150003,110152,"SVR2",70,.,.,".",0,352,232,25,81,0,13,1 48,48013,"Calgary Skyview",48027,"Wild Rose",110189,138617,37,"A.P.",0.0,607.0,607.0,1,0,0,0,0,0,0,0,0 48,48013,"Calgary Skyview",48027,"Wild Rose",110189,138617,37,"O.P.",0.8,74.0,74.0,1,5,3,2,0,0,0,0,0 48,48013,"Calgary Skyview",48027,"Wild Rose",110189,138617,37,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48013,"Calgary Skyview",48027,"Wild Rose",110189,138617,37,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"A.P.",13,612.0,612.0,1,0,72,51,8,11,0,3,1 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"A.P.",38,606.0,606.0,1,0,159,107,22,25,0,4,1 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"A.P.",42,602.0,602.0,1,0,201,146,30,21,0,2,3 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"A.P.",85,607.0,607.0,1,0,513,319,53,126,0,12,2 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"A.P.",99,600.0,600.0,1,0,470,281,114,63,0,8,5 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"A.P.",100,601.0,613.0,9,0,4574,2136,812,1447,0,153,26 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"M.P.",100,502.0,507.0,6,1374,956,581,183,172,0,14,6 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"O.P.",74,65.0,65.0,1,298,66,34,22,7,0,3,0 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"O.P.",88,2.0,2.0,1,289,123,56,42,23,0,3,0 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"O.P.",88,186.0,186.0,1,403,174,98,52,18,0,4,2 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"O.P.",98,1.0,1.0,1,370,207,124,48,31,0,4,0 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"O.P.",100,3.0,418.0,189,69249,32784,14549,9193,7603,0,1199,240 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"SVR1",84,.,.,".",339,220,64,35,108,0,9,4 48,48014,"Edmonton Centre",48012,"Edmonton Centre",106121,122822,102539,"SVR2",84,.,.,".",0,778,333,153,266,0,18,7 48,48014,"Edmonton Centre",48017,"Edmonton - Spruce Grove",106121,151389,3582,"A.P.",44,611.0,611.0,1,0,215,131,21,53,0,10,0 48,48014,"Edmonton Centre",48017,"Edmonton - Spruce Grove",106121,151389,3582,"O.P.",100,181.0,187.0,7,2514,1551,879,335,249,0,88,0 48,48014,"Edmonton Centre",48017,"Edmonton - Spruce Grove",106121,151389,3582,"SVR1",2.4,.,.,".",6,4,2,0,1,0,0,0 48,48014,"Edmonton Centre",48017,"Edmonton - Spruce Grove",106121,151389,3582,"SVR2",2.4,.,.,".",0,24,18,3,2,0,1,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"A.P.",50,601.0,604.0,2,0,432,274,110,42,0,7,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"A.P.",59,600.0,600.0,1,0,315,193,74,46,0,2,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"A.P.",79,609.0,609.0,1,0,228,85,117,17,0,10,-0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"A.P.",100,603.0,608.0,5,0,1794,956,650,124,0,64,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"M.P.",50,501.0,505.0,2,151,114,87,21,5,0,1,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"M.P.",67,506.0,506.0,1,113,67,30,33,3,0,1,-0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"M.P.",100,500.0,507.0,5,938,624,399,157,51,0,17,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"O.P.",86,213.0,213.0,1,481,167,46,106,9,0,6,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"O.P.",89,211.0,211.0,1,298,132,34,84,6,0,8,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"O.P.",100,6.0,400.0,157,56594,24913,12418,10330,1349,0,816,0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"SVR1",64,.,.,".",309,192,73,36,77,0,6,-0 48,48015,"Edmonton Griesbach",48013,"Edmonton East",107809,135254,84894,"SVR2",64,.,.,".",0,410,207,147,41,0,15,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"A.P.",39,609.0,609.0,1,0,173,112,38,19,0,5,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"A.P.",96,610.0,610.0,1,0,607,379,143,66,0,18,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"M.P.",33,502.0,502.0,1,59,46,30,7,7,0,1,-0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"M.P.",67,504.0,504.0,1,132,57,31,13,9,0,3,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"M.P.",100,503.0,505.0,2,455,300,202,56,30,0,12,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"O.P.",79,106.0,106.0,1,297,106,52,43,7,0,4,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"O.P.",100,108.0,211.0,36,15211,6954,4135,1970,553,0,296,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"SVR1",17,.,.,".",92,46,30,5,10,0,2,0 48,48015,"Edmonton Griesbach",48015,"Edmonton - St. Albert",107809,136688,22915,"SVR2",17,.,.,".",0,89,60,12,12,0,4,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"A.P.",41,600.0,600.0,1,0,223,136,52,33,0,2,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"A.P.",50,601.0,604.0,2,0,432,274,110,42,0,7,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"A.P.",100,602.0,602.0,1,0,1005,664,235,90,0,16,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"M.P.",33,506.0,506.0,1,56,34,15,16,2,0,1,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"M.P.",50,501.0,505.0,2,151,114,87,21,5,0,1,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"O.P.",100,1.0,114.0,80,31676,13109,7660,4020,1121,0,308,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"SVR1",35,.,.,".",168,105,40,20,42,0,3,0 48,48016,"Edmonton Manning",48013,"Edmonton East",106262,135254,48355,"SVR2",35,.,.,".",0,223,113,80,22,0,8,0 48,48016,"Edmonton Manning",48015,"Edmonton - St. Albert",106262,136688,8721,"A.P.",74,608.0,608.0,1,0,473,309,74,78,0,11,-0 48,48016,"Edmonton Manning",48015,"Edmonton - St. Albert",106262,136688,8721,"M.P.",67,502.0,502.0,1,119,91,61,15,14,0,2,0 48,48016,"Edmonton Manning",48015,"Edmonton - St. Albert",106262,136688,8721,"O.P.",100,154.0,169.0,14,6260,2556,1464,669,346,0,77,0 48,48016,"Edmonton Manning",48015,"Edmonton - St. Albert",106262,136688,8721,"SVR1",6.6,.,.,".",36,18,12,2,4,0,1,0 48,48016,"Edmonton Manning",48015,"Edmonton - St. Albert",106262,136688,8721,"SVR2",6.6,.,.,".",0,35,24,5,5,0,2,0 48,48016,"Edmonton Manning",48016,"Edmonton - Sherwood Park",106262,136897,49186,"A.P.",0.5,606.0,606.0,1,0,2,1,0,0,0,0,0 48,48016,"Edmonton Manning",48016,"Edmonton - Sherwood Park",106262,136897,49186,"A.P.",100,602.0,605.0,4,0,1578,938,263,148,0,41,188 48,48016,"Edmonton Manning",48016,"Edmonton - Sherwood Park",106262,136897,49186,"O.P.",2.7,97.0,97.0,1,26,15,7,1,1,0,0,5 48,48016,"Edmonton Manning",48016,"Edmonton - Sherwood Park",106262,136897,49186,"O.P.",100,29.0,400.0,71,31882,13895,7013,3475,1120,0,496,1791 48,48016,"Edmonton Manning",48016,"Edmonton - Sherwood Park",106262,136897,49186,"SVR1",34,.,.,".",113,58,34,4,16,0,2,2 48,48016,"Edmonton Manning",48016,"Edmonton - Sherwood Park",106262,136897,49186,"SVR2",34,.,.,".",0,213,102,20,23,0,5,63 48,48017,"Edmonton Mill Woods",48011,"Edmonton - Mill Woods - Beaumont",106103,137228,106103,"A.P.",100,600.0,608.0,9,0,3387,2096,660,518,0,89,24 48,48017,"Edmonton Mill Woods",48011,"Edmonton - Mill Woods - Beaumont",106103,137228,106103,"M.P.",100,500.0,500.0,1,185,119,84,19,13,0,3,0 48,48017,"Edmonton Mill Woods",48011,"Edmonton - Mill Woods - Beaumont",106103,137228,106103,"O.P.",100,1.0,400.0,165,67090,31253,18315,8210,3476,0,946,306 48,48017,"Edmonton Mill Woods",48011,"Edmonton - Mill Woods - Beaumont",106103,137228,106103,"SVR1",78,.,.,".",140,82,30,9,41,0,2,2 48,48017,"Edmonton Mill Woods",48011,"Edmonton - Mill Woods - Beaumont",106103,137228,106103,"SVR2",78,.,.,".",0,611,370,107,109,0,22,3 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"A.P.",22,614.0,614.0,1,0,181,125,23,27,0,6,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"A.P.",99,613.0,613.0,1,0,430,261,69,80,0,19,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"A.P.",100,600.0,612.0,10,0,4681,2817,747,903,0,214,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"M.P.",100,502.0,504.0,3,855,596,436,70,65,0,25,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"O.P.",91,140.1,140.1,1,650,329,237,55,21,0,16,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"O.P.",98,140.2,140.2,1,835,416,293,78,25,0,20,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"O.P.",100,1.0,402.0,167,69663,36105,21213,8044,5031,0,1817,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"SVR1",71,.,.,".",124,72,33,6,29,0,3,0 48,48018,"Edmonton Riverbend",48014,"Edmonton - Leduc",106302,150234,106302,"SVR2",71,.,.,".",0,459,274,66,90,0,29,0 48,48019,"Edmonton Strathcona",48013,"Edmonton East",103183,135254,2005,"A.P.",21,609.0,609.0,1,0,62,23,31,4,0,3,-0 48,48019,"Edmonton Strathcona",48013,"Edmonton East",103183,135254,2005,"O.P.",11,211.0,211.0,1,37,16,4,10,1,0,1,0 48,48019,"Edmonton Strathcona",48013,"Edmonton East",103183,135254,2005,"O.P.",14,213.0,213.0,1,78,27,7,17,2,0,1,0 48,48019,"Edmonton Strathcona",48013,"Edmonton East",103183,135254,2005,"O.P.",100,214.0,216.1,4,1450,957,280,596,40,0,41,0 48,48019,"Edmonton Strathcona",48013,"Edmonton East",103183,135254,2005,"SVR1",1.7,.,.,".",8,5,2,1,2,0,0,0 48,48019,"Edmonton Strathcona",48013,"Edmonton East",103183,135254,2005,"SVR2",1.7,.,.,".",0,11,6,4,1,0,0,0 48,48019,"Edmonton Strathcona",48018,"Edmonton - Strathcona",103183,101178,101178,"A.P.",100,600.0,610.0,11,0,5629,2304,3082,142,0,78,23 48,48019,"Edmonton Strathcona",48018,"Edmonton - Strathcona",103183,101178,101178,"M.P.",100,500.0,507.0,8,1475,785,426,260,59,0,15,25 48,48019,"Edmonton Strathcona",48018,"Edmonton - Strathcona",103183,101178,101178,"O.P.",100,1.0,406.0,203,71675,41123,16669,22025,1097,0,1001,331 48,48019,"Edmonton Strathcona",48018,"Edmonton - Strathcona",103183,101178,101178,"SVR1",100,.,.,".",294,172,52,75,38,0,5,2 48,48019,"Edmonton Strathcona",48018,"Edmonton - Strathcona",103183,101178,101178,"SVR2",100,.,.,".",0,1021,311,651,36,0,20,3 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"A.P.",0.8,600.0,600.0,1,0,4,2,1,0,0,0,0 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"A.P.",15,607.0,607.0,1,0,91,57,10,23,0,2,0 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"A.P.",58,602.0,602.0,1,0,281,204,41,29,0,2,4 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"A.P.",62,606.0,606.0,1,0,254,172,35,40,0,6,1 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"A.P.",87,612.0,612.0,1,0,471,328,52,70,0,16,3 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"M.P.",100,500.0,501.0,2,497,371,229,64,60,0,8,10 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"O.P.",1.5,1.0,1.0,1,6,3,2,1,0,0,0,0 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"O.P.",12,186.0,186.0,1,54,24,13,7,3,0,1,0 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"O.P.",13,2.0,2.0,1,41,18,8,6,3,0,0,0 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"O.P.",26,65.0,65.0,1,107,24,12,8,3,0,1,-0 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"O.P.",100,49.0,208.0,35,13315,6156,3642,1451,812,0,198,53 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"SVR1",16,.,.,".",66,43,12,7,21,0,2,1 48,48020,"Edmonton West",48012,"Edmonton Centre",104422,122822,20283,"SVR2",16,.,.,".",0,151,65,30,52,0,4,1 48,48020,"Edmonton West",48017,"Edmonton - Spruce Grove",104422,151389,84139,"A.P.",56,611.0,611.0,1,0,276,169,27,68,0,12,0 48,48020,"Edmonton West",48017,"Edmonton - Spruce Grove",104422,151389,84139,"A.P.",100,606.0,613.0,7,0,3135,2144,446,453,0,92,0 48,48020,"Edmonton West",48017,"Edmonton - Spruce Grove",104422,151389,84139,"M.P.",33,501.0,501.0,1,37,26,19,4,3,0,0,0 48,48020,"Edmonton West",48017,"Edmonton - Spruce Grove",104422,151389,84139,"O.P.",100,80.0,401.0,129,56978,26564,17201,5242,3076,0,1045,0 48,48020,"Edmonton West",48017,"Edmonton - Spruce Grove",104422,151389,84139,"SVR1",54,.,.,".",135,80,38,9,29,0,4,-0 48,48020,"Edmonton West",48017,"Edmonton - Spruce Grove",104422,151389,84139,"SVR2",54,.,.,".",0,555,416,61,56,0,23,0 48,48021,"Edmonton--Wetaskiwin",48011,"Edmonton - Mill Woods - Beaumont",110644,137228,31125,"A.P.",100,609.0,612.0,4,0,1319,971,169,131,0,32,16 48,48021,"Edmonton--Wetaskiwin",48011,"Edmonton - Mill Woods - Beaumont",110644,137228,31125,"O.P.",100,166.0,216.0,47,19074,8669,5878,1669,736,0,264,122 48,48021,"Edmonton--Wetaskiwin",48011,"Edmonton - Mill Woods - Beaumont",110644,137228,31125,"SVR1",22,.,.,".",40,23,8,2,11,0,0,0 48,48021,"Edmonton--Wetaskiwin",48011,"Edmonton - Mill Woods - Beaumont",110644,137228,31125,"SVR2",22,.,.,".",0,173,105,30,31,0,6,1 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"A.P.",1.0,613.0,613.0,1,0,4,3,1,1,0,0,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"A.P.",78,614.0,614.0,1,0,634,438,82,95,0,19,-0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"A.P.",100,608.0,610.0,3,0,1566,1231,188,86,0,61,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"M.P.",100,500.0,501.0,2,448,311,246,31,26,0,8,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"O.P.",2.1,140.2,140.2,1,18,9,6,2,1,0,0,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"O.P.",8.7,140.1,140.1,1,62,31,23,5,2,0,1,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"O.P.",100,153.0,203.0,62,28827,13392,10016,1991,740,0,645,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"SVR1",29,.,.,".",50,29,14,3,12,0,1,0 48,48021,"Edmonton--Wetaskiwin",48014,"Edmonton - Leduc",110644,150234,43932,"SVR2",29,.,.,".",0,187,112,27,36,0,12,0 48,48021,"Edmonton--Wetaskiwin",48024,"Vegreville - Wainwright",110644,117230,2162,"A.P.",23,616.0,616.0,1,0,101,78,8,7,0,8,0 48,48021,"Edmonton--Wetaskiwin",48024,"Vegreville - Wainwright",110644,117230,2162,"O.P.",100,66.0,69.0,3,1256,727,544,110,23,0,47,3 48,48021,"Edmonton--Wetaskiwin",48024,"Vegreville - Wainwright",110644,117230,2162,"SVR1",1.5,.,.,".",3,2,2,0,0,0,0,-0 48,48021,"Edmonton--Wetaskiwin",48024,"Vegreville - Wainwright",110644,117230,2162,"SVR2",1.5,.,.,".",0,6,4,0,0,0,0,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"A.P.",33,600.0,600.0,1,0,73,62,5,2,0,3,-0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"A.P.",60,601.0,601.0,1,0,148,121,13,8,0,5,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"A.P.",98,602.0,602.0,1,0,170,153,9,2,0,6,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"A.P.",99,603.0,603.0,1,0,366,311,33,9,0,14,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"A.P.",100,604.0,605.0,2,0,813,689,66,29,0,29,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"M.P.",33,502.0,502.0,1,36,22,19,2,1,0,1,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"M.P.",100,503.0,504.0,2,394,250,199,17,25,0,9,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",5.5,17.0,17.0,1,20,12,10,1,0,0,1,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",7.1,4.0,4.0,1,29,18,16,1,0,0,1,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",85,14.0,14.0,1,168,117,101,10,3,0,3,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",88,23.0,23.0,1,417,246,218,21,1,0,6,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",88,16.0,16.0,1,255,169,143,17,0,0,9,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",90,19.0,19.0,1,311,197,176,13,3,0,6,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",91,31.0,31.0,1,237,141,119,13,4,0,6,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",99,11.0,11.0,1,426,252,214,22,4,0,12,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"O.P.",100,12.0,71.0,50,21588,10949,8859,1315,312,0,463,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"SVR1",30,.,.,".",47,32,12,4,15,0,3,0 48,48021,"Edmonton--Wetaskiwin",48026,"Wetaskiwin",110644,113780,33425,"SVR2",30,.,.,".",0,122,95,12,8,0,7,0 48,48022,"Foothills",48008,"Calgary Southwest",105515,136011,0,"A.P.",0.0,611.0,611.0,1,0,0,0,0,0,0,0,0 48,48022,"Foothills",48008,"Calgary Southwest",105515,136011,0,"O.P.",0.8,207.0,207.0,1,10,4,3,1,0,0,0,-0 48,48022,"Foothills",48008,"Calgary Southwest",105515,136011,0,"SVR1",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48022,"Foothills",48008,"Calgary Southwest",105515,136011,0,"SVR2",0.0,.,.,".",0,0,0,0,0,0,0,0 48,48022,"Foothills",48019,"Lethbridge",105515,125561,88,"A.P.",8.3,612.0,612.0,1,0,25,22,1,1,0,1,0 48,48022,"Foothills",48019,"Lethbridge",105515,125561,88,"O.P.",100,168.0,168.0,1,105,65,24,3,26,0,11,1 48,48022,"Foothills",48019,"Lethbridge",105515,125561,88,"SVR1",0.1,.,.,".",0,0,0,0,0,0,0,0 48,48022,"Foothills",48019,"Lethbridge",105515,125561,88,"SVR2",0.1,.,.,".",0,1,0,0,0,0,0,0 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"A.P.",64,610.0,610.0,1,0,367,288,19,27,0,19,14 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"A.P.",67,608.0,608.0,1,0,155,121,13,10,0,5,5 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"A.P.",91,609.0,609.0,1,0,451,369,16,25,0,18,23 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"A.P.",100,600.0,613.0,10,0,4946,3910,423,215,0,225,173 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"M.P.",100,500.0,508.0,8,863,584,470,46,22,0,14,32 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"O.P.",17,24.0,24.0,1,156,80,60,5,6,0,4,6 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"O.P.",93,10.0,10.0,1,740,422,334,20,21,0,18,30 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"O.P.",99,3.0,3.0,1,416,282,223,18,13,0,19,9 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"O.P.",100,8.0,8.0,1,878,483,363,40,33,0,29,18 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"O.P.",100,1.0,159.0,156,71471,37462,29096,3999,1168,0,1788,1411 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"SVR1",87,.,.,".",116,59,30,7,13,0,6,3 48,48022,"Foothills",48020,"Macleod",105515,123778,105427,"SVR2",87,.,.,".",0,743,586,44,44,0,36,33 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"A.P.",6.3,609.0,609.0,1,0,43,35,3,3,0,2,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"A.P.",47,600.0,600.0,1,0,7,6,0,0,0,0,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"A.P.",94,611.0,611.0,1,0,339,241,34,45,0,20,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"A.P.",100,601.0,606.0,6,0,1636,1143,187,243,0,63,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"M.P.",100,500.0,504.0,2,208,128,83,15,27,0,3,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"O.P.",0.2,129.0,129.0,1,1,1,1,0,0,0,0,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"O.P.",6.3,7.0,7.0,1,10,1,1,0,0,0,0,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"O.P.",33,1.0,1.0,1,42,16,10,4,2,0,0,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"O.P.",34,4.0,4.0,1,76,15,9,4,1,0,0,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"O.P.",100,9.0,166.0,106,51626,15690,10819,2361,1921,0,589,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"SVR1",68,.,.,".",106,80,13,12,50,0,5,0 48,48023,"Fort McMurray--Cold Lake",48001,"Fort McMurray - Athabasca",101538,115372,80036,"SVR2",68,.,.,".",0,321,229,33,45,0,14,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"A.P.",15,610.0,610.0,1,0,15,12,3,0,0,0,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"A.P.",20,606.0,606.0,1,0,92,79,4,7,0,2,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"A.P.",97,607.0,607.0,1,0,660,542,49,51,0,17,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"M.P.",100,504.0,504.0,1,94,61,47,5,7,0,2,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",0.5,101.0,101.0,1,1,1,1,0,0,0,0,-0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",0.5,116.0,116.0,1,2,1,1,0,0,0,0,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",19,157.0,157.0,1,68,29,23,3,2,0,1,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",22,97.0,97.0,1,124,32,20,7,3,0,2,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",60,113.0,113.0,1,187,115,95,9,8,0,3,-0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",76,112.0,112.0,1,297,170,145,11,11,0,4,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",76,114.0,114.0,1,324,199,176,12,6,0,5,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",82,111.0,111.0,1,335,195,178,7,7,0,2,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",92,154.1,154.1,1,356,166,144,12,5,0,6,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",99,99.0,99.0,1,188,128,103,18,5,0,2,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"O.P.",100,110.0,156.1,29,12187,5359,4327,562,302,0,168,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"SVR1",19,.,.,".",147,67,52,4,8,0,3,0 48,48023,"Fort McMurray--Cold Lake",48025,"Westlock - St. Paul",101538,108518,21502,"SVR2",19,.,.,".",0,83,67,7,8,0,2,-0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",8.0,607.0,607.0,1,0,23,15,5,1,0,1,1 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",18,606.0,606.0,1,0,32,26,5,1,0,1,1 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",22,605.0,605.0,1,0,65,55,8,2,0,0,1 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",23,617.0,617.0,1,0,55,48,4,1,0,1,0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",58,601.0,601.0,1,0,62,43,10,3,0,3,2 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",90,609.0,609.0,1,0,91,75,9,3,0,4,1 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",91,611.0,611.0,1,0,185,146,25,3,0,6,5 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",100,603.0,603.0,1,0,87,74,6,2,0,5,-0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"A.P.",100,600.0,616.0,8,0,2226,1691,328,89,0,88,30 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"M.P.",67,500.0,501.0,2,187,107,75,17,4,0,7,3 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"M.P.",100,503.0,507.0,4,697,441,355,48,27,0,5,6 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",0.3,238.0,238.0,1,1,1,1,0,0,0,0,0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",2.8,228.0,228.0,1,7,5,4,0,0,0,0,0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",3.8,231.0,231.0,1,18,11,10,1,0,0,0,-0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",4.1,45.0,45.0,1,4,2,1,1,0,0,0,0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",31,12.0,12.0,1,155,89,68,12,5,0,3,0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",93,106.0,106.0,1,328,208,167,29,1,0,7,5 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",95,230.0,230.0,1,197,48,16,26,6,0,1,0 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",99,30.0,30.0,1,222,131,87,28,1,0,14,1 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"O.P.",100,1.0,229.0,170,68402,29388,22416,4550,862,0,1104,456 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"SVR1",72,.,.,".",123,97,34,21,38,0,2,2 48,48024,"Grande Prairie--Mackenzie",48022,"Peace River",106738,150925,106738,"SVR2",72,.,.,".",0,491,356,79,27,0,19,11 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"A.P.",6.3,611.0,611.0,1,0,23,16,2,3,0,1,0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"A.P.",94,609.0,609.0,1,0,646,526,45,49,0,26,-0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"A.P.",100,610.0,610.0,1,0,178,146,14,12,0,6,0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"M.P.",100,503.0,505.0,2,169,108,82,14,10,0,2,0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"O.P.",96,128.0,128.0,1,547,317,263,25,13,0,15,-0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"O.P.",100,129.0,129.0,1,572,299,257,21,12,0,9,0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"O.P.",100,130.0,148.0,19,8073,3930,3117,357,250,0,206,0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"SVR1",12,.,.,".",19,14,2,2,9,0,1,0 48,48025,"Lakeland",48001,"Fort McMurray - Athabasca",104616,115372,12324,"SVR2",12,.,.,".",0,58,41,6,8,0,3,0 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"A.P.",98,602.0,602.0,1,0,174,129,27,10,0,8,1 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"A.P.",100,606.0,606.0,1,0,372,272,58,16,0,22,4 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"A.P.",100,603.0,610.0,5,0,1421,1200,107,53,0,51,10 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"M.P.",50,501.0,501.0,1,58,39,33,3,3,0,0,1 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"M.P.",100,500.0,512.0,8,1156,766,612,81,42,0,20,11 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"O.P.",78,50.0,50.0,1,295,164,128,26,4,0,6,-0 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"O.P.",91,54.0,54.0,1,312,179,140,25,3,0,8,3 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"O.P.",98,91.0,91.0,1,413,242,186,30,6,0,13,7 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"O.P.",100,37.0,161.2,104,36448,17859,14347,2073,494,0,792,153 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"SVR1",46,.,.,".",99,57,46,3,7,0,1,0 48,48025,"Lakeland",48024,"Vegreville - Wainwright",104616,117230,55226,"SVR2",46,.,.,".",0,169,128,15,10,0,15,1 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"A.P.",0.8,600.0,600.0,1,0,4,4,0,0,0,0,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"A.P.",3.1,607.0,607.0,1,0,21,17,2,2,0,1,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"A.P.",80,606.0,606.0,1,0,372,321,18,26,0,7,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"A.P.",85,610.0,610.0,1,0,86,69,14,3,0,0,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"A.P.",93,604.0,604.0,1,0,127,100,15,5,0,7,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"A.P.",100,605.0,611.0,3,0,702,542,66,68,0,26,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"M.P.",50,501.0,501.0,1,56,44,33,5,5,0,1,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"M.P.",100,503.0,507.0,4,590,385,289,34,44,0,18,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",0.5,99.0,99.0,1,1,1,1,0,0,0,0,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",8.1,154.1,154.1,1,31,15,13,1,0,0,0,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",18,111.0,111.0,1,73,42,39,1,2,0,1,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",20,9.0,9.0,1,75,44,37,5,1,0,1,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",24,114.0,114.0,1,103,63,56,4,2,0,1,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",24,112.0,112.0,1,95,55,46,4,3,0,1,-0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",40,113.0,113.0,1,126,78,64,6,6,0,2,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",44,91.0,91.0,1,123,75,62,8,2,0,3,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",78,97.0,97.0,1,435,113,69,26,9,0,9,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",81,157.0,157.0,1,295,128,100,12,9,0,7,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",100,116.0,116.0,1,468,266,223,16,19,0,8,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",100,101.0,101.0,1,243,128,113,7,8,0,0,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"O.P.",100,84.0,181.0,67,24431,11130,8430,1424,844,0,432,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"SVR1",36,.,.,".",282,128,100,8,14,0,6,0 48,48025,"Lakeland",48025,"Westlock - St. Paul",104616,108518,37066,"SVR2",36,.,.,".",0,160,128,13,15,0,3,-0 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"A.P.",99,610.0,610.0,1,0,563,398,88,20,0,24,34 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"A.P.",100,600.0,616.0,13,0,4017,2195,1088,469,0,175,90 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"M.P.",100,500.0,507.0,7,1258,703,466,116,82,0,21,18 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"O.P.",78,23.0,23.0,1,269,134,86,18,10,0,13,8 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"O.P.",100,1.0,402.0,209,74789,35143,18131,10884,3095,0,1580,1453 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"SVR1",85,.,.,".",152,91,40,15,32,0,3,0 48,48026,"Lethbridge",48019,"Lethbridge",105999,125561,105999,"SVR2",85,.,.,".",0,512,302,120,51,0,29,11 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"A.P.",1.0,610.0,610.0,1,0,6,4,1,0,0,0,0 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"A.P.",92,612.0,612.0,1,0,280,242,16,6,0,15,1 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"A.P.",100,611.0,613.0,2,0,433,331,44,32,0,15,11 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"M.P.",100,506.0,509.0,3,225,146,116,10,11,0,5,4 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"O.P.",0.0,168.0,168.0,1,0,0,0,0,0,0,0,0 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"O.P.",22,23.0,23.0,1,74,37,23,5,3,0,3,2 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"O.P.",100,169.0,204.0,38,13137,5824,4733,639,177,0,194,81 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"SVR1",15,.,.,".",27,16,7,3,6,0,1,0 48,48027,"Medicine Hat--Cardston--Warner",48019,"Lethbridge",102847,125561,19474,"SVR2",15,.,.,".",0,90,53,21,9,0,5,2 48,48027,"Medicine Hat--Cardston--Warner",48020,"Macleod",102847,123778,4679,"A.P.",33,608.0,608.0,1,0,77,60,7,5,0,3,3 48,48027,"Medicine Hat--Cardston--Warner",48020,"Macleod",102847,123778,4679,"O.P.",100,160.0,165.0,6,2042,334,45,191,78,0,9,11 48,48027,"Medicine Hat--Cardston--Warner",48020,"Macleod",102847,123778,4679,"SVR1",2.4,.,.,".",3,2,1,0,0,0,0,0 48,48027,"Medicine Hat--Cardston--Warner",48020,"Macleod",102847,123778,4679,"SVR2",2.4,.,.,".",0,20,16,1,1,0,1,1 48,48027,"Medicine Hat--Cardston--Warner",48021,"Medicine Hat",102847,119670,78694,"A.P.",50,602.0,602.0,1,0,40,30,2,4,0,4,1 48,48027,"Medicine Hat--Cardston--Warner",48021,"Medicine Hat",102847,119670,78694,"A.P.",100,603.0,614.0,9,0,2579,1771,309,381,0,104,14 48,48027,"Medicine Hat--Cardston--Warner",48021,"Medicine Hat",102847,119670,78694,"M.P.",100,501.0,505.0,4,813,433,268,71,79,0,12,3 48,48027,"Medicine Hat--Cardston--Warner",48021,"Medicine Hat",102847,119670,78694,"O.P.",100,61.0,402.0,138,56011,26609,17679,4221,3297,0,1259,153 48,48027,"Medicine Hat--Cardston--Warner",48021,"Medicine Hat",102847,119670,78694,"SVR1",69,.,.,".",145,85,41,10,27,0,8,0 48,48027,"Medicine Hat--Cardston--Warner",48021,"Medicine Hat",102847,119670,78694,"SVR2",69,.,.,".",0,337,239,28,49,0,21,1 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"A.P.",0.2,609.0,609.0,1,0,2,1,0,0,0,0,0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"A.P.",53,600.0,600.0,1,0,8,7,0,1,0,1,-0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"A.P.",100,607.0,608.0,2,0,533,414,46,33,0,40,0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"M.P.",100,501.0,502.0,2,169,90,69,7,9,0,5,0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"O.P.",3.8,128.0,128.0,1,21,12,10,1,1,0,1,-0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"O.P.",66,4.0,4.0,1,147,28,16,9,3,0,1,-0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"O.P.",67,1.0,1.0,1,85,33,19,8,5,0,1,0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"O.P.",94,7.0,7.0,1,157,15,8,2,6,0,0,0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"O.P.",100,5.0,127.0,41,14240,5919,4334,828,402,0,355,0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"SVR1",19,.,.,".",30,23,4,4,14,0,1,-0 48,48028,"Peace River--Westlock",48001,"Fort McMurray - Athabasca",108095,115372,23012,"SVR2",19,.,.,".",0,92,65,9,13,0,4,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",0.1,603.0,603.0,1,0,0,0,0,0,0,0,-0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",9.1,611.0,611.0,1,0,19,15,3,0,0,1,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",9.7,609.0,609.0,1,0,10,8,1,0,0,0,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",42,601.0,601.0,1,0,45,31,8,3,0,3,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",77,617.0,617.0,1,0,181,158,15,2,0,5,2 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",78,605.0,605.0,1,0,235,196,27,7,0,1,3 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",82,606.0,606.0,1,0,146,115,20,4,0,2,3 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",92,607.0,607.0,1,0,262,176,52,14,0,11,9 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"A.P.",100,602.0,608.0,2,0,213,166,34,6,0,6,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"M.P.",33,500.0,501.0,2,94,53,38,9,2,0,3,2 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"M.P.",100,502.0,504.0,2,323,169,113,28,16,0,4,8 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",1.0,30.0,30.0,1,2,1,1,0,0,0,0,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",5.2,230.0,230.0,1,11,3,1,1,0,0,0,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",6.7,106.0,106.0,1,24,15,12,2,0,0,0,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",69,12.0,12.0,1,342,196,151,25,12,0,8,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",96,45.0,45.0,1,101,43,27,14,1,0,0,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",96,231.0,231.0,1,471,287,256,20,3,0,8,0 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",97,228.0,228.0,1,228,159,145,10,1,0,3,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",100,238.0,238.0,1,421,215,187,21,1,0,5,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"O.P.",100,13.0,237.0,81,25728,11631,8621,2199,308,0,363,140 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"SVR1",28,.,.,".",49,39,14,8,15,0,1,1 48,48028,"Peace River--Westlock",48022,"Peace River",108095,150925,44187,"SVR2",28,.,.,".",0,194,140,31,10,0,7,5 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"A.P.",8.3,601.0,601.0,1,0,16,12,1,1,0,1,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"A.P.",98,600.0,600.0,1,0,530,438,38,32,0,22,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"M.P.",100,500.0,500.0,1,244,153,118,14,15,0,6,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"O.P.",80,9.0,9.0,1,305,180,151,21,2,0,6,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"O.P.",81,22.0,22.0,1,359,184,147,23,6,0,7,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"O.P.",100,1.0,24.0,24,8436,4484,3743,417,159,0,165,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"SVR1",12,.,.,".",97,44,35,3,5,0,2,0 48,48028,"Peace River--Westlock",48025,"Westlock - St. Paul",108095,108518,13008,"SVR2",12,.,.,".",0,55,44,5,5,0,1,-0 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"A.P.",82,603.0,603.0,1,0,246,217,11,1,0,12,4 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"A.P.",100,601.0,606.0,5,0,1075,907,74,29,0,39,26 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"M.P.",100,500.0,501.0,2,266,174,138,19,5,0,5,7 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"O.P.",1.6,23.0,23.0,1,6,4,4,0,0,0,0,0 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"O.P.",26,24.0,24.0,1,75,44,37,4,1,0,1,1 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"O.P.",51,27.0,27.0,1,232,131,114,8,1,0,5,4 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"O.P.",100,10.0,65.0,56,19255,8953,7278,766,196,0,322,391 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"SVR1",26,.,.,".",28,17,8,2,5,0,1,1 48,48028,"Peace River--Westlock",48028,"Yellowhead",108095,105526,27888,"SVR2",26,.,.,".",0,95,77,9,2,0,3,3 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"A.P.",8.3,609.0,609.0,1,0,12,10,1,0,0,0,0 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"A.P.",9.5,605.0,605.0,1,0,52,49,2,0,0,1,1 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"O.P.",15,89.0,89.0,1,63,36,29,4,1,0,1,1 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"O.P.",26,87.0,87.0,1,94,70,63,2,1,0,2,2 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"O.P.",31,93.0,93.0,1,106,55,51,2,1,0,1,0 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"O.P.",100,100.0,103.0,2,309,121,104,8,3,0,3,3 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"SVR1",0.6,.,.,".",1,0,0,0,0,0,0,-0 48,48029,"Red Deer--Mountain View",48010,"Crowfoot",110793,125481,824,"SVR2",0.6,.,.,".",0,4,3,0,0,0,0,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"A.P.",47,608.0,608.0,1,0,123,91,19,7,0,7,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"A.P.",53,600.0,600.0,1,0,158,134,11,4,0,9,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"A.P.",71,611.0,611.0,1,0,266,201,39,16,0,10,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"A.P.",80,609.0,609.0,1,0,106,86,12,2,0,6,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"A.P.",81,607.0,607.0,1,0,197,137,31,14,0,15,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"A.P.",100,602.0,615.0,7,0,2064,1637,236,80,0,111,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"M.P.",50,504.0,504.0,1,116,90,74,8,8,0,1,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"M.P.",67,502.0,502.0,1,124,93,69,17,4,0,3,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"M.P.",75,506.0,506.0,1,88,71,54,11,2,0,4,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"M.P.",100,503.0,507.0,3,628,424,344,50,17,0,13,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"O.P.",5.7,17.0,17.0,1,36,18,15,2,0,0,1,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"O.P.",6.1,13.0,13.0,1,27,13,11,1,0,0,0,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"O.P.",14,86.0,86.0,1,36,9,6,2,0,0,0,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"O.P.",65,13.1,13.1,1,126,85,83,2,0,0,0,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"O.P.",71,2.0,2.0,1,363,174,138,23,2,0,10,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"O.P.",100,1.0,170.0,139,53841,27385,20912,4106,961,0,1406,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"SVR1",59,.,.,".",106,71,24,12,32,0,3,0 48,48029,"Red Deer--Mountain View",48023,"Red Deer",110793,134312,78733,"SVR2",59,.,.,".",0,384,306,40,17,0,21,0 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"A.P.",95,602.0,602.0,1,0,478,416,23,13,0,26,1 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"A.P.",100,603.0,603.0,1,0,673,582,35,28,0,26,2 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"A.P.",100,604.0,604.0,1,0,918,814,34,28,0,37,5 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"M.P.",100,500.0,502.0,3,243,165,138,14,7,0,4,2 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"O.P.",71,16.0,16.0,1,344,176,157,6,4,0,9,-0 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"O.P.",84,9.0,9.0,1,311,165,138,7,8,0,12,2 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"O.P.",88,18.0,18.0,1,349,218,193,10,4,0,10,1 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"O.P.",100,47.0,47.0,1,553,371,299,27,12,0,30,3 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"O.P.",100,17.0,62.0,50,21194,11752,9957,810,359,0,584,42 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"SVR1",24,.,.,".",45,27,16,2,6,0,2,0 48,48029,"Red Deer--Mountain View",48027,"Wild Rose",110793,138617,31236,"SVR2",24,.,.,".",0,232,166,19,30,0,17,1 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"A.P.",19,607.0,607.0,1,0,46,32,7,3,0,4,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"A.P.",20,609.0,609.0,1,0,26,21,3,1,0,1,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"A.P.",29,611.0,611.0,1,0,107,80,16,7,0,4,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"A.P.",47,600.0,600.0,1,0,138,117,9,4,0,8,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"A.P.",53,608.0,608.0,1,0,141,104,22,7,0,7,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"A.P.",100,601.0,606.0,4,0,1228,961,164,43,0,60,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"M.P.",25,506.0,506.0,1,29,24,18,4,1,0,1,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"M.P.",33,502.0,502.0,1,62,46,34,8,2,0,2,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"M.P.",50,504.0,504.0,1,116,90,74,8,8,0,1,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"M.P.",100,500.0,501.0,2,303,199,144,35,11,0,9,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"O.P.",29,2.0,2.0,1,151,72,58,10,1,0,4,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"O.P.",35,13.1,13.1,1,68,46,45,1,0,0,0,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"O.P.",86,86.0,86.0,1,222,54,37,12,3,0,3,-0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"O.P.",94,13.0,13.0,1,410,209,178,20,8,0,4,-0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"O.P.",94,17.0,17.0,1,596,306,257,27,8,0,14,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"O.P.",100,5.0,161.0,93,36202,15219,11250,2564,612,0,793,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"SVR1",41,.,.,".",73,49,17,8,22,0,2,0 48,48030,"Red Deer--Lacombe",48023,"Red Deer",113693,134312,55579,"SVR2",41,.,.,".",0,264,210,28,11,0,15,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"A.P.",5.1,609.0,609.0,1,0,20,18,1,0,0,1,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"A.P.",100,606.0,614.0,7,0,2199,1813,201,97,0,88,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"M.P.",100,501.0,507.0,4,526,271,220,26,19,0,6,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"O.P.",15,111.0,111.0,1,48,25,24,1,0,0,1,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"O.P.",15,113.0,113.0,1,57,33,30,2,0,0,1,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"O.P.",18,133.0,133.0,1,82,52,47,3,1,0,1,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"O.P.",19,112.0,112.0,1,103,58,51,4,1,0,2,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"O.P.",100,72.0,400.0,81,38303,19449,15438,2598,542,0,871,0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"SVR1",49,.,.,".",77,53,19,6,24,0,4,-0 48,48030,"Red Deer--Lacombe",48026,"Wetaskiwin",113693,113780,58114,"SVR2",49,.,.,".",0,200,156,19,13,0,11,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"A.P.",4.2,610.0,610.0,1,0,26,17,6,3,0,1,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"A.P.",26,608.0,608.0,1,0,169,111,27,28,0,4,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"A.P.",61,609.0,609.0,1,0,269,173,59,29,0,7,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"A.P.",100,600.0,607.0,8,0,5204,3605,689,692,0,218,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"M.P.",33,504.0,504.0,1,66,28,15,7,5,0,2,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"M.P.",100,500.0,506.0,3,556,385,278,52,42,0,13,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"O.P.",21,106.0,106.0,1,80,28,14,11,2,0,1,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"O.P.",100,1.0,182.0,175,73716,36032,22940,7664,3733,0,1695,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"SVR1",77,.,.,".",424,213,137,22,45,0,9,0 48,48031,"St. Albert--Edmonton",48015,"Edmonton - St. Albert",105162,136688,105052,"SVR2",77,.,.,".",0,411,278,55,57,0,21,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"A.P.",0.3,601.0,601.0,1,0,1,0,0,0,0,0,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"A.P.",2.9,609.0,609.0,1,0,8,7,1,0,0,0,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"O.P.",1.2,50.0,50.0,1,5,3,2,0,0,0,0,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"O.P.",2.3,51.0,51.0,1,8,5,4,0,0,0,0,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"O.P.",32,52.0,52.0,1,106,60,45,7,6,0,2,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"SVR1",0.2,.,.,".",1,1,0,0,0,0,0,0 48,48031,"St. Albert--Edmonton",48025,"Westlock - St. Paul",105162,108518,110,"SVR2",0.2,.,.,".",0,1,1,0,0,0,0,0 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"A.P.",100,606.0,606.0,1,0,385,219,23,29,0,13,102 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"A.P.",100,600.0,613.0,9,0,4346,1884,334,327,0,129,1672 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"M.P.",100,500.0,502.0,3,499,318,125,37,35,0,8,113 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"O.P.",97,97.0,97.0,1,948,531,250,44,35,0,10,193 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"O.P.",100,1.0,193.0,136,60912,33267,13787,3724,2321,0,1207,12228 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"SVR1",66,.,.,".",222,112,65,8,31,0,4,4 48,48032,"Sherwood Park--Fort Saskatchewan",48016,"Edmonton - Sherwood Park",111541,136897,87711,"SVR2",66,.,.,".",0,416,198,38,45,0,11,124 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"A.P.",1.2,602.0,602.0,1,0,2,2,0,0,0,0,0 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"A.P.",3.3,604.0,604.0,1,0,6,4,1,0,0,0,0 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"A.P.",62,616.0,616.0,1,0,269,207,22,19,0,20,1 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"A.P.",100,600.0,615.0,3,0,985,766,94,62,0,56,7 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"O.P.",0.2,73.0,73.0,1,1,1,0,0,0,0,0,0 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"O.P.",22,50.0,50.0,1,85,47,37,7,1,0,2,0 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"O.P.",43,72.0,72.0,1,163,104,77,15,5,0,6,-0 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"O.P.",100,1.0,36.0,37,17203,9433,7189,1293,336,0,573,42 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"SVR1",21,.,.,".",45,26,21,1,3,0,0,0 48,48032,"Sherwood Park--Fort Saskatchewan",48024,"Vegreville - Wainwright",111541,117230,23830,"SVR2",21,.,.,".",0,76,58,7,5,0,7,0 48,48033,"Sturgeon River--Parkland",48017,"Edmonton - Spruce Grove",105733,151389,63668,"A.P.",100,600.0,605.0,6,0,2927,2393,258,185,0,91,0 48,48033,"Sturgeon River--Parkland",48017,"Edmonton - Spruce Grove",105733,151389,63668,"M.P.",67,501.0,501.0,1,75,53,37,9,6,0,1,0 48,48033,"Sturgeon River--Parkland",48017,"Edmonton - Spruce Grove",105733,151389,63668,"M.P.",100,500.0,502.0,2,243,183,158,11,8,0,6,0 48,48033,"Sturgeon River--Parkland",48017,"Edmonton - Spruce Grove",105733,151389,63668,"O.P.",100,1.0,79.1,99,45503,22666,17813,2790,1226,0,837,0 48,48033,"Sturgeon River--Parkland",48017,"Edmonton - Spruce Grove",105733,151389,63668,"SVR1",43,.,.,".",108,64,30,7,23,0,3,0 48,48033,"Sturgeon River--Parkland",48017,"Edmonton - Spruce Grove",105733,151389,63668,"SVR2",43,.,.,".",0,446,334,49,45,0,18,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"A.P.",0.8,600.0,600.0,1,0,4,3,0,0,0,0,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"A.P.",7.0,604.0,604.0,1,0,10,8,1,0,0,1,-0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"A.P.",91,601.0,601.0,1,0,172,134,16,15,0,7,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"A.P.",97,609.0,609.0,1,0,275,223,27,17,0,8,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"A.P.",100,602.0,603.0,2,0,968,740,117,64,0,47,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"M.P.",50,501.0,501.0,1,56,44,33,5,5,0,1,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"M.P.",100,502.0,502.0,1,172,133,86,19,18,0,10,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"O.P.",19,22.0,22.0,1,86,44,35,6,2,0,2,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"O.P.",56,91.0,91.0,1,156,94,79,9,2,0,4,-0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"O.P.",68,52.0,52.0,1,227,128,95,16,12,0,5,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"O.P.",98,51.0,51.0,1,362,204,170,18,9,0,8,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"O.P.",99,50.0,50.0,1,391,242,188,28,17,0,10,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"O.P.",100,25.0,82.0,60,23286,12115,9033,1891,634,0,557,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"SVR1",33,.,.,".",257,117,91,7,13,0,6,0 48,48033,"Sturgeon River--Parkland",48025,"Westlock - St. Paul",105733,108518,36832,"SVR2",33,.,.,".",0,145,117,12,13,0,3,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"A.P.",0.9,608.0,608.0,1,0,2,1,0,0,0,0,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"A.P.",3.4,616.0,616.0,1,0,4,3,0,0,0,0,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"A.P.",65,609.0,609.0,1,0,92,75,8,3,0,5,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"A.P.",83,607.0,607.0,1,0,270,212,31,6,0,19,2 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",6.1,151.0,151.0,1,17,8,6,2,0,0,0,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",14,140.0,140.0,1,41,26,20,3,1,0,1,1 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",31,154.0,154.0,1,130,63,52,7,2,0,2,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",72,146.0,146.0,1,458,190,140,27,9,0,11,4 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",74,141.0,141.0,1,286,141,123,9,3,0,5,1 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",97,145.0,145.0,1,571,305,242,44,4,0,13,3 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"O.P.",100,142.0,156.0,6,3096,1446,1095,227,41,0,60,23 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"SVR1",6.1,.,.,".",7,4,2,1,1,0,0,0 48,48033,"Sturgeon River--Parkland",48028,"Yellowhead",105733,105526,5233,"SVR2",6.1,.,.,".",0,22,18,2,1,0,1,1 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"A.P.",1.9,602.0,602.0,1,0,3,3,0,0,0,0,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"A.P.",40,601.0,601.0,1,0,97,80,9,5,0,4,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"A.P.",67,600.0,600.0,1,0,150,128,11,5,0,7,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"A.P.",95,609.0,609.0,1,0,379,339,20,6,0,14,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"A.P.",100,610.0,610.0,1,0,365,313,32,11,0,9,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"M.P.",67,502.0,502.0,1,72,44,37,4,1,0,1,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"M.P.",100,500.0,500.0,1,176,104,87,8,6,0,3,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",0.8,11.0,11.0,1,4,2,2,0,0,0,0,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",10,19.0,19.0,1,36,23,20,1,0,0,1,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",12,16.0,16.0,1,34,22,19,2,0,0,1,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",12,23.0,23.0,1,59,35,31,3,0,0,1,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",15,14.0,14.0,1,30,21,18,2,0,0,1,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",81,112.0,112.0,1,439,244,218,15,5,0,6,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",82,133.0,133.0,1,373,237,215,11,5,0,6,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",85,113.0,113.0,1,329,187,169,10,1,0,7,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",85,111.0,111.0,1,278,146,135,6,1,0,3,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",93,4.0,4.0,1,388,235,204,17,6,0,8,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",95,17.0,17.0,1,343,208,177,18,4,0,9,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"O.P.",100,1.0,132.0,32,14520,7276,6138,666,153,0,319,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"SVR1",21,.,.,".",34,23,8,3,10,0,2,0 48,48034,"Yellowhead",48026,"Wetaskiwin",98855,113780,22221,"SVR2",21,.,.,".",0,87,68,8,6,0,5,-0 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"A.P.",3.8,602.0,602.0,1,0,19,17,1,1,0,1,0 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"A.P.",100,600.0,601.0,2,0,263,196,29,8,0,27,3 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"O.P.",0.9,9.0,9.0,1,3,2,1,0,0,0,0,0 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"O.P.",12,18.0,18.0,1,47,29,26,1,1,0,1,0 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"O.P.",29,16.0,16.0,1,139,72,64,3,1,0,4,-0 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"O.P.",100,1.0,8.0,8,2988,1570,1343,115,38,0,66,8 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"SVR1",3.3,.,.,".",6,4,2,0,1,0,0,-0 48,48034,"Yellowhead",48027,"Wild Rose",98855,138617,4229,"SVR2",3.3,.,.,".",0,32,23,3,4,0,2,0 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"A.P.",17,607.0,607.0,1,0,57,45,6,1,0,4,1 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"A.P.",18,603.0,603.0,1,0,55,49,3,0,0,3,1 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"A.P.",35,609.0,609.0,1,0,49,40,5,2,0,3,0 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"A.P.",97,616.0,616.0,1,0,105,78,14,5,0,7,2 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"A.P.",99,608.0,608.0,1,0,193,156,24,6,0,5,3 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"A.P.",100,600.0,624.0,14,0,2696,2030,367,108,0,174,17 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"M.P.",100,502.0,506.0,5,332,234,185,19,14,0,7,9 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",2.8,145.0,145.0,1,17,9,7,1,0,0,0,0 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",26,141.0,141.0,1,101,50,43,3,1,0,2,1 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",28,146.0,146.0,1,176,73,54,10,3,0,4,1 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",49,27.0,27.0,1,219,125,108,7,1,0,4,4 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",69,154.0,154.0,1,292,142,118,15,3,0,6,0 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",74,24.0,24.0,1,215,125,104,12,3,0,2,4 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",86,140.0,140.0,1,258,163,130,19,6,0,5,3 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",94,151.0,151.0,1,257,127,91,24,4,0,6,2 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",98,23.0,23.0,1,377,241,215,11,1,0,12,2 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"O.P.",100,1.0,198.0,133,48626,23403,17485,3586,701,0,1372,259 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"SVR1",68,.,.,".",72,43,20,6,14,0,3,1 48,48034,"Yellowhead",48028,"Yellowhead",98855,105526,72405,"SVR2",68,.,.,".",0,244,199,24,6,0,8,7 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",2.4,600.0,600.0,1,0,5,3,1,0,0,0,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",5.9,602.0,602.0,1,0,18,10,4,3,0,0,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",10,604.0,604.0,1,0,16,12,2,2,0,1,-0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",60,601.0,601.0,1,0,140,71,35,31,0,2,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",62,609.0,609.0,1,0,345,266,43,29,0,7,1 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",75,616.0,616.0,1,0,287,218,27,33,0,8,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",90,617.0,617.0,1,0,308,222,0,26,0,16,44 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",100,613.0,613.0,1,0,421,304,52,44,0,22,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"A.P.",100,603.0,615.0,10,0,3133,2293,469,251,0,114,6 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"M.P.",50,507.0,507.0,1,45,21,16,2,2,0,1,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"M.P.",100,500.0,508.0,8,969,696,530,87,52,0,19,8 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",18,161.0,161.0,1,55,26,20,5,1,0,1,-0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",20,83.0,83.0,1,74,37,24,10,2,0,1,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",25,86.0,86.0,1,154,74,57,10,5,0,1,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",30,142.0,142.0,1,123,58,31,16,9,0,2,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",36,20.0,20.0,1,169,71,37,12,19,0,2,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",38,161.1,161.1,1,306,195,146,27,15,0,6,-0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",41,9.0,9.0,1,136,51,8,16,26,0,1,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",58,9.1,9.1,1,269,108,27,51,28,0,1,1 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",72,161.2,161.2,1,118,43,20,19,1,0,3,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",87,90.0,90.0,1,257,142,93,35,7,0,8,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",98,99.0,99.0,1,450,229,159,46,21,0,3,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"O.P.",100,10.0,400.0,174,60463,30064,19737,6149,2555,0,1490,133 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"SVR1",75,.,.,".",126,82,38,7,31,0,7,0 59,59001,"Abbotsford",59001,"Abbotsford",96819,133765,96819,"SVR2",75,.,.,".",0,897,717,85,65,0,28,2 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"A.P.",13,607.0,607.0,1,0,50,20,23,5,0,2,0 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"A.P.",80,603.0,603.0,1,0,261,109,113,31,0,6,2 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"A.P.",80,606.0,606.0,1,0,307,130,122,46,0,7,2 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"A.P.",88,611.0,611.0,1,0,263,113,102,39,0,8,1 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"A.P.",100,600.0,612.0,6,0,1937,811,856,203,0,59,8 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"M.P.",50,504.0,504.0,1,67,48,21,15,9,0,3,1 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"M.P.",100,500.0,500.0,1,64,31,4,19,8,0,0,0 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"O.P.",40,93.0,93.0,1,208,108,47,41,15,0,3,1 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"O.P.",98,50.0,50.0,1,322,155,59,69,18,0,7,3 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"O.P.",100,1.0,400.0,123,52078,27199,11136,11906,2807,0,1016,334 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"SVR1",62,.,.,".",86,55,22,16,13,0,4,1 59,59002,"Burnaby North--Seymour",59002,"Burnaby - Douglas",100632,123275,75505,"SVR2",62,.,.,".",0,365,151,149,54,0,10,1 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"A.P.",62,609.0,609.0,1,0,424,210,55,138,0,20,1 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"A.P.",100,610.0,612.0,2,0,1419,794,151,415,0,56,3 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"M.P.",50,501.0,501.0,1,52,28,12,8,4,0,3,1 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"O.P.",0.2,89.0,89.0,1,1,1,0,0,0,0,0,0 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"O.P.",32,85.0,85.0,1,146,68,32,15,17,0,4,0 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"O.P.",100,86.0,131.0,45,17745,10375,5374,1542,2914,0,467,78 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"SVR1",20,.,.,".",31,18,8,2,6,0,1,0 59,59002,"Burnaby North--Seymour",59019,"North Vancouver",100632,127330,25127,"SVR2",20,.,.,".",0,178,96,14,62,0,5,1 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"A.P.",13,611.0,611.0,1,0,38,16,15,6,0,1,0 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"A.P.",20,606.0,606.0,1,0,77,33,30,12,0,2,0 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"A.P.",20,603.0,603.0,1,0,66,27,29,8,0,2,0 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"A.P.",88,607.0,607.0,1,0,349,140,160,37,0,11,1 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"A.P.",100,608.0,613.0,4,0,1950,843,741,288,0,60,18 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"M.P.",50,504.0,504.0,1,67,48,21,15,9,0,3,1 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"M.P.",100,501.0,503.0,3,348,192,66,85,25,0,7,9 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"O.P.",1.7,50.0,50.0,1,6,3,1,1,0,0,0,0 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"O.P.",60,93.0,93.0,1,306,160,70,61,23,0,5,2 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"O.P.",100,50.1,184.0,73,31306,14795,5987,6276,1756,0,531,245 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"SVR1",38,.,.,".",53,34,13,9,8,0,2,1 59,59003,"Burnaby South",59002,"Burnaby - Douglas",105037,123275,47770,"SVR2",38,.,.,".",0,221,92,90,33,0,6,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"A.P.",13,605.0,605.0,1,0,65,21,34,6,0,3,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"A.P.",19,606.0,606.0,1,0,66,31,27,6,0,2,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"A.P.",77,604.0,604.0,1,0,319,133,141,35,0,9,2 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"A.P.",100,600.0,603.0,4,0,2219,914,979,260,0,58,8 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"M.P.",50,502.0,502.0,1,104,73,35,31,6,0,1,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"M.P.",100,500.0,500.0,1,120,48,17,23,6,0,1,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",0.0,96.0,96.0,1,0,0,0,0,0,0,0,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",0.1,95.0,95.0,1,0,0,0,0,0,0,0,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",4.2,166.0,166.0,1,18,10,5,3,1,0,0,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",18,88.0,88.0,1,101,45,17,21,3,0,2,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",19,62.0,62.0,1,87,37,18,14,4,0,1,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",50,90.0,90.0,1,285,112,44,50,14,0,4,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",55,63.0,63.0,1,295,132,50,60,15,0,5,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",59,86.0,86.0,1,344,122,31,76,7,0,6,3 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",76,64.0,64.0,1,297,111,35,54,11,0,10,2 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",84,61.0,61.0,1,292,159,86,37,30,0,5,1 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"O.P.",100,1.0,161.0,75,34475,14877,5661,6916,1641,0,573,86 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"SVR1",43,.,.,".",60,34,10,9,13,0,1,0 59,59003,"Burnaby South",59003,"Burnaby - New Westminster",105037,131917,57267,"SVR2",43,.,.,".",0,163,54,84,19,0,6,1 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"A.P.",100,604.0,604.0,1,0,353,250,59,21,0,7,16 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"A.P.",100,601.0,613.0,12,0,4577,2642,1261,269,0,303,102 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"M.P.",100,500.0,503.0,4,511,291,146,80,33,0,16,16 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"O.P.",98,60.0,60.0,1,375,181,139,19,9,0,3,12 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"O.P.",100,3.0,221.0,213,74635,36981,20677,11409,1780,0,2251,864 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"SVR1",99,.,.,".",192,111,48,26,29,0,8,1 59,59004,"Cariboo--Prince George",59004,"Cariboo - Prince George",108252,108840,108252,"SVR2",99,.,.,".",0,743,423,163,50,0,85,22 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"A.P.",7.4,610.0,610.0,1,0,30,15,8,5,0,3,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"A.P.",66,614.0,614.0,1,0,362,210,63,69,0,20,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"A.P.",100,611.0,613.0,3,0,1223,687,251,207,0,78,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"M.P.",50,504.0,513.0,3,251,187,118,40,24,0,6,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"M.P.",100,503.0,510.0,4,691,496,355,78,55,0,8,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"O.P.",89,156.0,156.0,1,456,273,173,58,24,0,18,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"O.P.",97,103.0,103.0,1,666,283,146,69,34,0,35,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"O.P.",100,87.0,400.0,47,17659,8808,4498,2401,1064,0,845,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"SVR1",20,.,.,".",41,26,9,4,9,0,4,0 59,59005,"Central Okanagan--Similkameen--Nicola",59011,"Kelowna - Lake Country",104398,134732,24681,"SVR2",20,.,.,".",0,195,135,22,33,0,5,0 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"A.P.",0.0,606.0,606.0,1,0,0,0,0,0,0,0,0 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"A.P.",100,600.0,612.0,8,0,4979,2971,1016,598,0,288,106 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"M.P.",100,505.0,508.0,4,646,409,201,107,60,0,29,12 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"O.P.",0.0,109.1,109.1,1,0,0,0,0,0,0,0,0 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"O.P.",100,1.0,106.0,115,51425,26123,14371,6486,2466,0,2168,632 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"SVR1",61,.,.,".",103,60,31,11,11,0,7,0 59,59005,"Central Okanagan--Similkameen--Nicola",59020,"Okanagan - Coquihalla",104398,113836,70122,"SVR2",61,.,.,".",0,527,322,88,79,0,33,4 59,59005,"Central Okanagan--Similkameen--Nicola",59026,"British Columbia Southern Interior",104398,97952,9595,"A.P.",100,600.0,601.0,2,0,913,490,344,36,0,43,0 59,59005,"Central Okanagan--Similkameen--Nicola",59026,"British Columbia Southern Interior",104398,97952,9595,"M.P.",100,500.0,500.0,1,65,47,18,21,4,0,4,0 59,59005,"Central Okanagan--Similkameen--Nicola",59026,"British Columbia Southern Interior",104398,97952,9595,"O.P.",100,1.0,18.0,22,7640,3833,1900,1606,133,0,194,0 59,59005,"Central Okanagan--Similkameen--Nicola",59026,"British Columbia Southern Interior",104398,97952,9595,"SVR1",10,.,.,".",14,9,3,3,2,0,1,0 59,59005,"Central Okanagan--Similkameen--Nicola",59026,"British Columbia Southern Interior",104398,97952,9595,"SVR2",10,.,.,".",0,110,37,60,5,0,7,0 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"A.P.",17,604.0,604.0,1,0,12,7,4,1,0,1,0 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"A.P.",100,605.0,605.0,1,0,476,260,157,36,0,16,7 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"A.P.",100,606.0,615.0,9,0,4447,2823,818,631,0,143,32 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"M.P.",33,505.0,505.0,1,26,19,13,3,2,0,1,1 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"M.P.",100,500.0,504.0,5,854,515,280,107,87,0,24,17 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"O.P.",69,47.0,47.0,1,344,117,51,53,6,0,5,2 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"O.P.",97,55.1,55.1,1,266,124,56,41,15,0,10,2 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"O.P.",100,48.0,182.0,149,63694,31847,18861,7678,3413,0,1690,205 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"SVR1",77,.,.,".",218,126,66,20,28,0,11,2 59,59006,"Chilliwack--Hope",59005,"Chilliwack - Fraser Canyon",92734,121737,92734,"SVR2",77,.,.,".",0,507,331,92,54,0,22,8 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"A.P.",19,607.0,607.0,1,0,149,64,42,40,0,2,2 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"A.P.",74,609.0,609.0,1,0,529,319,126,69,0,13,2 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"A.P.",79,608.0,608.0,1,0,591,300,124,142,0,21,5 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"O.P.",8.4,69.0,69.0,1,32,11,6,2,2,0,0,0 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"O.P.",40,154.0,154.0,1,190,94,35,33,20,0,5,2 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"O.P.",51,154.1,154.1,1,489,212,89,68,48,0,7,0 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"O.P.",79,152.0,152.0,1,256,112,62,32,11,0,5,2 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"O.P.",82,67.0,67.0,1,145,74,34,18,8,0,8,6 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"O.P.",100,68.0,159.1,28,16098,7529,3984,2080,1094,0,322,49 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"SVR1",18,.,.,".",32,21,7,3,9,0,2,1 59,59007,"Cloverdale--Langley City",59009,"Fleetwood - Port Kells",100318,160129,29517,"SVR2",18,.,.,".",0,81,42,18,19,0,2,0 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"A.P.",28,600.0,600.0,1,0,131,89,18,18,0,6,1 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"A.P.",43,604.0,604.0,1,0,195,144,27,18,0,6,0 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"A.P.",48,608.0,608.0,1,0,137,87,21,21,0,6,1 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"A.P.",100,606.0,606.0,1,0,386,244,81,31,0,26,5 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"A.P.",100,607.0,607.0,1,0,290,207,46,26,0,8,3 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"M.P.",33,502.0,502.0,1,56,44,28,9,5,0,2,0 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"M.P.",100,500.0,500.0,1,128,64,44,10,6,0,2,2 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"O.P.",95,7.0,7.0,1,327,197,122,40,26,0,9,1 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"O.P.",97,79.0,79.0,1,484,216,114,61,21,0,16,4 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"O.P.",100,8.0,410.0,58,21675,11068,6562,2774,1058,0,598,76 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"SVR1",25,.,.,".",35,23,13,3,5,0,1,1 59,59007,"Cloverdale--Langley City",59013,"Langley",100318,129824,33572,"SVR2",25,.,.,".",0,237,163,35,30,0,9,1 59,59007,"Cloverdale--Langley City",59027,"South Surrey - White Rock - Cloverdale",100318,127729,37229,"A.P.",94,602.0,602.0,1,0,466,266,100,62,0,18,20 59,59007,"Cloverdale--Langley City",59027,"South Surrey - White Rock - Cloverdale",100318,127729,37229,"A.P.",100,600.0,601.0,2,0,1195,766,211,159,0,33,26 59,59007,"Cloverdale--Langley City",59027,"South Surrey - White Rock - Cloverdale",100318,127729,37229,"M.P.",67,504.0,504.0,1,146,105,44,33,17,0,3,8 59,59007,"Cloverdale--Langley City",59027,"South Surrey - White Rock - Cloverdale",100318,127729,37229,"O.P.",100,1.0,42.0,56,24971,13163,7565,3236,1410,0,594,358 59,59007,"Cloverdale--Langley City",59027,"South Surrey - White Rock - Cloverdale",100318,127729,37229,"SVR1",27,.,.,".",35,22,10,3,7,0,2,0 59,59007,"Cloverdale--Langley City",59027,"South Surrey - White Rock - Cloverdale",100318,127729,37229,"SVR2",27,.,.,".",0,297,188,34,60,0,12,4 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"A.P.",35,609.0,609.0,1,0,223,125,57,27,0,13,1 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"A.P.",92,607.0,607.0,1,0,347,209,91,30,0,17,0 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"A.P.",100,601.0,611.0,9,0,4311,2608,1094,418,0,155,36 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"M.P.",100,501.0,502.0,2,138,87,41,30,11,0,5,0 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"O.P.",100,28.0,400.0,157,72527,34751,19081,11076,2757,0,1514,323 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"SVR1",84,.,.,".",124,79,35,17,19,0,8,1 59,59008,"Coquitlam--Port Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",110277,129706,110277,"SVR2",84,.,.,".",0,487,273,111,68,0,32,3 59,59009,"Courtenay--Alberni",59014,"Nanaimo - Alberni",110391,127275,75995,"A.P.",32,609.0,609.0,1,0,138,72,46,14,0,5,1 59,59009,"Courtenay--Alberni",59014,"Nanaimo - Alberni",110391,127275,75995,"A.P.",100,600.0,615.0,11,0,5892,3113,1792,589,0,363,35 59,59009,"Courtenay--Alberni",59014,"Nanaimo - Alberni",110391,127275,75995,"M.P.",100,500.0,503.0,4,544,356,168,107,49,0,24,8 59,59009,"Courtenay--Alberni",59014,"Nanaimo - Alberni",110391,127275,75995,"O.P.",100,1.0,141.0,172,58672,32689,14362,13359,2113,0,2539,316 59,59009,"Courtenay--Alberni",59014,"Nanaimo - Alberni",110391,127275,75995,"SVR1",60,.,.,".",129,79,34,17,16,0,11,2 59,59009,"Courtenay--Alberni",59014,"Nanaimo - Alberni",110391,127275,75995,"SVR2",60,.,.,".",0,599,326,165,69,0,37,2 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"A.P.",74,615.0,615.0,1,0,261,120,109,13,0,17,1 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"A.P.",86,614.0,614.0,1,0,775,464,216,62,0,30,3 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"A.P.",96,608.0,608.0,1,0,734,413,256,45,0,16,4 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"A.P.",100,609.0,610.0,2,0,819,390,342,38,0,44,5 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"M.P.",100,503.0,503.0,1,94,58,19,23,9,0,5,2 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",0.4,210.0,210.0,1,1,1,0,0,0,0,0,0 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",4.7,178.0,178.0,1,23,12,6,5,1,0,0,0 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",11,213.0,213.0,1,45,25,11,10,2,0,1,0 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",37,152.1,152.1,1,185,62,24,29,4,0,3,1 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",45,174.1,174.1,1,74,34,16,16,1,0,1,0 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",57,212.0,212.0,1,280,145,61,67,5,0,10,2 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",76,175.0,175.0,1,324,154,77,55,13,0,8,2 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",79,214.0,214.0,1,267,163,74,71,6,0,11,0 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",94,215.0,215.0,1,620,369,105,224,15,0,24,1 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"O.P.",100,137.0,402.0,68,24469,13355,5527,6253,735,0,749,91 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"SVR1",29,.,.,".",201,100,67,17,9,0,6,1 59,59009,"Courtenay--Alberni",59031,"Vancouver Island North",110391,118374,34396,"SVR2",29,.,.,".",0,653,349,220,52,0,29,3 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"A.P.",1.3,602.0,602.0,1,0,6,3,2,1,0,0,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"A.P.",7.8,600.0,600.0,1,0,37,15,14,6,0,2,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"A.P.",99,613.0,613.0,1,0,810,388,288,98,0,32,4 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"A.P.",100,610.0,610.0,1,0,518,271,155,71,0,20,1 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"A.P.",100,601.0,601.0,1,0,762,368,252,103,0,35,4 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"M.P.",100,500.0,500.0,1,164,113,49,37,18,0,4,5 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",0.4,2.0,2.0,1,1,1,0,0,0,0,0,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",0.8,3.0,3.0,1,2,1,0,1,0,0,0,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",15,59.0,59.0,1,54,34,14,13,4,0,4,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",87,57.0,57.0,1,396,212,114,61,23,0,14,1 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",96,22.0,22.0,1,570,326,169,124,20,0,12,2 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",99,25.0,25.0,1,401,207,84,74,29,0,20,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"O.P.",100,1.0,58.0,45,20656,10384,4546,4059,923,0,791,65 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"SVR1",23,.,.,".",288,139,99,14,20,0,6,0 59,59010,"Cowichan--Malahat--Langford",59008,"Esquimalt - Juan de Fuca",99160,132300,31760,"SVR2",23,.,.,".",0,257,127,67,49,0,13,2 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"A.P.",5.3,607.0,607.0,1,0,42,18,19,2,0,3,0 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"A.P.",69,608.0,608.0,1,0,424,223,153,21,0,27,0 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"A.P.",100,600.0,616.0,9,0,4622,2028,2102,247,0,236,9 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"M.P.",33,502.0,502.0,1,49,27,11,12,3,0,1,0 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"M.P.",100,503.0,503.0,1,231,89,31,34,14,0,8,2 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"O.P.",46,114.0,114.0,1,222,140,55,70,6,0,10,0 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"O.P.",100,1.0,216.0,151,50692,28142,11765,13064,1074,0,2182,57 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"SVR1",51,.,.,".",170,90,44,24,15,0,7,1 59,59010,"Cowichan--Malahat--Langford",59015,"Nanaimo - Cowichan",99160,131118,67400,"SVR2",51,.,.,".",0,377,145,179,27,0,27,0 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"A.P.",0.2,601.0,601.0,1,0,0,0,0,0,0,0,0 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"A.P.",100,606.0,612.0,6,0,2592,1618,402,450,0,108,14 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"M.P.",100,501.0,503.0,3,445,291,162,53,61,0,8,7 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"O.P.",2.8,26.1,26.1,1,14,6,3,2,1,0,0,0 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"O.P.",100,91.0,174.0,86,34567,20122,11269,4642,2909,0,1134,168 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"SVR1",43,.,.,".",49,28,15,3,8,0,2,0 59,59011,"Delta",59006,"Delta - Richmond East",100588,111411,46648,"SVR2",43,.,.,".",0,151,89,22,33,0,7,1 59,59011,"Delta",59016,"Newton - North Delta",100588,127954,53940,"A.P.",100,600.0,604.0,5,0,3067,1168,897,895,0,94,13 59,59011,"Delta",59016,"Newton - North Delta",100588,127954,53940,"M.P.",33,500.0,500.0,1,66,37,3,23,7,0,1,3 59,59011,"Delta",59016,"Newton - North Delta",100588,127954,53940,"O.P.",100,1.0,85.0,84,35612,18965,7561,6763,3728,0,815,98 59,59011,"Delta",59016,"Newton - North Delta",100588,127954,53940,"SVR1",47,.,.,".",60,35,14,4,14,0,2,1 59,59011,"Delta",59016,"Newton - North Delta",100588,127954,53940,"SVR2",47,.,.,".",0,548,81,51,408,0,6,2 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"A.P.",16,607.0,607.0,1,0,126,54,35,34,0,2,1 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"A.P.",26,609.0,609.0,1,0,181,109,43,24,0,4,1 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"A.P.",67,605.0,605.0,1,0,427,167,125,131,0,3,1 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"A.P.",88,611.0,611.0,1,0,329,126,86,112,0,3,3 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"A.P.",100,600.0,610.0,6,0,3951,2228,1017,616,0,66,24 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"M.P.",50,500.0,500.0,1,55,42,18,14,7,0,1,3 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"M.P.",100,501.0,501.0,1,254,145,65,46,28,0,3,3 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"O.P.",18,67.0,67.0,1,33,17,8,4,2,0,2,1 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"O.P.",21,152.0,152.0,1,68,29,16,9,3,0,1,0 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"O.P.",48,131.0,131.0,1,236,100,53,31,11,0,5,0 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"O.P.",92,69.0,69.0,1,349,118,63,26,25,0,3,2 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"O.P.",100,1.0,151.1,139,59856,26044,12239,8947,3965,0,697,196 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"SVR1",64,.,.,".",113,73,24,10,31,0,6,3 59,59012,"Fleetwood--Port Kells",59009,"Fleetwood - Port Kells",109742,160129,101374,"SVR2",64,.,.,".",0,287,148,64,67,0,8,1 59,59012,"Fleetwood--Port Kells",59028,"Surrey North",109742,125963,8368,"A.P.",57,606.0,606.0,1,0,281,110,85,76,0,6,4 59,59012,"Fleetwood--Port Kells",59028,"Surrey North",109742,125963,8368,"O.P.",14,120.0,120.0,1,69,32,14,10,6,0,1,1 59,59012,"Fleetwood--Port Kells",59028,"Surrey North",109742,125963,8368,"O.P.",31,98.0,98.0,1,145,73,36,24,8,0,3,3 59,59012,"Fleetwood--Port Kells",59028,"Surrey North",109742,125963,8368,"O.P.",100,99.0,122.1,11,4713,2291,1052,849,260,0,72,58 59,59012,"Fleetwood--Port Kells",59028,"Surrey North",109742,125963,8368,"SVR1",6.8,.,.,".",13,11,3,3,4,0,1,1 59,59012,"Fleetwood--Port Kells",59028,"Surrey North",109742,125963,8368,"SVR2",6.8,.,.,".",0,26,10,7,8,0,1,0 59,59013,"Kamloops--Thompson--Cariboo",59010,"Kamloops - Thompson - Cariboo",118618,120218,118618,"A.P.",100,601.0,616.0,16,0,7056,3911,2426,408,0,288,23 59,59013,"Kamloops--Thompson--Cariboo",59010,"Kamloops - Thompson - Cariboo",118618,120218,118618,"M.P.",100,500.0,505.0,6,1051,647,330,211,78,0,19,9 59,59013,"Kamloops--Thompson--Cariboo",59010,"Kamloops - Thompson - Cariboo",118618,120218,118618,"O.P.",100,2.0,168.0,195,88389,47015,24348,17642,2415,0,2461,149 59,59013,"Kamloops--Thompson--Cariboo",59010,"Kamloops - Thompson - Cariboo",118618,120218,118618,"SVR1",99,.,.,".",198,126,60,28,29,0,9,1 59,59013,"Kamloops--Thompson--Cariboo",59010,"Kamloops - Thompson - Cariboo",118618,120218,118618,"SVR2",99,.,.,".",0,1149,630,375,71,0,70,3 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"A.P.",34,614.0,614.0,1,0,188,109,33,36,0,10,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"A.P.",93,610.0,610.0,1,0,378,186,94,60,0,37,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"A.P.",100,600.0,616.0,12,0,5823,3543,1026,837,0,417,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"M.P.",50,504.0,513.0,3,251,187,118,40,24,0,6,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"M.P.",100,500.0,512.0,5,683,444,284,81,62,0,17,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"O.P.",3.3,103.0,103.0,1,23,10,5,2,1,0,1,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"O.P.",11,156.0,156.0,1,54,32,20,7,3,0,2,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"O.P.",100,1.0,402.0,197,79942,40373,23361,8941,4354,0,3717,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"SVR1",80,.,.,".",167,106,39,14,35,0,18,0 59,59014,"Kelowna--Lake Country",59011,"Kelowna - Lake Country",110051,134732,110051,"SVR2",80,.,.,".",0,798,555,90,134,0,19,0 59,59015,"Kootenay--Columbia",59012,"Kootenay - Columbia",107589,88026,84698,"A.P.",20,603.0,603.0,1,0,43,24,14,2,0,3,0 59,59015,"Kootenay--Columbia",59012,"Kootenay - Columbia",107589,88026,84698,"A.P.",100,600.0,618.0,18,0,7017,4125,2148,282,0,296,166 59,59015,"Kootenay--Columbia",59012,"Kootenay - Columbia",107589,88026,84698,"M.P.",100,500.0,505.0,6,929,495,262,150,45,0,14,24 59,59015,"Kootenay--Columbia",59012,"Kootenay - Columbia",107589,88026,84698,"O.P.",100,1.0,400.0,169,63937,32856,18356,11017,1039,0,2040,404 59,59015,"Kootenay--Columbia",59012,"Kootenay - Columbia",107589,88026,84698,"SVR1",96,.,.,".",141,83,43,9,21,0,8,2 59,59015,"Kootenay--Columbia",59012,"Kootenay - Columbia",107589,88026,84698,"SVR2",96,.,.,".",0,600,355,165,27,0,39,13 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"A.P.",1.6,619.0,619.0,1,0,3,1,2,0,0,0,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"A.P.",11,606.0,606.0,1,0,23,4,17,0,0,1,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"A.P.",100,608.0,617.0,5,0,1303,342,780,52,0,129,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"M.P.",50,507.0,507.0,1,19,8,3,4,2,0,1,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"M.P.",100,501.0,501.0,1,112,55,15,34,2,0,4,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"O.P.",4.2,185.0,185.0,1,15,8,3,4,0,0,0,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"O.P.",17,176.0,176.0,1,33,20,10,10,0,0,1,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"O.P.",100,89.0,190.1,50,17112,10021,2815,6013,353,0,840,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"SVR1",23,.,.,".",32,19,6,7,4,0,2,0 59,59015,"Kootenay--Columbia",59026,"British Columbia Southern Interior",107589,97952,22891,"SVR2",23,.,.,".",0,247,84,136,11,0,16,0 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"A.P.",71,600.0,600.0,1,0,141,100,30,6,0,4,0 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"O.P.",5.5,2.0,2.0,1,26,14,11,2,1,0,1,-0 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"O.P.",64,20.0,20.0,1,300,125,67,21,34,0,3,1 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"O.P.",92,1.0,1.0,1,389,229,157,44,18,0,8,1 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"O.P.",100,3.0,19.0,9,3526,1923,1245,382,219,0,73,4 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"SVR1",5.0,.,.,".",8,5,3,0,2,0,0,0 59,59016,"Langley--Aldergrove",59001,"Abbotsford",103084,133765,6832,"SVR2",5.0,.,.,".",0,60,48,6,4,0,2,0 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"A.P.",0.2,606.0,606.0,1,0,1,0,0,0,0,0,0 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"A.P.",52,608.0,608.0,1,0,151,96,23,24,0,7,2 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"A.P.",57,604.0,604.0,1,0,260,192,35,25,0,7,1 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"A.P.",72,600.0,600.0,1,0,344,233,49,46,0,14,1 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"A.P.",100,601.0,612.0,8,0,3329,2299,540,335,0,141,14 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"M.P.",67,502.0,502.0,1,112,87,57,18,9,0,3,0 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"M.P.",100,501.0,501.0,1,83,66,42,14,8,0,2,0 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"O.P.",3.1,79.0,79.0,1,15,7,4,2,1,0,0,0 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"O.P.",4.9,7.0,7.0,1,17,10,6,2,1,0,0,0 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"O.P.",100,1.0,409.0,181,67190,37119,24302,7356,3171,0,2054,236 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"SVR1",75,.,.,".",103,67,38,10,16,0,1,2 59,59016,"Langley--Aldergrove",59013,"Langley",103084,129824,96252,"SVR2",75,.,.,".",0,703,483,103,89,0,25,2 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",0.1,613.0,613.0,1,0,1,0,0,0,0,0,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",9.5,617.0,617.0,1,0,33,23,0,3,0,2,5 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",25,616.0,616.0,1,0,94,72,9,11,0,3,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",27,600.0,600.0,1,0,53,38,12,2,0,2,-0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",38,609.0,609.0,1,0,211,162,26,17,0,5,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",40,601.0,601.0,1,0,93,47,24,21,0,2,-0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",90,604.0,604.0,1,0,144,110,14,15,0,5,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"A.P.",94,602.0,602.0,1,0,287,162,67,54,0,4,1 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"M.P.",50,507.0,507.0,1,45,21,16,2,2,0,1,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",2.4,99.0,99.0,1,11,6,4,1,1,0,0,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",8.0,1.0,1.0,1,34,20,14,4,2,0,1,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",13,90.0,90.0,1,39,22,14,5,1,0,1,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",28,161.2,161.2,1,46,17,8,7,1,0,1,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",42,9.1,9.1,1,198,80,20,38,21,0,1,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",59,9.0,9.0,1,197,74,11,23,38,0,1,1 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",62,161.1,161.1,1,509,324,244,45,26,0,10,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",70,142.0,142.0,1,292,139,75,37,23,0,4,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",75,86.0,86.0,1,463,221,172,30,16,0,3,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",80,83.0,83.0,1,303,154,100,41,10,0,2,1 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",82,161.0,161.0,1,245,117,89,20,2,0,5,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",94,2.0,2.0,1,436,246,191,26,15,0,13,0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"O.P.",100,4.0,147.1,41,14328,7390,4027,1938,1120,0,229,76 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"SVR1",20,.,.,".",34,22,10,2,8,0,2,-0 59,59017,"Mission--Matsqui--Fraser Canyon",59001,"Abbotsford",90871,133765,30114,"SVR2",20,.,.,".",0,242,193,23,18,0,7,1 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"A.P.",0.2,605.0,605.0,1,0,1,1,0,0,0,0,0 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"A.P.",83,604.0,604.0,1,0,59,31,22,2,0,3,0 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"A.P.",100,601.0,601.0,1,0,202,109,68,13,0,11,1 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"A.P.",100,602.0,612.0,3,0,710,436,156,82,0,31,5 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"M.P.",67,505.0,505.0,1,52,39,25,5,4,0,1,3 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"O.P.",3.2,55.1,55.1,1,9,4,2,1,1,0,0,0 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"O.P.",31,47.0,47.0,1,154,52,23,24,2,0,2,1 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"O.P.",100,11.0,11.0,1,217,83,34,29,4,0,14,2 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"O.P.",100,9.0,161.0,44,15478,7735,4034,2612,601,0,434,54 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"SVR1",19,.,.,".",53,31,16,5,7,0,3,0 59,59017,"Mission--Matsqui--Fraser Canyon",59005,"Chilliwack - Fraser Canyon",90871,121737,23122,"SVR2",19,.,.,".",0,124,81,22,13,0,5,2 59,59017,"Mission--Matsqui--Fraser Canyon",59007,"Pitt Meadows - Maple Ridge - Mission",90871,131746,37635,"A.P.",89,610.0,610.0,1,0,442,275,132,19,0,16,0 59,59017,"Mission--Matsqui--Fraser Canyon",59007,"Pitt Meadows - Maple Ridge - Mission",90871,131746,37635,"A.P.",100,600.0,613.0,4,0,1295,772,407,77,0,39,0 59,59017,"Mission--Matsqui--Fraser Canyon",59007,"Pitt Meadows - Maple Ridge - Mission",90871,131746,37635,"M.P.",100,500.0,503.0,2,289,156,84,55,13,0,4,0 59,59017,"Mission--Matsqui--Fraser Canyon",59007,"Pitt Meadows - Maple Ridge - Mission",90871,131746,37635,"O.P.",100,1.0,179.0,59,25005,12466,6480,4766,536,0,684,0 59,59017,"Mission--Matsqui--Fraser Canyon",59007,"Pitt Meadows - Maple Ridge - Mission",90871,131746,37635,"SVR1",28,.,.,".",51,29,12,6,9,0,2,0 59,59017,"Mission--Matsqui--Fraser Canyon",59007,"Pitt Meadows - Maple Ridge - Mission",90871,131746,37635,"SVR2",28,.,.,".",0,201,112,65,17,0,7,0 59,59018,"Nanaimo--Ladysmith",59014,"Nanaimo - Alberni",114998,127275,51280,"A.P.",68,609.0,609.0,1,0,298,156,100,31,0,10,1 59,59018,"Nanaimo--Ladysmith",59014,"Nanaimo - Alberni",114998,127275,51280,"A.P.",100,610.0,617.0,6,0,3342,1727,1101,335,0,166,13 59,59018,"Nanaimo--Ladysmith",59014,"Nanaimo - Alberni",114998,127275,51280,"M.P.",100,504.0,504.0,1,137,130,76,32,12,0,4,6 59,59018,"Nanaimo--Ladysmith",59014,"Nanaimo - Alberni",114998,127275,51280,"O.P.",100,133.0,400.0,109,39090,21667,10197,8325,1701,0,1292,152 59,59018,"Nanaimo--Ladysmith",59014,"Nanaimo - Alberni",114998,127275,51280,"SVR1",40,.,.,".",85,52,22,11,10,0,7,1 59,59018,"Nanaimo--Ladysmith",59014,"Nanaimo - Alberni",114998,127275,51280,"SVR2",40,.,.,".",0,396,216,110,45,0,24,1 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"A.P.",31,608.0,608.0,1,0,188,99,68,9,0,12,-0 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"A.P.",95,607.0,607.0,1,0,765,319,348,35,0,61,2 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"A.P.",100,601.0,617.0,7,0,3186,1089,1681,147,0,257,12 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"M.P.",67,502.0,502.0,1,98,53,21,24,7,0,1,0 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"M.P.",100,500.0,501.0,2,389,199,74,88,24,0,11,2 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"O.P.",54,114.0,114.0,1,259,165,65,82,6,0,11,0 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"O.P.",100,13.0,113.0,122,47602,25001,8332,13133,1331,0,2120,85 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"SVR1",49,.,.,".",160,85,42,22,14,0,6,0 59,59018,"Nanaimo--Ladysmith",59015,"Nanaimo - Cowichan",114998,131118,63718,"SVR2",49,.,.,".",0,356,136,169,25,0,25,0 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"A.P.",23,604.0,604.0,1,0,97,40,43,10,0,3,0 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"A.P.",81,606.0,606.0,1,0,279,132,113,24,0,9,1 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"A.P.",87,605.0,605.0,1,0,420,137,221,39,0,19,4 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"A.P.",100,607.0,612.0,6,0,2569,795,1463,226,0,80,5 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"M.P.",50,502.0,502.0,1,104,73,35,31,6,0,1,1 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"M.P.",100,501.0,503.0,2,415,217,71,104,34,0,4,4 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",16,61.0,61.0,1,54,29,16,7,5,0,1,0 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",24,64.0,64.0,1,95,36,11,17,4,0,3,0 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",41,86.0,86.0,1,238,85,21,52,5,0,4,2 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",45,63.0,63.0,1,245,109,42,50,13,0,5,0 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",50,90.0,90.0,1,283,111,44,50,13,0,3,0 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",81,62.0,62.0,1,381,160,78,60,19,0,2,1 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",82,88.0,88.0,1,459,206,79,97,16,0,11,4 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",96,166.0,166.0,1,405,216,115,78,18,0,4,2 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",100,95.0,95.0,1,433,199,60,110,11,0,16,2 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"O.P.",100,65.0,180.0,101,44603,21027,7088,11017,1934,0,871,117 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"SVR1",57,.,.,".",79,44,14,11,17,0,2,1 59,59019,"New Westminster--Burnaby",59003,"Burnaby - New Westminster",108652,131917,74650,"SVR2",57,.,.,".",0,214,70,110,25,0,7,1 59,59019,"New Westminster--Burnaby",59017,"New Westminster - Coquitlam",108652,122899,34002,"A.P.",100,606.0,612.0,4,0,2101,733,1103,167,0,95,3 59,59019,"New Westminster--Burnaby",59017,"New Westminster - Coquitlam",108652,122899,34002,"M.P.",50,500.0,500.0,1,69,33,11,13,4,0,5,0 59,59019,"New Westminster--Burnaby",59017,"New Westminster - Coquitlam",108652,122899,34002,"M.P.",100,502.0,502.0,1,177,118,43,56,12,0,4,3 59,59019,"New Westminster--Burnaby",59017,"New Westminster - Coquitlam",108652,122899,34002,"O.P.",100,141.0,195.0,55,23775,12361,4494,6295,934,0,613,25 59,59019,"New Westminster--Burnaby",59017,"New Westminster - Coquitlam",108652,122899,34002,"SVR1",29,.,.,".",54,30,12,8,7,0,3,1 59,59019,"New Westminster--Burnaby",59017,"New Westminster - Coquitlam",108652,122899,34002,"SVR2",29,.,.,".",0,209,90,91,19,0,8,0 59,59020,"North Okanagan--Shuswap",59012,"Kootenay - Columbia",121474,88026,412,"A.P.",10,603.0,603.0,1,0,22,12,7,1,0,1,0 59,59020,"North Okanagan--Shuswap",59012,"Kootenay - Columbia",121474,88026,412,"O.P.",2.8,32.0,32.0,1,9,6,3,3,0,0,0,0 59,59020,"North Okanagan--Shuswap",59012,"Kootenay - Columbia",121474,88026,412,"O.P.",100,30.0,30.0,1,310,193,54,109,4,0,22,4 59,59020,"North Okanagan--Shuswap",59012,"Kootenay - Columbia",121474,88026,412,"SVR1",0.5,.,.,".",1,0,0,0,0,0,0,0 59,59020,"North Okanagan--Shuswap",59012,"Kootenay - Columbia",121474,88026,412,"SVR2",0.5,.,.,".",0,3,2,1,0,0,0,0 59,59020,"North Okanagan--Shuswap",59018,"Okanagan - Shuswap",121474,121062,121062,"A.P.",100,600.0,621.0,22,0,8228,4990,1746,765,0,727,0 59,59020,"North Okanagan--Shuswap",59018,"Okanagan - Shuswap",121474,121062,121062,"M.P.",100,500.0,507.0,8,1500,814,490,170,102,0,52,0 59,59020,"North Okanagan--Shuswap",59018,"Okanagan - Shuswap",121474,121062,121062,"O.P.",100,1.0,192.0,234,90078,46650,25375,12869,3224,0,5182,0 59,59020,"North Okanagan--Shuswap",59018,"Okanagan - Shuswap",121474,121062,121062,"SVR1",100,.,.,".",184,104,47,23,22,0,12,0 59,59020,"North Okanagan--Shuswap",59018,"Okanagan - Shuswap",121474,121062,121062,"SVR2",100,.,.,".",0,902,537,147,133,0,85,0 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"A.P.",0.0,612.0,612.0,1,0,0,0,0,0,0,0,0 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"A.P.",38,609.0,609.0,1,0,259,128,34,84,0,12,1 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"A.P.",100,600.0,611.0,10,0,6507,3365,844,1984,0,273,41 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"M.P.",50,501.0,501.0,1,52,28,12,8,4,0,3,1 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"M.P.",100,500.0,500.0,1,183,92,49,20,20,0,3,0 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"O.P.",0.0,131.0,131.0,1,0,0,0,0,0,0,0,0 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"O.P.",68,85.0,85.0,1,317,148,70,32,37,0,8,1 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"O.P.",100,89.0,89.0,1,515,302,148,49,97,0,8,1 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"O.P.",100,1.0,207.0,167,70254,39010,18284,6775,11614,0,2120,217 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"SVR1",80,.,.,".",121,70,33,10,24,0,2,2 59,59021,"North Vancouver",59019,"North Vancouver",109639,127330,102203,"SVR2",80,.,.,".",0,706,381,58,245,0,20,2 59,59021,"North Vancouver",59036,"West Vancouver - Sunshine Coast - Sea to Sky",109639,133910,7436,"A.P.",70,614.0,614.0,1,0,311,148,60,86,0,11,5 59,59021,"North Vancouver",59036,"West Vancouver - Sunshine Coast - Sea to Sky",109639,133910,7436,"O.P.",82,210.0,210.0,1,343,167,69,36,43,0,15,5 59,59021,"North Vancouver",59036,"West Vancouver - Sunshine Coast - Sea to Sky",109639,133910,7436,"O.P.",100,209.0,219.0,9,4915,2617,1192,542,686,0,151,46 59,59021,"North Vancouver",59036,"West Vancouver - Sunshine Coast - Sea to Sky",109639,133910,7436,"SVR1",5.3,.,.,".",10,5,2,1,2,0,0,0 59,59021,"North Vancouver",59036,"West Vancouver - Sunshine Coast - Sea to Sky",109639,133910,7436,"SVR2",5.3,.,.,".",0,82,42,12,22,0,5,1 59,59022,"Pitt Meadows--Maple Ridge",59007,"Pitt Meadows - Maple Ridge - Mission",94111,131746,94111,"A.P.",11,610.0,610.0,1,0,55,34,17,2,0,2,0 59,59022,"Pitt Meadows--Maple Ridge",59007,"Pitt Meadows - Maple Ridge - Mission",94111,131746,94111,"A.P.",100,601.0,609.0,9,0,4442,2628,1412,236,0,166,0 59,59022,"Pitt Meadows--Maple Ridge",59007,"Pitt Meadows - Maple Ridge - Mission",94111,131746,94111,"M.P.",100,501.0,504.0,3,425,292,154,99,23,0,16,0 59,59022,"Pitt Meadows--Maple Ridge",59007,"Pitt Meadows - Maple Ridge - Mission",94111,131746,94111,"O.P.",100,3.0,127.1,150,63715,33046,17940,11696,1741,0,1669,0 59,59022,"Pitt Meadows--Maple Ridge",59007,"Pitt Meadows - Maple Ridge - Mission",94111,131746,94111,"SVR1",72,.,.,".",128,72,29,15,23,0,5,0 59,59022,"Pitt Meadows--Maple Ridge",59007,"Pitt Meadows - Maple Ridge - Mission",94111,131746,94111,"SVR2",72,.,.,".",0,510,283,165,43,0,19,0 59,59023,"Port Moody--Coquitlam",59017,"New Westminster - Coquitlam",108326,122899,88897,"A.P.",100,600.0,611.0,9,0,4897,2191,2163,397,0,140,6 59,59023,"Port Moody--Coquitlam",59017,"New Westminster - Coquitlam",108326,122899,88897,"M.P.",50,500.0,500.0,1,69,33,11,13,4,0,5,0 59,59023,"Port Moody--Coquitlam",59017,"New Westminster - Coquitlam",108326,122899,88897,"M.P.",100,501.0,506.0,5,745,420,171,159,61,0,23,6 59,59023,"Port Moody--Coquitlam",59017,"New Westminster - Coquitlam",108326,122899,88897,"O.P.",100,1.0,140.0,136,59313,29323,12766,12873,2398,0,1237,49 59,59023,"Port Moody--Coquitlam",59017,"New Westminster - Coquitlam",108326,122899,88897,"SVR1",71,.,.,".",135,75,29,20,18,0,6,1 59,59023,"Port Moody--Coquitlam",59017,"New Westminster - Coquitlam",108326,122899,88897,"SVR2",71,.,.,".",0,523,225,229,48,0,21,1 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"A.P.",7.7,607.0,607.0,1,0,29,17,8,3,0,1,0 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"A.P.",65,609.0,609.0,1,0,410,230,104,50,0,25,1 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"A.P.",100,600.0,600.0,1,0,662,450,118,69,0,22,3 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"M.P.",100,500.0,500.0,1,91,65,30,21,7,0,4,3 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"O.P.",100,1.0,148.0,31,13287,6918,4026,1849,636,0,358,49 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"SVR1",16,.,.,".",23,14,6,3,3,0,1,0 59,59023,"Port Moody--Coquitlam",59021,"Port Moody - Westwood - Port Coquitlam",108326,129706,19429,"SVR2",16,.,.,".",0,90,50,21,12,0,6,1 59,59024,"Prince George--Peace River--Northern Rockies",59010,"Kamloops - Thompson - Cariboo",107382,120218,1600,"A.P.",100,600.0,600.0,1,0,158,90,47,7,0,14,0 59,59024,"Prince George--Peace River--Northern Rockies",59010,"Kamloops - Thompson - Cariboo",107382,120218,1600,"O.P.",100,1.0,1.0,1,1214,645,303,249,17,0,70,6 59,59024,"Prince George--Peace River--Northern Rockies",59010,"Kamloops - Thompson - Cariboo",107382,120218,1600,"SVR1",1.3,.,.,".",3,2,1,0,0,0,0,0 59,59024,"Prince George--Peace River--Northern Rockies",59010,"Kamloops - Thompson - Cariboo",107382,120218,1600,"SVR2",1.3,.,.,".",0,16,9,5,1,0,1,0 59,59024,"Prince George--Peace River--Northern Rockies",59022,"Prince George - Peace River",107382,105782,105782,"A.P.",100,600.0,617.0,18,0,5061,3274,1179,294,0,276,38 59,59024,"Prince George--Peace River--Northern Rockies",59022,"Prince George - Peace River",107382,105782,105782,"M.P.",100,500.0,505.0,6,856,486,287,139,39,0,21,0 59,59024,"Prince George--Peace River--Northern Rockies",59022,"Prince George - Peace River",107382,105782,105782,"O.P.",100,1.0,196.0,194,71536,32077,19836,8365,1579,0,1931,366 59,59024,"Prince George--Peace River--Northern Rockies",59022,"Prince George - Peace River",107382,105782,105782,"SVR1",100,.,.,".",188,104,35,27,31,0,9,2 59,59024,"Prince George--Peace River--Northern Rockies",59022,"Prince George - Peace River",107382,105782,105782,"SVR2",100,.,.,".",0,818,514,166,65,0,64,9 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"A.P.",29,609.0,609.0,1,0,149,99,21,26,0,2,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"A.P.",31,611.0,611.0,1,0,177,114,24,34,0,5,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"A.P.",53,608.0,608.0,1,0,259,165,40,44,0,10,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"A.P.",100,600.0,610.0,9,0,3680,2337,417,799,0,127,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"M.P.",100,500.0,502.0,3,742,360,233,63,53,0,11,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"O.P.",34,105.4,105.4,1,193,64,38,14,10,0,1,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"O.P.",100,1.0,160.0,155,64384,28932,16538,5569,5307,0,1518,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"SVR1",76,.,.,".",77,44,27,4,9,0,3,0 59,59025,"Richmond Centre",59023,"Richmond",93863,125710,93863,"SVR2",76,.,.,".",0,417,237,51,108,0,21,-0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"A.P.",0.4,610.0,610.0,1,0,2,1,1,0,0,0,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"A.P.",0.7,613.0,613.0,1,0,6,3,2,1,0,0,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"A.P.",92,600.0,600.0,1,0,439,181,160,71,0,23,4 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"A.P.",99,602.0,602.0,1,0,485,238,146,64,0,36,1 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"A.P.",100,603.0,615.0,11,0,6853,3099,2358,996,0,383,17 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",1.1,25.0,25.0,1,4,2,1,1,0,0,0,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",3.7,22.0,22.0,1,22,13,6,5,1,0,0,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",13,57.0,57.0,1,60,32,17,9,3,0,2,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",85,59.0,59.0,1,307,192,77,72,21,0,21,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",99,3.0,3.0,1,282,139,41,73,9,0,16,0 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",100,2.0,2.0,1,329,203,56,93,22,0,31,2 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"O.P.",100,4.0,206.0,176,73970,40590,15067,17842,3654,0,3815,212 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"SVR1",77,.,.,".",971,467,332,49,66,0,19,1 59,59026,"Esquimalt--Saanich--Sooke",59008,"Esquimalt - Juan de Fuca",113004,132300,100540,"SVR2",77,.,.,".",0,866,426,226,166,0,42,5 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"A.P.",30,606.0,606.0,1,0,258,109,41,26,0,82,0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"A.P.",73,608.0,608.0,1,0,703,190,113,67,0,332,0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"M.P.",50,501.0,501.0,1,137,84,50,14,12,0,9,0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"O.P.",62,130.0,130.0,1,279,167,68,27,15,0,57,-0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"O.P.",63,136.1,136.1,1,280,162,57,42,11,0,52,0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"O.P.",100,135.0,208.0,21,8684,4814,1215,1037,274,0,2288,0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"SVR1",10,.,.,".",39,22,12,1,3,0,6,-0 59,59026,"Esquimalt--Saanich--Sooke",59024,"Saanich - Gulf Islands",113004,116749,12464,"SVR2",10,.,.,".",0,155,59,13,12,0,72,-0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"A.P.",27,608.0,608.0,1,0,263,71,43,25,0,125,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"A.P.",70,606.0,606.0,1,0,609,256,96,63,0,194,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"A.P.",100,600.0,614.0,13,0,9751,3889,854,746,0,4262,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"M.P.",50,501.0,501.0,1,137,84,50,14,12,0,9,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"M.P.",100,500.0,503.0,3,400,277,139,41,35,0,62,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"O.P.",37,136.1,136.1,1,168,97,34,25,7,0,31,-0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"O.P.",38,130.0,130.0,1,172,102,42,16,9,0,35,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"O.P.",100,1.0,218.0,201,82735,49700,17675,5684,2755,0,23586,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"SVR1",90,.,.,".",350,194,103,9,31,0,51,0 59,59027,"Saanich--Gulf Islands",59024,"Saanich - Gulf Islands",104285,116749,104285,"SVR2",90,.,.,".",0,1385,525,116,105,0,638,0 59,59028,"Skeena--Bulkley Valley",59004,"Cariboo - Prince George",90586,108840,588,"A.P.",0.1,604.0,604.0,1,0,0,0,0,0,0,0,0 59,59028,"Skeena--Bulkley Valley",59004,"Cariboo - Prince George",90586,108840,588,"A.P.",100,600.0,600.0,1,0,47,19,22,2,0,4,0 59,59028,"Skeena--Bulkley Valley",59004,"Cariboo - Prince George",90586,108840,588,"O.P.",1.6,60.0,60.0,1,6,3,2,0,0,0,0,0 59,59028,"Skeena--Bulkley Valley",59004,"Cariboo - Prince George",90586,108840,588,"O.P.",100,1.0,1.0,1,496,225,94,95,7,0,24,5 59,59028,"Skeena--Bulkley Valley",59004,"Cariboo - Prince George",90586,108840,588,"SVR1",0.7,.,.,".",1,1,0,0,0,0,0,0 59,59028,"Skeena--Bulkley Valley",59004,"Cariboo - Prince George",90586,108840,588,"SVR2",0.7,.,.,".",0,5,3,1,0,0,1,0 59,59028,"Skeena--Bulkley Valley",59025,"Skeena - Bulkley Valley",90586,89998,89998,"A.P.",100,600.0,619.0,20,0,4544,1711,2424,151,0,116,142 59,59028,"Skeena--Bulkley Valley",59025,"Skeena - Bulkley Valley",90586,89998,89998,"M.P.",100,500.0,503.0,4,268,143,31,72,18,0,3,19 59,59028,"Skeena--Bulkley Valley",59025,"Skeena - Bulkley Valley",90586,89998,89998,"O.P.",100,2.0,204.0,197,60621,29359,9989,16362,1047,0,954,1007 59,59028,"Skeena--Bulkley Valley",59025,"Skeena - Bulkley Valley",90586,89998,89998,"SVR1",100,.,.,".",154,84,28,34,16,0,5,1 59,59028,"Skeena--Bulkley Valley",59025,"Skeena - Bulkley Valley",90586,89998,89998,"SVR2",100,.,.,".",0,991,358,539,36,0,24,34 59,59029,"South Okanagan--West Kootenay",59012,"Kootenay - Columbia",112096,88026,2916,"A.P.",70,603.0,603.0,1,0,151,82,50,8,0,10,1 59,59029,"South Okanagan--West Kootenay",59012,"Kootenay - Columbia",112096,88026,2916,"O.P.",97,32.0,32.0,1,310,202,91,92,5,0,12,2 59,59029,"South Okanagan--West Kootenay",59012,"Kootenay - Columbia",112096,88026,2916,"O.P.",100,31.0,37.0,6,2021,1093,487,427,60,0,100,19 59,59029,"South Okanagan--West Kootenay",59012,"Kootenay - Columbia",112096,88026,2916,"SVR1",3.5,.,.,".",5,3,2,0,1,0,0,0 59,59029,"South Okanagan--West Kootenay",59012,"Kootenay - Columbia",112096,88026,2916,"SVR2",3.5,.,.,".",0,22,13,6,1,0,1,0 59,59029,"South Okanagan--West Kootenay",59020,"Okanagan - Coquihalla",112096,113836,43714,"A.P.",100,606.0,613.0,6,0,3141,1831,616,429,0,243,22 59,59029,"South Okanagan--West Kootenay",59020,"Okanagan - Coquihalla",112096,113836,43714,"M.P.",100,500.0,504.0,5,849,584,290,139,93,0,47,15 59,59029,"South Okanagan--West Kootenay",59020,"Okanagan - Coquihalla",112096,113836,43714,"O.P.",100,88.0,182.1,79,33105,17033,8277,4326,2020,0,2164,246 59,59029,"South Okanagan--West Kootenay",59020,"Okanagan - Coquihalla",112096,113836,43714,"SVR1",39,.,.,".",67,39,21,7,7,0,4,0 59,59029,"South Okanagan--West Kootenay",59020,"Okanagan - Coquihalla",112096,113836,43714,"SVR2",39,.,.,".",0,343,210,57,52,0,22,3 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"A.P.",89,606.0,606.0,1,0,187,35,138,4,0,11,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"A.P.",98,619.0,619.0,1,0,210,79,113,7,0,11,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"A.P.",100,602.0,618.0,11,0,4543,2081,2060,186,0,216,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"M.P.",50,507.0,507.0,1,19,8,3,4,2,0,1,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"M.P.",100,502.0,506.0,5,467,275,114,120,32,0,9,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"O.P.",83,176.0,176.0,1,161,101,47,47,2,0,4,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"O.P.",96,185.0,185.0,1,351,184,70,102,3,0,10,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"O.P.",100,19.0,186.0,146,49618,26598,10852,13164,988,0,1594,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"SVR1",67,.,.,".",93,56,17,21,11,0,7,0 59,59029,"South Okanagan--West Kootenay",59026,"British Columbia Southern Interior",112096,97952,65466,"SVR2",67,.,.,".",0,723,245,397,33,0,48,0 59,59030,"South Surrey--White Rock",59009,"Fleetwood - Port Kells",94678,160129,733,"A.P.",6.7,608.0,608.0,1,0,50,25,10,12,0,2,0 59,59030,"South Surrey--White Rock",59009,"Fleetwood - Port Kells",94678,160129,733,"O.P.",100,160.0,160.0,1,344,135,67,34,31,0,2,1 59,59030,"South Surrey--White Rock",59009,"Fleetwood - Port Kells",94678,160129,733,"SVR1",0.4,.,.,".",1,0,0,0,0,0,0,0 59,59030,"South Surrey--White Rock",59009,"Fleetwood - Port Kells",94678,160129,733,"SVR2",0.4,.,.,".",0,2,1,0,0,0,0,0 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"A.P.",12,609.0,609.0,1,0,83,20,22,39,0,2,0 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"A.P.",31,610.0,610.0,1,0,152,42,44,63,0,3,1 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"O.P.",24,159.0,159.0,1,148,70,22,21,24,0,3,0 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"O.P.",50,162.1,162.1,1,181,99,41,31,23,0,5,1 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"O.P.",100,147.0,162.0,5,1997,1155,515,242,345,0,48,5 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"SVR1",3.1,.,.,".",4,2,1,0,1,0,0,0 59,59030,"South Surrey--White Rock",59016,"Newton - North Delta",94678,127954,3445,"SVR2",3.1,.,.,".",0,36,5,3,27,0,0,0 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"A.P.",6.3,602.0,602.0,1,0,31,18,7,4,0,1,1 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"A.P.",100,603.0,610.0,8,0,5877,3330,886,1283,0,246,132 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"M.P.",33,504.0,504.0,1,73,53,22,16,9,0,2,4 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"M.P.",100,500.0,507.0,7,1466,1030,576,189,172,0,24,69 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"O.P.",100,18.0,194.0,166,64702,35561,18685,7067,6418,0,2273,1118 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"SVR1",73,.,.,".",92,59,26,8,17,0,7,1 59,59030,"South Surrey--White Rock",59027,"South Surrey - White Rock - Cloverdale",94678,127729,90500,"SVR2",73,.,.,".",0,783,494,91,157,0,30,10 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"A.P.",100,601.0,601.0,1,0,161,89,33,39,0,0,0 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"A.P.",100,600.0,610.0,6,0,2579,1508,398,557,0,100,16 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"M.P.",100,500.0,504.0,2,171,110,52,27,22,0,5,4 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"O.P.",97,26.1,26.1,1,477,217,92,86,27,0,11,1 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"O.P.",100,1.0,89.1,107,45033,21551,11027,5481,3951,0,938,154 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"SVR1",57,.,.,".",65,37,19,3,11,0,3,1 59,59031,"Steveston--Richmond East",59006,"Delta - Richmond East",96610,111411,64763,"SVR2",57,.,.,".",0,198,116,29,43,0,8,1 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"A.P.",47,608.0,608.0,1,0,227,144,35,39,0,9,0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"A.P.",69,611.0,611.0,1,0,390,251,53,75,0,11,0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"A.P.",71,609.0,609.0,1,0,366,244,52,65,0,6,0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"A.P.",100,612.0,612.0,1,0,396,292,37,50,0,17,0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"O.P.",66,105.4,105.4,1,375,124,75,27,20,0,3,0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"O.P.",100,70.0,111.0,43,19848,7301,4233,1436,1352,0,280,0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"SVR1",24,.,.,".",24,13,9,1,3,0,1,-0 59,59031,"Steveston--Richmond East",59023,"Richmond",96610,125710,31847,"SVR2",24,.,.,".",0,129,73,16,33,0,7,0 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"A.P.",43,606.0,606.0,1,0,209,82,63,56,0,5,3 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"A.P.",58,608.0,608.0,1,0,297,53,115,122,0,3,5 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"A.P.",100,600.0,607.0,7,0,3079,1107,1083,734,0,76,79 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"M.P.",100,500.0,503.0,3,488,293,128,83,25,0,14,43 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"O.P.",0.0,100.0,100.0,1,0,0,0,0,0,0,0,0 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"O.P.",69,98.0,98.0,1,317,159,78,51,17,0,7,5 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"O.P.",86,120.0,120.0,1,424,193,85,62,36,0,5,5 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"O.P.",100,1.0,400.0,141,62638,27881,9928,11460,4644,0,1060,789 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"SVR1",89,.,.,".",172,137,33,36,47,0,7,13 59,59032,"Surrey Centre",59028,"Surrey North",111486,125963,111420,"SVR2",89,.,.,".",0,332,124,87,106,0,9,6 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"A.P.",12,611.0,611.0,1,0,44,17,11,15,0,0,0 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"A.P.",14,608.0,608.0,1,0,103,52,22,25,0,4,1 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"A.P.",33,605.0,605.0,1,0,214,83,62,66,0,2,1 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"A.P.",65,607.0,607.0,1,0,512,219,143,137,0,8,5 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"A.P.",100,606.0,606.0,1,0,432,177,164,74,0,14,3 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"M.P.",50,500.0,500.0,1,55,42,18,14,7,0,1,3 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"O.P.",49,154.1,154.1,1,463,201,84,65,45,0,7,-0 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"O.P.",52,131.0,131.0,1,257,109,58,33,12,0,5,1 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"O.P.",60,154.0,154.0,1,279,139,51,48,30,0,7,2 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"O.P.",100,99.0,153.0,35,16161,7013,2791,2902,1043,0,232,45 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"SVR1",18,.,.,".",32,21,7,3,9,0,2,1 59,59033,"Surrey--Newton",59009,"Fleetwood - Port Kells",105183,160129,28439,"SVR2",18,.,.,".",0,81,42,18,19,0,2,0 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"A.P.",69,610.0,610.0,1,0,335,92,96,138,0,6,2 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"A.P.",88,609.0,609.0,1,0,624,153,162,290,0,17,2 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"A.P.",100,605.0,608.0,4,0,2258,322,584,1323,0,27,2 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"M.P.",67,500.0,500.0,1,131,73,6,47,14,0,1,5 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"O.P.",50,162.1,162.1,1,181,99,41,31,23,0,5,1 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"O.P.",76,159.0,159.0,1,458,217,66,65,74,0,11,1 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"O.P.",100,86.0,158.1,85,36636,17654,4186,6270,6633,0,466,99 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"SVR1",50,.,.,".",63,36,14,4,15,0,2,1 59,59033,"Surrey--Newton",59016,"Newton - North Delta",105183,127954,70569,"SVR2",50,.,.,".",0,574,85,53,428,0,6,2 59,59033,"Surrey--Newton",59028,"Surrey North",105183,125963,6175,"A.P.",42,608.0,608.0,1,0,216,38,83,89,0,2,3 59,59033,"Surrey--Newton",59028,"Surrey North",105183,125963,6175,"O.P.",100,143.0,148.1,8,3157,1451,293,571,552,0,17,18 59,59033,"Surrey--Newton",59028,"Surrey North",105183,125963,6175,"SVR1",4.4,.,.,".",9,7,2,2,2,0,0,1 59,59033,"Surrey--Newton",59028,"Surrey North",105183,125963,6175,"SVR2",4.4,.,.,".",0,16,6,4,5,0,0,0 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"A.P.",61,613.0,613.0,1,0,456,112,100,178,0,57,9 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"A.P.",64,610.0,610.0,1,0,373,106,65,155,0,41,6 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"A.P.",67,614.0,614.0,1,0,250,72,42,111,0,23,2 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"A.P.",100,600.0,608.0,9,0,5818,1563,1210,2279,0,681,85 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"M.P.",50,504.0,504.0,1,49,31,8,12,7,0,2,3 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"M.P.",100,501.0,503.0,2,320,150,34,44,44,0,12,16 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"O.P.",68,131.0,131.0,1,268,135,37,30,40,0,27,2 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"O.P.",80,187.1,187.1,1,329,162,47,35,55,0,23,2 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"O.P.",100,1.0,187.2,170,73067,33370,8657,9295,9650,0,5289,479 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"SVR1",73,.,.,".",211,137,21,16,76,0,22,1 59,59034,"Vancouver Centre",59029,"Vancouver Centre",102480,137269,102480,"SVR2",73,.,.,".",0,681,171,102,300,0,91,17 59,59035,"Vancouver East",59030,"Vancouver East",110097,110097,110097,"A.P.",100,600.0,616.0,17,0,5225,858,3430,477,0,430,30 59,59035,"Vancouver East",59030,"Vancouver East",110097,110097,110097,"M.P.",100,500.0,506.0,7,1184,712,264,309,116,0,16,7 59,59035,"Vancouver East",59030,"Vancouver East",110097,110097,110097,"O.P.",100,1.0,165.0,170,80407,37416,7144,23495,3659,0,2841,277 59,59035,"Vancouver East",59030,"Vancouver East",110097,110097,110097,"SVR1",100,.,.,".",210,145,16,70,44,0,15,0 59,59035,"Vancouver East",59030,"Vancouver East",110097,110097,110097,"SVR2",100,.,.,".",0,740,79,490,86,0,81,4 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"A.P.",33,614.0,614.0,1,0,124,35,21,55,0,12,1 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"A.P.",36,610.0,610.0,1,0,214,61,38,89,0,23,3 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"A.P.",39,613.0,613.0,1,0,290,72,63,113,0,36,6 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"A.P.",100,609.0,612.0,3,0,2100,620,405,784,0,266,25 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"M.P.",50,504.0,504.0,1,49,31,8,12,7,0,2,3 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"M.P.",100,500.0,502.0,2,339,165,76,36,32,0,14,7 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"O.P.",0.0,161.0,161.0,1,0,0,0,0,0,0,0,0 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"O.P.",20,187.1,187.1,1,85,42,12,9,14,0,6,1 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"O.P.",32,131.0,131.0,1,125,63,17,14,18,0,12,1 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"O.P.",100,120.0,197.0,64,27281,13950,3521,3731,4112,0,2409,177 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"SVR1",27,.,.,".",79,51,8,6,29,0,8,1 59,59036,"Vancouver Granville",59029,"Vancouver Centre",99886,137269,34789,"SVR2",27,.,.,".",0,257,65,39,113,0,34,6 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"A.P.",41,603.0,603.0,1,0,276,81,134,45,0,13,3 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"A.P.",69,601.0,601.0,1,0,415,96,208,79,0,26,7 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"A.P.",100,600.0,600.0,1,0,585,178,248,127,0,27,5 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"M.P.",33,500.0,500.0,1,63,37,7,22,3,0,2,2 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"M.P.",100,501.0,501.0,1,171,116,39,42,13,0,10,12 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"O.P.",40,58.0,58.0,1,206,106,29,56,17,0,2,2 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"O.P.",51,50.1,50.1,1,214,109,23,61,16,0,9,1 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"O.P.",100,1.0,54.0,30,13115,6937,1969,3157,1298,0,448,65 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"SVR1",17,.,.,".",23,14,2,5,6,0,1,0 59,59036,"Vancouver Granville",59032,"Vancouver Kingsway",99886,124938,18492,"SVR2",17,.,.,".",0,100,24,41,33,0,3,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"A.P.",44,608.0,608.0,1,0,216,125,9,79,0,4,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"A.P.",100,611.0,612.0,2,0,923,486,46,372,0,19,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"M.P.",50,502.0,502.0,1,69,60,36,7,17,0,1,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"M.P.",100,504.0,504.0,1,238,92,44,23,22,0,3,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"O.P.",100,143.0,203.0,31,13349,6217,3215,670,2076,0,256,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"SVR1",16,.,.,".",40,22,7,3,11,0,2,0 59,59036,"Vancouver Granville",59033,"Vancouver Quadra",99886,121865,19449,"SVR2",16,.,.,".",0,247,119,19,100,0,9,0 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"A.P.",0.7,603.0,603.0,1,0,6,3,1,3,0,0,0 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"A.P.",50,602.0,602.0,1,0,296,145,40,106,0,5,2 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"A.P.",100,600.0,601.0,2,0,1109,522,112,444,0,26,5 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"M.P.",50,501.0,502.0,2,159,111,58,20,28,0,4,3 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"M.P.",100,500.0,500.0,1,187,102,39,20,32,0,9,2 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"O.P.",10,40.0,40.0,1,55,22,11,3,7,0,0,0 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"O.P.",100,1.0,39.0,40,18601,8054,3608,1332,2757,0,323,34 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"SVR1",23,.,.,".",25,14,3,4,6,0,1,0 59,59036,"Vancouver Granville",59034,"Vancouver South",99886,123679,27156,"SVR2",23,.,.,".",0,172,78,15,75,0,3,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"A.P.",3.5,608.0,608.0,1,0,27,15,9,2,0,1,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"A.P.",14,614.0,614.0,1,0,123,74,34,10,0,5,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"A.P.",26,615.0,615.0,1,0,90,41,38,5,0,6,1 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"A.P.",100,600.0,613.0,11,0,5568,3126,1877,326,0,206,33 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"M.P.",100,500.0,502.0,3,415,208,103,67,22,0,13,3 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",5.8,215.0,215.0,1,38,23,6,14,1,0,2,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",21,214.0,214.0,1,69,42,19,19,2,0,3,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",24,175.0,175.0,1,105,50,25,18,4,0,2,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",43,212.0,212.0,1,214,110,46,51,4,0,7,2 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",55,174.1,174.1,1,92,43,19,20,2,0,2,0 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",63,152.1,152.1,1,318,107,42,50,7,0,6,3 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",89,213.0,213.0,1,373,202,89,86,16,0,10,2 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",95,178.0,178.0,1,474,234,118,95,11,0,7,3 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",100,210.0,210.0,1,248,156,91,46,2,0,14,4 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"O.P.",100,1.0,400.0,181,60962,32491,14670,14473,1470,0,1693,185 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"SVR1",71,.,.,".",483,241,161,40,21,0,16,3 59,59037,"North Island--Powell River",59031,"Vancouver Island North",103458,118374,83978,"SVR2",71,.,.,".",0,1568,838,529,124,0,71,6 59,59037,"North Island--Powell River",59036,"West Vancouver - Sunshine Coast - Sea to Sky",103458,133910,19480,"A.P.",100,600.0,616.0,3,0,1199,545,405,189,0,49,11 59,59037,"North Island--Powell River",59036,"West Vancouver - Sunshine Coast - Sea to Sky",103458,133910,19480,"M.P.",100,500.0,504.0,2,236,133,47,46,21,0,10,9 59,59037,"North Island--Powell River",59036,"West Vancouver - Sunshine Coast - Sea to Sky",103458,133910,19480,"O.P.",100,1.0,36.0,35,14588,8027,3224,3287,930,0,487,99 59,59037,"North Island--Powell River",59036,"West Vancouver - Sunshine Coast - Sea to Sky",103458,133910,19480,"SVR1",15,.,.,".",29,16,7,3,5,0,1,0 59,59037,"North Island--Powell River",59036,"West Vancouver - Sunshine Coast - Sea to Sky",103458,133910,19480,"SVR2",15,.,.,".",0,232,118,34,63,0,14,3 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"A.P.",31,601.0,601.0,1,0,189,43,94,36,0,12,3 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"A.P.",57,611.0,611.0,1,0,201,61,95,41,0,3,1 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"A.P.",59,603.0,603.0,1,0,404,118,196,66,0,20,4 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"A.P.",100,602.0,610.0,8,0,3459,1054,1594,678,0,91,42 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"M.P.",67,500.0,500.0,1,126,74,15,45,7,0,4,4 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"M.P.",100,502.0,503.0,2,265,136,33,73,17,0,5,8 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"O.P.",49,50.1,50.1,1,210,106,22,59,16,0,8,0 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"O.P.",60,58.0,58.0,1,311,161,45,86,26,0,2,2 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"O.P.",100,23.0,402.0,148,64863,31304,8665,16290,4846,0,1129,374 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"SVR1",80,.,.,".",108,66,9,25,28,0,4,1 59,59038,"Vancouver Kingsway",59032,"Vancouver Kingsway",102003,124938,102003,"SVR2",80,.,.,".",0,479,112,195,156,0,14,2 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"A.P.",56,608.0,608.0,1,0,278,160,12,101,0,5,0 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"A.P.",100,600.0,610.0,10,0,7619,2850,771,3657,0,341,0 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"M.P.",50,502.0,502.0,1,69,60,36,7,17,0,1,0 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"M.P.",100,500.0,503.0,3,669,313,126,54,122,0,11,0 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"O.P.",100,1.0,190.0,179,72575,36815,13103,5765,15731,0,2216,0 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"SVR1",84,.,.,".",215,120,36,13,61,0,9,0 59,59039,"Vancouver Quadra",59033,"Vancouver Quadra",102416,121865,102416,"SVR2",84,.,.,".",0,1326,642,100,538,0,46,0 59,59040,"Vancouver South",59032,"Vancouver Kingsway",100966,124938,4443,"A.P.",43,611.0,611.0,1,0,150,45,72,30,0,3,0 59,59040,"Vancouver South",59032,"Vancouver Kingsway",100966,124938,4443,"O.P.",100,163.0,168.0,6,2940,1379,482,644,204,0,24,25 59,59040,"Vancouver South",59032,"Vancouver Kingsway",100966,124938,4443,"SVR1",3.6,.,.,".",5,3,0,1,1,0,0,0 59,59040,"Vancouver South",59032,"Vancouver Kingsway",100966,124938,4443,"SVR2",3.6,.,.,".",0,21,5,9,7,0,1,0 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"A.P.",50,602.0,602.0,1,0,296,145,40,106,0,5,2 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"A.P.",99,603.0,603.0,1,0,893,389,98,387,0,16,2 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"A.P.",100,604.0,610.0,7,0,4974,2342,698,1822,0,77,35 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"M.P.",50,501.0,502.0,2,159,111,58,20,28,0,4,3 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"M.P.",100,503.0,506.0,4,588,355,140,93,96,0,16,10 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"O.P.",90,40.0,40.0,1,484,191,99,26,64,0,3,0 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"O.P.",100,41.0,160.0,125,62170,27708,11595,5968,9373,0,648,124 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"SVR1",77,.,.,".",82,47,11,13,20,0,3,0 59,59040,"Vancouver South",59034,"Vancouver South",100966,123679,96523,"SVR2",77,.,.,".",0,573,260,51,252,0,10,1 59,59041,"Victoria",59035,"Victoria",110942,110942,110942,"A.P.",100,600.0,616.0,17,0,10072,2614,4961,1698,0,799,0 59,59041,"Victoria",59035,"Victoria",110942,110942,110942,"M.P.",100,500.0,517.0,18,3248,1844,692,642,372,0,138,0 59,59041,"Victoria",59035,"Victoria",110942,110942,110942,"O.P.",100,1.0,219.0,217,85867,46780,10475,24325,6068,0,5912,0 59,59041,"Victoria",59035,"Victoria",110942,110942,110942,"SVR1",100,.,.,".",635,350,165,96,57,0,32,0 59,59041,"Victoria",59035,"Victoria",110942,110942,110942,"SVR2",100,.,.,".",0,1371,329,655,253,0,134,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59005,"Chilliwack - Fraser Canyon",112875,121737,5881,"A.P.",0.0,601.0,601.0,1,0,0,0,0,0,0,0,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59005,"Chilliwack - Fraser Canyon",112875,121737,5881,"A.P.",100,600.0,600.0,1,0,153,66,45,26,0,16,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59005,"Chilliwack - Fraser Canyon",112875,121737,5881,"O.P.",0.3,11.0,11.0,1,1,0,0,0,0,0,0,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59005,"Chilliwack - Fraser Canyon",112875,121737,5881,"O.P.",100,2.0,8.0,8,3552,1813,532,723,288,0,261,9 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59005,"Chilliwack - Fraser Canyon",112875,121737,5881,"SVR1",4.2,.,.,".",12,7,4,1,2,0,1,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59005,"Chilliwack - Fraser Canyon",112875,121737,5881,"SVR2",4.2,.,.,".",0,28,18,5,3,0,1,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"A.P.",30,614.0,614.0,1,0,132,63,26,37,0,5,2 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"A.P.",100,602.0,619.0,16,0,8115,4232,1223,2086,0,479,95 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"M.P.",100,501.0,505.0,4,510,291,151,51,53,0,9,27 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"O.P.",18,210.0,210.0,1,76,37,15,8,9,0,3,1 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"O.P.",100,37.0,400.0,194,78781,40159,18089,8901,9529,0,3113,527 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"SVR1",80,.,.,".",154,83,37,14,26,0,6,0 59,59042,"West Vancouver--Sunshine Coast--Sea to Sky Country",59036,"West Vancouver - Sunshine Coast - Sea to Sky",112875,133910,106994,"SVR2",80,.,.,".",0,1244,633,180,336,0,77,18 60,60001,"Yukon",60001,"Yukon",33897,33897,33897,"A.P.",100,600.0,617.0,18,0,1578,676,175,516,0,211,0 60,60001,"Yukon",60001,"Yukon",33897,33897,33897,"M.P.",100,500.0,500.0,1,80,58,15,19,21,0,3,0 60,60001,"Yukon",60001,"Yukon",33897,33897,33897,"O.P.",100,1.0,73.0,66,24197,12777,4087,1939,4161,0,2590,0 60,60001,"Yukon",60001,"Yukon",33897,33897,33897,"SVR1",100,.,.,".",64,47,14,17,14,0,2,0 60,60001,"Yukon",60001,"Yukon",33897,33897,33897,"SVR2",100,.,.,".",0,1597,630,158,578,0,231,0 61,61001,"Northwest Territories",61001,"Western Arctic",41462,41462,41462,"A.P.",100,600.0,607.0,8,0,1262,409,543,271,0,34,5 61,61001,"Northwest Territories",61001,"Western Arctic",41462,41462,41462,"O.P.",100,1.0,81.0,73,28789,13321,4269,6226,2353,0,398,75 61,61001,"Northwest Territories",61001,"Western Arctic",41462,41462,41462,"SVR1",100,.,.,".",231,194,50,51,78,0,12,3 61,61001,"Northwest Territories",61001,"Western Arctic",41462,41462,41462,"SVR2",100,.,.,".",0,800,273,320,170,0,33,4 62,62001,"Nunavut",62001,"Nunavut",31906,31906,31906,"A.P.",100,600.0,610.0,10,0,355,170,68,108,0,9,0 62,62001,"Nunavut",62001,"Nunavut",31906,31906,31906,"O.P.",100,1.0,26.0,26,17185,7276,3668,1420,2049,0,139,0 62,62001,"Nunavut",62001,"Nunavut",31906,31906,31906,"SVR1",100,.,.,".",164,112,36,6,63,0,7,0 62,62001,"Nunavut",62001,"Nunavut",31906,31906,31906,"SVR2",100,.,.,".",0,132,56,31,40,0,5,0 "'" "Notes:" "Population 2011 source: Statistics Canada" "A.P.: Advance poll" "M.P.: Mobile poll" "O.P.: Ordinary poll" "SVR1: Includes Canadian citizens temporarily residing outside Canada, members of the Canadian Forces (except members of the" "Canadian Forces who voted at the polling station established for the polling division of their place of ordinary" "residence) and incarcerated electors." "SVR2: Includes Canadian citizens residing in Canada who voted by special ballot in or outside their electoral districts." "Electors on lists are shown as zero for A.P. and SVR2 as they are already included with the O.P." PKccI$,chorogrid/sample_data/sample_county_data.csvCounty and state name,fips,Median_value_of_owner-occupied_housing_units_2009-2013 "Abbeville County, SC",45001,91200 "Acadia Parish, LA",22001,88600 "Accomack County, VA",51001,153600 "Ada County, ID",16001,183600 "Adair County, IA",19001,90900 "Adair County, KY",21001,78600 "Adair County, MO",29001,102600 "Adair County, OK",40001,75300 "Adams County, CO",8001,186600 "Adams County, IA",19003,85200 "Adams County, ID",16003,150500 "Adams County, IL",17001,104200 "Adams County, IN",18001,116100 "Adams County, MS",28001,80900 "Adams County, ND",38001,106300 "Adams County, NE",31001,98000 "Adams County, OH",39001,92900 "Adams County, PA",42001,198200 "Adams County, WA",53001,133600 "Adams County, WI",55001,135600 "Addison County, VT",50001,234500 "Aiken County, SC",45003,124600 "Aitkin County, MN",27001,168700 "Alachua County, FL",12001,167900 "Alamance County, NC",37001,137000 "Alameda County, CA",6001,493800 "Alamosa County, CO",8003,137300 "Albany County, NY",36001,209300 "Albany County, WY",56001,201500 "Albemarle County, VA",51003,319200 "Alcona County, MI",26001,102800 "Alcorn County, MS",28003,84300 "Aleutians East Borough, AK",2013,118500 "Aleutians West Census Area, AK",2016,218400 "Alexander County, IL",17003,54400 "Alexander County, NC",37003,121300 "Alexandria city, VA",51510,476700 "Alfalfa County, OK",40003,62600 "Alger County, MI",26003,117100 "Allamakee County, IA",19005,114400 "Allegan County, MI",26005,140200 "Allegany County, MD",24001,121300 "Allegany County, NY",36003,69600 "Alleghany County, NC",37005,156100 "Alleghany County, VA",51005,114600 "Allegheny County, PA",42003,122400 "Allen County, IN",18003,112700 "Allen County, KS",20001,63300 "Allen County, KY",21003,96800 "Allen County, OH",39003,105000 "Allen Parish, LA",22003,79600 "Allendale County, SC",45005,65400 "Alpena County, MI",26007,96400 "Alpine County, CA",6003,333600 "Amador County, CA",6005,270500 "Amelia County, VA",51007,180700 "Amherst County, VA",51009,148700 "Amite County, MS",28005,70300 "Anchorage Municipality, AK",2020,282800 "Anderson County, KS",20003,96300 "Anderson County, KY",21005,132300 "Anderson County, SC",45007,123400 "Anderson County, TN",47001,127000 "Anderson County, TX",48001,82000 "Andrew County, MO",29003,127700 "Andrews County, TX",48003,88600 "Androscoggin County, ME",23001,154800 "Angelina County, TX",48005,84800 "Anne Arundel County, MD",24003,340000 "Anoka County, MN",27003,192300 "Anson County, NC",37007,79400 "Antelope County, NE",31003,74300 "Antrim County, MI",26009,141300 "Apache County, AZ",4001,83100 "Appanoose County, IA",19007,77600 "Appling County, GA",13001,75600 "Appomattox County, VA",51011,145400 "Aransas County, TX",48007,130900 "Arapahoe County, CO",8005,230700 "Archer County, TX",48009,100300 "Archuleta County, CO",8007,279700 "Arenac County, MI",26011,90200 "Arkansas County, AR",5001,75500 "Arlington County, VA",51013,584600 "Armstrong County, PA",42005,94100 "Armstrong County, TX",48011,94100 "Aroostook County, ME",23003,90800 "Arthur County, NE",31005,76400 "Ascension Parish, LA",22005,167400 "Ashe County, NC",37009,150900 "Ashland County, OH",39005,122100 "Ashland County, WI",55003,107400 "Ashley County, AR",5003,62500 "Ashtabula County, OH",39007,110800 "Asotin County, WA",53003,173600 "Assumption Parish, LA",22007,98100 "Atascosa County, TX",48013,82900 "Atchison County, KS",20005,87000 "Atchison County, MO",29005,76400 "Athens County, OH",39009,115500 "Atkinson County, GA",13003,75000 "Atlantic County, NJ",34001,237400 "Atoka County, OK",40005,79800 "Attala County, MS",28007,71200 "Audrain County, MO",29007,90500 "Audubon County, IA",19009,71100 "Auglaize County, OH",39011,129400 "Augusta County, VA",51015,194600 "Aurora County, SD",46003,68800 "Austin County, TX",48015,150000 "Autauga County, AL",1001,136200 "Avery County, NC",37011,140800 "Avoyelles Parish, LA",22009,86600 "Baca County, CO",8009,73500 "Bacon County, GA",13005,77000 "Bailey County, TX",48017,56500 "Baker County, FL",12003,124300 "Baker County, GA",13007,72700 "Baker County, OR",41001,147700 "Baldwin County, AL",1003,168600 "Baldwin County, GA",13009,103900 "Ballard County, KY",21007,94400 "Baltimore city, MD",24510,157900 "Baltimore County, MD",24005,253300 "Bamberg County, SC",45009,74700 "Bandera County, TX",48019,143600 "Banks County, GA",13011,140200 "Banner County, NE",31007,85000 "Bannock County, ID",16005,142600 "Baraga County, MI",26013,84000 "Barber County, KS",20007,61900 "Barbour County, AL",1005,89200 "Barbour County, WV",54001,87900 "Barnes County, ND",38003,87900 "Barnstable County, MA",25001,366700 "Barnwell County, SC",45011,72400 "Barren County, KY",21009,105400 "Barron County, WI",55005,134900 "Barrow County, GA",13013,127000 "Barry County, MI",26015,133900 "Barry County, MO",29009,107500 "Bartholomew County, IN",18005,134900 "Barton County, KS",20009,75300 "Barton County, MO",29011,84700 "Bartow County, GA",13015,128500 "Bastrop County, TX",48021,117700 "Bates County, MO",29013,99400 "Bath County, KY",21011,65400 "Bath County, VA",51017,152600 "Baxter County, AR",5005,120000 "Bay County, FL",12005,157600 "Bay County, MI",26017,93800 "Bayfield County, WI",55007,158600 "Baylor County, TX",48023,72800 "Beadle County, SD",46005,87500 "Bear Lake County, ID",16007,129700 "Beaufort County, NC",37013,117000 "Beaufort County, SC",45013,275500 "Beauregard Parish, LA",22011,93900 "Beaver County, OK",40007,86200 "Beaver County, PA",42007,115400 "Beaver County, UT",49001,144800 "Beaverhead County, MT",30001,173400 "Becker County, MN",27005,171500 "Beckham County, OK",40009,103400 "Bedford city, VA",51515,146400 "Bedford County, PA",42009,120200 "Bedford County, TN",47003,114600 "Bedford County, VA",51019,195400 "Bee County, TX",48025,73000 "Belknap County, NH",33001,219900 "Bell County, KY",21013,67300 "Bell County, TX",48027,122600 "Belmont County, OH",39013,88500 "Beltrami County, MN",27007,147100 "Ben Hill County, GA",13017,79700 "Benewah County, ID",16009,136000 "Bennett County, SD",46007,54300 "Bennington County, VT",50003,214800 "Benson County, ND",38005,52800 "Bent County, CO",8011,75500 "Benton County, AR",5007,147500 "Benton County, IA",19011,131500 "Benton County, IN",18007,84300 "Benton County, MN",27009,158200 "Benton County, MO",29015,106400 "Benton County, MS",28009,81200 "Benton County, OR",41003,270500 "Benton County, TN",47005,80100 "Benton County, WA",53005,176700 "Benzie County, MI",26019,149700 "Bergen County, NJ",34003,451400 "Berkeley County, SC",45015,150400 "Berkeley County, WV",54003,165000 "Berks County, PA",42011,170600 "Berkshire County, MA",25003,206600 "Bernalillo County, NM",35001,186800 "Berrien County, GA",13019,80100 "Berrien County, MI",26021,129300 "Bertie County, NC",37015,79100 "Bethel Census Area, AK",2050,189600 "Bexar County, TX",48029,123700 "Bibb County, AL",1007,90500 "Bibb County, GA",13021,123000 "Bienville Parish, LA",22013,58100 "Big Horn County, MT",30003,89300 "Big Horn County, WY",56003,131000 "Big Stone County, MN",27011,91300 "Billings County, ND",38007,108900 "Bingham County, ID",16011,135400 "Black Hawk County, IA",19013,123600 "Blackford County, IN",18009,70400 "Bladen County, NC",37017,81800 "Blaine County, ID",16013,375000 "Blaine County, MT",30005,76200 "Blaine County, NE",31009,57200 "Blaine County, OK",40011,68000 "Blair County, PA",42013,106500 "Blanco County, TX",48031,162500 "Bland County, VA",51021,95200 "Bleckley County, GA",13023,79900 "Bledsoe County, TN",47007,106100 "Blount County, AL",1009,117100 "Blount County, TN",47009,163900 "Blue Earth County, MN",27013,158100 "Boise County, ID",16015,195600 "Bolivar County, MS",28011,83500 "Bollinger County, MO",29017,96600 "Bon Homme County, SD",46009,69700 "Bond County, IL",17005,103300 "Bonner County, ID",16017,222200 "Bonneville County, ID",16019,154700 "Boone County, AR",5009,106400 "Boone County, IA",19015,117300 "Boone County, IL",17007,158800 "Boone County, IN",18011,179000 "Boone County, KY",21015,172700 "Boone County, MO",29019,162200 "Boone County, NE",31011,85000 "Boone County, WV",54005,77600 "Borden County, TX",48033,100000 "Bosque County, TX",48035,90800 "Bossier Parish, LA",22015,146300 "Botetourt County, VA",51023,213100 "Bottineau County, ND",38009,84200 "Boulder County, CO",8013,350900 "Boundary County, ID",16021,174300 "Bourbon County, KS",20011,78400 "Bourbon County, KY",21017,139900 "Bowie County, TX",48037,95100 "Bowman County, ND",38011,115100 "Box Butte County, NE",31013,90000 "Box Elder County, UT",49003,166100 "Boyd County, KY",21019,96900 "Boyd County, NE",31015,54500 "Boyle County, KY",21021,130700 "Bracken County, KY",21023,90700 "Bradford County, FL",12007,108000 "Bradford County, PA",42015,119900 "Bradley County, AR",5011,62900 "Bradley County, TN",47011,138900 "Branch County, MI",26023,98000 "Brantley County, GA",13025,68500 "Braxton County, WV",54007,80400 "Brazoria County, TX",48039,148000 "Brazos County, TX",48041,151400 "Breathitt County, KY",21025,47400 "Breckinridge County, KY",21027,82700 "Bremer County, IA",19017,145300 "Brevard County, FL",12009,144900 "Brewster County, TX",48043,111000 "Briscoe County, TX",48045,51600 "Bristol Bay Borough, AK",2060,175000 "Bristol city, VA",51520,110800 "Bristol County, MA",25005,278100 "Bristol County, RI",44001,341000 "Broadwater County, MT",30007,174000 "Bronx County, NY",36005,374500 "Brooke County, WV",54009,82300 "Brookings County, SD",46011,147400 "Brooks County, GA",13027,101400 "Brooks County, TX",48047,47300 "Broome County, NY",36007,107900 "Broomfield County, CO",8014,275900 "Broward County, FL",12011,181500 "Brown County, IL",17009,83600 "Brown County, IN",18013,157400 "Brown County, KS",20013,77100 "Brown County, MN",27015,121900 "Brown County, NE",31017,58900 "Brown County, OH",39015,116300 "Brown County, SD",46013,133900 "Brown County, TX",48049,87600 "Brown County, WI",55009,158700 "Brule County, SD",46015,92500 "Brunswick County, NC",37019,186600 "Brunswick County, VA",51025,105600 "Bryan County, GA",13029,182400 "Bryan County, OK",40013,88900 "Buchanan County, IA",19019,122200 "Buchanan County, MO",29021,109700 "Buchanan County, VA",51027,68200 "Buckingham County, VA",51029,128800 "Bucks County, PA",42017,309900 "Buena Vista city, VA",51530,118900 "Buena Vista County, IA",19021,97700 "Buffalo County, NE",31019,139800 "Buffalo County, SD",46017,38800 "Buffalo County, WI",55011,140900 "Bullitt County, KY",21029,145500 "Bulloch County, GA",13031,134900 "Bullock County, AL",1011,70600 "Buncombe County, NC",37021,191200 "Bureau County, IL",17011,101200 "Burke County, GA",13033,80000 "Burke County, NC",37023,110900 "Burke County, ND",38013,77900 "Burleigh County, ND",38015,172800 "Burleson County, TX",48051,87800 "Burlington County, NJ",34005,252500 "Burnet County, TX",48053,152600 "Burnett County, WI",55013,147600 "Burt County, NE",31021,85700 "Butler County, AL",1013,74700 "Butler County, IA",19023,100400 "Butler County, KS",20015,127800 "Butler County, KY",21031,87300 "Butler County, MO",29023,89700 "Butler County, NE",31023,99200 "Butler County, OH",39017,157400 "Butler County, PA",42019,169700 "Butte County, CA",6007,225900 "Butte County, ID",16023,110300 "Butte County, SD",46019,111900 "Butts County, GA",13035,125400 "Cabarrus County, NC",37025,167800 "Cabell County, WV",54011,105400 "Cache County, UT",49005,189100 "Caddo County, OK",40015,74900 "Caddo Parish, LA",22017,121700 "Calaveras County, CA",6009,254800 "Calcasieu Parish, LA",22019,118300 "Caldwell County, KY",21033,86600 "Caldwell County, MO",29025,83600 "Caldwell County, NC",37027,105800 "Caldwell County, TX",48055,104000 "Caldwell Parish, LA",22021,66200 "Caledonia County, VT",50005,164300 "Calhoun County, AL",1015,100600 "Calhoun County, AR",5013,58300 "Calhoun County, FL",12013,70000 "Calhoun County, GA",13037,53000 "Calhoun County, IA",19025,72200 "Calhoun County, IL",17013,112300 "Calhoun County, MI",26025,98300 "Calhoun County, MS",28013,61500 "Calhoun County, SC",45017,100600 "Calhoun County, TX",48057,98100 "Calhoun County, WV",54013,75900 "Callahan County, TX",48059,74300 "Callaway County, MO",29027,124500 "Calloway County, KY",21035,114800 "Calumet County, WI",55015,164300 "Calvert County, MD",24009,357000 "Camas County, ID",16025,163000 "Cambria County, PA",42021,87100 "Camden County, GA",13039,154500 "Camden County, MO",29029,170200 "Camden County, NC",37029,220200 "Camden County, NJ",34007,210700 "Cameron County, PA",42023,69500 "Cameron County, TX",48061,78300 "Cameron Parish, LA",22023,112900 "Camp County, TX",48063,103100 "Campbell County, KY",21037,146300 "Campbell County, SD",46021,52100 "Campbell County, TN",47013,91500 "Campbell County, VA",51031,150300 "Campbell County, WY",56005,201900 "Canadian County, OK",40017,139200 "Candler County, GA",13043,86700 "Cannon County, TN",47015,116400 "Canyon County, ID",16027,122800 "Cape Girardeau County, MO",29031,137500 "Cape May County, NJ",34009,312800 "Carbon County, MT",30009,205900 "Carbon County, PA",42025,146700 "Carbon County, UT",49007,122700 "Carbon County, WY",56007,143500 "Caribou County, ID",16029,116300 "Carlisle County, KY",21039,73800 "Carlton County, MN",27017,159000 "Caroline County, MD",24011,212800 "Caroline County, VA",51033,188400 "Carroll County, AR",5015,120000 "Carroll County, GA",13045,118500 "Carroll County, IA",19027,105700 "Carroll County, IL",17015,100100 "Carroll County, IN",18015,103900 "Carroll County, KY",21041,99500 "Carroll County, MD",24013,325900 "Carroll County, MO",29033,83900 "Carroll County, MS",28015,68800 "Carroll County, NH",33003,226200 "Carroll County, OH",39019,110400 "Carroll County, TN",47017,80500 "Carroll County, VA",51035,102900 "Carson City, NV",32510,198900 "Carson County, TX",48065,87700 "Carter County, KY",21043,74500 "Carter County, MO",29035,98300 "Carter County, MT",30011,82400 "Carter County, OK",40019,90600 "Carter County, TN",47019,101100 "Carteret County, NC",37031,199200 "Carver County, MN",27019,264700 "Cascade County, MT",30013,157900 "Casey County, KY",21045,70400 "Cass County, IA",19029,88100 "Cass County, IL",17017,76100 "Cass County, IN",18017,81900 "Cass County, MI",26027,124800 "Cass County, MN",27021,177100 "Cass County, MO",29037,154900 "Cass County, ND",38017,158900 "Cass County, NE",31025,146700 "Cass County, TX",48067,77400 "Cassia County, ID",16031,125900 "Castro County, TX",48069,68500 "Caswell County, NC",37033,98900 "Catahoula Parish, LA",22025,68500 "Catawba County, NC",37035,133000 "Catoosa County, GA",13047,130200 "Catron County, NM",35003,158900 "Cattaraugus County, NY",36009,81100 "Cavalier County, ND",38019,68700 "Cayuga County, NY",36011,106600 "Cecil County, MD",24015,254800 "Cedar County, IA",19031,132800 "Cedar County, MO",29039,88500 "Cedar County, NE",31027,89100 "Centre County, PA",42027,192600 "Cerro Gordo County, IA",19033,110800 "Chaffee County, CO",8015,262300 "Chambers County, AL",1017,81200 "Chambers County, TX",48071,144900 "Champaign County, IL",17019,149500 "Champaign County, OH",39021,124600 "Chariton County, MO",29041,74700 "Charles City County, VA",51036,147500 "Charles County, MD",24017,297900 "Charles Mix County, SD",46023,74500 "Charleston County, SC",45019,236100 "Charlevoix County, MI",26029,151400 "Charlotte County, FL",12015,143700 "Charlotte County, VA",51037,98900 "Charlottesville city, VA",51540,293000 "Charlton County, GA",13049,76100 "Chase County, KS",20017,81100 "Chase County, NE",31029,86000 "Chatham County, GA",13051,174500 "Chatham County, NC",37037,211400 "Chattahoochee County, GA",13053,97100 "Chattooga County, GA",13055,72400 "Chautauqua County, KS",20019,46500 "Chautauqua County, NY",36013,83500 "Chaves County, NM",35005,96800 "Cheatham County, TN",47021,152900 "Cheboygan County, MI",26031,112500 "Chelan County, WA",53007,254500 "Chemung County, NY",36015,94300 "Chenango County, NY",36017,90600 "Cherokee County, AL",1019,99400 "Cherokee County, GA",13057,190400 "Cherokee County, IA",19035,80200 "Cherokee County, KS",20021,71600 "Cherokee County, NC",37039,145000 "Cherokee County, OK",40021,103900 "Cherokee County, SC",45021,83600 "Cherokee County, TX",48073,76300 "Cherry County, NE",31031,95500 "Chesapeake city, VA",51550,261600 "Cheshire County, NH",33005,195400 "Chester County, PA",42029,325200 "Chester County, SC",45023,82500 "Chester County, TN",47023,102300 "Chesterfield County, SC",45025,79400 "Chesterfield County, VA",51041,226500 "Cheyenne County, CO",8017,81700 "Cheyenne County, KS",20023,76700 "Cheyenne County, NE",31033,104100 "Chickasaw County, IA",19037,95900 "Chickasaw County, MS",28017,64600 "Chicot County, AR",5017,54700 "Childress County, TX",48075,62700 "Chilton County, AL",1021,102600 "Chippewa County, MI",26033,101600 "Chippewa County, MN",27023,101100 "Chippewa County, WI",55017,147700 "Chisago County, MN",27025,197000 "Chittenden County, VT",50007,267500 "Choctaw County, AL",1023,58200 "Choctaw County, MS",28019,70600 "Choctaw County, OK",40023,71600 "Chouteau County, MT",30015,114200 "Chowan County, NC",37041,129100 "Christian County, IL",17021,82400 "Christian County, KY",21047,101700 "Christian County, MO",29043,142600 "Churchill County, NV",32001,153300 "Cibola County, NM",35006,83800 "Cimarron County, OK",40025,64700 "Citrus County, FL",12017,117400 "Clackamas County, OR",41005,300600 "Claiborne County, MS",28021,54500 "Claiborne County, TN",47025,94900 "Claiborne Parish, LA",22027,70500 "Clallam County, WA",53009,222200 "Clare County, MI",26035,80000 "Clarendon County, SC",45027,85900 "Clarion County, PA",42031,106200 "Clark County, AR",5019,86600 "Clark County, ID",16033,111700 "Clark County, IL",17023,87800 "Clark County, IN",18019,127400 "Clark County, KS",20025,59800 "Clark County, KY",21049,141000 "Clark County, MO",29045,71300 "Clark County, NV",32003,165000 "Clark County, OH",39023,106400 "Clark County, SD",46025,69000 "Clark County, WA",53011,232500 "Clark County, WI",55019,111700 "Clarke County, AL",1025,85600 "Clarke County, GA",13059,156600 "Clarke County, IA",19039,84900 "Clarke County, MS",28023,59900 "Clarke County, VA",51043,342500 "Clatsop County, OR",41007,256500 "Clay County, AL",1027,79900 "Clay County, AR",5021,62400 "Clay County, FL",12019,158600 "Clay County, GA",13061,72300 "Clay County, IA",19041,105400 "Clay County, IL",17025,75300 "Clay County, IN",18021,91300 "Clay County, KS",20027,85700 "Clay County, KY",21051,57800 "Clay County, MN",27027,155200 "Clay County, MO",29047,153700 "Clay County, MS",28025,80600 "Clay County, NC",37043,154700 "Clay County, NE",31035,76100 "Clay County, SD",46027,133800 "Clay County, TN",47027,96400 "Clay County, TX",48077,81600 "Clay County, WV",54015,84500 "Clayton County, GA",13063,97500 "Clayton County, IA",19043,102400 "Clear Creek County, CO",8019,268500 "Clearfield County, PA",42033,85100 "Clearwater County, ID",16035,138300 "Clearwater County, MN",27029,118300 "Cleburne County, AL",1029,100800 "Cleburne County, AR",5023,117900 "Clermont County, OH",39025,154500 "Cleveland County, AR",5025,78300 "Cleveland County, NC",37045,106100 "Cleveland County, OK",40027,141300 "Clinch County, GA",13065,62900 "Clinton County, IA",19045,110300 "Clinton County, IL",17027,127300 "Clinton County, IN",18023,97300 "Clinton County, KY",21053,68000 "Clinton County, MI",26037,156300 "Clinton County, MO",29049,142900 "Clinton County, NY",36019,122900 "Clinton County, OH",39027,118600 "Clinton County, PA",42035,110900 "Cloud County, KS",20029,66100 "Coahoma County, MS",28027,55600 "Coal County, OK",40029,68400 "Cobb County, GA",13067,196700 "Cochise County, AZ",4003,146200 "Cochran County, TX",48079,35500 "Cocke County, TN",47029,99700 "Coconino County, AZ",4005,220400 "Codington County, SD",46029,134800 "Coffee County, AL",1031,131000 "Coffee County, GA",13069,80700 "Coffee County, TN",47031,116900 "Coffey County, KS",20031,98200 "Coke County, TX",48081,70400 "Colbert County, AL",1033,99300 "Cole County, MO",29051,142400 "Coleman County, TX",48083,60900 "Coles County, IL",17029,90200 "Colfax County, NE",31037,87900 "Colfax County, NM",35007,117100 "Colleton County, SC",45029,89900 "Collier County, FL",12021,261300 "Collin County, TX",48085,206100 "Collingsworth County, TX",48087,66400 "Colonial Heights city, VA",51570,181300 "Colorado County, TX",48089,109600 "Colquitt County, GA",13071,83500 "Columbia County, AR",5027,78900 "Columbia County, FL",12023,108700 "Columbia County, GA",13073,170400 "Columbia County, NY",36021,221600 "Columbia County, OR",41009,213200 "Columbia County, PA",42037,135000 "Columbia County, WA",53013,147900 "Columbia County, WI",55021,175000 "Columbiana County, OH",39029,96000 "Columbus County, NC",37047,84500 "Colusa County, CA",6011,181600 "Comal County, TX",48091,205000 "Comanche County, KS",20033,54100 "Comanche County, OK",40031,111700 "Comanche County, TX",48093,73700 "Concho County, TX",48095,76100 "Concordia Parish, LA",22029,75000 "Conecuh County, AL",1035,69600 "Conejos County, CO",8021,109700 "Contra Costa County, CA",6013,404000 "Converse County, WY",56009,180900 "Conway County, AR",5029,86100 "Cook County, GA",13075,83100 "Cook County, IL",17031,231200 "Cook County, MN",27031,240500 "Cooke County, TX",48097,117100 "Cooper County, MO",29053,119800 "Coos County, NH",33007,128500 "Coos County, OR",41011,177000 "Coosa County, AL",1037,75100 "Copiah County, MS",28029,74100 "Corson County, SD",46031,48900 "Cortland County, NY",36023,105700 "Coryell County, TX",48099,97400 "Coshocton County, OH",39031,93300 "Costilla County, CO",8023,93800 "Cottle County, TX",48101,41400 "Cotton County, OK",40033,74600 "Cottonwood County, MN",27033,86800 "Covington city, VA",51580,66900 "Covington County, AL",1039,88800 "Covington County, MS",28031,71800 "Coweta County, GA",13077,176400 "Cowley County, KS",20035,80600 "Cowlitz County, WA",53015,181500 "Craig County, OK",40035,86800 "Craig County, VA",51045,136500 "Craighead County, AR",5031,120700 "Crane County, TX",48103,66800 "Craven County, NC",37049,152400 "Crawford County, AR",5033,102800 "Crawford County, GA",13079,90800 "Crawford County, IA",19047,83100 "Crawford County, IL",17033,76600 "Crawford County, IN",18025,83300 "Crawford County, KS",20037,83800 "Crawford County, MI",26039,96400 "Crawford County, MO",29055,105100 "Crawford County, OH",39033,87300 "Crawford County, PA",42039,102700 "Crawford County, WI",55023,121100 "Creek County, OK",40037,105800 "Crenshaw County, AL",1041,70800 "Crisp County, GA",13081,95600 "Crittenden County, AR",5035,99500 "Crittenden County, KY",21055,72500 "Crockett County, TN",47033,85700 "Crockett County, TX",48105,56200 "Crook County, OR",41013,173000 "Crook County, WY",56011,172200 "Crosby County, TX",48107,55400 "Cross County, AR",5037,78400 "Crow Wing County, MN",27035,180300 "Crowley County, CO",8025,78800 "Culberson County, TX",48109,46600 "Cullman County, AL",1043,106100 "Culpeper County, VA",51047,250600 "Cumberland County, IL",17035,83800 "Cumberland County, KY",21057,63400 "Cumberland County, ME",23005,241800 "Cumberland County, NC",37051,128700 "Cumberland County, NJ",34011,168900 "Cumberland County, PA",42041,184500 "Cumberland County, TN",47035,142200 "Cumberland County, VA",51049,142400 "Cuming County, NE",31039,88300 "Currituck County, NC",37053,223800 "Curry County, NM",35009,119600 "Curry County, OR",41015,230100 "Custer County, CO",8027,216200 "Custer County, ID",16037,150600 "Custer County, MT",30017,112100 "Custer County, NE",31041,81600 "Custer County, OK",40039,110600 "Custer County, SD",46033,192000 "Cuyahoga County, OH",39035,125700 "Dade County, GA",13083,112800 "Dade County, MO",29057,78200 "Daggett County, UT",49009,162500 "Dakota County, MN",27037,223300 "Dakota County, NE",31043,103300 "Dale County, AL",1045,99400 "Dallam County, TX",48111,70700 "Dallas County, AL",1047,75700 "Dallas County, AR",5039,59200 "Dallas County, IA",19049,184100 "Dallas County, MO",29059,101400 "Dallas County, TX",48113,128300 "Dane County, WI",55025,228800 "Daniels County, MT",30019,96800 "Danville city, VA",51590,87800 "Dare County, NC",37055,293900 "Darke County, OH",39037,110600 "Darlington County, SC",45031,87200 "Dauphin County, PA",42043,158800 "Davidson County, NC",37057,134000 "Davidson County, TN",47037,167500 "Davie County, NC",37059,162100 "Daviess County, IN",18027,105500 "Daviess County, KY",21059,110500 "Daviess County, MO",29061,104700 "Davis County, IA",19051,99700 "Davis County, UT",49011,222600 "Davison County, SD",46035,123300 "Dawes County, NE",31045,100700 "Dawson County, GA",13085,186000 "Dawson County, MT",30021,122200 "Dawson County, NE",31047,88200 "Dawson County, TX",48115,55700 "Day County, SD",46037,76800 "De Baca County, NM",35011,79200 "De Soto Parish, LA",22031,87900 "De Witt County, IL",17039,107100 "Deaf Smith County, TX",48117,80200 "Dearborn County, IN",18029,160400 "Decatur County, GA",13087,102900 "Decatur County, IA",19053,77700 "Decatur County, IN",18031,112000 "Decatur County, KS",20039,53500 "Decatur County, TN",47039,83100 "Deer Lodge County, MT",30023,117800 "Defiance County, OH",39039,106100 "DeKalb County, AL",1049,93400 "DeKalb County, GA",13089,168900 "DeKalb County, IL",17037,173000 "DeKalb County, IN",18033,107800 "DeKalb County, MO",29063,110400 "DeKalb County, TN",47041,115100 "Del Norte County, CA",6015,198400 "Delaware County, IA",19055,125300 "Delaware County, IN",18035,89600 "Delaware County, NY",36025,133200 "Delaware County, OH",39041,246300 "Delaware County, OK",40041,105200 "Delaware County, PA",42045,234100 "Delta County, CO",8029,191200 "Delta County, MI",26041,100200 "Delta County, TX",48119,71600 "Denali Borough, AK",2068,192500 "Dent County, MO",29065,86000 "Denton County, TX",48121,184100 "Denver County, CO",8031,249100 "Des Moines County, IA",19057,93900 "Deschutes County, OR",41017,249500 "Desha County, AR",5041,55100 "DeSoto County, FL",12027,89900 "DeSoto County, MS",28033,152600 "Deuel County, NE",31049,67400 "Deuel County, SD",46039,93700 "Dewey County, OK",40043,77400 "Dewey County, SD",46041,57500 "DeWitt County, TX",48123,80700 "Dickens County, TX",48125,48400 "Dickenson County, VA",51051,75700 "Dickey County, ND",38021,76700 "Dickinson County, IA",19059,159700 "Dickinson County, KS",20041,106700 "Dickinson County, MI",26043,85500 "Dickson County, TN",47043,138500 "Dillingham Census Area, AK",2070,194000 "Dillon County, SC",45033,64400 "Dimmit County, TX",48127,49900 "Dinwiddie County, VA",51053,165300 "District of Columbia, DC",11001,445200 "Divide County, ND",38023,72200 "Dixie County, FL",12029,85300 "Dixon County, NE",31051,76300 "Doa Ana County, NM",35013,139100 "Doddridge County, WV",54017,80700 "Dodge County, GA",13091,70000 "Dodge County, MN",27039,161100 "Dodge County, NE",31053,109200 "Dodge County, WI",55027,154000 "Dolores County, CO",8033,121800 "Doniphan County, KS",20043,83300 "Donley County, TX",48129,61100 "Dooly County, GA",13093,67600 "Door County, WI",55029,192200 "Dorchester County, MD",24019,191100 "Dorchester County, SC",45035,167400 "Dougherty County, GA",13095,101700 "Douglas County, CO",8035,335600 "Douglas County, GA",13097,135700 "Douglas County, IL",17041,99300 "Douglas County, KS",20045,180300 "Douglas County, MN",27041,187300 "Douglas County, MO",29067,102900 "Douglas County, NE",31055,143300 "Douglas County, NV",32005,271400 "Douglas County, OR",41019,171300 "Douglas County, SD",46043,70900 "Douglas County, WA",53017,205100 "Douglas County, WI",55031,130600 "Drew County, AR",5043,83300 "Dubois County, IN",18037,133200 "Dubuque County, IA",19061,145900 "Duchesne County, UT",49013,168000 "Dukes County, MA",25007,665300 "Dundy County, NE",31057,69100 "Dunklin County, MO",29069,67800 "Dunn County, ND",38025,104800 "Dunn County, WI",55033,156200 "DuPage County, IL",17043,286500 "Duplin County, NC",37061,87600 "Durham County, NC",37063,180600 "Dutchess County, NY",36027,289400 "Duval County, FL",12031,151400 "Duval County, TX",48131,52700 "Dyer County, TN",47045,99500 "Eagle County, CO",8037,453300 "Early County, GA",13099,82400 "East Baton Rouge Parish, LA",22033,166000 "East Carroll Parish, LA",22035,48500 "East Feliciana Parish, LA",22037,116600 "Eastland County, TX",48133,61200 "Eaton County, MI",26045,138300 "Eau Claire County, WI",55035,150000 "Echols County, GA",13101,71600 "Ector County, TX",48135,91200 "Eddy County, ND",38027,58800 "Eddy County, NM",35015,110400 "Edgar County, IL",17045,72900 "Edgecombe County, NC",37065,80600 "Edgefield County, SC",45037,109500 "Edmonson County, KY",21061,90600 "Edmunds County, SD",46045,84000 "Edwards County, IL",17047,65800 "Edwards County, KS",20047,56500 "Edwards County, TX",48137,70500 "Effingham County, GA",13103,155400 "Effingham County, IL",17049,115200 "El Dorado County, CA",6017,359500 "El Paso County, CO",8041,213500 "El Paso County, TX",48141,111800 "Elbert County, CO",8039,333600 "Elbert County, GA",13105,84500 "Elk County, KS",20049,52100 "Elk County, PA",42047,92100 "Elkhart County, IN",18039,121700 "Elko County, NV",32007,184300 "Elliott County, KY",21063,71400 "Ellis County, KS",20051,138400 "Ellis County, OK",40045,75900 "Ellis County, TX",48139,137500 "Ellsworth County, KS",20053,73300 "Elmore County, AL",1051,144600 "Elmore County, ID",16039,136800 "Emanuel County, GA",13107,69900 "Emery County, UT",49015,122500 "Emmet County, IA",19063,82200 "Emmet County, MI",26047,167700 "Emmons County, ND",38029,70200 "Emporia city, VA",51595,104000 "Erath County, TX",48143,111100 "Erie County, NY",36029,124300 "Erie County, OH",39043,135200 "Erie County, PA",42049,115100 "Escambia County, AL",1053,84100 "Escambia County, FL",12033,130100 "Esmeralda County, NV",32009,81400 "Essex County, MA",25009,349400 "Essex County, NJ",34013,364800 "Essex County, NY",36031,146600 "Essex County, VA",51057,160800 "Essex County, VT",50009,122200 "Estill County, KY",21065,71900 "Etowah County, AL",1055,100000 "Eureka County, NV",32011,117400 "Evangeline Parish, LA",22039,80000 "Evans County, GA",13109,89700 "Fairbanks North Star Borough, AK",2090,212500 "Fairfax city, VA",51600,456700 "Fairfax County, VA",51059,476600 "Fairfield County, CT",9001,432100 "Fairfield County, OH",39045,163700 "Fairfield County, SC",45039,91900 "Fall River County, SD",46047,89700 "Fallon County, MT",30025,106700 "Falls Church city, VA",51610,660900 "Falls County, TX",48145,60800 "Fannin County, GA",13111,161300 "Fannin County, TX",48147,92600 "Faribault County, MN",27043,85800 "Faulk County, SD",46049,65200 "Faulkner County, AR",5045,137800 "Fauquier County, VA",51061,350600 "Fayette County, AL",1057,71400 "Fayette County, GA",13113,231500 "Fayette County, IA",19065,85400 "Fayette County, IL",17051,82900 "Fayette County, IN",18041,81700 "Fayette County, KY",21067,165800 "Fayette County, OH",39047,107000 "Fayette County, PA",42051,84200 "Fayette County, TN",47047,175100 "Fayette County, TX",48149,130300 "Fayette County, WV",54019,72000 "Fentress County, TN",47049,93300 "Fergus County, MT",30027,113800 "Ferry County, WA",53019,156300 "Fillmore County, MN",27045,135200 "Fillmore County, NE",31059,73300 "Finney County, KS",20055,109700 "Fisher County, TX",48151,62200 "Flagler County, FL",12035,169300 "Flathead County, MT",30029,228100 "Fleming County, KY",21069,78700 "Florence County, SC",45041,114900 "Florence County, WI",55037,131100 "Floyd County, GA",13115,114800 "Floyd County, IA",19067,90200 "Floyd County, IN",18043,150400 "Floyd County, KY",21071,70000 "Floyd County, TX",48153,61200 "Floyd County, VA",51063,144700 "Fluvanna County, VA",51065,225700 "Foard County, TX",48155,37500 "Fond du Lac County, WI",55039,145800 "Ford County, IL",17053,89600 "Ford County, KS",20057,88800 "Forest County, PA",42053,83600 "Forest County, WI",55041,122400 "Forrest County, MS",28035,117500 "Forsyth County, GA",13117,258200 "Forsyth County, NC",37067,150600 "Fort Bend County, TX",48157,183600 "Foster County, ND",38031,88700 "Fountain County, IN",18045,88800 "Franklin city, VA",51620,186700 "Franklin County, AL",1059,82300 "Franklin County, AR",5047,93000 "Franklin County, FL",12037,143900 "Franklin County, GA",13119,114800 "Franklin County, IA",19069,87500 "Franklin County, ID",16041,156800 "Franklin County, IL",17055,64300 "Franklin County, IN",18047,150100 "Franklin County, KS",20059,119700 "Franklin County, KY",21073,139300 "Franklin County, MA",25011,219500 "Franklin County, ME",23007,132400 "Franklin County, MO",29071,150500 "Franklin County, MS",28037,63700 "Franklin County, NC",37069,123300 "Franklin County, NE",31061,56200 "Franklin County, NY",36033,97100 "Franklin County, OH",39049,150800 "Franklin County, PA",42055,177500 "Franklin County, TN",47051,104800 "Franklin County, TX",48159,92800 "Franklin County, VA",51067,163700 "Franklin County, VT",50011,204400 "Franklin County, WA",53021,161600 "Franklin Parish, LA",22041,75200 "Frederick County, MD",24021,307000 "Frederick County, VA",51069,226900 "Fredericksburg city, VA",51630,314300 "Freeborn County, MN",27047,104000 "Freestone County, TX",48161,76900 "Fremont County, CO",8043,159500 "Fremont County, IA",19071,94100 "Fremont County, ID",16043,147600 "Fremont County, WY",56013,181000 "Fresno County, CA",6019,195400 "Frio County, TX",48163,62900 "Frontier County, NE",31063,74200 "Fulton County, AR",5049,88200 "Fulton County, GA",13121,238200 "Fulton County, IL",17057,80600 "Fulton County, IN",18049,95600 "Fulton County, KY",21075,60400 "Fulton County, NY",36035,106000 "Fulton County, OH",39051,128900 "Fulton County, PA",42057,159300 "Furnas County, NE",31065,56400 "Gadsden County, FL",12039,111200 "Gage County, NE",31067,101600 "Gaines County, TX",48165,93000 "Galax city, VA",51640,112900 "Gallatin County, IL",17059,61100 "Gallatin County, KY",21077,98400 "Gallatin County, MT",30031,261900 "Gallia County, OH",39053,95500 "Galveston County, TX",48167,148600 "Garden County, NE",31069,61800 "Garfield County, CO",8045,302700 "Garfield County, MT",30033,113300 "Garfield County, NE",31071,86100 "Garfield County, OK",40047,89400 "Garfield County, UT",49017,154300 "Garfield County, WA",53023,139500 "Garland County, AR",5051,130500 "Garrard County, KY",21079,121400 "Garrett County, MD",24023,168600 "Garvin County, OK",40049,83800 "Garza County, TX",48169,72000 "Gasconade County, MO",29073,116000 "Gaston County, NC",37071,123600 "Gates County, NC",37073,150200 "Geary County, KS",20061,136500 "Geauga County, OH",39055,224700 "Gem County, ID",16045,150400 "Genesee County, MI",26049,91700 "Genesee County, NY",36037,105000 "Geneva County, AL",1061,78100 "Gentry County, MO",29075,80400 "George County, MS",28039,94400 "Georgetown County, SC",45043,158800 "Gibson County, IN",18051,104400 "Gibson County, TN",47053,87700 "Gila County, AZ",4007,134000 "Gilchrist County, FL",12041,102300 "Giles County, TN",47055,100000 "Giles County, VA",51071,105300 "Gillespie County, TX",48171,216600 "Gilliam County, OR",41021,116400 "Gilmer County, GA",13123,142200 "Gilmer County, WV",54021,72500 "Gilpin County, CO",8047,281700 "Glacier County, MT",30035,80200 "Glades County, FL",12043,87700 "Gladwin County, MI",26051,103300 "Glascock County, GA",13125,70000 "Glasscock County, TX",48173,119100 "Glenn County, CA",6021,217700 "Gloucester County, NJ",34015,224700 "Gloucester County, VA",51073,228700 "Glynn County, GA",13127,162900 "Gogebic County, MI",26053,66800 "Golden Valley County, MT",30037,89300 "Golden Valley County, ND",38033,83800 "Goliad County, TX",48175,111600 "Gonzales County, TX",48177,77500 "Goochland County, VA",51075,338500 "Goodhue County, MN",27049,181800 "Gooding County, ID",16047,123800 "Gordon County, GA",13129,116100 "Goshen County, WY",56015,139700 "Gosper County, NE",31073,104100 "Gove County, KS",20063,71500 "Grady County, GA",13131,110800 "Grady County, OK",40051,108400 "Grafton County, NH",33009,212000 "Graham County, AZ",4009,122200 "Graham County, KS",20065,63800 "Graham County, NC",37075,125700 "Grainger County, TN",47057,91400 "Grand County, CO",8049,282000 "Grand County, UT",49019,218800 "Grand Forks County, ND",38035,152100 "Grand Isle County, VT",50013,254300 "Grand Traverse County, MI",26055,168300 "Granite County, MT",30039,200500 "Grant County, AR",5053,100800 "Grant County, IN",18053,80100 "Grant County, KS",20067,90900 "Grant County, KY",21081,124300 "Grant County, MN",27051,98600 "Grant County, ND",38037,67200 "Grant County, NE",31075,45600 "Grant County, NM",35017,125300 "Grant County, OK",40053,62800 "Grant County, OR",41023,136400 "Grant County, SD",46051,100500 "Grant County, WA",53025,154700 "Grant County, WI",55043,124800 "Grant County, WV",54023,112900 "Grant Parish, LA",22043,78300 "Granville County, NC",37077,137100 "Gratiot County, MI",26057,86600 "Graves County, KY",21083,85900 "Gray County, KS",20069,105900 "Gray County, TX",48179,68000 "Grays Harbor County, WA",53027,157600 "Grayson County, KY",21085,87700 "Grayson County, TX",48181,104500 "Grayson County, VA",51077,97900 "Greeley County, KS",20071,78500 "Greeley County, NE",31077,57500 "Green County, KY",21087,70100 "Green County, WI",55045,158300 "Green Lake County, WI",55047,140500 "Greenbrier County, WV",54025,96700 "Greene County, AL",1063,72700 "Greene County, AR",5055,99100 "Greene County, GA",13133,145200 "Greene County, IA",19073,78200 "Greene County, IL",17061,75200 "Greene County, IN",18055,88800 "Greene County, MO",29077,128100 "Greene County, MS",28041,83200 "Greene County, NC",37079,88500 "Greene County, NY",36039,183300 "Greene County, OH",39057,158000 "Greene County, PA",42059,89400 "Greene County, TN",47059,110800 "Greene County, VA",51079,237500 "Greenlee County, AZ",4011,81000 "Greensville County, VA",51081,99600 "Greenup County, KY",21089,92000 "Greenville County, SC",45045,153600 "Greenwood County, KS",20073,56800 "Greenwood County, SC",45047,104900 "Greer County, OK",40055,63000 "Gregg County, TX",48183,121300 "Gregory County, SD",46053,58400 "Grenada County, MS",28043,86500 "Griggs County, ND",38039,61900 "Grimes County, TX",48185,92900 "Grundy County, IA",19075,123700 "Grundy County, IL",17063,182200 "Grundy County, MO",29079,72700 "Grundy County, TN",47061,80100 "Guadalupe County, NM",35019,88400 "Guadalupe County, TX",48187,156000 "Guernsey County, OH",39059,94000 "Guilford County, NC",37081,156000 "Gulf County, FL",12045,120200 "Gunnison County, CO",8051,329500 "Guthrie County, IA",19077,97100 "Gwinnett County, GA",13135,171300 "Haakon County, SD",46055,74400 "Habersham County, GA",13137,137900 "Haines Borough, AK",2100,171900 "Hale County, AL",1065,79900 "Hale County, TX",48189,70800 "Halifax County, NC",37083,86100 "Halifax County, VA",51083,106600 "Hall County, GA",13139,165300 "Hall County, NE",31079,113200 "Hall County, TX",48191,42700 "Hamblen County, TN",47063,125000 "Hamilton County, FL",12047,73500 "Hamilton County, IA",19079,91400 "Hamilton County, IL",17065,72800 "Hamilton County, IN",18057,215600 "Hamilton County, KS",20075,75100 "Hamilton County, NE",31081,113300 "Hamilton County, NY",36041,164700 "Hamilton County, OH",39061,144400 "Hamilton County, TN",47065,154200 "Hamilton County, TX",48193,91500 "Hamlin County, SD",46057,108100 "Hampden County, MA",25013,197900 "Hampshire County, MA",25015,262600 "Hampshire County, WV",54027,123800 "Hampton city, VA",51650,195400 "Hampton County, SC",45049,79400 "Hancock County, GA",13141,67800 "Hancock County, IA",19081,85300 "Hancock County, IL",17067,81600 "Hancock County, IN",18059,155400 "Hancock County, KY",21091,90800 "Hancock County, ME",23009,198300 "Hancock County, MS",28045,133900 "Hancock County, OH",39063,127800 "Hancock County, TN",47067,75900 "Hancock County, WV",54029,84700 "Hand County, SD",46059,86400 "Hanover County, VA",51085,262000 "Hansford County, TX",48195,72900 "Hanson County, SD",46061,102700 "Haralson County, GA",13143,106800 "Hardee County, FL",12049,85800 "Hardeman County, TN",47069,86300 "Hardeman County, TX",48197,46800 "Hardin County, IA",19083,89900 "Hardin County, IL",17069,72600 "Hardin County, KY",21093,140600 "Hardin County, OH",39065,95600 "Hardin County, TN",47071,98000 "Hardin County, TX",48199,100400 "Harding County, NM",35021,66300 "Harding County, SD",46063,69400 "Hardy County, WV",54031,123100 "Harford County, MD",24025,281800 "Harlan County, KY",21095,52000 "Harlan County, NE",31083,75100 "Harmon County, OK",40057,43400 "Harnett County, NC",37085,132600 "Harney County, OR",41025,112300 "Harper County, KS",20077,66100 "Harper County, OK",40059,68500 "Harris County, GA",13145,203800 "Harris County, TX",48201,131400 "Harrison County, IA",19085,108200 "Harrison County, IN",18061,122100 "Harrison County, KY",21097,109400 "Harrison County, MO",29081,71300 "Harrison County, MS",28047,143000 "Harrison County, OH",39067,83500 "Harrison County, TX",48203,108700 "Harrison County, WV",54033,94600 "Harrisonburg city, VA",51660,208100 "Hart County, GA",13147,118400 "Hart County, KY",21099,78900 "Hartford County, CT",9003,241500 "Hartley County, TX",48205,143700 "Harvey County, KS",20079,111600 "Haskell County, KS",20081,103300 "Haskell County, OK",40061,78000 "Haskell County, TX",48207,45200 "Hawaii County, HI",15001,309800 "Hawkins County, TN",47073,108900 "Hayes County, NE",31085,66100 "Hays County, TX",48209,175600 "Haywood County, NC",37087,156900 "Haywood County, TN",47075,94500 "Heard County, GA",13149,93200 "Hemphill County, TX",48211,97800 "Hempstead County, AR",5057,73100 "Henderson County, IL",17071,83700 "Henderson County, KY",21101,99400 "Henderson County, NC",37089,185500 "Henderson County, TN",47077,94400 "Henderson County, TX",48213,87800 "Hendricks County, IN",18063,159800 "Hendry County, FL",12051,81400 "Hennepin County, MN",27053,230900 "Henrico County, VA",51087,219900 "Henry County, AL",1067,97000 "Henry County, GA",13151,147500 "Henry County, IA",19087,103700 "Henry County, IL",17073,109800 "Henry County, IN",18065,94200 "Henry County, KY",21103,123300 "Henry County, MO",29083,95700 "Henry County, OH",39069,114000 "Henry County, TN",47079,91300 "Henry County, VA",51089,94600 "Herkimer County, NY",36043,92500 "Hernando County, FL",12053,117400 "Hertford County, NC",37091,84200 "Hettinger County, ND",38041,74400 "Hickman County, KY",21105,62400 "Hickman County, TN",47081,100400 "Hickory County, MO",29085,98700 "Hidalgo County, NM",35023,76800 "Hidalgo County, TX",48215,78100 "Highland County, OH",39071,101800 "Highland County, VA",51091,171700 "Highlands County, FL",12055,93600 "Hill County, MT",30041,122600 "Hill County, TX",48217,83400 "Hillsborough County, FL",12057,160000 "Hillsborough County, NH",33011,249900 "Hillsdale County, MI",26059,103700 "Hinds County, MS",28049,106400 "Hinsdale County, CO",8053,261700 "Hitchcock County, NE",31087,62300 "Hocking County, OH",39073,109800 "Hockley County, TX",48219,79300 "Hodgeman County, KS",20083,76500 "Hoke County, NC",37093,141300 "Holmes County, FL",12059,83400 "Holmes County, MS",28051,49000 "Holmes County, OH",39075,151400 "Holt County, MO",29087,78900 "Holt County, NE",31089,90500 "Honolulu County, HI",15003,556300 "Hood County, TX",48221,150900 "Hood River County, OR",41027,321700 "Hooker County, NE",31091,63300 "Hoonah-Angoon Census Area, AK",2105,200500 "Hopewell city, VA",51670,139400 "Hopkins County, KY",21107,83300 "Hopkins County, TX",48223,94000 "Horry County, SC",45051,159600 "Hot Spring County, AR",5059,81300 "Hot Springs County, WY",56017,143900 "Houghton County, MI",26061,88400 "Houston County, AL",1069,122300 "Houston County, GA",13153,132900 "Houston County, MN",27055,156500 "Houston County, TN",47083,87300 "Houston County, TX",48225,74300 "Howard County, AR",5061,74500 "Howard County, IA",19089,91800 "Howard County, IN",18067,98500 "Howard County, MD",24027,428100 "Howard County, MO",29089,96400 "Howard County, NE",31093,101200 "Howard County, TX",48227,65900 "Howell County, MO",29091,97700 "Hubbard County, MN",27057,170400 "Hudson County, NJ",34017,347200 "Hudspeth County, TX",48229,41400 "Huerfano County, CO",8055,152400 "Hughes County, OK",40063,66200 "Hughes County, SD",46065,160900 "Humboldt County, CA",6023,288300 "Humboldt County, IA",19091,84900 "Humboldt County, NV",32013,147400 "Humphreys County, MS",28053,63000 "Humphreys County, TN",47085,108000 "Hunt County, TX",48231,93500 "Hunterdon County, NJ",34019,404300 "Huntingdon County, PA",42061,115000 "Huntington County, IN",18069,97100 "Huron County, MI",26063,96100 "Huron County, OH",39077,118800 "Hutchinson County, SD",46067,71000 "Hutchinson County, TX",48233,63300 "Hyde County, NC",37095,76400 "Hyde County, SD",46069,68700 "Iberia Parish, LA",22045,101200 "Iberville Parish, LA",22047,93300 "Ida County, IA",19093,76400 "Idaho County, ID",16049,150900 "Imperial County, CA",6025,147300 "Independence County, AR",5063,88900 "Indian River County, FL",12061,157400 "Indiana County, PA",42063,103000 "Ingham County, MI",26065,120500 "Inyo County, CA",6027,236100 "Ionia County, MI",26067,111000 "Iosco County, MI",26069,90300 "Iowa County, IA",19095,138000 "Iowa County, WI",55049,160500 "Iredell County, NC",37097,166700 "Irion County, TX",48235,76100 "Iron County, MI",26071,75100 "Iron County, MO",29093,78800 "Iron County, UT",49021,168300 "Iron County, WI",55051,108300 "Iroquois County, IL",17075,96500 "Irwin County, GA",13155,83400 "Isabella County, MI",26073,119800 "Isanti County, MN",27059,172000 "Island County, WA",53029,292100 "Isle of Wight County, VA",51093,249600 "Issaquena County, MS",28055,60800 "Itasca County, MN",27061,152200 "Itawamba County, MS",28057,79300 "Izard County, AR",5065,73900 "Jack County, TX",48237,76700 "Jackson County, AL",1071,93400 "Jackson County, AR",5067,56500 "Jackson County, CO",8057,123200 "Jackson County, FL",12063,88100 "Jackson County, GA",13157,161300 "Jackson County, IA",19097,110000 "Jackson County, IL",17077,100600 "Jackson County, IN",18071,117100 "Jackson County, KS",20085,118200 "Jackson County, KY",21109,62100 "Jackson County, MI",26075,112800 "Jackson County, MN",27063,97700 "Jackson County, MO",29095,126800 "Jackson County, MS",28059,123300 "Jackson County, NC",37099,172800 "Jackson County, OH",39079,89600 "Jackson County, OK",40065,87400 "Jackson County, OR",41029,225100 "Jackson County, SD",46071,52600 "Jackson County, TN",47087,102900 "Jackson County, TX",48239,84400 "Jackson County, WI",55053,124000 "Jackson County, WV",54035,101800 "Jackson Parish, LA",22049,77800 "James City County, VA",51095,327100 "Jasper County, GA",13159,120200 "Jasper County, IA",19099,113100 "Jasper County, IL",17079,88100 "Jasper County, IN",18073,146200 "Jasper County, MO",29097,98300 "Jasper County, MS",28061,72700 "Jasper County, SC",45053,90200 "Jasper County, TX",48241,82200 "Jay County, IN",18075,79300 "Jeff Davis County, GA",13161,79900 "Jeff Davis County, TX",48243,104300 "Jefferson County, AL",1073,140800 "Jefferson County, AR",5069,81100 "Jefferson County, CO",8059,262400 "Jefferson County, FL",12065,121100 "Jefferson County, GA",13163,67200 "Jefferson County, IA",19101,92400 "Jefferson County, ID",16051,157500 "Jefferson County, IL",17081,86300 "Jefferson County, IN",18077,111500 "Jefferson County, KS",20087,125800 "Jefferson County, KY",21111,149100 "Jefferson County, MO",29099,152100 "Jefferson County, MS",28063,61500 "Jefferson County, MT",30043,230100 "Jefferson County, NE",31095,70400 "Jefferson County, NY",36045,131800 "Jefferson County, OH",39081,86400 "Jefferson County, OK",40067,59500 "Jefferson County, OR",41031,165900 "Jefferson County, PA",42065,86800 "Jefferson County, TN",47089,121800 "Jefferson County, TX",48245,96200 "Jefferson County, WA",53031,284100 "Jefferson County, WI",55055,176900 "Jefferson County, WV",54037,214400 "Jefferson Davis County, MS",28065,78300 "Jefferson Davis Parish, LA",22053,86600 "Jefferson Parish, LA",22051,172500 "Jenkins County, GA",13165,63400 "Jennings County, IN",18079,89700 "Jerauld County, SD",46073,69900 "Jerome County, ID",16053,135200 "Jersey County, IL",17083,117900 "Jessamine County, KY",21113,154300 "Jewell County, KS",20089,56500 "Jim Hogg County, TX",48247,50700 "Jim Wells County, TX",48249,69000 "Jo Daviess County, IL",17085,138000 "Johnson County, AR",5071,88700 "Johnson County, GA",13167,65000 "Johnson County, IA",19103,186000 "Johnson County, IL",17087,89800 "Johnson County, IN",18081,144300 "Johnson County, KS",20091,210900 "Johnson County, KY",21115,78700 "Johnson County, MO",29101,139200 "Johnson County, NE",31097,75300 "Johnson County, TN",47091,101200 "Johnson County, TX",48251,113900 "Johnson County, WY",56019,228800 "Johnston County, NC",37101,141200 "Johnston County, OK",40069,77200 "Jones County, GA",13169,138900 "Jones County, IA",19105,122100 "Jones County, MS",28067,84200 "Jones County, NC",37103,97600 "Jones County, SD",46075,67600 "Jones County, TX",48253,61500 "Josephine County, OR",41033,220900 "Juab County, UT",49023,162600 "Judith Basin County, MT",30045,106800 "Juneau City and Borough, AK",2110,309900 "Juneau County, WI",55057,116000 "Juniata County, PA",42067,138200 "Kalamazoo County, MI",26077,136700 "Kalawao County, HI",15005,0 "Kalkaska County, MI",26079,98800 "Kanabec County, MN",27065,145600 "Kanawha County, WV",54039,101600 "Kandiyohi County, MN",27067,161800 "Kane County, IL",17089,223100 "Kane County, UT",49025,162300 "Kankakee County, IL",17091,145900 "Karnes County, TX",48255,75000 "Kauai County, HI",15007,484500 "Kaufman County, TX",48257,129500 "Kay County, OK",40071,75700 "Kearney County, NE",31099,96400 "Kearny County, KS",20093,91700 "Keith County, NE",31101,91500 "Kemper County, MS",28069,65500 "Kenai Peninsula Borough, AK",2122,204900 "Kendall County, IL",17093,210800 "Kendall County, TX",48259,274400 "Kenedy County, TX",48261,56200 "Kennebec County, ME",23011,152800 "Kenosha County, WI",55059,169600 "Kent County, DE",10001,199500 "Kent County, MD",24029,258200 "Kent County, MI",26081,137500 "Kent County, RI",44003,220200 "Kent County, TX",48263,64300 "Kenton County, KY",21117,144300 "Keokuk County, IA",19107,75700 "Kern County, CA",6029,161700 "Kerr County, TX",48265,150700 "Kershaw County, SC",45055,116000 "Ketchikan Gateway Borough, AK",2130,265600 "Kewaunee County, WI",55061,149000 "Keweenaw County, MI",26083,101700 "Keya Paha County, NE",31103,80000 "Kidder County, ND",38043,71500 "Kimball County, NE",31105,77900 "Kimble County, TX",48267,85100 "King and Queen County, VA",51097,154200 "King County, TX",48269,91000 "King County, WA",53033,377300 "King George County, VA",51099,278900 "King William County, VA",51101,199700 "Kingfisher County, OK",40073,115000 "Kingman County, KS",20095,86700 "Kings County, CA",6031,176900 "Kings County, NY",36047,557100 "Kingsbury County, SD",46077,82000 "Kinney County, TX",48271,65800 "Kiowa County, CO",8061,79400 "Kiowa County, KS",20097,102800 "Kiowa County, OK",40075,56600 "Kit Carson County, CO",8063,121600 "Kitsap County, WA",53035,268200 "Kittitas County, WA",53037,244700 "Kittson County, MN",27069,68700 "Klamath County, OR",41035,155000 "Kleberg County, TX",48273,74500 "Klickitat County, WA",53039,194700 "Knott County, KY",21119,59600 "Knox County, IL",17095,81100 "Knox County, IN",18083,84100 "Knox County, KY",21121,71400 "Knox County, ME",23013,195700 "Knox County, MO",29103,64900 "Knox County, NE",31107,74000 "Knox County, OH",39083,133500 "Knox County, TN",47093,157400 "Knox County, TX",48275,40900 "Kodiak Island Borough, AK",2150,224500 "Koochiching County, MN",27071,101200 "Kootenai County, ID",16055,188800 "Kosciusko County, IN",18085,132200 "Kossuth County, IA",19109,91100 "La Crosse County, WI",55063,154700 "La Paz County, AZ",4012,88800 "La Plata County, CO",8067,339400 "La Salle County, TX",48283,48200 "La Salle Parish, LA",22059,73900 "Labette County, KS",20099,66100 "Lac qui Parle County, MN",27073,80200 "Lackawanna County, PA",42069,144100 "Laclede County, MO",29105,96800 "Lafayette County, AR",5073,52200 "Lafayette County, FL",12067,116600 "Lafayette County, MO",29107,117300 "Lafayette County, MS",28071,163000 "Lafayette County, WI",55065,121800 "Lafayette Parish, LA",22055,162500 "Lafourche Parish, LA",22057,126500 "LaGrange County, IN",18087,160200 "Lake and Peninsula Borough, AK",2164,136400 "Lake County, CA",6033,183600 "Lake County, CO",8065,164400 "Lake County, FL",12069,142700 "Lake County, IL",17097,254800 "Lake County, IN",18089,136600 "Lake County, MI",26085,79700 "Lake County, MN",27075,153200 "Lake County, MT",30047,218600 "Lake County, OH",39085,151300 "Lake County, OR",41037,144100 "Lake County, SD",46079,118500 "Lake County, TN",47095,72700 "Lake of the Woods County, MN",27077,121500 "Lamar County, AL",1075,66800 "Lamar County, GA",13171,122600 "Lamar County, MS",28073,163900 "Lamar County, TX",48277,85300 "Lamb County, TX",48279,56900 "Lamoille County, VT",50015,218800 "LaMoure County, ND",38045,76500 "Lampasas County, TX",48281,129100 "Lancaster County, NE",31109,148600 "Lancaster County, PA",42071,188200 "Lancaster County, SC",45057,142200 "Lancaster County, VA",51103,233400 "Lander County, NV",32015,103300 "Lane County, KS",20101,58200 "Lane County, OR",41039,218900 "Langlade County, WI",55067,108000 "Lanier County, GA",13173,111800 "Lapeer County, MI",26087,137600 "LaPorte County, IN",18091,122800 "Laramie County, WY",56021,181700 "Larimer County, CO",8069,247100 "Larue County, KY",21123,101000 "Las Animas County, CO",8071,151500 "LaSalle County, IL",17099,125200 "Lassen County, CA",6035,185500 "Latah County, ID",16057,189100 "Latimer County, OK",40077,71200 "Lauderdale County, AL",1077,114300 "Lauderdale County, MS",28075,87400 "Lauderdale County, TN",47097,77600 "Laurel County, KY",21125,91300 "Laurens County, GA",13175,85200 "Laurens County, SC",45059,81800 "Lavaca County, TX",48285,92800 "Lawrence County, AL",1079,94200 "Lawrence County, AR",5075,59800 "Lawrence County, IL",17101,65900 "Lawrence County, IN",18093,98200 "Lawrence County, KY",21127,80200 "Lawrence County, MO",29109,93700 "Lawrence County, MS",28077,79600 "Lawrence County, OH",39087,97200 "Lawrence County, PA",42073,96700 "Lawrence County, SD",46081,167100 "Lawrence County, TN",47099,97900 "Le Flore County, OK",40079,80100 "Le Sueur County, MN",27079,180100 "Lea County, NM",35025,97200 "Leake County, MS",28079,73800 "Leavenworth County, KS",20103,165800 "Lebanon County, PA",42075,164300 "Lee County, AL",1081,146900 "Lee County, AR",5077,54700 "Lee County, FL",12071,149400 "Lee County, GA",13177,159000 "Lee County, IA",19111,83100 "Lee County, IL",17103,112100 "Lee County, KY",21129,62200 "Lee County, MS",28081,108300 "Lee County, NC",37105,131300 "Lee County, SC",45061,65000 "Lee County, TX",48287,118400 "Lee County, VA",51105,74300 "Leelanau County, MI",26089,235600 "Leflore County, MS",28083,69200 "Lehigh County, PA",42077,196600 "Lemhi County, ID",16059,186900 "Lenawee County, MI",26091,116900 "Lenoir County, NC",37107,94200 "Leon County, FL",12073,183300 "Leon County, TX",48289,90300 "Leslie County, KY",21131,44700 "Letcher County, KY",21133,54900 "Levy County, FL",12075,92200 "Lewis and Clark County, MT",30049,203600 "Lewis County, ID",16061,116600 "Lewis County, KY",21135,59900 "Lewis County, MO",29111,82300 "Lewis County, NY",36049,107200 "Lewis County, TN",47101,94400 "Lewis County, WA",53041,180200 "Lewis County, WV",54041,91400 "Lexington city, VA",51678,262700 "Lexington County, SC",45063,140100 "Liberty County, FL",12077,78800 "Liberty County, GA",13179,126900 "Liberty County, MT",30051,102800 "Liberty County, TX",48291,84400 "Licking County, OH",39089,149500 "Limestone County, AL",1083,134500 "Limestone County, TX",48293,83200 "Lincoln County, AR",5079,59300 "Lincoln County, CO",8073,115000 "Lincoln County, GA",13181,103700 "Lincoln County, ID",16063,120300 "Lincoln County, KS",20105,63500 "Lincoln County, KY",21137,88500 "Lincoln County, ME",23015,208000 "Lincoln County, MN",27081,86100 "Lincoln County, MO",29113,149400 "Lincoln County, MS",28085,84900 "Lincoln County, MT",30053,158200 "Lincoln County, NC",37109,154600 "Lincoln County, NE",31111,112800 "Lincoln County, NM",35027,156300 "Lincoln County, NV",32017,140600 "Lincoln County, OK",40081,92600 "Lincoln County, OR",41041,237200 "Lincoln County, SD",46083,184900 "Lincoln County, TN",47103,109400 "Lincoln County, WA",53043,155700 "Lincoln County, WI",55069,129100 "Lincoln County, WV",54043,76700 "Lincoln County, WY",56023,190900 "Lincoln Parish, LA",22061,116900 "Linn County, IA",19113,144300 "Linn County, KS",20107,98000 "Linn County, MO",29115,68600 "Linn County, OR",41043,173600 "Lipscomb County, TX",48295,89400 "Litchfield County, CT",9005,263600 "Little River County, AR",5081,80900 "Live Oak County, TX",48297,85500 "Livingston County, IL",17105,110200 "Livingston County, KY",21139,74400 "Livingston County, MI",26093,183100 "Livingston County, MO",29117,98500 "Livingston County, NY",36051,119300 "Livingston Parish, LA",22063,152500 "Llano County, TX",48299,159000 "Logan County, AR",5083,81100 "Logan County, CO",8075,119800 "Logan County, IL",17107,97200 "Logan County, KS",20109,72700 "Logan County, KY",21141,89100 "Logan County, ND",38047,58600 "Logan County, NE",31113,101700 "Logan County, OH",39091,118600 "Logan County, OK",40083,135700 "Logan County, WV",54045,77600 "Long County, GA",13183,111900 "Lonoke County, AR",5085,120600 "Lorain County, OH",39093,140700 "Los Alamos County, NM",35028,284500 "Los Angeles County, CA",6037,420200 "Loudon County, TN",47105,177600 "Loudoun County, VA",51107,437700 "Louisa County, IA",19115,95400 "Louisa County, VA",51109,197700 "Loup County, NE",31115,71100 "Love County, OK",40085,80500 "Loving County, TX",48301,86000 "Lowndes County, AL",1085,71400 "Lowndes County, GA",13185,133700 "Lowndes County, MS",28087,115700 "Lubbock County, TX",48303,108700 "Lucas County, IA",19117,82700 "Lucas County, OH",39095,108700 "Luce County, MI",26095,79400 "Lumpkin County, GA",13187,165900 "Luna County, NM",35029,89800 "Lunenburg County, VA",51111,100400 "Luzerne County, PA",42079,121000 "Lycoming County, PA",42081,131000 "Lyman County, SD",46085,74200 "Lynchburg city, VA",51680,145800 "Lynn County, TX",48305,70200 "Lyon County, IA",19119,105700 "Lyon County, KS",20111,93100 "Lyon County, KY",21143,105500 "Lyon County, MN",27083,136000 "Lyon County, NV",32019,133400 "Mackinac County, MI",26097,119300 "Macomb County, MI",26099,123100 "Macon County, AL",1087,75700 "Macon County, GA",13193,65500 "Macon County, IL",17115,93300 "Macon County, MO",29121,83600 "Macon County, NC",37113,165400 "Macon County, TN",47111,97900 "Macoupin County, IL",17117,93900 "Madera County, CA",6039,182000 "Madison County, AL",1089,164500 "Madison County, AR",5087,92800 "Madison County, FL",12079,81000 "Madison County, GA",13195,127800 "Madison County, IA",19121,160700 "Madison County, ID",16065,169600 "Madison County, IL",17119,124600 "Madison County, IN",18095,92800 "Madison County, KY",21151,141100 "Madison County, MO",29123,86100 "Madison County, MS",28089,201200 "Madison County, MT",30057,239600 "Madison County, NC",37115,161700 "Madison County, NE",31119,109000 "Madison County, NY",36053,121100 "Madison County, OH",39097,144100 "Madison County, TN",47113,112700 "Madison County, TX",48313,94200 "Madison County, VA",51113,240900 "Madison Parish, LA",22065,69500 "Magoffin County, KY",21153,43700 "Mahaska County, IA",19123,100900 "Mahnomen County, MN",27087,97800 "Mahoning County, OH",39099,95800 "Major County, OK",40093,85300 "Malheur County, OR",41045,132600 "Manassas city, VA",51683,245000 "Manassas Park city, VA",51685,213300 "Manatee County, FL",12081,165400 "Manistee County, MI",26101,109900 "Manitowoc County, WI",55071,125200 "Marathon County, WI",55073,142300 "Marengo County, AL",1091,89600 "Maricopa County, AZ",4013,176500 "Maries County, MO",29125,116300 "Marin County, CA",6041,781900 "Marinette County, WI",55075,108200 "Marion County, AL",1093,78700 "Marion County, AR",5089,92700 "Marion County, FL",12083,119400 "Marion County, GA",13197,87000 "Marion County, IA",19125,132000 "Marion County, IL",17121,70300 "Marion County, IN",18097,118000 "Marion County, KS",20115,83000 "Marion County, KY",21155,100200 "Marion County, MO",29127,102200 "Marion County, MS",28091,77900 "Marion County, OH",39101,98600 "Marion County, OR",41047,192200 "Marion County, SC",45067,77800 "Marion County, TN",47115,118900 "Marion County, TX",48315,72900 "Marion County, WV",54049,91500 "Mariposa County, CA",6043,235000 "Marlboro County, SC",45069,58200 "Marquette County, MI",26103,126600 "Marquette County, WI",55077,142000 "Marshall County, AL",1095,114000 "Marshall County, IA",19127,105400 "Marshall County, IL",17123,100600 "Marshall County, IN",18099,124600 "Marshall County, KS",20117,81700 "Marshall County, KY",21157,101800 "Marshall County, MN",27089,88100 "Marshall County, MS",28093,83700 "Marshall County, OK",40095,83700 "Marshall County, SD",46091,93200 "Marshall County, TN",47117,105900 "Marshall County, WV",54051,86000 "Martin County, FL",12085,197900 "Martin County, IN",18101,88500 "Martin County, KY",21159,84400 "Martin County, MN",27091,102600 "Martin County, NC",37117,84600 "Martin County, TX",48317,72200 "Martinsville city, VA",51690,86800 "Mason County, IL",17125,82100 "Mason County, KY",21161,99000 "Mason County, MI",26105,117000 "Mason County, TX",48319,170100 "Mason County, WA",53045,210200 "Mason County, WV",54053,83900 "Massac County, IL",17127,80200 "Matagorda County, TX",48321,92000 "Matanuska-Susitna Borough, AK",2170,218900 "Mathews County, VA",51115,238500 "Maui County, HI",15009,523700 "Maury County, TN",47119,136300 "Maverick County, TX",48323,86300 "Mayes County, OK",40097,96200 "McClain County, OK",40087,139300 "McCone County, MT",30055,101600 "McCook County, SD",46087,101100 "McCormick County, SC",45065,112500 "McCracken County, KY",21145,117200 "McCreary County, KY",21147,65000 "McCulloch County, TX",48307,69300 "McCurtain County, OK",40089,71500 "McDonald County, MO",29119,86300 "McDonough County, IL",17109,86400 "McDowell County, NC",37111,101200 "McDowell County, WV",54047,35000 "McDuffie County, GA",13189,106100 "McHenry County, IL",17111,220500 "McHenry County, ND",38049,77300 "McIntosh County, GA",13191,103700 "McIntosh County, ND",38051,55600 "McIntosh County, OK",40091,79600 "McKean County, PA",42083,72700 "McKenzie County, ND",38053,123800 "McKinley County, NM",35031,74900 "McLean County, IL",17113,157200 "McLean County, KY",21149,79000 "McLean County, ND",38055,117000 "McLennan County, TX",48309,108300 "McLeod County, MN",27085,155400 "McMinn County, TN",47107,119000 "McMullen County, TX",48311,63200 "McNairy County, TN",47109,86100 "McPherson County, KS",20113,124600 "McPherson County, NE",31117,142300 "McPherson County, SD",46089,55800 "Meade County, KS",20119,85500 "Meade County, KY",21163,120500 "Meade County, SD",46093,157100 "Meagher County, MT",30059,115700 "Mecklenburg County, NC",37119,181900 "Mecklenburg County, VA",51117,120900 "Mecosta County, MI",26107,112200 "Medina County, OH",39103,181000 "Medina County, TX",48325,112900 "Meeker County, MN",27093,156000 "Meigs County, OH",39105,82600 "Meigs County, TN",47121,101800 "Mellette County, SD",46095,54100 "Menard County, IL",17129,119100 "Menard County, TX",48327,56400 "Mendocino County, CA",6045,323600 "Menifee County, KY",21165,77300 "Menominee County, MI",26109,95300 "Menominee County, WI",55078,88500 "Merced County, CA",6047,146400 "Mercer County, IL",17131,98100 "Mercer County, KY",21167,128400 "Mercer County, MO",29129,67600 "Mercer County, ND",38057,113600 "Mercer County, NJ",34021,286900 "Mercer County, OH",39107,124200 "Mercer County, PA",42085,104600 "Mercer County, WV",54055,79400 "Meriwether County, GA",13199,91200 "Merrick County, NE",31121,85300 "Merrimack County, NH",33013,231000 "Mesa County, CO",8077,210100 "Metcalfe County, KY",21169,78800 "Miami County, IN",18103,84100 "Miami County, KS",20121,162500 "Miami County, OH",39109,133700 "Miami-Dade County, FL",12086,201000 "Middlesex County, CT",9007,292000 "Middlesex County, MA",25017,398200 "Middlesex County, NJ",34023,330000 "Middlesex County, VA",51119,247100 "Midland County, MI",26111,128600 "Midland County, TX",48329,148600 "Mifflin County, PA",42087,95700 "Milam County, TX",48331,78400 "Millard County, UT",49027,132800 "Mille Lacs County, MN",27095,146600 "Miller County, AR",5091,92900 "Miller County, GA",13201,83200 "Miller County, MO",29131,112000 "Mills County, IA",19129,149400 "Mills County, TX",48333,104100 "Milwaukee County, WI",55079,158400 "Miner County, SD",46097,63000 "Mineral County, CO",8079,275000 "Mineral County, MT",30061,167300 "Mineral County, NV",32021,95500 "Mineral County, WV",54057,114800 "Mingo County, WV",54059,69000 "Minidoka County, ID",16067,108500 "Minnehaha County, SD",46099,149600 "Missaukee County, MI",26113,99400 "Mississippi County, AR",5093,75300 "Mississippi County, MO",29133,60600 "Missoula County, MT",30063,237500 "Mitchell County, GA",13205,77900 "Mitchell County, IA",19131,108100 "Mitchell County, KS",20123,74600 "Mitchell County, NC",37121,117300 "Mitchell County, TX",48335,45800 "Mobile County, AL",1097,124300 "Modoc County, CA",6049,164100 "Moffat County, CO",8081,176500 "Mohave County, AZ",4015,133900 "Moniteau County, MO",29135,112100 "Monmouth County, NJ",34025,389900 "Mono County, CA",6051,344500 "Monona County, IA",19133,77800 "Monongalia County, WV",54061,161800 "Monroe County, AL",1099,76900 "Monroe County, AR",5095,52200 "Monroe County, FL",12087,381200 "Monroe County, GA",13207,148300 "Monroe County, IA",19135,95200 "Monroe County, IL",17133,193900 "Monroe County, IN",18105,156300 "Monroe County, KY",21171,72300 "Monroe County, MI",26115,139100 "Monroe County, MO",29137,89500 "Monroe County, MS",28095,78500 "Monroe County, NY",36055,136000 "Monroe County, OH",39111,89100 "Monroe County, PA",42089,191800 "Monroe County, TN",47123,115300 "Monroe County, WI",55081,135300 "Monroe County, WV",54063,102200 "Montague County, TX",48337,86000 "Montcalm County, MI",26117,95000 "Monterey County, CA",6053,362400 "Montezuma County, CO",8083,189400 "Montgomery County, AL",1101,122900 "Montgomery County, AR",5097,76400 "Montgomery County, GA",13209,74300 "Montgomery County, IA",19137,79600 "Montgomery County, IL",17135,79500 "Montgomery County, IN",18107,108300 "Montgomery County, KS",20125,71200 "Montgomery County, KY",21173,109300 "Montgomery County, MD",24031,446300 "Montgomery County, MO",29139,101500 "Montgomery County, MS",28097,68600 "Montgomery County, NC",37123,88900 "Montgomery County, NY",36057,101200 "Montgomery County, OH",39113,112800 "Montgomery County, PA",42091,292600 "Montgomery County, TN",47125,141800 "Montgomery County, TX",48339,166200 "Montgomery County, VA",51121,200200 "Montmorency County, MI",26119,93700 "Montour County, PA",42093,153200 "Montrose County, CO",8085,193700 "Moody County, SD",46101,101000 "Moore County, NC",37125,201600 "Moore County, TN",47127,135200 "Moore County, TX",48341,85600 "Mora County, NM",35033,96200 "Morehouse Parish, LA",22067,74600 "Morgan County, AL",1103,120500 "Morgan County, CO",8087,137000 "Morgan County, GA",13211,175700 "Morgan County, IL",17137,91000 "Morgan County, IN",18109,141200 "Morgan County, KY",21175,74500 "Morgan County, MO",29141,110500 "Morgan County, OH",39115,89000 "Morgan County, TN",47129,90700 "Morgan County, UT",49029,264400 "Morgan County, WV",54065,161200 "Morrill County, NE",31123,76300 "Morris County, KS",20127,81900 "Morris County, NJ",34027,432400 "Morris County, TX",48343,69900 "Morrison County, MN",27097,153600 "Morrow County, OH",39117,127400 "Morrow County, OR",41049,119800 "Morton County, KS",20129,82100 "Morton County, ND",38059,147900 "Motley County, TX",48345,59800 "Moultrie County, IL",17139,95400 "Mountrail County, ND",38061,89400 "Mower County, MN",27099,106000 "Muhlenberg County, KY",21177,79500 "Multnomah County, OR",41051,271600 "Murray County, GA",13213,94100 "Murray County, MN",27101,95300 "Murray County, OK",40099,82200 "Muscatine County, IA",19139,124400 "Muscogee County, GA",13215,133300 "Muskegon County, MI",26121,100900 "Muskingum County, OH",39119,108500 "Muskogee County, OK",40101,92200 "Musselshell County, MT",30065,106100 "Nacogdoches County, TX",48347,101700 "Nance County, NE",31125,67000 "Nantucket County, MA",25019,929700 "Napa County, CA",6055,428600 "Nash County, NC",37127,117300 "Nassau County, FL",12089,181100 "Nassau County, NY",36059,454500 "Natchitoches Parish, LA",22069,97200 "Natrona County, WY",56025,178300 "Navajo County, AZ",4017,112200 "Navarro County, TX",48349,79500 "Nelson County, KY",21179,124500 "Nelson County, ND",38063,54000 "Nelson County, VA",51125,192900 "Nemaha County, KS",20131,95200 "Nemaha County, NE",31127,84400 "Neosho County, KS",20133,68900 "Neshoba County, MS",28099,75900 "Ness County, KS",20135,57200 "Nevada County, AR",5099,64600 "Nevada County, CA",6057,357300 "New Castle County, DE",10003,246300 "New Hanover County, NC",37129,215200 "New Haven County, CT",9009,256900 "New Kent County, VA",51127,253700 "New London County, CT",9011,252900 "New Madrid County, MO",29143,75400 "New York County, NY",36061,828100 "Newaygo County, MI",26123,104100 "Newberry County, SC",45071,107400 "Newport County, RI",44005,355800 "Newport News city, VA",51700,200100 "Newton County, AR",5101,74600 "Newton County, GA",13217,125600 "Newton County, IN",18111,112000 "Newton County, MO",29145,107700 "Newton County, MS",28101,72100 "Newton County, TX",48351,77500 "Nez Perce County, ID",16069,165900 "Niagara County, NY",36063,105200 "Nicholas County, KY",21181,84900 "Nicholas County, WV",54067,75500 "Nicollet County, MN",27103,169800 "Niobrara County, WY",56027,147700 "Noble County, IN",18113,112700 "Noble County, OH",39121,77300 "Noble County, OK",40103,85200 "Nobles County, MN",27105,107800 "Nodaway County, MO",29147,101800 "Nolan County, TX",48353,52200 "Nome Census Area, AK",2180,142800 "Norfolk city, VA",51710,202800 "Norfolk County, MA",25021,391100 "Norman County, MN",27107,84000 "North Slope Borough, AK",2185,154600 "Northampton County, NC",37131,80000 "Northampton County, PA",42095,212100 "Northampton County, VA",51131,168800 "Northumberland County, PA",42097,98200 "Northumberland County, VA",51133,239000 "Northwest Arctic Borough, AK",2188,131000 "Norton city, VA",51720,88000 "Norton County, KS",20137,66000 "Nottoway County, VA",51135,137600 "Nowata County, OK",40105,74300 "Noxubee County, MS",28103,59000 "Nuckolls County, NE",31129,52300 "Nueces County, TX",48355,110300 "Nye County, NV",32023,112600 "Oakland County, MI",26125,170500 "Obion County, TN",47131,89100 "O'Brien County, IA",19141,93000 "Ocean County, NJ",34029,268100 "Oceana County, MI",26127,106100 "Ochiltree County, TX",48357,80100 "Oconee County, GA",13219,238200 "Oconee County, SC",45073,136300 "Oconto County, WI",55083,147700 "Ogemaw County, MI",26129,89500 "Ogle County, IL",17141,149500 "Oglethorpe County, GA",13221,120800 "Ohio County, IN",18115,137900 "Ohio County, KY",21183,78800 "Ohio County, WV",54069,98700 "Okaloosa County, FL",12091,182100 "Okanogan County, WA",53047,160800 "Okeechobee County, FL",12093,105300 "Okfuskee County, OK",40107,69300 "Oklahoma County, OK",40109,126500 "Okmulgee County, OK",40111,77100 "Oktibbeha County, MS",28105,129200 "Oldham County, KY",21185,245700 "Oldham County, TX",48359,83700 "Oliver County, ND",38065,98900 "Olmsted County, MN",27109,171100 "Oneida County, ID",16071,126100 "Oneida County, NY",36065,110500 "Oneida County, WI",55085,165200 "Onondaga County, NY",36067,132300 "Onslow County, NC",37133,151700 "Ontario County, NY",36069,138100 "Ontonagon County, MI",26131,72600 "Orange County, CA",6059,519600 "Orange County, FL",12095,167800 "Orange County, IN",18117,88100 "Orange County, NC",37135,272600 "Orange County, NY",36071,276900 "Orange County, TX",48361,91900 "Orange County, VA",51137,230500 "Orange County, VT",50017,183900 "Orangeburg County, SC",45075,84700 "Oregon County, MO",29149,72400 "Orleans County, NY",36073,91100 "Orleans County, VT",50019,156300 "Orleans Parish, LA",22071,183700 "Osage County, KS",20139,99000 "Osage County, MO",29151,123100 "Osage County, OK",40113,93900 "Osborne County, KS",20141,51200 "Osceola County, FL",12097,129900 "Osceola County, IA",19143,75600 "Osceola County, MI",26133,90500 "Oscoda County, MI",26135,83000 "Oswego County, NY",36075,93000 "Otero County, CO",8089,91800 "Otero County, NM",35035,102400 "Otoe County, NE",31131,118000 "Otsego County, MI",26137,116600 "Otsego County, NY",36077,137900 "Ottawa County, KS",20143,93400 "Ottawa County, MI",26139,153200 "Ottawa County, OH",39123,136000 "Ottawa County, OK",40115,81000 "Otter Tail County, MN",27111,159700 "Ouachita County, AR",5103,70000 "Ouachita Parish, LA",22073,118200 "Ouray County, CO",8091,383900 "Outagamie County, WI",55087,155700 "Overton County, TN",47133,91900 "Owen County, IN",18119,101900 "Owen County, KY",21187,96800 "Owsley County, KY",21189,56200 "Owyhee County, ID",16073,121200 "Oxford County, ME",23017,137200 "Ozark County, MO",29153,89900 "Ozaukee County, WI",55089,250200 "Pacific County, WA",53049,162000 "Page County, IA",19145,77700 "Page County, VA",51139,180200 "Palm Beach County, FL",12099,199700 "Palo Alto County, IA",19147,83400 "Palo Pinto County, TX",48363,85200 "Pamlico County, NC",37137,157500 "Panola County, MS",28107,77500 "Panola County, TX",48365,83900 "Park County, CO",8093,247300 "Park County, MT",30067,204500 "Park County, WY",56029,212100 "Parke County, IN",18121,87600 "Parker County, TX",48367,152900 "Parmer County, TX",48369,86400 "Pasco County, FL",12101,120000 "Pasquotank County, NC",37139,171600 "Passaic County, NJ",34031,351000 "Patrick County, VA",51141,110500 "Paulding County, GA",13223,135500 "Paulding County, OH",39125,92300 "Pawnee County, KS",20145,73700 "Pawnee County, NE",31133,57200 "Pawnee County, OK",40117,83500 "Payette County, ID",16075,132700 "Payne County, OK",40119,130800 "Peach County, GA",13225,120000 "Pearl River County, MS",28109,111600 "Pecos County, TX",48371,64300 "Pembina County, ND",38067,72200 "Pemiscot County, MO",29155,64300 "Pend Oreille County, WA",53051,186400 "Pender County, NC",37141,155600 "Pendleton County, KY",21191,105000 "Pendleton County, WV",54071,90600 "Pennington County, MN",27113,107900 "Pennington County, SD",46103,156100 "Penobscot County, ME",23019,137700 "Peoria County, IL",17143,123200 "Pepin County, WI",55091,134800 "Perkins County, NE",31135,88500 "Perkins County, SD",46105,56700 "Perquimans County, NC",37143,170700 "Perry County, AL",1105,58000 "Perry County, AR",5105,77700 "Perry County, IL",17145,78000 "Perry County, IN",18123,97300 "Perry County, KY",21193,65600 "Perry County, MO",29157,123100 "Perry County, MS",28111,81200 "Perry County, OH",39127,93100 "Perry County, PA",42099,158400 "Perry County, TN",47135,86800 "Pershing County, NV",32027,138100 "Person County, NC",37145,118800 "Petersburg Borough, AK",2195,215100 "Petersburg city, VA",51730,122500 "Petroleum County, MT",30069,83200 "Pettis County, MO",29159,98200 "Phelps County, MO",29161,111700 "Phelps County, NE",31137,100700 "Philadelphia County, PA",42101,142500 "Phillips County, AR",5107,59500 "Phillips County, CO",8095,132700 "Phillips County, KS",20147,64400 "Phillips County, MT",30071,86600 "Piatt County, IL",17147,120800 "Pickaway County, OH",39129,149200 "Pickens County, AL",1107,81900 "Pickens County, GA",13227,166300 "Pickens County, SC",45077,123900 "Pickett County, TN",47137,96300 "Pierce County, GA",13229,79600 "Pierce County, ND",38069,83100 "Pierce County, NE",31139,97000 "Pierce County, WA",53053,240400 "Pierce County, WI",55093,191300 "Pike County, AL",1109,101000 "Pike County, AR",5109,75200 "Pike County, GA",13231,152800 "Pike County, IL",17149,74700 "Pike County, IN",18125,85800 "Pike County, KY",21195,66400 "Pike County, MO",29163,90100 "Pike County, MS",28113,82200 "Pike County, OH",39131,96200 "Pike County, PA",42103,193100 "Pima County, AZ",4019,167500 "Pinal County, AZ",4021,120200 "Pine County, MN",27115,145500 "Pinellas County, FL",12103,151500 "Pipestone County, MN",27117,90600 "Piscataquis County, ME",23021,105000 "Pitkin County, CO",8097,611200 "Pitt County, NC",37147,134900 "Pittsburg County, OK",40121,86800 "Pittsylvania County, VA",51143,109600 "Piute County, UT",49031,152800 "Placer County, CA",6061,342000 "Plaquemines Parish, LA",22075,176900 "Platte County, MO",29165,184900 "Platte County, NE",31141,115400 "Platte County, WY",56031,147100 "Pleasants County, WV",54073,97300 "Plumas County, CA",6063,243700 "Plymouth County, IA",19149,129800 "Plymouth County, MA",25023,332100 "Pocahontas County, IA",19151,60600 "Pocahontas County, WV",54075,104500 "Poinsett County, AR",5111,71300 "Pointe Coupee Parish, LA",22077,113100 "Polk County, AR",5113,82700 "Polk County, FL",12105,111400 "Polk County, GA",13233,107900 "Polk County, IA",19153,154400 "Polk County, MN",27119,128100 "Polk County, MO",29167,109800 "Polk County, NC",37149,170200 "Polk County, NE",31143,95200 "Polk County, OR",41053,217400 "Polk County, TN",47139,109300 "Polk County, TX",48373,78600 "Polk County, WI",55095,159100 "Pondera County, MT",30073,99000 "Pontotoc County, MS",28115,80000 "Pontotoc County, OK",40123,99100 "Pope County, AR",5115,110200 "Pope County, IL",17151,98900 "Pope County, MN",27121,148000 "Poquoson city, VA",51735,302400 "Portage County, OH",39133,150300 "Portage County, WI",55097,145600 "Porter County, IN",18127,165700 "Portsmouth city, VA",51740,175600 "Posey County, IN",18129,127900 "Pottawatomie County, KS",20149,153700 "Pottawatomie County, OK",40125,96400 "Pottawattamie County, IA",19155,126300 "Potter County, PA",42105,96500 "Potter County, SD",46107,60000 "Potter County, TX",48375,85900 "Powder River County, MT",30075,105200 "Powell County, KY",21197,77800 "Powell County, MT",30077,120900 "Power County, ID",16077,125600 "Poweshiek County, IA",19157,117600 "Powhatan County, VA",51145,269700 "Prairie County, AR",5117,72400 "Prairie County, MT",30079,69800 "Pratt County, KS",20151,79000 "Preble County, OH",39135,116700 "Prentiss County, MS",28117,73200 "Presidio County, TX",48377,48500 "Presque Isle County, MI",26141,95000 "Preston County, WV",54077,106300 "Price County, WI",55099,114100 "Prince Edward County, VA",51147,153400 "Prince George County, VA",51149,199600 "Prince George's County, MD",24033,269800 "Prince of Wales-Hyder Census Area, AK",2198,162500 "Prince William County, VA",51153,321400 "Providence County, RI",44007,224100 "Prowers County, CO",8099,86100 "Pueblo County, CO",8101,138700 "Pulaski County, AR",5119,140500 "Pulaski County, GA",13235,87300 "Pulaski County, IL",17153,55300 "Pulaski County, IN",18131,94900 "Pulaski County, KY",21199,106700 "Pulaski County, MO",29169,121600 "Pulaski County, VA",51155,133900 "Pushmataha County, OK",40127,71000 "Putnam County, FL",12107,89600 "Putnam County, GA",13237,140600 "Putnam County, IL",17155,126500 "Putnam County, IN",18133,125800 "Putnam County, MO",29171,100300 "Putnam County, NY",36079,372200 "Putnam County, OH",39137,133500 "Putnam County, TN",47141,135100 "Putnam County, WV",54079,142900 "Quay County, NM",35037,68900 "Queen Anne's County, MD",24035,348100 "Queens County, NY",36081,450900 "Quitman County, GA",13239,62300 "Quitman County, MS",28119,49200 "Rabun County, GA",13241,168300 "Racine County, WI",55101,170100 "Radford city, VA",51750,144000 "Rains County, TX",48379,96300 "Raleigh County, WV",54081,93900 "Ralls County, MO",29173,108400 "Ramsey County, MN",27123,198200 "Ramsey County, ND",38071,89600 "Randall County, TX",48381,141900 "Randolph County, AL",1111,88600 "Randolph County, AR",5121,74100 "Randolph County, GA",13243,70300 "Randolph County, IL",17157,92100 "Randolph County, IN",18135,76200 "Randolph County, MO",29175,84600 "Randolph County, NC",37151,121900 "Randolph County, WV",54083,99000 "Rankin County, MS",28121,148900 "Ransom County, ND",38073,87400 "Rapides Parish, LA",22079,120400 "Rappahannock County, VA",51157,394800 "Ravalli County, MT",30081,233700 "Rawlins County, KS",20153,66700 "Ray County, MO",29177,117600 "Reagan County, TX",48383,66200 "Real County, TX",48385,102200 "Red Lake County, MN",27125,87800 "Red River County, TX",48387,69200 "Red River Parish, LA",22081,78700 "Red Willow County, NE",31145,84200 "Redwood County, MN",27127,90500 "Reeves County, TX",48389,40100 "Refugio County, TX",48391,66300 "Reno County, KS",20155,90600 "Rensselaer County, NY",36083,178200 "Renville County, MN",27129,97600 "Renville County, ND",38075,95200 "Republic County, KS",20157,49200 "Reynolds County, MO",29179,86100 "Rhea County, TN",47143,104400 "Rice County, KS",20159,74200 "Rice County, MN",27131,187500 "Rich County, UT",49033,156600 "Richardson County, NE",31147,62600 "Richland County, IL",17159,78100 "Richland County, MT",30083,153000 "Richland County, ND",38077,101800 "Richland County, OH",39139,103500 "Richland County, SC",45079,149800 "Richland County, WI",55103,124000 "Richland Parish, LA",22083,76900 "Richmond city, VA",51760,196400 "Richmond County, GA",13245,100900 "Richmond County, NC",37153,77500 "Richmond County, NY",36085,441000 "Richmond County, VA",51159,155700 "Riley County, KS",20161,170400 "Ringgold County, IA",19159,78500 "Rio Arriba County, NM",35039,133300 "Rio Blanco County, CO",8103,200400 "Rio Grande County, CO",8105,129500 "Ripley County, IN",18137,132000 "Ripley County, MO",29181,76200 "Ritchie County, WV",54085,73400 "Riverside County, CA",6065,231000 "Roane County, TN",47145,120300 "Roane County, WV",54087,81900 "Roanoke city, VA",51770,134700 "Roanoke County, VA",51161,193700 "Roberts County, SD",46109,83000 "Roberts County, TX",48393,104600 "Robertson County, KY",21201,81900 "Robertson County, TN",47147,153100 "Robertson County, TX",48395,77400 "Robeson County, NC",37155,66800 "Rock County, MN",27133,119300 "Rock County, NE",31149,65200 "Rock County, WI",55105,133000 "Rock Island County, IL",17161,113800 "Rockbridge County, VA",51163,179500 "Rockcastle County, KY",21203,74800 "Rockdale County, GA",13247,149900 "Rockingham County, NC",37157,102900 "Rockingham County, NH",33015,282100 "Rockingham County, VA",51165,195300 "Rockland County, NY",36087,435300 "Rockwall County, TX",48397,187800 "Roger Mills County, OK",40129,81300 "Rogers County, OK",40131,143600 "Rolette County, ND",38079,63400 "Rooks County, KS",20163,62500 "Roosevelt County, MT",30085,70100 "Roosevelt County, NM",35041,111300 "Roscommon County, MI",26143,92000 "Roseau County, MN",27135,103800 "Rosebud County, MT",30087,110900 "Ross County, OH",39141,111100 "Routt County, CO",8107,390100 "Rowan County, KY",21205,96700 "Rowan County, NC",37159,130200 "Runnels County, TX",48399,59100 "Rush County, IN",18139,104700 "Rush County, KS",20165,57300 "Rusk County, TX",48401,93000 "Rusk County, WI",55107,106800 "Russell County, AL",1113,104400 "Russell County, KS",20167,65000 "Russell County, KY",21207,86600 "Russell County, VA",51167,91100 "Rutherford County, NC",37161,108600 "Rutherford County, TN",47149,159100 "Rutland County, VT",50021,176800 "Sabine County, TX",48403,69300 "Sabine Parish, LA",22085,75300 "Sac County, IA",19161,79700 "Sacramento County, CA",6067,234200 "Sagadahoc County, ME",23023,189700 "Saginaw County, MI",26145,97800 "Saguache County, CO",8109,135400 "Salem city, VA",51775,170300 "Salem County, NJ",34033,190200 "Saline County, AR",5125,138600 "Saline County, IL",17165,70500 "Saline County, KS",20169,119500 "Saline County, MO",29195,85700 "Saline County, NE",31151,94400 "Salt Lake County, UT",49035,232100 "Saluda County, SC",45081,90400 "Sampson County, NC",37163,89200 "San Augustine County, TX",48405,68100 "San Benito County, CA",6069,343000 "San Bernardino County, CA",6071,222300 "San Diego County, CA",6073,402100 "San Francisco County, CA",6075,744600 "San Jacinto County, TX",48407,88200 "San Joaquin County, CA",6077,208000 "San Juan County, CO",8111,242300 "San Juan County, NM",35045,148700 "San Juan County, UT",49037,127400 "San Juan County, WA",53055,472900 "San Luis Obispo County, CA",6079,426600 "San Mateo County, CA",6081,722200 "San Miguel County, CO",8113,448000 "San Miguel County, NM",35047,116700 "San Patricio County, TX",48409,89800 "San Saba County, TX",48411,71300 "Sanborn County, SD",46111,68200 "Sanders County, MT",30089,166500 "Sandoval County, NM",35043,180900 "Sandusky County, OH",39143,110400 "Sangamon County, IL",17167,126200 "Sanilac County, MI",26151,96500 "Sanpete County, UT",49039,164100 "Santa Barbara County, CA",6083,453000 "Santa Clara County, CA",6085,645600 "Santa Cruz County, AZ",4023,140000 "Santa Cruz County, CA",6087,557500 "Santa Fe County, NM",35049,278400 "Santa Rosa County, FL",12113,162300 "Sarasota County, FL",12115,175000 "Saratoga County, NY",36091,230700 "Sargent County, ND",38081,72500 "Sarpy County, NE",31153,162400 "Sauk County, WI",55111,168800 "Saunders County, NE",31155,147600 "Sawyer County, WI",55113,162500 "Schenectady County, NY",36093,166500 "Schleicher County, TX",48413,86400 "Schley County, GA",13249,93000 "Schoharie County, NY",36095,146000 "Schoolcraft County, MI",26153,86200 "Schuyler County, IL",17169,76600 "Schuyler County, MO",29197,73600 "Schuyler County, NY",36097,94400 "Schuylkill County, PA",42107,93500 "Scioto County, OH",39145,88200 "Scotland County, MO",29199,70900 "Scotland County, NC",37165,77100 "Scott County, AR",5127,82100 "Scott County, IA",19163,143600 "Scott County, IL",17171,82900 "Scott County, IN",18143,101400 "Scott County, KS",20171,104800 "Scott County, KY",21209,161300 "Scott County, MN",27139,244400 "Scott County, MO",29201,96600 "Scott County, MS",28123,68600 "Scott County, TN",47151,81500 "Scott County, VA",51169,91000 "Scotts Bluff County, NE",31157,102600 "Screven County, GA",13251,77000 "Scurry County, TX",48415,87200 "Searcy County, AR",5129,85100 "Sebastian County, AR",5131,114500 "Sedgwick County, CO",8115,81400 "Sedgwick County, KS",20173,124000 "Seminole County, FL",12117,184300 "Seminole County, GA",13253,71200 "Seminole County, OK",40133,70500 "Seneca County, NY",36099,94400 "Seneca County, OH",39147,97900 "Sequatchie County, TN",47153,119300 "Sequoyah County, OK",40135,85800 "Sevier County, AR",5133,68800 "Sevier County, TN",47155,159400 "Sevier County, UT",49041,151400 "Seward County, KS",20175,90000 "Seward County, NE",31159,142600 "Shackelford County, TX",48417,66200 "Shannon County, MO",29203,80300 "Shannon County, SD",46113,19900 "Sharkey County, MS",28125,64900 "Sharp County, AR",5135,73800 "Shasta County, CA",6089,220000 "Shawano County, WI",55115,129900 "Shawnee County, KS",20177,120300 "Sheboygan County, WI",55117,152300 "Shelby County, AL",1117,193000 "Shelby County, IA",19165,104700 "Shelby County, IL",17173,86100 "Shelby County, IN",18145,125000 "Shelby County, KY",21211,165000 "Shelby County, MO",29205,71500 "Shelby County, OH",39149,123400 "Shelby County, TN",47157,132700 "Shelby County, TX",48419,72000 "Shenandoah County, VA",51171,205300 "Sherburne County, MN",27141,193400 "Sheridan County, KS",20179,77900 "Sheridan County, MT",30091,109500 "Sheridan County, ND",38083,58300 "Sheridan County, NE",31161,65800 "Sheridan County, WY",56033,220400 "Sherman County, KS",20181,74200 "Sherman County, NE",31163,82000 "Sherman County, OR",41055,135400 "Sherman County, TX",48421,81900 "Shiawassee County, MI",26155,108300 "Shoshone County, ID",16079,123200 "Sibley County, MN",27143,136900 "Sierra County, CA",6091,231400 "Sierra County, NM",35051,93900 "Silver Bow County, MT",30093,121900 "Simpson County, KY",21213,115200 "Simpson County, MS",28127,80800 "Sioux County, IA",19167,131200 "Sioux County, ND",38085,70700 "Sioux County, NE",31165,86500 "Siskiyou County, CA",6093,200800 "Sitka City and Borough, AK",2220,323200 "Skagit County, WA",53057,261400 "Skagway Municipality, AK",2230,305600 "Skamania County, WA",53059,248200 "Slope County, ND",38087,61100 "Smith County, KS",20183,60800 "Smith County, MS",28129,77600 "Smith County, TN",47159,113800 "Smith County, TX",48423,120800 "Smyth County, VA",51173,91200 "Snohomish County, WA",53061,292500 "Snyder County, PA",42109,133700 "Socorro County, NM",35053,122800 "Solano County, CA",6095,262400 "Somerset County, MD",24039,153600 "Somerset County, ME",23025,111100 "Somerset County, NJ",34035,398800 "Somerset County, PA",42111,98400 "Somervell County, TX",48425,139900 "Sonoma County, CA",6097,407400 "Southampton County, VA",51175,150000 "Southeast Fairbanks Census Area, AK",2240,175000 "Spalding County, GA",13255,113900 "Spartanburg County, SC",45083,121300 "Spencer County, IN",18147,113300 "Spencer County, KY",21215,170300 "Spink County, SD",46115,64000 "Spokane County, WA",53063,184700 "Spotsylvania County, VA",51177,249100 "St. Bernard Parish, LA",22087,127200 "St. Charles County, MO",29183,189100 "St. Charles Parish, LA",22089,186400 "St. Clair County, AL",1115,134600 "St. Clair County, IL",17163,123700 "St. Clair County, MI",26147,121600 "St. Clair County, MO",29185,81600 "St. Croix County, WI",55109,206900 "St. Francis County, AR",5123,65600 "St. Francois County, MO",29187,98900 "St. Helena Parish, LA",22091,80600 "St. James Parish, LA",22093,125000 "St. John the Baptist Parish, LA",22095,149900 "St. Johns County, FL",12109,242900 "St. Joseph County, IN",18141,115100 "St. Joseph County, MI",26149,108900 "St. Landry Parish, LA",22097,83600 "St. Lawrence County, NY",36089,84400 "St. Louis city, MO",29510,119200 "St. Louis County, MN",27137,137500 "St. Louis County, MO",29189,174500 "St. Lucie County, FL",12111,122900 "St. Martin Parish, LA",22099,97300 "St. Mary Parish, LA",22101,88800 "St. Mary's County, MD",24037,304700 "St. Tammany Parish, LA",22103,194500 "Stafford County, KS",20185,60900 "Stafford County, VA",51179,299300 "Stanislaus County, CA",6099,172900 "Stanley County, SD",46117,110900 "Stanly County, NC",37167,125100 "Stanton County, KS",20187,81000 "Stanton County, NE",31167,98900 "Stark County, IL",17175,88300 "Stark County, ND",38089,166200 "Stark County, OH",39151,122400 "Starke County, IN",18149,96900 "Starr County, TX",48427,62900 "Staunton city, VA",51790,169400 "Ste. Genevieve County, MO",29186,121600 "Stearns County, MN",27145,167600 "Steele County, MN",27147,155400 "Steele County, ND",38091,73700 "Stephens County, GA",13257,106600 "Stephens County, OK",40137,89300 "Stephens County, TX",48429,72400 "Stephenson County, IL",17177,101800 "Sterling County, TX",48431,71900 "Steuben County, IN",18151,123000 "Steuben County, NY",36101,86800 "Stevens County, KS",20189,86200 "Stevens County, MN",27149,127500 "Stevens County, WA",53065,173500 "Stewart County, GA",13259,50600 "Stewart County, TN",47161,118900 "Stillwater County, MT",30095,185900 "Stoddard County, MO",29207,83800 "Stokes County, NC",37169,118100 "Stone County, AR",5137,88100 "Stone County, MO",29209,145000 "Stone County, MS",28131,107000 "Stonewall County, TX",48433,49900 "Storey County, NV",32029,167700 "Story County, IA",19169,162200 "Strafford County, NH",33017,220600 "Stutsman County, ND",38093,98600 "Sublette County, WY",56035,282800 "Suffolk city, VA",51800,242000 "Suffolk County, MA",25025,358700 "Suffolk County, NY",36103,383400 "Sullivan County, IN",18153,77600 "Sullivan County, MO",29211,74200 "Sullivan County, NH",33019,171700 "Sullivan County, NY",36105,172100 "Sullivan County, PA",42113,137000 "Sullivan County, TN",47163,121700 "Sully County, SD",46119,88200 "Summers County, WV",54089,79600 "Summit County, CO",8117,460000 "Summit County, OH",39153,135600 "Summit County, UT",49043,485700 "Sumner County, KS",20191,85500 "Sumner County, TN",47165,176600 "Sumter County, AL",1119,74100 "Sumter County, FL",12119,194100 "Sumter County, GA",13261,90300 "Sumter County, SC",45085,107300 "Sunflower County, MS",28133,69500 "Surry County, NC",37171,109900 "Surry County, VA",51181,161600 "Susquehanna County, PA",42115,139000 "Sussex County, DE",10005,236600 "Sussex County, NJ",34037,285800 "Sussex County, VA",51183,118000 "Sutter County, CA",6101,188500 "Sutton County, TX",48435,80700 "Suwannee County, FL",12121,98400 "Swain County, NC",37173,132500 "Sweet Grass County, MT",30097,192700 "Sweetwater County, WY",56037,177300 "Swift County, MN",27151,91700 "Swisher County, TX",48437,62600 "Switzerland County, IN",18155,110800 "Talbot County, GA",13263,76500 "Talbot County, MD",24041,327400 "Taliaferro County, GA",13265,68300 "Talladega County, AL",1121,92600 "Tallahatchie County, MS",28135,64000 "Tallapoosa County, AL",1123,94900 "Tama County, IA",19171,101300 "Taney County, MO",29213,129100 "Tangipahoa Parish, LA",22105,135400 "Taos County, NM",35055,204800 "Tarrant County, TX",48439,136400 "Tate County, MS",28137,112600 "Tattnall County, GA",13267,86100 "Taylor County, FL",12123,87400 "Taylor County, GA",13269,60800 "Taylor County, IA",19173,66400 "Taylor County, KY",21217,96800 "Taylor County, TX",48441,95800 "Taylor County, WI",55119,126100 "Taylor County, WV",54091,89900 "Tazewell County, IL",17179,132000 "Tazewell County, VA",51185,88000 "Tehama County, CA",6103,177100 "Telfair County, GA",13271,58300 "Teller County, CO",8119,226900 "Tensas Parish, LA",22107,58900 "Terrebonne Parish, LA",22109,131600 "Terrell County, GA",13273,78800 "Terrell County, TX",48443,57000 "Terry County, TX",48445,64900 "Teton County, ID",16081,222700 "Teton County, MT",30099,134700 "Teton County, WY",56039,660100 "Texas County, MO",29215,98000 "Texas County, OK",40139,89000 "Thayer County, NE",31169,61200 "Thomas County, GA",13275,127000 "Thomas County, KS",20193,97200 "Thomas County, NE",31171,79200 "Throckmorton County, TX",48447,57500 "Thurston County, NE",31173,68500 "Thurston County, WA",53067,244900 "Tift County, GA",13277,117300 "Tillamook County, OR",41057,226500 "Tillman County, OK",40141,52800 "Tioga County, NY",36107,108400 "Tioga County, PA",42117,116000 "Tippah County, MS",28139,74800 "Tippecanoe County, IN",18157,130900 "Tipton County, IN",18159,108300 "Tipton County, TN",47167,139100 "Tishomingo County, MS",28141,72900 "Titus County, TX",48449,91600 "Todd County, KY",21219,85000 "Todd County, MN",27153,130000 "Todd County, SD",46121,40200 "Tolland County, CT",9013,254800 "Tom Green County, TX",48451,99000 "Tompkins County, NY",36109,169200 "Tooele County, UT",49045,177500 "Toole County, MT",30101,106300 "Toombs County, GA",13279,88100 "Torrance County, NM",35057,105200 "Towner County, ND",38095,60600 "Towns County, GA",13281,164000 "Traill County, ND",38097,94400 "Transylvania County, NC",37175,171600 "Traverse County, MN",27155,66400 "Travis County, TX",48453,219200 "Treasure County, MT",30103,67500 "Trego County, KS",20195,74500 "Trempealeau County, WI",55121,135200 "Treutlen County, GA",13283,64300 "Trigg County, KY",21221,115000 "Trimble County, KY",21223,107300 "Trinity County, CA",6105,257400 "Trinity County, TX",48455,80100 "Tripp County, SD",46123,72200 "Troup County, GA",13285,121300 "Trousdale County, TN",47169,115500 "Trumbull County, OH",39155,97400 "Tucker County, WV",54093,105000 "Tulare County, CA",6107,163100 "Tulsa County, OK",40143,134100 "Tunica County, MS",28143,74000 "Tuolumne County, CA",6109,269400 "Turner County, GA",13287,83800 "Turner County, SD",46125,93200 "Tuscaloosa County, AL",1125,153300 "Tuscarawas County, OH",39157,108700 "Tuscola County, MI",26157,95700 "Twiggs County, GA",13289,54700 "Twin Falls County, ID",16083,148900 "Tyler County, TX",48457,75100 "Tyler County, WV",54095,78700 "Tyrrell County, NC",37177,107100 "Uinta County, WY",56041,181700 "Uintah County, UT",49047,187900 "Ulster County, NY",36111,232400 "Umatilla County, OR",41059,142700 "Unicoi County, TN",47171,115900 "Union County, AR",5139,75000 "Union County, FL",12125,89200 "Union County, GA",13291,198300 "Union County, IA",19175,91600 "Union County, IL",17181,87500 "Union County, IN",18161,103200 "Union County, KY",21225,74900 "Union County, MS",28145,85500 "Union County, NC",37179,194300 "Union County, NJ",34039,362300 "Union County, NM",35059,86500 "Union County, OH",39159,171800 "Union County, OR",41061,156600 "Union County, PA",42119,154300 "Union County, SC",45087,74000 "Union County, SD",46127,150300 "Union County, TN",47173,95800 "Union Parish, LA",22111,79700 "Upshur County, TX",48459,89400 "Upshur County, WV",54097,100500 "Upson County, GA",13293,86600 "Upton County, TX",48461,48500 "Utah County, UT",49049,222100 "Uvalde County, TX",48463,68600 "Val Verde County, TX",48465,91900 "Valdez-Cordova Census Area, AK",2261,177700 "Valencia County, NM",35061,133600 "Valley County, ID",16085,221200 "Valley County, MT",30105,102300 "Valley County, NE",31175,78100 "Van Buren County, AR",5141,86700 "Van Buren County, IA",19177,69700 "Van Buren County, MI",26159,118700 "Van Buren County, TN",47175,77400 "Van Wert County, OH",39161,88600 "Van Zandt County, TX",48467,96900 "Vance County, NC",37181,99600 "Vanderburgh County, IN",18163,112900 "Venango County, PA",42121,81000 "Ventura County, CA",6111,442200 "Vermilion County, IL",17183,75300 "Vermilion Parish, LA",22113,96400 "Vermillion County, IN",18165,75100 "Vernon County, MO",29217,83700 "Vernon County, WI",55123,138200 "Vernon Parish, LA",22115,90800 "Victoria County, TX",48469,110200 "Vigo County, IN",18167,91600 "Vilas County, WI",55125,186000 "Vinton County, OH",39163,75700 "Virginia Beach city, VA",51810,267600 "Volusia County, FL",12127,142800 "Wabash County, IL",17185,80900 "Wabash County, IN",18169,95000 "Wabasha County, MN",27157,154000 "Wabaunsee County, KS",20197,112200 "Wade Hampton Census Area, AK",2270,109300 "Wadena County, MN",27159,114600 "Wagoner County, OK",40145,138400 "Wahkiakum County, WA",53069,195600 "Wake County, NC",37183,229000 "Wakulla County, FL",12129,138300 "Waldo County, ME",23027,156000 "Walker County, AL",1127,82100 "Walker County, GA",13295,104700 "Walker County, TX",48471,109900 "Walla Walla County, WA",53071,195200 "Wallace County, KS",20199,61900 "Waller County, TX",48473,133400 "Wallowa County, OR",41063,199900 "Walsh County, ND",38099,68100 "Walthall County, MS",28147,85100 "Walton County, FL",12131,159500 "Walton County, GA",13297,157100 "Walworth County, SD",46129,73000 "Walworth County, WI",55127,194900 "Wapello County, IA",19179,78800 "Ward County, ND",38101,155800 "Ward County, TX",48475,57300 "Ware County, GA",13299,79600 "Warren County, GA",13301,66700 "Warren County, IA",19181,154100 "Warren County, IL",17187,81500 "Warren County, IN",18171,99500 "Warren County, KY",21227,140700 "Warren County, MO",29219,151300 "Warren County, MS",28149,103600 "Warren County, NC",37185,98300 "Warren County, NJ",34041,271100 "Warren County, NY",36113,189400 "Warren County, OH",39165,188500 "Warren County, PA",42123,88700 "Warren County, TN",47177,92400 "Warren County, VA",51187,219000 "Warrick County, IN",18173,146300 "Wasatch County, UT",49051,307600 "Wasco County, OR",41065,181600 "Waseca County, MN",27161,142700 "Washakie County, WY",56043,162600 "Washburn County, WI",55129,146000 "Washington County, AL",1129,83900 "Washington County, AR",5143,148800 "Washington County, CO",8121,110500 "Washington County, FL",12133,85900 "Washington County, GA",13303,82300 "Washington County, IA",19183,121800 "Washington County, ID",16087,122700 "Washington County, IL",17189,107900 "Washington County, IN",18175,101500 "Washington County, KS",20201,58300 "Washington County, KY",21229,107300 "Washington County, MD",24043,206100 "Washington County, ME",23029,103500 "Washington County, MN",27163,241900 "Washington County, MO",29221,73000 "Washington County, MS",28151,73700 "Washington County, NC",37187,89000 "Washington County, NE",31177,169700 "Washington County, NY",36115,148300 "Washington County, OH",39167,108600 "Washington County, OK",40147,111000 "Washington County, OR",41067,282400 "Washington County, PA",42125,143600 "Washington County, RI",44009,321900 "Washington County, TN",47179,145300 "Washington County, TX",48477,147800 "Washington County, UT",49053,212900 "Washington County, VA",51191,131500 "Washington County, VT",50023,205000 "Washington County, WI",55131,222900 "Washington Parish, LA",22117,81900 "Washita County, OK",40149,76500 "Washoe County, NV",32031,203300 "Washtenaw County, MI",26161,198400 "Watauga County, NC",37189,228700 "Watonwan County, MN",27165,95700 "Waukesha County, WI",55133,253800 "Waupaca County, WI",55135,136300 "Waushara County, WI",55137,136800 "Wayne County, GA",13305,80400 "Wayne County, IA",19185,62300 "Wayne County, IL",17191,75700 "Wayne County, IN",18177,94100 "Wayne County, KY",21231,80500 "Wayne County, MI",26163,86800 "Wayne County, MO",29223,75100 "Wayne County, MS",28153,68400 "Wayne County, NC",37191,108600 "Wayne County, NE",31179,103200 "Wayne County, NY",36117,109300 "Wayne County, OH",39169,135300 "Wayne County, PA",42127,179900 "Wayne County, TN",47181,74700 "Wayne County, UT",49055,173500 "Wayne County, WV",54099,79500 "Waynesboro city, VA",51820,165600 "Weakley County, TN",47183,88400 "Webb County, TX",48479,108800 "Weber County, UT",49057,170000 "Webster County, GA",13307,48800 "Webster County, IA",19187,84300 "Webster County, KY",21233,70500 "Webster County, MO",29225,116800 "Webster County, MS",28155,70900 "Webster County, NE",31181,67300 "Webster County, WV",54101,64100 "Webster Parish, LA",22119,79300 "Weld County, CO",8123,191500 "Wells County, IN",18179,112500 "Wells County, ND",38103,65700 "West Baton Rouge Parish, LA",22121,141900 "West Carroll Parish, LA",22123,68500 "West Feliciana Parish, LA",22125,196300 "Westchester County, NY",36119,518400 "Westmoreland County, PA",42129,133600 "Westmoreland County, VA",51193,180900 "Weston County, WY",56045,136000 "Wetzel County, WV",54103,79000 "Wexford County, MI",26165,100100 "Wharton County, TX",48481,95600 "Whatcom County, WA",53073,277000 "Wheatland County, MT",30107,78400 "Wheeler County, GA",13309,54200 "Wheeler County, NE",31183,87100 "Wheeler County, OR",41069,123700 "Wheeler County, TX",48483,76600 "White County, AR",5145,100100 "White County, GA",13311,169600 "White County, IL",17193,72200 "White County, IN",18181,109800 "White County, TN",47185,98000 "White Pine County, NV",32033,113800 "Whiteside County, IL",17195,99400 "Whitfield County, GA",13313,122800 "Whitley County, IN",18183,126300 "Whitley County, KY",21235,71500 "Whitman County, WA",53075,182300 "Wibaux County, MT",30109,102700 "Wichita County, KS",20203,71100 "Wichita County, TX",48485,89800 "Wicomico County, MD",24045,181900 "Wilbarger County, TX",48487,62000 "Wilcox County, AL",1131,67000 "Wilcox County, GA",13315,71200 "Wilkes County, GA",13317,95200 "Wilkes County, NC",37193,111700 "Wilkin County, MN",27167,107300 "Wilkinson County, GA",13319,71600 "Wilkinson County, MS",28157,59400 "Will County, IL",17197,219400 "Willacy County, TX",48489,48800 "Williams County, ND",38105,151400 "Williams County, OH",39171,98600 "Williamsburg city, VA",51830,311800 "Williamsburg County, SC",45089,67100 "Williamson County, IL",17199,93700 "Williamson County, TN",47187,334900 "Williamson County, TX",48491,178900 "Wilson County, KS",20205,63200 "Wilson County, NC",37195,111500 "Wilson County, TN",47189,190100 "Wilson County, TX",48493,143500 "Winchester city, VA",51840,224100 "Windham County, CT",9015,211100 "Windham County, VT",50025,206800 "Windsor County, VT",50027,216300 "Winkler County, TX",48495,45100 "Winn Parish, LA",22127,64300 "Winnebago County, IA",19189,91900 "Winnebago County, IL",17201,123400 "Winnebago County, WI",55139,141300 "Winneshiek County, IA",19191,151500 "Winona County, MN",27169,158000 "Winston County, AL",1133,82500 "Winston County, MS",28159,76300 "Wirt County, WV",54105,73100 "Wise County, TX",48497,121900 "Wise County, VA",51195,83900 "Wolfe County, KY",21237,52800 "Wood County, OH",39173,149500 "Wood County, TX",48499,99900 "Wood County, WI",55141,119300 "Wood County, WV",54107,106400 "Woodbury County, IA",19193,97900 "Woodford County, IL",17203,158600 "Woodford County, KY",21239,185900 "Woodruff County, AR",5147,58400 "Woods County, OK",40151,80700 "Woodson County, KS",20207,50900 "Woodward County, OK",40153,104300 "Worcester County, MA",25027,259200 "Worcester County, MD",24047,253400 "Worth County, GA",13321,75400 "Worth County, IA",19195,96900 "Worth County, MO",29227,57900 "Wrangell City and Borough, AK",2275,157400 "Wright County, IA",19197,71700 "Wright County, MN",27171,195000 "Wright County, MO",29229,86700 "Wyandot County, OH",39175,103500 "Wyandotte County, KS",20209,93800 "Wyoming County, NY",36121,100200 "Wyoming County, PA",42131,155100 "Wyoming County, WV",54109,57500 "Wythe County, VA",51197,112100 "Yadkin County, NC",37197,121100 "Yakima County, WA",53077,156300 "Yakutat City and Borough, AK",2282,147500 "Yalobusha County, MS",28161,67800 "Yamhill County, OR",41071,224900 "Yancey County, NC",37199,135100 "Yankton County, SD",46135,126700 "Yates County, NY",36123,118200 "Yavapai County, AZ",4025,184100 "Yazoo County, MS",28163,64100 "Yell County, AR",5149,91200 "Yellow Medicine County, MN",27173,97600 "Yellowstone County, MT",30111,181500 "Yoakum County, TX",48501,71100 "Yolo County, CA",6113,314300 "York County, ME",23031,227800 "York County, NE",31185,108500 "York County, PA",42133,174200 "York County, SC",45091,159300 "York County, VA",51199,316800 "Young County, TX",48503,84300 "Yuba County, CA",6115,171000 "Yukon-Koyukuk Census Area, AK",2290,106500 "Yuma County, AZ",4027,118000 "Yuma County, CO",8125,136600 "Zapata County, TX",48505,55700 "Zavala County, TX",48507,39900 "Ziebach County, SD",46137,70100 PKccIS`g,chorogrid/sample_data/sample_europe_data.csvCountry,abbrev2,abbrev3,Pct Internet users Albania,AL,ALB,60.10 Andorra,AD,AND,94.00 Austria,AT,AUT,86.80 Belarus,BY,BLR,54.20 Belgium,BE,BEL,90.40 Bosnia-Herzegovina,BA,BIH,67.90 Bulgaria,BG,BGR,59.00 Croatia,HR,HRV,70.90 Cyprus,CY,CYP,68.60 Czech Republic,CZ,CZE,78.30 Denmark,DK,DNK,97.30 Estonia,EE,EST,83.30 Faroe Islands,FO,FRO,90.00 Finland,FI,FIN,97.10 France,FR,FRA,83.30 Germany,DE,DEU,88.60 Gibraltar,GI,GIB,70.80 Greece,GR,GRC,59.90 Guernsey & Alderney,GG,GGY,73.30 Hungary,HU,HUN,74.50 Iceland,IS,ISL,96.50 Ireland,IE,IRL,79.00 Italy,IT,ITA,58.50 Jersey,JE,JEY,47.50 Kosovo,KR,KOR,76.60 Latvia,LV,LVA,75.20 Liechtenstein,LI,LIE,92.10 Lithuania,LT,LTU,68.50 Luxembourg,LU,LUX,98.00 Macedonia,MO,MAC,61.20 Malta,MT,MLT,68.90 "Man, Isle of",MT,MLT,45.40 Moldova,FM,FSM,48.80 Monaco,MC,MCO,92.60 Montenegro,ME,MNE,56.80 Netherlands,NL,NLD,95.70 Norway,NO,NOR,95.10 Poland,PL,POL,66.90 Portugal,PT,PRT,64.90 Romania,RO,ROU,51.40 Russia,RO,ROU,61.40 San Marino,SM,SMR,50.80 Serbia,RS,SRB,65.30 Slovakia,SK,SVK,82.10 Slovenia,SI,SVN,75.50 Spain,ES,ESP,74.80 Svalbard & Jan Mayen,SS,SSD, Sweden,SE,SWE,94.80 Switzerland,CH,CHE,89.10 Turkey,TR,TUR,56.70 Ukraine,UA,UKR,41.80 United Kingdom,GB,GBR,89.80 Vatican City State,VU,VUT,57.00 PKccI#*+chorogrid/sample_data/sample_state_data.csvstate,Percent_living_in_same_home_as_one_year_ago WY,81.8 WV,88.1 WI,85.8 WA,82.7 VT,86.6 VA,84.7 UT,82.8 TX,82.8 TN,84.6 SD,83.6 SC,84.7 RI,86.5 PA,88 OR,82 OK,82.5 OH,85.5 NY,88.8 NV,77.7 NM,85.3 NJ,90.1 NH,86.5 NE,83.3 ND,82.8 NC,84.7 MT,83.6 MS,85.8 MO,83.8 MN,85.6 MI,85.3 ME,86.4 MD,86.7 MA,86.7 LA,85.8 KY,84.8 KS,83.2 IN,84.9 IL,86.8 ID,82.8 IA,84.8 HI,84.9 GA,83.6 FL,83.7 DE,86.3 DC,80.6 CT,88 CO,80.7 CA,84.2 AZ,80.4 AR,83.6 AL,85 AK,80.3 PKccI\r'chorogrid/sample_data/state_flowers.csvState,Flower Alabama,Camellia Alaska,Forget-me-not Arizona,Saguaro cactus blossom Arkansas,Apple blossom California,California poppy Colorado,Rocky Mountain columbine Connecticut,Mountain laurel Delaware,Peach blossom Florida,Orange blossom Georgia,Cherokee rose Hawaii,Hawaiian hibiscus Idaho,"Syringa, mock orange" Illinois,Violet Indiana,Peony Iowa,Wild prairie rose Kansas,Sunflower Kentucky,Goldenrod Louisiana,Magnolia Maine,White pine cone and tassel Maryland,Black-eyed susan Massachusetts,Mayflower Michigan,Apple blossom Minnesota,Pink and white lady's slipper Mississippi,Magnolia Missouri,Hawthorn Montana,Bitterroot Nebraska,Goldenrod Nevada,Sagebrush New Hampshire,Purple lilac New Jersey,Violet New Mexico,Yucca flower New York,Rose North Carolina,Flowering dogwood North Dakota,Wild prairie rose Ohio,Scarlet carnation Oklahoma,Oklahoma rose Oregon,Oregon grape Pennsylvania,Mountain laurel Rhode Island,Violet South Carolina,Yellow jessamine South Dakota,Pasque flower Tennessee,Iris Texas,Bluebonnet Utah,Sego lily Vermont,Red clover Virginia,American dogwood Washington,Coast rhododendron West Virginia,Rhododendron Wisconsin,Wood violet Wyoming,Indian paintbrush PKccIDww%chorogrid/sample_data/state_trees.csvAlabama,Longleaf Pine Alaska,Sitka Spruce Arizona,Blue Palo Verde Arkansas,Loblolly Pine American Samoa,Pandanus California,Coast Redwood & Giant Sequoia Colorado,Colorado Blue Spruce Connecticut,"White Oak""See Also:Charter" District of Columbia,Scarlet Oak Delaware,American Holly Florida,Sabal Palm Georgia,Southern Live Oak Guam,Ipil Hawaii,Candlenut Tree Idaho,Western White Pine Illinois,White Oak Indiana,Tulip Tree Iowa,Bur Oak Kansas,Eastern Cottonwood Kentucky,Tulip-tree Louisiana,Bald Cypress Maine,Eastern White Pine Maryland,White Oak Massachusetts,American Elm Michigan,Eastern White Pine Minnesota,Red Pine Mississippi,Southern Magnolia Missouri,Flowering Dogwood Montana,Ponderosa Pine Nebraska,Eastern Cottonwood Nevada,Single-leaf Pinyon & Bristlecone pine New Hampshire,American White Birch New Jersey,Northern Red Oak New Mexico,Pion Pine New York,Sugar Maple North Carolina,Longleaf Pine North Dakota,American Elm Northern Marianas,Flame Tree Ohio,Ohio Buckeye Oklahoma,Eastern Redbud Oregon,Douglas-fir Pennsylvania,Eastern Hemlock Puerto Rico,Silk-cotton Tree Rhode Island,Red Maple South Carolina,Sabal Palm South Dakota,Black Hills Spruce Tennessee,Tulip-tree Texas,Pecan US Virgin Islands,Yellow Elder Utah,Quaking Aspen Vermont,Sugar Maple Virginia,Flowering dogwood Washington,Western Hemlock West Virginia,Sugar Maple Wisconsin,Sugar Maple Wyoming,Plains Cottonwood PK!H|&Ubchorogrid-0.0.1.dist-info/WHEEL HM K-*ϳR03rOK-J,/RH,Q034 /, (-JLR()*M ILR(4KM̫#DPK!H"chorogrid-0.0.1.dist-info/METADATATnA+PX((A!"1P y|α]! -@oHٳPQQ;{oާ# ;" n /q(Lo%1flB5 %[SUP99-Pz@;5;Q^[+`lWa!* e=Ls6GyB$F;A#%ɵgU^"ړ Z2-`mŻ$%9aʐLjwa+2 vbj] mPAŇ֪]48ZCiGoD w@a5X+Ʌ7hha9;)1VxN|;P*Z>8 캱* ˁM%HB8JBÒ Kk't9~ 0%u]8 `d-_:2Z*vk]bE_DeKAFSvqO y;6b6W2bqDh4>)|t؅O \~hќl^z}þ}PȒHOIC; ͛Yyټ\R~~}[U)ѲvZRYZ.gZwRث3a.<<@뢌uQo7*lIPK!H Mm chorogrid-0.0.1.dist-info/RECORDrHE-EbZILɌ }}\hlu22#Ή%k.NO3D_+diQp/˳?P̶:n5S .=$ @H} 5eydWMnJ`b>\L.BԨKh9wWZXՙ(:m=h ^ `X0 PCTI*ǼN,)Kj.E:V9p/ W֡ms cbS Nz1aCu MQ,uG׫e7$J%ͭ1WbsS,v@Ґ~Eك?X,\`3@8%5eEU,6o <._EObe!Xv@IZ&clFN7e^~C JA*LZ:Emu_ȭGĊ.Xv>99)6GspeIA=:𮫗,Ԙ7D>("IwL7zf8R9k'51qi GTMto dx gqTv5dru pC2_-q[7PKccIhgchorogrid/Chorogrid.pyPKccI9Ychorogrid/Colorbin.pyPKecI=chorogrid/__init__.pyPKccI$KK. chorogrid/databases/canada_federal_ridings.csvPKccI;:eeB'chorogrid/databases/canada_federal_ridings_column_descriptions.txtPKccIft1{{(*chorogrid/databases/canada_provinces.csvPKccI㎢<_-chorogrid/databases/canada_provinces_column_descriptions.txtPKccI *66(W/chorogrid/databases/europe_countries.csvPKccIeAo<ffchorogrid/databases/europe_countries_column_descriptions.txtPKccI}㰝 $Xichorogrid/databases/usa_counties.csvPKccI2bb8Jchorogrid/databases/usa_counties_column_descriptions.txtPKccI+g/ chorogrid/databases/usa_counties_statelines.txtPKccIWp"chorogrid/databases/usa_states.csvPKccISOP6?chorogrid/databases/usa_states_column_descriptions.txtPKccIU8f .chorogrid/sample_data/TRANSPOSITION_338FED.csvPKccI$,chorogrid/sample_data/sample_county_data.csvPKccIS`g,chorogrid/sample_data/sample_europe_data.csvPKccI#*+Ċchorogrid/sample_data/sample_state_data.csvPKccI\r'όchorogrid/sample_data/state_flowers.csvPKccIDww%chorogrid/sample_data/state_trees.csvPK!H|&Ubmchorogrid-0.0.1.dist-info/WHEELPK!H"chorogrid-0.0.1.dist-info/METADATAPK!H Mm chorogrid-0.0.1.dist-info/RECORDPK