summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-10-08 12:09:20 -0400
committerJesse Luehrs <doy@tozt.net>2023-10-08 12:59:10 -0400
commit49570c8dd03448240897b37b68567352b790f16f (patch)
tree6c192a52046d5d0dd1b84a838befd8e777cfeafb /bin
parent66939c71da756c1d9e07a88a4a8ea2a018650060 (diff)
downloadconf-49570c8dd03448240897b37b68567352b790f16f.tar.gz
conf-49570c8dd03448240897b37b68567352b790f16f.zip
convert to stow
Diffstat (limited to 'bin')
l---------bin/ag1
-rwxr-xr-xbin/clean-vim-undo13
-rwxr-xr-xbin/cryptdir40
-rwxr-xr-xbin/cryptoloop30
-rwxr-xr-xbin/files-between14
-rwxr-xr-xbin/fm22avi8
-rwxr-xr-xbin/git/git-amend13
-rwxr-xr-xbin/git/git-blame-stats37
-rwxr-xr-xbin/git/git-default-branch4
-rwxr-xr-xbin/git/git-file-size5
-rw-r--r--bin/git/git-imerge4135
-rwxr-xr-xbin/git/git-pr5
-rwxr-xr-xbin/git/git-record13
-rwxr-xr-xbin/git/git-root9
-rwxr-xr-xbin/history-stats51
-rwxr-xr-xbin/hornet/backlight47
-rwxr-xr-xbin/hornet/i3-switch-workspace137
-rwxr-xr-xbin/hornet/import10
-rwxr-xr-xbin/hornet/kill-focused49
-rwxr-xr-xbin/hornet/numkeys57
-rwxr-xr-xbin/hornet/p5
-rwxr-xr-xbin/hornet/sc19
l---------bin/hornet/scp1
-rwxr-xr-xbin/hornet/setup-inputs18
l---------bin/hornet/sftp1
-rwxr-xr-xbin/hornet/ssh6
-rwxr-xr-xbin/hornet/ssh-askpass5
-rwxr-xr-xbin/hornet/status276
-rwxr-xr-xbin/hornet/sudo5
-rwxr-xr-xbin/hornet/sudo-askpass5
-rwxr-xr-xbin/hornet/svdisable10
-rwxr-xr-xbin/hornet/svdn29
-rwxr-xr-xbin/hornet/svget5
-rwxr-xr-xbin/hornet/svkill6
-rwxr-xr-xbin/hornet/svlog5
-rwxr-xr-xbin/hornet/svre6
-rwxr-xr-xbin/hornet/svst5
-rwxr-xr-xbin/hornet/svstop6
-rwxr-xr-xbin/hornet/svup6
-rwxr-xr-xbin/hornet/tv15
-rwxr-xr-xbin/hornet/twitch9
-rwxr-xr-xbin/hornet/update-weather6
-rwxr-xr-xbin/hornet/volume45
-rwxr-xr-xbin/hornet/vscreen16
-rwxr-xr-xbin/hornet/watch-kbd14
-rwxr-xr-xbin/hornet/weather33304
-rwxr-xr-xbin/hornet/webcam5
-rwxr-xr-xbin/hostcert8
-rw-r--r--bin/local/.gitignore2
-rwxr-xr-xbin/mbsyncloop307
-rwxr-xr-xbin/mem-usage5
l---------bin/mz-doy1/backlight1
l---------bin/mz-doy1/i3-switch-workspace1
l---------bin/mz-doy1/kill-focused1
l---------bin/mz-doy1/numkeys1
l---------bin/mz-doy1/sc1
l---------bin/mz-doy1/setup-inputs1
l---------bin/mz-doy1/status1
l---------bin/mz-doy1/svdisable1
l---------bin/mz-doy1/svdn1
l---------bin/mz-doy1/svget1
l---------bin/mz-doy1/svkill1
l---------bin/mz-doy1/svlog1
l---------bin/mz-doy1/svre1
l---------bin/mz-doy1/svst1
l---------bin/mz-doy1/svstop1
l---------bin/mz-doy1/svup1
l---------bin/mz-doy1/volume1
l---------bin/mz-doy1/watch-kbd1
-rwxr-xr-xbin/nopaste37
-rwxr-xr-xbin/on-lock6
-rwxr-xr-xbin/pacman-dump6
-rwxr-xr-xbin/pdfcat7
-rwxr-xr-xbin/pick-music6
-rwxr-xr-xbin/rand-music13
-rwxr-xr-xbin/reply10
-rwxr-xr-xbin/rg7
-rwxr-xr-xbin/ringtone20
-rwxr-xr-xbin/scanpdf4
-rwxr-xr-xbin/scratch5
-rwxr-xr-xbin/set-mac10
-rwxr-xr-xbin/show-colors29
-rwxr-xr-xbin/smt9
-rwxr-xr-xbin/sum8
-rwxr-xr-xbin/tmux-clipboard74
-rwxr-xr-xbin/tozt/learn_spam38
-rwxr-xr-xbin/update-addressbook276
-rwxr-xr-xbin/vimmanpager15
-rwxr-xr-xbin/web11
89 files changed, 0 insertions, 39442 deletions
diff --git a/bin/ag b/bin/ag
deleted file mode 120000
index 5b2ddf3..0000000
--- a/bin/ag
+++ /dev/null
@@ -1 +0,0 @@
-rg \ No newline at end of file
diff --git a/bin/clean-vim-undo b/bin/clean-vim-undo
deleted file mode 100755
index efcd3aa..0000000
--- a/bin/clean-vim-undo
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-
-my $undodir = "$ENV{HOME}/.cache/vim/undo";
-opendir my $undo, $undodir
- or die "can't open $undodir: $!";
-
-for my $undofile (readdir($undo)) {
- next unless -f "$undodir/$undofile";
- (my $file = $undofile) =~ s{%}{/}g;
- unlink "$undodir/$undofile" unless -e $file && $file =~ m{^/};
-}
diff --git a/bin/cryptdir b/bin/cryptdir
deleted file mode 100755
index eb63300..0000000
--- a/bin/cryptdir
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-if [ -e /dev/mapper/cryptdir ]; then
- echo "only one instance can run at a time" 1>&2
- exit 1
-fi
-
-sudo -v || exit 1
-
-if [ -z "${1:-}" ]; then
- size='16M'
-else
- size=$1
-fi
-
-cryptfile=$(mktemp)
-cryptdir=$(mktemp -d)
-pass=$(dd if=/dev/urandom bs=1 count=80 | base64)
-
-cleanup() {
- set +e
- cd
- sudo umount "$cryptdir"
- sudo cryptsetup close cryptdir
- rm -f "$cryptfile"
- rmdir "$cryptdir"
-}
-
-trap cleanup EXIT
-
-dd if=/dev/urandom of="$cryptfile" bs="$size" count=1
-echo "$pass" | sudo cryptsetup luksFormat "$cryptfile" -
-echo "$pass" | sudo cryptsetup open "$cryptfile" cryptdir --key-file -
-sudo mkfs.ext2 /dev/mapper/cryptdir
-sudo mount /dev/mapper/cryptdir "$cryptdir"
-sudo chown "$USER" "$cryptdir"
-cd "$cryptdir"
-$SHELL
diff --git a/bin/cryptoloop b/bin/cryptoloop
deleted file mode 100755
index 493c74e..0000000
--- a/bin/cryptoloop
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-set -eu
-
-command="$1"
-name="$2"
-file="${HOME}/crypt/${name}.luks"
-dev="/dev/mapper/$name"
-
-case "$command" in
-create)
- size=$3
- count=${4:-1}
- dd if=/dev/urandom of="$file" bs="$size" count="$count" iflag=fullblock
- sudo cryptsetup luksFormat "$file"
- sudo cryptsetup open "$file" "$name"
- sudo mkfs.ext4 "$dev"
- sudo mount "$dev" /mnt
- sudo chown "$USER" /mnt
- sudo umount /mnt
- sudo cryptsetup close "$name"
- ;;
-open)
- sudo cryptsetup open "$file" "$name"
- sudo mount "$dev" /mnt
- ;;
-close)
- sudo umount /mnt
- sudo cryptsetup close "$name"
- ;;
-esac
diff --git a/bin/files-between b/bin/files-between
deleted file mode 100755
index 634b61c..0000000
--- a/bin/files-between
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-use File::Basename;
-
-my $first = $ARGV[0];
-my $second = $ARGV[1];
-
-my $dirname = dirname($first);
-die unless $dirname eq dirname($second);
-
-say for grep { /^\Q$first\E$/../^\Q$second\E$/ } sort <$dirname/*>;
diff --git a/bin/fm22avi b/bin/fm22avi
deleted file mode 100755
index eebfb4f..0000000
--- a/bin/fm22avi
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-set -eu
-set -o pipefail
-
-movie="$1"
-rom="$2"
-
-fceux --playmov "$movie" --sound 1 --soundq 1 --soundrate 48000 --nospritelim 1 --pal 0 --xscale 1 --yscale 1 --opengl 0 --special 0 "$rom" --videolog "mencoder - -o ${movie/.fm2/.avi} -ovc x264 -x264encopts qp=0 -oac mp3lame -lameopts mode=3:preset=128 -noskip -nocache -mc 0 -aspect 4/3 NESVSETTINGS"
diff --git a/bin/git/git-amend b/bin/git/git-amend
deleted file mode 100755
index 3b937ec..0000000
--- a/bin/git/git-amend
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -eu
-
-if [ -e "$(git root)/.git/branchless" ]; then
- exec git branchless amend "$@"
-else
- if [ "${1:-}" = "-i" ]; then
- git add -p
- else
- git add -u
- fi
- git commit --amend
-fi
diff --git a/bin/git/git-blame-stats b/bin/git/git-blame-stats
deleted file mode 100755
index 320d755..0000000
--- a/bin/git/git-blame-stats
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/perl
-
-use Getopt::Long;
-use POSIX qw(ceil);
-use strict;
-Getopt::Long::Configure(qw(bundling));
-my %authors;
-my $total;
-my $files;
-my $rev = shift(@ARGV) || "HEAD";
-
-foreach my $file (`git ls-tree --name-only -r $rev`) {
- chomp($file);
- print STDERR "Processing $file\n";
- foreach my $line (`git blame -M -w $rev -- "$file"`) {
- chomp($line);
- if (substr($line, 0, 1) eq "^") {
- ++$authors{"*initial checkin"};
- } else {
- $line =~ s[^.*?\((.*?)\s*\d{4}-\d{2}-\d{2}.*][$1];
- ++$authors{$line};
- }
- ++$total;
- }
-}
-
-print "Total lines: $total\n";
-my $i = 0;
-my $author_ind = ceil(log(scalar(keys %authors)) / log(10));
-my $lines_ind = ceil(log($total) / log(10));
-foreach my $author (sort { $authors{$b} <=> $authors{$a} } keys %authors) {
- printf "%${author_ind}s %${lines_ind}u %5.2f%% %s\n",
- sprintf("#%u", ++$i),
- $authors{$author},
- $authors{$author} * 100 / $total,
- $author;
-}
diff --git a/bin/git/git-default-branch b/bin/git/git-default-branch
deleted file mode 100755
index 90e225f..0000000
--- a/bin/git/git-default-branch
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-set -eu
-
-git symbolic-ref refs/remotes/origin/HEAD | sed 's/.*\///'
diff --git a/bin/git/git-file-size b/bin/git/git-file-size
deleted file mode 100755
index 0e7d00d..0000000
--- a/bin/git/git-file-size
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-git ls-files -z | xargs -0 du -b | sum
diff --git a/bin/git/git-imerge b/bin/git/git-imerge
deleted file mode 100644
index b903539..0000000
--- a/bin/git/git-imerge
+++ /dev/null
@@ -1,4135 +0,0 @@
-#! /usr/bin/env python
-# -*- coding: utf-8 -*-
-
-# Copyright 2012-2013 Michael Haggerty <mhagger@alum.mit.edu>
-#
-# This file is part of git-imerge.
-#
-# git-imerge is free software: you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation, either version 2 of the
-# License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see
-# <http://www.gnu.org/licenses/>.
-
-r"""Git incremental merge
-
-Perform the merge between two branches incrementally. If conflicts
-are encountered, figure out exactly which pairs of commits conflict,
-and present the user with one pairwise conflict at a time for
-resolution.
-
-Multiple incremental merges can be in progress at the same time. Each
-incremental merge has a name, and its progress is recorded in the Git
-repository as references under 'refs/imerge/NAME'.
-
-An incremental merge can be interrupted and resumed arbitrarily, or
-even pushed to a server to allow somebody else to work on it.
-
-
-Instructions:
-
-To start an incremental merge or rebase, use one of the following
-commands:
-
- git-imerge merge BRANCH
- Analogous to "git merge BRANCH"
-
- git-imerge rebase BRANCH
- Analogous to "git rebase BRANCH"
-
- git-imerge drop [commit | commit1..commit2]
- Drop the specified commit(s) from the current branch
-
- git-imerge revert [commit | commit1..commit2]
- Revert the specified commits by adding new commits that
- reverse their effects
-
- git-imerge start --name=NAME --goal=GOAL BRANCH
- Start a general imerge
-
-Then the tool will present conflicts to you one at a time, similar to
-"git rebase --incremental". Resolve each conflict, and then
-
- git add FILE...
- git-imerge continue
-
-You can view your progress at any time with
-
- git-imerge diagram
-
-When you have resolved all of the conflicts, simplify and record the
-result by typing
-
- git-imerge finish
-
-To get more help about any git-imerge subcommand, type
-
- git-imerge SUBCOMMAND --help
-
-"""
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-from __future__ import unicode_literals
-
-import locale
-import sys
-import re
-import subprocess
-from subprocess import CalledProcessError
-from subprocess import check_call
-import itertools
-import argparse
-from io import StringIO
-import json
-import os
-
-
-PREFERRED_ENCODING = locale.getpreferredencoding()
-
-
-# Define check_output() for ourselves, including decoding of the
-# output into PREFERRED_ENCODING:
-def check_output(*popenargs, **kwargs):
- if 'stdout' in kwargs:
- raise ValueError('stdout argument not allowed, it will be overridden.')
- process = subprocess.Popen(stdout=subprocess.PIPE, *popenargs, **kwargs)
- output = communicate(process)[0]
- retcode = process.poll()
- if retcode:
- cmd = kwargs.get("args")
- if cmd is None:
- cmd = popenargs[0]
- # We don't store output in the CalledProcessError because
- # the "output" keyword parameter was not supported in
- # Python 2.6:
- raise CalledProcessError(retcode, cmd)
- return output
-
-
-STATE_VERSION = (1, 3, 0)
-
-ZEROS = '0' * 40
-
-ALLOWED_GOALS = [
- 'full',
- 'rebase',
- 'rebase-with-history',
- 'border',
- 'border-with-history',
- 'border-with-history2',
- 'merge',
- 'drop',
- 'revert',
- ]
-DEFAULT_GOAL = 'merge'
-
-
-class Failure(Exception):
- """An exception that indicates a normal failure of the script.
-
- Failures are reported at top level via sys.exit(str(e)) rather
- than via a Python stack dump."""
-
- pass
-
-
-class AnsiColor:
- BLACK = '\033[0;30m'
- RED = '\033[0;31m'
- GREEN = '\033[0;32m'
- YELLOW = '\033[0;33m'
- BLUE = '\033[0;34m'
- MAGENTA = '\033[0;35m'
- CYAN = '\033[0;36m'
- B_GRAY = '\033[0;37m'
- D_GRAY = '\033[1;30m'
- B_RED = '\033[1;31m'
- B_GREEN = '\033[1;32m'
- B_YELLOW = '\033[1;33m'
- B_BLUE = '\033[1;34m'
- B_MAGENTA = '\033[1;35m'
- B_CYAN = '\033[1;36m'
- WHITE = '\033[1;37m'
- END = '\033[0m'
-
- @classmethod
- def disable(cls):
- cls.BLACK = ''
- cls.RED = ''
- cls.GREEN = ''
- cls.YELLOW = ''
- cls.BLUE = ''
- cls.MAGENTA = ''
- cls.CYAN = ''
- cls.B_GRAY = ''
- cls.D_GRAY = ''
- cls.B_RED = ''
- cls.B_GREEN = ''
- cls.B_YELLOW = ''
- cls.B_BLUE = ''
- cls.B_MAGENTA = ''
- cls.B_CYAN = ''
- cls.WHITE = ''
- cls.END = ''
-
-
-def iter_neighbors(iterable):
- """For an iterable (x0, x1, x2, ...) generate [(x0,x1), (x1,x2), ...]."""
-
- i = iter(iterable)
-
- try:
- last = next(i)
- except StopIteration:
- return
-
- for x in i:
- yield (last, x)
- last = x
-
-
-def find_first_false(f, lo, hi):
- """Return the smallest i in lo <= i < hi for which f(i) returns False using bisection.
-
- If there is no such i, return hi.
-
- """
-
- # Loop invariant: f(i) returns True for i < lo; f(i) returns False
- # for i >= hi.
-
- while lo < hi:
- mid = (lo + hi) // 2
- if f(mid):
- lo = mid + 1
- else:
- hi = mid
-
- return lo
-
-
-def call_silently(cmd):
- try:
- NULL = open(os.devnull, 'w')
- except (IOError, AttributeError):
- NULL = subprocess.PIPE
-
- p = subprocess.Popen(cmd, stdout=NULL, stderr=NULL)
- p.communicate()
- retcode = p.wait()
- if retcode:
- raise CalledProcessError(retcode, cmd)
-
-
-def communicate(process, input=None):
- """Return decoded output from process."""
- if input is not None:
- input = input.encode(PREFERRED_ENCODING)
-
- output, error = process.communicate(input)
-
- output = None if output is None else output.decode(PREFERRED_ENCODING)
- error = None if error is None else error.decode(PREFERRED_ENCODING)
-
- return (output, error)
-
-
-if sys.hexversion < 0x03000000:
- # In Python 2.x, os.environ keys and values must be byte
- # strings:
- def env_encode(s):
- """Encode unicode keys or values for use in os.environ."""
-
- return s.encode(PREFERRED_ENCODING)
-
-else:
- # In Python 3.x, os.environ keys and values must be unicode
- # strings:
- def env_encode(s):
- """Use unicode keys or values unchanged in os.environ."""
-
- return s
-
-
-class UncleanWorkTreeError(Failure):
- pass
-
-
-class AutomaticMergeFailed(Exception):
- def __init__(self, commit1, commit2):
- Exception.__init__(
- self, 'Automatic merge of %s and %s failed' % (commit1, commit2,)
- )
- self.commit1, self.commit2 = commit1, commit2
-
-
-class InvalidBranchNameError(Failure):
- pass
-
-
-class NotFirstParentAncestorError(Failure):
- def __init__(self, commit1, commit2):
- Failure.__init__(
- self,
- 'Commit "%s" is not a first-parent ancestor of "%s"'
- % (commit1, commit2),
- )
-
-
-class NonlinearAncestryError(Failure):
- def __init__(self, commit1, commit2):
- Failure.__init__(
- self,
- 'The history "%s..%s" is not linear'
- % (commit1, commit2),
- )
-
-
-class NothingToDoError(Failure):
- def __init__(self, src_tip, dst_tip):
- Failure.__init__(
- self,
- 'There are no commits on "%s" that are not already in "%s"'
- % (src_tip, dst_tip),
- )
-
-
-class GitTemporaryHead(object):
- """A context manager that records the current HEAD state then restores it.
-
- This should only be used when the working copy is clean. message
- is used for the reflog.
-
- """
-
- def __init__(self, git, message):
- self.git = git
- self.message = message
-
- def __enter__(self):
- self.head_name = self.git.get_head_refname()
- return self
-
- def __exit__(self, exc_type, exc_val, exc_tb):
- if self.head_name:
- try:
- self.git.restore_head(self.head_name, self.message)
- except CalledProcessError as e:
- raise Failure(
- 'Could not restore HEAD to %r!: %s\n'
- % (self.head_name, e.message,)
- )
-
- return False
-
-
-class GitRepository(object):
- BRANCH_PREFIX = 'refs/heads/'
-
- MERGE_STATE_REFNAME_RE = re.compile(
- r"""
- ^
- refs\/imerge\/
- (?P<name>.+)
- \/state
- $
- """,
- re.VERBOSE,
- )
-
- def __init__(self):
- self.git_dir_cache = None
-
- def git_dir(self):
- if self.git_dir_cache is None:
- self.git_dir_cache = check_output(
- ['git', 'rev-parse', '--git-dir']
- ).rstrip('\n')
-
- return self.git_dir_cache
-
- def check_imerge_name_format(self, name):
- """Check that name is a valid imerge name."""
-
- try:
- call_silently(
- ['git', 'check-ref-format', 'refs/imerge/%s' % (name,)]
- )
- except CalledProcessError:
- raise Failure('Name %r is not a valid refname component!' % (name,))
-
- def check_branch_name_format(self, name):
- """Check that name is a valid branch name."""
-
- try:
- call_silently(
- ['git', 'check-ref-format', 'refs/heads/%s' % (name,)]
- )
- except CalledProcessError:
- raise InvalidBranchNameError('Name %r is not a valid branch name!' % (name,))
-
- def iter_existing_imerge_names(self):
- """Iterate over the names of existing MergeStates in this repo."""
-
- for line in check_output(['git', 'for-each-ref', 'refs/imerge']).splitlines():
- (sha1, type, refname) = line.split()
- if type == 'blob':
- m = GitRepository.MERGE_STATE_REFNAME_RE.match(refname)
- if m:
- yield m.group('name')
-
- def set_default_imerge_name(self, name):
- """Set the default merge to the specified one.
-
- name can be None to cause the default to be cleared."""
-
- if name is None:
- try:
- check_call(['git', 'config', '--unset', 'imerge.default'])
- except CalledProcessError as e:
- if e.returncode == 5:
- # Value was not set
- pass
- else:
- raise
- else:
- check_call(['git', 'config', 'imerge.default', name])
-
- def get_default_imerge_name(self):
- """Get the name of the default merge, or None if it is currently unset."""
-
- try:
- return check_output(['git', 'config', 'imerge.default']).rstrip()
- except CalledProcessError:
- return None
-
- def get_default_edit(self):
- """Should '--edit' be used when committing intermediate user merges?
-
- When 'git imerge continue' or 'git imerge record' finds a user
- merge that can be committed, should it (by default) ask the user
- to edit the commit message? This behavior can be configured via
- 'imerge.editmergemessages'. If it is not configured, return False.
-
- Please note that this function is only used to choose the default
- value. It can be overridden on the command line using '--edit' or
- '--no-edit'.
-
- """
-
- try:
- return {'true' : True, 'false' : False}[
- check_output(
- ['git', 'config', '--bool', 'imerge.editmergemessages']
- ).rstrip()
- ]
- except CalledProcessError:
- return False
-
- def unstaged_changes(self):
- """Return True iff there are unstaged changes in the working copy"""
-
- try:
- check_call(['git', 'diff-files', '--quiet', '--ignore-submodules'])
- return False
- except CalledProcessError:
- return True
-
- def uncommitted_changes(self):
- """Return True iff the index contains uncommitted changes."""
-
- try:
- check_call([
- 'git', 'diff-index', '--cached', '--quiet',
- '--ignore-submodules', 'HEAD', '--',
- ])
- return False
- except CalledProcessError:
- return True
-
- def get_commit_sha1(self, arg):
- """Convert arg into a SHA1 and verify that it refers to a commit.
-
- If not, raise ValueError."""
-
- try:
- return self.rev_parse('%s^{commit}' % (arg,))
- except CalledProcessError:
- raise ValueError('%r does not refer to a valid git commit' % (arg,))
-
- def refresh_index(self):
- process = subprocess.Popen(
- ['git', 'update-index', '-q', '--ignore-submodules', '--refresh'],
- stdout=subprocess.PIPE, stderr=subprocess.PIPE,
- )
- out, err = communicate(process)
- retcode = process.poll()
- if retcode:
- raise UncleanWorkTreeError(err.rstrip() or out.rstrip())
-
- def verify_imerge_name_available(self, name):
- self.check_imerge_name_format(name)
- if check_output(['git', 'for-each-ref', 'refs/imerge/%s' % (name,)]):
- raise Failure('Name %r is already in use!' % (name,))
-
- def check_imerge_exists(self, name):
- """Verify that a MergeState with the given name exists.
-
- Just check for the existence, readability, and compatible
- version of the 'state' reference. If the reference doesn't
- exist, just return False. If it exists but is unusable for
- some other reason, raise an exception."""
-
- self.check_imerge_name_format(name)
- state_refname = 'refs/imerge/%s/state' % (name,)
- for line in check_output(['git', 'for-each-ref', state_refname]).splitlines():
- (sha1, type, refname) = line.split()
- if refname == state_refname and type == 'blob':
- self.read_imerge_state_dict(name)
- # If that didn't throw an exception:
- return True
- else:
- return False
-
- def read_imerge_state_dict(self, name):
- state_string = check_output(
- ['git', 'cat-file', 'blob', 'refs/imerge/%s/state' % (name,)],
- )
- state = json.loads(state_string)
-
- # Convert state['version'] to a tuple of integers, and verify
- # that it is compatible with this version of the script:
- version = tuple(int(i) for i in state['version'].split('.'))
- if version[0] != STATE_VERSION[0] or version[1] > STATE_VERSION[1]:
- raise Failure(
- 'The format of imerge %s (%s) is not compatible with this script version.'
- % (name, state['version'],)
- )
- state['version'] = version
-
- return state
-
- def read_imerge_state(self, name):
- """Read the state associated with the specified imerge.
-
- Return the tuple
-
- (state_dict, {(i1, i2) : (sha1, source), ...})
-
- , where source is 'auto' or 'manual'. Validity is checked only
- lightly.
-
- """
-
- merge_ref_re = re.compile(
- r"""
- ^
- refs\/imerge\/
- """ + re.escape(name) + r"""
- \/(?P<source>auto|manual)\/
- (?P<i1>0|[1-9][0-9]*)
- \-
- (?P<i2>0|[1-9][0-9]*)
- $
- """,
- re.VERBOSE,
- )
-
- state_ref_re = re.compile(
- r"""
- ^
- refs\/imerge\/
- """ + re.escape(name) + r"""
- \/state
- $
- """,
- re.VERBOSE,
- )
-
- state = None
-
- # A map {(i1, i2) : (sha1, source)}:
- merges = {}
-
- # refnames that were found but not understood:
- unexpected = []
-
- for line in check_output([
- 'git', 'for-each-ref', 'refs/imerge/%s' % (name,)
- ]).splitlines():
- (sha1, type, refname) = line.split()
- m = merge_ref_re.match(refname)
- if m:
- if type != 'commit':
- raise Failure('Reference %r is not a commit!' % (refname,))
- i1, i2 = int(m.group('i1')), int(m.group('i2'))
- source = m.group('source')
- merges[i1, i2] = (sha1, source)
- continue
-
- m = state_ref_re.match(refname)
- if m:
- if type != 'blob':
- raise Failure('Reference %r is not a blob!' % (refname,))
- state = self.read_imerge_state_dict(name)
- continue
-
- unexpected.append(refname)
-
- if state is None:
- raise Failure(
- 'No state found; it should have been a blob reference at '
- '"refs/imerge/%s/state"' % (name,)
- )
-
- if unexpected:
- raise Failure(
- 'Unexpected reference(s) found in "refs/imerge/%s" namespace:\n %s\n'
- % (name, '\n '.join(unexpected),)
- )
-
- return (state, merges)
-
- def write_imerge_state_dict(self, name, state):
- state_string = json.dumps(state, sort_keys=True) + '\n'
-
- cmd = ['git', 'hash-object', '-t', 'blob', '-w', '--stdin']
- p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
- out = communicate(p, input=state_string)[0]
- retcode = p.poll()
- if retcode:
- raise CalledProcessError(retcode, cmd)
- sha1 = out.strip()
- check_call([
- 'git', 'update-ref',
- '-m', 'imerge %r: Record state' % (name,),
- 'refs/imerge/%s/state' % (name,),
- sha1,
- ])
-
- def is_ancestor(self, commit1, commit2):
- """Return True iff commit1 is an ancestor (or equal to) commit2."""
-
- if commit1 == commit2:
- return True
- else:
- return int(
- check_output([
- 'git', 'rev-list', '--count', '--ancestry-path',
- '%s..%s' % (commit1, commit2,),
- ]).strip()
- ) != 0
-
- def is_ff(self, refname, commit):
- """Would updating refname to commit be a fast-forward update?
-
- Return True iff refname is not currently set or it points to an
- ancestor of commit.
-
- """
-
- try:
- ref_oldval = self.get_commit_sha1(refname)
- except ValueError:
- # refname doesn't already exist; no problem.
- return True
- else:
- return self.is_ancestor(ref_oldval, commit)
-
- def automerge(self, commit1, commit2, msg=None):
- """Attempt an automatic merge of commit1 and commit2.
-
- Return the SHA1 of the resulting commit, or raise
- AutomaticMergeFailed on error. This must be called with a clean
- worktree."""
-
- call_silently(['git', 'checkout', '-f', commit1])
- cmd = ['git', '-c', 'rerere.enabled=false', 'merge']
- if msg is not None:
- cmd += ['-m', msg]
- cmd += [commit2]
- try:
- call_silently(cmd)
- except CalledProcessError:
- self.abort_merge()
- raise AutomaticMergeFailed(commit1, commit2)
- else:
- return self.get_commit_sha1('HEAD')
-
- def manualmerge(self, commit, msg):
- """Initiate a merge of commit into the current HEAD."""
-
- check_call(['git', 'merge', '--no-commit', '-m', msg, commit,])
-
- def require_clean_work_tree(self, action):
- """Verify that the current tree is clean.
-
- The code is a Python translation of the git-sh-setup(1) function
- of the same name."""
-
- process = subprocess.Popen(
- ['git', 'rev-parse', '--verify', 'HEAD'],
- stdout=subprocess.PIPE, stderr=subprocess.PIPE,
- )
- err = communicate(process)[1]
- retcode = process.poll()
- if retcode:
- raise UncleanWorkTreeError(err.rstrip())
-
- self.refresh_index()
-
- error = []
- if self.unstaged_changes():
- error.append('Cannot %s: You have unstaged changes.' % (action,))
-
- if self.uncommitted_changes():
- if not error:
- error.append('Cannot %s: Your index contains uncommitted changes.' % (action,))
- else:
- error.append('Additionally, your index contains uncommitted changes.')
-
- if error:
- raise UncleanWorkTreeError('\n'.join(error))
-
- def simple_merge_in_progress(self):
- """Return True iff a merge (of a single branch) is in progress."""
-
- try:
- with open(os.path.join(self.git_dir(), 'MERGE_HEAD')) as f:
- heads = [line.rstrip() for line in f]
- except IOError:
- return False
-
- return len(heads) == 1
-
- def commit_user_merge(self, edit_log_msg=None):
- """If a merge is in progress and ready to be committed, commit it.
-
- If a simple merge is in progress and any changes in the working
- tree are staged, commit the merge commit and return True.
- Otherwise, return False.
-
- """
-
- if not self.simple_merge_in_progress():
- return False
-
- # Check if all conflicts are resolved and everything in the
- # working tree is staged:
- self.refresh_index()
- if self.unstaged_changes():
- raise UncleanWorkTreeError(
- 'Cannot proceed: You have unstaged changes.'
- )
-
- # A merge is in progress, and either all changes have been staged
- # or no changes are necessary. Create a merge commit.
- cmd = ['git', 'commit', '--no-verify']
-
- if edit_log_msg is None:
- edit_log_msg = self.get_default_edit()
-
- if edit_log_msg:
- cmd += ['--edit']
- else:
- cmd += ['--no-edit']
-
- try:
- check_call(cmd)
- except CalledProcessError:
- raise Failure('Could not commit staged changes.')
-
- return True
-
- def create_commit_chain(self, base, path):
- """Point refname at the chain of commits indicated by path.
-
- path is a list [(commit, metadata), ...]. Create a series of
- commits corresponding to the entries in path. Each commit's tree
- is taken from the corresponding old commit, and each commit's
- metadata is taken from the corresponding metadata commit. Use base
- as the parent of the first commit, or make the first commit a root
- commit if base is None. Reuse existing commits from the list
- whenever possible.
-
- Return a commit object corresponding to the last commit in the
- chain.
-
- """
-
- reusing = True
- if base is None:
- if not path:
- raise ValueError('neither base nor path specified')
- parents = []
- else:
- parents = [base]
-
- for (commit, metadata) in path:
- if reusing:
- if commit == metadata and self.get_commit_parents(commit) == parents:
- # We can reuse this commit, too.
- parents = [commit]
- continue
- else:
- reusing = False
-
- # Create a commit, copying the old log message and author info
- # from the metadata commit:
- tree = self.get_tree(commit)
- new_commit = self.commit_tree(
- tree, parents,
- msg=self.get_log_message(metadata),
- metadata=self.get_author_info(metadata),
- )
- parents = [new_commit]
-
- [commit] = parents
- return commit
-
- def rev_parse(self, arg):
- return check_output(['git', 'rev-parse', '--verify', '--quiet', arg]).strip()
-
- def rev_list(self, *args):
- cmd = ['git', 'rev-list'] + list(args)
- return [
- l.strip()
- for l in check_output(cmd).splitlines()
- ]
-
- def rev_list_with_parents(self, *args):
- """Iterate over (commit, [parent,...])."""
-
- cmd = ['git', 'log', '--format=%H %P'] + list(args)
- for line in check_output(cmd).splitlines():
- commits = line.strip().split()
- yield (commits[0], commits[1:])
-
- def summarize_commit(self, commit):
- """Summarize `commit` to stdout."""
-
- check_call(['git', '--no-pager', 'log', '--no-walk', commit])
-
- def get_author_info(self, commit):
- """Return environment settings to set author metadata.
-
- Return a map {str : str}."""
-
- # We use newlines as separators here because msysgit has problems
- # with NUL characters; see
- #
- # https://github.com/mhagger/git-imerge/pull/71
- a = check_output([
- 'git', '--no-pager', 'log', '-n1',
- '--format=%an%n%ae%n%ai', commit
- ]).strip().splitlines()
-
- return {
- 'GIT_AUTHOR_NAME': env_encode(a[0]),
- 'GIT_AUTHOR_EMAIL': env_encode(a[1]),
- 'GIT_AUTHOR_DATE': env_encode(a[2]),
- }
-
- def get_log_message(self, commit):
- contents = check_output([
- 'git', 'cat-file', 'commit', commit,
- ]).splitlines(True)
- contents = contents[contents.index('\n') + 1:]
- if contents and contents[-1][-1:] != '\n':
- contents.append('\n')
- return ''.join(contents)
-
- def get_commit_parents(self, commit):
- """Return a list containing the parents of commit."""
-
- return check_output(
- ['git', '--no-pager', 'log', '--no-walk', '--pretty=format:%P', commit]
- ).strip().split()
-
- def get_tree(self, arg):
- return self.rev_parse('%s^{tree}' % (arg,))
-
- def update_ref(self, refname, value, msg, deref=True):
- if deref:
- opt = []
- else:
- opt = ['--no-deref']
-
- check_call(['git', 'update-ref'] + opt + ['-m', msg, refname, value])
-
- def delete_ref(self, refname, msg, deref=True):
- if deref:
- opt = []
- else:
- opt = ['--no-deref']
-
- check_call(['git', 'update-ref'] + opt + ['-m', msg, '-d', refname])
-
- def delete_imerge_refs(self, name):
- stdin = ''.join(
- 'delete %s\n' % (refname,)
- for refname in check_output([
- 'git', 'for-each-ref',
- '--format=%(refname)',
- 'refs/imerge/%s' % (name,)
- ]).splitlines()
- )
-
- process = subprocess.Popen(
- [
- 'git', 'update-ref',
- '-m', 'imerge: remove merge %r' % (name,),
- '--stdin',
- ],
- stdin=subprocess.PIPE,
- stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
- )
- out = communicate(process, input=stdin)[0]
- retcode = process.poll()
- if retcode:
- sys.stderr.write(
- 'Warning: error removing references:\n%s' % (out,)
- )
-
- def detach(self, msg):
- """Detach HEAD. msg is used for the reflog."""
-
- self.update_ref('HEAD', 'HEAD^0', msg, deref=False)
-
- def reset_hard(self, commit):
- check_call(['git', 'reset', '--hard', commit])
-
- def amend(self):
- check_call(['git', 'commit', '--amend'])
-
- def abort_merge(self):
- # We don't use "git merge --abort" here because it was
- # only added in git version 1.7.4.
- check_call(['git', 'reset', '--merge'])
-
- def compute_best_merge_base(self, tip1, tip2):
- try:
- merge_bases = check_output(['git', 'merge-base', '--all', tip1, tip2]).splitlines()
- except CalledProcessError:
- raise Failure('Cannot compute merge base for %r and %r' % (tip1, tip2))
- if not merge_bases:
- raise Failure('%r and %r do not have a common merge base' % (tip1, tip2))
- if len(merge_bases) == 1:
- return merge_bases[0]
-
- # There are multiple merge bases. The "best" one is the one that
- # is the "closest" to the tips, which we define to be the one with
- # the fewest non-merge commits in "merge_base..tip". (It can be
- # shown that the result is independent of which tip is used in the
- # computation.)
- best_base = best_count = None
- for merge_base in merge_bases:
- cmd = ['git', 'rev-list', '--no-merges', '--count', '%s..%s' % (merge_base, tip1)]
- count = int(check_output(cmd).strip())
- if best_base is None or count < best_count:
- best_base = merge_base
- best_count = count
-
- return best_base
-
- def linear_ancestry(self, commit1, commit2, first_parent):
- """Compute a linear ancestry between commit1 and commit2.
-
- Our goal is to find a linear series of commits connecting
- `commit1` and `commit2`. We do so as follows:
-
- * If all of the commits in
-
- git rev-list --ancestry-path commit1..commit2
-
- are on a linear chain, return that.
-
- * If there are multiple paths between `commit1` and `commit2` in
- that list of commits, then
-
- * If `first_parent` is not set, then raise an
- `NonlinearAncestryError` exception.
-
- * If `first_parent` is set, then, at each merge commit, follow
- the first parent that is in that list of commits.
-
- Return a list of SHA-1s in 'chronological' order.
-
- Raise NotFirstParentAncestorError if commit1 is not an ancestor of
- commit2.
-
- """
-
- oid1 = self.rev_parse(commit1)
- oid2 = self.rev_parse(commit2)
-
- parentage = {oid1 : []}
- for (commit, parents) in self.rev_list_with_parents(
- '--ancestry-path', '--topo-order', '%s..%s' % (oid1, oid2)
- ):
- parentage[commit] = parents
-
- commits = []
-
- commit = oid2
- while commit != oid1:
- parents = parentage.get(commit, [])
-
- # Only consider parents that are in the ancestry path:
- included_parents = [
- parent
- for parent in parents
- if parent in parentage
- ]
-
- if not included_parents:
- raise NotFirstParentAncestorError(commit1, commit2)
- elif len(included_parents) == 1 or first_parent:
- parent = included_parents[0]
- else:
- raise NonlinearAncestryError(commit1, commit2)
-
- commits.append(commit)
- commit = parent
-
- commits.reverse()
-
- return commits
-
- def get_boundaries(self, tip1, tip2, first_parent):
- """Get the boundaries of an incremental merge.
-
- Given the tips of two branches that should be merged, return
- (merge_base, commits1, commits2) describing the edges of the
- imerge. Raise Failure if there are any problems."""
-
- merge_base = self.compute_best_merge_base(tip1, tip2)
-
- commits1 = self.linear_ancestry(merge_base, tip1, first_parent)
- if not commits1:
- raise NothingToDoError(tip1, tip2)
-
- commits2 = self.linear_ancestry(merge_base, tip2, first_parent)
- if not commits2:
- raise NothingToDoError(tip2, tip1)
-
- return (merge_base, commits1, commits2)
-
- def get_head_refname(self, short=False):
- """Return the name of the reference that is currently checked out.
-
- If `short` is set, return it as a branch name. If HEAD is
- currently detached, return None."""
-
- cmd = ['git', 'symbolic-ref', '--quiet']
- if short:
- cmd += ['--short']
- cmd += ['HEAD']
- try:
- return check_output(cmd).strip()
- except CalledProcessError:
- return None
-
- def restore_head(self, refname, message):
- check_call(['git', 'symbolic-ref', '-m', message, 'HEAD', refname])
- check_call(['git', 'reset', '--hard'])
-
- def checkout(self, refname, quiet=False):
- cmd = ['git', 'checkout']
- if quiet:
- cmd += ['--quiet']
- if refname.startswith(GitRepository.BRANCH_PREFIX):
- target = refname[len(GitRepository.BRANCH_PREFIX):]
- else:
- target = '%s^0' % (refname,)
- cmd += [target]
- check_call(cmd)
-
- def commit_tree(self, tree, parents, msg, metadata=None):
- """Create a commit containing the specified tree.
-
- metadata can be author or committer information to be added to the
- environment, as str objects; e.g., {'GIT_AUTHOR_NAME' : 'me'}.
-
- Return the SHA-1 of the new commit object."""
-
- cmd = ['git', 'commit-tree', tree]
- for parent in parents:
- cmd += ['-p', parent]
-
- if metadata is not None:
- env = os.environ.copy()
- env.update(metadata)
- else:
- env = os.environ
-
- process = subprocess.Popen(
- cmd, env=env, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
- )
- out = communicate(process, input=msg)[0]
- retcode = process.poll()
-
- if retcode:
- # We don't store the output in the CalledProcessError because
- # the "output" keyword parameter was not supported in Python
- # 2.6:
- raise CalledProcessError(retcode, cmd)
-
- return out.strip()
-
- def revert(self, commit):
- """Apply the inverse of commit^..commit to HEAD and commit."""
-
- cmd = ['git', 'revert', '--no-edit']
- if len(self.get_commit_parents(commit)) > 1:
- cmd += ['-m', '1']
- cmd += [commit]
- check_call(cmd)
-
- def reparent(self, commit, parent_sha1s, msg=None):
- """Create a new commit object like commit, but with the specified parents.
-
- commit is the SHA1 of an existing commit and parent_sha1s is a
- list of SHA1s. Create a new commit exactly like that one, except
- that it has the specified parent commits. Return the SHA1 of the
- resulting commit object, which is already stored in the object
- database but is not yet referenced by anything.
-
- If msg is set, then use it as the commit message for the new
- commit."""
-
- old_commit = check_output(['git', 'cat-file', 'commit', commit])
- separator = old_commit.index('\n\n')
- headers = old_commit[:separator + 1].splitlines(True)
- rest = old_commit[separator + 2:]
-
- new_commit = StringIO()
- for i in range(len(headers)):
- line = headers[i]
- if line.startswith('tree '):
- new_commit.write(line)
- for parent_sha1 in parent_sha1s:
- new_commit.write('parent %s\n' % (parent_sha1,))
- elif line.startswith('parent '):
- # Discard old parents:
- pass
- else:
- new_commit.write(line)
-
- new_commit.write('\n')
- if msg is None:
- new_commit.write(rest)
- else:
- new_commit.write(msg)
- if not msg.endswith('\n'):
- new_commit.write('\n')
-
- process = subprocess.Popen(
- ['git', 'hash-object', '-t', 'commit', '-w', '--stdin'],
- stdin=subprocess.PIPE, stdout=subprocess.PIPE,
- )
- out = communicate(process, input=new_commit.getvalue())[0]
- retcode = process.poll()
- if retcode:
- raise Failure('Could not reparent commit %s' % (commit,))
- return out.strip()
-
- def temporary_head(self, message):
- """Return a context manager to manage a temporary HEAD.
-
- On entry, record the current HEAD state. On exit, restore it.
- message is used for the reflog.
-
- """
-
- return GitTemporaryHead(self, message)
-
-
-class MergeRecord(object):
- # Bits for the flags field:
-
- # There is a saved successful auto merge:
- SAVED_AUTO = 0x01
-
- # An auto merge (which may have been unsuccessful) has been done:
- NEW_AUTO = 0x02
-
- # There is a saved successful manual merge:
- SAVED_MANUAL = 0x04
-
- # A manual merge (which may have been unsuccessful) has been done:
- NEW_MANUAL = 0x08
-
- # A merge that is currently blocking the merge frontier:
- BLOCKED = 0x10
-
- # Some useful bit combinations:
- SAVED = SAVED_AUTO | SAVED_MANUAL
- NEW = NEW_AUTO | NEW_MANUAL
-
- AUTO = SAVED_AUTO | NEW_AUTO
- MANUAL = SAVED_MANUAL | NEW_MANUAL
-
- ALLOWED_INITIAL_FLAGS = [
- SAVED_AUTO,
- SAVED_MANUAL,
- NEW_AUTO,
- NEW_MANUAL,
- ]
-
- def __init__(self, sha1=None, flags=0):
- # The currently believed correct merge, or None if it is
- # unknown or the best attempt was unsuccessful.
- self.sha1 = sha1
-
- if self.sha1 is None:
- if flags != 0:
- raise ValueError('Initial flags (%s) for sha1=None should be 0' % (flags,))
- elif flags not in self.ALLOWED_INITIAL_FLAGS:
- raise ValueError('Initial flags (%s) is invalid' % (flags,))
-
- # See bits above.
- self.flags = flags
-
- def record_merge(self, sha1, source):
- """Record a merge at this position.
-
- source must be SAVED_AUTO, SAVED_MANUAL, NEW_AUTO, or NEW_MANUAL."""
-
- if source == self.SAVED_AUTO:
- # SAVED_AUTO is recorded in any case, but only used if it
- # is the only info available.
- if self.flags & (self.MANUAL | self.NEW) == 0:
- self.sha1 = sha1
- self.flags |= source
- elif source == self.NEW_AUTO:
- # NEW_AUTO is silently ignored if any MANUAL value is
- # already recorded.
- if self.flags & self.MANUAL == 0:
- self.sha1 = sha1
- self.flags |= source
- elif source == self.SAVED_MANUAL:
- # SAVED_MANUAL is recorded in any case, but only used if
- # no NEW_MANUAL is available.
- if self.flags & self.NEW_MANUAL == 0:
- self.sha1 = sha1
- self.flags |= source
- elif source == self.NEW_MANUAL:
- # NEW_MANUAL is always used, and also causes NEW_AUTO to
- # be forgotten if present.
- self.sha1 = sha1
- self.flags = (self.flags | source) & ~self.NEW_AUTO
- else:
- raise ValueError('Undefined source: %s' % (source,))
-
- def record_blocked(self, blocked):
- if blocked:
- self.flags |= self.BLOCKED
- else:
- self.flags &= ~self.BLOCKED
-
- def is_known(self):
- return self.sha1 is not None
-
- def is_blocked(self):
- return self.flags & self.BLOCKED != 0
-
- def is_manual(self):
- return self.flags & self.MANUAL != 0
-
- def save(self, git, name, i1, i2):
- """If this record has changed, save it."""
-
- def set_ref(source):
- git.update_ref(
- 'refs/imerge/%s/%s/%d-%d' % (name, source, i1, i2),
- self.sha1,
- 'imerge %r: Record %s merge' % (name, source,),
- )
-
- def clear_ref(source):
- git.delete_ref(
- 'refs/imerge/%s/%s/%d-%d' % (name, source, i1, i2),
- 'imerge %r: Remove obsolete %s merge' % (name, source,),
- )
-
- if self.flags & self.MANUAL:
- if self.flags & self.AUTO:
- # Any MANUAL obsoletes any AUTO:
- if self.flags & self.SAVED_AUTO:
- clear_ref('auto')
-
- self.flags &= ~self.AUTO
-
- if self.flags & self.NEW_MANUAL:
- # Convert NEW_MANUAL to SAVED_MANUAL.
- if self.sha1:
- set_ref('manual')
- self.flags |= self.SAVED_MANUAL
- elif self.flags & self.SAVED_MANUAL:
- # Delete any existing SAVED_MANUAL:
- clear_ref('manual')
- self.flags &= ~self.SAVED_MANUAL
- self.flags &= ~self.NEW_MANUAL
-
- elif self.flags & self.NEW_AUTO:
- # Convert NEW_AUTO to SAVED_AUTO.
- if self.sha1:
- set_ref('auto')
- self.flags |= self.SAVED_AUTO
- elif self.flags & self.SAVED_AUTO:
- # Delete any existing SAVED_AUTO:
- clear_ref('auto')
- self.flags &= ~self.SAVED_AUTO
- self.flags &= ~self.NEW_AUTO
-
-
-class UnexpectedMergeFailure(Exception):
- def __init__(self, msg, i1, i2):
- Exception.__init__(self, msg)
- self.i1, self.i2 = i1, i2
-
-
-class BlockCompleteError(Exception):
- pass
-
-
-class FrontierBlockedError(Exception):
- def __init__(self, msg, i1, i2):
- Exception.__init__(self, msg)
- self.i1 = i1
- self.i2 = i2
-
-
-class NotABlockingCommitError(Exception):
- pass
-
-
-def find_frontier_blocks(block):
- """Iterate over the frontier blocks for the specified block.
-
- Use bisection to find the blocks. Iterate over the blocks starting
- in the bottom left and ending at the top right. Record in block
- any blockers that we find.
-
- We make the following assumptions (using Python subscript
- notation):
-
- 0. All of the merges in block[1:,0] and block[0,1:] are
- already known. (This is an invariant of the Block class.)
-
- 1. If a direct merge can be done between block[i1-1,0] and
- block[0,i2-1], then all of the pairwise merges in
- block[1:i1, 1:i2] can also be done.
-
- 2. If a direct merge fails between block[i1-1,0] and
- block[0,i2-1], then all of the pairwise merges in
- block[i1-1:,i2-1:] would also fail.
-
- Under these assumptions, the merge frontier is a stepstair
- pattern going from the bottom-left to the top-right, and
- bisection can be used to find the transition between mergeable
- and conflicting in any row or column.
-
- Of course these assumptions are not rigorously true, so the
- MergeFrontier returned by this function is only an
- approximation of the real merge diagram. We check for and
- correct such inconsistencies later.
-
- """
-
- # Given that these diagrams typically have few blocks, check
- # the end of a range first to see if the whole range can be
- # determined, and fall back to bisection otherwise. We
- # determine the frontier block by block, starting in the lower
- # left.
-
- if block.len1 <= 1 or block.len2 <= 1 or block.is_blocked(1, 1):
- return
-
- if block.is_mergeable(block.len1 - 1, block.len2 - 1):
- # The whole block is mergable!
- yield block
- return
-
- if not block.is_mergeable(1, 1):
- # There are no mergeable blocks in block; therefore,
- # block[1,1] must itself be unmergeable. Record that
- # fact:
- block[1, 1].record_blocked(True)
- return
-
- # At this point, we know that there is at least one mergeable
- # commit in the first column. Find the height of the success
- # block in column 1:
- i1 = 1
- i2 = find_first_false(
- lambda i: block.is_mergeable(i1, i),
- 2, block.len2,
- )
-
- # Now we know that (1,i2-1) is mergeable but (1,i2) is not;
- # e.g., (i1, i2) is like 'A' (or maybe 'B') in the following
- # diagram (where '*' means mergeable, 'x' means not mergeable,
- # and '?' means indeterminate) and that the merge under 'A' is
- # not mergeable:
- #
- # i1
- #
- # 0123456
- # 0 *******
- # 1 **?????
- # i2 2 **?????
- # 3 **?????
- # 4 *Axxxxx
- # 5 *xxxxxx
- # B
-
- while True:
- if i2 == 1:
- break
-
- # At this point in the loop, we know that any blocks to
- # the left of 'A' have already been recorded, (i1, i2-1)
- # is mergeable but (i1, i2) is not; e.g., we are at a
- # place like 'A' in the following diagram:
- #
- # i1
- #
- # 0123456
- # 0 **|****
- # 1 **|*???
- # i2 2 **|*???
- # 3 **|Axxx
- # 4 --+xxxx
- # 5 *xxxxxx
- #
- # This implies that (i1, i2) is the first unmergeable
- # commit in a blocker block (though blocker blocks are not
- # recorded explicitly). It also implies that a mergeable
- # block has its last mergeable commit somewhere in row
- # i2-1; find its width.
- if (
- i1 == block.len1 - 1
- or block.is_mergeable(block.len1 - 1, i2 - 1)
- ):
- yield block[:block.len1, :i2]
- break
- else:
- i1 = find_first_false(
- lambda i: block.is_mergeable(i, i2 - 1),
- i1 + 1, block.len1 - 1,
- )
- yield block[:i1, :i2]
-
- # At this point in the loop, (i1-1, i2-1) is mergeable but
- # (i1, i2-1) is not; e.g., 'A' in the following diagram:
- #
- # i1
- #
- # 0123456
- # 0 **|*|**
- # 1 **|*|??
- # i2 2 --+-+xx
- # 3 **|xxAx
- # 4 --+xxxx
- # 5 *xxxxxx
- #
- # The block ending at (i1-1,i2-1) has just been recorded.
- # Now find the height of the conflict rectangle at column
- # i1 and fill it in:
- if i2 - 1 == 1 or not block.is_mergeable(i1, 1):
- break
- else:
- i2 = find_first_false(
- lambda i: block.is_mergeable(i1, i),
- 2, i2 - 1,
- )
-
-
-class MergeFrontier(object):
- """Represents the merge frontier within a Block.
-
- A MergeFrontier is represented by a list of SubBlocks, each of
- which is thought to be completely mergeable. The list is kept in
- normalized form:
-
- * Only non-empty blocks are retained
-
- * Blocks are sorted from bottom left to upper right
-
- * No redundant blocks
-
- """
-
- @staticmethod
- def map_known_frontier(block):
- """Return the MergeFrontier describing existing successful merges in block.
-
- The return value only includes the part that is fully outlined
- and whose outline consists of rectangles reaching back to
- (0,0).
-
- A blocked commit is *not* considered to be within the
- frontier, even if a merge is registered for it. Such merges
- must be explicitly unblocked."""
-
- # FIXME: This algorithm can take combinatorial time, for
- # example if there is a big block of merges that is a dead
- # end:
- #
- # +++++++
- # +?+++++
- # +?+++++
- # +?+++++
- # +?*++++
- #
- # The problem is that the algorithm will explore all of the
- # ways of getting to commit *, and the number of paths grows
- # like a binomial coefficient. The solution would be to
- # remember dead-ends and reject any curves that visit a point
- # to the right of a dead-end.
- #
- # For now we don't intend to allow a situation like this to be
- # created, so we ignore the problem.
-
- # A list (i1, i2, down) of points in the path so far. down is
- # True iff the attempted step following this one was
- # downwards.
- path = []
-
- def create_frontier(path):
- blocks = []
- for ((i1old, i2old, downold), (i1new, i2new, downnew)) in iter_neighbors(path):
- if downold is True and downnew is False:
- blocks.append(block[:i1new + 1, :i2new + 1])
- return MergeFrontier(block, blocks)
-
- # Loop invariants:
- #
- # * path is a valid path
- #
- # * (i1, i2) is in block but it not yet added to path
- #
- # * down is True if a step downwards from (i1, i2) has not yet
- # been attempted
- (i1, i2) = (block.len1 - 1, 0)
- down = True
- while True:
- if down:
- if i2 == block.len2 - 1:
- # Hit edge of block; can't move down:
- down = False
- elif (i1, i2 + 1) in block and not block.is_blocked(i1, i2 + 1):
- # Can move down
- path.append((i1, i2, True))
- i2 += 1
- else:
- # Can't move down.
- down = False
- else:
- if i1 == 0:
- # Success!
- path.append((i1, i2, False))
- return create_frontier(path)
- elif (i1 - 1, i2) in block and not block.is_blocked(i1 - 1, i2):
- # Can move left
- path.append((i1, i2, False))
- down = True
- i1 -= 1
- else:
- # There's no way to go forward; backtrack until we
- # find a place where we can still try going left:
- while True:
- try:
- (i1, i2, down) = path.pop()
- except IndexError:
- # This shouldn't happen because, in the
- # worst case, there is a valid path across
- # the top edge of the merge diagram.
- raise RuntimeError('Block is improperly formed!')
- if down:
- down = False
- break
-
- @staticmethod
- def compute_by_bisection(block):
- """Return a MergeFrontier instance for block.
-
- Compute the blocks making up the boundary using bisection. See
- find_frontier_blocks() for more information.
-
- """
-
- return MergeFrontier(block, list(find_frontier_blocks(block)))
-
- def __init__(self, block, blocks=None):
- self.block = block
- self.blocks = self._normalized_blocks(blocks or [])
-
- def __iter__(self):
- """Iterate over blocks from bottom left to upper right."""
-
- return iter(self.blocks)
-
- def __bool__(self):
- """Return True iff this frontier has no completed parts."""
-
- return bool(self.blocks)
-
- def __nonzero__(self):
- """Return True iff this frontier has no completed parts."""
-
- return bool(self.blocks)
-
- def is_complete(self):
- """Return True iff the frontier covers the whole block."""
-
- return (
- len(self.blocks) == 1
- and self.blocks[0].len1 == self.block.len1
- and self.blocks[0].len2 == self.block.len2
- )
-
- # Additional codes used in the 2D array returned from create_diagram()
- FRONTIER_WITHIN = 0x10
- FRONTIER_RIGHT_EDGE = 0x20
- FRONTIER_BOTTOM_EDGE = 0x40
- FRONTIER_MASK = 0x70
-
- @classmethod
- def default_formatter(cls, node, legend=None):
- def color(node, within):
- if within:
- return AnsiColor.B_GREEN + node + AnsiColor.END
- else:
- return AnsiColor.B_RED + node + AnsiColor.END
-
- if legend is None:
- legend = ['?', '*', '.', '#', '@', '-', '|', '+']
- merge = node & Block.MERGE_MASK
- within = merge == Block.MERGE_MANUAL or (node & cls.FRONTIER_WITHIN)
- skip = [Block.MERGE_MANUAL, Block.MERGE_BLOCKED, Block.MERGE_UNBLOCKED]
- if merge not in skip:
- vertex = (cls.FRONTIER_BOTTOM_EDGE | cls.FRONTIER_RIGHT_EDGE)
- edge_status = node & vertex
- if edge_status == vertex:
- return color(legend[-1], within)
- elif edge_status == cls.FRONTIER_RIGHT_EDGE:
- return color(legend[-2], within)
- elif edge_status == cls.FRONTIER_BOTTOM_EDGE:
- return color(legend[-3], within)
- return color(legend[merge], within)
-
- def create_diagram(self):
- """Generate a diagram of this frontier.
-
- The returned diagram is a nested list of integers forming a 2D array,
- representing the merge frontier embedded in the diagram of commits
- returned from Block.create_diagram().
-
- At each node in the returned diagram is an integer whose value is a
- bitwise-or of existing MERGE_* constant from Block.create_diagram()
- and zero or more of the FRONTIER_* constants defined in this class."""
-
- diagram = self.block.create_diagram()
-
- try:
- next_block = self.blocks[0]
- except IndexError:
- next_block = None
-
- diagram[0][-1] |= self.FRONTIER_BOTTOM_EDGE
- for i2 in range(1, self.block.len2):
- if next_block is None or i2 >= next_block.len2:
- diagram[0][i2] |= self.FRONTIER_RIGHT_EDGE
-
- prev_block = None
- for n in range(len(self.blocks)):
- block = self.blocks[n]
- try:
- next_block = self.blocks[n + 1]
- except IndexError:
- next_block = None
-
- for i1 in range(block.len1):
- for i2 in range(block.len2):
- v = self.FRONTIER_WITHIN
- if i1 == block.len1 - 1 and (
- next_block is None or i2 >= next_block.len2
- ):
- v |= self.FRONTIER_RIGHT_EDGE
- if i2 == block.len2 - 1 and (
- prev_block is None or i1 >= prev_block.len1
- ):
- v |= self.FRONTIER_BOTTOM_EDGE
- diagram[i1][i2] |= v
- prev_block = block
-
- try:
- prev_block = self.blocks[-1]
- except IndexError:
- prev_block = None
-
- for i1 in range(1, self.block.len1):
- if prev_block is None or i1 >= prev_block.len1:
- diagram[i1][0] |= self.FRONTIER_BOTTOM_EDGE
- diagram[-1][0] |= self.FRONTIER_RIGHT_EDGE
-
- return diagram
-
- def format_diagram(self, formatter=None, diagram=None):
- if formatter is None:
- formatter = self.default_formatter
- if diagram is None:
- diagram = self.create_diagram()
- return [
- [formatter(diagram[i1][i2]) for i2 in range(self.block.len2)]
- for i1 in range(self.block.len1)]
-
- def write(self, f):
- """Write this frontier to file-like object f."""
- diagram = self.format_diagram()
- for i2 in range(self.block.len2):
- for i1 in range(self.block.len1):
- f.write(diagram[i1][i2])
- f.write('\n')
-
- def write_html(self, f, name, cssfile='imerge.css', abbrev_sha1=7):
- class_map = {
- Block.MERGE_UNKNOWN: 'merge_unknown',
- Block.MERGE_MANUAL: 'merge_manual',
- Block.MERGE_AUTOMATIC: 'merge_automatic',
- Block.MERGE_BLOCKED: 'merge_blocked',
- Block.MERGE_UNBLOCKED: 'merge_unblocked',
- self.FRONTIER_WITHIN: 'frontier_within',
- self.FRONTIER_RIGHT_EDGE: 'frontier_right_edge',
- self.FRONTIER_BOTTOM_EDGE: 'frontier_bottom_edge',
- }
-
- def map_to_classes(i1, i2, node):
- merge = node & Block.MERGE_MASK
- ret = [class_map[merge]]
- for bit in [self.FRONTIER_WITHIN, self.FRONTIER_RIGHT_EDGE,
- self.FRONTIER_BOTTOM_EDGE]:
- if node & bit:
- ret.append(class_map[bit])
- if not (node & self.FRONTIER_WITHIN):
- ret.append('frontier_without')
- elif (node & Block.MERGE_MASK) == Block.MERGE_UNKNOWN:
- ret.append('merge_skipped')
- if i1 == 0 or i2 == 0:
- ret.append('merge_initial')
- if i1 == 0:
- ret.append('col_left')
- if i1 == self.block.len1 - 1:
- ret.append('col_right')
- if i2 == 0:
- ret.append('row_top')
- if i2 == self.block.len2 - 1:
- ret.append('row_bottom')
- return ret
-
- f.write("""\
-<html>
-<head>
-<title>git-imerge: %s</title>
-<link rel="stylesheet" href="%s" type="text/css" />
-</head>
-<body>
-<table id="imerge">
-""" % (name, cssfile))
-
- diagram = self.create_diagram()
-
- f.write(' <tr>\n')
- f.write(' <th class="indexes">&nbsp;</td>\n')
- for i1 in range(self.block.len1):
- f.write(' <th class="indexes">%d-*</td>\n' % (i1,))
- f.write(' </tr>\n')
-
- for i2 in range(self.block.len2):
- f.write(' <tr>\n')
- f.write(' <th class="indexes">*-%d</td>\n' % (i2,))
- for i1 in range(self.block.len1):
- classes = map_to_classes(i1, i2, diagram[i1][i2])
- record = self.block.get_value(i1, i2)
- sha1 = record.sha1 or ''
- td_id = record.sha1 and ' id="%s"' % (record.sha1) or ''
- td_class = classes and ' class="' + ' '.join(classes) + '"' or ''
- f.write(' <td%s%s>%.*s</td>\n' % (
- td_id, td_class, abbrev_sha1, sha1))
- f.write(' </tr>\n')
- f.write('</table>\n</body>\n</html>\n')
-
- @staticmethod
- def _normalized_blocks(blocks):
- """Return a normalized list of blocks from the argument.
-
- * Remove empty blocks.
-
- * Remove redundant blocks.
-
- * Sort the blocks according to their len1 members.
-
- """
-
- def contains(block1, block2):
- """Return true if block1 contains block2."""
-
- return block1.len1 >= block2.len1 and block1.len2 >= block2.len2
-
- blocks = sorted(blocks, key=lambda block: block.len1)
- ret = []
-
- for block in blocks:
- if block.len1 == 0 or block.len2 == 0:
- continue
- while True:
- if not ret:
- ret.append(block)
- break
-
- last = ret[-1]
- if contains(last, block):
- break
- elif contains(block, last):
- ret.pop()
- else:
- ret.append(block)
- break
-
- return ret
-
- def remove_failure(self, i1, i2):
- """Refine the merge frontier given that the specified merge fails."""
-
- newblocks = []
- shrunk_block = False
-
- for block in self.blocks:
- if i1 < block.len1 and i2 < block.len2:
- if i1 > 1:
- newblocks.append(block[:i1, :])
- if i2 > 1:
- newblocks.append(block[:, :i2])
- shrunk_block = True
- else:
- newblocks.append(block)
-
- if shrunk_block:
- self.blocks = self._normalized_blocks(newblocks)
-
- def partition(self, block):
- """Return two MergeFrontier instances partitioned by block.
-
- Return (frontier1, frontier2), where each frontier is limited
- to each side of the argument.
-
- block must be contained in this MergeFrontier and already be
- outlined."""
-
- # Remember that the new blocks have to include the outlined
- # edge of the partitioning block to satisfy the invariant that
- # the left and upper edge of a block has to be known.
-
- left = []
- right = []
- for b in self.blocks:
- if b.len1 == block.len1 and b.len2 == block.len2:
- # That's the block we're partitioning on; just skip it.
- pass
- elif b.len1 < block.len1 and b.len2 > block.len2:
- left.append(b[:, block.len2 - 1:])
- elif b.len1 > block.len1 and b.len2 < block.len2:
- right.append(b[block.len1 - 1:, :])
- else:
- raise ValueError(
- 'MergeFrontier partitioned with inappropriate block'
- )
- return (
- MergeFrontier(self.block[:block.len1, block.len2 - 1:], left),
- MergeFrontier(self.block[block.len1 - 1:, :block.len2], right),
- )
-
- def iter_blocker_blocks(self):
- """Iterate over the blocks on the far side of this frontier.
-
- This must only be called for an outlined frontier."""
-
- if not self:
- yield self.block
- return
-
- blockruns = []
- if self.blocks[0].len2 < self.block.len2:
- blockruns.append([self.block[0, :]])
- blockruns.append(self)
- if self.blocks[-1].len1 < self.block.len1:
- blockruns.append([self.block[:, 0]])
-
- for block1, block2 in iter_neighbors(itertools.chain(*blockruns)):
- yield self.block[block1.len1 - 1:block2.len1, block2.len2 - 1: block1.len2]
-
- def get_affected_blocker_block(self, i1, i2):
- """Return the blocker block that a successful merge (i1,i2) would unblock.
-
- If there is no such block, raise NotABlockingCommitError."""
-
- for block in self.iter_blocker_blocks():
- try:
- (block_i1, block_i2) = block.convert_original_indexes(i1, i2)
- except IndexError:
- pass
- else:
- if (block_i1, block_i2) == (1, 1):
- # That's the one we need to improve this block:
- return block
- else:
- # An index pair can only be in a single blocker
- # block, which we've already found:
- raise NotABlockingCommitError(
- 'Commit %d-%d was not blocking the frontier.'
- % self.block.get_original_indexes(i1, i2)
- )
- else:
- raise NotABlockingCommitError(
- 'Commit %d-%d was not on the frontier.'
- % self.block.get_original_indexes(i1, i2)
- )
-
- def auto_expand(self):
- """Try pushing out one of the blocks on this frontier.
-
- Raise BlockCompleteError if the whole block has already been
- solved. Raise FrontierBlockedError if the frontier is blocked
- everywhere. This method does *not* update self; if it returns
- successfully you should recompute the frontier from
- scratch."""
-
- blocks = list(self.iter_blocker_blocks())
- if not blocks:
- raise BlockCompleteError('The block is already complete')
-
- # Try blocks from left to right:
- blocks.sort(key=lambda block: block.get_original_indexes(0, 0))
-
- for block in blocks:
- if block.auto_expand_frontier():
- return
- else:
- # None of the blocks could be expanded. Suggest that the
- # caller do a manual merge of the commit that is blocking
- # the leftmost blocker block.
- i1, i2 = blocks[0].get_original_indexes(1, 1)
- raise FrontierBlockedError(
- 'Conflict; suggest manual merge of %d-%d' % (i1, i2),
- i1, i2
- )
-
-
-class NoManualMergeError(Exception):
- pass
-
-
-class ManualMergeUnusableError(Exception):
- def __init__(self, msg, commit):
- Exception.__init__(self, 'Commit %s is not usable; %s' % (commit, msg))
- self.commit = commit
-
-
-class CommitNotFoundError(Exception):
- def __init__(self, commit):
- Exception.__init__(
- self,
- 'Commit %s was not found among the known merge commits' % (commit,),
- )
- self.commit = commit
-
-
-class Block(object):
- """A rectangular range of commits, indexed by (i1,i2).
-
- The commits block[0,1:] and block[1:,0] are always all known.
- block[0,0] may or may not be known; it is usually unneeded (except
- maybe implicitly).
-
- Members:
-
- name -- the name of the imerge of which this block is part.
-
- len1, len2 -- the dimensions of the block.
-
- """
-
- def __init__(self, git, name, len1, len2):
- self.git = git
- self.name = name
- self.len1 = len1
- self.len2 = len2
-
- def get_merge_state(self):
- """Return the MergeState instance containing this Block."""
-
- raise NotImplementedError()
-
- def get_area(self):
- """Return the area of this block, ignoring the known edges."""
-
- return (self.len1 - 1) * (self.len2 - 1)
-
- def _check_indexes(self, i1, i2):
- if not (0 <= i1 < self.len1):
- raise IndexError('first index (%s) is out of range 0:%d' % (i1, self.len1,))
- if not (0 <= i2 < self.len2):
- raise IndexError('second index (%s) is out of range 0:%d' % (i2, self.len2,))
-
- def _normalize_indexes(self, index):
- """Return a pair of non-negative integers (i1, i2)."""
-
- try:
- (i1, i2) = index
- except TypeError:
- raise IndexError('Block indexing requires exactly two indexes')
-
- if i1 < 0:
- i1 += self.len1
- if i2 < 0:
- i2 += self.len2
-
- self._check_indexes(i1, i2)
- return (i1, i2)
-
- def get_original_indexes(self, i1, i2):
- """Return the original indexes corresponding to (i1,i2) in this block.
-
- This function supports negative indexes."""
-
- return self._normalize_indexes((i1, i2))
-
- def convert_original_indexes(self, i1, i2):
- """Return the indexes in this block corresponding to original indexes (i1,i2).
-
- raise IndexError if they are not within this block. This
- method does not support negative indices."""
-
- return (i1, i2)
-
- def _set_value(self, i1, i2, value):
- """Set the MergeRecord for integer indexes (i1, i2).
-
- i1 and i2 must be non-negative."""
-
- raise NotImplementedError()
-
- def get_value(self, i1, i2):
- """Return the MergeRecord for integer indexes (i1, i2).
-
- i1 and i2 must be non-negative."""
-
- raise NotImplementedError()
-
- def __getitem__(self, index):
- """Return the MergeRecord at (i1, i2) (requires two indexes).
-
- If i1 and i2 are integers but the merge is unknown, return
- None. If either index is a slice, return a SubBlock."""
-
- try:
- (i1, i2) = index
- except TypeError:
- raise IndexError('Block indexing requires exactly two indexes')
- if isinstance(i1, slice) or isinstance(i2, slice):
- return SubBlock(self, i1, i2)
- else:
- return self.get_value(*self._normalize_indexes((i1, i2)))
-
- def __contains__(self, index):
- return self[index].is_known()
-
- def is_blocked(self, i1, i2):
- """Return True iff the specified commit is blocked."""
-
- (i1, i2) = self._normalize_indexes((i1, i2))
- return self[i1, i2].is_blocked()
-
- def is_mergeable(self, i1, i2):
- """Determine whether (i1,i2) can be merged automatically.
-
- If we already have a merge record for (i1,i2), return True.
- Otherwise, attempt a merge (discarding the result)."""
-
- (i1, i2) = self._normalize_indexes((i1, i2))
- if (i1, i2) in self:
- return True
- else:
- sys.stderr.write(
- 'Attempting automerge of %d-%d...' % self.get_original_indexes(i1, i2)
- )
- try:
- self.git.automerge(self[i1, 0].sha1, self[0, i2].sha1)
- sys.stderr.write('success.\n')
- return True
- except AutomaticMergeFailed:
- sys.stderr.write('failure.\n')
- return False
-
- def auto_outline(self):
- """Complete the outline of this Block.
-
- raise UnexpectedMergeFailure if automerging fails."""
-
- # Check that all of the merges go through before recording any
- # of them permanently.
- merges = []
-
- def do_merge(i1, commit1, i2, commit2, msg='Autofilling %d-%d...', record=True):
- if (i1, i2) in self:
- return self[i1, i2].sha1
- (i1orig, i2orig) = self.get_original_indexes(i1, i2)
- sys.stderr.write(msg % (i1orig, i2orig))
- logmsg = 'imerge \'%s\': automatic merge %d-%d' % (self.name, i1orig, i2orig)
- try:
- merge = self.git.automerge(commit1, commit2, msg=logmsg)
- sys.stderr.write('success.\n')
- except AutomaticMergeFailed as e:
- sys.stderr.write('unexpected conflict. Backtracking...\n')
- raise UnexpectedMergeFailure(str(e), i1, i2)
- if record:
- merges.append((i1, i2, merge))
- return merge
-
- i2 = self.len2 - 1
- left = self[0, i2].sha1
- for i1 in range(1, self.len1 - 1):
- left = do_merge(i1, self[i1, 0].sha1, i2, left)
-
- i1 = self.len1 - 1
- above = self[i1, 0].sha1
- for i2 in range(1, self.len2 - 1):
- above = do_merge(i1, above, i2, self[0, i2].sha1)
-
- i1, i2 = self.len1 - 1, self.len2 - 1
- if i1 > 1 and i2 > 1:
- # We will compare two ways of doing the final "vertex" merge:
- # as a continuation of the bottom edge, or as a continuation
- # of the right edge. We only accept it if both approaches
- # succeed and give identical trees.
- vertex_v1 = do_merge(
- i1, self[i1, 0].sha1, i2, left,
- msg='Autofilling %d-%d (first way)...',
- record=False,
- )
- vertex_v2 = do_merge(
- i1, above, i2, self[0, i2].sha1,
- msg='Autofilling %d-%d (second way)...',
- record=False,
- )
- if self.git.get_tree(vertex_v1) == self.git.get_tree(vertex_v2):
- sys.stderr.write(
- 'The two ways of autofilling %d-%d agree.\n'
- % self.get_original_indexes(i1, i2)
- )
- # Everything is OK. Now reparent the actual vertex merge to
- # have above and left as its parents:
- merges.append(
- (i1, i2, self.git.reparent(vertex_v1, [above, left]))
- )
- else:
- sys.stderr.write(
- 'The two ways of autofilling %d-%d do not agree. Backtracking...\n'
- % self.get_original_indexes(i1, i2)
- )
- raise UnexpectedMergeFailure('Inconsistent vertex merges', i1, i2)
- else:
- do_merge(
- i1, above, i2, left,
- msg='Autofilling %d-%d...',
- )
-
- # Done! Now we can record the results:
- sys.stderr.write('Recording autofilled block %s.\n' % (self,))
- for (i1, i2, merge) in merges:
- self[i1, i2].record_merge(merge, MergeRecord.NEW_AUTO)
-
- def auto_fill_micromerge(self):
- """Try to fill the very first micromerge in this block.
-
- Return True iff the attempt was successful."""
-
- assert (1, 1) not in self
- if self.len1 <= 1 or self.len2 <= 1 or self.is_blocked(1, 1):
- return False
-
- i1, i2 = 1, 1
- (i1orig, i2orig) = self.get_original_indexes(i1, i2)
- sys.stderr.write('Attempting to merge %d-%d...' % (i1orig, i2orig))
- logmsg = 'imerge \'%s\': automatic merge %d-%d' % (self.name, i1orig, i2orig)
- try:
- merge = self.git.automerge(
- self[i1, i2 - 1].sha1,
- self[i1 - 1, i2].sha1,
- msg=logmsg,
- )
- sys.stderr.write('success.\n')
- except AutomaticMergeFailed:
- sys.stderr.write('conflict.\n')
- self[i1, i2].record_blocked(True)
- return False
- else:
- self[i1, i2].record_merge(merge, MergeRecord.NEW_AUTO)
- return True
-
- def auto_outline_frontier(self, merge_frontier=None):
- """Try to outline the merge frontier of this block.
-
- Return True iff some progress was made."""
-
- if merge_frontier is None:
- merge_frontier = MergeFrontier.compute_by_bisection(self)
-
- if not merge_frontier:
- # Nothing to do.
- return False
-
- best_block = max(merge_frontier, key=lambda block: block.get_original_indexes(0, 0))
-
- try:
- best_block.auto_outline()
- except UnexpectedMergeFailure as e:
- # One of the merges that we expected to succeed in
- # fact failed.
- merge_frontier.remove_failure(e.i1, e.i2)
- return self.auto_outline_frontier(merge_frontier)
- else:
- f1, f2 = merge_frontier.partition(best_block)
- if f1:
- f1.block.auto_outline_frontier(f1)
- if f2:
- f2.block.auto_outline_frontier(f2)
- return True
-
- def auto_expand_frontier(self):
- merge_state = self.get_merge_state()
- if merge_state.manual:
- return False
- elif merge_state.goal == 'full':
- return self.auto_fill_micromerge()
- else:
- return self.auto_outline_frontier()
-
- # The codes in the 2D array returned from create_diagram()
- MERGE_UNKNOWN = 0
- MERGE_MANUAL = 1
- MERGE_AUTOMATIC = 2
- MERGE_BLOCKED = 3
- MERGE_UNBLOCKED = 4
- MERGE_MASK = 7
-
- # A map {(is_known(), manual, is_blocked()) : integer constant}
- MergeState = {
- (False, False, False): MERGE_UNKNOWN,
- (False, False, True): MERGE_BLOCKED,
- (True, False, True): MERGE_UNBLOCKED,
- (True, True, True): MERGE_UNBLOCKED,
- (True, False, False): MERGE_AUTOMATIC,
- (True, True, False): MERGE_MANUAL,
- }
-
- def create_diagram(self):
- """Generate a diagram of this Block.
-
- The returned diagram, is a nested list of integers forming a 2D array,
- where the integer at diagram[i1][i2] is one of MERGE_UNKNOWN,
- MERGE_MANUAL, MERGE_AUTOMATIC, MERGE_BLOCKED, or MERGE_UNBLOCKED,
- representing the state of the commit at (i1, i2)."""
-
- diagram = [[None for i2 in range(self.len2)] for i1 in range(self.len1)]
-
- for i2 in range(self.len2):
- for i1 in range(self.len1):
- rec = self.get_value(i1, i2)
- c = self.MergeState[
- rec.is_known(), rec.is_manual(), rec.is_blocked()]
- diagram[i1][i2] = c
-
- return diagram
-
- def format_diagram(self, legend=None, diagram=None):
- if legend is None:
- legend = [
- AnsiColor.D_GRAY + '?' + AnsiColor.END,
- AnsiColor.B_GREEN + '*' + AnsiColor.END,
- AnsiColor.B_GREEN + '.' + AnsiColor.END,
- AnsiColor.B_RED + '#' + AnsiColor.END,
- AnsiColor.B_YELLOW + '@' + AnsiColor.END,
- ]
- if diagram is None:
- diagram = self.create_diagram()
- return [
- [legend[diagram[i1][i2]] for i2 in range(self.len2)]
- for i1 in range(self.len1)]
-
- def write(self, f, legend=None, sep='', linesep='\n'):
- diagram = self.format_diagram(legend)
- for i2 in range(self.len2):
- f.write(sep.join(diagram[i1][i2] for i1 in range(self.len1)) + linesep)
-
- def writeppm(self, f):
- f.write('P3\n')
- f.write('%d %d 255\n' % (self.len1, self.len2,))
- legend = ['127 127 0', '0 255 0', '0 127 0', '255 0 0', '127 0 0']
- self.write(f, legend, sep=' ')
-
-
-class SubBlock(Block):
- @staticmethod
- def _convert_to_slice(i, len):
- """Return (start, len) for the specified index.
-
- i may be an integer or a slice with step equal to 1."""
-
- if isinstance(i, int):
- if i < 0:
- i += len
- i = slice(i, i + 1)
- elif isinstance(i, slice):
- if i.step is not None and i.step != 1:
- raise ValueError('Index has a non-zero step size')
- else:
- raise ValueError('Index cannot be converted to a slice')
-
- (start, stop, step) = i.indices(len)
- return (start, stop - start)
-
- def __init__(self, block, slice1, slice2):
- (start1, len1) = self._convert_to_slice(slice1, block.len1)
- (start2, len2) = self._convert_to_slice(slice2, block.len2)
- Block.__init__(self, block.git, block.name, len1, len2)
- if isinstance(block, SubBlock):
- # Peel away one level of indirection:
- self._merge_state = block._merge_state
- self._start1 = start1 + block._start1
- self._start2 = start2 + block._start2
- else:
- assert(isinstance(block, MergeState))
- self._merge_state = block
- self._start1 = start1
- self._start2 = start2
-
- def get_merge_state(self):
- return self._merge_state
-
- def get_original_indexes(self, i1, i2):
- i1, i2 = self._normalize_indexes((i1, i2))
- return self._merge_state.get_original_indexes(
- i1 + self._start1,
- i2 + self._start2,
- )
-
- def convert_original_indexes(self, i1, i2):
- (i1, i2) = self._merge_state.convert_original_indexes(i1, i2)
- if not (
- self._start1 <= i1 < self._start1 + self.len1
- and self._start2 <= i2 < self._start2 + self.len2
- ):
- raise IndexError('Indexes are not within block')
- return (i1 - self._start1, i2 - self._start2)
-
- def _set_value(self, i1, i2, sha1, flags):
- self._check_indexes(i1, i2)
- self._merge_state._set_value(
- i1 + self._start1,
- i2 + self._start2,
- sha1, flags,
- )
-
- def get_value(self, i1, i2):
- self._check_indexes(i1, i2)
- return self._merge_state.get_value(i1 + self._start1, i2 + self._start2)
-
- def __str__(self):
- return '%s[%d:%d,%d:%d]' % (
- self._merge_state,
- self._start1, self._start1 + self.len1,
- self._start2, self._start2 + self.len2,
- )
-
-
-class MissingMergeFailure(Failure):
- def __init__(self, i1, i2):
- Failure.__init__(self, 'Merge %d-%d is not yet done' % (i1, i2))
- self.i1 = i1
- self.i2 = i2
-
-
-class MergeState(Block):
- SOURCE_TABLE = {
- 'auto': MergeRecord.SAVED_AUTO,
- 'manual': MergeRecord.SAVED_MANUAL,
- }
-
- @staticmethod
- def get_scratch_refname(name):
- return 'refs/heads/imerge/%s' % (name,)
-
- @staticmethod
- def _check_no_merges(git, commits):
- multiparent_commits = [
- commit
- for commit in commits
- if len(git.get_commit_parents(commit)) > 1
- ]
- if multiparent_commits:
- raise Failure(
- 'The following commits on the to-be-merged branch are merge commits:\n'
- ' %s\n'
- '--goal=\'rebase\' is not yet supported for branches that include merges.\n'
- % ('\n '.join(multiparent_commits),)
- )
-
- @staticmethod
- def initialize(
- git, name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal=DEFAULT_GOAL, goalopts=None,
- manual=False, branch=None,
- ):
- """Create and return a new MergeState object."""
-
- git.verify_imerge_name_available(name)
- if branch:
- git.check_branch_name_format(branch)
- else:
- branch = name
-
- if goal == 'rebase':
- MergeState._check_no_merges(git, commits2)
-
- return MergeState(
- git, name, merge_base,
- tip1, commits1,
- tip2, commits2,
- MergeRecord.NEW_MANUAL,
- goal=goal, goalopts=goalopts,
- manual=manual,
- branch=branch,
- )
-
- @staticmethod
- def read(git, name):
- (state, merges) = git.read_imerge_state(name)
-
- # Translate sources from strings into MergeRecord constants
- # SAVED_AUTO or SAVED_MANUAL:
- merges = dict((
- ((i1, i2), (sha1, MergeState.SOURCE_TABLE[source]))
- for ((i1, i2), (sha1, source)) in merges.items()
- ))
-
- blockers = state.get('blockers', [])
-
- # Find merge_base, commits1, and commits2:
- (merge_base, source) = merges.pop((0, 0))
- if source != MergeRecord.SAVED_MANUAL:
- raise Failure('Merge base should be manual!')
- commits1 = []
- for i1 in itertools.count(1):
- try:
- (sha1, source) = merges.pop((i1, 0))
- if source != MergeRecord.SAVED_MANUAL:
- raise Failure('Merge %d-0 should be manual!' % (i1,))
- commits1.append(sha1)
- except KeyError:
- break
-
- commits2 = []
- for i2 in itertools.count(1):
- try:
- (sha1, source) = merges.pop((0, i2))
- if source != MergeRecord.SAVED_MANUAL:
- raise Failure('Merge (0,%d) should be manual!' % (i2,))
- commits2.append(sha1)
- except KeyError:
- break
-
- tip1 = state.get('tip1', commits1[-1])
- tip2 = state.get('tip2', commits2[-1])
-
- goal = state['goal']
- if goal not in ALLOWED_GOALS:
- raise Failure('Goal %r, read from state, is not recognized.' % (goal,))
-
- goalopts = state['goalopts']
-
- manual = state['manual']
- branch = state.get('branch', name)
-
- state = MergeState(
- git, name, merge_base,
- tip1, commits1,
- tip2, commits2,
- MergeRecord.SAVED_MANUAL,
- goal=goal, goalopts=goalopts,
- manual=manual,
- branch=branch,
- )
-
- # Now write the rest of the merges to state:
- for ((i1, i2), (sha1, source)) in merges.items():
- if i1 == 0 and i2 >= state.len2:
- raise Failure('Merge 0-%d is missing!' % (state.len2,))
- if i1 >= state.len1 and i2 == 0:
- raise Failure('Merge %d-0 is missing!' % (state.len1,))
- if i1 >= state.len1 or i2 >= state.len2:
- raise Failure(
- 'Merge %d-%d is out of range [0:%d,0:%d]'
- % (i1, i2, state.len1, state.len2)
- )
- state[i1, i2].record_merge(sha1, source)
-
- # Record any blockers:
- for (i1, i2) in blockers:
- state[i1, i2].record_blocked(True)
-
- return state
-
- @staticmethod
- def remove(git, name):
- # If HEAD is the scratch refname, abort any in-progress
- # commits and detach HEAD:
- scratch_refname = MergeState.get_scratch_refname(name)
- if git.get_head_refname() == scratch_refname:
- try:
- git.abort_merge()
- except CalledProcessError:
- pass
- # Detach head so that we can delete scratch_refname:
- git.detach('Detach HEAD from %s' % (scratch_refname,))
-
- # Delete the scratch refname:
- git.delete_ref(
- scratch_refname, 'imerge %s: remove scratch reference' % (name,),
- )
-
- # Remove any references referring to intermediate merges:
- git.delete_imerge_refs(name)
-
- # If this merge was the default, unset the default:
- if git.get_default_imerge_name() == name:
- git.set_default_imerge_name(None)
-
- def __init__(
- self, git, name, merge_base,
- tip1, commits1,
- tip2, commits2,
- source,
- goal=DEFAULT_GOAL, goalopts=None,
- manual=False,
- branch=None,
- ):
- Block.__init__(self, git, name, len(commits1) + 1, len(commits2) + 1)
- self.tip1 = tip1
- self.tip2 = tip2
- self.goal = goal
- self.goalopts = goalopts
- self.manual = bool(manual)
- self.branch = branch or name
-
- # A simulated 2D array. Values are None or MergeRecord instances.
- self._data = [[None] * self.len2 for i1 in range(self.len1)]
-
- self.get_value(0, 0).record_merge(merge_base, source)
- for (i1, commit) in enumerate(commits1, 1):
- self.get_value(i1, 0).record_merge(commit, source)
- for (i2, commit) in enumerate(commits2, 1):
- self.get_value(0, i2).record_merge(commit, source)
-
- def get_merge_state(self):
- return self
-
- def set_goal(self, goal):
- if goal not in ALLOWED_GOALS:
- raise ValueError('%r is not an allowed goal' % (goal,))
-
- if goal == 'rebase':
- self._check_no_merges(
- self.git,
- [self[0, i2].sha1 for i2 in range(1, self.len2)],
- )
-
- self.goal = goal
-
- def _set_value(self, i1, i2, value):
- self._data[i1][i2] = value
-
- def get_value(self, i1, i2):
- value = self._data[i1][i2]
- # Missing values spring to life on first access:
- if value is None:
- value = MergeRecord()
- self._data[i1][i2] = value
- return value
-
- def __contains__(self, index):
- # Avoid creating new MergeRecord objects here.
- (i1, i2) = self._normalize_indexes(index)
- value = self._data[i1][i2]
- return (value is not None) and value.is_known()
-
- def auto_complete_frontier(self):
- """Complete the frontier using automerges.
-
- If progress is blocked before the frontier is complete, raise
- a FrontierBlockedError. Save the state as progress is
- made."""
-
- progress_made = False
- try:
- while True:
- frontier = MergeFrontier.map_known_frontier(self)
- frontier.auto_expand()
- self.save()
- progress_made = True
- except BlockCompleteError:
- return
- except FrontierBlockedError as e:
- self.save()
- if not progress_made:
- # Adjust the error message:
- raise FrontierBlockedError(
- 'No progress was possible; suggest manual merge of %d-%d'
- % (e.i1, e.i2),
- e.i1, e.i2,
- )
- else:
- raise
-
- def find_index(self, commit):
- """Return (i1,i2) for the specified commit.
-
- Raise CommitNotFoundError if it is not known."""
-
- for i2 in range(0, self.len2):
- for i1 in range(0, self.len1):
- if (i1, i2) in self:
- record = self[i1, i2]
- if record.sha1 == commit:
- return (i1, i2)
- raise CommitNotFoundError(commit)
-
- def request_user_merge(self, i1, i2):
- """Prepare the working tree for the user to do a manual merge.
-
- It is assumed that the merges above and to the left of (i1, i2)
- are already done."""
-
- above = self[i1, i2 - 1]
- left = self[i1 - 1, i2]
- if not above.is_known() or not left.is_known():
- raise RuntimeError('The parents of merge %d-%d are not ready' % (i1, i2))
- refname = MergeState.get_scratch_refname(self.name)
- self.git.update_ref(
- refname, above.sha1,
- 'imerge %r: Prepare merge %d-%d' % (self.name, i1, i2,),
- )
- self.git.checkout(refname)
- logmsg = 'imerge \'%s\': manual merge %d-%d' % (self.name, i1, i2)
- try:
- self.git.manualmerge(left.sha1, logmsg)
- except CalledProcessError:
- # We expect an error (otherwise we would have automerged!)
- pass
- sys.stderr.write(
- '\n'
- 'Original first commit:\n'
- )
- self.git.summarize_commit(self[i1, 0].sha1)
- sys.stderr.write(
- '\n'
- 'Original second commit:\n'
- )
- self.git.summarize_commit(self[0, i2].sha1)
- sys.stderr.write(
- '\n'
- 'There was a conflict merging commit %d-%d, shown above.\n'
- 'Please resolve the conflict, commit the result, then type\n'
- '\n'
- ' git-imerge continue\n'
- % (i1, i2)
- )
-
- def incorporate_manual_merge(self, commit):
- """Record commit as a manual merge of its parents.
-
- Return the indexes (i1,i2) where it was recorded. If the
- commit is not usable for some reason, raise
- ManualMergeUnusableError."""
-
- parents = self.git.get_commit_parents(commit)
- if len(parents) < 2:
- raise ManualMergeUnusableError('it is not a merge', commit)
- if len(parents) > 2:
- raise ManualMergeUnusableError('it is an octopus merge', commit)
- # Find the parents among our contents...
- try:
- (i1first, i2first) = self.find_index(parents[0])
- (i1second, i2second) = self.find_index(parents[1])
- except CommitNotFoundError:
- raise ManualMergeUnusableError(
- 'its parents are not known merge commits', commit,
- )
- swapped = False
- if i1first < i1second:
- # Swap parents to make the parent from above the first parent:
- (i1first, i2first, i1second, i2second) = (i1second, i2second, i1first, i2first)
- swapped = True
- if i1first != i1second + 1 or i2first != i2second - 1:
- raise ManualMergeUnusableError(
- 'it is not a pairwise merge of adjacent parents', commit,
- )
- if swapped:
- # Create a new merge with the parents in the conventional order:
- commit = self.git.reparent(commit, [parents[1], parents[0]])
-
- i1, i2 = i1first, i2second
- self[i1, i2].record_merge(commit, MergeRecord.NEW_MANUAL)
- return (i1, i2)
-
- def incorporate_user_merge(self, edit_log_msg=None):
- """If the user has done a merge for us, incorporate the results.
-
- If the scratch reference refs/heads/imerge/NAME exists and is
- checked out, first check if there are staged changes that can
- be committed. Then try to incorporate the current commit into
- this MergeState, delete the reference, and return (i1,i2)
- corresponding to the merge. If the scratch reference does not
- exist, raise NoManualMergeError(). If the scratch reference
- exists but cannot be used, raise a ManualMergeUnusableError.
- If there are unstaged changes in the working tree, emit an
- error message and raise UncleanWorkTreeError.
-
- """
-
- refname = MergeState.get_scratch_refname(self.name)
-
- try:
- commit = self.git.get_commit_sha1(refname)
- except ValueError:
- raise NoManualMergeError('Reference %s does not exist.' % (refname,))
-
- head_name = self.git.get_head_refname()
- if head_name is None:
- raise NoManualMergeError('HEAD is currently detached.')
- elif head_name != refname:
- # This should not usually happen. The scratch reference
- # exists, but it is not current. Perhaps the user gave up on
- # an attempted merge then switched to another branch. We want
- # to delete refname, but only if it doesn't contain any
- # content that we don't already know.
- try:
- self.find_index(commit)
- except CommitNotFoundError:
- # It points to a commit that we don't have in our records.
- raise Failure(
- 'The scratch reference, %(refname)s, already exists but is not\n'
- 'checked out. If it points to a merge commit that you would like\n'
- 'to use, please check it out using\n'
- '\n'
- ' git checkout %(refname)s\n'
- '\n'
- 'and then try to continue again. If it points to a commit that is\n'
- 'unneeded, then please delete the reference using\n'
- '\n'
- ' git update-ref -d %(refname)s\n'
- '\n'
- 'and then continue.'
- % dict(refname=refname)
- )
- else:
- # It points to a commit that is already recorded. We can
- # delete it without losing any information.
- self.git.delete_ref(
- refname,
- 'imerge %r: Remove obsolete scratch reference' % (self.name,),
- )
- sys.stderr.write(
- '%s did not point to a new merge; it has been deleted.\n'
- % (refname,)
- )
- raise NoManualMergeError(
- 'Reference %s was not checked out.' % (refname,)
- )
-
- # If we reach this point, then the scratch reference exists and is
- # checked out. Now check whether there is staged content that
- # can be committed:
- if self.git.commit_user_merge(edit_log_msg=edit_log_msg):
- commit = self.git.get_commit_sha1('HEAD')
-
- self.git.require_clean_work_tree('proceed')
-
- merge_frontier = MergeFrontier.map_known_frontier(self)
-
- # This might throw ManualMergeUnusableError:
- (i1, i2) = self.incorporate_manual_merge(commit)
-
- # Now detach head so that we can delete refname.
- self.git.detach('Detach HEAD from %s' % (refname,))
-
- self.git.delete_ref(
- refname, 'imerge %s: remove scratch reference' % (self.name,),
- )
-
- try:
- # This might throw NotABlockingCommitError:
- unblocked_block = merge_frontier.get_affected_blocker_block(i1, i2)
- unblocked_block[1, 1].record_blocked(False)
- sys.stderr.write(
- 'Merge has been recorded for merge %d-%d.\n'
- % unblocked_block.get_original_indexes(1, 1)
- )
- except NotABlockingCommitError:
- raise
- finally:
- self.save()
-
- def _set_refname(self, refname, commit, force=False):
- try:
- ref_oldval = self.git.get_commit_sha1(refname)
- except ValueError:
- # refname doesn't already exist; simply point it at commit:
- self.git.update_ref(refname, commit, 'imerge: recording final merge')
- self.git.checkout(refname, quiet=True)
- else:
- # refname already exists. This has two ramifications:
- # 1. HEAD might point at it
- # 2. We may only fast-forward it (unless force is set)
- head_refname = self.git.get_head_refname()
-
- if not force and not self.git.is_ancestor(ref_oldval, commit):
- raise Failure(
- '%s cannot be fast-forwarded to %s!' % (refname, commit)
- )
-
- if head_refname == refname:
- self.git.reset_hard(commit)
- else:
- self.git.update_ref(
- refname, commit, 'imerge: recording final merge',
- )
- self.git.checkout(refname, quiet=True)
-
- def simplify_to_full(self, refname, force=False):
- for i1 in range(1, self.len1):
- for i2 in range(1, self.len2):
- if not (i1, i2) in self:
- raise Failure(
- 'Cannot simplify to "full" because '
- 'merge %d-%d is not yet done'
- % (i1, i2)
- )
-
- self._set_refname(refname, self[-1, -1].sha1, force=force)
-
- def simplify_to_rebase_with_history(self, refname, force=False):
- i1 = self.len1 - 1
- for i2 in range(1, self.len2):
- if not (i1, i2) in self:
- raise Failure(
- 'Cannot simplify to rebase-with-history because '
- 'merge %d-%d is not yet done'
- % (i1, i2)
- )
-
- commit = self[i1, 0].sha1
- for i2 in range(1, self.len2):
- orig = self[0, i2].sha1
- tree = self.git.get_tree(self[i1, i2].sha1)
-
- # Create a commit, copying the old log message:
- msg = (
- self.git.get_log_message(orig).rstrip('\n')
- + '\n\n(rebased-with-history from commit %s)\n' % orig
- )
- commit = self.git.commit_tree(tree, [commit, orig], msg=msg)
-
- self._set_refname(refname, commit, force=force)
-
- def simplify_to_border(
- self, refname,
- with_history1=False, with_history2=False, force=False,
- ):
- i1 = self.len1 - 1
- for i2 in range(1, self.len2):
- if not (i1, i2) in self:
- raise Failure(
- 'Cannot simplify to border because '
- 'merge %d-%d is not yet done'
- % (i1, i2)
- )
-
- i2 = self.len2 - 1
- for i1 in range(1, self.len1):
- if not (i1, i2) in self:
- raise Failure(
- 'Cannot simplify to border because '
- 'merge %d-%d is not yet done'
- % (i1, i2)
- )
-
- i1 = self.len1 - 1
- commit = self[i1, 0].sha1
- for i2 in range(1, self.len2 - 1):
- orig = self[0, i2].sha1
- tree = self.git.get_tree(self[i1, i2].sha1)
-
- # Create a commit, copying the old log message:
- if with_history2:
- parents = [commit, orig]
- msg = (
- self.git.get_log_message(orig).rstrip('\n')
- + '\n\n(rebased-with-history from commit %s)\n' % (orig,)
- )
- else:
- parents = [commit]
- msg = (
- self.git.get_log_message(orig).rstrip('\n')
- + '\n\n(rebased from commit %s)\n' % (orig,)
- )
-
- commit = self.git.commit_tree(tree, parents, msg=msg)
- commit1 = commit
-
- i2 = self.len2 - 1
- commit = self[0, i2].sha1
- for i1 in range(1, self.len1 - 1):
- orig = self[i1, 0].sha1
- tree = self.git.get_tree(self[i1, i2].sha1)
-
- # Create a commit, copying the old log message:
- if with_history1:
- parents = [orig, commit]
- msg = (
- self.git.get_log_message(orig).rstrip('\n')
- + '\n\n(rebased-with-history from commit %s)\n' % (orig,)
- )
- else:
- parents = [commit]
- msg = (
- self.git.get_log_message(orig).rstrip('\n')
- + '\n\n(rebased from commit %s)\n' % (orig,)
- )
-
- commit = self.git.commit_tree(tree, parents, msg=msg)
- commit2 = commit
-
- # Construct the apex commit:
- tree = self.git.get_tree(self[-1, -1].sha1)
- msg = (
- 'Merge %s into %s (using imerge border)'
- % (self.tip2, self.tip1)
- )
-
- commit = self.git.commit_tree(tree, [commit1, commit2], msg=msg)
-
- # Update the reference:
- self._set_refname(refname, commit, force=force)
-
- def _simplify_to_path(self, refname, base, path, force=False):
- """Simplify based on path and set refname to the result.
-
- The base and path arguments are defined similarly to
- create_commit_chain(), except that instead of SHA-1s they may
- optionally represent commits via (i1, i2) tuples.
-
- """
-
- def to_sha1(arg):
- if type(arg) is tuple:
- commit_record = self[arg]
- if not commit_record.is_known():
- raise MissingMergeFailure(*arg)
- return commit_record.sha1
- else:
- return arg
-
- base_sha1 = to_sha1(base)
- path_sha1 = []
- for (commit, metadata) in path:
- commit_sha1 = to_sha1(commit)
- metadata_sha1 = to_sha1(metadata)
- path_sha1.append((commit_sha1, metadata_sha1))
-
- # A path simplification is allowed to discard history, as long
- # as the *pre-simplification* apex commit is a descendant of
- # the branch to be moved.
- if path:
- apex = path_sha1[-1][0]
- else:
- apex = base_sha1
-
- if not force and not self.git.is_ff(refname, apex):
- raise Failure(
- '%s cannot be updated to %s without discarding history.\n'
- 'Use --force if you are sure, or choose a different reference'
- % (refname, apex,)
- )
-
- # The update is OK, so here we can set force=True:
- self._set_refname(
- refname,
- self.git.create_commit_chain(base_sha1, path_sha1),
- force=True,
- )
-
- def simplify_to_rebase(self, refname, force=False):
- i1 = self.len1 - 1
- path = [
- ((i1, i2), (0, i2))
- for i2 in range(1, self.len2)
- ]
-
- try:
- self._simplify_to_path(refname, (i1, 0), path, force=force)
- except MissingMergeFailure as e:
- raise Failure(
- 'Cannot simplify to %s because merge %d-%d is not yet done'
- % (self.goal, e.i1, e.i2)
- )
-
- def simplify_to_drop(self, refname, force=False):
- try:
- base = self.goalopts['base']
- except KeyError:
- raise Failure('Goal "drop" was not initialized correctly')
-
- i2 = self.len2 - 1
- path = [
- ((i1, i2), (i1, 0))
- for i1 in range(1, self.len1)
- ]
-
- try:
- self._simplify_to_path(refname, base, path, force=force)
- except MissingMergeFailure as e:
- raise Failure(
- 'Cannot simplify to rebase because merge %d-%d is not yet done'
- % (e.i1, e.i2)
- )
-
- def simplify_to_revert(self, refname, force=False):
- self.simplify_to_rebase(refname, force=force)
-
- def simplify_to_merge(self, refname, force=False):
- if not (-1, -1) in self:
- raise Failure(
- 'Cannot simplify to merge because merge %d-%d is not yet done'
- % (self.len1 - 1, self.len2 - 1)
- )
- tree = self.git.get_tree(self[-1, -1].sha1)
- parents = [self[-1, 0].sha1, self[0, -1].sha1]
-
- # Create a preliminary commit with a generic commit message:
- sha1 = self.git.commit_tree(
- tree, parents,
- msg='Merge %s into %s (using imerge)' % (self.tip2, self.tip1),
- )
-
- self._set_refname(refname, sha1, force=force)
-
- # Now let the user edit the commit log message:
- self.git.amend()
-
- def simplify(self, refname, force=False):
- """Simplify this MergeState and save the result to refname.
-
- The merge must be complete before calling this method."""
-
- if self.goal == 'full':
- self.simplify_to_full(refname, force=force)
- elif self.goal == 'rebase':
- self.simplify_to_rebase(refname, force=force)
- elif self.goal == 'rebase-with-history':
- self.simplify_to_rebase_with_history(refname, force=force)
- elif self.goal == 'border':
- self.simplify_to_border(refname, force=force)
- elif self.goal == 'border-with-history':
- self.simplify_to_border(refname, with_history2=True, force=force)
- elif self.goal == 'border-with-history2':
- self.simplify_to_border(
- refname, with_history1=True, with_history2=True, force=force,
- )
- elif self.goal == 'drop':
- self.simplify_to_drop(refname, force=force)
- elif self.goal == 'revert':
- self.simplify_to_revert(refname, force=force)
- elif self.goal == 'merge':
- self.simplify_to_merge(refname, force=force)
- else:
- raise ValueError('Invalid value for goal (%r)' % (self.goal,))
-
- def save(self):
- """Write the current MergeState to the repository."""
-
- blockers = []
- for i2 in range(0, self.len2):
- for i1 in range(0, self.len1):
- record = self[i1, i2]
- if record.is_known():
- record.save(self.git, self.name, i1, i2)
- if record.is_blocked():
- blockers.append((i1, i2))
-
- state = dict(
- version='.'.join(str(i) for i in STATE_VERSION),
- blockers=blockers,
- tip1=self.tip1, tip2=self.tip2,
- goal=self.goal,
- goalopts=self.goalopts,
- manual=self.manual,
- branch=self.branch,
- )
- self.git.write_imerge_state_dict(self.name, state)
-
- def __str__(self):
- return 'MergeState(\'%s\', tip1=\'%s\', tip2=\'%s\', goal=\'%s\')' % (
- self.name, self.tip1, self.tip2, self.goal,
- )
-
-
-def choose_merge_name(git, name):
- names = list(git.iter_existing_imerge_names())
-
- # If a name was specified, try to use it and fail if not possible:
- if name is not None:
- if name not in names:
- raise Failure('There is no incremental merge called \'%s\'!' % (name,))
- if len(names) > 1:
- # Record this as the new default:
- git.set_default_imerge_name(name)
- return name
-
- # A name was not specified. Try to use the default name:
- default_name = git.get_default_imerge_name()
- if default_name:
- if git.check_imerge_exists(default_name):
- return default_name
- else:
- # There's no reason to keep the invalid default around:
- git.set_default_imerge_name(None)
- raise Failure(
- 'Warning: The default incremental merge \'%s\' has disappeared.\n'
- '(The setting imerge.default has been cleared.)\n'
- 'Please try again.'
- % (default_name,)
- )
-
- # If there is exactly one imerge, set it to be the default and use it.
- if len(names) == 1 and git.check_imerge_exists(names[0]):
- return names[0]
-
- raise Failure('Please select an incremental merge using --name')
-
-
-def read_merge_state(git, name=None):
- return MergeState.read(git, choose_merge_name(git, name))
-
-
-def cmd_list(parser, options):
- git = GitRepository()
- names = list(git.iter_existing_imerge_names())
- default_merge = git.get_default_imerge_name()
- if not default_merge and len(names) == 1:
- default_merge = names[0]
- for name in names:
- if name == default_merge:
- sys.stdout.write('* %s\n' % (name,))
- else:
- sys.stdout.write(' %s\n' % (name,))
-
-
-def cmd_init(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
-
- if not options.name:
- parser.error(
- 'Please specify the --name to be used for this incremental merge'
- )
- tip1 = git.get_head_refname(short=True) or 'HEAD'
- tip2 = options.tip2
- try:
- (merge_base, commits1, commits2) = git.get_boundaries(
- tip1, tip2, options.first_parent,
- )
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
-
- merge_state = MergeState.initialize(
- git, options.name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal=options.goal, manual=options.manual,
- branch=(options.branch or options.name),
- )
- merge_state.save()
- if len(list(git.iter_existing_imerge_names())) > 1:
- git.set_default_imerge_name(options.name)
-
-
-def cmd_start(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
-
- if not options.name:
- parser.error(
- 'Please specify the --name to be used for this incremental merge'
- )
- tip1 = git.get_head_refname(short=True) or 'HEAD'
- tip2 = options.tip2
-
- try:
- (merge_base, commits1, commits2) = git.get_boundaries(
- tip1, tip2, options.first_parent,
- )
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
-
- merge_state = MergeState.initialize(
- git, options.name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal=options.goal, manual=options.manual,
- branch=(options.branch or options.name),
- )
- merge_state.save()
- if len(list(git.iter_existing_imerge_names())) > 1:
- git.set_default_imerge_name(options.name)
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- merge_state.request_user_merge(e.i1, e.i2)
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_merge(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
-
- tip2 = options.tip2
-
- if options.name:
- name = options.name
- else:
- # By default, name the imerge after the branch being merged:
- name = tip2
- git.check_imerge_name_format(name)
-
- tip1 = git.get_head_refname(short=True)
- if tip1:
- if not options.branch:
- # See if we can store the result to the checked-out branch:
- try:
- git.check_branch_name_format(tip1)
- except InvalidBranchNameError:
- pass
- else:
- options.branch = tip1
- else:
- tip1 = 'HEAD'
-
- if not options.branch:
- if options.name:
- options.branch = options.name
- else:
- parser.error(
- 'HEAD is not a simple branch. '
- 'Please specify --branch for storing results.'
- )
-
- try:
- (merge_base, commits1, commits2) = git.get_boundaries(
- tip1, tip2, options.first_parent,
- )
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
- except NothingToDoError as e:
- sys.stdout.write('Already up-to-date.\n')
- sys.exit(0)
-
- merge_state = MergeState.initialize(
- git, name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal=options.goal, manual=options.manual,
- branch=options.branch,
- )
- merge_state.save()
- if len(list(git.iter_existing_imerge_names())) > 1:
- git.set_default_imerge_name(name)
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- merge_state.request_user_merge(e.i1, e.i2)
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_rebase(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
-
- tip1 = options.tip1
-
- tip2 = git.get_head_refname(short=True)
- if tip2:
- if not options.branch:
- # See if we can store the result to the current branch:
- try:
- git.check_branch_name_format(tip2)
- except InvalidBranchNameError:
- pass
- else:
- options.branch = tip2
- if not options.name:
- # By default, name the imerge after the branch being rebased:
- options.name = tip2
- else:
- tip2 = git.rev_parse('HEAD')
-
- if not options.name:
- parser.error(
- 'The checked-out branch could not be used as the imerge name.\n'
- 'Please use the --name option.'
- )
-
- if not options.branch:
- if options.name:
- options.branch = options.name
- else:
- parser.error(
- 'HEAD is not a simple branch. '
- 'Please specify --branch for storing results.'
- )
-
- try:
- (merge_base, commits1, commits2) = git.get_boundaries(
- tip1, tip2, options.first_parent,
- )
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
- except NothingToDoError as e:
- sys.stdout.write('Already up-to-date.\n')
- sys.exit(0)
-
- merge_state = MergeState.initialize(
- git, options.name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal=options.goal, manual=options.manual,
- branch=options.branch,
- )
- merge_state.save()
- if len(list(git.iter_existing_imerge_names())) > 1:
- git.set_default_imerge_name(options.name)
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- merge_state.request_user_merge(e.i1, e.i2)
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_drop(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
-
- m = re.match(r'^(?P<start>.*[^\.])(?P<sep>\.{2,})(?P<end>[^\.].*)$', options.range)
- if m:
- if m.group('sep') != '..':
- parser.error(
- 'Range must either be a single commit '
- 'or in the form "commit..commit"'
- )
- start = git.rev_parse(m.group('start'))
- end = git.rev_parse(m.group('end'))
- else:
- end = git.rev_parse(options.range)
- start = git.rev_parse('%s^' % (end,))
-
- try:
- to_drop = git.linear_ancestry(start, end, options.first_parent)
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
-
- # Suppose we want to drop commits 2 and 3 in the branch below.
- # Then we set up an imerge as follows:
- #
- # o - 0 - 1 - 2 - 3 - 4 - 5 - 6 ← tip1
- # |
- # 3⁻¹
- # |
- # 2⁻¹
- #
- # ↑
- # tip2
- #
- # We first use imerge to rebase tip1 onto tip2, then we simplify
- # by discarding the sequence (2, 3, 3⁻¹, 2⁻¹) (which together are
- # a NOOP). In this case, goalopts would have the following
- # contents:
- #
- # goalopts['base'] = rev_parse(commit1)
-
- tip1 = git.get_head_refname(short=True)
- if tip1:
- if not options.branch:
- # See if we can store the result to the current branch:
- try:
- git.check_branch_name_format(tip1)
- except InvalidBranchNameError:
- pass
- else:
- options.branch = tip1
- if not options.name:
- # By default, name the imerge after the branch being rebased:
- options.name = tip1
- else:
- tip1 = git.rev_parse('HEAD')
-
- if not options.name:
- parser.error(
- 'The checked-out branch could not be used as the imerge name.\n'
- 'Please use the --name option.'
- )
-
- if not options.branch:
- if options.name:
- options.branch = options.name
- else:
- parser.error(
- 'HEAD is not a simple branch. '
- 'Please specify --branch for storing results.'
- )
-
- # Create a branch based on end that contains the inverse of the
- # commits that we want to drop. This will be tip2:
-
- git.checkout(end)
- for commit in reversed(to_drop):
- git.revert(commit)
-
- tip2 = git.rev_parse('HEAD')
-
- try:
- (merge_base, commits1, commits2) = git.get_boundaries(
- tip1, tip2, options.first_parent,
- )
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
- except NothingToDoError as e:
- sys.stdout.write('Already up-to-date.\n')
- sys.exit(0)
-
- merge_state = MergeState.initialize(
- git, options.name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal='drop', goalopts={'base' : start},
- manual=options.manual,
- branch=options.branch,
- )
- merge_state.save()
- if len(list(git.iter_existing_imerge_names())) > 1:
- git.set_default_imerge_name(options.name)
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- merge_state.request_user_merge(e.i1, e.i2)
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_revert(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
-
- m = re.match(r'^(?P<start>.*[^\.])(?P<sep>\.{2,})(?P<end>[^\.].*)$', options.range)
- if m:
- if m.group('sep') != '..':
- parser.error(
- 'Range must either be a single commit '
- 'or in the form "commit..commit"'
- )
- start = git.rev_parse(m.group('start'))
- end = git.rev_parse(m.group('end'))
- else:
- end = git.rev_parse(options.range)
- start = git.rev_parse('%s^' % (end,))
-
- try:
- to_revert = git.linear_ancestry(start, end, options.first_parent)
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
-
- # Suppose we want to revert commits 2 and 3 in the branch below.
- # Then we set up an imerge as follows:
- #
- # o - 0 - 1 - 2 - 3 - 4 - 5 - 6 ← tip1
- # |
- # 3⁻¹
- # |
- # 2⁻¹
- #
- # ↑
- # tip2
- #
- # Then we use imerge to rebase tip2 onto tip1.
-
- tip1 = git.get_head_refname(short=True)
- if tip1:
- if not options.branch:
- # See if we can store the result to the current branch:
- try:
- git.check_branch_name_format(tip1)
- except InvalidBranchNameError:
- pass
- else:
- options.branch = tip1
- if not options.name:
- # By default, name the imerge after the branch being rebased:
- options.name = tip1
- else:
- tip1 = git.rev_parse('HEAD')
-
- if not options.name:
- parser.error(
- 'The checked-out branch could not be used as the imerge name.\n'
- 'Please use the --name option.'
- )
-
- if not options.branch:
- if options.name:
- options.branch = options.name
- else:
- parser.error(
- 'HEAD is not a simple branch. '
- 'Please specify --branch for storing results.'
- )
-
- # Create a branch based on end that contains the inverse of the
- # commits that we want to drop. This will be tip2:
-
- git.checkout(end)
- for commit in reversed(to_revert):
- git.revert(commit)
-
- tip2 = git.rev_parse('HEAD')
-
- try:
- (merge_base, commits1, commits2) = git.get_boundaries(
- tip1, tip2, options.first_parent,
- )
- except NonlinearAncestryError as e:
- if options.first_parent:
- parser.error(str(e))
- else:
- parser.error('%s\nPerhaps use "--first-parent"?' % (e,))
- except NothingToDoError as e:
- sys.stdout.write('Already up-to-date.\n')
- sys.exit(0)
-
- merge_state = MergeState.initialize(
- git, options.name, merge_base,
- tip1, commits1,
- tip2, commits2,
- goal='revert',
- manual=options.manual,
- branch=options.branch,
- )
- merge_state.save()
- if len(list(git.iter_existing_imerge_names())) > 1:
- git.set_default_imerge_name(options.name)
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- merge_state.request_user_merge(e.i1, e.i2)
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_remove(parser, options):
- git = GitRepository()
- MergeState.remove(git, choose_merge_name(git, options.name))
-
-
-def cmd_continue(parser, options):
- git = GitRepository()
- merge_state = read_merge_state(git, options.name)
- try:
- merge_state.incorporate_user_merge(edit_log_msg=options.edit)
- except NoManualMergeError:
- pass
- except NotABlockingCommitError as e:
- raise Failure(str(e))
- except ManualMergeUnusableError as e:
- raise Failure(str(e))
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- merge_state.request_user_merge(e.i1, e.i2)
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_record(parser, options):
- git = GitRepository()
- merge_state = read_merge_state(git, options.name)
- try:
- merge_state.incorporate_user_merge(edit_log_msg=options.edit)
- except NoManualMergeError as e:
- raise Failure(str(e))
- except NotABlockingCommitError:
- raise Failure(str(e))
- except ManualMergeUnusableError as e:
- raise Failure(str(e))
-
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- pass
- else:
- sys.stderr.write('Merge is complete!\n')
-
-
-def cmd_autofill(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
- merge_state = read_merge_state(git, options.name)
- with git.temporary_head(message='imerge: restoring'):
- try:
- merge_state.auto_complete_frontier()
- except FrontierBlockedError as e:
- raise Failure(str(e))
-
-
-def cmd_simplify(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
- merge_state = read_merge_state(git, options.name)
- merge_frontier = MergeFrontier.map_known_frontier(merge_state)
- if not merge_frontier.is_complete():
- raise Failure('Merge %s is not yet complete!' % (merge_state.name,))
- refname = 'refs/heads/%s' % ((options.branch or merge_state.branch),)
- if options.goal is not None:
- merge_state.set_goal(options.goal)
- merge_state.save()
- merge_state.simplify(refname, force=options.force)
-
-
-def cmd_finish(parser, options):
- git = GitRepository()
- git.require_clean_work_tree('proceed')
- merge_state = read_merge_state(git, options.name)
- merge_frontier = MergeFrontier.map_known_frontier(merge_state)
- if not merge_frontier.is_complete():
- raise Failure('Merge %s is not yet complete!' % (merge_state.name,))
- refname = 'refs/heads/%s' % ((options.branch or merge_state.branch),)
- if options.goal is not None:
- merge_state.set_goal(options.goal)
- merge_state.save()
- merge_state.simplify(refname, force=options.force)
- MergeState.remove(git, merge_state.name)
-
-
-def cmd_diagram(parser, options):
- git = GitRepository()
- if not (options.commits or options.frontier):
- options.frontier = True
- if not (options.color or (options.color is None and sys.stdout.isatty())):
- AnsiColor.disable()
-
- merge_state = read_merge_state(git, options.name)
- if options.commits:
- merge_state.write(sys.stdout)
- sys.stdout.write('\n')
- if options.frontier:
- merge_frontier = MergeFrontier.map_known_frontier(merge_state)
- merge_frontier.write(sys.stdout)
- sys.stdout.write('\n')
- if options.html:
- merge_frontier = MergeFrontier.map_known_frontier(merge_state)
- html = open(options.html, 'w')
- merge_frontier.write_html(html, merge_state.name)
- html.close()
- sys.stdout.write(
- 'Key:\n'
- )
- if options.frontier:
- sys.stdout.write(
- ' |,-,+ = rectangles forming current merge frontier\n'
- )
- sys.stdout.write(
- ' * = merge done manually\n'
- ' . = merge done automatically\n'
- ' # = conflict that is currently blocking progress\n'
- ' @ = merge was blocked but has been resolved\n'
- ' ? = no merge recorded\n'
- '\n'
- )
-
-
-def reparent_recursively(git, start_commit, parents, end_commit):
- """Change the parents of start_commit and its descendants.
-
- Change start_commit to have the specified parents, and reparent
- all commits on the ancestry path between start_commit and
- end_commit accordingly. Return the replacement end_commit.
- start_commit, parents, and end_commit must all be resolved OIDs.
-
- """
-
- # A map {old_oid : new_oid} keeping track of which replacements
- # have to be made:
- replacements = {}
-
- # Reparent start_commit:
- replacements[start_commit] = git.reparent(start_commit, parents)
-
- for (commit, parents) in git.rev_list_with_parents(
- '--ancestry-path', '--topo-order', '--reverse',
- '%s..%s' % (start_commit, end_commit)
- ):
- parents = [replacements.get(p, p) for p in parents]
- replacements[commit] = git.reparent(commit, parents)
-
- try:
- return replacements[end_commit]
- except KeyError:
- raise ValueError(
- "%s is not an ancestor of %s" % (start_commit, end_commit),
- )
-
-
-def cmd_reparent(parser, options):
- git = GitRepository()
- try:
- commit = git.get_commit_sha1(options.commit)
- except ValueError:
- sys.exit('%s is not a valid commit', options.commit)
-
- try:
- head = git.get_commit_sha1('HEAD')
- except ValueError:
- sys.exit('HEAD is not a valid commit')
-
- try:
- parents = [git.get_commit_sha1(p) for p in options.parents]
- except ValueError as e:
- sys.exit(e.message)
-
- sys.stderr.write('Reparenting %s..HEAD\n' % (options.commit,))
-
- try:
- new_head = reparent_recursively(git, commit, parents, head)
- except ValueError as e:
- sys.exit(e.message)
-
- sys.stdout.write('%s\n' % (new_head,))
-
-
-def main(args):
- NAME_INIT_HELP = 'name to use for this incremental merge'
-
- def add_name_argument(subparser, help=None):
- if help is None:
- subcommand = subparser.prog.split()[1]
- help = 'name of incremental merge to {0}'.format(subcommand)
-
- subparser.add_argument(
- '--name', action='store', default=None, help=help,
- )
-
- def add_goal_argument(subparser, default=DEFAULT_GOAL):
- help = 'the goal of the incremental merge'
- if default is None:
- help = (
- 'the type of simplification to be made '
- '(default is the value provided to "init" or "start")'
- )
- subparser.add_argument(
- '--goal',
- action='store', default=default,
- choices=ALLOWED_GOALS,
- help=help,
- )
-
- def add_branch_argument(subparser):
- subcommand = subparser.prog.split()[1]
- help = 'the name of the branch to which the result will be stored'
- if subcommand in ['simplify', 'finish']:
- help = (
- 'the name of the branch to which to store the result '
- '(default is the value provided to "init" or "start" if any; '
- 'otherwise the name of the merge). '
- 'If BRANCH already exists then it must be able to be '
- 'fast-forwarded to the result unless the --force option is '
- 'specified.'
- )
- subparser.add_argument(
- '--branch',
- action='store', default=None,
- help=help,
- )
-
- def add_manual_argument(subparser):
- subparser.add_argument(
- '--manual',
- action='store_true', default=False,
- help=(
- 'ask the user to complete all merges manually, even when they '
- 'appear conflict-free. This option disables the usual bisection '
- 'algorithm and causes the full incremental merge diagram to be '
- 'completed.'
- ),
- )
-
- def add_first_parent_argument(subparser, default=None):
- subcommand = subparser.prog.split()[1]
- help = (
- 'handle only the first parent commits '
- '(this option is currently required if the history is nonlinear)'
- )
- if subcommand in ['merge', 'rebase']:
- help = argparse.SUPPRESS
- subparser.add_argument(
- '--first-parent', action='store_true', default=default, help=help,
- )
-
- def add_tip2_argument(subparser):
- subparser.add_argument(
- 'tip2', action='store', metavar='branch',
- help='the tip of the branch to be merged into HEAD',
- )
-
- parser = argparse.ArgumentParser(
- description=__doc__,
- formatter_class=argparse.RawDescriptionHelpFormatter,
- )
- subparsers = parser.add_subparsers(dest='subcommand', help='sub-command')
-
- subparser = subparsers.add_parser(
- 'start',
- help=(
- 'start a new incremental merge '
- '(equivalent to "init" followed by "continue")'
- ),
- )
- add_name_argument(subparser, help=NAME_INIT_HELP)
- add_goal_argument(subparser)
- add_branch_argument(subparser)
- add_manual_argument(subparser)
- add_first_parent_argument(subparser)
- add_tip2_argument(subparser)
-
- subparser = subparsers.add_parser(
- 'merge',
- help='start a simple merge via incremental merge',
- )
- add_name_argument(subparser, help=NAME_INIT_HELP)
- add_goal_argument(subparser, default='merge')
- add_branch_argument(subparser)
- add_manual_argument(subparser)
- add_first_parent_argument(subparser, default=True)
- add_tip2_argument(subparser)
-
- subparser = subparsers.add_parser(
- 'rebase',
- help='start a simple rebase via incremental merge',
- )
- add_name_argument(subparser, help=NAME_INIT_HELP)
- add_goal_argument(subparser, default='rebase')
- add_branch_argument(subparser)
- add_manual_argument(subparser)
- add_first_parent_argument(subparser, default=True)
- subparser.add_argument(
- 'tip1', action='store', metavar='branch',
- help=(
- 'the tip of the branch onto which the current branch should '
- 'be rebased'
- ),
- )
-
- subparser = subparsers.add_parser(
- 'drop',
- help='drop one or more commits via incremental merge',
- )
- add_name_argument(subparser, help=NAME_INIT_HELP)
- add_branch_argument(subparser)
- add_manual_argument(subparser)
- add_first_parent_argument(subparser, default=True)
- subparser.add_argument(
- 'range', action='store', metavar='[commit | commit..commit]',
- help=(
- 'the commit or range of commits that should be dropped'
- ),
- )
-
- subparser = subparsers.add_parser(
- 'revert',
- help='revert one or more commits via incremental merge',
- )
- add_name_argument(subparser, help=NAME_INIT_HELP)
- add_branch_argument(subparser)
- add_manual_argument(subparser)
- add_first_parent_argument(subparser, default=True)
- subparser.add_argument(
- 'range', action='store', metavar='[commit | commit..commit]',
- help=(
- 'the commit or range of commits that should be reverted'
- ),
- )
-
- subparser = subparsers.add_parser(
- 'continue',
- help=(
- 'record the merge at branch imerge/NAME '
- 'and start the next step of the merge '
- '(equivalent to "record" followed by "autofill" '
- 'and then sets up the working copy with the next '
- 'conflict that has to be resolved manually)'
- ),
- )
- add_name_argument(subparser)
- subparser.set_defaults(edit=None)
- subparser.add_argument(
- '--edit', '-e', dest='edit', action='store_true',
- help='commit staged changes with the --edit option',
- )
- subparser.add_argument(
- '--no-edit', dest='edit', action='store_false',
- help='commit staged changes with the --no-edit option',
- )
-
- subparser = subparsers.add_parser(
- 'finish',
- help=(
- 'simplify then remove a completed incremental merge '
- '(equivalent to "simplify" followed by "remove")'
- ),
- )
- add_name_argument(subparser)
- add_goal_argument(subparser, default=None)
- add_branch_argument(subparser)
- subparser.add_argument(
- '--force',
- action='store_true', default=False,
- help='allow the target branch to be updated in a non-fast-forward manner',
- )
-
- subparser = subparsers.add_parser(
- 'diagram',
- help='display a diagram of the current state of a merge',
- )
- add_name_argument(subparser)
- subparser.add_argument(
- '--commits', action='store_true', default=False,
- help='show the merges that have been made so far',
- )
- subparser.add_argument(
- '--frontier', action='store_true', default=False,
- help='show the current merge frontier',
- )
- subparser.add_argument(
- '--html', action='store', default=None,
- help='generate HTML diagram showing the current merge frontier',
- )
- subparser.add_argument(
- '--color', dest='color', action='store_true', default=None,
- help='draw diagram with colors',
- )
- subparser.add_argument(
- '--no-color', dest='color', action='store_false',
- help='draw diagram without colors',
- )
-
- subparser = subparsers.add_parser(
- 'list',
- help=(
- 'list the names of incremental merges that are currently in progress. '
- 'The active merge is shown with an asterisk next to it.'
- ),
- )
-
- subparser = subparsers.add_parser(
- 'init',
- help='initialize a new incremental merge',
- )
- add_name_argument(subparser, help=NAME_INIT_HELP)
- add_goal_argument(subparser)
- add_branch_argument(subparser)
- add_manual_argument(subparser)
- add_first_parent_argument(subparser)
- add_tip2_argument(subparser)
-
- subparser = subparsers.add_parser(
- 'record',
- help='record the merge at branch imerge/NAME',
- )
- # record:
- add_name_argument(
- subparser,
- help='name of merge to which the merge should be added',
- )
- subparser.set_defaults(edit=None)
- subparser.add_argument(
- '--edit', '-e', dest='edit', action='store_true',
- help='commit staged changes with the --edit option',
- )
- subparser.add_argument(
- '--no-edit', dest='edit', action='store_false',
- help='commit staged changes with the --no-edit option',
- )
-
- subparser = subparsers.add_parser(
- 'autofill',
- help='autofill non-conflicting merges',
- )
- add_name_argument(subparser)
-
- subparser = subparsers.add_parser(
- 'simplify',
- help=(
- 'simplify a completed incremental merge by discarding unneeded '
- 'intermediate merges and cleaning up the ancestry of the commits '
- 'that are retained'
- ),
- )
- add_name_argument(subparser)
- add_goal_argument(subparser, default=None)
- add_branch_argument(subparser)
- subparser.add_argument(
- '--force',
- action='store_true', default=False,
- help='allow the target branch to be updated in a non-fast-forward manner',
- )
-
- subparser = subparsers.add_parser(
- 'remove',
- help='irrevocably remove an incremental merge',
- )
- add_name_argument(subparser)
-
- subparser = subparsers.add_parser(
- 'reparent',
- help=(
- 'change the parents of the specified commit and propagate the '
- 'change to HEAD'
- ),
- )
- subparser.add_argument(
- '--commit', metavar='COMMIT', default='HEAD',
- help=(
- 'target commit to reparent. Create a new commit identical to '
- 'this one, but having the specified parents. Then create '
- 'new versions of all descendants of this commit all the way to '
- 'HEAD, incorporating the modified commit. Output the SHA-1 of '
- 'the replacement HEAD commit.'
- ),
- )
- subparser.add_argument(
- 'parents', nargs='*', metavar='PARENT',
- help='a list of commits',
- )
-
- options = parser.parse_args(args)
-
- # Set an environment variable GIT_IMERGE=1 while we are running.
- # This makes it possible for hook scripts etc. to know that they
- # are being run within git-imerge, and should perhaps behave
- # differently. In the future we might make the value more
- # informative, like GIT_IMERGE=[automerge|autofill|...].
- os.environ[str('GIT_IMERGE')] = str('1')
-
- if options.subcommand == 'list':
- cmd_list(parser, options)
- elif options.subcommand == 'init':
- cmd_init(parser, options)
- elif options.subcommand == 'start':
- cmd_start(parser, options)
- elif options.subcommand == 'merge':
- cmd_merge(parser, options)
- elif options.subcommand == 'rebase':
- cmd_rebase(parser, options)
- elif options.subcommand == 'drop':
- cmd_drop(parser, options)
- elif options.subcommand == 'revert':
- cmd_revert(parser, options)
- elif options.subcommand == 'remove':
- cmd_remove(parser, options)
- elif options.subcommand == 'continue':
- cmd_continue(parser, options)
- elif options.subcommand == 'record':
- cmd_record(parser, options)
- elif options.subcommand == 'autofill':
- cmd_autofill(parser, options)
- elif options.subcommand == 'simplify':
- cmd_simplify(parser, options)
- elif options.subcommand == 'finish':
- cmd_finish(parser, options)
- elif options.subcommand == 'diagram':
- cmd_diagram(parser, options)
- elif options.subcommand == 'reparent':
- cmd_reparent(parser, options)
- else:
- parser.error('Unrecognized subcommand')
-
-
-if __name__ == '__main__':
- try:
- main(sys.argv[1:])
- except Failure as e:
- sys.exit(str(e))
-
-
-# vim: set expandtab ft=python:
diff --git a/bin/git/git-pr b/bin/git/git-pr
deleted file mode 100755
index 61346bc..0000000
--- a/bin/git/git-pr
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-pr_num="$1"
-upstream="${2-origin}"
-git fetch "$upstream" "pull/${pr_num}/head:pull-${pr_num}"
diff --git a/bin/git/git-record b/bin/git/git-record
deleted file mode 100755
index eaa36c9..0000000
--- a/bin/git/git-record
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -eu
-
-if [ -e "$(git root)/.git/branchless" ]; then
- exec git branchless record "$@"
-else
- if [ "${1:-}" = "-i" ]; then
- git add -p
- else
- git add -u
- fi
- git commit
-fi
diff --git a/bin/git/git-root b/bin/git/git-root
deleted file mode 100755
index 96fb395..0000000
--- a/bin/git/git-root
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-set -eu
-
-root="$(git rev-parse --show-superproject-working-tree 2>/dev/null)"
-if [ -n "$root" ]; then
- echo "$root"
-else
- git rev-parse --show-toplevel
-fi
diff --git a/bin/history-stats b/bin/history-stats
deleted file mode 100755
index 0fead1f..0000000
--- a/bin/history-stats
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-
-use Getopt::Long;
-
-my $history_file = $ENV{SHELL} =~ m{/zsh} ? '.zsh_history' : '.bash_history';
-
-open my $fh, '<', "$ENV{HOME}/$history_file"
- or die "couldn't open $ENV{HOME}/$history_file: $!";
-my $n = 10;
-my $subcommand;
-GetOptions(
- 'n=i' => \$n,
- 'subcommand=s' => \$subcommand,
-);
-
-my %cmds;
-my %sudo_cmds;
-
-while (<$fh>) {
- chomp;
-
- # strip zsh history timestamps
- s/^[^;]*;// if /^:/;
-
- s/^\s*(.*?)\s*$/$1/;
- my @words = split /\s+/;
- next unless @words;
- shift @words while @words && $words[0] =~ /^[A-Z][A-Z0-9_]*=/;
- next unless @words;
- my $sudo;
- if ($words[0] eq 'sudo') {
- $sudo = 1;
- shift @words;
- }
- if ($subcommand) {
- next unless $words[0] eq $subcommand;
- shift @words;
- shift @words while @words && $words[0] =~ /^-/;
- }
- $cmds{($words[0] || '')}++;
- $sudo_cmds{$words[0]}++ if $sudo;
-}
-
-for my $cmd (sort { $cmds{$b} <=> $cmds{$a} } keys %cmds) {
- printf '%5d %s', $cmds{$cmd}, $subcommand ? "$subcommand $cmd" : $cmd;
- printf ' (%d under sudo)', $sudo_cmds{$cmd} if $sudo_cmds{$cmd};
- print "\n";
- last unless --$n;
-}
diff --git a/bin/hornet/backlight b/bin/hornet/backlight
deleted file mode 100755
index 314e874..0000000
--- a/bin/hornet/backlight
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-my @levels = (
- 1,
- 2,
- 4,
- 8,
- 16,
- 31,
- 63,
- 125,
- 250,
- 500,
- 1000,
-);
-chomp(my $current = `xbacklight -getf`);
-$current = int($current * 10);
-my $idx;
-for my $i (0..$#levels) {
- my $level = $levels[$i];
- $idx = $i;
- last if $level >= $current;
-}
-
-my $inc;
-if ($ARGV[0] eq 'inc') {
- $inc = 1;
-}
-elsif ($ARGV[0] eq 'dec') {
- $inc = -1;
-}
-elsif ($ARGV[0] eq 'get') {
- say $idx * 10;
- exit;
-}
-else {
- die "unknown arg '$ARGV[0]'";
-}
-
-my $new_idx = $idx + $inc;
-if ($new_idx >= 0 && $new_idx <= $#levels) {
- my $new_level = $levels[$new_idx] * 0.1;
- system("xbacklight -set $new_level");
-}
diff --git a/bin/hornet/i3-switch-workspace b/bin/hornet/i3-switch-workspace
deleted file mode 100755
index b54afa1..0000000
--- a/bin/hornet/i3-switch-workspace
+++ /dev/null
@@ -1,137 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-use IO::Socket::UNIX;
-use JSON::PP;
-
-my $json = JSON::PP->new;
-
-my $virtual_workspace = 'virtual';
-
-my %message_types = (
- command => 0,
- get_workspaces => 1,
- subscribe => 2,
- get_outputs => 3,
- get_tree => 4,
- get_marks => 5,
- get_bar_config => 6,
- get_version => 7,
-);
-
-my %message_codes = (reverse %message_types);
-
-my $dir = $ARGV[0];
-
-chomp(my $path = qx(i3 --get-socketpath));
-my $sock = IO::Socket::UNIX->new(Peer => $path);
-
-my $workspace_data = $json->decode(i3_msg('get_workspaces'));
-my $tree_data = $json->decode(i3_msg('get_tree'));
-
-my $first = 99999;
-my $last = -99999;
-my $cur;
-my $cur_name;
-my $virtual_output;
-
-for my $i (0..$#$workspace_data) {
- my $num = $workspace_data->[$i]{num};
- if ($workspace_data->[$i]{focused}) {
- $cur = $num;
- $cur_name = $workspace_data->[$i]{name};
- if ($cur_name eq $virtual_workspace) {
- $virtual_output = $workspace_data->[$i]{output};
- }
- }
-
- my $workspace_tree = find_workspace($tree_data, $num);
- next unless
- @{ $workspace_tree->{nodes} } ||
- @{ $workspace_tree->{floating_nodes} };
-
- $first = $num if $num < $first;
- $last = $num if $num > $last;
-}
-
-if ($dir eq 'prev') {
- if ($cur >= $first) {
- i3_msg('command', "workspace ${\($cur - 1)}");
- }
-}
-elsif ($dir eq 'next') {
- if ($cur <= $last) {
- i3_msg('command', "workspace ${\($cur + 1)}");
- }
-}
-elsif ($dir eq $virtual_workspace) {
- if (!defined $virtual_output || $virtual_output eq 'VIRTUAL1') {
- i3_msg(
- 'command',
- "workspace $virtual_workspace; move workspace to output eDP1",
- );
- }
- else {
- i3_msg(
- 'command',
- "workspace $virtual_workspace; move workspace to output VIRTUAL1",
- );
- }
-}
-else {
- die "unknown subcommand $dir";
-}
-
-sub find_workspace {
- my ($tree, $num) = @_;
- if (exists $tree->{num} && $tree->{num} == $num) {
- return $tree;
- }
- for my $node (@{ $tree->{nodes} }) {
- my $found = find_workspace($node, $num);
- return $found if $found;
- }
- return;
-}
-
-sub build_i3_msg {
- my ($type, $payload) = @_;
-
- $payload = ''
- unless $type eq 'command' || $type eq 'subscribe';
-
- utf8::encode($payload);
-
- return 'i3-ipc'
- . pack('LL', length($payload), $message_types{$type})
- . $payload;
-}
-
-sub get_i3_msg {
- my $bytes = $sock->read(my $header, 14);
- die "invalid read" if $bytes != 14;
- die "invalid format: $header" if substr($header, 0, 6) ne 'i3-ipc';
- my ($length, $type) = unpack('LL', substr($header, 6, 8));
-
- if ($length) {
- my $bytes = $sock->read(my $payload, $length);
- die "invalid read" if $bytes != $length;
- utf8::decode($payload);
- return ($message_codes{$type}, $payload);
- }
- else {
- return ($message_codes{$type});
- }
-}
-
-sub i3_msg {
- my ($type, $payload) = @_;
- my $msg = build_i3_msg($type, $payload);
- $sock->write($msg);
- my ($got_type, $got_payload) = get_i3_msg();
- die "got $got_type message, expected $type message"
- unless $type eq $got_type;
- return $got_payload;
-}
diff --git a/bin/hornet/import b/bin/hornet/import
deleted file mode 100755
index 307d56b..0000000
--- a/bin/hornet/import
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-for service in unclutter compton; do
- if svst $service; then
- svdn $service >/dev/null
- # shellcheck disable=SC2064
- trap "svup $service > /dev/null" EXIT
- fi
-done
-/usr/bin/import "$@"
diff --git a/bin/hornet/kill-focused b/bin/hornet/kill-focused
deleted file mode 100755
index 37271ac..0000000
--- a/bin/hornet/kill-focused
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-use JSON::PP;
-
-my ($sig) = @ARGV;
-my $pid = get_pid();
-my $pgrp = get_pgrp($pid);
-kill $sig, -$pgrp;
-
-sub get_pid {
- my $window_id = get_window_id();
- die "couldn't find window" unless defined $window_id;
- my $prop = `xprop -id $window_id _NET_WM_PID`;
- die "couldn't get pid from focused window"
- if $prop =~ /not found/;
- chomp($prop);
- $prop =~ s/^_NET_WM_PID\(CARDINAL\) = //;
- return $prop;
-}
-
-sub get_pgrp {
- my ($pid) = @_;
- open my $stat_fh, '<', "/proc/$pid/stat"
- or die "couldn't open /proc/$pid/stat";
- my $stat = do { local $/; <$stat_fh> };
- my @f = ($stat =~ /\([^)]*\)|[^ ]+/g);
- return $f[4];
-}
-
-sub get_window_id {
- return find(decode_json(`i3-msg -t get_tree`))->{window};
-}
-
-sub find {
- my ($t) = @_;
- if ($t->{focused}) {
- return $t;
- }
-
- for my $subtree (@{ $t->{nodes} }, @{ $t->{floating_nodes} }) {
- my $found = find($subtree);
- return $found if $found;
- }
-
- return;
-}
diff --git a/bin/hornet/numkeys b/bin/hornet/numkeys
deleted file mode 100755
index 9b284bb..0000000
--- a/bin/hornet/numkeys
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-on() {
- xmodmap -e 'keycode 10 = exclam 1'
- xmodmap -e 'keycode 11 = at 2'
- xmodmap -e 'keycode 12 = numbersign 3'
- xmodmap -e 'keycode 13 = dollar 4'
- xmodmap -e 'keycode 14 = percent 5'
- xmodmap -e 'keycode 15 = asciicircum 6'
- xmodmap -e 'keycode 16 = ampersand 7'
- xmodmap -e 'keycode 17 = asterisk 8'
- xmodmap -e 'keycode 18 = parenleft 9'
- xmodmap -e 'keycode 19 = parenright 0'
- xmodmap -e 'keycode 20 = underscore minus'
- xmodmap -e 'keycode 34 = braceleft bracketleft'
- xmodmap -e 'keycode 35 = braceright bracketright'
- xmodmap -e 'keycode 49 = asciitilde grave'
- xmodmap -e 'keycode 51 = bar backslash'
-}
-
-off() {
- xmodmap -e 'keycode 10 = 1 exclam'
- xmodmap -e 'keycode 11 = 2 at'
- xmodmap -e 'keycode 12 = 3 numbersign'
- xmodmap -e 'keycode 13 = 4 dollar'
- xmodmap -e 'keycode 14 = 5 percent'
- xmodmap -e 'keycode 15 = 6 asciicircum'
- xmodmap -e 'keycode 16 = 7 ampersand'
- xmodmap -e 'keycode 17 = 8 asterisk'
- xmodmap -e 'keycode 18 = 9 parenleft'
- xmodmap -e 'keycode 19 = 0 parenright'
- xmodmap -e 'keycode 20 = minus underscore'
- xmodmap -e 'keycode 34 = bracketleft braceleft'
- xmodmap -e 'keycode 35 = bracketright braceright'
- xmodmap -e 'keycode 49 = grave asciitilde'
- xmodmap -e 'keycode 51 = backslash bar'
-}
-
-toggle() {
- if xmodmap -pk | grep -q '(1).*(exclam).*(1).*(exclam)'; then
- on
- else
- off
- fi
-}
-
-case "$1" in
-on) on ;;
-off) off ;;
-toggle) toggle ;;
-*)
- echo invalid 1>&2
- exit 1
- ;;
-esac
diff --git a/bin/hornet/p b/bin/hornet/p
deleted file mode 100755
index cbf15c4..0000000
--- a/bin/hornet/p
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-set -eu
-set -o pipefail
-
-rbw ls --fields name,user,folder | perl -plE'/^([^\t]*)\t([^\t]*)\t([^\t]*)$/; $_ = join("/", grep { length } ($3, $1, $2)) . "\0$_"' | sort | fzf --with-nth=1 -d '\x00' | perl -ple'/^([^\0]*)\0([^\t]*)\t([^\t]*)\t([^\t]*)$/; $_ = "$2 $3"; $_ .= " --folder=\"$4\"" if length $4' | xargs -r rbw get
diff --git a/bin/hornet/sc b/bin/hornet/sc
deleted file mode 100755
index 614a1bc..0000000
--- a/bin/hornet/sc
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-on)
- xset s 300 5
- xset dpms 600 600 600
- ;;
-off)
- xset s off
- xset dpms 0 0 0
- ;;
-q)
- xset q | perl -nlE'print if ((/^(:?Screen Saver|DPMS)/.../^[^\s]/) && /^(:?Screen Saver|DPMS|\s)/)'
- ;;
-*)
- echo "$(basename "$0"): unknown argument '$1'" >&2
- exit 1
- ;;
-esac
diff --git a/bin/hornet/scp b/bin/hornet/scp
deleted file mode 120000
index ffd8d03..0000000
--- a/bin/hornet/scp
+++ /dev/null
@@ -1 +0,0 @@
-ssh \ No newline at end of file
diff --git a/bin/hornet/setup-inputs b/bin/hornet/setup-inputs
deleted file mode 100755
index 572feb1..0000000
--- a/bin/hornet/setup-inputs
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-# key bindings
-setxkbmap -option ctrl:nocaps
-setxkbmap -option compose:caps
-xmodmap "$HOME"/.Xmodmap
-"$(dirname "$0")"/numkeys on
-
-# trackpad settings
-touchpad="$(xinput list --name-only | grep Touchpad)"
-xinput set-prop "$touchpad" "libinput Accel Speed" 0.4
-xinput set-prop "$touchpad" "libinput Tapping Enabled" 1
-
-# needs to happen after xmodmap stuff
-svre xcape
-svre xbindkeys
diff --git a/bin/hornet/sftp b/bin/hornet/sftp
deleted file mode 120000
index ffd8d03..0000000
--- a/bin/hornet/sftp
+++ /dev/null
@@ -1 +0,0 @@
-ssh \ No newline at end of file
diff --git a/bin/hornet/ssh b/bin/hornet/ssh
deleted file mode 100755
index bbacdf9..0000000
--- a/bin/hornet/ssh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-ssh-add -l | grep -q "${HOME}/.ssh/id_rsa" || env SSH_ASKPASS="ssh-askpass" ssh-add </dev/null
-exec /usr/bin/"$(basename "$0")" "$@"
diff --git a/bin/hornet/ssh-askpass b/bin/hornet/ssh-askpass
deleted file mode 100755
index ace037c..0000000
--- a/bin/hornet/ssh-askpass
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-exec rbw get hornet ssh
diff --git a/bin/hornet/status b/bin/hornet/status
deleted file mode 100755
index 5674876..0000000
--- a/bin/hornet/status
+++ /dev/null
@@ -1,276 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.010;
-
-use IO::Select;
-use IO::Socket::UNIX;
-use JSON::PP;
-
-my $i3status = get_i3status_handle();
-my $ipc = get_ipc_handle();
-$|++;
-say "[]";
-
-my $select = IO::Select->new;
-$select->add($i3status);
-$select->add($ipc);
-
-my $current_data;
-
-while (my @ready = $select->can_read) {
- for my $fh (@ready) {
- if ($fh == $i3status) {
- handle_i3status(scalar <$fh>);
- }
- elsif ($fh == $ipc) {
- handle_ipc(receive_ipc_message($fh));
- }
- else {
- die "???";
- }
- }
-}
-
-sub get_i3status_handle {
- open my $i3status, '-|', 'i3status';
-
- print scalar(<$i3status>);
- print scalar(<$i3status>);
-
- return $i3status;
-}
-
-sub handle_i3status {
- $_ = shift;
- s/^,//;
-
- my $data = decode_json($_);
-
- my %line = map { $_->{name} => $_ } @$data;
- my $line = [
- grep {
- $_->{name} eq 'wireless' || $_->{name} eq 'ethernet'
- ? $_->{instance} ne $_->{full_text}
- : $_->{name} ne 'load'
- } @$data
- ];
-
- my %discharge_rate;
- my %battery_index;
-
- my $index = 0;
- for my $item (@$line) {
- if ($item->{name} eq 'wireless' || $item->{name} eq 'ethernet') {
- my $iface = $item->{instance};
- my ($up, $down) = map { net_rate($iface, $_) } 'rx', 'tx';
- my $rate = sprintf("%6s/%6s", map { human_bytes($_) } $up, $down);
- $item->{full_text} =~ s{^($iface:)}{$1 $rate};
- $item->{color} =
- $up + $down >= 512000 ? '#FF0000'
- : $up + $down >= 51200 ? '#FFFF00'
- : $up + $down >= 5120 ? '#00FF00'
- : '#FFFFFF';
- }
- if ($item->{name} eq 'cpu_usage') {
- my ($val) = $line{load}{full_text} * 100 / ncpu();
- $item->{color} =
- $val >= 50 ? '#FF0000'
- : $val >= 25 ? '#FFFF00'
- : $val >= 5 ? '#00FF00'
- : '#FFFFFF';
- }
- if ($item->{name} eq 'battery') {
- my ($state, $val) = $item->{full_text} =~ /(\w+) (\d+(?:\.\d+))%/;
- my ($rate) = $item->{full_text} =~ /\(.* (.*)W\)/;
- $rate *= -1 if defined($rate) && $state ne 'BAT';
- $rate //= 0;
-
- $discharge_rate{$item->{instance}} = $rate;
- $battery_index{$item->{instance}} = $index;
-
- $item->{full_text} =~ s/\((.*) (.*)W\)/\($1\)/;
- $item->{full_text} =~ s/ \(\)//;
- $item->{color} =
- !defined($val) ? '#FFFFFF'
- : $val >= 80 ? '#00FF00'
- : $state ne 'BAT' ? '#FFFFFF'
- : $val >= 40 ? '#FFFFFF'
- : $val >= 15 ? '#FFFF00'
- : $val >= 5 ? '#CD0000'
- : '#FF0000';
- }
- $index++;
- }
-
- my @batteries = sort { $battery_index{$b} <=> $battery_index{$a} }
- keys %battery_index;
- for my $battery (@batteries) {
- next unless $discharge_rate{$battery};
- splice @$line, $battery_index{$battery} + 1, 0, {
- name => 'battery_discharge',
- full_text => sprintf("%0.2fW", $discharge_rate{$battery}),
- color => (
- $discharge_rate{$battery} < 6 ? '#FFFFFF'
- : $discharge_rate{$battery} < 10 ? '#00FF00'
- : $discharge_rate{$battery} < 14 ? '#FFFF00'
- : '#FF0000'
- ),
- };
- }
-
- my $weather_file = "$ENV{HOME}/.cache/weather";
- if (-r $weather_file && -f $weather_file) {
- my $weather = slurp($weather_file);
- chomp($weather);
- my ($temp) = $weather =~ /\d+%.*?(-?\d+)C.*?-?\d+C/;
- unshift @$line, {
- name => 'weather',
- full_text => $weather,
- color => (
- $temp >= 30 ? '#FF0000'
- : $temp >= 25 ? '#FFFF00'
- : $temp >= 20 ? '#00FF00'
- : $temp >= 10 ? '#FFFFFF'
- : $temp >= 0 ? '#CDCDFF'
- : '#0000FF'
- ),
- };
- }
-
- chomp(my $brightness = `backlight get`);
- $brightness = sprintf("%3d", $brightness);
- splice @$line, -1, 0, {
- name => 'brightness',
- full_text => "\N{WHITE SUN WITH RAYS} $brightness%",
- color => '#FFFFFF'
- };
-
- chomp(my $volume = `volume get`);
- if ($volume eq 'mute') {
- splice @$line, -1, 0, {
- name => 'volume',
- full_text => "\N{SPEAKER} ",
- color => '#FFFFFF'
- };
- }
- else {
- $volume = sprintf("%3d", $volume);
- splice @$line, -1, 0, {
- name => 'volume',
- full_text => "\N{SPEAKER WITH THREE SOUND WAVES} $volume%",
- color => '#FFFFFF'
- };
- }
-
- $current_data = $line;
-
- show_status();
-}
-
-sub get_ipc_handle {
- chomp(my $path = qx(i3 --get-socketpath));
-
- my $sock = IO::Socket::UNIX->new(Peer => $path);
- $sock->write(format_ipc_message(2, q{["window", "workspace"]}));
- my ($type, $payload) = receive_ipc_message($sock);
- die "Couldn't subscribe: ($type) $payload"
- unless $type == 2 && decode_json($payload)->{success};
-
- return $sock;
-}
-
-sub handle_ipc {
- my ($type, $payload) = @_;
- show_status();
-}
-
-sub format_ipc_message {
- my ($type, $payload) = @_;
- my $len = do { use bytes; length($payload) };
- return "i3-ipc" . pack("LL", $len, $type) . $payload;
-}
-
-sub receive_ipc_message {
- my ($sock) = @_;
-
- $sock->read(my $magic, 6);
- die "unknown response: $magic" unless $magic eq 'i3-ipc';
- $sock->read(my $len, 4);
- $len = unpack("L", $len);
- $sock->read(my $type, 4);
- $type = unpack("L", $type);
- $sock->read(my $payload, $len);
-
- return ($type, $payload);
-}
-
-sub show_status {
- my @line = @$current_data;
- unshift @line, { name => 'title', full_text => get_title() };
- say "," . encode_json(\@line);
-}
-
-sub get_title {
- my $node = find(decode_json(`i3-msg -t get_tree`));
- if ($node->{window}) {
- return $node->{name};
- }
- else {
- return '-none-';
- }
-}
-
-sub find {
- my ($t) = @_;
- if ($t->{focused}) {
- return $t;
- }
-
- for my $subtree (@{ $t->{nodes} }, @{ $t->{floating_nodes} }) {
- my $found = find($subtree);
- return $found if $found;
- }
-
- return;
-}
-
-{
- my %last_bytes;
- sub net_rate {
- my ($iface, $which) = @_;
- my $stat_file = "/sys/class/net/$iface/statistics/${which}_bytes";
- chomp(my $bytes = slurp($stat_file));
- my $prev = $last_bytes{$iface}{$which};
- $last_bytes{$iface}{$which} = $bytes;
- return 0 unless defined $prev;
- return $bytes - $prev;
- }
-}
-
-sub ncpu {
- scalar grep { !/^#/ } `lscpu -p=cpu`
-}
-
-sub human_bytes {
- my ($bytes) = @_;
- my @prefixes = ('', qw(k M G T));
- my $prefix_index = 0;
- while ($bytes > 512) {
- $bytes /= 1024;
- $prefix_index++;
- }
- my $prec = ($prefix_index == 0 ? 0 : 1);
- return sprintf("%0.${prec}f%sB", $bytes, $prefixes[$prefix_index]);
-}
-
-sub slurp {
- open my $fh, '<:encoding(UTF-8)', $_[0] or die "Couldn't open $_[0]: $!";
- if (wantarray) {
- <$fh>
- }
- else {
- local $/;
- <$fh>
- }
-}
diff --git a/bin/hornet/sudo b/bin/hornet/sudo
deleted file mode 100755
index 1ff8b23..0000000
--- a/bin/hornet/sudo
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-exec /usr/bin/sudo -A "$@"
diff --git a/bin/hornet/sudo-askpass b/bin/hornet/sudo-askpass
deleted file mode 100755
index 2f928ed..0000000
--- a/bin/hornet/sudo-askpass
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-exec rbw get "$(hostname)" doy
diff --git a/bin/hornet/svdisable b/bin/hornet/svdisable
deleted file mode 100755
index 24f779f..0000000
--- a/bin/hornet/svdisable
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-set -eu
-
-svc="$1"
-
-svdn "$svc"
-svdn "${svc}/log"
-svc -x ~/.services/enabled/"$svc"/log
-svc -x ~/.services/enabled/"$svc"
-rm -f ~/.services/enabled/"$svc"
diff --git a/bin/hornet/svdn b/bin/hornet/svdn
deleted file mode 100755
index 6687879..0000000
--- a/bin/hornet/svdn
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svst "$1" || exit 0
-
-svstop "$1"
-svst "$1" || exit 0
-
-sleep 1
-
-svstop "$1"
-for _ in $(seq 1 5); do
- svst "$1" || exit 0
- sleep 1
-done
-svst "$1" || exit 0
-
-svstop "$1"
-for _ in $(seq 1 10); do
- svst "$1" || exit 0
- sleep 1
-done
-svst "$1" || exit 0
-
-svkill "$1"
-svst "$1" || exit 0
-
-exit 1
diff --git a/bin/hornet/svget b/bin/hornet/svget
deleted file mode 100755
index 0eab9bf..0000000
--- a/bin/hornet/svget
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svstat "$HOME/.services/enabled/$1"
diff --git a/bin/hornet/svkill b/bin/hornet/svkill
deleted file mode 100755
index a84e1a2..0000000
--- a/bin/hornet/svkill
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svc -k "$HOME/.services/enabled/$1"
-svget "$1"
diff --git a/bin/hornet/svlog b/bin/hornet/svlog
deleted file mode 100755
index 201ce9b..0000000
--- a/bin/hornet/svlog
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-tail -F "$HOME/.log/$1/current" | tai64nlocal
diff --git a/bin/hornet/svre b/bin/hornet/svre
deleted file mode 100755
index 159b017..0000000
--- a/bin/hornet/svre
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svdn "$1"
-svup "$1"
diff --git a/bin/hornet/svst b/bin/hornet/svst
deleted file mode 100755
index 4d0c6ce..0000000
--- a/bin/hornet/svst
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svget "$1" | grep -q ": up ("
diff --git a/bin/hornet/svstop b/bin/hornet/svstop
deleted file mode 100755
index 649ec26..0000000
--- a/bin/hornet/svstop
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svc -d "$HOME/.services/enabled/$1"
-svget "$1"
diff --git a/bin/hornet/svup b/bin/hornet/svup
deleted file mode 100755
index 3772fdb..0000000
--- a/bin/hornet/svup
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-svc -u "$HOME/.services/enabled/$1"
-svget "$1"
diff --git a/bin/hornet/tv b/bin/hornet/tv
deleted file mode 100755
index 1c99e2e..0000000
--- a/bin/hornet/tv
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-if xrandr -q | grep -q "DP-3 connected ("; then
- xrandr --auto
- xrandr --output DP-3 --right-of eDP-1 --mode 1920x1080
-elif xrandr -q | grep -q "DP-4 connected ("; then
- xrandr --auto
- xrandr --output DP-4 --right-of eDP-1 --mode 1920x1080
-elif xrandr -q | grep -q "DP-3 connected"; then
- xrandr --auto
- xrandr --output DP-4 --off
-elif xrandr -q | grep -q "DP-4 connected"; then
- xrandr --auto
- xrandr --output DP-4 --off
-fi
diff --git a/bin/hornet/twitch b/bin/hornet/twitch
deleted file mode 100755
index 5b691ab..0000000
--- a/bin/hornet/twitch
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-if [ -z "${1}" ]; then
- ssh partofme killall vlc
- echo '*/buffer close twitch.#' >~/.weechat/weechat_fifo
-else
- ssh partofme sh -c "'nohup twitch ${1} > /dev/null 2>&1 &'"
- echo "irc.server.twitch */join #${1}" >~/.weechat/weechat_fifo
-fi
diff --git a/bin/hornet/update-weather b/bin/hornet/update-weather
deleted file mode 100755
index fad6ff7..0000000
--- a/bin/hornet/update-weather
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-weather >~/.cache/weather.new
-mv ~/.cache/weather.new ~/.cache/weather
diff --git a/bin/hornet/volume b/bin/hornet/volume
deleted file mode 100755
index 668c1b1..0000000
--- a/bin/hornet/volume
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-chomp(my $sink=`pactl get-default-sink`);
-
-sub get {
- if (`pactl get-sink-mute $sink` =~ /Mute: yes/) {
- 'mute'
- }
- else {
- (`pactl get-sink-volume $sink` =~ /(\d+)%/)[0]
- }
-}
-
-if ($ARGV[0] eq 'get') {
- say get;
-}
-elsif ($ARGV[0] eq 'up') {
- my $get = get;
- system("pactl set-sink-mute $sink 0");
- if ($get eq 'mute') {
- exit;
- }
- elsif ($get <= 90) {
- system("pactl set-sink-volume $sink +10%");
- }
- elsif ($get < 100) {
- system("pactl set-sink-volume $sink 100%");
- }
-}
-elsif ($ARGV[0] eq 'down') {
- my $get = get;
- if ($get eq 'mute') {
- exit;
- }
- system("pactl set-sink-volume $sink -10%");
-}
-elsif ($ARGV[0] eq 'mute') {
- system("pactl set-sink-mute $sink toggle")
-}
-else {
- die "unknown command '$ARGV[0]'";
-}
diff --git a/bin/hornet/vscreen b/bin/hornet/vscreen
deleted file mode 100755
index 52fc5cc..0000000
--- a/bin/hornet/vscreen
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-goto)
- xrandr --addmode VIRTUAL1 1920x1080
- xrandr --output VIRTUAL1 --auto --output eDP1 --auto --left-of VIRTUAL1
- i3-switch-workspace virtual
- ;;
-off)
- xrandr --output VIRTUAL1 --off
- ;;
-*)
- echo "bad subcommand $1" >&2
- exit 1
- ;;
-esac
diff --git a/bin/hornet/watch-kbd b/bin/hornet/watch-kbd
deleted file mode 100755
index a4d504e..0000000
--- a/bin/hornet/watch-kbd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-set -eu
-set -o pipefail
-
-trap 'kill $(jobs -p)' EXIT
-
-inotifywait -mq -e create -e delete -e moved_to --exclude '.*tmp.*' /dev/input/by-id/ |
- while read -r event; do
- echo "$event"
- if echo "$event" | grep -q USB_Keyboard; then
- setup-inputs
- fi
- done &
-wait
diff --git a/bin/hornet/weather b/bin/hornet/weather
deleted file mode 100755
index 1cbbffb..0000000
--- a/bin/hornet/weather
+++ /dev/null
@@ -1,33304 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.020;
-use feature 'signatures';
-no warnings 'experimental::signatures';
-
-use open ':encoding(UTF-8)', ':std';
-
-use HTTP::Tiny;
-use JSON::PP;
-use List::Util qw(min max);
-
-my $config_dir = "$ENV{HOME}/.config/weather";
-
-my $location_filename = "$config_dir/location";
-chomp(my $location = slurp($location_filename));
-if (length($location) == 5) {
- $location = zip_location($location);
-}
-(my $lat, my $lon) = split ',', $location;
-my $tz = readlink("/etc/localtime");
-$tz =~ s{^/usr/share/zoneinfo/}{};
-
-my $data = slurp_http("https://api.open-meteo.com/v1/forecast?latitude=$lat&longitude=$lon&timezone=$tz&current_weather=true&hourly=temperature_2m,apparent_temperature,precipitation_probability");
-my $time = $data->{current_weather}{time};
-my $hourly = $data->{hourly};
-my @forecast;
-for my $i (0..$#{$hourly->{time}}) {
- next if $hourly->{time}[$i] lt $time;
- push @forecast, {
- temp => $hourly->{temperature_2m}[$i],
- feels_like => $hourly->{apparent_temperature}[$i],
- precip_probability => $hourly->{precipitation_probability}[$i],
- };
- last if @forecast >= 12;
-}
-
-my ($hour) = $time =~ /^....-..-..T(..):..$/;
-my $temp = round($data->{current_weather}{temperature});
-my $temp_unit = $data->{hourly_units}{temperature_2m};
-$temp_unit =~ s/\N{DEGREE SIGN}//;
-my ($temp_limit, $temp_direction) = temp_limit(\@forecast, $hour);
-my $feelslike_temp = round($forecast[0]{feels_like});
-my $precip = $forecast[0]{precip_probability};
-
-say join(' ',
- "$precip%",
- weather_pic($data->{current_weather}{weathercode}, $data->{current_weather}{is_day}),
- "${temp}${temp_unit}",
- (($feelslike_temp != $temp)
- ? ("(\N{APPROXIMATELY EQUAL TO}${feelslike_temp}${temp_unit})")
- : ()),
- "${temp_direction}${temp_limit}${temp_unit}",
-);
-
-sub slurp($filename) {
- open my $fh, '<', $filename
- or die "couldn't open $filename: $!";
- my $contents = do { local $/; <$fh> };
- close $fh;
- return $contents;
-}
-
-sub slurp_http($url) {
- my $res = HTTP::Tiny->new->get($url);
- if (!$res->{success}) {
- die "failed to fetch $url: $res->{content}";
- }
- return decode_json($res->{content});
-}
-
-sub zip_location($zip) {
- while (<DATA>) {
- chomp;
- my @parts = split /=/;
- if ($parts[0] eq $zip) {
- return $parts[1];
- }
- }
- die "couldn't find zip $zip";
-}
-
-sub temp_limit($forecast, $hour) {
- my @temps = map { $_->{temp} } @$forecast;
- if ($hour < 4 || $hour >= 16) {
- return (round(min(@temps)), "\N{DOWNWARDS ARROW}");
- }
- else {
- return (round(max(@temps)), "\N{UPWARDS ARROW}");
- }
-}
-
-sub weather_pic($code, $is_day) {
- # Clear sky
- if ($code == 0) {
- if ($is_day) {
- "\N{BLACK SUN WITH RAYS}"
- } else {
- "\N{LAST QUARTER MOON}"
- }
- }
- # Mainly clear, partly cloudy, and overcast
- elsif ($code == 1 || $code == 2 || $code == 3) {
- "\N{CLOUD}"
- }
- # Fog and depositing rime fog
- elsif ($code == 45 || $code == 48) {
- "\N{MEDIUM SHADE}"
- }
- # Drizzle: Light, moderate, and dense intensity
- elsif ($code == 51 || $code == 53 || $code == 55) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- # Freezing Drizzle: Light and dense intensity
- elsif ($code == 56 || $code == 57) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- # Rain: Slight, moderate and heavy intensity
- elsif ($code == 61 || $code == 63 || $code == 65) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- # Freezing Rain: Light and heavy intensity
- elsif ($code == 66 || $code == 67) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- # Snow fall: Slight, moderate, and heavy intensity
- elsif ($code == 71 || $code == 73 || $code == 75) {
- "\N{SNOWFLAKE}"
- }
- # Snow grains
- elsif ($code == 77) {
- "\N{SNOWFLAKE}"
- }
- # Rain showers: Slight, moderate, and violent
- elsif ($code == 80 || $code == 81 || $code == 82) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- # Snow showers slight and heavy
- elsif ($code == 85 || $code == 86) {
- "\N{SNOWFLAKE}"
- }
- # Thunderstorm: Slight or moderate
- elsif ($code == 95) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- # Thunderstorm with slight and heavy hail
- elsif ($code == 96 || $code == 99) {
- "\N{UMBRELLA WITH RAIN DROPS}"
- }
- else {
- '?'
- }
-}
-
-sub round($x) {
- int($x + 0.5)
-}
-
-__DATA__
-00601=18.180555,-66.749961
-00602=18.361945,-67.175597
-00603=18.455183,-67.119887
-00606=18.158345,-66.932911
-00610=18.295366,-67.125135
-00612=18.402253,-66.711397
-00616=18.420412,-66.671979
-00617=18.445147,-66.559696
-00622=17.991245,-67.153993
-00623=18.083361,-67.153897
-00624=18.064919,-66.716683
-00627=18.412600,-66.863926
-00631=18.190607,-66.832041
-00637=18.076713,-66.947389
-00638=18.295913,-66.515588
-00641=18.263085,-66.712985
-00646=18.433150,-66.285875
-00647=17.963613,-66.947127
-00650=18.349416,-66.578079
-00652=18.448452,-66.594127
-00653=17.985033,-66.886536
-00656=18.053539,-66.792931
-00659=18.407226,-66.808999
-00660=18.134695,-67.116199
-00662=18.468320,-67.015781
-00664=18.210330,-66.591616
-00667=18.003422,-67.035810
-00669=18.277102,-66.869645
-00670=18.240187,-66.988776
-00674=18.422908,-66.489337
-00676=18.377637,-67.079574
-00677=18.332568,-67.227022
-00678=18.434099,-66.927384
-00680=18.182055,-67.132502
-00682=18.221464,-67.156039
-00683=18.107800,-67.037263
-00685=18.332929,-66.959689
-00687=18.319026,-66.420557
-00688=18.382264,-66.626438
-00690=18.495510,-67.098671
-00692=18.410188,-66.336556
-00693=18.423000,-66.397232
-00694=18.482370,-66.391079
-00698=18.064848,-66.856319
-00703=18.248401,-66.130662
-00704=17.965770,-66.219555
-00705=18.128961,-66.266683
-00707=18.014055,-65.920751
-00714=18.003025,-66.046237
-00715=18.011233,-66.560065
-00716=17.992040,-66.605856
-00717=18.003222,-66.614037
-00718=18.231988,-65.759623
-00719=18.289927,-66.253440
-00720=18.217946,-66.428076
-00723=18.043498,-66.015479
-00725=18.218819,-66.042375
-00727=18.215308,-66.073565
-00728=17.989853,-66.664116
-00729=18.323585,-65.883206
-00730=18.030831,-66.616838
-00731=18.109947,-66.635622
-00735=18.252604,-65.682494
-00736=18.103624,-66.151667
-00738=18.304458,-65.698711
-00739=18.177233,-66.160645
-00740=18.331178,-65.634104
-00741=18.163855,-65.754042
-00745=18.352216,-65.817387
-00751=18.001317,-66.252183
-00754=18.147107,-65.976167
-00757=17.995441,-66.391334
-00765=18.130096,-65.439369
-00766=18.133196,-66.476916
-00767=18.069489,-65.896161
-00769=18.103800,-66.357586
-00771=18.187148,-65.871189
-00772=18.438969,-65.905174
-00773=18.342888,-65.723109
-00775=18.326599,-65.307720
-00777=18.224133,-65.908542
-00778=18.264076,-65.978510
-00780=18.102834,-66.568105
-00782=18.225708,-66.221633
-00783=18.303910,-66.326179
-00784=18.010714,-66.133615
-00786=18.155424,-66.229907
-00791=18.136782,-65.821476
-00794=18.198955,-66.309833
-00795=18.060494,-66.500624
-00801=18.350449,-64.973886
-00802=18.340862,-64.923479
-00820=17.743072,-64.686570
-00823=17.723541,-64.745932
-00824=17.744557,-64.682933
-00830=18.338560,-64.736533
-00831=18.327294,-64.786720
-00840=17.747872,-64.880695
-00841=17.768133,-64.807852
-00850=17.709936,-64.750099
-00851=17.732228,-64.770760
-00901=18.465369,-66.104613
-00906=18.464460,-66.094995
-00907=18.452553,-66.077838
-00909=18.441610,-66.067132
-00911=18.451159,-66.056199
-00912=18.445328,-66.060135
-00913=18.450002,-66.042656
-00915=18.437179,-66.045571
-00917=18.420674,-66.050105
-00918=18.421022,-66.065789
-00920=18.414292,-66.088042
-00921=18.392282,-66.088555
-00923=18.409307,-66.038888
-00924=18.399192,-66.012453
-00925=18.400296,-66.050602
-00926=18.345400,-66.051545
-00927=18.388011,-66.072089
-00934=18.411313,-66.124234
-00936=18.395463,-66.073772
-00949=18.430696,-66.212833
-00950=18.459699,-66.233101
-00951=18.427530,-66.253789
-00952=18.427448,-66.182026
-00953=18.360729,-66.251527
-00956=18.321137,-66.170419
-00957=18.368414,-66.187693
-00959=18.391820,-66.154564
-00960=18.416919,-66.145795
-00961=18.413286,-66.164617
-00962=18.444614,-66.148839
-00965=18.433757,-66.114752
-00966=18.401521,-66.117597
-00968=18.406085,-66.101232
-00969=18.368062,-66.108062
-00971=18.318884,-66.119190
-00976=18.336176,-65.994099
-00979=18.444394,-66.030036
-00982=18.411261,-65.992045
-00983=18.417816,-65.975819
-00985=18.410770,-65.947928
-00987=18.338161,-65.941083
-01001=42.062368,-72.625754
-01002=42.364061,-72.458739
-01003=42.389941,-72.524108
-01005=42.418848,-72.106598
-01007=42.279010,-72.400468
-01008=42.190144,-72.954350
-01009=42.211969,-72.341433
-01010=42.128176,-72.205352
-01011=42.300281,-72.968716
-01012=42.375425,-72.858192
-01013=42.154904,-72.602804
-01020=42.172602,-72.562073
-01022=42.197741,-72.542713
-01026=42.465495,-72.918267
-01027=42.295008,-72.751877
-01028=42.062378,-72.498111
-01029=42.193395,-73.044647
-01030=42.072925,-72.686972
-01031=42.329399,-72.198187
-01032=42.457613,-72.814780
-01033=42.244949,-72.500143
-01034=42.098676,-72.961564
-01035=42.356491,-72.568632
-01036=42.062946,-72.417297
-01037=42.372728,-72.195412
-01038=42.385496,-72.606929
-01039=42.404278,-72.688922
-01040=42.211656,-72.642448
-01050=42.286762,-72.869695
-01053=42.356301,-72.713584
-01054=42.468898,-72.484579
-01056=42.183577,-72.457812
-01057=42.093596,-72.321494
-01060=42.321488,-72.630588
-01062=42.328308,-72.703924
-01063=42.318882,-72.638530
-01066=42.406903,-72.655018
-01068=42.350862,-72.044248
-01069=42.187794,-72.308469
-01070=42.518446,-72.919017
-01071=42.160060,-72.873853
-01072=42.456968,-72.417244
-01073=42.226949,-72.741588
-01074=42.387603,-72.093230
-01075=42.256208,-72.581030
-01077=42.052570,-72.777353
-01079=42.197913,-72.329709
-01080=42.185727,-72.361558
-01081=42.061313,-72.234411
-01082=42.293533,-72.278599
-01083=42.203642,-72.194599
-01084=42.392370,-72.882235
-01085=42.153503,-72.771602
-01086=42.130446,-72.793967
-01088=42.391709,-72.646494
-01089=42.125451,-72.649734
-01092=42.191868,-72.235108
-01093=42.441943,-72.661817
-01094=42.359108,-72.136800
-01095=42.138499,-72.420715
-01096=42.397140,-72.763572
-01097=42.178038,-72.832612
-01098=42.394315,-72.943115
-01103=42.104106,-72.592027
-01104=42.134009,-72.565378
-01105=42.099958,-72.580765
-01106=42.047565,-72.571130
-01107=42.121060,-72.607068
-01108=42.080692,-72.560791
-01109=42.119674,-72.549726
-01118=42.094194,-72.525081
-01119=42.124978,-72.511210
-01128=42.092296,-72.489135
-01129=42.118690,-72.488200
-01151=42.151860,-72.509131
-01199=42.120563,-72.604468
-01201=42.448236,-73.273727
-01220=42.623799,-73.116736
-01222=42.058703,-73.322175
-01223=42.312225,-73.110124
-01224=42.513163,-73.195743
-01225=42.563401,-73.153335
-01226=42.481119,-73.135073
-01229=42.276338,-73.335896
-01230=42.173192,-73.324283
-01235=42.425676,-73.063012
-01236=42.266496,-73.378393
-01237=42.547818,-73.268033
-01238=42.297501,-73.230148
-01240=42.367858,-73.269763
-01242=42.333734,-73.249199
-01243=42.350122,-73.024112
-01244=42.118094,-73.257497
-01245=42.186893,-73.223105
-01247=42.698526,-73.084300
-01253=42.206683,-73.113214
-01254=42.382019,-73.365492
-01255=42.107496,-73.118607
-01256=42.594166,-73.022320
-01257=42.085244,-73.367483
-01258=42.109280,-73.462886
-01259=42.075469,-73.234376
-01260=42.295696,-73.342543
-01262=42.292202,-73.319209
-01264=42.231590,-73.202428
-01266=42.312354,-73.388044
-01267=42.671617,-73.246981
-01270=42.515272,-73.031166
-01301=42.626761,-72.601530
-01330=42.513947,-72.821517
-01331=42.562408,-72.191080
-01337=42.689307,-72.582249
-01338=42.572604,-72.824306
-01339=42.603776,-72.889644
-01340=42.694731,-72.710956
-01341=42.496937,-72.709414
-01342=42.543889,-72.609458
-01343=42.657625,-72.978933
-01344=42.613418,-72.426427
-01346=42.693275,-72.823113
-01347=42.559294,-72.518753
-01349=42.563061,-72.482122
-01350=42.727772,-72.985346
-01351=42.539880,-72.521689
-01354=42.624076,-72.508643
-01355=42.458551,-72.327191
-01360=42.677091,-72.453876
-01364=42.605437,-72.292074
-01366=42.475621,-72.192468
-01367=42.695532,-72.909148
-01368=42.679456,-72.176935
-01370=42.593338,-72.726941
-01373=42.475481,-72.615403
-01375=42.466691,-72.546751
-01376=42.595280,-72.555002
-01378=42.673533,-72.353213
-01379=42.556310,-72.407148
-01420=42.584925,-71.816862
-01430=42.657005,-71.923442
-01431=42.676293,-71.832523
-01432=42.566573,-71.575135
-01434=42.538903,-71.612027
-01436=42.602059,-72.087015
-01438=42.562243,-72.031402
-01440=42.584206,-71.988737
-01450=42.611760,-71.565269
-01451=42.501908,-71.568201
-01452=42.489598,-72.002878
-01453=42.519977,-71.763202
-01460=42.535931,-71.490569
-01462=42.582607,-71.720464
-01463=42.670643,-71.602858
-01464=42.573654,-71.640986
-01467=42.489646,-71.609577
-01468=42.542767,-72.068345
-01469=42.664828,-71.695087
-01473=42.554600,-71.905440
-01474=42.669685,-71.752751
-01475=42.668160,-72.055644
-01501=42.198708,-71.846006
-01503=42.384929,-71.633889
-01504=42.039991,-71.532406
-01505=42.355049,-71.716157
-01506=42.180788,-72.107891
-01507=42.133935,-71.968025
-01510=42.411887,-71.690005
-01515=42.209682,-72.040178
-01516=42.053072,-71.752241
-01518=42.127477,-72.118818
-01519=42.203404,-71.679739
-01520=42.336372,-71.850626
-01521=42.046799,-72.180144
-01522=42.375634,-71.867382
-01523=42.483569,-71.675585
-01524=42.249603,-71.919217
-01525=42.106794,-71.630518
-01527=42.192246,-71.777649
-01529=42.036642,-71.578779
-01531=42.319125,-72.130814
-01532=42.323342,-71.646236
-01534=42.142074,-71.643348
-01535=42.267564,-72.066876
-01536=42.231309,-71.692642
-01537=42.158966,-71.897051
-01540=42.116263,-71.857465
-01541=42.454125,-71.877540
-01542=42.204251,-71.908907
-01543=42.388285,-71.969865
-01545=42.284767,-71.714228
-01550=42.059737,-72.033908
-01560=42.175395,-71.674223
-01561=42.443970,-71.685583
-01562=42.247211,-71.991867
-01564=42.447924,-71.776045
-01566=42.103214,-72.079545
-01568=42.176526,-71.603588
-01569=42.055930,-71.631232
-01570=42.047532,-71.846952
-01571=42.053778,-71.935075
-01581=42.268426,-71.613309
-01583=42.369417,-71.785036
-01585=42.240796,-72.162645
-01588=42.118794,-71.672494
-01590=42.132051,-71.750318
-01602=42.269189,-71.850728
-01603=42.243826,-71.843569
-01604=42.253254,-71.767957
-01605=42.289683,-71.787793
-01606=42.315249,-71.795741
-01607=42.225974,-71.788894
-01608=42.261980,-71.801462
-01609=42.285114,-71.829987
-01610=42.247049,-71.808366
-01611=42.237604,-71.875838
-01612=42.296798,-71.928991
-01701=42.319587,-71.442800
-01702=42.282379,-71.436621
-01718=42.519816,-71.429283
-01719=42.485985,-71.520985
-01720=42.483953,-71.438495
-01721=42.257755,-71.473526
-01730=42.499295,-71.281889
-01731=42.456748,-71.279484
-01740=42.439941,-71.601879
-01741=42.536620,-71.361832
-01742=42.462911,-71.364496
-01745=42.292114,-71.499197
-01746=42.195951,-71.453430
-01747=42.123007,-71.531404
-01748=42.224096,-71.540489
-01749=42.389071,-71.545864
-01752=42.349617,-71.547214
-01754=42.425955,-71.456256
-01756=42.093870,-71.544519
-01757=42.158692,-71.521419
-01760=42.284822,-71.348811
-01770=42.231947,-71.372963
-01772=42.302877,-71.530828
-01773=42.425506,-71.310812
-01775=42.429688,-71.512514
-01776=42.383367,-71.421070
-01778=42.343687,-71.381186
-01801=42.488769,-71.154438
-01803=42.503227,-71.201713
-01810=42.648044,-71.161751
-01821=42.549330,-71.251725
-01824=42.590790,-71.355182
-01826=42.679723,-71.300680
-01827=42.676149,-71.499772
-01830=42.796313,-71.053436
-01832=42.791114,-71.132859
-01833=42.727879,-70.982036
-01834=42.753900,-71.015935
-01835=42.751233,-71.094300
-01840=42.706763,-71.160403
-01841=42.712015,-71.164873
-01843=42.689974,-71.160383
-01844=42.742468,-71.179218
-01845=42.673909,-71.091334
-01850=42.656045,-71.303309
-01851=42.627812,-71.335330
-01852=42.631912,-71.296025
-01854=42.649481,-71.348229
-01860=42.838603,-71.011997
-01862=42.578543,-71.295592
-01863=42.633780,-71.389470
-01864=42.578222,-71.084398
-01867=42.535183,-71.105423
-01876=42.611801,-71.227571
-01879=42.667762,-71.428820
-01880=42.501524,-71.067489
-01886=42.585541,-71.440250
-01887=42.564647,-71.164516
-01890=42.452752,-71.144319
-01901=42.460419,-70.946379
-01902=42.471039,-70.941535
-01904=42.492456,-70.973930
-01905=42.465998,-70.975792
-01906=42.468432,-71.013946
-01907=42.474145,-70.906597
-01908=42.428256,-70.926041
-01913=42.851293,-70.955810
-01915=42.570665,-70.867583
-01921=42.683108,-71.018330
-01922=42.757313,-70.914241
-01923=42.574174,-70.950516
-01929=42.640420,-70.771172
-01930=42.619910,-70.681824
-01937=42.585723,-70.984051
-01938=42.683860,-70.842666
-01940=42.534146,-71.038333
-01944=42.576636,-70.767154
-01945=42.501835,-70.859126
-01949=42.606666,-71.010316
-01950=42.812358,-70.891095
-01951=42.773351,-70.850211
-01952=42.844793,-70.841476
-01960=42.534279,-70.969782
-01966=42.640715,-70.620248
-01969=42.720873,-70.891220
-01970=42.524435,-70.870859
-01982=42.626223,-70.857230
-01983=42.641379,-70.943440
-01984=42.600633,-70.883303
-01985=42.799565,-70.964428
-02019=42.076682,-71.474490
-02021=42.175737,-71.125385
-02025=42.236423,-70.814436
-02026=42.246872,-71.179462
-02030=42.234160,-71.291167
-02032=42.156882,-71.216187
-02035=42.061338,-71.245802
-02038=42.084858,-71.410571
-02043=42.216098,-70.881270
-02045=42.292253,-70.923919
-02047=42.133914,-70.686037
-02048=42.017302,-71.216410
-02050=42.115139,-70.710331
-02052=42.184599,-71.305307
-02053=42.156203,-71.430345
-02054=42.173091,-71.363751
-02056=42.113655,-71.334163
-02061=42.164569,-70.818844
-02062=42.187360,-71.195955
-02066=42.202273,-70.758184
-02067=42.107600,-71.181828
-02071=42.103425,-71.273589
-02072=42.119006,-71.103650
-02081=42.146694,-71.270532
-02090=42.219645,-71.216769
-02093=42.052671,-71.356858
-02108=42.357768,-71.064858
-02109=42.367032,-71.050493
-02110=42.361962,-71.047846
-02111=42.350518,-71.059077
-02113=42.365331,-71.055233
-02114=42.363174,-71.068646
-02115=42.337105,-71.105696
-02116=42.350579,-71.076397
-02118=42.337582,-71.070482
-02119=42.324029,-71.085017
-02120=42.332090,-71.096545
-02121=42.306267,-71.085897
-02122=42.291413,-71.042158
-02124=42.285805,-71.070571
-02125=42.315682,-71.055555
-02126=42.274227,-71.097423
-02127=42.334992,-71.039093
-02128=42.361129,-71.006975
-02129=42.379657,-71.061487
-02130=42.309174,-71.113835
-02131=42.284333,-71.126228
-02132=42.280455,-71.162017
-02134=42.358016,-71.128608
-02135=42.349688,-71.153964
-02136=42.255083,-71.129220
-02138=42.379637,-71.135152
-02139=42.362986,-71.103353
-02140=42.392157,-71.133996
-02141=42.370300,-71.082560
-02142=42.361471,-71.081994
-02143=42.381409,-71.096714
-02144=42.399655,-71.122550
-02145=42.391577,-71.089910
-02148=42.429380,-71.058706
-02149=42.405938,-71.054649
-02150=42.396824,-71.031348
-02151=42.418290,-71.001251
-02152=42.373055,-70.974807
-02155=42.423840,-71.107673
-02163=42.366168,-71.122850
-02169=42.248386,-71.002279
-02170=42.266415,-71.015576
-02171=42.293310,-71.018208
-02176=42.455723,-71.059019
-02180=42.474208,-71.097665
-02184=42.206188,-71.002320
-02186=42.241557,-71.082432
-02188=42.204578,-70.957749
-02189=42.209776,-70.928189
-02190=42.166731,-70.952363
-02191=42.243453,-70.942033
-02199=42.347476,-71.082035
-02203=42.360598,-71.058775
-02210=42.347472,-71.039271
-02215=42.347635,-71.103082
-02301=42.078371,-71.042304
-02302=42.088907,-70.998375
-02322=42.132460,-71.054013
-02324=41.972387,-70.978778
-02330=41.878644,-70.743198
-02332=42.044325,-70.706075
-02333=42.037278,-70.940459
-02338=42.002811,-70.863473
-02339=42.122956,-70.856310
-02341=42.050464,-70.867418
-02343=42.140244,-70.997347
-02346=41.878004,-70.869267
-02347=41.834412,-70.957163
-02351=42.119964,-70.957216
-02356=42.060532,-71.119676
-02357=42.054978,-71.080651
-02359=42.067804,-70.805713
-02360=41.882056,-70.631290
-02364=41.987196,-70.741942
-02366=41.850984,-70.654984
-02367=41.959100,-70.802753
-02368=42.176446,-71.051567
-02370=42.130399,-70.910615
-02375=42.003041,-71.076928
-02379=42.021617,-71.026717
-02382=42.078974,-70.939390
-02420=42.457055,-71.215464
-02421=42.438547,-71.239573
-02445=42.325483,-71.135045
-02446=42.343503,-71.122248
-02451=42.397823,-71.255708
-02452=42.392721,-71.213532
-02453=42.369542,-71.240513
-02457=42.299388,-71.274242
-02458=42.353585,-71.188192
-02459=42.314779,-71.192017
-02460=42.351824,-71.208490
-02461=42.317362,-71.206508
-02462=42.328708,-71.255900
-02464=42.312975,-71.218882
-02465=42.348912,-71.226330
-02466=42.344457,-71.248617
-02467=42.314344,-71.152759
-02468=42.328553,-71.229530
-02472=42.369451,-71.177925
-02474=42.420949,-71.156370
-02476=42.415637,-71.175670
-02478=42.395317,-71.180284
-02481=42.311927,-71.275531
-02482=42.293103,-71.298537
-02492=42.276029,-71.244543
-02493=42.360502,-71.303433
-02494=42.299490,-71.232519
-02532=41.751759,-70.597552
-02534=41.668942,-70.619407
-02535=41.337159,-70.761031
-02536=41.596305,-70.567467
-02537=41.728418,-70.435812
-02538=41.777476,-70.642148
-02539=41.377655,-70.522080
-02540=41.573881,-70.632049
-02542=41.707839,-70.545520
-02543=41.478974,-70.766911
-02553=41.711561,-70.622853
-02554=41.291167,-70.092826
-02556=41.639445,-70.624515
-02557=41.441713,-70.576143
-02558=41.745017,-70.653513
-02559=41.690243,-70.616283
-02561=41.766737,-70.540595
-02562=41.787209,-70.526717
-02563=41.728137,-70.476549
-02564=41.271979,-69.984406
-02568=41.458608,-70.613479
-02571=41.761187,-70.695991
-02575=41.400252,-70.656934
-02576=41.772221,-70.762948
-02584=41.258688,-70.007142
-02601=41.657961,-70.298093
-02630=41.706769,-70.312530
-02631=41.747513,-70.066223
-02632=41.659097,-70.346877
-02633=41.689734,-69.972126
-02635=41.624054,-70.439397
-02637=41.705726,-70.270928
-02638=41.730228,-70.197398
-02639=41.668067,-70.136979
-02641=41.751246,-70.153472
-02642=41.841331,-69.977436
-02643=41.797777,-69.937327
-02644=41.683488,-70.510786
-02645=41.711052,-70.057609
-02646=41.670596,-70.071449
-02647=41.630127,-70.310144
-02648=41.670946,-70.415370
-02649=41.616801,-70.490097
-02650=41.701947,-69.961375
-02651=41.874985,-70.003492
-02652=42.049537,-70.094991
-02653=41.769125,-69.973580
-02655=41.627984,-70.392013
-02657=42.059829,-70.200407
-02659=41.681465,-70.023537
-02660=41.707699,-70.158560
-02663=41.894444,-70.012180
-02664=41.674727,-70.195648
-02666=41.990780,-70.045714
-02667=41.921997,-70.023356
-02668=41.716216,-70.363070
-02669=41.666693,-69.989716
-02670=41.660113,-70.170678
-02671=41.670839,-70.113400
-02672=41.635700,-70.313634
-02673=41.655712,-70.247044
-02675=41.704155,-70.231801
-02702=41.785113,-71.059047
-02703=41.931653,-71.294503
-02713=41.441295,-70.902217
-02715=41.803649,-71.153380
-02717=41.760108,-70.972874
-02718=41.862486,-71.011690
-02719=41.633619,-70.871306
-02720=41.725050,-71.121329
-02721=41.675125,-71.148281
-02723=41.692705,-71.129726
-02724=41.683936,-71.177500
-02725=41.720043,-71.188272
-02726=41.759700,-71.144592
-02738=41.704138,-70.752225
-02739=41.665794,-70.814531
-02740=41.637485,-70.938265
-02743=41.718217,-70.901151
-02744=41.606252,-70.913632
-02745=41.700737,-70.950546
-02746=41.660995,-70.940137
-02747=41.664711,-71.015699
-02748=41.553084,-70.971453
-02760=41.972509,-71.334397
-02762=42.012800,-71.336602
-02763=41.966866,-71.308574
-02764=41.851929,-71.153598
-02766=41.965341,-71.181780
-02767=41.940996,-71.048499
-02769=41.846878,-71.244870
-02770=41.759846,-70.838449
-02771=41.842106,-71.322309
-02777=41.758163,-71.214181
-02779=41.838061,-71.077615
-02780=41.909112,-71.118346
-02790=41.599176,-71.082371
-02791=41.528538,-71.078091
-02802=41.952130,-71.456233
-02804=41.434772,-71.769527
-02806=41.734753,-71.319732
-02807=41.176815,-71.577085
-02808=41.408251,-71.749674
-02809=41.675730,-71.273331
-02812=41.478948,-71.652334
-02813=41.394216,-71.669822
-02814=41.895948,-71.700406
-02815=41.774630,-71.647954
-02816=41.696499,-71.622662
-02817=41.637083,-71.678361
-02818=41.642919,-71.485719
-02822=41.570210,-71.626993
-02825=41.782067,-71.726833
-02826=41.982746,-71.653144
-02827=41.698748,-71.739118
-02828=41.879928,-71.563999
-02830=41.974930,-71.651187
-02831=41.774762,-71.620289
-02832=41.514717,-71.729622
-02833=41.492067,-71.769901
-02835=41.510088,-71.378366
-02836=41.454681,-71.620208
-02837=41.518769,-71.167247
-02838=41.965257,-71.476374
-02839=41.940757,-71.641513
-02840=41.478216,-71.322375
-02841=41.511864,-71.332175
-02842=41.518673,-71.281685
-02852=41.588565,-71.459811
-02857=41.822761,-71.633605
-02858=41.964461,-71.651336
-02859=41.959073,-71.757323
-02860=41.870562,-71.388681
-02861=41.878603,-71.353131
-02863=41.890064,-71.393481
-02864=41.966913,-71.428933
-02865=41.915455,-71.449815
-02871=41.587299,-71.261246
-02872=41.597055,-71.320666
-02873=41.533083,-71.780518
-02874=41.508687,-71.481743
-02875=41.456486,-71.638865
-02876=41.994278,-71.585490
-02878=41.609436,-71.178113
-02879=41.424019,-71.534277
-02881=41.478083,-71.524717
-02882=41.415152,-71.465251
-02885=41.725138,-71.258805
-02886=41.703849,-71.455568
-02888=41.747671,-71.406118
-02889=41.700591,-71.376927
-02891=41.361854,-71.789689
-02892=41.492004,-71.594774
-02893=41.679006,-71.518688
-02894=41.444477,-71.703238
-02895=42.001706,-71.499949
-02896=41.975186,-71.544069
-02898=41.517640,-71.668521
-02903=41.818230,-71.409088
-02904=41.858334,-71.436294
-02905=41.784725,-71.396103
-02906=41.840169,-71.390408
-02907=41.798593,-71.424630
-02908=41.839825,-71.436794
-02909=41.821417,-71.453215
-02910=41.774999,-71.435594
-02911=41.854888,-71.472812
-02912=41.825593,-71.402239
-02914=41.814838,-71.365333
-02915=41.772847,-71.354839
-02916=41.842661,-71.352438
-02917=41.905774,-71.523305
-02919=41.827440,-71.519879
-02920=41.767344,-71.465508
-02921=41.768455,-71.515778
-03031=42.874864,-71.600503
-03032=42.997261,-71.363424
-03033=42.749263,-71.675670
-03034=43.056870,-71.340559
-03036=42.984530,-71.255104
-03037=43.141274,-71.248197
-03038=42.892761,-71.276763
-03042=43.054187,-71.084193
-03043=42.997000,-71.817788
-03044=43.000370,-71.119161
-03045=43.021515,-71.563462
-03046=43.116338,-71.595355
-03047=42.938740,-71.879424
-03048=42.742874,-71.761755
-03049=42.749626,-71.585401
-03051=42.760508,-71.409494
-03052=42.846081,-71.468283
-03053=42.869839,-71.387845
-03054=42.852034,-71.519876
-03055=42.818645,-71.673354
-03057=42.908885,-71.694199
-03060=42.741087,-71.458266
-03062=42.722323,-71.501176
-03063=42.782084,-71.518043
-03064=42.779378,-71.474918
-03070=42.981209,-71.677520
-03071=42.746257,-71.874434
-03076=42.730992,-71.337073
-03077=43.038038,-71.205107
-03079=42.788264,-71.221726
-03082=42.896409,-71.768341
-03084=42.826913,-71.875292
-03086=42.832235,-71.759609
-03087=42.811092,-71.302688
-03101=42.989027,-71.466111
-03102=43.011907,-71.491063
-03103=42.950538,-71.446547
-03104=43.009552,-71.439782
-03106=43.082584,-71.446878
-03109=42.963734,-71.400350
-03110=42.935584,-71.536871
-03215=43.942653,-71.447732
-03216=43.451175,-71.797940
-03217=43.726075,-71.642508
-03218=43.338034,-71.277262
-03220=43.474458,-71.482210
-03221=43.258003,-71.960169
-03222=43.642709,-71.789139
-03223=43.855414,-71.685470
-03224=43.362490,-71.558020
-03225=43.363816,-71.241730
-03226=43.711764,-71.504236
-03227=43.841192,-71.480852
-03229=43.202187,-71.696803
-03230=43.508647,-71.890241
-03231=43.473341,-71.762339
-03233=43.424011,-71.931200
-03234=43.204812,-71.348563
-03235=43.449136,-71.674267
-03237=43.423058,-71.387218
-03238=43.984428,-71.911271
-03240=43.574714,-71.952004
-03241=43.751504,-71.817394
-03242=43.169407,-71.831201
-03243=43.528306,-71.769192
-03244=43.128103,-71.916940
-03245=43.761590,-71.583345
-03246=43.576496,-71.482301
-03249=43.519156,-71.375593
-03251=44.100673,-71.494074
-03253=43.631211,-71.498585
-03254=43.717721,-71.369179
-03255=43.314026,-72.024551
-03256=43.623334,-71.632615
-03257=43.417721,-71.990609
-03258=43.265259,-71.408835
-03259=43.875712,-71.395018
-03260=43.343127,-71.923616
-03261=43.211856,-71.223393
-03262=43.999889,-71.714447
-03263=43.288501,-71.309368
-03264=43.738799,-71.702722
-03266=43.782855,-71.884727
-03268=43.386099,-71.772917
-03269=43.524186,-71.601607
-03273=43.301982,-71.926953
-03275=43.170513,-71.417063
-03276=43.431031,-71.575998
-03278=43.308930,-71.835506
-03279=43.965830,-71.859100
-03280=43.190068,-72.093879
-03281=43.078057,-71.703708
-03282=43.858721,-71.923718
-03284=43.473002,-72.013536
-03285=43.947870,-71.635802
-03287=43.443115,-71.922637
-03290=43.129847,-71.131859
-03291=43.179131,-71.142619
-03293=43.970620,-71.679913
-03301=43.238549,-71.555988
-03303=43.311685,-71.665421
-03304=43.133177,-71.537242
-03307=43.333988,-71.446658
-03431=42.965044,-72.294803
-03440=43.050291,-71.981967
-03441=42.780669,-72.446994
-03442=43.020281,-71.903693
-03443=42.875727,-72.456114
-03444=42.889279,-72.069849
-03445=43.020616,-72.214374
-03446=42.858271,-72.296360
-03447=42.753205,-72.153028
-03448=43.052622,-72.274498
-03449=42.977339,-71.997821
-03450=42.948515,-72.068894
-03451=42.809298,-72.504822
-03452=42.829254,-72.059901
-03455=42.901769,-72.172904
-03456=43.138544,-72.208769
-03457=42.999482,-72.121703
-03458=42.868369,-71.940102
-03461=42.756663,-72.013247
-03462=42.889241,-72.388978
-03464=43.090822,-72.126816
-03465=42.828785,-72.188940
-03466=42.890398,-72.502989
-03467=42.968075,-72.430856
-03470=42.771370,-72.354216
-03561=44.343350,-71.795116
-03570=44.504596,-71.155466
-03574=44.260435,-71.609203
-03575=44.313744,-71.402889
-03576=44.912445,-71.385112
-03579=44.964771,-71.025563
-03580=44.163448,-71.693296
-03581=44.289765,-71.152184
-03582=44.563265,-71.442474
-03583=44.396741,-71.464694
-03584=44.483853,-71.545865
-03585=44.222416,-71.877173
-03586=44.218410,-71.800240
-03588=44.623040,-71.211846
-03590=44.749655,-71.478749
-03592=45.116236,-71.261110
-03593=44.301498,-71.299826
-03595=44.305211,-71.497351
-03597=44.744797,-71.381584
-03598=44.378898,-71.628699
-03601=43.238837,-72.286124
-03602=43.140832,-72.347568
-03603=43.246634,-72.383931
-03604=43.127333,-72.376864
-03605=43.236564,-72.184869
-03607=43.196510,-72.268353
-03608=43.076505,-72.395926
-03609=43.143932,-72.446437
-03740=44.184481,-71.978837
-03741=43.676940,-72.007001
-03743=43.360727,-72.326929
-03745=43.476437,-72.334130
-03746=43.494376,-72.257151
-03748=43.589099,-72.132135
-03750=43.721023,-72.185207
-03751=43.449753,-72.092311
-03752=43.271965,-72.100703
-03753=43.516590,-72.149093
-03754=43.377461,-72.138390
-03755=43.727746,-72.142753
-03765=44.035225,-72.050202
-03766=43.632568,-72.234816
-03768=43.816634,-72.094295
-03770=43.531300,-72.258815
-03771=44.296664,-71.980649
-03773=43.371345,-72.202789
-03774=44.099753,-71.985475
-03777=43.883227,-72.033583
-03779=43.961850,-72.001291
-03780=44.046677,-71.988955
-03781=43.560058,-72.299358
-03782=43.390088,-72.093129
-03784=43.638325,-72.306490
-03785=44.043516,-71.912200
-03801=43.074812,-70.805443
-03809=43.464959,-71.200405
-03810=43.512833,-71.294635
-03811=42.839103,-71.167180
-03812=44.081130,-71.297237
-03813=44.127402,-71.060836
-03814=43.770937,-71.181505
-03816=43.689431,-71.258778
-03817=43.887170,-71.229402
-03818=43.959771,-71.274013
-03819=42.927892,-71.119888
-03820=43.190658,-70.887655
-03823=43.174607,-70.941453
-03824=43.117186,-70.918788
-03825=43.215566,-71.038980
-03826=42.890002,-71.130675
-03827=42.903739,-70.995570
-03830=43.614109,-70.993572
-03832=43.906960,-71.047520
-03833=42.978415,-70.987522
-03835=43.372559,-71.083260
-03836=43.842055,-71.075122
-03837=43.422251,-71.336087
-03838=44.110671,-71.223276
-03839=43.262994,-70.991203
-03840=43.039732,-70.845622
-03841=42.881861,-71.182399
-03842=42.939601,-70.836728
-03844=42.924811,-70.886242
-03845=44.095413,-71.120545
-03846=44.187626,-71.155760
-03847=44.071999,-71.123967
-03848=42.913731,-71.073595
-03849=43.902455,-71.129871
-03850=43.690629,-71.297611
-03851=43.437283,-71.025251
-03852=43.495013,-70.986040
-03853=43.642843,-71.282735
-03854=43.062161,-70.716884
-03855=43.463687,-71.152140
-03856=43.038509,-70.967954
-03857=43.070909,-70.946875
-03858=42.870369,-71.045915
-03860=44.035706,-71.117232
-03861=43.119202,-71.007082
-03862=42.979934,-70.829441
-03864=43.689928,-71.103444
-03865=42.845597,-71.093260
-03867=43.303528,-70.988238
-03868=43.323179,-70.933650
-03869=43.219815,-70.843107
-03870=43.008649,-70.758330
-03871=42.980948,-70.777362
-03872=43.570559,-71.043233
-03873=42.934018,-71.183605
-03874=42.883123,-70.860823
-03875=43.895078,-71.189275
-03878=43.253476,-70.887944
-03882=43.746733,-71.041910
-03883=43.808537,-71.320336
-03884=43.275308,-71.170004
-03885=43.014997,-70.902586
-03886=43.864038,-71.296068
-03887=43.499674,-71.073889
-03890=43.800602,-71.201489
-03894=43.603773,-71.177139
-03901=43.299332,-70.842077
-03902=43.214916,-70.628806
-03903=43.146499,-70.774320
-03904=43.108051,-70.728595
-03905=43.086194,-70.686846
-03906=43.352258,-70.779435
-03907=43.255894,-70.610967
-03908=43.230492,-70.752426
-03909=43.166460,-70.679004
-03910=43.185309,-70.603455
-03911=43.142293,-70.626458
-04001=43.519795,-70.923465
-04002=43.489069,-70.661906
-04003=43.727261,-69.956899
-04005=43.492102,-70.486566
-04006=43.444292,-70.344570
-04008=44.044232,-69.863767
-04009=44.047513,-70.743319
-04010=43.930799,-70.918584
-04011=43.896405,-69.973436
-04015=43.976287,-70.521109
-04017=43.738955,-70.088396
-04019=43.686216,-70.102838
-04020=43.767186,-70.808862
-04021=43.791796,-70.264762
-04022=43.995935,-70.813980
-04024=43.836320,-70.685245
-04027=43.399909,-70.912785
-04029=43.902531,-70.689568
-04030=43.589062,-70.696275
-04032=43.844826,-70.089953
-04037=44.101677,-70.942769
-04038=43.703617,-70.463780
-04039=43.904551,-70.367027
-04040=44.143452,-70.820154
-04041=43.848997,-70.830764
-04042=43.631019,-70.614369
-04043=43.392979,-70.577032
-04046=43.429829,-70.474124
-04047=43.732798,-70.899149
-04048=43.688481,-70.781883
-04049=43.745748,-70.699807
-04050=43.685939,-70.153919
-04051=44.192471,-70.885803
-04055=43.975769,-70.639298
-04056=43.659549,-70.883523
-04057=44.101552,-70.698919
-04061=43.633558,-70.739479
-04062=43.794689,-70.405329
-04063=43.500389,-70.395326
-04064=43.525032,-70.388253
-04066=43.765541,-69.966983
-04068=43.837898,-70.946568
-04069=43.903914,-70.182018
-04071=43.926746,-70.450760
-04072=43.550411,-70.466341
-04073=43.418643,-70.747779
-04074=43.589627,-70.366191
-04076=43.554017,-70.832796
-04079=43.790591,-69.971530
-04083=43.464119,-70.814287
-04084=43.762140,-70.566688
-04085=43.773320,-70.616514
-04086=43.964977,-69.955624
-04087=43.569278,-70.743999
-04088=44.202838,-70.722272
-04090=43.331432,-70.645586
-04091=43.839321,-70.744838
-04092=43.707920,-70.352602
-04093=43.636260,-70.538842
-04095=43.628610,-70.913904
-04096=43.788137,-70.156478
-04097=43.846092,-70.241798
-04101=43.662607,-70.257949
-04102=43.654591,-70.297989
-04103=43.694105,-70.287927
-04105=43.740472,-70.277172
-04106=43.631402,-70.285989
-04107=43.587173,-70.236476
-04108=43.660278,-70.186053
-04109=43.637528,-70.171426
-04110=43.746027,-70.180065
-04210=44.084537,-70.249649
-04216=44.708634,-70.854911
-04217=44.380100,-70.815239
-04219=44.400747,-70.558110
-04220=44.342620,-70.347440
-04221=44.481538,-70.277339
-04222=43.956021,-70.132418
-04224=44.559945,-70.415762
-04226=44.594476,-70.692505
-04227=44.568123,-70.293139
-04228=44.433489,-70.115250
-04231=44.263059,-70.875479
-04234=44.623831,-70.191893
-04236=44.189754,-70.145088
-04237=44.494500,-70.734421
-04238=44.209257,-70.388878
-04239=44.516897,-70.202187
-04240=44.089594,-70.172185
-04250=44.010547,-70.127409
-04252=44.036688,-70.058799
-04253=44.411638,-70.216186
-04254=44.445337,-70.138076
-04255=44.345792,-70.655701
-04256=44.104897,-70.404680
-04257=44.553098,-70.495260
-04258=44.137940,-70.336334
-04259=44.233505,-70.014723
-04260=43.957508,-70.296011
-04261=44.503525,-70.961709
-04263=44.295351,-70.133074
-04265=44.279255,-70.042845
-04267=44.206591,-70.792354
-04268=44.225867,-70.610021
-04270=44.117335,-70.527478
-04271=44.263611,-70.498190
-04274=44.048106,-70.393563
-04275=44.702596,-70.647585
-04276=44.559920,-70.625264
-04280=44.116831,-70.062582
-04281=44.248001,-70.490816
-04282=44.265107,-70.247980
-04284=44.362503,-70.061230
-04285=44.697513,-70.448975
-04286=44.401438,-70.865079
-04287=44.051212,-69.968192
-04289=44.319278,-70.522647
-04290=44.460915,-70.451923
-04292=44.385909,-70.449596
-04294=44.637914,-70.275434
-04330=44.351895,-69.747626
-04342=44.086173,-69.736988
-04343=44.328707,-69.891691
-04344=44.260548,-69.827805
-04345=44.195074,-69.793912
-04346=44.237286,-69.751247
-04347=44.287241,-69.818040
-04348=44.210864,-69.499152
-04349=44.434007,-70.067034
-04350=44.172142,-69.934500
-04351=44.342427,-69.861935
-04352=44.466488,-69.960450
-04353=44.198014,-69.619689
-04354=44.396114,-69.430630
-04355=44.384388,-69.950200
-04357=44.116833,-69.829607
-04358=44.414473,-69.535271
-04359=44.177792,-69.762596
-04360=44.554821,-69.999643
-04363=44.315485,-69.571186
-04364=44.309991,-69.963093
-04401=44.848517,-68.850405
-04406=45.229183,-69.596521
-04408=44.893880,-68.303832
-04410=45.088260,-68.906681
-04411=44.868349,-68.586337
-04412=44.784754,-68.735012
-04413=45.561415,-67.764628
-04414=45.442861,-69.114570
-04415=45.400376,-69.057877
-04416=44.623798,-68.749742
-04417=45.231514,-68.341886
-04418=45.086448,-68.465508
-04419=44.800454,-69.003117
-04421=44.409006,-68.815533
-04422=45.077652,-69.031432
-04424=45.680311,-67.876199
-04426=45.213059,-69.189134
-04427=44.980538,-69.010880
-04428=44.805800,-68.554003
-04429=44.721160,-68.617002
-04430=45.636841,-68.575197
-04431=44.560978,-68.672727
-04434=44.763866,-69.128068
-04435=44.963225,-69.125005
-04438=44.598953,-68.928337
-04441=45.702416,-69.623233
-04442=45.497692,-69.727290
-04443=45.227772,-69.353263
-04444=44.728980,-68.949964
-04448=45.296196,-68.711060
-04449=44.992636,-68.888475
-04450=44.916049,-68.927991
-04451=45.607010,-68.222173
-04453=45.162250,-68.760531
-04454=45.552117,-67.561059
-04455=45.299422,-68.259742
-04456=44.876817,-68.996652
-04457=45.413427,-68.479871
-04459=45.588735,-68.339985
-04460=45.712888,-68.521326
-04461=44.954787,-68.582438
-04462=45.972769,-69.012445
-04463=45.286832,-68.895109
-04464=45.441524,-69.304939
-04468=45.024673,-68.734534
-04469=44.901066,-68.668303
-04471=45.916545,-67.856824
-04472=44.576320,-68.669915
-04473=44.881680,-68.738644
-04474=44.688778,-68.762805
-04475=45.183587,-68.589614
-04476=44.482703,-68.705997
-04478=45.865239,-69.815623
-04479=45.124216,-69.287019
-04481=45.245979,-69.092775
-04485=45.358040,-69.630292
-04487=45.387737,-68.104471
-04488=44.871640,-69.113926
-04489=44.910362,-68.690189
-04490=45.436636,-67.867623
-04491=45.573159,-67.470651
-04492=45.367045,-67.681322
-04493=45.236824,-68.524576
-04495=45.477433,-68.338980
-04496=44.650751,-68.908918
-04497=45.754610,-68.060944
-04530=43.888228,-69.826699
-04535=44.098468,-69.629176
-04537=43.875449,-69.620688
-04538=43.851505,-69.627611
-04539=43.973542,-69.501972
-04541=43.894242,-69.476881
-04543=44.022356,-69.490757
-04544=43.844446,-69.582305
-04547=43.978605,-69.332579
-04548=43.833447,-69.738561
-04551=43.975714,-69.430661
-04553=44.052277,-69.567522
-04554=43.862731,-69.512323
-04555=44.101248,-69.482658
-04556=43.975929,-69.610837
-04558=43.885128,-69.514471
-04562=43.770817,-69.819176
-04563=44.013924,-69.258707
-04564=43.921687,-69.464934
-04568=43.871809,-69.558281
-04570=43.808546,-69.630765
-04571=43.896656,-69.674170
-04572=44.122084,-69.383354
-04573=43.951357,-69.552330
-04574=44.260639,-69.391524
-04575=43.852150,-69.662201
-04576=43.813339,-69.662868
-04578=43.982445,-69.692754
-04579=43.959656,-69.769351
-04605=44.672809,-68.391841
-04606=44.540726,-67.712364
-04607=44.467048,-68.086866
-04609=44.397470,-68.263808
-04611=44.466957,-67.612596
-04612=44.231530,-68.414514
-04613=44.376983,-68.029882
-04614=44.402775,-68.568701
-04616=44.261324,-68.540355
-04617=44.350024,-68.766477
-04619=45.142952,-67.217524
-04622=44.750666,-67.966927
-04623=44.744467,-67.733658
-04624=44.423951,-67.985876
-04625=44.256370,-68.266282
-04626=44.669023,-67.221990
-04627=44.237010,-68.607845
-04628=44.873113,-67.281078
-04629=44.422694,-68.506049
-04630=44.870323,-67.476553
-04631=44.910958,-67.008913
-04634=44.650967,-68.221271
-04635=44.172234,-68.351482
-04637=45.196916,-67.816173
-04640=44.524572,-68.285250
-04642=44.330584,-68.809947
-04643=44.538027,-67.818538
-04644=44.413835,-68.252076
-04645=44.066574,-68.615750
-04646=44.245566,-68.224954
-04648=44.665504,-67.594970
-04649=44.547110,-67.489830
-04650=44.292625,-68.722885
-04652=44.819713,-67.062328
-04653=44.209467,-68.334648
-04654=44.757152,-67.539897
-04655=44.655762,-67.378971
-04657=44.970309,-67.415773
-04658=44.507821,-67.877963
-04660=44.335753,-68.345729
-04662=44.300958,-68.292447
-04664=44.539656,-68.119741
-04666=44.980584,-67.223672
-04667=44.983542,-67.101382
-04668=45.212926,-67.585966
-04669=44.408250,-68.014884
-04671=45.067341,-67.149953
-04673=44.317252,-68.680481
-04674=44.274254,-68.458828
-04675=44.301347,-68.251148
-04676=44.346880,-68.634365
-04677=44.476822,-68.181506
-04679=44.278734,-68.324541
-04680=44.478414,-67.947062
-04681=44.150464,-68.645327
-04683=44.245208,-68.787815
-04684=44.467466,-68.507324
-04685=44.151687,-68.465212
-04686=44.996537,-67.694027
-04691=44.760322,-67.255047
-04693=44.376372,-68.093638
-04694=45.115083,-67.477541
-04730=46.191023,-67.860968
-04732=46.327493,-68.939198
-04733=45.757478,-68.404152
-04734=46.468001,-67.956337
-04735=46.414672,-67.860722
-04736=46.911495,-68.029189
-04739=46.995906,-68.672927
-04740=46.633304,-67.847623
-04741=47.453712,-69.222921
-04742=46.776241,-67.859197
-04743=47.200266,-68.614333
-04745=47.282101,-68.388783
-04746=47.256149,-68.137481
-04747=46.004972,-68.233771
-04750=46.954967,-67.857437
-04756=47.321708,-68.298213
-04757=46.667614,-68.168635
-04758=46.559272,-67.853225
-04760=46.339341,-67.954874
-04761=46.117254,-67.975284
-04762=46.958248,-68.124731
-04763=46.075083,-68.114975
-04764=46.398929,-68.585323
-04765=46.158786,-68.591119
-04766=46.892463,-68.215780
-04768=46.863399,-68.892093
-04769=46.688952,-67.991914
-04772=47.230084,-68.311449
-04773=47.267434,-68.223039
-04774=47.077040,-69.154500
-04776=45.871695,-68.324753
-04777=45.842521,-68.501076
-04779=47.124514,-68.324032
-04780=46.239244,-68.285281
-04781=47.150199,-68.613495
-04783=47.040124,-68.175050
-04785=47.131861,-67.977959
-04786=46.794921,-68.192051
-04787=46.533465,-67.966076
-04841=44.133536,-69.133822
-04843=44.238406,-69.064039
-04847=44.241178,-69.188513
-04848=44.298880,-68.915250
-04849=44.316106,-69.025998
-04851=43.877110,-68.868680
-04852=43.766602,-69.309833
-04853=44.136346,-68.866756
-04854=44.075524,-69.079843
-04855=43.938358,-69.264531
-04856=44.180604,-69.122109
-04858=44.046510,-69.154060
-04859=43.999115,-69.144355
-04860=43.979599,-69.216040
-04861=44.107714,-69.171425
-04862=44.262706,-69.277723
-04863=44.068815,-68.853314
-04864=44.128010,-69.243885
-04901=44.541099,-69.573012
-04910=44.508311,-69.445210
-04911=44.769927,-69.972548
-04912=44.980705,-69.689878
-04915=44.463502,-69.037571
-04917=44.487734,-69.838637
-04918=44.516779,-69.866480
-04920=45.142341,-69.854458
-04921=44.560894,-69.136548
-04922=44.687730,-69.384721
-04923=45.029009,-69.445746
-04924=44.782241,-69.546315
-04925=45.212372,-69.903397
-04926=44.480122,-69.513888
-04927=44.665474,-69.540766
-04928=44.943471,-69.258242
-04929=44.773091,-69.301537
-04930=45.027572,-69.317970
-04932=44.697571,-69.143703
-04933=44.816495,-69.231348
-04936=45.422238,-70.623926
-04937=44.651653,-69.661276
-04938=44.661856,-70.103104
-04939=45.077258,-69.158771
-04940=44.623994,-70.083293
-04941=44.470053,-69.284182
-04942=45.077022,-69.586446
-04943=44.879823,-69.520500
-04944=44.686891,-69.643928
-04945=45.869605,-70.266055
-04947=45.049288,-70.268762
-04949=44.369093,-69.336000
-04950=44.826354,-69.799713
-04951=44.607217,-69.071281
-04952=44.412796,-69.154791
-04953=44.860300,-69.236698
-04955=44.647207,-69.993337
-04956=44.807906,-70.109840
-04957=44.702067,-69.843372
-04958=44.896903,-69.917316
-04961=45.137779,-70.144293
-04962=44.489076,-69.625948
-04963=44.589007,-69.887309
-04964=44.866916,-70.774098
-04965=44.843151,-69.368356
-04966=44.814699,-70.427311
-04967=44.769841,-69.433670
-04969=44.785282,-69.236277
-04970=45.007913,-70.618162
-04971=44.929680,-69.391278
-04973=44.368254,-69.186293
-04974=44.470906,-68.928662
-04975=44.625354,-69.588334
-04976=44.789271,-69.667734
-04978=44.641819,-69.799890
-04979=44.939380,-69.808142
-04981=44.514019,-68.839050
-04982=45.098126,-70.430547
-04983=44.979400,-70.367301
-04984=44.696586,-70.267203
-04985=45.369441,-69.931095
-04986=44.549460,-69.211292
-04987=44.674148,-69.251844
-04988=44.570148,-69.362441
-04989=44.429335,-69.648294
-04992=44.663657,-70.162677
-05001=43.672188,-72.380193
-05031=43.702242,-72.595300
-05032=43.801580,-72.657760
-05033=44.012176,-72.158296
-05034=43.574514,-72.643229
-05035=43.611804,-72.685996
-05036=44.023908,-72.587891
-05037=43.457741,-72.493459
-05038=43.989747,-72.454953
-05039=44.063294,-72.313078
-05040=44.069880,-72.198724
-05041=43.956596,-72.538539
-05042=44.222165,-72.096756
-05043=43.805093,-72.204671
-05045=43.917790,-72.180112
-05046=44.232453,-72.257516
-05048=43.580615,-72.427711
-05050=44.266812,-72.064006
-05051=44.104485,-72.121743
-05052=43.596986,-72.359722
-05053=43.719447,-72.489225
-05055=43.777628,-72.323984
-05056=43.508851,-72.693755
-05058=43.881263,-72.272288
-05059=43.637817,-72.427734
-05060=43.967072,-72.708604
-05061=43.916755,-72.570182
-05062=43.496493,-72.599969
-05065=43.782477,-72.423363
-05067=43.677373,-72.518063
-05068=43.780996,-72.547512
-05069=44.204072,-72.131204
-05070=43.851622,-72.343301
-05071=43.561557,-72.546332
-05072=43.898928,-72.372069
-05075=43.845086,-72.282536
-05076=44.141854,-72.230959
-05077=43.908796,-72.459306
-05079=43.956765,-72.326539
-05081=44.123038,-72.065864
-05083=43.918899,-72.268095
-05084=43.729739,-72.451439
-05086=44.108949,-72.300730
-05089=43.495591,-72.442313
-05091=43.630741,-72.570302
-05101=43.182144,-72.493221
-05141=43.151168,-72.569224
-05142=43.397517,-72.580475
-05143=43.277630,-72.640348
-05146=43.184942,-72.633977
-05148=43.231362,-72.791008
-05149=43.380553,-72.712124
-05150=43.334435,-72.530792
-05151=43.395317,-72.496973
-05152=43.233343,-72.938985
-05153=43.418436,-72.642552
-05154=43.135197,-72.546165
-05155=43.091967,-72.914343
-05156=43.310627,-72.461623
-05158=43.084054,-72.469725
-05161=43.321441,-72.802903
-05201=42.869211,-73.128516
-05250=43.103713,-73.173145
-05251=43.264154,-73.063670
-05252=43.082047,-73.066766
-05253=43.245762,-73.002071
-05254=43.152272,-73.061422
-05255=43.137652,-73.022415
-05257=42.958719,-73.260755
-05260=42.820569,-73.274398
-05261=42.770285,-73.179047
-05262=42.973750,-73.075240
-05301=42.838680,-72.659997
-05340=43.168974,-72.972363
-05341=42.974544,-72.801051
-05342=42.777497,-72.794821
-05343=43.102664,-72.820014
-05345=42.987266,-72.684706
-05346=43.037688,-72.536522
-05350=42.790943,-72.972640
-05352=42.808047,-73.076277
-05353=43.071050,-72.682202
-05354=42.764133,-72.522086
-05355=43.019478,-72.812148
-05356=42.975529,-72.864581
-05358=42.773345,-72.705469
-05359=43.153086,-72.715918
-05360=43.000119,-72.946971
-05361=42.780694,-72.879131
-05362=42.935220,-72.659896
-05363=42.882781,-72.893126
-05401=44.476621,-73.209998
-05403=44.444866,-73.173468
-05404=44.495587,-73.184857
-05405=44.473735,-73.195610
-05408=44.511852,-73.249611
-05439=44.494527,-73.165270
-05440=44.957882,-73.291974
-05441=44.805549,-72.720243
-05442=44.757187,-72.671334
-05443=44.139443,-73.039930
-05444=44.649728,-72.896957
-05445=44.309955,-73.220978
-05446=44.541259,-73.184415
-05447=44.932454,-72.701892
-05448=44.750291,-72.900865
-05450=44.894578,-72.795246
-05452=44.538624,-73.050223
-05454=44.710289,-73.028877
-05455=44.801687,-72.967393
-05456=44.221416,-73.264595
-05457=44.958733,-72.922009
-05458=44.717847,-73.307486
-05459=44.950060,-73.005367
-05461=44.332701,-73.087409
-05462=44.312539,-72.952108
-05463=44.871325,-73.349200
-05464=44.646262,-72.818997
-05465=44.464175,-72.951057
-05468=44.657371,-73.144488
-05471=44.828065,-72.578206
-05472=44.102761,-73.155209
-05473=44.241936,-73.194663
-05474=44.787732,-73.297992
-05476=44.955228,-72.643138
-05477=44.416769,-72.962422
-05478=44.808422,-73.082507
-05481=44.772921,-73.205391
-05482=44.380662,-73.211006
-05483=44.889912,-72.963139
-05485=44.900339,-72.970903
-05486=44.642247,-73.307740
-05487=44.210341,-72.993405
-05488=44.921329,-73.125393
-05489=44.570909,-72.901598
-05491=44.111961,-73.310796
-05492=44.737637,-72.761773
-05494=44.607422,-73.003642
-05495=44.429066,-73.096243
-05602=44.274953,-72.609475
-05640=44.341880,-72.499842
-05641=44.188842,-72.472172
-05647=44.409482,-72.259129
-05648=44.383292,-72.492477
-05649=44.166555,-72.346600
-05650=44.384616,-72.435941
-05651=44.282307,-72.489262
-05652=44.723753,-72.610965
-05653=44.714895,-72.472740
-05654=44.140286,-72.475659
-05655=44.624262,-72.570417
-05656=44.648124,-72.688840
-05657=44.535509,-72.526720
-05658=44.364724,-72.354830
-05660=44.253995,-72.734479
-05661=44.532336,-72.620258
-05663=44.147613,-72.691275
-05664=44.167173,-72.653138
-05667=44.269042,-72.388870
-05669=44.054111,-72.712962
-05672=44.491806,-72.712611
-05673=44.198969,-72.840833
-05674=44.112526,-72.874028
-05675=44.076165,-72.422633
-05676=44.295598,-72.826991
-05677=44.408300,-72.709972
-05678=44.156758,-72.475424
-05679=44.108944,-72.531912
-05680=44.540596,-72.471939
-05681=44.458081,-72.379134
-05682=44.393305,-72.563490
-05701=43.624577,-72.910204
-05730=43.437589,-72.788657
-05732=43.643813,-73.210774
-05733=43.810474,-73.090280
-05734=43.981724,-73.331937
-05735=43.635473,-73.167760
-05736=43.633443,-73.008486
-05737=43.773182,-72.905861
-05738=43.523441,-72.860171
-05739=43.342621,-73.000196
-05740=43.971751,-73.105275
-05742=43.419653,-72.910801
-05743=43.677330,-73.304926
-05744=43.694013,-73.080457
-05747=44.005291,-72.841314
-05748=43.905325,-72.918146
-05751=43.657594,-72.784406
-05753=43.997783,-73.178295
-05757=43.480102,-73.123641
-05758=43.450789,-72.757786
-05759=43.532111,-72.964801
-05760=43.800615,-73.289701
-05761=43.360927,-73.151758
-05762=43.804081,-72.836973
-05763=43.730204,-72.995230
-05764=43.539935,-73.189193
-05765=43.651666,-73.034649
-05766=43.984937,-72.996775
-05767=43.879408,-72.831685
-05769=43.932071,-73.119822
-05770=43.881953,-73.324504
-05772=43.750797,-72.760914
-05773=43.420109,-72.987065
-05774=43.442986,-73.191086
-05775=43.365956,-73.228386
-05776=43.252854,-73.197348
-05777=43.556449,-73.048787
-05778=43.876421,-73.212536
-05819=44.404737,-71.983075
-05820=44.763124,-72.375244
-05821=44.311345,-72.114854
-05822=44.751643,-72.140274
-05824=44.439085,-71.826104
-05825=44.862501,-72.244465
-05826=44.647727,-72.402091
-05827=44.676898,-72.362504
-05828=44.437504,-72.124822
-05829=44.967210,-72.068265
-05830=44.972100,-71.986969
-05832=44.578371,-71.917466
-05833=44.842157,-71.958546
-05836=44.511564,-72.266145
-05837=44.663809,-71.805296
-05839=44.673683,-72.207014
-05841=44.607670,-72.288602
-05842=44.558929,-72.231568
-05843=44.518714,-72.348965
-05845=44.800772,-72.290572
-05846=44.800887,-71.862687
-05847=44.793437,-72.458451
-05850=44.541247,-72.014699
-05851=44.557132,-72.080590
-05853=44.895936,-71.941265
-05855=44.927131,-72.192236
-05857=44.928911,-72.312700
-05858=44.558787,-71.816917
-05859=44.966671,-72.443035
-05860=44.802660,-72.103996
-05862=44.318185,-72.216116
-05866=44.640739,-72.110885
-05867=44.665071,-72.035973
-05868=44.902125,-72.377929
-05871=44.689305,-71.936955
-05872=44.868527,-72.048033
-05873=44.423380,-72.195095
-05874=44.883474,-72.484958
-05875=44.709849,-72.246956
-05901=44.940810,-71.654783
-05902=45.009587,-71.487927
-05903=44.935091,-71.588009
-05904=44.416217,-71.706540
-05905=44.702095,-71.679481
-05906=44.470995,-71.705947
-05907=44.911161,-71.818697
-06001=41.787159,-72.852046
-06002=41.844930,-72.740951
-06010=41.681578,-72.940749
-06013=41.749079,-72.948657
-06016=41.901899,-72.547432
-06018=42.024629,-73.309616
-06019=41.857508,-72.902765
-06020=41.834618,-72.928722
-06021=42.017229,-73.104821
-06022=41.865433,-72.927326
-06023=41.612590,-72.720095
-06024=42.012137,-73.274264
-06026=41.929719,-72.745378
-06027=42.004930,-72.915699
-06029=41.914149,-72.445568
-06031=41.955257,-73.316785
-06032=41.731051,-72.857096
-06033=41.707463,-72.538932
-06035=41.960682,-72.803846
-06037=41.605477,-72.778459
-06039=41.952698,-73.458626
-06040=41.761415,-72.525608
-06042=41.802752,-72.521008
-06043=41.764589,-72.437575
-06051=41.665141,-72.769832
-06052=41.655568,-72.803107
-06053=41.688039,-72.793469
-06057=41.841053,-72.998664
-06058=41.969922,-73.178473
-06059=41.957029,-72.942485
-06060=42.009151,-72.847465
-06061=41.875600,-72.966840
-06062=41.673639,-72.859729
-06063=41.925197,-72.971286
-06065=41.974651,-73.007676
-06066=41.837561,-72.459040
-06067=41.656624,-72.661779
-06068=42.007238,-73.422228
-06069=41.860763,-73.449215
-06070=41.875857,-72.809376
-06071=41.992633,-72.453725
-06073=41.664442,-72.555040
-06074=41.838090,-72.577836
-06076=41.984442,-72.263453
-06078=41.991611,-72.651744
-06081=41.905187,-72.772551
-06082=41.983993,-72.555553
-06084=41.883019,-72.358869
-06085=41.748955,-72.889415
-06088=41.917911,-72.583371
-06089=41.833424,-72.824618
-06090=41.946484,-72.863185
-06091=42.026504,-72.980213
-06092=41.873452,-72.860524
-06093=42.013232,-72.717370
-06095=41.871037,-72.675082
-06096=41.927630,-72.659703
-06098=41.956189,-73.086364
-06103=41.767208,-72.674257
-06105=41.774705,-72.705037
-06106=41.748587,-72.696006
-06107=41.752304,-72.758098
-06108=41.780375,-72.623945
-06109=41.702484,-72.669301
-06110=41.732683,-72.733603
-06111=41.686993,-72.730839
-06112=41.793336,-72.695823
-06114=41.740854,-72.670695
-06117=41.785160,-72.763564
-06118=41.748702,-72.609686
-06119=41.763421,-72.727208
-06120=41.790263,-72.664259
-06160=41.766607,-72.691149
-06226=41.708238,-72.208549
-06231=41.632864,-72.367321
-06232=41.732982,-72.374658
-06234=41.793886,-71.953265
-06235=41.790890,-72.129540
-06237=41.693707,-72.305671
-06238=41.780138,-72.343943
-06239=41.794040,-71.854535
-06241=41.853901,-71.847371
-06242=41.895596,-72.093305
-06243=41.844870,-71.805029
-06247=41.767801,-72.075026
-06248=41.688585,-72.408671
-06249=41.632955,-72.240090
-06250=41.772955,-72.198446
-06254=41.621212,-72.142609
-06255=41.991087,-71.901952
-06256=41.732152,-72.157361
-06259=41.871502,-71.987646
-06260=41.908027,-71.870452
-06262=42.019311,-71.948384
-06263=41.835236,-71.899848
-06264=41.694210,-72.100366
-06266=41.673661,-72.172813
-06268=41.800444,-72.248030
-06269=41.804414,-72.293165
-06277=41.958388,-71.843920
-06278=41.897123,-72.171427
-06279=41.897267,-72.251848
-06280=41.690986,-72.130094
-06281=41.973476,-72.014137
-06282=41.948870,-72.084820
-06320=41.347450,-72.101743
-06330=41.635570,-72.077527
-06331=41.693960,-72.009118
-06332=41.731216,-71.902335
-06333=41.386032,-72.229092
-06334=41.544925,-72.173849
-06335=41.434707,-72.058533
-06336=41.580577,-72.195867
-06339=41.441939,-71.990545
-06340=41.357477,-72.041780
-06350=41.648507,-72.068444
-06351=41.589788,-71.948385
-06353=41.464427,-72.149606
-06354=41.708767,-71.855386
-06355=41.366899,-71.976371
-06357=41.327149,-72.215344
-06359=41.470969,-71.872525
-06360=41.547860,-72.089488
-06365=41.518652,-72.006597
-06370=41.466982,-72.189275
-06371=41.362386,-72.323754
-06373=41.677728,-71.796067
-06374=41.681892,-71.910965
-06375=41.406338,-72.123236
-06376=41.294060,-72.253950
-06377=41.730545,-71.819313
-06378=41.383211,-71.908408
-06379=41.363472,-71.853197
-06380=41.563417,-72.051631
-06382=41.468946,-72.122739
-06384=41.579192,-71.831228
-06385=41.361730,-72.156576
-06387=41.741171,-71.913021
-06389=41.564183,-72.129164
-06390=41.273580,-71.969009
-06401=41.344249,-73.069825
-06403=41.443685,-73.051925
-06405=41.285002,-72.793549
-06409=41.351081,-72.420167
-06410=41.511827,-72.903617
-06412=41.411728,-72.487146
-06413=41.295610,-72.529125
-06414=41.572231,-72.552319
-06415=41.550291,-72.348616
-06416=41.616657,-72.661586
-06417=41.367819,-72.477442
-06418=41.326124,-73.082574
-06419=41.374419,-72.578328
-06420=41.489351,-72.258380
-06422=41.468922,-72.684525
-06423=41.457474,-72.389153
-06424=41.560603,-72.502329
-06426=41.351136,-72.397164
-06437=41.331777,-72.696816
-06438=41.455264,-72.504397
-06441=41.467705,-72.582163
-06442=41.341898,-72.433732
-06443=41.344481,-72.624521
-06444=41.562671,-72.933271
-06447=41.636439,-72.454002
-06450=41.535812,-72.775686
-06451=41.541906,-72.823409
-06455=41.514163,-72.717844
-06456=41.516690,-72.553751
-06457=41.548611,-72.656784
-06460=41.214266,-73.050812
-06461=41.239863,-73.075393
-06467=41.567845,-72.899757
-06468=41.339236,-73.222828
-06469=41.510944,-72.443166
-06470=41.395083,-73.317663
-06471=41.332106,-72.780996
-06472=41.382766,-72.775194
-06473=41.381459,-72.856369
-06475=41.299897,-72.382734
-06477=41.284951,-73.024637
-06478=41.444001,-73.147999
-06479=41.574770,-72.911900
-06480=41.598834,-72.589071
-06481=41.536736,-72.697937
-06482=41.408136,-73.242485
-06483=41.385122,-73.083525
-06484=41.304515,-73.139041
-06488=41.475980,-73.229692
-06489=41.614169,-72.869926
-06492=41.458657,-72.804516
-06498=41.303695,-72.478017
-06510=41.306517,-72.926008
-06511=41.317030,-72.927316
-06512=41.278274,-72.875249
-06513=41.316688,-72.870791
-06514=41.376089,-72.943351
-06515=41.328039,-72.970840
-06516=41.272573,-72.964967
-06517=41.349440,-72.907149
-06518=41.430832,-72.912021
-06519=41.293934,-72.932028
-06524=41.422964,-72.994187
-06525=41.363538,-73.003892
-06604=41.182920,-73.208027
-06605=41.161599,-73.217622
-06606=41.212110,-73.206673
-06607=41.170744,-73.168038
-06608=41.186475,-73.181251
-06610=41.209283,-73.164603
-06611=41.267861,-73.213691
-06612=41.264945,-73.300479
-06614=41.232466,-73.129873
-06615=41.171614,-73.132160
-06702=41.556461,-73.045886
-06704=41.588692,-73.035390
-06705=41.547103,-72.992727
-06706=41.532212,-73.025096
-06708=41.550872,-73.068653
-06710=41.569145,-73.045817
-06712=41.499247,-72.975634
-06716=41.595705,-72.969384
-06750=41.723731,-73.268144
-06751=41.635759,-73.211422
-06752=41.520294,-73.361093
-06754=41.775423,-73.362996
-06755=41.650558,-73.479353
-06756=41.849537,-73.234002
-06757=41.743606,-73.459799
-06758=41.673737,-73.245753
-06759=41.753640,-73.212028
-06762=41.530545,-73.121576
-06763=41.694323,-73.209998
-06770=41.488428,-73.053383
-06776=41.601320,-73.422832
-06777=41.691307,-73.334403
-06778=41.713490,-73.111909
-06779=41.596057,-73.081442
-06782=41.651536,-73.042744
-06783=41.555501,-73.296015
-06784=41.576035,-73.491717
-06785=41.695048,-73.464788
-06786=41.672734,-73.018048
-06787=41.671080,-73.085047
-06790=41.834052,-73.131413
-06791=41.761345,-73.060443
-06793=41.633712,-73.288916
-06794=41.649454,-73.323557
-06795=41.623892,-73.126195
-06796=41.866034,-73.342084
-06798=41.561632,-73.206096
-06801=41.369778,-73.389503
-06804=41.469885,-73.393667
-06807=41.056732,-73.592029
-06810=41.374284,-73.457611
-06811=41.422586,-73.478364
-06812=41.480318,-73.486863
-06820=41.076202,-73.480080
-06824=41.173039,-73.280818
-06825=41.196583,-73.243254
-06830=41.037605,-73.624339
-06831=41.088724,-73.658838
-06840=41.160393,-73.500124
-06850=41.126683,-73.447459
-06851=41.138233,-73.401526
-06853=41.066109,-73.437996
-06854=41.083910,-73.426615
-06855=41.084240,-73.394991
-06856=41.111223,-73.420860
-06870=41.024446,-73.571150
-06877=41.310803,-73.499837
-06878=41.030093,-73.583719
-06880=41.133275,-73.348699
-06883=41.227420,-73.366988
-06890=41.148535,-73.287843
-06896=41.305415,-73.392584
-06897=41.211277,-73.440974
-06901=41.053592,-73.538169
-06902=41.059347,-73.544384
-06903=41.136018,-73.571142
-06905=41.088293,-73.542669
-06906=41.071023,-73.522621
-06907=41.100918,-73.520517
-07001=40.582316,-74.271506
-07002=40.662338,-74.110275
-07003=40.809128,-74.187155
-07004=40.882508,-74.304593
-07005=40.932771,-74.417304
-07006=40.851187,-74.282865
-07008=40.583790,-74.227457
-07009=40.858017,-74.229784
-07010=40.822081,-73.987834
-07011=40.878256,-74.144073
-07012=40.848398,-74.160266
-07013=40.869405,-74.173062
-07014=40.831339,-74.135419
-07016=40.656391,-74.304830
-07017=40.772072,-74.207103
-07018=40.755897,-74.217961
-07020=40.823877,-73.974152
-07021=40.828127,-74.276197
-07022=40.821054,-74.003061
-07023=40.641700,-74.385676
-07024=40.850640,-73.971007
-07026=40.879797,-74.108250
-07027=40.651249,-74.323137
-07028=40.804798,-74.204569
-07029=40.743595,-74.154913
-07030=40.745268,-74.032021
-07031=40.786256,-74.126220
-07032=40.752323,-74.123090
-07033=40.677420,-74.289341
-07034=40.879480,-74.380104
-07035=40.927501,-74.308334
-07036=40.625230,-74.237823
-07039=40.785828,-74.329100
-07040=40.730785,-74.268919
-07041=40.722448,-74.301546
-07042=40.813487,-74.219011
-07043=40.844837,-74.200502
-07044=40.834007,-74.242877
-07045=40.909405,-74.363571
-07046=40.889726,-74.440329
-07047=40.794175,-74.024960
-07050=40.768040,-74.235692
-07052=40.785753,-74.265059
-07054=40.853739,-74.401636
-07055=40.856413,-74.126940
-07057=40.853084,-74.106323
-07058=40.872514,-74.341776
-07059=40.634588,-74.519044
-07060=40.616667,-74.422042
-07062=40.632358,-74.401184
-07063=40.605118,-74.444522
-07064=40.573310,-74.245640
-07065=40.607152,-74.280531
-07066=40.620620,-74.315442
-07067=40.589252,-74.311310
-07068=40.821737,-74.310147
-07069=40.642845,-74.436233
-07070=40.820314,-74.106041
-07071=40.798004,-74.113250
-07072=40.826424,-74.062338
-07073=40.817097,-74.085024
-07074=40.838127,-74.055268
-07075=40.850183,-74.087068
-07076=40.633026,-74.372905
-07077=40.554147,-74.253060
-07078=40.742346,-74.334237
-07079=40.748811,-74.261512
-07080=40.574413,-74.414800
-07081=40.697892,-74.334537
-07082=40.926913,-74.342511
-07083=40.695266,-74.269078
-07086=40.767855,-74.020637
-07087=40.767383,-74.032328
-07088=40.717934,-74.286158
-07090=40.651644,-74.343447
-07092=40.680722,-74.360292
-07093=40.788079,-74.011357
-07094=40.781958,-74.067649
-07095=40.552844,-74.286949
-07102=40.735659,-74.173605
-07103=40.738725,-74.195568
-07104=40.767910,-74.168380
-07105=40.723066,-74.138636
-07106=40.741817,-74.230334
-07107=40.762918,-74.186559
-07108=40.723110,-74.200204
-07109=40.794927,-74.162353
-07110=40.820616,-74.156250
-07111=40.723860,-74.232517
-07112=40.709361,-74.209662
-07114=40.697483,-74.169902
-07201=40.688972,-74.165414
-07202=40.652415,-74.216848
-07203=40.652211,-74.260158
-07204=40.665266,-74.266708
-07205=40.695889,-74.228800
-07206=40.651654,-74.183811
-07208=40.673830,-74.226408
-07302=40.719389,-74.046469
-07304=40.716495,-74.072593
-07305=40.697302,-74.082273
-07306=40.734924,-74.071875
-07307=40.750877,-74.056865
-07310=40.730133,-74.036816
-07311=40.720216,-74.032724
-07401=41.032669,-74.133826
-07403=41.020920,-74.332852
-07405=40.987841,-74.378188
-07407=40.904526,-74.119514
-07410=40.935833,-74.117504
-07416=41.112558,-74.599735
-07417=41.007529,-74.205652
-07418=41.242209,-74.486100
-07419=41.152758,-74.572348
-07420=41.032270,-74.303164
-07421=41.174004,-74.352494
-07422=41.182049,-74.444452
-07423=40.999485,-74.096574
-07424=40.882802,-74.205713
-07430=41.083159,-74.185895
-07432=40.995809,-74.141262
-07435=41.035529,-74.449126
-07436=41.029405,-74.243145
-07438=41.028134,-74.518867
-07439=41.075676,-74.602012
-07440=40.946468,-74.293040
-07442=41.003095,-74.285455
-07444=40.967407,-74.306967
-07446=41.059136,-74.145931
-07450=40.981591,-74.113506
-07452=40.959471,-74.125202
-07456=41.102332,-74.273170
-07457=40.995995,-74.315124
-07458=41.046652,-74.096511
-07460=41.111812,-74.495093
-07461=41.247022,-74.610522
-07462=41.198457,-74.495576
-07463=41.013615,-74.125919
-07465=41.054855,-74.332764
-07470=40.945855,-74.245077
-07480=41.088259,-74.376390
-07481=40.999093,-74.168849
-07495=41.104464,-74.163337
-07501=40.911998,-74.170965
-07502=40.918573,-74.194089
-07503=40.897548,-74.154121
-07504=40.912548,-74.141615
-07505=40.916327,-74.171643
-07506=40.956957,-74.158561
-07508=40.955074,-74.183638
-07512=40.903415,-74.219779
-07513=40.906182,-74.148686
-07514=40.926992,-74.143838
-07522=40.924959,-74.179096
-07524=40.931711,-74.156870
-07601=40.889398,-74.045698
-07603=40.874287,-74.029735
-07604=40.862751,-74.075182
-07605=40.863391,-73.988471
-07606=40.858477,-74.048473
-07607=40.902885,-74.063457
-07608=40.852997,-74.060355
-07620=40.968725,-73.916999
-07621=40.922334,-73.998001
-07624=40.972890,-73.960315
-07626=40.939786,-73.958581
-07627=40.954576,-73.956563
-07628=40.945239,-73.992428
-07630=40.974990,-74.023248
-07631=40.891197,-73.972515
-07632=40.889743,-73.942029
-07640=40.991681,-73.980202
-07641=40.961713,-73.997437
-07642=41.007127,-74.045119
-07643=40.844332,-74.036164
-07644=40.877915,-74.082500
-07645=41.054594,-74.047298
-07646=40.934161,-74.019453
-07647=41.006364,-73.942772
-07648=40.992252,-73.950917
-07649=40.956651,-74.032858
-07650=40.847017,-73.997061
-07652=40.947312,-74.070219
-07656=41.036183,-74.044293
-07657=40.829316,-74.017360
-07660=40.854705,-74.019926
-07661=40.927354,-74.039611
-07662=40.910694,-74.082895
-07663=40.902926,-74.094669
-07666=40.890317,-74.011478
-07670=40.918309,-73.950523
-07675=41.003506,-74.001778
-07676=40.988306,-74.064693
-07677=41.025977,-74.061061
-07701=40.361667,-74.078076
-07702=40.326450,-74.057373
-07703=40.315784,-74.039773
-07704=40.361940,-74.038775
-07711=40.238531,-74.008008
-07712=40.249708,-74.053712
-07716=40.401088,-74.032978
-07717=40.191418,-74.015105
-07718=40.419871,-74.085174
-07719=40.168908,-74.073226
-07720=40.201604,-74.012056
-07721=40.438095,-74.231391
-07722=40.280968,-74.168903
-07723=40.249701,-73.997458
-07724=40.298625,-74.074178
-07726=40.282353,-74.346564
-07727=40.204403,-74.149231
-07728=40.225793,-74.285785
-07730=40.425495,-74.176063
-07731=40.149537,-74.203987
-07732=40.430468,-73.990424
-07733=40.374964,-74.173849
-07734=40.444151,-74.136810
-07735=40.450109,-74.172274
-07737=40.412472,-74.065304
-07738=40.337907,-74.127066
-07739=40.336952,-74.034535
-07740=40.295372,-73.989899
-07746=40.323490,-74.254572
-07747=40.415326,-74.253906
-07748=40.396300,-74.115274
-07750=40.335895,-73.985608
-07751=40.359650,-74.261462
-07753=40.214893,-74.078907
-07755=40.263635,-74.022877
-07756=40.211820,-74.006944
-07757=40.316313,-74.015897
-07758=40.434236,-74.100665
-07760=40.369551,-74.002368
-07762=40.153409,-74.033732
-07764=40.287904,-74.020019
-07801=40.917192,-74.554744
-07803=40.878088,-74.601176
-07820=40.931361,-74.811743
-07821=40.965937,-74.754393
-07822=41.138775,-74.708337
-07823=40.829451,-75.039497
-07825=40.971247,-74.975723
-07826=41.193195,-74.778167
-07827=41.280922,-74.730494
-07828=40.883935,-74.750312
-07830=40.719283,-74.794021
-07832=40.962126,-75.053728
-07833=40.892784,-75.069413
-07834=40.887246,-74.490462
-07836=40.843103,-74.710722
-07838=40.887950,-74.911692
-07840=40.854177,-74.835349
-07842=40.942135,-74.512095
-07843=40.939241,-74.659474
-07846=40.965940,-74.877068
-07847=40.889346,-74.623879
-07848=41.103892,-74.687004
-07849=40.970323,-74.607244
-07850=40.906858,-74.662035
-07851=41.231436,-74.846827
-07852=40.883268,-74.668029
-07853=40.780755,-74.789238
-07856=40.916080,-74.626689
-07857=40.896755,-74.700322
-07860=41.056547,-74.819113
-07863=40.807625,-74.957600
-07865=40.793806,-74.898347
-07866=40.954863,-74.489076
-07869=40.841691,-74.578330
-07870=40.803980,-74.819651
-07871=41.052283,-74.627906
-07874=40.923063,-74.735790
-07876=40.854470,-74.657357
-07878=40.872446,-74.473754
-07880=40.871452,-74.888891
-07881=41.120656,-74.890403
-07882=40.752640,-75.013787
-07885=40.910506,-74.599911
-07901=40.714923,-74.366372
-07920=40.678994,-74.564115
-07921=40.656019,-74.678657
-07922=40.676393,-74.425027
-07924=40.730394,-74.592580
-07926=40.801262,-74.570122
-07927=40.821862,-74.454290
-07928=40.725986,-74.412612
-07930=40.781196,-74.683945
-07931=40.681427,-74.616525
-07932=40.777242,-74.392943
-07933=40.704225,-74.459488
-07934=40.722624,-74.675589
-07935=40.736004,-74.445887
-07936=40.818553,-74.363742
-07939=40.667382,-74.553908
-07940=40.760175,-74.419181
-07945=40.781948,-74.599501
-07946=40.677709,-74.508538
-07950=40.846026,-74.482314
-07960=40.784201,-74.500025
-07961=40.780620,-74.432741
-07970=40.808084,-74.572929
-07974=40.696919,-74.403853
-07976=40.728060,-74.479344
-07977=40.705188,-74.670075
-07979=40.700638,-74.730119
-07980=40.680423,-74.488915
-07981=40.820383,-74.422418
-08001=39.547880,-75.346384
-08002=39.931978,-75.027557
-08003=39.882703,-74.972036
-08004=39.764747,-74.870626
-08005=39.767727,-74.312588
-08006=39.752760,-74.106156
-08007=39.865825,-75.053823
-08008=39.542599,-74.298174
-08009=39.760656,-74.932860
-08010=40.055173,-74.916925
-08011=39.972764,-74.713117
-08012=39.783815,-75.056068
-08014=39.815906,-75.348335
-08015=39.931531,-74.543763
-08016=40.069522,-74.824196
-08019=39.777292,-74.534219
-08020=39.791562,-75.224140
-08021=39.806194,-75.000151
-08022=40.067590,-74.705741
-08023=39.686699,-75.496274
-08026=39.832872,-74.967175
-08027=39.834582,-75.288914
-08028=39.695863,-75.121415
-08029=39.840937,-75.067211
-08030=39.888896,-75.118078
-08031=39.866356,-75.094670
-08033=39.892421,-75.036651
-08034=39.906100,-75.000375
-08035=39.879127,-75.065918
-08036=39.970569,-74.832209
-08037=39.639959,-74.759320
-08038=39.470004,-75.490291
-08039=39.685628,-75.277370
-08041=40.039074,-74.678698
-08042=40.015389,-74.662287
-08043=39.848539,-74.953498
-08045=39.867114,-75.029746
-08046=40.027950,-74.886984
-08048=39.958855,-74.802478
-08049=39.854390,-75.038544
-08050=39.712750,-74.231000
-08051=39.783875,-75.175825
-08052=39.952381,-74.994896
-08053=39.856677,-74.900810
-08054=39.948992,-74.900247
-08055=39.862695,-74.822311
-08056=39.783669,-75.255275
-08057=39.979658,-74.941308
-08059=39.884825,-75.092667
-08060=40.007737,-74.790088
-08061=39.798865,-75.205359
-08062=39.716067,-75.219239
-08063=39.867297,-75.185621
-08064=39.962782,-74.640754
-08065=40.002615,-75.035273
-08066=39.834292,-75.228355
-08067=39.739194,-75.411406
-08068=39.961401,-74.665919
-08069=39.699258,-75.445180
-08070=39.619131,-75.516096
-08071=39.731894,-75.133534
-08072=39.544308,-75.418704
-08073=40.009542,-74.866779
-08074=39.716166,-75.163440
-08075=40.029586,-74.948936
-08077=40.000162,-74.991632
-08078=39.853411,-75.075502
-08079=39.542408,-75.431684
-08080=39.757432,-75.121872
-08081=39.732942,-74.976657
-08083=39.841266,-75.028593
-08084=39.828957,-75.015458
-08085=39.761129,-75.324060
-08086=39.854719,-75.198716
-08087=39.596035,-74.380612
-08088=39.851467,-74.693412
-08089=39.717800,-74.826622
-08090=39.799077,-75.150692
-08091=39.807116,-74.924178
-08092=39.647146,-74.284622
-08093=39.864643,-75.137452
-08094=39.650587,-74.959292
-08095=39.649298,-74.858006
-08096=39.826854,-75.126663
-08097=39.813376,-75.150617
-08098=39.639535,-75.329849
-08102=39.952558,-75.120999
-08103=39.935834,-75.113921
-08104=39.916435,-75.113179
-08105=39.950340,-75.096278
-08106=39.890992,-75.073329
-08107=39.907845,-75.083563
-08108=39.914668,-75.060862
-08109=39.951291,-75.050129
-08110=39.971893,-75.057876
-08201=39.423563,-74.493025
-08202=39.095265,-74.731415
-08203=39.425627,-74.392933
-08204=38.971087,-74.920979
-08205=39.482000,-74.452637
-08210=39.121750,-74.834430
-08212=38.933446,-74.953895
-08215=39.586506,-74.563656
-08217=39.574192,-74.719915
-08221=39.343718,-74.571049
-08223=39.278750,-74.655703
-08224=39.606361,-74.466715
-08225=39.362651,-74.530947
-08226=39.263668,-74.607856
-08230=39.207372,-74.720215
-08232=39.387525,-74.515196
-08234=39.388393,-74.620728
-08240=39.488059,-74.533973
-08241=39.534798,-74.476099
-08242=39.018576,-74.888905
-08243=39.151013,-74.696319
-08244=39.318968,-74.588458
-08246=39.180965,-74.765806
-08247=39.052267,-74.783628
-08248=39.195657,-74.657187
-08251=39.027715,-74.929514
-08260=38.998468,-74.843447
-08270=39.271779,-74.785972
-08302=39.438613,-75.260646
-08310=39.531435,-74.896805
-08311=39.327866,-75.204035
-08312=39.663756,-75.077505
-08314=39.221854,-74.940368
-08316=39.269532,-74.949689
-08317=39.400688,-74.829634
-08318=39.557728,-75.177717
-08319=39.370409,-74.810816
-08320=39.385080,-75.160600
-08321=39.223596,-75.143169
-08322=39.611102,-75.048771
-08323=39.396273,-75.367551
-08324=39.214626,-74.996612
-08326=39.537672,-74.928273
-08327=39.251531,-74.962812
-08328=39.578361,-75.058737
-08329=39.275992,-75.007675
-08330=39.481603,-74.737407
-08332=39.377041,-75.023374
-08340=39.437245,-74.876499
-08341=39.525424,-74.953020
-08343=39.636316,-75.167607
-08344=39.561745,-74.986037
-08345=39.282427,-75.160409
-08346=39.566059,-74.846330
-08348=39.309933,-74.971365
-08349=39.273865,-75.071307
-08350=39.488101,-74.882020
-08352=39.475732,-75.127980
-08353=39.462303,-75.292408
-08360=39.495524,-75.008665
-08361=39.449369,-74.958827
-08401=39.377297,-74.451082
-08402=39.326385,-74.504473
-08403=39.318497,-74.542405
-08406=39.341560,-74.480862
-08501=40.163841,-74.566056
-08502=40.448217,-74.653244
-08505=40.103026,-74.733455
-08510=40.191477,-74.416813
-08511=40.042379,-74.557037
-08512=40.324357,-74.525526
-08514=40.134246,-74.491742
-08515=40.119175,-74.662884
-08518=40.115428,-74.802088
-08520=40.255265,-74.530078
-08525=40.397648,-74.779412
-08527=40.108680,-74.358558
-08528=40.387108,-74.618915
-08530=40.370017,-74.910170
-08533=40.071031,-74.500141
-08534=40.329422,-74.792789
-08535=40.244447,-74.431604
-08536=40.332290,-74.581076
-08540=40.363010,-74.655321
-08542=40.352913,-74.660366
-08550=40.280155,-74.614673
-08551=40.447111,-74.837285
-08553=40.400347,-74.638922
-08554=40.117217,-74.777844
-08555=40.218286,-74.470792
-08558=40.413411,-74.703745
-08559=40.429224,-74.979065
-08560=40.315730,-74.857279
-08561=40.251061,-74.580952
-08562=40.061957,-74.591878
-08608=40.219297,-74.767770
-08609=40.225747,-74.740906
-08610=40.191174,-74.716603
-08611=40.183615,-74.740319
-08618=40.249347,-74.789973
-08619=40.242301,-74.696408
-08620=40.170048,-74.651278
-08628=40.264418,-74.827047
-08629=40.220669,-74.731201
-08638=40.254018,-74.763385
-08640=40.004416,-74.591269
-08641=40.020284,-74.590178
-08648=40.284308,-74.717976
-08690=40.224505,-74.660279
-08691=40.208731,-74.592097
-08701=40.077041,-74.200383
-08720=40.135366,-74.098050
-08721=39.901987,-74.152651
-08722=39.928405,-74.202189
-08723=40.038584,-74.111600
-08724=40.086235,-74.110850
-08730=40.105375,-74.063421
-08731=39.865669,-74.258864
-08732=39.941792,-74.143814
-08733=40.023772,-74.320756
-08734=39.862755,-74.172064
-08735=39.982051,-74.070619
-08736=40.120018,-74.053257
-08738=40.022724,-74.059040
-08740=39.927706,-74.130615
-08741=39.937116,-74.166931
-08742=40.080784,-74.059125
-08750=40.133372,-74.041501
-08751=39.951907,-74.088150
-08752=39.842500,-74.093433
-08753=39.979031,-74.160429
-08755=40.008533,-74.221768
-08757=39.942397,-74.251072
-08758=39.778981,-74.238592
-08759=39.975287,-74.344727
-08801=40.622794,-74.886324
-08802=40.671028,-75.017983
-08804=40.646655,-75.095715
-08805=40.573874,-74.537507
-08807=40.592434,-74.618840
-08808=40.732130,-75.049029
-08809=40.651832,-74.934206
-08810=40.368288,-74.491018
-08812=40.598731,-74.478793
-08816=40.429119,-74.416287
-08817=40.514658,-74.393104
-08820=40.576806,-74.365750
-08821=40.520045,-74.685662
-08822=40.525105,-74.865254
-08823=40.439256,-74.570451
-08824=40.422086,-74.553237
-08825=40.514169,-75.027112
-08826=40.716574,-74.912125
-08827=40.668431,-74.968385
-08828=40.378579,-74.423518
-08829=40.670022,-74.890271
-08830=40.569594,-74.314925
-08831=40.319474,-74.428801
-08832=40.517202,-74.306784
-08833=40.645542,-74.816261
-08835=40.541269,-74.589273
-08836=40.596376,-74.557320
-08837=40.513105,-74.344075
-08840=40.543139,-74.358981
-08844=40.497692,-74.670505
-08846=40.574627,-74.498259
-08848=40.594266,-75.096659
-08850=40.447921,-74.439078
-08852=40.388262,-74.549618
-08853=40.529933,-74.742314
-08854=40.545640,-74.460817
-08857=40.392789,-74.330397
-08858=40.682576,-74.737037
-08859=40.458848,-74.302768
-08861=40.520494,-74.272943
-08863=40.527412,-74.315892
-08865=40.708223,-75.147074
-08867=40.574254,-74.966157
-08869=40.571349,-74.646019
-08872=40.444335,-74.356884
-08873=40.496619,-74.532009
-08876=40.589554,-74.685411
-08879=40.466410,-74.278625
-08880=40.553947,-74.527455
-08882=40.445652,-74.378459
-08884=40.397671,-74.389399
-08886=40.687502,-75.101127
-08887=40.521268,-74.794840
-08889=40.609021,-74.754216
-08890=40.539039,-74.575423
-08901=40.483638,-74.442460
-08902=40.439213,-74.484303
-08904=40.500795,-74.427911
-10001=40.750633,-73.997177
-10002=40.715775,-73.986212
-10003=40.731829,-73.989181
-10004=40.688630,-74.018244
-10005=40.706027,-74.008835
-10006=40.709614,-74.012954
-10007=40.713848,-74.007755
-10009=40.726399,-73.978631
-10010=40.739065,-73.982255
-10011=40.742039,-74.000620
-10012=40.725581,-73.998078
-10013=40.720103,-74.004903
-10014=40.734012,-74.006746
-10016=40.745224,-73.978297
-10017=40.752360,-73.972493
-10018=40.755319,-73.993114
-10019=40.765823,-73.987169
-10020=40.758236,-73.978833
-10021=40.769258,-73.958751
-10022=40.758628,-73.967948
-10023=40.775921,-73.982607
-10024=40.798452,-73.974428
-10025=40.798601,-73.966622
-10026=40.802381,-73.952681
-10027=40.811407,-73.953060
-10028=40.776441,-73.953509
-10029=40.791763,-73.943970
-10030=40.818267,-73.942856
-10031=40.825288,-73.950045
-10032=40.838815,-73.942836
-10033=40.850545,-73.933983
-10034=40.867076,-73.924312
-10035=40.795455,-73.929655
-10036=40.759260,-73.989860
-10037=40.812957,-73.937376
-10038=40.709278,-74.002562
-10039=40.830867,-73.936218
-10040=40.858305,-73.930549
-10044=40.761915,-73.949962
-10065=40.764612,-73.963122
-10069=40.775906,-73.990358
-10075=40.773361,-73.956216
-10103=40.760780,-73.977670
-10110=40.754499,-73.982256
-10111=40.759114,-73.977596
-10112=40.759167,-73.979668
-10115=40.810852,-73.963744
-10119=40.750310,-73.992979
-10128=40.781432,-73.950013
-10152=40.758404,-73.972031
-10153=40.763622,-73.972439
-10154=40.757779,-73.972487
-10162=40.769300,-73.949915
-10165=40.752131,-73.978722
-10167=40.754648,-73.974771
-10168=40.751448,-73.977103
-10169=40.754391,-73.976098
-10170=40.752625,-73.975877
-10171=40.755899,-73.973858
-10172=40.755273,-73.974315
-10173=40.754131,-73.979364
-10174=40.751441,-73.975003
-10177=40.755139,-73.975934
-10199=40.751393,-73.997229
-10271=40.708205,-74.010504
-10278=40.715182,-74.003778
-10279=40.712626,-74.008669
-10280=40.708538,-74.016650
-10282=40.716921,-74.015066
-10301=40.627456,-74.094407
-10302=40.630688,-74.137776
-10303=40.629885,-74.174130
-10304=40.609227,-74.092575
-10305=40.596691,-74.074866
-10306=40.571768,-74.125950
-10307=40.509183,-74.237785
-10308=40.551884,-74.147646
-10309=40.531346,-74.219857
-10310=40.632648,-74.116148
-10311=40.605241,-74.179503
-10312=40.545237,-74.180443
-10314=40.599263,-74.165748
-10451=40.820479,-73.925084
-10452=40.837393,-73.923437
-10453=40.852779,-73.912332
-10454=40.805489,-73.916585
-10455=40.814710,-73.908593
-10456=40.829881,-73.908120
-10457=40.847150,-73.898680
-10458=40.862543,-73.888143
-10459=40.825867,-73.892942
-10460=40.841758,-73.879571
-10461=40.847381,-73.840584
-10462=40.843280,-73.860389
-10463=40.880678,-73.906540
-10464=40.867787,-73.799920
-10465=40.822615,-73.822239
-10466=40.890964,-73.846239
-10467=40.869953,-73.865746
-10468=40.868093,-73.899730
-10469=40.868607,-73.848133
-10470=40.889530,-73.872662
-10471=40.898868,-73.903328
-10472=40.829556,-73.869336
-10473=40.818690,-73.858474
-10474=40.810549,-73.884367
-10475=40.875169,-73.823817
-10501=41.295608,-73.758490
-10502=41.011602,-73.841433
-10503=41.026556,-73.875310
-10504=41.128468,-73.707521
-10505=41.342090,-73.745449
-10506=41.190395,-73.639144
-10507=41.227896,-73.686047
-10509=41.410855,-73.594340
-10510=41.139472,-73.835704
-10511=41.265428,-73.943192
-10512=41.457619,-73.724608
-10514=41.172153,-73.769196
-10516=41.461974,-73.874908
-10517=41.298243,-73.861993
-10518=41.266143,-73.588296
-10519=41.352346,-73.652662
-10520=41.226478,-73.867787
-10522=41.010310,-73.863746
-10523=41.059341,-73.819457
-10524=41.375325,-73.926217
-10526=41.288102,-73.668835
-10527=41.321183,-73.769878
-10528=40.975049,-73.724925
-10530=41.023712,-73.812810
-10532=41.099278,-73.800327
-10533=41.036927,-73.854864
-10535=41.335169,-73.793919
-10536=41.269098,-73.688694
-10537=41.339740,-73.882349
-10538=40.937752,-73.756473
-10541=41.381113,-73.751935
-10543=40.952693,-73.736040
-10545=41.178591,-73.835450
-10546=41.195609,-73.801126
-10547=41.313334,-73.846039
-10548=41.245696,-73.932977
-10549=41.200584,-73.723465
-10550=40.905448,-73.835253
-10552=40.924460,-73.826115
-10553=40.908584,-73.821652
-10560=41.340527,-73.597609
-10562=41.194480,-73.825254
-10566=41.289483,-73.916847
-10567=41.289600,-73.897001
-10570=41.130067,-73.786670
-10573=41.015857,-73.677404
-10576=41.221577,-73.572332
-10577=41.038367,-73.711114
-10578=41.320276,-73.678991
-10579=41.395364,-73.839053
-10580=40.979049,-73.693202
-10583=40.988682,-73.789204
-10588=41.336623,-73.820007
-10589=41.334143,-73.714634
-10590=41.255269,-73.539404
-10591=41.090097,-73.841014
-10594=41.113425,-73.774292
-10595=41.085897,-73.782645
-10596=41.256258,-73.959177
-10597=41.293021,-73.596568
-10598=41.288223,-73.792203
-10601=41.032932,-73.765071
-10603=41.054400,-73.779287
-10604=41.071512,-73.747093
-10605=41.010525,-73.745125
-10606=41.020572,-73.775846
-10607=41.039089,-73.811368
-10701=40.945420,-73.880471
-10703=40.959829,-73.880302
-10704=40.919729,-73.862651
-10705=40.919705,-73.889928
-10706=40.989821,-73.867552
-10707=40.960533,-73.822732
-10708=40.938267,-73.829922
-10709=40.954635,-73.808184
-10710=40.967157,-73.846339
-10801=40.917570,-73.784858
-10803=40.900458,-73.807138
-10804=40.946841,-73.788051
-10805=40.897721,-73.779258
-10901=41.140772,-74.104976
-10910=41.281570,-74.137958
-10911=41.319158,-74.008159
-10913=41.068258,-73.954975
-10914=41.417717,-74.200026
-10915=41.545359,-74.359321
-10916=41.442343,-74.250577
-10917=41.319572,-74.117639
-10918=41.344192,-74.262177
-10919=41.525959,-74.387618
-10920=41.156495,-73.938239
-10921=41.332065,-74.363422
-10922=41.332760,-73.996452
-10923=41.203121,-74.002263
-10924=41.381005,-74.352471
-10925=41.198181,-74.314759
-10926=41.301846,-74.119760
-10927=41.191052,-73.967562
-10928=41.348970,-73.998495
-10930=41.366224,-74.121236
-10931=41.148792,-74.162522
-10932=41.482160,-74.464285
-10933=41.368021,-74.512999
-10940=41.446544,-74.478741
-10941=41.487318,-74.344437
-10950=41.317346,-74.199881
-10952=41.111118,-74.078540
-10953=41.404964,-74.077432
-10954=41.098819,-74.013262
-10956=41.157191,-73.993416
-10958=41.371913,-74.432479
-10960=41.092068,-73.924648
-10962=41.050066,-73.958585
-10963=41.463529,-74.543423
-10964=41.016204,-73.914304
-10965=41.061561,-74.007832
-10968=41.037017,-73.921259
-10969=41.294859,-74.488006
-10970=41.180177,-74.102175
-10973=41.380516,-74.480462
-10974=41.168058,-74.178013
-10975=41.267079,-74.172263
-10976=41.022960,-73.928488
-10977=41.118920,-74.048158
-10979=41.182830,-74.314921
-10980=41.238822,-74.050163
-10983=41.031088,-73.947703
-10984=41.202903,-74.022265
-10985=41.583519,-74.373188
-10986=41.285235,-73.998710
-10987=41.186927,-74.237350
-10988=41.302081,-74.548556
-10989=41.122955,-73.938031
-10990=41.267448,-74.364011
-10992=41.426089,-74.164664
-10993=41.209896,-73.973842
-10994=41.098072,-73.972649
-10996=41.393700,-73.972175
-10998=41.324076,-74.541179
-11001=40.723317,-73.704949
-11003=40.699176,-73.706166
-11004=40.746204,-73.711478
-11005=40.756596,-73.714178
-11010=40.700587,-73.675018
-11020=40.771442,-73.714819
-11021=40.784319,-73.731488
-11023=40.798909,-73.733653
-11024=40.816251,-73.742872
-11030=40.793409,-73.688549
-11040=40.745347,-73.680292
-11042=40.758534,-73.697235
-11050=40.839900,-73.693124
-11096=40.621346,-73.756990
-11101=40.747155,-73.939750
-11102=40.772884,-73.926295
-11103=40.762574,-73.913447
-11104=40.744634,-73.920201
-11105=40.778877,-73.906769
-11106=40.762211,-73.931528
-11109=40.745115,-73.956928
-11201=40.693682,-73.989693
-11203=40.649591,-73.934371
-11204=40.618779,-73.984826
-11205=40.694696,-73.966286
-11206=40.701954,-73.942358
-11207=40.670747,-73.894209
-11208=40.669769,-73.871372
-11209=40.621982,-74.030324
-11210=40.628147,-73.946324
-11211=40.712597,-73.953098
-11212=40.662936,-73.913029
-11213=40.671078,-73.936336
-11214=40.599148,-73.996090
-11215=40.662688,-73.986740
-11216=40.680768,-73.949316
-11217=40.682306,-73.978099
-11218=40.643468,-73.976046
-11219=40.632667,-73.996669
-11220=40.641221,-74.016862
-11221=40.691340,-73.927879
-11222=40.727790,-73.947605
-11223=40.597139,-73.973428
-11224=40.577372,-73.988706
-11225=40.663046,-73.954219
-11226=40.646448,-73.956649
-11228=40.616695,-74.013047
-11229=40.601293,-73.944493
-11230=40.622164,-73.965105
-11231=40.677916,-74.005154
-11232=40.656546,-74.007355
-11233=40.678308,-73.919936
-11234=40.605080,-73.911721
-11235=40.583949,-73.949096
-11236=40.639413,-73.900664
-11237=40.704160,-73.921139
-11238=40.679171,-73.963804
-11239=40.647735,-73.879477
-11351=40.780747,-73.825301
-11354=40.768208,-73.827403
-11355=40.751452,-73.821031
-11356=40.784850,-73.841279
-11357=40.786393,-73.810864
-11358=40.760471,-73.796371
-11359=40.791781,-73.776875
-11360=40.780379,-73.781230
-11361=40.764191,-73.772775
-11362=40.756574,-73.737845
-11363=40.772616,-73.746526
-11364=40.745289,-73.760586
-11365=40.739634,-73.794490
-11366=40.728152,-73.785019
-11367=40.730145,-73.827030
-11368=40.751718,-73.851822
-11369=40.763365,-73.872374
-11370=40.765393,-73.893243
-11371=40.773894,-73.873475
-11372=40.751690,-73.883638
-11373=40.738837,-73.878535
-11374=40.726418,-73.861526
-11375=40.720934,-73.846151
-11377=40.744819,-73.905156
-11378=40.724744,-73.909639
-11379=40.716748,-73.879601
-11385=40.700671,-73.889433
-11411=40.694021,-73.736216
-11412=40.698095,-73.758986
-11413=40.671659,-73.752568
-11414=40.657604,-73.844804
-11415=40.707917,-73.828212
-11416=40.684654,-73.849548
-11417=40.676446,-73.844443
-11418=40.700272,-73.835971
-11419=40.688673,-73.822918
-11420=40.673583,-73.817730
-11421=40.694062,-73.858626
-11422=40.660060,-73.736012
-11423=40.715606,-73.768471
-11424=40.714304,-73.827263
-11425=40.607754,-74.023937
-11426=40.736425,-73.722376
-11427=40.730904,-73.745661
-11428=40.721016,-73.742245
-11429=40.709766,-73.738653
-11430=40.646964,-73.784813
-11432=40.715359,-73.793071
-11433=40.698162,-73.786893
-11434=40.676808,-73.776425
-11435=40.701265,-73.809605
-11436=40.675807,-73.796622
-11451=40.701282,-73.795972
-11501=40.746286,-73.638905
-11507=40.770847,-73.652260
-11509=40.587963,-73.728528
-11510=40.650127,-73.607709
-11514=40.749892,-73.612477
-11516=40.625787,-73.726685
-11518=40.637472,-73.666807
-11520=40.649401,-73.582951
-11530=40.726854,-73.637009
-11542=40.872605,-73.628622
-11545=40.826321,-73.589365
-11547=40.833670,-73.642687
-11548=40.812868,-73.627405
-11549=40.717289,-73.602775
-11550=40.701475,-73.621108
-11552=40.692979,-73.652416
-11553=40.706430,-73.591622
-11554=40.720115,-73.558861
-11556=40.719678,-73.583860
-11557=40.637176,-73.691976
-11558=40.605357,-73.649046
-11559=40.603733,-73.717352
-11560=40.880757,-73.588724
-11561=40.589081,-73.648178
-11563=40.657253,-73.673718
-11565=40.675061,-73.671667
-11566=40.663194,-73.554014
-11568=40.786929,-73.596490
-11569=40.589785,-73.582303
-11570=40.666066,-73.638409
-11572=40.631772,-73.636624
-11575=40.680422,-73.584877
-11576=40.798032,-73.647275
-11577=40.783264,-73.638877
-11579=40.844016,-73.644006
-11580=40.674900,-73.702154
-11581=40.651028,-73.715325
-11590=40.755182,-73.574338
-11596=40.759667,-73.642309
-11598=40.630935,-73.712339
-11691=40.601278,-73.761651
-11692=40.594095,-73.792896
-11693=40.590692,-73.809749
-11694=40.578270,-73.844762
-11697=40.555688,-73.920663
-11701=40.682453,-73.414381
-11702=40.650697,-73.262218
-11703=40.732671,-73.325010
-11704=40.717504,-73.358203
-11705=40.743277,-73.055841
-11706=40.722537,-73.252183
-11709=40.906313,-73.558244
-11710=40.671972,-73.531972
-11713=40.776095,-72.942821
-11714=40.742563,-73.486073
-11715=40.751006,-73.034877
-11716=40.776692,-73.134854
-11717=40.783805,-73.252263
-11718=40.716435,-73.261514
-11719=40.782153,-72.912104
-11720=40.870331,-73.082113
-11721=40.902425,-73.371427
-11722=40.783050,-73.194916
-11724=40.864221,-73.456381
-11725=40.840492,-73.280815
-11726=40.678789,-73.395729
-11727=40.882060,-73.004009
-11729=40.761136,-73.325260
-11730=40.717436,-73.170220
-11731=40.862623,-73.316937
-11732=40.844738,-73.536885
-11733=40.940235,-73.112780
-11735=40.732747,-73.432789
-11738=40.838199,-73.038213
-11739=40.736135,-73.161251
-11740=40.865398,-73.361296
-11741=40.794895,-73.070328
-11742=40.810067,-73.041404
-11743=40.883411,-73.423556
-11746=40.814268,-73.362276
-11747=40.788403,-73.407396
-11749=40.806740,-73.170903
-11751=40.730486,-73.213924
-11752=40.757114,-73.174012
-11753=40.789713,-73.539899
-11754=40.885566,-73.249901
-11755=40.857817,-73.116844
-11756=40.724512,-73.516326
-11757=40.689010,-73.373328
-11758=40.668934,-73.458448
-11762=40.682744,-73.446664
-11763=40.826582,-72.984050
-11764=40.938993,-72.979047
-11765=40.882186,-73.558941
-11766=40.939219,-73.018666
-11767=40.842949,-73.145216
-11768=40.923631,-73.339309
-11769=40.734348,-73.125025
-11770=40.645842,-73.156596
-11771=40.872799,-73.525020
-11772=40.761780,-72.987407
-11776=40.913615,-73.046398
-11777=40.956068,-73.066659
-11778=40.948046,-72.937093
-11779=40.812958,-73.114490
-11780=40.909287,-73.174729
-11782=40.738088,-73.081670
-11783=40.677612,-73.490014
-11784=40.868923,-73.041215
-11786=40.950485,-72.886658
-11787=40.852924,-73.211260
-11788=40.818088,-73.213209
-11789=40.962028,-72.971008
-11790=40.905957,-73.127374
-11791=40.828288,-73.505922
-11792=40.954997,-72.825588
-11793=40.651288,-73.514726
-11794=40.913360,-73.124883
-11795=40.709005,-73.296337
-11796=40.731246,-73.099419
-11797=40.820208,-73.472450
-11798=40.752599,-73.378743
-11801=40.762304,-73.524452
-11803=40.781700,-73.473035
-11804=40.759010,-73.457384
-11901=40.926901,-72.643499
-11930=40.989988,-72.099587
-11931=40.934273,-72.612403
-11932=40.934313,-72.306615
-11933=40.942231,-72.765594
-11934=40.798359,-72.794297
-11935=41.021223,-72.486958
-11937=41.013013,-72.168912
-11939=41.123116,-72.315350
-11940=40.813171,-72.752002
-11941=40.830160,-72.729761
-11942=40.850303,-72.581827
-11944=41.104030,-72.371541
-11946=40.870270,-72.521704
-11947=40.950659,-72.571053
-11948=40.963640,-72.553489
-11949=40.866503,-72.804643
-11950=40.808032,-72.847010
-11951=40.763164,-72.830344
-11952=41.001648,-72.547599
-11953=40.892505,-72.951172
-11954=41.047565,-71.946386
-11955=40.809133,-72.816101
-11956=40.969049,-72.462175
-11957=41.192201,-72.148968
-11958=41.039067,-72.464419
-11959=40.822586,-72.601345
-11960=40.810615,-72.706062
-11961=40.905139,-72.888349
-11962=40.930895,-72.268719
-11963=40.993155,-72.319664
-11964=41.055827,-72.319034
-11965=41.096081,-72.288400
-11967=40.794778,-72.875477
-11968=40.905925,-72.415662
-11970=40.938952,-72.577539
-11971=41.064037,-72.430926
-11972=40.847825,-72.702889
-11973=40.867173,-72.882123
-11975=40.941107,-72.244466
-11976=40.922393,-72.350704
-11977=40.827467,-72.678983
-11978=40.826323,-72.649008
-11980=40.831296,-72.923154
-12007=42.455665,-73.927143
-12008=42.853488,-73.906535
-12009=42.697723,-74.035350
-12010=42.937632,-74.173325
-12015=42.294057,-73.825116
-12017=42.321110,-73.455997
-12018=42.628833,-73.520771
-12019=42.934351,-73.881808
-12020=43.001589,-73.868123
-12022=42.656951,-73.333851
-12023=42.598558,-74.183022
-12024=42.476788,-73.533278
-12025=43.083346,-74.138092
-12027=42.935415,-73.907815
-12028=42.934442,-73.442269
-12029=42.415950,-73.424961
-12031=42.766038,-74.451615
-12032=43.124008,-74.525070
-12033=42.543138,-73.705499
-12035=42.730427,-74.359221
-12036=42.541514,-74.673053
-12037=42.344725,-73.567126
-12040=42.637350,-73.350721
-12041=42.577943,-73.952660
-12042=42.416518,-73.938206
-12043=42.693970,-74.530506
-12045=42.482555,-73.800532
-12046=42.507517,-73.925621
-12047=42.784054,-73.726219
-12051=42.345522,-73.842543
-12052=42.754470,-73.478427
-12053=42.757544,-74.190867
-12054=42.608547,-73.864416
-12056=42.764785,-74.095150
-12057=42.968892,-73.346287
-12058=42.344420,-73.917635
-12059=42.619223,-74.060881
-12060=42.410631,-73.505286
-12061=42.599312,-73.657175
-12062=42.538976,-73.504976
-12063=42.568163,-73.638051
-12064=42.614166,-74.655719
-12065=42.852284,-73.785597
-12066=42.790105,-74.352762
-12067=42.557461,-73.920294
-12068=42.956069,-74.401829
-12069=42.946036,-74.279938
-12070=42.986058,-74.263032
-12071=42.552657,-74.422661
-12072=42.884893,-74.356737
-12074=43.054217,-74.030006
-12075=42.299922,-73.633627
-12076=42.410272,-74.395734
-12077=42.588163,-73.777694
-12078=43.134351,-74.339632
-12083=42.424859,-74.026509
-12084=42.704669,-73.899364
-12085=42.703313,-73.963261
-12086=43.009005,-74.086332
-12087=42.432250,-73.892894
-12089=42.867493,-73.312753
-12090=42.876802,-73.351525
-12092=42.696079,-74.378715
-12093=42.497791,-74.628105
-12094=42.899423,-73.490058
-12095=43.024817,-74.403815
-12106=42.389554,-73.710951
-12108=43.573248,-74.451487
-12110=42.750578,-73.776118
-12115=42.477301,-73.576700
-12116=42.538795,-74.911164
-12117=43.167143,-74.261237
-12118=42.909321,-73.713085
-12120=42.449724,-74.148844
-12121=42.839897,-73.607392
-12122=42.542020,-74.326145
-12123=42.547343,-73.598306
-12124=42.453111,-73.797581
-12125=42.484748,-73.399844
-12130=42.442223,-73.659380
-12131=42.453371,-74.463913
-12132=42.470521,-73.630031
-12134=43.269201,-74.228185
-12136=42.420119,-73.565108
-12137=42.860334,-74.133072
-12138=42.748836,-73.370379
-12139=43.500221,-74.579544
-12140=42.696684,-73.540064
-12143=42.489818,-73.855238
-12144=42.627836,-73.717842
-12147=42.518611,-74.158840
-12148=42.827793,-73.848164
-12149=42.616654,-74.563446
-12150=42.880523,-74.052689
-12151=42.922697,-73.787225
-12153=42.629923,-73.473341
-12154=42.937460,-73.605775
-12155=42.596357,-74.827655
-12156=42.483504,-73.747254
-12157=42.669798,-74.286077
-12158=42.542158,-73.822091
-12159=42.651428,-73.885894
-12160=42.761621,-74.383152
-12161=42.534769,-73.854863
-12164=43.578133,-74.359045
-12165=42.306136,-73.504114
-12166=42.833587,-74.445509
-12167=42.424942,-74.578036
-12168=42.560862,-73.380714
-12169=42.592887,-73.448036
-12170=43.001956,-73.667271
-12172=42.288764,-73.739212
-12173=42.380013,-73.759660
-12174=42.353449,-73.728436
-12175=42.544369,-74.556220
-12176=42.382017,-73.980862
-12177=42.950952,-74.287260
-12180=42.748588,-73.599536
-12182=42.799699,-73.630864
-12183=42.747870,-73.692595
-12184=42.419893,-73.653359
-12185=42.862521,-73.554112
-12186=42.633164,-73.977188
-12187=42.618840,-74.463554
-12188=42.821216,-73.695525
-12189=42.736341,-73.717521
-12190=43.475631,-74.285410
-12192=42.409035,-73.827677
-12193=42.522760,-74.043268
-12194=42.528462,-74.447631
-12195=42.482789,-73.475088
-12196=42.631786,-73.613946
-12197=42.609999,-74.724749
-12198=42.672768,-73.633574
-12202=42.635575,-73.759658
-12203=42.681048,-73.846980
-12204=42.691517,-73.733750
-12205=42.718785,-73.829240
-12206=42.674514,-73.782733
-12207=42.658398,-73.745952
-12208=42.653031,-73.809978
-12209=42.638686,-73.790469
-12210=42.659502,-73.756237
-12211=42.703095,-73.763706
-12222=42.685261,-73.823230
-12302=42.878182,-73.982505
-12303=42.740387,-73.905398
-12304=42.774690,-73.898297
-12305=42.811981,-73.950252
-12306=42.805429,-74.044227
-12307=42.804981,-73.932822
-12308=42.820980,-73.919670
-12309=42.799830,-73.864972
-12401=41.987541,-74.010273
-12404=41.818958,-74.236082
-12405=42.317909,-74.085995
-12406=42.079943,-74.524093
-12407=42.317638,-74.358152
-12409=42.040569,-74.181139
-12410=42.066096,-74.424732
-12411=41.876019,-74.044802
-12412=42.012732,-74.279585
-12413=42.313984,-74.022160
-12414=42.232019,-73.913867
-12416=42.103040,-74.281552
-12417=41.906422,-73.990723
-12418=42.358758,-74.161680
-12419=41.860252,-74.102007
-12420=41.672466,-74.371559
-12421=42.250044,-74.546139
-12422=42.391829,-74.213288
-12423=42.379218,-74.109746
-12424=42.247617,-74.115847
-12427=42.134238,-74.136736
-12428=41.746858,-74.466143
-12429=41.833329,-73.985378
-12430=42.200758,-74.499160
-12431=42.362023,-74.023533
-12432=42.044420,-73.944531
-12433=42.000641,-74.156576
-12434=42.363640,-74.502385
-12435=41.730800,-74.513360
-12436=42.195759,-74.077821
-12438=42.204899,-74.601006
-12439=42.277817,-74.210390
-12440=41.781151,-74.172876
-12441=42.134422,-74.509215
-12442=42.182411,-74.222991
-12443=41.934991,-74.084925
-12444=42.264233,-74.297520
-12446=41.809559,-74.326443
-12448=42.086646,-74.160660
-12449=41.992378,-73.993774
-12450=42.133247,-74.244279
-12451=42.304893,-73.948176
-12452=42.252385,-74.364938
-12453=42.093389,-73.936281
-12454=42.286970,-74.149542
-12455=42.140733,-74.659478
-12456=42.032705,-73.997133
-12457=42.044071,-74.252501
-12458=41.822918,-74.432080
-12459=42.240382,-74.678893
-12460=42.415615,-74.147590
-12461=41.904961,-74.267998
-12463=42.205517,-74.020428
-12464=42.023540,-74.367292
-12465=42.157153,-74.460016
-12466=41.904345,-73.979025
-12468=42.300462,-74.423763
-12469=42.448595,-74.246097
-12470=42.299624,-74.093387
-12471=41.843871,-74.041344
-12472=41.847090,-74.079545
-12473=42.258166,-74.041007
-12474=42.323807,-74.583034
-12475=42.015237,-74.015432
-12477=42.092591,-73.988110
-12480=42.135382,-74.391275
-12481=41.987348,-74.228435
-12482=42.268143,-73.955446
-12483=41.672377,-74.421991
-12484=41.861918,-74.176528
-12485=42.205023,-74.144201
-12486=41.832417,-74.063984
-12487=41.869399,-73.998805
-12489=41.750485,-74.358293
-12490=42.122854,-73.924476
-12491=41.965192,-74.141459
-12492=42.184926,-74.335763
-12493=41.785665,-73.974132
-12494=41.956598,-74.292894
-12495=42.084923,-74.240680
-12496=42.337294,-74.269692
-12498=42.045663,-74.109618
-12501=41.863095,-73.573627
-12502=42.086568,-73.664724
-12503=42.035959,-73.580146
-12504=42.035298,-73.913144
-12507=42.009241,-73.917141
-12508=41.495996,-73.953632
-12512=41.548499,-73.968402
-12513=42.219307,-73.720481
-12514=41.877409,-73.764423
-12515=41.684774,-74.064840
-12516=42.106275,-73.563583
-12517=42.114296,-73.507454
-12518=41.416157,-74.043064
-12520=41.428017,-73.996195
-12521=42.171335,-73.650487
-12522=41.719979,-73.598384
-12523=42.086870,-73.759509
-12524=41.528785,-73.888317
-12525=41.691564,-74.188272
-12526=42.122234,-73.858769
-12527=41.519428,-73.935669
-12528=41.722054,-74.009482
-12529=42.198626,-73.542777
-12530=42.207459,-73.687752
-12531=41.540556,-73.671671
-12533=41.559772,-73.787099
-12534=42.217345,-73.752256
-12538=41.792230,-73.893767
-12540=41.671202,-73.724891
-12542=41.613876,-74.015014
-12543=41.495520,-74.173104
-12545=41.782904,-73.669402
-12546=41.948000,-73.523349
-12547=41.660687,-73.986567
-12548=41.658064,-74.102416
-12549=41.528031,-74.259365
-12550=41.539574,-74.057223
-12553=41.455714,-74.074901
-12561=41.759307,-74.096058
-12563=41.499189,-73.587226
-12564=41.582614,-73.582577
-12565=42.247128,-73.647638
-12566=41.633519,-74.319661
-12567=41.986194,-73.642216
-12569=41.734556,-73.792835
-12570=41.626321,-73.675662
-12571=42.002775,-73.809608
-12572=41.924885,-73.863664
-12574=41.917688,-73.945658
-12575=41.466705,-74.178871
-12577=41.424040,-74.122142
-12578=41.809120,-73.795854
-12580=41.863651,-73.871536
-12581=41.901615,-73.700592
-12582=41.544301,-73.738452
-12583=42.063367,-73.868652
-12585=41.726404,-73.691510
-12586=41.562764,-74.170102
-12589=41.623791,-74.158771
-12590=41.592556,-73.886853
-12592=41.802075,-73.578626
-12594=41.684461,-73.557676
-12601=41.701921,-73.911519
-12603=41.675868,-73.864484
-12604=41.688259,-73.892171
-12701=41.650829,-74.699907
-12719=41.498250,-74.904285
-12720=41.645848,-74.907849
-12721=41.581723,-74.422422
-12722=41.590634,-74.374304
-12723=41.753100,-74.987694
-12724=41.837621,-74.958711
-12725=41.983183,-74.570105
-12726=41.708209,-75.017203
-12729=41.475792,-74.623499
-12732=41.551487,-74.874606
-12733=41.724769,-74.617933
-12734=41.734585,-74.750460
-12736=41.852843,-75.021754
-12737=41.501481,-74.798632
-12738=41.676246,-74.586211
-12740=41.938832,-74.434026
-12741=41.839141,-75.077725
-12742=41.724328,-74.723518
-12743=41.548548,-74.831025
-12745=41.783433,-75.024648
-12746=41.442335,-74.656785
-12747=41.750928,-74.692894
-12748=41.774642,-74.922609
-12749=41.695254,-74.841166
-12750=41.727825,-74.965854
-12751=41.695730,-74.664485
-12752=41.680039,-74.994190
-12754=41.798195,-74.736889
-12758=41.940283,-74.739118
-12759=41.781730,-74.658853
-12760=41.903930,-75.107835
-12762=41.647960,-74.792011
-12763=41.676348,-74.522774
-12764=41.591553,-74.995556
-12765=41.852341,-74.621165
-12766=41.815208,-74.978854
-12767=41.838093,-74.994415
-12768=41.864443,-74.730022
-12769=41.657942,-74.467272
-12770=41.449118,-74.843117
-12771=41.374380,-74.624279
-12775=41.613617,-74.593360
-12776=41.963341,-74.957643
-12777=41.561782,-74.709708
-12778=41.642678,-74.817550
-12779=41.702466,-74.632195
-12780=41.440142,-74.727343
-12781=41.619674,-74.466383
-12783=41.738633,-74.833724
-12784=41.669877,-74.638240
-12785=41.532391,-74.561274
-12786=41.638710,-74.857609
-12787=41.795394,-74.845029
-12788=41.787539,-74.589314
-12789=41.704524,-74.570951
-12790=41.592057,-74.517419
-12791=41.817275,-74.892870
-12792=41.513920,-74.959820
-12801=43.311160,-73.645286
-12803=43.290078,-73.629363
-12804=43.340954,-73.685911
-12808=43.759987,-73.716438
-12809=43.237078,-73.454506
-12810=43.491968,-73.985941
-12811=43.605457,-74.028330
-12812=43.875794,-74.389767
-12814=43.631894,-73.632551
-12815=43.695985,-73.667881
-12816=43.044236,-73.382032
-12817=43.639585,-73.823628
-12819=43.590870,-73.468547
-12821=43.453564,-73.415995
-12822=43.228585,-73.922206
-12823=43.179961,-73.409117
-12824=43.524756,-73.727177
-12827=43.463898,-73.531366
-12828=43.254993,-73.558355
-12831=43.195329,-73.691811
-12832=43.358467,-73.330271
-12833=43.150000,-73.840896
-12834=43.094307,-73.500583
-12835=43.332745,-74.006336
-12836=43.712353,-73.605587
-12837=43.476445,-73.255601
-12838=43.329063,-73.405066
-12839=43.354486,-73.553953
-12841=43.606007,-73.533013
-12842=43.738345,-74.367058
-12843=43.565104,-73.972748
-12844=43.489396,-73.621194
-12845=43.424048,-73.712740
-12846=43.345965,-73.789720
-12847=44.008384,-74.609231
-12849=43.449567,-73.298320
-12850=43.102616,-73.981441
-12851=43.841891,-74.034467
-12852=43.935800,-74.167514
-12853=43.657554,-74.064187
-12855=44.027010,-73.758053
-12856=43.665940,-74.142961
-12857=43.819563,-73.890620
-12858=43.908933,-73.675780
-12859=43.171875,-73.920872
-12860=43.755794,-73.842385
-12861=43.746887,-73.417527
-12862=43.685405,-73.910321
-12863=43.060363,-73.931906
-12864=43.727365,-74.305388
-12865=43.214159,-73.347451
-12866=43.073715,-73.740236
-12870=43.830056,-73.761222
-12871=43.088569,-73.612965
-12872=43.874656,-73.734418
-12873=43.117451,-73.311646
-12874=43.690561,-73.549743
-12878=43.415025,-74.027450
-12883=43.836596,-73.552843
-12884=43.088396,-73.591291
-12885=43.523052,-73.806561
-12886=43.683437,-73.939175
-12887=43.536760,-73.365798
-12901=44.704190,-73.471392
-12903=44.680303,-73.445883
-12910=44.845249,-73.619461
-12911=44.521440,-73.460805
-12912=44.480941,-73.772482
-12913=44.430097,-74.002212
-12914=44.927419,-74.602942
-12916=44.834052,-74.515665
-12917=44.927638,-74.178910
-12918=44.700736,-73.676657
-12919=44.964539,-73.447083
-12920=44.882767,-74.066008
-12921=44.888628,-73.441064
-12922=44.286614,-74.702114
-12923=44.960319,-73.939419
-12924=44.480467,-73.581081
-12926=44.950821,-74.329000
-12927=44.207250,-74.809746
-12928=43.963837,-73.583248
-12929=44.720027,-73.719234
-12930=44.720458,-74.543229
-12932=44.214405,-73.608948
-12933=44.890994,-73.845341
-12934=44.875376,-73.873665
-12935=44.844657,-73.796933
-12936=44.285062,-73.401450
-12937=44.960847,-74.478455
-12939=44.432944,-74.160829
-12941=44.347329,-73.702866
-12942=44.232492,-73.826827
-12943=44.122772,-73.883500
-12944=44.433105,-73.533248
-12945=44.309091,-74.240440
-12946=44.206554,-74.046061
-12950=44.318369,-73.581246
-12952=44.708320,-73.905660
-12953=44.745352,-74.260037
-12955=44.806650,-73.970421
-12956=44.097612,-73.481333
-12957=44.848324,-74.574605
-12958=44.960295,-73.571184
-12959=44.952351,-73.719912
-12960=44.015756,-73.572348
-12961=44.057111,-73.549539
-12962=44.701391,-73.605439
-12964=44.125919,-73.626721
-12965=44.703456,-74.685289
-12966=44.798893,-74.418686
-12967=44.774921,-74.657566
-12969=44.710897,-74.098150
-12970=44.478136,-74.307514
-12972=44.554081,-73.569296
-12973=44.287677,-74.594706
-12974=44.060141,-73.464831
-12975=44.529091,-73.430536
-12976=44.503733,-74.230251
-12977=44.277015,-74.072971
-12978=44.616360,-73.808710
-12979=44.991657,-73.373374
-12980=44.563851,-74.524079
-12981=44.627099,-73.845851
-12983=44.307529,-74.147022
-12985=44.560709,-73.738967
-12986=44.226011,-74.480931
-12987=44.320841,-73.753460
-12989=44.520103,-74.069774
-12992=44.817751,-73.516729
-12993=44.211345,-73.476221
-12996=44.355266,-73.448055
-12997=44.372798,-73.892043
-12998=44.077800,-73.576545
-13020=42.816424,-76.074504
-13021=42.922279,-76.558539
-13024=42.934596,-76.574232
-13026=42.744043,-76.652266
-13027=43.166437,-76.364345
-13028=43.305216,-75.945294
-13029=43.225942,-76.151343
-13030=43.152233,-75.962695
-13031=43.045015,-76.309541
-13032=43.081617,-75.766018
-13033=43.188494,-76.562626
-13034=42.956780,-76.707909
-13035=42.940849,-75.830103
-13036=43.309256,-76.166775
-13037=43.067797,-75.854933
-13039=43.172142,-76.056249
-13040=42.559649,-75.930761
-13041=43.192089,-76.192302
-13042=43.260450,-75.852580
-13044=43.291249,-75.996241
-13045=42.573849,-76.202145
-13051=42.876725,-75.908639
-13052=42.712310,-75.865194
-13053=42.479575,-76.267918
-13054=43.169352,-75.666823
-13057=43.101955,-76.037919
-13060=43.022862,-76.411872
-13061=42.871851,-75.762082
-13062=42.484095,-76.384376
-13063=42.847849,-75.977961
-13064=43.328996,-76.711915
-13066=43.032475,-76.000667
-13068=42.492431,-76.359199
-13069=43.329276,-76.380655
-13071=42.675114,-76.542579
-13072=42.762210,-75.763989
-13073=42.583670,-76.387923
-13074=43.310917,-76.549843
-13076=43.353715,-76.149309
-13077=42.727973,-76.211042
-13078=42.958399,-76.061101
-13080=43.093210,-76.485258
-13081=42.673617,-76.627152
-13082=43.102730,-75.959888
-13083=43.645775,-75.981680
-13084=42.880541,-76.124474
-13087=42.708597,-76.154050
-13088=43.112421,-76.189457
-13090=43.153084,-76.212402
-13092=42.654563,-76.419295
-13101=42.589192,-76.056073
-13102=42.550304,-76.292002
-13103=43.325760,-76.109544
-13104=42.963030,-75.948439
-13108=42.964845,-76.331113
-13110=42.895398,-76.280364
-13111=43.258488,-76.614264
-13112=43.106266,-76.417239
-13113=43.162650,-76.538623
-13114=43.465706,-76.244786
-13115=43.398646,-76.478779
-13116=43.074797,-76.007947
-13117=43.009299,-76.707508
-13118=42.755585,-76.387278
-13120=42.933187,-76.175145
-13122=42.837754,-75.861520
-13123=43.233564,-75.769068
-13124=42.661074,-75.823604
-13126=43.438798,-76.457454
-13131=43.423243,-76.091802
-13132=43.271918,-76.251052
-13134=42.967368,-75.684678
-13135=43.253687,-76.314375
-13136=42.614098,-75.844788
-13138=42.899087,-76.014634
-13140=43.060381,-76.650274
-13141=42.752495,-76.185697
-13142=43.554899,-76.137872
-13143=43.235788,-76.714793
-13144=43.568747,-75.977023
-13145=43.646742,-76.116311
-13146=43.085645,-76.750191
-13147=42.775406,-76.569608
-13148=42.913372,-76.785260
-13152=42.890839,-76.372620
-13153=42.996557,-76.453627
-13155=42.674546,-75.776726
-13156=43.325990,-76.661306
-13157=43.206652,-75.721431
-13158=42.696935,-75.951068
-13159=42.802964,-76.111618
-13160=42.827598,-76.648904
-13162=43.185045,-75.714741
-13163=43.080092,-75.710999
-13164=43.096891,-76.312578
-13165=42.916639,-76.883297
-13166=43.078935,-76.565379
-13167=43.326421,-76.060260
-13202=43.043782,-76.150638
-13203=43.061111,-76.134924
-13204=43.050817,-76.177473
-13205=43.005276,-76.142030
-13206=43.073465,-76.105806
-13207=43.012813,-76.163317
-13208=43.078768,-76.145230
-13209=43.068502,-76.224251
-13210=43.031057,-76.127249
-13211=43.103572,-76.119484
-13212=43.129697,-76.130154
-13214=43.038709,-76.075591
-13215=42.980793,-76.223386
-13219=43.041266,-76.224195
-13224=43.037162,-76.102900
-13290=43.069136,-76.173017
-13301=43.416050,-75.218175
-13302=43.498115,-75.965068
-13303=43.367414,-75.468212
-13304=43.243880,-75.160287
-13305=43.892289,-75.421171
-13308=43.251266,-75.657668
-13309=43.452005,-75.355443
-13310=42.889620,-75.571545
-13312=43.691839,-75.204374
-13313=42.880221,-75.272902
-13314=42.816533,-75.319104
-13315=42.744144,-75.143611
-13316=43.418917,-75.739740
-13317=42.854101,-74.590839
-13318=42.921536,-75.260063
-13319=43.026436,-75.266925
-13320=42.777805,-74.740798
-13321=43.087796,-75.370637
-13322=42.954345,-75.201657
-13323=43.039981,-75.379353
-13324=43.320641,-74.961602
-13325=43.576282,-75.527857
-13326=42.722511,-74.895371
-13327=43.972929,-75.262309
-13328=42.985096,-75.429027
-13329=43.107462,-74.708431
-13331=43.866299,-74.880901
-13332=42.764159,-75.581736
-13333=42.836995,-74.818644
-13334=42.827039,-75.656427
-13335=42.702260,-75.248224
-13337=42.757804,-74.999545
-13338=43.528032,-74.987121
-13339=42.936895,-74.658658
-13340=43.061642,-75.128570
-13341=43.036086,-75.396891
-13342=42.654143,-75.195234
-13343=43.751239,-75.311500
-13345=43.687108,-75.321254
-13346=42.818442,-75.544331
-13348=42.709982,-75.066926
-13350=43.061009,-75.000439
-13352=43.313337,-75.116208
-13353=43.447279,-74.694629
-13354=43.265093,-75.268497
-13355=42.809841,-75.430434
-13357=42.971061,-75.081209
-13360=43.721790,-74.714836
-13361=42.904352,-74.867560
-13362=42.982178,-75.522003
-13363=43.324528,-75.513109
-13364=42.804977,-75.261071
-13365=43.125689,-74.853291
-13367=43.757731,-75.532709
-13368=43.638483,-75.286787
-13402=42.892429,-75.500629
-13403=43.164533,-75.267645
-13404=43.736385,-75.471758
-13406=43.134514,-74.924889
-13407=42.968801,-74.950576
-13408=42.922949,-75.676749
-13409=42.976475,-75.595112
-13410=42.931043,-74.612591
-13411=42.633789,-75.306457
-13413=43.060413,-75.279398
-13415=42.596494,-75.198473
-13416=43.187371,-74.970659
-13417=43.100974,-75.293788
-13418=42.845704,-75.380460
-13420=43.717768,-74.984147
-13421=43.061915,-75.660092
-13424=43.152367,-75.365215
-13425=42.964793,-75.487060
-13428=42.915086,-74.546249
-13431=43.209082,-75.073328
-13433=43.594911,-75.248869
-13435=43.304981,-75.150772
-13436=43.811023,-74.666226
-13437=43.580307,-75.803859
-13438=43.354138,-75.159613
-13439=42.857316,-74.995275
-13440=43.215771,-75.461779
-13441=43.226377,-75.408248
-13450=42.701927,-74.810297
-13452=43.043056,-74.630470
-13454=43.219834,-74.757687
-13456=43.000029,-75.255495
-13459=42.775008,-74.588678
-13460=42.687707,-75.442290
-13461=43.070467,-75.599126
-13464=42.687973,-75.615788
-13468=42.848030,-74.851887
-13469=43.214828,-75.302367
-13470=43.209569,-74.609995
-13471=43.357597,-75.577397
-13472=43.697411,-75.067862
-13473=43.646449,-75.443434
-13475=42.893741,-74.830529
-13476=43.087503,-75.509514
-13477=43.032894,-75.512948
-13478=43.144012,-75.581897
-13480=42.917854,-75.363169
-13483=43.397335,-75.826061
-13484=42.866325,-75.659190
-13485=42.787528,-75.315224
-13486=43.345147,-75.344599
-13488=42.688638,-74.750589
-13489=43.460774,-75.552463
-13490=43.110080,-75.426511
-13491=42.864135,-75.168133
-13492=43.114604,-75.337680
-13493=43.432843,-75.897509
-13494=43.532529,-75.141288
-13495=43.110890,-75.277497
-13501=43.081283,-75.225833
-13502=43.141264,-75.154707
-13601=43.968892,-75.906501
-13602=44.065388,-75.784305
-13603=44.035974,-75.793813
-13605=43.807410,-76.050358
-13606=43.872576,-76.014735
-13607=44.298548,-75.936006
-13608=44.260940,-75.613698
-13612=43.985237,-75.769370
-13613=44.870613,-74.750443
-13614=44.530889,-75.691170
-13615=44.047775,-75.984057
-13616=44.030078,-75.857573
-13617=44.580531,-75.142767
-13618=44.114766,-76.290981
-13619=43.978952,-75.600977
-13620=43.908782,-75.448325
-13621=44.834246,-75.080093
-13622=44.100667,-76.106996
-13623=44.449786,-75.752462
-13624=44.209480,-76.093055
-13625=44.538101,-74.928377
-13626=43.830086,-75.734774
-13628=44.030542,-75.682394
-13630=44.498619,-75.311532
-13633=44.497430,-75.455993
-13634=44.011290,-76.073698
-13635=44.286952,-75.281419
-13636=43.743443,-76.116550
-13637=44.106202,-75.818322
-13638=44.019072,-75.741692
-13639=44.263676,-75.150529
-13640=44.303561,-76.028103
-13641=44.273801,-76.003351
-13642=44.335388,-75.455879
-13643=44.031812,-75.717094
-13646=44.446082,-75.674198
-13647=44.605875,-74.980580
-13648=44.150217,-75.318000
-13650=43.811310,-76.216097
-13651=43.866158,-76.176966
-13652=44.432661,-75.186773
-13654=44.577138,-75.436852
-13655=44.981859,-74.650150
-13656=44.192383,-75.955933
-13658=44.747782,-75.271203
-13659=43.738005,-75.863380
-13660=44.773868,-75.160958
-13661=43.709620,-76.098396
-13662=44.932334,-74.883932
-13664=44.584013,-75.645460
-13665=44.048460,-75.434366
-13666=44.218485,-74.926076
-13667=44.837267,-74.960097
-13668=44.754820,-74.986306
-13669=44.672777,-75.482342
-13670=44.167379,-75.116735
-13672=44.470543,-74.660706
-13673=44.164347,-75.718028
-13674=43.738561,-76.048180
-13675=44.281718,-75.846286
-13676=44.654960,-74.926222
-13677=44.512429,-75.179673
-13678=44.813766,-74.992918
-13679=44.319891,-75.770605
-13680=44.595988,-75.323398
-13681=44.428054,-75.373151
-13682=43.843312,-75.901905
-13684=44.356596,-75.013141
-13685=43.925469,-76.085527
-13687=44.439018,-74.838177
-13690=44.097456,-75.007653
-13691=44.231562,-75.770537
-13692=44.288793,-76.026292
-13693=43.985747,-76.246105
-13694=44.868927,-75.134242
-13695=44.102929,-74.922258
-13696=44.694741,-74.888048
-13697=44.754714,-74.810347
-13730=42.223737,-75.532187
-13731=42.129650,-74.787822
-13732=42.049447,-76.167535
-13733=42.301697,-75.478883
-13734=42.069955,-76.409653
-13736=42.324084,-76.202038
-13739=42.349124,-74.789149
-13740=42.273812,-74.756997
-13743=42.211894,-76.338222
-13744=42.243494,-75.907999
-13746=42.268926,-75.884667
-13748=42.042579,-75.822521
-13750=42.471013,-74.857905
-13751=42.454448,-74.901809
-13752=42.190557,-74.897015
-13753=42.306960,-74.926915
-13754=42.088461,-75.447935
-13755=42.055241,-74.966920
-13756=42.004099,-75.100670
-13757=42.410607,-74.891229
-13760=42.133332,-76.084622
-13774=41.960129,-75.149396
-13775=42.327909,-75.134022
-13776=42.470423,-75.331951
-13777=42.258166,-75.989587
-13778=42.359214,-75.759499
-13780=42.422485,-75.476583
-13782=42.169629,-74.991301
-13783=41.993662,-75.266006
-13784=42.426878,-76.221343
-13786=42.440980,-74.693941
-13787=42.212627,-75.671949
-13788=42.339013,-74.666282
-13790=42.165361,-76.001942
-13794=42.393238,-76.013720
-13795=42.056638,-75.778938
-13796=42.557188,-75.132130
-13797=42.333665,-76.040401
-13801=42.505085,-75.776970
-13802=42.242134,-76.041266
-13803=42.456883,-76.067124
-13804=42.225702,-75.384220
-13806=42.379101,-74.957234
-13807=42.607470,-74.988238
-13808=42.525233,-75.262200
-13809=42.403814,-75.395541
-13810=42.606817,-75.108363
-13811=42.234926,-76.164054
-13812=42.030060,-76.354752
-13813=42.163707,-75.551328
-13815=42.547866,-75.530855
-13820=42.483456,-75.036874
-13825=42.435577,-75.204553
-13826=42.099820,-75.638796
-13827=42.117827,-76.249166
-13830=42.437694,-75.627357
-13832=42.658130,-75.672216
-13833=42.198205,-75.768632
-13834=42.530981,-74.965895
-13835=42.383214,-76.178996
-13838=42.285099,-75.388127
-13839=42.262039,-75.252051
-13841=42.406990,-75.842161
-13842=42.376700,-74.723609
-13843=42.503033,-75.382469
-13844=42.608179,-75.668317
-13845=42.053431,-76.354924
-13846=42.363723,-75.054746
-13847=42.186107,-75.291002
-13849=42.350096,-75.309317
-13850=42.049395,-76.017594
-13856=42.171041,-75.183316
-13859=42.372464,-75.245243
-13860=42.453131,-74.932972
-13861=42.508540,-75.151092
-13862=42.330958,-75.931008
-13863=42.455495,-75.898915
-13864=42.271760,-76.388557
-13865=42.032061,-75.615617
-13901=42.183203,-75.876048
-13902=42.088824,-75.968883
-13903=42.041870,-75.889077
-13904=42.134123,-75.820206
-13905=42.170436,-75.943434
-14001=43.036573,-78.510831
-14004=42.891371,-78.503687
-14005=42.920586,-78.250065
-14006=42.633130,-79.021745
-14008=43.312726,-78.623166
-14009=42.593154,-78.397461
-14011=42.830674,-78.299709
-14012=43.332173,-78.532622
-14013=43.086290,-78.397746
-14020=42.996190,-78.213412
-14024=42.581363,-78.245468
-14025=42.622205,-78.727034
-14026=42.942356,-78.687965
-14028=43.318040,-78.717617
-14030=42.564386,-78.507624
-14031=42.983128,-78.614258
-14032=43.046729,-78.630773
-14033=42.654382,-78.692124
-14034=42.500569,-78.865375
-14035=42.490778,-78.848389
-14036=42.973851,-78.389527
-14037=42.802789,-78.453328
-14039=42.851480,-78.173096
-14040=42.890873,-78.376631
-14041=42.398835,-78.971581
-14042=42.475564,-78.488807
-14043=42.901971,-78.703418
-14047=42.687367,-78.986636
-14048=42.484359,-79.317005
-14051=43.042842,-78.699413
-14052=42.772531,-78.584321
-14054=42.919587,-78.126802
-14055=42.562879,-78.600126
-14057=42.646574,-78.874782
-14058=43.102049,-78.168857
-14059=42.833552,-78.634046
-14060=42.450155,-78.296467
-14061=42.593878,-79.079302
-14062=42.438404,-79.143107
-14063=42.408690,-79.331304
-14065=42.484905,-78.312811
-14066=42.629054,-78.185536
-14067=43.213204,-78.568403
-14068=43.027386,-78.756666
-14069=42.615234,-78.642935
-14070=42.419658,-78.917725
-14072=43.017901,-78.962657
-14075=42.712657,-78.834708
-14080=42.648324,-78.548308
-14081=42.563203,-79.067834
-14082=42.656563,-78.385184
-14085=42.717882,-78.921629
-14086=42.909063,-78.629256
-14091=42.538233,-78.893008
-14092=43.173220,-78.993074
-14094=43.157758,-78.701995
-14098=43.334373,-78.380616
-14101=42.392651,-78.538203
-14102=42.837026,-78.557725
-14103=43.211161,-78.376770
-14105=43.199166,-78.483903
-14108=43.263343,-78.726950
-14109=43.137952,-79.034134
-14111=42.580255,-78.904691
-14112=42.697963,-78.939953
-14113=42.671576,-78.339931
-14120=43.079317,-78.842654
-14125=43.084919,-78.274609
-14126=43.335882,-78.728636
-14127=42.752803,-78.739697
-14129=42.481182,-79.017384
-14130=42.555981,-78.147652
-14131=43.238603,-78.899823
-14132=43.149330,-78.877732
-14134=42.527686,-78.523981
-14135=42.487694,-79.240900
-14136=42.517379,-79.174812
-14138=42.379512,-79.036656
-14139=42.718405,-78.541402
-14141=42.524967,-78.712076
-14143=42.972268,-78.064247
-14145=42.729606,-78.434328
-14150=42.998084,-78.878256
-14167=42.748523,-78.322954
-14168=42.520385,-78.990541
-14169=42.766144,-78.523698
-14170=42.700245,-78.674307
-14171=42.424674,-78.649832
-14172=43.272672,-78.812943
-14173=42.525971,-78.473102
-14174=43.249139,-78.998325
-14201=42.896060,-78.886424
-14202=42.881489,-78.877477
-14203=42.868914,-78.869693
-14204=42.882138,-78.861325
-14206=42.880078,-78.810469
-14207=42.951932,-78.898883
-14208=42.915890,-78.853098
-14209=42.913960,-78.866027
-14210=42.862657,-78.828768
-14211=42.906731,-78.819891
-14212=42.894211,-78.820173
-14213=42.918097,-78.892406
-14214=42.939640,-78.840689
-14215=42.935288,-78.810645
-14216=42.949615,-78.861119
-14217=42.971876,-78.876869
-14218=42.819372,-78.830952
-14219=42.788675,-78.826431
-14220=42.845738,-78.822076
-14221=42.984481,-78.722761
-14222=42.919826,-78.876923
-14223=42.973452,-78.846201
-14224=42.837759,-78.747821
-14225=42.928949,-78.750273
-14226=42.971014,-78.796455
-14227=42.886872,-78.730832
-14228=43.044371,-78.777335
-14261=43.007693,-78.791436
-14301=43.095821,-79.040408
-14302=43.093896,-79.049193
-14303=43.084975,-79.038402
-14304=43.099407,-78.951983
-14305=43.122831,-79.023218
-14411=43.235972,-78.216477
-14414=42.890961,-77.743757
-14415=42.755495,-77.017084
-14416=43.082693,-77.980115
-14418=42.604430,-77.216428
-14420=43.211739,-77.934564
-14422=43.084761,-78.066965
-14423=42.933948,-77.821103
-14424=42.856695,-77.303277
-14425=42.991514,-77.338020
-14427=42.621589,-78.053905
-14428=43.080517,-77.853568
-14432=42.957391,-77.143523
-14433=43.082126,-76.877598
-14435=42.712552,-77.663312
-14437=42.570141,-77.733764
-14441=42.684610,-76.957603
-14445=43.113062,-77.490306
-14450=43.092487,-77.420461
-14454=42.797774,-77.774638
-14456=42.847695,-76.998972
-14462=42.686534,-77.751115
-14464=43.327049,-77.932163
-14466=42.776517,-77.581042
-14467=43.036367,-77.612051
-14468=43.293956,-77.802049
-14469=42.877919,-77.471014
-14470=43.205212,-78.057685
-14471=42.753761,-77.492189
-14472=42.966819,-77.575134
-14475=42.937819,-77.498297
-14476=43.329379,-78.042800
-14477=43.333129,-78.140393
-14478=42.577823,-77.126322
-14479=43.236262,-78.313775
-14480=42.838482,-77.710342
-14481=42.761795,-77.921452
-14482=42.978904,-77.971534
-14485=42.882635,-77.601026
-14486=42.894280,-77.921587
-14487=42.811758,-77.636006
-14489=43.088381,-76.994347
-14502=43.096594,-77.335388
-14504=42.968981,-77.231501
-14505=43.159419,-77.168961
-14506=43.005511,-77.516656
-14507=42.684916,-77.254886
-14510=42.683010,-77.869009
-14511=42.999374,-77.891790
-14512=42.645241,-77.399770
-14513=43.086308,-77.092116
-14514=43.109913,-77.814986
-14516=43.201328,-76.919338
-14517=42.592426,-77.895852
-14519=43.233972,-77.314631
-14521=42.676642,-76.805003
-14522=43.061423,-77.220399
-14525=42.877513,-78.013345
-14526=43.151464,-77.444396
-14527=42.665508,-77.066309
-14529=42.539976,-77.638100
-14530=42.739910,-77.998746
-14532=42.964101,-77.032088
-14533=42.838808,-77.888751
-14534=43.056890,-77.521042
-14536=42.543975,-78.083671
-14537=43.035808,-77.163201
-14539=42.834499,-77.874751
-14541=42.765059,-76.848967
-14542=43.147329,-76.860121
-14543=42.983831,-77.678535
-14544=42.756251,-77.243735
-14545=42.664857,-77.701007
-14546=43.032675,-77.780006
-14548=42.976072,-77.243870
-14549=42.700031,-78.017273
-14550=42.679902,-78.093487
-14551=43.218368,-77.049581
-14555=43.260787,-76.975740
-14559=43.189980,-77.819052
-14560=42.683429,-77.565904
-14561=42.820432,-77.131778
-14564=42.986699,-77.434360
-14568=43.161845,-77.281657
-14569=42.735221,-78.171092
-14571=43.341652,-78.251742
-14572=42.564925,-77.562598
-14580=43.217283,-77.444534
-14585=42.906261,-77.553145
-14586=43.041675,-77.689904
-14588=42.680987,-76.870803
-14589=43.249424,-77.174261
-14590=43.242547,-76.826243
-14591=42.832085,-78.107386
-14592=42.872237,-77.895893
-14604=43.156212,-77.604741
-14605=43.168428,-77.602642
-14606=43.171047,-77.697953
-14607=43.150776,-77.586432
-14608=43.154099,-77.622930
-14609=43.177093,-77.554873
-14610=43.142359,-77.545372
-14611=43.148316,-77.646987
-14612=43.266330,-77.676706
-14613=43.182171,-77.640175
-14614=43.157442,-77.615355
-14615=43.201207,-77.654749
-14616=43.234622,-77.657663
-14617=43.225497,-77.593527
-14618=43.114542,-77.554976
-14619=43.136456,-77.649477
-14620=43.128291,-77.605805
-14621=43.189939,-77.603649
-14622=43.215741,-77.552402
-14623=43.087349,-77.641862
-14624=43.128300,-77.731411
-14625=43.150035,-77.505520
-14626=43.216558,-77.710789
-14627=43.128664,-77.629144
-14701=42.080160,-79.256710
-14706=42.113246,-78.533146
-14707=42.077340,-78.060520
-14708=42.019219,-78.063617
-14709=42.356494,-77.982064
-14710=42.087770,-79.419847
-14711=42.326732,-78.119419
-14712=42.183745,-79.361923
-14714=42.296728,-78.233633
-14715=42.076530,-78.144750
-14716=42.390637,-79.445044
-14717=42.361647,-78.179701
-14718=42.345814,-79.287617
-14719=42.341958,-78.875953
-14720=42.108592,-79.281179
-14721=42.013905,-78.266442
-14722=42.209489,-79.468361
-14723=42.317698,-79.157224
-14724=42.046328,-79.669830
-14726=42.253585,-79.020279
-14727=42.206882,-78.297294
-14728=42.263333,-79.423176
-14729=42.408377,-78.743584
-14731=42.307351,-78.655503
-14732=42.231862,-79.116414
-14733=42.160122,-79.172199
-14735=42.452690,-78.096169
-14736=42.140845,-79.746108
-14737=42.329050,-78.428611
-14738=42.055006,-79.084541
-14739=42.192604,-78.146295
-14740=42.223203,-79.181435
-14741=42.219966,-78.611624
-14742=42.120123,-79.306839
-14743=42.211871,-78.396009
-14744=42.428100,-78.206654
-14747=42.153715,-79.094518
-14748=42.157106,-78.643074
-14750=42.079766,-79.329244
-14752=42.351728,-79.319857
-14753=42.036032,-78.664372
-14754=42.021908,-78.201569
-14755=42.233756,-78.804596
-14756=42.198039,-79.421274
-14757=42.237679,-79.504709
-14760=42.077027,-78.418429
-14767=42.057352,-79.514135
-14769=42.367931,-79.472317
-14770=42.037929,-78.300296
-14772=42.157470,-78.952618
-14774=42.088367,-78.149093
-14775=42.228753,-79.699933
-14777=42.386080,-78.273772
-14778=42.077584,-78.483239
-14779=42.081231,-78.777985
-14781=42.161603,-79.601288
-14782=42.265508,-79.263865
-14783=42.082144,-78.887354
-14784=42.311143,-79.385369
-14787=42.311240,-79.565066
-14788=42.061991,-78.380108
-14801=42.104056,-77.292968
-14802=42.253375,-77.789297
-14803=42.273416,-77.745296
-14804=42.317259,-77.847936
-14805=42.352793,-76.713898
-14806=42.171497,-77.772561
-14807=42.420997,-77.711347
-14808=42.559639,-77.466860
-14809=42.424318,-77.448755
-14810=42.349751,-77.343379
-14812=42.300727,-77.005249
-14813=42.252647,-77.995104
-14814=42.155636,-76.959300
-14815=42.374268,-77.086780
-14816=42.197873,-76.732083
-14817=42.357625,-76.335167
-14818=42.454933,-76.818927
-14819=42.224194,-77.441939
-14820=42.193280,-77.359900
-14821=42.241574,-77.219254
-14822=42.424481,-77.851457
-14823=42.248614,-77.554873
-14824=42.259793,-76.699531
-14825=42.056296,-76.618187
-14826=42.491462,-77.497792
-14827=42.180651,-77.142885
-14830=42.128123,-77.031977
-14836=42.533010,-77.869746
-14837=42.490667,-77.026107
-14838=42.188126,-76.662349
-14839=42.119444,-77.640967
-14840=42.441653,-77.194396
-14841=42.525338,-76.840915
-14842=42.600620,-76.981464
-14843=42.320079,-77.646339
-14845=42.215841,-76.834100
-14846=42.532090,-78.001564
-14847=42.608500,-76.734217
-14850=42.432165,-76.497042
-14853=42.449002,-76.477551
-14854=42.505802,-76.614769
-14855=42.145700,-77.497396
-14856=42.376717,-77.366506
-14858=42.029790,-77.134956
-14859=42.114838,-76.538139
-14860=42.591920,-76.831428
-14861=42.088212,-76.686236
-14864=42.275415,-76.840921
-14865=42.348180,-76.833969
-14867=42.343150,-76.618094
-14869=42.362320,-76.768965
-14870=42.160372,-77.127611
-14871=42.039595,-76.911364
-14872=42.243653,-76.874902
-14873=42.522912,-77.298359
-14874=42.530177,-77.175488
-14877=42.057790,-77.680307
-14878=42.450262,-76.943405
-14879=42.321946,-77.187158
-14880=42.177508,-77.970614
-14881=42.399901,-76.358994
-14882=42.579578,-76.553706
-14883=42.237436,-76.475779
-14884=42.479522,-77.893852
-14885=42.046486,-77.570328
-14886=42.505752,-76.684984
-14889=42.234191,-76.579111
-14891=42.377014,-76.946182
-14892=42.046025,-76.529114
-14893=42.467714,-77.107721
-14894=42.019065,-76.777092
-14895=42.081440,-77.940922
-14897=42.020695,-77.792636
-14898=42.053364,-77.429500
-14901=42.087649,-76.746938
-14903=42.131632,-76.871851
-14904=42.070383,-76.800650
-14905=42.087725,-76.843282
-15001=40.595263,-80.322877
-15003=40.603640,-80.216424
-15004=40.345102,-80.381297
-15005=40.645080,-80.186648
-15006=40.633590,-79.876889
-15007=40.652282,-79.931688
-15009=40.697912,-80.365277
-15010=40.770872,-80.351446
-15012=40.155417,-79.812946
-15014=40.608072,-79.740428
-15015=40.637248,-80.081101
-15017=40.342274,-80.122354
-15018=40.265885,-79.797067
-15019=40.406974,-80.328574
-15020=40.233411,-79.950296
-15021=40.388565,-80.441527
-15022=40.124908,-79.939333
-15024=40.584970,-79.847315
-15025=40.297812,-79.923273
-15026=40.504991,-80.353946
-15027=40.666338,-80.240179
-15028=40.311313,-79.789560
-15030=40.591655,-79.782503
-15031=40.348224,-80.161151
-15033=40.179104,-79.864709
-15034=40.350816,-79.890602
-15035=40.384822,-79.807401
-15037=40.258036,-79.852590
-15038=40.250809,-79.925568
-15042=40.690315,-80.204823
-15043=40.551695,-80.487856
-15044=40.637986,-79.947904
-15045=40.325814,-79.885985
-15046=40.555697,-80.228607
-15047=40.315621,-79.793844
-15049=40.556113,-79.805574
-15050=40.563665,-80.434517
-15051=40.562602,-79.866913
-15052=40.658731,-80.430743
-15053=40.381001,-80.359879
-15054=40.362377,-80.407683
-15055=40.306293,-80.123516
-15056=40.563890,-80.216015
-15057=40.358656,-80.243904
-15059=40.677919,-80.485549
-15060=40.366849,-80.292127
-15061=40.659907,-80.319697
-15062=40.148547,-79.878200
-15063=40.191166,-79.922476
-15064=40.356339,-80.149929
-15065=40.644035,-79.725378
-15066=40.747074,-80.256143
-15067=40.207274,-79.962434
-15068=40.557191,-79.725802
-15071=40.412105,-80.187799
-15072=40.139245,-79.856330
-15074=40.734035,-80.208354
-15075=40.586037,-79.826914
-15076=40.607346,-79.834668
-15077=40.625131,-80.415891
-15078=40.355915,-80.384977
-15081=40.575072,-80.236104
-15082=40.377841,-80.212916
-15083=40.262466,-79.785744
-15084=40.628590,-79.803264
-15085=40.385735,-79.722251
-15086=40.674947,-80.106364
-15087=40.189522,-79.853422
-15088=40.272147,-79.896180
-15089=40.225233,-79.748806
-15090=40.625015,-80.067058
-15101=40.580328,-79.955241
-15102=40.321350,-80.036546
-15104=40.403883,-79.862605
-15106=40.410120,-80.114202
-15108=40.500472,-80.201802
-15110=40.373461,-79.850162
-15112=40.404484,-79.837706
-15116=40.526032,-79.932225
-15120=40.395872,-79.907511
-15122=40.361206,-79.895641
-15126=40.462479,-80.284445
-15129=40.293248,-79.996037
-15131=40.338791,-79.796071
-15132=40.339767,-79.842782
-15133=40.326747,-79.866547
-15135=40.310836,-79.812893
-15136=40.463480,-80.106172
-15137=40.375736,-79.808765
-15139=40.522823,-79.836255
-15140=40.407779,-79.776344
-15142=40.382059,-80.118682
-15143=40.565935,-80.146400
-15144=40.548049,-79.777952
-15145=40.415280,-79.824086
-15146=40.426328,-79.761358
-15147=40.497284,-79.830770
-15148=40.393451,-79.795120
-15201=40.474410,-79.950968
-15202=40.504968,-80.067821
-15203=40.426207,-79.975672
-15204=40.456867,-80.060630
-15205=40.438093,-80.099090
-15206=40.472272,-79.913156
-15207=40.403792,-79.928873
-15208=40.453191,-79.899497
-15209=40.498847,-79.969726
-15210=40.406951,-79.984987
-15211=40.430322,-80.015633
-15212=40.456939,-79.990054
-15213=40.444042,-79.955247
-15214=40.486557,-80.013953
-15215=40.501295,-79.912677
-15216=40.402626,-80.034849
-15217=40.430821,-79.920089
-15218=40.423610,-79.889803
-15219=40.443184,-79.983064
-15220=40.419506,-80.047768
-15221=40.435791,-79.864270
-15222=40.447691,-79.993445
-15223=40.505181,-79.952226
-15224=40.464234,-79.944805
-15225=40.506680,-80.113844
-15226=40.395053,-80.013952
-15227=40.375703,-79.970572
-15228=40.370667,-80.044135
-15229=40.520353,-80.037053
-15232=40.452517,-79.931939
-15233=40.460862,-80.034917
-15234=40.368140,-80.017795
-15235=40.459801,-79.822420
-15236=40.347404,-79.975481
-15237=40.549607,-80.043513
-15238=40.537201,-79.879443
-15239=40.483674,-79.738074
-15241=40.333518,-80.081412
-15243=40.375511,-80.072372
-15260=40.443915,-79.953256
-15290=40.457329,-80.019294
-15301=40.153494,-80.253464
-15310=39.792724,-80.482197
-15311=40.045914,-80.183933
-15312=40.251528,-80.440702
-15313=40.067960,-80.023705
-15314=40.146306,-80.016809
-15315=39.758289,-79.982684
-15316=39.724269,-80.252412
-15317=40.276893,-80.170729
-15320=39.876241,-79.990272
-15321=40.323357,-80.187945
-15322=39.988230,-80.053284
-15323=40.112251,-80.405659
-15324=40.100777,-80.065715
-15325=39.949429,-79.963374
-15327=39.744871,-79.960854
-15329=40.027715,-80.279927
-15330=40.179368,-80.089973
-15331=40.105350,-80.022571
-15332=40.240216,-79.993473
-15333=40.030787,-80.013210
-15334=39.808312,-79.967895
-15337=39.952162,-80.378188
-15338=39.786257,-80.002141
-15340=40.283226,-80.317491
-15341=39.824200,-80.343863
-15342=40.244231,-80.221186
-15344=39.915747,-80.061424
-15345=40.022623,-80.105047
-15346=39.935438,-80.075344
-15347=40.220317,-80.221104
-15348=39.985793,-79.996258
-15349=39.762403,-80.093925
-15350=40.293306,-80.200808
-15351=39.884305,-79.930223
-15352=39.752215,-80.382774
-15353=39.962124,-80.310954
-15357=39.941608,-79.980409
-15358=40.055388,-80.003007
-15359=39.876488,-80.275766
-15360=40.084912,-80.082379
-15361=40.329012,-80.258411
-15362=39.772469,-80.213932
-15363=40.251799,-80.198050
-15364=39.946321,-80.304780
-15366=40.159548,-79.973027
-15367=40.261094,-80.055672
-15368=40.013872,-79.989284
-15370=39.880615,-80.171197
-15376=40.108896,-80.478975
-15377=39.988469,-80.449057
-15378=40.278384,-80.275081
-15379=40.243194,-80.425176
-15380=39.867562,-80.467119
-15401=39.899926,-79.745662
-15410=39.911791,-79.901982
-15411=39.748580,-79.346892
-15412=40.088771,-79.859227
-15413=39.985307,-79.871134
-15417=40.008601,-79.918268
-15419=40.046955,-79.894985
-15420=39.960141,-79.865229
-15421=39.845848,-79.597198
-15422=39.981184,-79.811587
-15423=40.089905,-79.932521
-15424=39.819520,-79.359350
-15425=40.029709,-79.548840
-15427=40.069947,-79.974807
-15428=40.084267,-79.682026
-15429=40.002852,-79.938276
-15430=40.039411,-79.654384
-15431=39.949851,-79.596338
-15432=40.113849,-79.859899
-15433=39.982683,-79.948732
-15434=40.081867,-79.887389
-15435=39.942666,-79.849566
-15436=39.817812,-79.724778
-15437=39.780202,-79.612138
-15438=40.073207,-79.857770
-15440=39.735268,-79.616939
-15442=40.019082,-79.839708
-15443=39.919668,-79.880747
-15444=40.011976,-79.908804
-15445=39.876113,-79.667849
-15446=40.030982,-79.402992
-15447=39.943822,-79.936893
-15448=40.136048,-79.732527
-15449=39.964329,-79.783355
-15450=40.001137,-79.974194
-15451=39.736891,-79.835780
-15454=39.863151,-79.871733
-15455=40.003300,-79.642276
-15456=39.926646,-79.652104
-15458=39.890125,-79.851171
-15459=39.780970,-79.485501
-15460=39.807966,-79.907168
-15461=39.842678,-79.899964
-15462=40.064295,-79.378703
-15463=39.965563,-79.899834
-15464=39.930138,-79.436202
-15466=40.074568,-79.891797
-15467=39.784799,-79.926068
-15468=39.950112,-79.832570
-15469=40.009815,-79.418399
-15470=39.867154,-79.532018
-15472=39.919373,-79.716851
-15473=40.043825,-79.790742
-15474=39.751392,-79.893487
-15475=39.951649,-79.877545
-15476=39.869730,-79.920611
-15477=40.078203,-79.863966
-15478=39.787462,-79.804657
-15479=40.151237,-79.707539
-15480=39.985621,-79.773567
-15482=40.061488,-79.766067
-15483=40.083020,-79.850922
-15484=39.892689,-79.783677
-15486=40.025886,-79.711164
-15489=39.966381,-79.696055
-15490=40.072377,-79.454483
-15492=40.118305,-79.764298
-15501=40.039742,-79.129820
-15502=40.041023,-79.241503
-15510=39.966968,-79.040036
-15520=40.106367,-79.060539
-15521=40.208045,-78.630355
-15522=39.941732,-78.548409
-15530=39.940809,-78.924027
-15531=40.183936,-79.082097
-15532=39.762035,-79.060801
-15533=39.981847,-78.241926
-15534=39.899265,-78.691197
-15535=39.821183,-78.444171
-15536=39.954555,-78.203555
-15537=40.000385,-78.366843
-15538=39.863715,-78.834458
-15539=40.128409,-78.591380
-15540=39.797439,-79.239272
-15541=40.043876,-78.971391
-15542=39.875694,-79.071544
-15544=40.135638,-79.093436
-15545=39.802122,-78.752497
-15546=40.136624,-79.047988
-15547=40.162146,-79.071708
-15550=39.978253,-78.649618
-15551=39.868154,-79.284798
-15552=39.793280,-78.990962
-15554=40.122918,-78.621785
-15555=40.092408,-79.082247
-15557=39.927663,-79.218371
-15558=39.748420,-79.110357
-15559=40.060248,-78.691065
-15560=40.016558,-78.907139
-15561=40.095599,-79.087672
-15562=39.739533,-79.134556
-15563=40.097575,-78.928920
-15564=39.729993,-78.837774
-15601=40.314981,-79.534803
-15610=40.146956,-79.417201
-15611=40.306515,-79.652640
-15612=40.137347,-79.599717
-15613=40.546577,-79.561663
-15615=40.365308,-79.734156
-15616=40.222755,-79.553297
-15617=40.268182,-79.655373
-15618=40.571026,-79.439869
-15620=40.323545,-79.338689
-15621=40.213857,-79.483456
-15622=40.049578,-79.329190
-15623=40.367199,-79.620342
-15624=40.364867,-79.470198
-15625=40.269506,-79.679749
-15626=40.406993,-79.576160
-15627=40.351006,-79.300048
-15628=40.100553,-79.373372
-15629=40.597437,-79.562908
-15631=40.087482,-79.585356
-15632=40.439145,-79.600116
-15633=40.357318,-79.523907
-15634=40.323945,-79.604923
-15635=40.347904,-79.501557
-15636=40.365470,-79.657084
-15637=40.264955,-79.711818
-15638=40.264322,-79.398961
-15639=40.203514,-79.593806
-15640=40.224626,-79.729265
-15641=40.631645,-79.589328
-15642=40.318382,-79.723736
-15644=40.347382,-79.611245
-15646=40.082173,-79.326493
-15647=40.342501,-79.729198
-15650=40.277177,-79.392906
-15655=40.190142,-79.160129
-15656=40.656904,-79.629005
-15658=40.247834,-79.230681
-15660=40.244601,-79.774390
-15661=40.322166,-79.360132
-15662=40.334318,-79.478335
-15663=40.251846,-79.679271
-15665=40.339497,-79.660846
-15666=40.161024,-79.509814
-15668=40.460564,-79.670009
-15670=40.407121,-79.443505
-15671=40.356289,-79.321800
-15672=40.243792,-79.621588
-15673=40.593808,-79.556616
-15675=40.335305,-79.637074
-15676=40.240835,-79.465714
-15677=40.143126,-79.237310
-15678=40.287221,-79.726231
-15679=40.175948,-79.653825
-15680=40.520777,-79.499278
-15681=40.500367,-79.439951
-15683=40.107186,-79.608271
-15684=40.460696,-79.520663
-15686=40.623446,-79.431311
-15687=40.136223,-79.316448
-15688=40.168606,-79.584793
-15689=40.221425,-79.491440
-15690=40.641350,-79.549422
-15691=40.295377,-79.686141
-15692=40.331755,-79.678914
-15693=40.253148,-79.407701
-15695=40.197278,-79.693244
-15696=40.280112,-79.366167
-15697=40.241129,-79.579932
-15698=40.214407,-79.688503
-15701=40.628381,-79.150041
-15710=40.642463,-78.871670
-15711=41.018425,-78.955620
-15712=40.790456,-78.847887
-15713=40.569757,-79.261680
-15714=40.651306,-78.825059
-15715=40.970657,-78.877426
-15716=40.465148,-79.186897
-15717=40.457206,-79.243213
-15721=40.816322,-78.792568
-15722=40.595071,-78.724558
-15723=40.698747,-79.158676
-15724=40.735096,-78.813634
-15725=40.518948,-79.348779
-15727=40.558009,-79.309754
-15728=40.675665,-78.971780
-15729=40.706445,-78.915125
-15730=41.057508,-79.094932
-15731=40.503767,-79.176410
-15732=40.727686,-79.211872
-15733=40.988862,-78.959295
-15734=40.724797,-79.001265
-15736=40.701250,-79.366445
-15737=40.601258,-78.759013
-15738=40.691553,-78.785122
-15739=40.674249,-79.168735
-15741=40.802488,-78.891033
-15742=40.816978,-78.864006
-15744=40.922559,-79.084009
-15745=40.623001,-78.915191
-15746=40.758509,-78.889294
-15747=40.775788,-79.145875
-15748=40.523638,-79.084150
-15750=40.484780,-79.180918
-15752=40.540593,-79.283249
-15753=40.803842,-78.645319
-15754=40.556656,-79.151524
-15756=40.566558,-79.297083
-15757=40.903001,-78.731664
-15759=40.773017,-79.031699
-15760=40.648324,-78.800199
-15761=40.632245,-78.889807
-15762=40.594306,-78.829301
-15764=40.992622,-79.028710
-15765=40.599057,-78.987702
-15767=40.962153,-78.968171
-15770=41.008788,-79.136717
-15771=40.831556,-78.989145
-15772=40.870222,-78.898677
-15773=40.626766,-78.735444
-15774=40.654690,-79.323835
-15775=40.632482,-78.788141
-15776=41.010988,-79.111592
-15777=40.693760,-78.965439
-15778=40.969117,-79.195246
-15779=40.390847,-79.214432
-15780=40.913146,-79.071425
-15781=40.963797,-78.986853
-15783=40.609214,-79.343219
-15784=41.024426,-79.141266
-15801=41.125057,-78.722433
-15821=41.350958,-78.368514
-15823=41.259876,-78.715680
-15824=41.250833,-78.841186
-15825=41.174822,-79.034223
-15827=41.319159,-78.521654
-15828=41.385406,-79.123304
-15829=41.169298,-79.202144
-15832=41.356513,-78.197279
-15834=41.500760,-78.322783
-15840=41.171972,-78.822649
-15841=41.262939,-78.529883
-15845=41.494294,-78.689546
-15846=41.319857,-78.580314
-15847=41.090187,-79.032482
-15848=41.024169,-78.730644
-15849=41.164492,-78.582254
-15851=41.102906,-78.910417
-15853=41.392343,-78.791631
-15856=41.082255,-78.614302
-15857=41.455085,-78.520228
-15860=41.334002,-79.020323
-15861=41.306095,-78.066377
-15863=41.014385,-78.839736
-15864=41.103578,-79.197538
-15865=41.044954,-78.828292
-15866=41.023892,-78.791035
-15868=41.300372,-78.327675
-15870=41.594121,-78.567901
-15901=40.328742,-78.914292
-15902=40.323118,-78.883169
-15904=40.311595,-78.840989
-15905=40.290655,-78.969943
-15906=40.379677,-78.955677
-15909=40.409742,-78.869741
-15920=40.474500,-79.047534
-15921=40.317338,-78.700860
-15922=40.517598,-78.876676
-15923=40.355220,-79.158504
-15924=40.103423,-78.762858
-15925=40.408519,-78.640702
-15926=40.026799,-78.816837
-15927=40.539999,-78.778646
-15928=40.239529,-78.918459
-15929=40.468336,-79.008099
-15930=40.294969,-78.719020
-15931=40.506250,-78.757723
-15934=40.279061,-78.803986
-15935=40.208131,-78.965027
-15936=40.160910,-78.892595
-15937=40.205334,-78.984724
-15938=40.418854,-78.611126
-15940=40.517034,-78.625208
-15942=40.398324,-78.811023
-15943=40.474082,-78.838748
-15944=40.363889,-79.079158
-15945=40.358484,-78.867092
-15946=40.372126,-78.633397
-15948=40.489959,-78.764649
-15949=40.396027,-79.116263
-15951=40.333187,-78.770688
-15952=40.303506,-78.776141
-15953=40.208407,-78.884900
-15954=40.424043,-78.998097
-15955=40.322865,-78.697386
-15956=40.350555,-78.795942
-15957=40.557963,-78.904882
-15958=40.387524,-78.730422
-15960=40.497162,-78.884165
-15961=40.471096,-78.941795
-15962=40.388180,-78.715039
-15963=40.227773,-78.759252
-16001=40.910025,-79.945191
-16002=40.815135,-79.855361
-16020=41.115334,-79.898582
-16022=41.054140,-79.733691
-16023=40.785483,-79.750313
-16024=40.742716,-80.038538
-16025=40.939175,-79.760661
-16027=40.820154,-80.019183
-16028=40.951294,-79.635593
-16029=40.879153,-79.846169
-16030=41.136395,-79.796967
-16033=40.783867,-80.051114
-16034=40.862126,-79.733735
-16035=41.108993,-80.014526
-16036=41.134894,-79.666595
-16037=40.842611,-80.133751
-16038=41.164486,-79.953346
-16040=41.093880,-79.840799
-16041=41.005338,-79.714928
-16045=40.852814,-79.916711
-16046=40.702748,-80.023906
-16048=41.053202,-79.818427
-16049=41.094067,-79.671823
-16050=41.044024,-79.761496
-16051=40.944894,-80.138143
-16052=40.899396,-80.061581
-16053=40.811868,-79.983143
-16054=41.153536,-79.663009
-16055=40.716859,-79.749717
-16056=40.728403,-79.841812
-16057=41.034074,-80.060300
-16059=40.707082,-79.927088
-16061=41.005109,-79.884740
-16063=40.762315,-80.122900
-16066=40.709967,-80.105642
-16101=40.983987,-80.290240
-16102=40.960237,-80.424525
-16105=41.057828,-80.340829
-16110=41.505249,-80.380762
-16111=41.520379,-80.282617
-16112=40.960467,-80.498397
-16113=41.280826,-80.424148
-16114=41.402848,-80.183931
-16115=40.796494,-80.463523
-16116=41.044195,-80.449588
-16117=40.871835,-80.256207
-16120=40.885259,-80.479162
-16121=41.211216,-80.497214
-16123=40.821932,-80.196513
-16124=41.336170,-80.276062
-16125=41.406356,-80.372825
-16127=41.173009,-80.072998
-16130=41.444632,-80.222949
-16131=41.550522,-80.378230
-16132=41.005848,-80.505148
-16133=41.267757,-80.114460
-16134=41.524682,-80.478678
-16136=40.834932,-80.323771
-16137=41.231230,-80.238647
-16140=41.095323,-80.514030
-16141=40.868089,-80.398468
-16142=41.145427,-80.333134
-16143=41.104030,-80.444939
-16145=41.380196,-80.078627
-16146=41.234113,-80.499672
-16148=41.228489,-80.417588
-16150=41.285145,-80.453250
-16151=41.443900,-80.206786
-16153=41.322240,-80.086586
-16154=41.325898,-80.420113
-16155=41.067732,-80.510731
-16156=41.088767,-80.216432
-16157=40.888212,-80.333383
-16159=41.153413,-80.475263
-16160=40.930554,-80.356607
-16161=41.197090,-80.495844
-16201=40.805185,-79.469413
-16210=40.895514,-79.514280
-16211=40.794443,-79.202555
-16212=40.754359,-79.583923
-16213=41.125669,-79.557671
-16214=41.203549,-79.360502
-16217=41.331192,-79.173680
-16218=40.933435,-79.590649
-16222=40.873676,-79.257028
-16223=40.975988,-79.363954
-16224=41.065080,-79.294860
-16226=40.711646,-79.486425
-16228=40.760813,-79.535765
-16229=40.717124,-79.642747
-16230=41.020482,-79.283246
-16232=41.213586,-79.551242
-16233=41.361240,-79.271067
-16235=41.322665,-79.352329
-16236=40.787838,-79.522661
-16238=40.787837,-79.520848
-16239=41.496972,-79.137779
-16240=41.036013,-79.225000
-16242=41.009881,-79.365745
-16244=40.792176,-79.276658
-16245=41.006720,-79.298366
-16246=40.791720,-79.182154
-16248=41.034002,-79.502977
-16249=40.761947,-79.312139
-16250=40.768512,-79.232968
-16253=40.951168,-79.342756
-16254=41.253396,-79.461389
-16255=41.128813,-79.466757
-16256=40.855267,-79.134458
-16258=41.236936,-79.278339
-16259=40.925711,-79.451859
-16260=41.396463,-79.230763
-16262=40.839032,-79.652206
-16263=40.801717,-79.336609
-16301=41.453285,-79.622427
-16311=41.462167,-80.042383
-16312=41.932135,-79.303214
-16313=41.733693,-79.122409
-16314=41.520676,-80.077072
-16316=41.601773,-80.303633
-16317=41.532556,-79.853702
-16319=41.324204,-79.623458
-16321=41.571060,-79.399591
-16322=41.598847,-79.373564
-16323=41.411920,-79.828317
-16326=41.376158,-79.431740
-16327=41.637082,-79.959566
-16328=41.653227,-79.725540
-16329=41.798643,-79.258874
-16331=41.293731,-79.558676
-16332=41.356717,-79.369545
-16333=41.705210,-78.928483
-16334=41.290554,-79.449351
-16335=41.630953,-80.156056
-16340=41.802378,-79.417669
-16341=41.566080,-79.549355
-16342=41.321886,-79.941498
-16343=41.425982,-79.752686
-16344=41.470393,-79.684546
-16345=41.944404,-79.082916
-16346=41.378502,-79.671970
-16347=41.659517,-79.069365
-16350=41.956923,-79.334404
-16351=41.675353,-79.370344
-16352=41.767268,-79.038364
-16353=41.495354,-79.373115
-16354=41.613725,-79.706464
-16360=41.684105,-79.890935
-16361=41.384113,-79.342388
-16362=41.450497,-79.965179
-16364=41.351416,-79.527305
-16365=41.840224,-79.157385
-16370=41.574811,-79.460024
-16371=41.869947,-79.326122
-16372=41.200007,-79.872631
-16373=41.208469,-79.698409
-16374=41.263498,-79.815085
-16401=41.878476,-80.405160
-16402=41.961661,-79.469604
-16403=41.792998,-80.014121
-16404=41.727006,-79.789388
-16405=41.946042,-79.532738
-16406=41.749512,-80.362140
-16407=41.922164,-79.664251
-16410=41.922751,-80.308509
-16411=41.977956,-80.447072
-16412=41.884930,-80.170371
-16415=42.037520,-80.230320
-16416=41.825729,-79.472696
-16417=41.971081,-80.315029
-16420=41.696300,-79.547259
-16421=42.171262,-79.931855
-16422=41.667548,-80.310188
-16423=42.021099,-80.340132
-16424=41.661408,-80.438957
-16426=41.979331,-80.142080
-16427=41.877373,-79.967907
-16428=42.171464,-79.831488
-16433=41.737079,-80.140914
-16434=41.796720,-79.668697
-16435=41.817035,-80.385386
-16436=41.838888,-79.510429
-16438=41.892299,-79.845314
-16440=41.782549,-80.126018
-16441=41.958490,-79.983551
-16442=42.038485,-79.825705
-16443=41.939645,-80.484235
-16444=41.871224,-80.120756
-16501=42.120958,-80.089762
-16502=42.110702,-80.101358
-16503=42.127036,-80.061065
-16504=42.109077,-80.049033
-16505=42.131338,-80.138303
-16506=42.062345,-80.151707
-16507=42.139070,-80.083681
-16508=42.096812,-80.094030
-16509=42.060022,-80.038141
-16510=42.108991,-79.954821
-16511=42.166262,-79.990170
-16546=42.104924,-80.053445
-16563=42.117333,-79.986486
-16601=40.555264,-78.370416
-16602=40.512662,-78.373929
-16611=40.579889,-78.115672
-16613=40.548031,-78.537565
-16616=40.767620,-78.440215
-16617=40.607302,-78.322633
-16619=40.660938,-78.446887
-16620=40.840687,-78.351837
-16621=40.232247,-78.125214
-16622=40.328640,-78.066403
-16623=40.271681,-78.052188
-16624=40.570425,-78.600475
-16625=40.282550,-78.504283
-16627=40.757881,-78.497822
-16630=40.456176,-78.576441
-16631=40.272766,-78.345602
-16633=40.157386,-78.234926
-16634=40.210954,-78.173077
-16635=40.410853,-78.499413
-16636=40.600253,-78.502014
-16637=40.341102,-78.467242
-16638=40.336605,-78.203622
-16639=40.695498,-78.448137
-16640=40.705732,-78.574484
-16641=40.489794,-78.484985
-16645=40.799177,-78.499092
-16646=40.689706,-78.726650
-16647=40.400594,-78.103809
-16648=40.434448,-78.331000
-16650=40.112053,-78.291955
-16651=40.851464,-78.380424
-16652=40.516022,-77.950096
-16655=40.227952,-78.502963
-16656=40.807227,-78.555986
-16657=40.324864,-78.180282
-16659=40.161554,-78.389730
-16661=40.831088,-78.460928
-16662=40.312725,-78.295450
-16664=40.180753,-78.423648
-16665=40.388705,-78.434236
-16666=40.893849,-78.323205
-16667=40.178298,-78.531649
-16668=40.653367,-78.622319
-16669=40.655953,-77.906687
-16670=40.262378,-78.507952
-16671=40.787552,-78.398242
-16672=40.185501,-78.237228
-16673=40.312437,-78.391483
-16674=40.189417,-78.088273
-16677=40.811839,-78.243597
-16678=40.222577,-78.238232
-16679=40.155253,-78.194384
-16680=40.743203,-78.377591
-16682=40.266061,-78.457822
-16683=40.663867,-78.065558
-16685=40.287492,-78.082637
-16686=40.667866,-78.250746
-16689=40.129985,-78.128990
-16691=40.077493,-78.145934
-16692=40.750827,-78.710802
-16693=40.485362,-78.220805
-16694=40.155301,-78.148799
-16695=40.204653,-78.336929
-16699=40.447211,-78.560505
-16701=41.918454,-78.750607
-16720=41.603181,-78.009756
-16724=41.731993,-78.369239
-16725=41.908177,-78.655324
-16726=41.814590,-78.572463
-16727=41.981005,-78.530040
-16728=41.565765,-78.924183
-16729=41.962550,-78.477022
-16730=41.817813,-78.422813
-16731=41.951380,-78.360377
-16732=41.857255,-78.617264
-16733=41.700701,-78.571785
-16734=41.617607,-78.840217
-16735=41.636099,-78.813409
-16738=41.806868,-78.732143
-16740=41.740956,-78.681499
-16743=41.767638,-78.232975
-16744=41.867085,-78.567081
-16745=41.922273,-78.480505
-16746=41.793875,-78.122491
-16748=41.947228,-78.144487
-16749=41.778911,-78.451517
-16750=41.888978,-78.291593
-16801=40.778883,-77.841371
-16802=40.802605,-77.860639
-16803=40.801651,-77.899659
-16820=40.895701,-77.392432
-16821=40.964394,-78.200900
-16822=41.148300,-77.697030
-16823=40.939052,-77.772647
-16825=40.986770,-78.316466
-16826=41.053921,-77.580410
-16827=40.768521,-77.772704
-16828=40.812101,-77.680555
-16829=41.084949,-77.887495
-16830=41.078677,-78.428662
-16832=40.843945,-77.481590
-16833=40.944007,-78.572360
-16834=41.051824,-78.087077
-16835=40.907430,-77.877404
-16836=41.159132,-78.273274
-16837=40.945440,-78.474451
-16838=41.006463,-78.651726
-16839=41.003854,-78.110537
-16840=40.924257,-78.203080
-16841=41.044614,-77.698187
-16843=41.002756,-78.465645
-16844=40.909068,-77.932075
-16845=41.121742,-78.010569
-16847=40.999285,-78.165498
-16848=41.011313,-77.533288
-16849=40.961123,-78.115673
-16851=40.821867,-77.787183
-16852=40.937031,-77.518663
-16853=40.939209,-77.787059
-16854=40.898021,-77.473100
-16855=40.996457,-78.375664
-16858=41.003352,-78.209655
-16859=41.040743,-78.023238
-16860=40.937991,-78.179764
-16861=40.859044,-78.520499
-16863=40.907850,-78.474641
-16865=40.712063,-77.996064
-16866=40.829699,-78.181491
-16868=40.731973,-77.880499
-16870=40.800878,-78.061907
-16871=41.186615,-78.025727
-16872=40.967475,-77.358425
-16874=40.984823,-77.976008
-16875=40.840940,-77.587219
-16876=40.965638,-78.287646
-16877=40.738693,-78.060782
-16878=40.948941,-78.323571
-16879=40.970952,-78.151495
-16881=41.026780,-78.320437
-16882=40.912451,-77.323471
-16901=41.721291,-77.337283
-16911=41.658676,-77.129189
-16912=41.678438,-77.043261
-16914=41.854230,-76.783664
-16915=41.775448,-77.970918
-16917=41.721702,-77.056756
-16920=41.973653,-77.280816
-16921=41.724126,-77.556256
-16922=41.680661,-77.710708
-16923=41.950555,-77.870564
-16925=41.948556,-76.783808
-16926=41.727085,-76.701713
-16927=41.958712,-77.658709
-16928=41.953384,-77.434478
-16929=41.963406,-77.134908
-16930=41.583782,-77.138826
-16932=41.779128,-76.939472
-16933=41.819424,-77.062502
-16935=41.877494,-77.304722
-16936=41.951125,-76.967113
-16937=41.967896,-77.710941
-16938=41.591145,-77.370357
-16939=41.663649,-77.025818
-16940=41.985396,-77.238250
-16941=41.988299,-77.758044
-16942=41.962541,-77.352208
-16943=41.830161,-77.612813
-16946=41.908728,-77.137724
-16947=41.759502,-76.804051
-16948=41.854715,-77.759215
-16950=41.900000,-77.531963
-17002=40.502470,-77.848424
-17003=40.362358,-76.569599
-17004=40.601046,-77.730437
-17005=40.602849,-76.809700
-17006=40.286783,-77.546042
-17007=40.125795,-77.118771
-17009=40.636112,-77.565287
-17010=40.277992,-76.582841
-17011=40.234830,-76.928846
-17013=40.242686,-77.197284
-17015=40.177826,-77.229536
-17016=40.277475,-76.402287
-17017=40.637788,-76.882189
-17018=40.422061,-76.826124
-17019=40.094022,-77.022058
-17020=40.414171,-77.041503
-17021=40.330526,-77.668192
-17022=40.167052,-76.608920
-17023=40.584266,-76.816261
-17024=40.406934,-77.306825
-17025=40.294093,-76.974481
-17026=40.458441,-76.431397
-17027=40.155998,-76.995461
-17028=40.396460,-76.659197
-17029=40.558017,-77.616997
-17030=40.609235,-76.725609
-17032=40.491831,-76.832555
-17033=40.271823,-76.637562
-17034=40.208610,-76.785533
-17035=40.403786,-77.581315
-17036=40.268235,-76.712106
-17037=40.434076,-77.422021
-17038=40.467915,-76.556026
-17039=40.292709,-76.240707
-17040=40.322798,-77.304095
-17041=40.216634,-76.539605
-17042=40.294817,-76.424823
-17043=40.247611,-76.900134
-17044=40.577237,-77.594258
-17045=40.597093,-77.000928
-17046=40.381858,-76.429627
-17047=40.376501,-77.428287
-17048=40.576792,-76.761348
-17049=40.653038,-77.256087
-17050=40.247990,-77.027370
-17051=40.459518,-77.775772
-17052=40.276913,-77.986345
-17053=40.325040,-77.026474
-17055=40.182918,-77.004597
-17056=40.537288,-77.354260
-17057=40.193562,-76.724573
-17058=40.505381,-77.552470
-17059=40.589162,-77.391073
-17060=40.469261,-77.893956
-17061=40.566703,-76.909090
-17062=40.546773,-77.187656
-17063=40.761026,-77.484947
-17064=40.242231,-76.476111
-17065=40.110211,-77.189087
-17066=40.352563,-77.869227
-17067=40.390423,-76.315048
-17068=40.410582,-77.178299
-17069=40.453987,-76.970039
-17070=40.202401,-76.865678
-17071=40.298415,-77.601934
-17072=40.233731,-77.081728
-17073=40.302838,-76.255161
-17074=40.478901,-77.148585
-17075=40.393866,-77.835285
-17076=40.616186,-77.311762
-17077=40.403009,-76.535937
-17078=40.287452,-76.581080
-17080=40.640678,-76.803100
-17081=40.201020,-77.283453
-17082=40.495071,-77.448376
-17083=40.277602,-76.437595
-17084=40.675647,-77.626511
-17086=40.690624,-77.122007
-17087=40.435744,-76.280818
-17088=40.300678,-76.294224
-17090=40.318207,-77.181043
-17093=40.307209,-76.930571
-17094=40.581247,-77.198154
-17097=40.580098,-76.677428
-17098=40.588957,-76.632327
-17099=40.632242,-77.576438
-17101=40.258655,-76.894376
-17102=40.270370,-76.905279
-17103=40.275965,-76.866333
-17104=40.254506,-76.862176
-17109=40.289953,-76.824314
-17110=40.315813,-76.886436
-17111=40.267831,-76.787370
-17112=40.373101,-76.776511
-17113=40.225984,-76.827994
-17120=40.265186,-76.882805
-17201=39.961056,-77.656165
-17202=39.875125,-77.609075
-17210=40.205232,-77.658997
-17211=39.754149,-78.400966
-17212=39.812634,-78.064287
-17213=40.244192,-77.771225
-17214=39.748111,-77.471320
-17215=40.078237,-77.892945
-17217=40.238625,-77.721567
-17219=40.249798,-77.683214
-17220=40.191575,-77.738979
-17221=40.068125,-77.816484
-17222=39.896406,-77.493941
-17223=40.086500,-77.942752
-17224=39.967941,-77.897478
-17225=39.783506,-77.762870
-17228=39.987100,-78.093362
-17229=40.084004,-78.010139
-17233=39.975605,-77.987160
-17235=39.857193,-77.698053
-17236=39.800187,-77.947400
-17237=39.833929,-77.543724
-17238=39.858110,-78.130940
-17239=40.131797,-77.836770
-17240=40.150871,-77.579686
-17241=40.176528,-77.408448
-17243=40.277527,-77.819941
-17244=40.086764,-77.658616
-17246=40.054394,-77.660811
-17247=39.798776,-77.579352
-17249=40.241379,-77.899459
-17250=39.737141,-77.524295
-17251=40.131802,-77.685552
-17252=39.912329,-77.826910
-17253=40.213308,-78.006905
-17254=39.970229,-77.590358
-17255=40.161252,-77.862515
-17256=39.782914,-77.677308
-17257=40.046821,-77.493064
-17260=40.296045,-77.893701
-17261=39.860912,-77.508159
-17262=40.144998,-77.740213
-17263=39.727222,-77.717855
-17264=40.179925,-77.993741
-17265=40.027596,-77.781222
-17266=40.088568,-77.412933
-17267=39.807955,-78.239657
-17268=39.774913,-77.575622
-17270=39.854730,-77.797808
-17271=40.097754,-77.803092
-17272=39.769525,-77.621818
-17301=39.895240,-76.978971
-17302=39.817260,-76.413680
-17304=39.977245,-77.232742
-17306=39.980581,-77.249397
-17307=39.947758,-77.326819
-17309=39.871334,-76.450129
-17311=39.816546,-76.842472
-17313=39.884013,-76.659984
-17314=39.755506,-76.326301
-17315=40.026604,-76.864065
-17316=39.965466,-77.007959
-17317=39.970710,-76.523188
-17318=40.022258,-76.723017
-17319=40.160489,-76.793975
-17320=39.770718,-77.388758
-17321=39.749675,-76.444345
-17322=39.855910,-76.532733
-17324=40.030395,-77.236846
-17325=39.826258,-77.227606
-17327=39.779512,-76.753257
-17329=39.761844,-76.851120
-17331=39.789690,-76.977984
-17339=40.134731,-76.885292
-17340=39.755229,-77.116784
-17343=39.869254,-77.334798
-17344=39.805688,-77.019219
-17345=40.078089,-76.747503
-17347=40.057548,-76.688144
-17349=39.744992,-76.647408
-17350=39.890088,-77.079399
-17352=39.761201,-76.499847
-17353=39.883086,-77.371736
-17355=39.759868,-76.696019
-17356=39.896585,-76.582259
-17360=39.854372,-76.750390
-17361=39.765516,-76.677065
-17362=39.847679,-76.868704
-17363=39.768623,-76.586385
-17364=39.929395,-76.899326
-17365=40.060733,-76.933860
-17366=39.932790,-76.556703
-17368=39.983858,-76.518703
-17370=40.121440,-76.778402
-17371=39.902704,-76.787960
-17372=40.001467,-77.106153
-17401=39.959462,-76.733457
-17402=39.958485,-76.658660
-17403=39.923228,-76.712794
-17404=40.002612,-76.773548
-17406=40.014709,-76.640873
-17407=39.883773,-76.712102
-17408=39.928859,-76.799350
-17501=40.156459,-76.204040
-17502=40.100904,-76.660147
-17505=40.063501,-76.192436
-17507=40.198042,-76.016233
-17508=40.124758,-76.218766
-17509=39.912055,-76.036499
-17512=40.040236,-76.486336
-17516=39.941460,-76.371359
-17517=40.244751,-76.132881
-17518=39.808930,-76.253014
-17519=40.141438,-76.023423
-17520=40.097518,-76.349193
-17522=40.173688,-76.170494
-17527=40.008881,-75.991296
-17529=40.041933,-76.097142
-17532=39.858156,-76.288008
-17535=39.982036,-76.022866
-17536=39.848034,-76.073774
-17538=40.082629,-76.414548
-17540=40.097543,-76.189894
-17543=40.181032,-76.295380
-17545=40.178669,-76.434370
-17547=40.068435,-76.586630
-17550=40.075890,-76.583396
-17551=39.982202,-76.371419
-17552=40.108352,-76.510920
-17554=40.040303,-76.424176
-17555=40.122377,-75.959392
-17557=40.099850,-76.072742
-17560=39.912675,-76.227681
-17562=39.970438,-76.092067
-17563=39.760748,-76.193306
-17565=39.897702,-76.331027
-17566=39.867186,-76.147513
-17569=40.271433,-76.096577
-17570=40.129942,-76.568851
-17572=39.974435,-76.119357
-17576=40.037195,-76.196760
-17578=40.226099,-76.159806
-17579=39.960406,-76.180752
-17581=40.160511,-76.049590
-17582=39.993140,-76.469176
-17584=39.954448,-76.259838
-17601=40.074241,-76.314914
-17602=40.014623,-76.246351
-17603=40.030839,-76.330432
-17606=40.111670,-76.303907
-17701=41.345045,-76.857256
-17702=41.183488,-77.077271
-17721=41.183625,-77.318405
-17723=41.435023,-77.471376
-17724=41.642528,-76.805113
-17727=41.510687,-77.496446
-17728=41.334774,-77.078567
-17729=41.511239,-77.736103
-17730=41.110449,-76.878410
-17731=41.429410,-76.578672
-17737=41.299271,-76.685780
-17739=41.388170,-77.418683
-17740=41.249445,-77.269646
-17742=41.238532,-76.602270
-17744=41.240970,-77.153274
-17745=41.285072,-77.471166
-17747=41.032578,-77.331757
-17748=41.150402,-77.352978
-17749=41.072241,-76.818889
-17750=41.057866,-77.482253
-17751=41.153528,-77.544790
-17752=41.180139,-76.930251
-17754=41.311612,-76.889212
-17756=41.208002,-76.739819
-17758=41.360147,-76.535534
-17760=41.413576,-77.657357
-17762=41.284231,-76.700157
-17763=41.507375,-76.976180
-17764=41.334750,-77.813637
-17765=41.565735,-76.973451
-17767=41.083874,-77.463161
-17768=41.558836,-76.755985
-17771=41.437285,-77.035516
-17772=41.125057,-76.713033
-17774=41.281191,-76.533013
-17776=41.414649,-77.292840
-17777=41.106517,-76.821696
-17778=41.284918,-77.983927
-17779=41.207259,-77.376901
-17801=40.834724,-76.755008
-17810=41.111360,-77.031372
-17812=40.740534,-77.227910
-17813=40.780401,-77.172083
-17814=41.273237,-76.363142
-17815=41.020038,-76.420092
-17820=40.895639,-76.403739
-17821=40.990142,-76.644205
-17822=40.968016,-76.605142
-17823=40.745495,-76.776193
-17824=40.852378,-76.505339
-17827=40.752860,-76.968032
-17829=40.900549,-77.155804
-17830=40.686064,-76.805170
-17832=40.805945,-76.459020
-17834=40.780210,-76.466875
-17835=40.878987,-77.204312
-17836=40.714342,-76.606462
-17837=40.974977,-76.945150
-17840=40.772092,-76.433120
-17841=40.724869,-77.352556
-17842=40.802950,-77.040151
-17844=40.973975,-77.085405
-17845=40.884370,-77.211570
-17846=41.141745,-76.517122
-17847=41.007962,-76.811043
-17850=40.965596,-76.857448
-17851=40.803118,-76.434300
-17853=40.694729,-77.006700
-17855=40.890386,-76.966684
-17856=41.065358,-76.947364
-17857=40.932136,-76.772972
-17859=41.116755,-76.398537
-17860=40.866964,-76.611035
-17861=40.773224,-77.082304
-17862=40.860506,-77.056395
-17864=40.704727,-76.905819
-17865=40.990180,-76.786769
-17866=40.802252,-76.547547
-17867=40.714115,-76.688597
-17868=40.957721,-76.633968
-17870=40.817323,-76.888636
-17872=40.753396,-76.697714
-17876=40.858108,-76.825754
-17878=41.176018,-76.323488
-17880=40.892209,-77.121755
-17881=40.782906,-76.670014
-17884=41.055983,-76.669463
-17885=40.866345,-77.314017
-17886=41.016709,-76.875204
-17887=41.129175,-76.932899
-17888=40.806775,-76.378479
-17889=40.877739,-76.921282
-17901=40.683828,-76.277542
-17920=40.819642,-76.326909
-17921=40.751575,-76.360586
-17922=40.582492,-76.110646
-17923=40.632873,-76.319914
-17925=40.754944,-76.072700
-17929=40.630703,-76.194039
-17930=40.708664,-76.115313
-17931=40.786491,-76.214575
-17933=40.604485,-76.243195
-17934=40.796439,-76.211333
-17935=40.796140,-76.279682
-17936=40.750116,-76.339930
-17938=40.653070,-76.517083
-17941=40.685722,-76.609184
-17943=40.756660,-76.387810
-17944=40.672540,-76.279256
-17945=40.785350,-76.375457
-17946=40.810364,-76.256372
-17948=40.845385,-76.117468
-17949=40.793926,-76.242345
-17951=40.678556,-76.245246
-17952=40.755438,-76.058552
-17953=40.751902,-76.120218
-17954=40.690420,-76.259688
-17957=40.591824,-76.518212
-17959=40.732018,-76.150078
-17960=40.697241,-75.947044
-17961=40.649699,-76.060949
-17963=40.561577,-76.382017
-17964=40.702954,-76.514515
-17965=40.698615,-76.165281
-17967=40.856253,-76.216265
-17968=40.638679,-76.612300
-17970=40.720206,-76.191949
-17972=40.592165,-76.205790
-17974=40.695700,-76.236267
-17976=40.819867,-76.210606
-17978=40.625448,-76.614963
-17979=40.561567,-76.199716
-17980=40.518691,-76.644544
-17981=40.634118,-76.389387
-17982=40.785932,-76.021309
-17983=40.642622,-76.547166
-17985=40.912303,-76.216648
-18011=40.477974,-75.646129
-18013=40.848762,-75.177293
-18014=40.764431,-75.409221
-18015=40.585869,-75.367239
-18016=40.632130,-75.392847
-18017=40.659951,-75.387306
-18018=40.627594,-75.395584
-18020=40.672385,-75.327459
-18030=40.802263,-75.663720
-18031=40.552084,-75.648674
-18032=40.656191,-75.467788
-18034=40.546353,-75.415278
-18035=40.745323,-75.538544
-18036=40.509151,-75.385940
-18037=40.683103,-75.548010
-18038=40.794881,-75.486087
-18040=40.746007,-75.225665
-18041=40.420460,-75.509926
-18042=40.654176,-75.223124
-18045=40.693450,-75.272796
-18046=40.548009,-75.560346
-18049=40.515732,-75.489290
-18051=40.595607,-75.666926
-18052=40.657428,-75.504255
-18053=40.719230,-75.704117
-18054=40.352369,-75.438736
-18055=40.591583,-75.304353
-18056=40.450942,-75.550389
-18058=40.888739,-75.494290
-18059=40.723506,-75.543081
-18062=40.503935,-75.585180
-18063=40.782599,-75.167151
-18064=40.757008,-75.315964
-18066=40.664462,-75.740100
-18067=40.715038,-75.474675
-18068=40.484829,-75.520041
-18069=40.625289,-75.615125
-18070=40.434866,-75.535617
-18071=40.834214,-75.555278
-18072=40.844140,-75.259135
-18073=40.386499,-75.474430
-18074=40.316737,-75.515686
-18076=40.374803,-75.480790
-18077=40.570065,-75.237114
-18078=40.673304,-75.620717
-18079=40.743873,-75.658519
-18080=40.735856,-75.635308
-18081=40.563695,-75.281582
-18083=40.754952,-75.267086
-18085=40.741232,-75.254887
-18086=40.736807,-75.547930
-18087=40.556830,-75.593654
-18088=40.765692,-75.557509
-18091=40.831388,-75.319795
-18092=40.469697,-75.513140
-18101=40.602658,-75.469236
-18102=40.608473,-75.476275
-18103=40.570308,-75.488926
-18104=40.611658,-75.546853
-18105=40.601416,-75.493938
-18106=40.564710,-75.568758
-18109=40.636938,-75.439893
-18195=40.584272,-75.624789
-18201=40.949038,-75.955638
-18202=40.954433,-76.045987
-18210=41.004434,-75.576536
-18211=40.744080,-75.830406
-18212=40.775253,-75.709569
-18214=40.800254,-76.084215
-18216=40.941496,-75.892858
-18218=40.819740,-75.916102
-18219=40.990787,-76.057456
-18220=40.840529,-76.060382
-18221=41.001778,-75.917333
-18222=41.035227,-76.003468
-18223=40.982353,-75.950287
-18224=41.026275,-75.873263
-18225=40.981311,-75.971311
-18229=40.931094,-75.673779
-18230=40.921083,-75.934528
-18231=40.904304,-76.007984
-18232=40.833033,-75.884397
-18234=40.992594,-75.964350
-18235=40.829796,-75.697860
-18237=40.886531,-75.979617
-18239=40.989337,-75.988272
-18240=40.864677,-75.872265
-18241=40.951524,-76.130802
-18242=40.911388,-76.124322
-18244=40.822445,-75.670561
-18245=40.853214,-76.033518
-18246=40.957215,-76.195185
-18248=40.901160,-76.093068
-18249=40.987794,-76.116117
-18250=40.824963,-75.846201
-18251=41.008051,-76.077381
-18252=40.766995,-75.974097
-18254=40.915913,-75.965651
-18255=40.933491,-75.829695
-18256=40.940886,-76.146755
-18301=41.042703,-75.175581
-18302=41.096550,-75.111107
-18321=41.025750,-75.283310
-18322=40.918523,-75.393279
-18323=41.196579,-75.273469
-18324=41.158143,-75.000689
-18325=41.204726,-75.225359
-18326=41.167313,-75.253020
-18327=40.967874,-75.133837
-18328=41.228522,-74.973952
-18330=40.968776,-75.449217
-18331=40.909936,-75.443831
-18332=41.094747,-75.261341
-18333=40.906085,-75.490084
-18334=41.054954,-75.431784
-18335=41.068138,-75.103546
-18336=41.374716,-74.742761
-18337=41.329110,-74.871787
-18340=41.417762,-74.765897
-18342=41.170609,-75.273444
-18343=40.898529,-75.110092
-18344=41.122901,-75.343996
-18346=41.142754,-75.421191
-18347=41.138882,-75.560229
-18349=41.101253,-75.366514
-18350=41.123825,-75.466143
-18351=40.922720,-75.099334
-18352=41.006831,-75.356087
-18353=40.895340,-75.357668
-18354=40.922603,-75.322095
-18355=41.076955,-75.362899
-18356=41.011079,-75.118103
-18357=41.231653,-75.210713
-18360=40.967382,-75.287972
-18370=41.092408,-75.339537
-18371=41.149966,-75.044755
-18372=41.044022,-75.336350
-18403=41.509701,-75.535045
-18405=41.599606,-75.103881
-18407=41.591754,-75.534793
-18411=41.454492,-75.744541
-18413=41.648128,-75.589342
-18414=41.541072,-75.741068
-18415=41.743530,-75.124268
-18417=41.809701,-75.201116
-18419=41.585933,-75.792369
-18420=41.602006,-75.710133
-18421=41.664210,-75.492886
-18424=41.230478,-75.524965
-18425=41.438445,-75.043141
-18426=41.325507,-75.239061
-18427=41.404977,-75.406897
-18428=41.404304,-75.118065
-18430=41.756453,-75.472457
-18431=41.616510,-75.257698
-18433=41.573307,-75.581330
-18434=41.453952,-75.542985
-18435=41.455609,-74.983238
-18436=41.442799,-75.393450
-18437=41.871969,-75.316504
-18438=41.439159,-75.256488
-18439=41.825503,-75.348966
-18441=41.656053,-75.613942
-18443=41.662927,-75.102094
-18444=41.329074,-75.552770
-18445=41.297908,-75.359362
-18446=41.656175,-75.759143
-18447=41.513448,-75.607166
-18451=41.396998,-75.217955
-18452=41.483628,-75.590282
-18453=41.758495,-75.370789
-18454=41.827285,-75.426144
-18455=41.893001,-75.359193
-18456=41.612796,-75.340433
-18457=41.472094,-75.049165
-18458=41.395754,-74.919254
-18459=41.504102,-75.428839
-18460=41.249894,-75.313008
-18461=41.929003,-75.327674
-18462=41.914344,-75.409089
-18463=41.357556,-75.396934
-18464=41.403012,-75.176950
-18465=41.831299,-75.516849
-18466=41.196442,-75.394233
-18469=41.703684,-75.130492
-18470=41.724706,-75.535516
-18471=41.529093,-75.691180
-18472=41.583410,-75.396687
-18473=41.522059,-75.217172
-18503=41.411107,-75.667470
-18504=41.425521,-75.699867
-18505=41.386202,-75.651527
-18507=41.359038,-75.681823
-18508=41.454947,-75.657937
-18509=41.430836,-75.642907
-18510=41.407379,-75.636613
-18512=41.426229,-75.601387
-18517=41.394641,-75.713636
-18518=41.375058,-75.739557
-18519=41.461939,-75.630719
-18602=41.185952,-75.753988
-18603=41.082035,-76.258139
-18610=41.069339,-75.549469
-18612=41.346088,-75.986380
-18614=41.524947,-76.496996
-18615=41.461702,-75.857203
-18616=41.504830,-76.636058
-18617=41.170540,-76.077533
-18618=41.365177,-76.041404
-18619=41.461696,-76.717816
-18621=41.248601,-76.098546
-18622=41.201232,-76.273515
-18623=41.664801,-76.151984
-18624=41.060686,-75.647064
-18625=41.513387,-75.848822
-18626=41.398286,-76.523876
-18628=41.430143,-76.313808
-18629=41.517604,-76.141339
-18630=41.662144,-76.023636
-18631=41.029907,-76.304374
-18632=41.459360,-76.377495
-18634=41.185512,-76.022619
-18635=41.029240,-76.201347
-18636=41.391410,-76.113651
-18640=41.298230,-75.738725
-18641=41.340533,-75.725729
-18642=41.356348,-75.773181
-18643=41.370822,-75.840422
-18644=41.327930,-75.882372
-18651=41.254040,-75.959845
-18653=41.393316,-75.823130
-18655=41.187724,-76.203214
-18656=41.332524,-76.185452
-18657=41.522510,-75.959485
-18660=41.097733,-76.062014
-18661=41.076379,-75.740724
-18701=41.243648,-75.885029
-18702=41.230476,-75.757441
-18704=41.262553,-75.914636
-18705=41.271834,-75.842735
-18706=41.203289,-75.914803
-18707=41.135750,-75.933499
-18708=41.295848,-75.963463
-18709=41.285469,-75.896388
-18801=41.826389,-75.939711
-18810=41.933295,-76.507130
-18812=41.973202,-75.964751
-18814=41.784063,-76.607272
-18816=41.757157,-75.915633
-18817=41.872722,-76.631611
-18818=41.911258,-76.044011
-18821=41.989756,-75.722751
-18822=41.970399,-75.794149
-18823=41.778326,-75.690124
-18824=41.697366,-75.787183
-18825=41.807883,-75.607728
-18826=41.745746,-75.748893
-18828=41.806724,-76.096165
-18829=41.837644,-76.173693
-18830=41.959087,-76.114452
-18831=41.894223,-76.598118
-18832=41.678278,-76.568742
-18833=41.597169,-76.483621
-18834=41.830967,-75.720934
-18837=41.915054,-76.302838
-18840=41.971552,-76.534965
-18842=41.749704,-75.623443
-18843=41.794457,-75.899586
-18844=41.690970,-75.905239
-18845=41.787369,-76.182163
-18846=41.621411,-76.229986
-18847=41.928820,-75.579031
-18848=41.751057,-76.454741
-18850=41.854257,-76.462384
-18851=41.933902,-76.176463
-18853=41.721414,-76.276925
-18854=41.790684,-76.355747
-18901=40.306267,-75.147144
-18902=40.352134,-75.095680
-18912=40.323952,-75.056407
-18913=40.379390,-75.060010
-18914=40.288978,-75.209591
-18915=40.272101,-75.256830
-18917=40.376920,-75.205948
-18920=40.497718,-75.084034
-18923=40.359341,-75.173921
-18925=40.288811,-75.058039
-18929=40.255513,-75.080152
-18930=40.521074,-75.218673
-18932=40.291585,-75.250486
-18935=40.437016,-75.403473
-18936=40.224050,-75.230959
-18938=40.351048,-74.998049
-18940=40.261315,-74.937775
-18942=40.471159,-75.160467
-18944=40.389293,-75.234442
-18947=40.422899,-75.117839
-18950=40.445233,-75.074441
-18951=40.452964,-75.348855
-18954=40.225413,-74.992957
-18955=40.476640,-75.313694
-18960=40.366237,-75.325845
-18962=40.346684,-75.271138
-18964=40.303470,-75.337889
-18966=40.188468,-75.009898
-18969=40.326304,-75.368422
-18970=40.412007,-75.381170
-18972=40.527320,-75.124666
-18974=40.217062,-75.072803
-18976=40.248821,-75.143522
-18977=40.286862,-74.882113
-18980=40.269965,-75.017182
-19001=40.125912,-75.125442
-19002=40.187195,-75.206891
-19003=40.001553,-75.298929
-19004=40.009753,-75.231508
-19006=40.150436,-75.033899
-19007=40.113179,-74.857650
-19008=39.972605,-75.360258
-19009=40.137805,-75.064242
-19010=40.023624,-75.329727
-19012=40.059767,-75.105880
-19013=39.848281,-75.377981
-19014=39.864907,-75.432958
-19015=39.868633,-75.392945
-19017=39.892371,-75.460139
-19018=39.923075,-75.298595
-19020=40.100591,-74.938934
-19021=40.089651,-74.892183
-19022=39.861440,-75.337022
-19023=39.917140,-75.267387
-19025=40.146444,-75.161987
-19026=39.950318,-75.304042
-19027=40.073118,-75.124431
-19029=39.868372,-75.292374
-19030=40.180468,-74.837263
-19031=40.109155,-75.217005
-19032=39.891296,-75.278777
-19033=39.890882,-75.328434
-19034=40.134266,-75.204847
-19035=40.051349,-75.277642
-19036=39.903578,-75.293355
-19038=40.100418,-75.171761
-19040=40.176879,-75.105595
-19041=40.007406,-75.315837
-19043=39.900283,-75.308850
-19044=40.186067,-75.152867
-19046=40.101404,-75.105519
-19047=40.180089,-74.911873
-19050=39.937537,-75.263665
-19053=40.153918,-74.974991
-19054=40.173024,-74.818822
-19055=40.150307,-74.839218
-19056=40.149339,-74.885815
-19057=40.140815,-74.854040
-19060=39.849996,-75.493690
-19061=39.828830,-75.435069
-19063=39.920460,-75.416182
-19064=39.933156,-75.340813
-19066=40.002583,-75.249064
-19067=40.206218,-74.818440
-19070=39.906248,-75.324733
-19072=40.023891,-75.257741
-19073=39.983259,-75.429241
-19074=39.885990,-75.295756
-19075=40.113880,-75.185031
-19076=39.886097,-75.307370
-19078=39.874378,-75.322125
-19079=39.898781,-75.267070
-19081=39.898048,-75.347159
-19082=39.960411,-75.270393
-19083=39.977025,-75.312066
-19085=40.036973,-75.349913
-19086=39.890631,-75.370032
-19087=40.061872,-75.402461
-19090=40.157452,-75.124753
-19094=39.874881,-75.346642
-19095=40.086002,-75.151408
-19096=39.997882,-75.274178
-19102=39.952783,-75.165586
-19103=39.952896,-75.174298
-19104=39.958520,-75.198857
-19106=39.948629,-75.142789
-19107=39.951735,-75.158654
-19109=39.949652,-75.163654
-19111=40.060612,-75.080176
-19112=39.889877,-75.169141
-19113=39.870698,-75.247123
-19114=40.069399,-75.000162
-19115=40.090698,-75.042868
-19116=40.115569,-75.013276
-19118=40.073872,-75.211217
-19119=40.053348,-75.191112
-19120=40.034147,-75.119198
-19121=39.981980,-75.179120
-19122=39.977746,-75.145899
-19123=39.964489,-75.145802
-19124=40.017119,-75.092814
-19125=39.976249,-75.125105
-19126=40.055390,-75.137560
-19127=40.028146,-75.227549
-19128=40.048483,-75.227934
-19129=40.013014,-75.185402
-19130=39.967935,-75.176073
-19131=39.990184,-75.217795
-19132=39.996262,-75.170855
-19133=39.993092,-75.141671
-19134=39.989604,-75.109091
-19135=40.022110,-75.048534
-19136=40.039406,-75.018555
-19137=39.993096,-75.071978
-19138=40.056002,-75.159048
-19139=39.961352,-75.229334
-19140=40.012177,-75.145495
-19141=40.037574,-75.145697
-19142=39.921752,-75.233279
-19143=39.942579,-75.225905
-19144=40.033858,-75.174075
-19145=39.909857,-75.198265
-19146=39.939496,-75.184146
-19147=39.935327,-75.152489
-19148=39.911612,-75.151475
-19149=40.037722,-75.065768
-19150=40.072495,-75.171824
-19151=39.979570,-75.257036
-19152=40.060946,-75.046985
-19153=39.893446,-75.229648
-19154=40.096483,-74.983217
-19301=40.040279,-75.480341
-19310=39.935090,-75.972822
-19311=39.821095,-75.771347
-19312=40.031291,-75.454948
-19316=40.054082,-75.833825
-19317=39.860800,-75.599381
-19319=39.924558,-75.520943
-19320=39.963092,-75.832030
-19330=39.868292,-75.913785
-19333=40.041872,-75.423597
-19335=40.022618,-75.721218
-19341=40.039941,-75.640626
-19342=39.904122,-75.499422
-19343=40.100822,-75.754835
-19344=40.083577,-75.881364
-19345=40.029437,-75.565339
-19348=39.870280,-75.712913
-19350=39.760276,-75.796353
-19352=39.775919,-75.889657
-19355=40.046452,-75.532998
-19358=39.963913,-75.805064
-19362=39.750743,-76.070383
-19363=39.790560,-75.968479
-19365=39.966371,-75.925129
-19367=39.962992,-75.884023
-19372=39.998397,-75.758457
-19373=39.901133,-75.533485
-19374=39.824747,-75.759748
-19375=39.900459,-75.740472
-19380=39.987186,-75.603156
-19382=39.927665,-75.613166
-19383=39.951594,-75.601627
-19390=39.836097,-75.842359
-19401=40.130180,-75.331629
-19403=40.148673,-75.375506
-19405=40.103552,-75.341022
-19406=40.093268,-75.383637
-19422=40.156810,-75.279393
-19425=40.101778,-75.651066
-19426=40.191299,-75.437052
-19428=40.080337,-75.300461
-19435=40.327484,-75.569174
-19436=40.201504,-75.246987
-19437=40.182431,-75.258603
-19438=40.268899,-75.390732
-19440=40.285998,-75.291149
-19442=40.129517,-75.583145
-19444=40.087755,-75.253168
-19446=40.232327,-75.303915
-19453=40.140568,-75.497917
-19454=40.223335,-75.243047
-19456=40.133903,-75.461771
-19457=40.206378,-75.590117
-19460=40.126827,-75.530448
-19462=40.115345,-75.281990
-19464=40.258928,-75.615861
-19465=40.190390,-75.684564
-19468=40.207638,-75.532067
-19472=40.336934,-75.573783
-19473=40.256195,-75.482380
-19474=40.223528,-75.404036
-19475=40.172275,-75.600158
-19477=40.183315,-75.231457
-19492=40.285460,-75.491912
-19501=40.244477,-76.064701
-19503=40.406546,-75.571951
-19504=40.416217,-75.588554
-19505=40.379158,-75.620505
-19506=40.452958,-76.127973
-19507=40.505230,-76.270129
-19508=40.261940,-75.833687
-19510=40.447528,-75.877656
-19511=40.485917,-75.743230
-19512=40.348327,-75.680555
-19518=40.270211,-75.752511
-19519=40.320604,-75.734884
-19520=40.163510,-75.793465
-19522=40.447368,-75.820496
-19523=40.201158,-75.849720
-19525=40.305649,-75.585013
-19526=40.547158,-75.996570
-19529=40.631309,-75.864614
-19530=40.539070,-75.781445
-19533=40.425103,-75.992623
-19534=40.574006,-75.881067
-19535=40.339979,-75.804036
-19536=40.480578,-75.758948
-19538=40.547528,-75.702562
-19539=40.496322,-75.683540
-19540=40.236271,-75.966664
-19541=40.485961,-76.030235
-19542=40.261203,-75.767196
-19543=40.175716,-75.893777
-19544=40.416876,-76.296566
-19545=40.341513,-75.624078
-19547=40.380048,-75.768603
-19549=40.584518,-76.020034
-19550=40.454939,-76.249432
-19551=40.361788,-76.137320
-19554=40.512925,-76.103746
-19555=40.494382,-75.953919
-19559=40.495223,-76.182401
-19560=40.406182,-75.893801
-19562=40.505379,-75.702653
-19564=40.518731,-75.878310
-19565=40.342381,-76.087880
-19567=40.388389,-76.209785
-19601=40.355294,-75.940014
-19602=40.328740,-75.914976
-19604=40.356825,-75.910242
-19605=40.397910,-75.943197
-19606=40.338614,-75.858157
-19607=40.291483,-75.944791
-19608=40.310798,-76.034772
-19609=40.328313,-75.997285
-19610=40.341402,-75.974839
-19611=40.324674,-75.942857
-19701=39.583171,-75.700899
-19702=39.618200,-75.729724
-19703=39.801513,-75.453853
-19706=39.573245,-75.596191
-19707=39.785685,-75.683640
-19709=39.494582,-75.675004
-19710=39.795167,-75.588092
-19711=39.713598,-75.741073
-19713=39.670784,-75.712298
-19716=39.689560,-75.758391
-19717=39.678464,-75.752273
-19720=39.646922,-75.604852
-19730=39.463828,-75.646933
-19731=39.523585,-75.587574
-19732=39.783897,-75.570042
-19733=39.555826,-75.651088
-19734=39.381644,-75.653322
-19735=39.803172,-75.599718
-19736=39.802479,-75.675916
-19801=39.727715,-75.541154
-19802=39.756608,-75.529079
-19803=39.800665,-75.542415
-19804=39.716862,-75.617677
-19805=39.743799,-75.593842
-19806=39.763305,-75.564142
-19807=39.798555,-75.614420
-19808=39.737615,-75.667057
-19809=39.757786,-75.500953
-19810=39.818780,-75.506400
-19901=39.181546,-75.473517
-19902=39.125248,-75.481818
-19904=39.171293,-75.587529
-19930=38.547335,-75.064161
-19931=38.573968,-75.623043
-19933=38.728660,-75.619669
-19934=39.084727,-75.627355
-19936=39.219138,-75.584133
-19938=39.260878,-75.707605
-19939=38.566739,-75.210612
-19940=38.477562,-75.564931
-19941=38.793658,-75.426062
-19943=39.004436,-75.606986
-19944=38.478535,-75.058146
-19945=38.505064,-75.228872
-19946=39.034802,-75.449597
-19947=38.666490,-75.398202
-19950=38.818451,-75.596743
-19951=38.685257,-75.255154
-19952=38.921424,-75.628425
-19953=39.152487,-75.694133
-19954=38.897010,-75.520457
-19955=39.225855,-75.668556
-19956=38.547715,-75.538158
-19958=38.728722,-75.168469
-19960=38.850913,-75.408716
-19962=39.068862,-75.488122
-19963=38.943253,-75.362567
-19964=39.089325,-75.720500
-19966=38.579422,-75.277196
-19967=38.538709,-75.122435
-19968=38.773925,-75.286885
-19970=38.556507,-75.100246
-19971=38.686005,-75.086681
-19973=38.638896,-75.615899
-19975=38.468315,-75.166975
-19977=39.298946,-75.546122
-19979=39.048818,-75.572566
-20001=38.910353,-77.017739
-20002=38.905026,-76.983607
-20003=38.881904,-76.990935
-20004=38.894885,-77.028638
-20005=38.904674,-77.031578
-20006=38.898609,-77.041461
-20007=38.914363,-77.079339
-20008=38.936238,-77.059981
-20009=38.919144,-77.037381
-20010=38.933366,-77.030312
-20011=38.952514,-77.022991
-20012=38.976873,-77.032609
-20015=38.966889,-77.058323
-20016=38.936930,-77.090014
-20017=38.938188,-76.992126
-20018=38.926576,-76.974446
-20019=38.891412,-76.943575
-20020=38.860413,-76.978933
-20024=38.876122,-77.025374
-20032=38.833719,-77.006591
-20036=38.907017,-77.041569
-20037=38.898889,-77.055456
-20045=38.896731,-77.030798
-20052=38.900126,-77.046981
-20053=38.884122,-77.011224
-20057=38.909120,-77.075735
-20064=38.936354,-76.999167
-20105=38.953060,-77.602780
-20106=38.699106,-78.002376
-20109=38.793641,-77.531024
-20110=38.747172,-77.484536
-20111=38.748968,-77.427873
-20112=38.664571,-77.429326
-20115=38.809947,-77.911841
-20117=38.998822,-77.733937
-20118=38.968339,-77.737005
-20119=38.610391,-77.621615
-20120=38.856401,-77.476371
-20121=38.811059,-77.463237
-20124=38.781332,-77.391333
-20129=39.172018,-77.601254
-20130=39.039434,-77.943893
-20132=39.167210,-77.720570
-20135=39.086474,-77.887230
-20136=38.739468,-77.555635
-20137=38.806579,-77.722437
-20139=38.655682,-77.694159
-20141=39.112390,-77.790704
-20143=38.858949,-77.564996
-20144=38.923018,-77.946976
-20147=39.041947,-77.478130
-20148=38.996109,-77.520849
-20151=38.896497,-77.445125
-20152=38.919145,-77.502426
-20155=38.810114,-77.617789
-20158=39.139631,-77.658140
-20164=39.013299,-77.395067
-20165=39.057940,-77.392694
-20166=38.986273,-77.455778
-20169=38.879166,-77.645449
-20170=38.979842,-77.379750
-20171=38.923848,-77.396501
-20175=39.064437,-77.603993
-20176=39.184706,-77.544111
-20180=39.268562,-77.637664
-20181=38.689126,-77.569610
-20184=39.000671,-77.883754
-20186=38.698141,-77.851425
-20187=38.721847,-77.748187
-20190=38.959322,-77.339298
-20191=38.934645,-77.351702
-20194=38.981059,-77.340775
-20197=39.195210,-77.628010
-20198=38.884182,-77.744644
-20202=38.887071,-77.021010
-20204=38.885559,-77.014429
-20228=38.886412,-77.030282
-20230=38.893794,-77.032798
-20240=38.894456,-77.042605
-20245=38.893340,-77.044460
-20260=38.883669,-77.025035
-20307=38.975685,-77.030133
-20317=38.934841,-77.014387
-20319=38.864838,-77.017003
-20373=38.858625,-77.007865
-20390=38.879019,-76.993695
-20405=38.896377,-77.042588
-20418=38.892800,-77.047764
-20427=38.902057,-77.047558
-20506=38.897071,-77.038728
-20510=38.892780,-77.006890
-20520=38.894759,-77.048407
-20535=38.894467,-77.024844
-20540=38.887929,-77.004713
-20551=38.892802,-77.045800
-20553=38.886946,-77.022968
-20560=38.888232,-77.026003
-20565=38.890630,-77.019211
-20566=38.895570,-77.055128
-20593=38.866713,-77.010187
-20601=38.613372,-76.851612
-20602=38.583248,-76.894703
-20603=38.630390,-76.976583
-20606=38.263046,-76.737309
-20607=38.672666,-77.018549
-20608=38.582405,-76.700998
-20609=38.270012,-76.767747
-20611=38.457813,-76.975118
-20612=38.505060,-76.677210
-20613=38.671168,-76.805304
-20615=38.411433,-76.548803
-20616=38.661976,-77.098485
-20617=38.543860,-76.852511
-20618=38.286438,-76.783071
-20619=38.292364,-76.527888
-20620=38.233918,-76.528932
-20621=38.325991,-76.800810
-20622=38.417472,-76.878176
-20623=38.741615,-76.842456
-20624=38.338072,-76.733500
-20625=38.262223,-76.847270
-20626=38.231241,-76.771138
-20628=38.153100,-76.340023
-20629=38.336555,-76.450390
-20630=38.164277,-76.475774
-20632=38.432799,-76.957993
-20634=38.269412,-76.506885
-20636=38.352141,-76.567187
-20637=38.525121,-76.756089
-20639=38.601192,-76.605480
-20640=38.527006,-77.202568
-20645=38.294223,-76.911085
-20646=38.524275,-77.000660
-20650=38.268654,-76.633157
-20653=38.236310,-76.432886
-20657=38.379757,-76.442883
-20658=38.560527,-77.160594
-20659=38.418673,-76.732449
-20660=38.370216,-76.706633
-20662=38.428507,-77.205325
-20664=38.354485,-76.925395
-20667=38.215237,-76.447756
-20670=38.285279,-76.415708
-20674=38.134797,-76.503548
-20675=38.580932,-77.022463
-20676=38.493221,-76.541280
-20677=38.495257,-77.036716
-20678=38.522820,-76.601350
-20680=38.109130,-76.385886
-20684=38.136143,-76.410164
-20685=38.434389,-76.528672
-20686=38.178004,-76.429574
-20687=38.063698,-76.339689
-20688=38.327236,-76.464295
-20689=38.662952,-76.579390
-20690=38.158147,-76.534882
-20692=38.174519,-76.496938
-20693=38.457068,-77.089581
-20695=38.591492,-76.970784
-20701=39.125563,-76.785436
-20705=39.049423,-76.900362
-20706=38.965880,-76.851092
-20707=39.099155,-76.879864
-20708=39.057389,-76.825834
-20710=38.942368,-76.925910
-20711=38.801059,-76.645107
-20712=38.942361,-76.964578
-20714=38.724359,-76.557178
-20715=38.989393,-76.741331
-20716=38.926428,-76.715028
-20720=38.982780,-76.785824
-20721=38.915222,-76.785129
-20722=38.934557,-76.950596
-20723=39.137569,-76.867942
-20724=39.101075,-76.804005
-20732=38.655140,-76.542571
-20733=38.805653,-76.532229
-20735=38.750917,-76.902669
-20736=38.689075,-76.627765
-20737=38.964265,-76.913538
-20740=39.002745,-76.931721
-20742=38.989619,-76.945695
-20743=38.884230,-76.893317
-20744=38.758348,-76.983786
-20745=38.806935,-76.995672
-20746=38.836403,-76.918265
-20747=38.854996,-76.883307
-20748=38.814868,-76.933447
-20751=38.794437,-76.561199
-20754=38.730593,-76.647249
-20755=39.107783,-76.747196
-20758=38.733371,-76.593148
-20759=39.153977,-76.931172
-20762=38.809803,-76.869158
-20763=39.135260,-76.820437
-20764=38.824090,-76.506297
-20765=38.841934,-76.544044
-20769=38.996698,-76.818647
-20770=39.002985,-76.879165
-20772=38.780274,-76.766990
-20774=38.874532,-76.774182
-20776=38.872325,-76.572429
-20777=39.174938,-76.969085
-20778=38.828682,-76.572609
-20779=38.763600,-76.573388
-20781=38.952860,-76.946290
-20782=38.965751,-76.966463
-20783=38.997067,-76.966783
-20784=38.950549,-76.891720
-20785=38.918291,-76.881948
-20794=39.151475,-76.794703
-20812=38.967041,-77.143881
-20814=39.004989,-77.101490
-20815=38.983386,-77.079346
-20816=38.956950,-77.120006
-20817=38.997272,-77.151816
-20818=38.973445,-77.162497
-20832=39.150347,-77.078240
-20833=39.207175,-77.054670
-20837=39.116506,-77.407115
-20838=39.218101,-77.390831
-20839=39.188307,-77.434971
-20841=39.191853,-77.327521
-20842=39.199879,-77.415267
-20850=39.091338,-77.182294
-20851=39.079082,-77.121858
-20852=39.051991,-77.121931
-20853=39.101713,-77.094562
-20854=39.032772,-77.220830
-20855=39.133184,-77.134383
-20860=39.142366,-77.025412
-20861=39.149774,-76.998236
-20862=39.181230,-77.018806
-20866=39.109275,-76.933973
-20868=39.126395,-76.969321
-20871=39.261341,-77.282547
-20872=39.294465,-77.216125
-20874=39.133056,-77.301828
-20876=39.208384,-77.237152
-20877=39.140749,-77.192060
-20878=39.112821,-77.250504
-20879=39.168416,-77.171506
-20880=39.139726,-77.173557
-20882=39.237721,-77.156789
-20886=39.188551,-77.205091
-20895=39.027040,-77.077609
-20896=39.035382,-77.092454
-20899=39.143737,-77.216132
-20901=39.021495,-77.009779
-20902=39.045249,-77.039264
-20903=39.021433,-76.980774
-20904=39.066616,-76.980935
-20905=39.109705,-76.988329
-20906=39.087321,-77.057159
-20910=39.002837,-77.036701
-20912=38.981606,-77.001161
-21001=39.503056,-76.202096
-21005=39.488112,-76.144520
-21009=39.466882,-76.295230
-21010=39.390932,-76.292629
-21012=39.046525,-76.495552
-21013=39.511495,-76.490799
-21014=39.536084,-76.352184
-21015=39.544176,-76.292469
-21017=39.474767,-76.234420
-21028=39.565965,-76.249527
-21029=39.213616,-76.959448
-21030=39.492412,-76.674443
-21031=39.487208,-76.658010
-21032=39.028343,-76.604145
-21034=39.640713,-76.223031
-21035=38.938300,-76.626588
-21036=39.234644,-77.006738
-21037=38.919253,-76.543492
-21040=39.436496,-76.289965
-21042=39.277181,-76.894602
-21043=39.255836,-76.801491
-21044=39.205869,-76.879110
-21045=39.206042,-76.828234
-21046=39.173116,-76.842028
-21047=39.521385,-76.438784
-21048=39.488125,-76.915075
-21050=39.585343,-76.392164
-21051=39.472691,-76.455841
-21052=39.205576,-76.447067
-21053=39.696782,-76.714679
-21054=39.040252,-76.685822
-21056=39.072941,-76.428558
-21057=39.448749,-76.512474
-21060=39.166542,-76.582924
-21061=39.161942,-76.629444
-21071=39.481657,-76.810955
-21074=39.621612,-76.839847
-21075=39.204096,-76.749360
-21076=39.168512,-76.716355
-21077=39.156134,-76.697686
-21078=39.559229,-76.141248
-21082=39.478136,-76.473523
-21084=39.613561,-76.466441
-21085=39.445883,-76.357007
-21087=39.449314,-76.413240
-21090=39.208481,-76.672517
-21093=39.439140,-76.640950
-21102=39.682834,-76.850538
-21104=39.346904,-76.912757
-21105=39.713946,-76.651281
-21108=39.090315,-76.621257
-21111=39.575537,-76.589692
-21113=39.053565,-76.716578
-21114=39.009641,-76.684220
-21117=39.427563,-76.777976
-21120=39.646204,-76.674854
-21122=39.120838,-76.494821
-21128=39.409428,-76.447460
-21130=39.477321,-76.194181
-21131=39.503655,-76.589870
-21132=39.694699,-76.440405
-21133=39.373505,-76.815284
-21136=39.483784,-76.794208
-21140=38.949202,-76.582524
-21144=39.120914,-76.677313
-21146=39.079136,-76.558699
-21152=39.541052,-76.679892
-21153=39.418247,-76.700870
-21154=39.657449,-76.360475
-21155=39.573619,-76.806079
-21156=39.437208,-76.396486
-21157=39.548569,-76.983558
-21158=39.653737,-77.035092
-21160=39.700248,-76.306544
-21161=39.659903,-76.565060
-21162=39.390116,-76.405582
-21163=39.337527,-76.848247
-21201=39.294832,-76.622229
-21202=39.296526,-76.607016
-21204=39.402268,-76.632295
-21205=39.302290,-76.564482
-21206=39.338428,-76.538877
-21207=39.324167,-76.719484
-21208=39.381174,-76.721002
-21209=39.373191,-76.670003
-21210=39.359156,-76.632685
-21211=39.329817,-76.639408
-21212=39.368561,-76.614898
-21213=39.315031,-76.577429
-21214=39.351793,-76.564400
-21215=39.345241,-76.683566
-21216=39.310595,-76.671717
-21217=39.308473,-76.639154
-21218=39.330107,-76.601451
-21219=39.227459,-76.443305
-21220=39.347280,-76.390080
-21221=39.289205,-76.434770
-21222=39.264840,-76.492566
-21223=39.282830,-76.654000
-21224=39.274860,-76.542833
-21225=39.226117,-76.615735
-21226=39.208888,-76.562926
-21227=39.239970,-76.679450
-21228=39.272857,-76.747741
-21229=39.284242,-76.691404
-21230=39.266130,-76.623803
-21231=39.287200,-76.591953
-21234=39.393417,-76.534228
-21236=39.388421,-76.483550
-21237=39.341939,-76.495443
-21239=39.367099,-76.589171
-21240=39.174280,-76.671514
-21244=39.334931,-76.776589
-21250=39.255611,-76.711179
-21251=39.344707,-76.581242
-21252=39.393786,-76.607803
-21286=39.411836,-76.573235
-21401=38.987750,-76.552800
-21402=38.986683,-76.472905
-21403=38.942123,-76.489628
-21405=39.027510,-76.556716
-21409=39.018435,-76.442533
-21502=39.643695,-78.755141
-21520=39.624742,-79.301480
-21521=39.551371,-79.041477
-21522=39.610243,-79.227753
-21523=39.481331,-79.078510
-21524=39.707625,-78.801406
-21529=39.703942,-78.767171
-21530=39.679640,-78.546122
-21531=39.643087,-79.428015
-21532=39.649077,-78.984732
-21536=39.656960,-79.165566
-21538=39.409932,-79.224290
-21539=39.560372,-78.949676
-21540=39.478153,-79.062454
-21541=39.542071,-79.380229
-21542=39.596095,-78.949987
-21543=39.656421,-78.960649
-21545=39.704066,-78.854521
-21550=39.389381,-79.390745
-21555=39.575204,-78.562497
-21557=39.536233,-78.922790
-21561=39.491571,-79.194401
-21562=39.513963,-79.040514
-21601=38.793650,-76.081602
-21607=39.132714,-75.854207
-21610=39.367115,-76.072497
-21612=38.751513,-76.275426
-21613=38.502789,-76.078875
-21617=39.049357,-76.044545
-21619=38.943493,-76.266164
-21620=39.200177,-76.097912
-21622=38.414465,-76.159253
-21623=39.124035,-75.966748
-21624=38.844673,-76.269891
-21625=38.873205,-75.996027
-21626=38.341359,-76.098361
-21627=38.233029,-76.046342
-21628=39.233174,-75.922050
-21629=38.858672,-75.825079
-21631=38.582391,-75.938981
-21632=38.731398,-75.772428
-21634=38.292164,-76.199153
-21635=39.334791,-75.846625
-21636=39.025292,-75.802806
-21638=38.940201,-76.207604
-21639=38.958728,-75.782496
-21640=39.068141,-75.820948
-21641=38.917919,-75.940213
-21643=38.645582,-75.869896
-21644=39.112428,-75.873521
-21645=39.315819,-75.956165
-21647=38.812385,-76.283079
-21648=38.485356,-76.239330
-21649=39.132893,-75.770684
-21650=39.314376,-75.817023
-21651=39.256085,-75.851523
-21652=38.703188,-76.274135
-21653=38.750464,-76.179733
-21654=38.688756,-76.127833
-21655=38.744968,-75.912768
-21657=38.968814,-75.986140
-21658=38.945549,-76.143240
-21659=38.589881,-75.767427
-21660=38.955750,-75.890107
-21661=39.096121,-76.219488
-21662=38.710588,-76.208346
-21663=38.788286,-76.228656
-21664=38.607081,-75.944694
-21665=38.751800,-76.332597
-21666=38.940139,-76.335790
-21667=39.350621,-76.042108
-21668=39.191191,-75.853000
-21669=38.460081,-76.285161
-21671=38.695574,-76.335128
-21672=38.271699,-76.052704
-21673=38.642285,-76.043492
-21675=38.288979,-76.089600
-21676=38.773206,-76.353189
-21677=38.472182,-76.173844
-21678=39.313279,-76.112300
-21679=38.920478,-76.094115
-21701=39.443557,-77.332934
-21702=39.479136,-77.442989
-21703=39.367031,-77.473482
-21704=39.354881,-77.375900
-21705=39.408860,-77.410008
-21710=39.307996,-77.432009
-21711=39.668396,-78.019569
-21713=39.529683,-77.675671
-21714=39.419295,-77.504419
-21716=39.314453,-77.620019
-21717=39.338668,-77.437040
-21718=39.393497,-77.627788
-21719=39.707956,-77.494228
-21722=39.662050,-77.919911
-21723=39.329107,-77.002611
-21727=39.688620,-77.329249
-21733=39.549303,-77.758487
-21734=39.607817,-77.707835
-21737=39.248260,-77.027125
-21738=39.279844,-77.026706
-21740=39.631901,-77.743885
-21742=39.678219,-77.652720
-21746=39.565064,-77.711467
-21750=39.662262,-78.235975
-21754=39.332115,-77.316212
-21755=39.359655,-77.568128
-21756=39.462722,-77.704030
-21757=39.593861,-77.258139
-21758=39.353205,-77.656813
-21762=39.480830,-77.247089
-21766=39.670471,-78.387890
-21767=39.697132,-77.747473
-21769=39.442449,-77.568921
-21770=39.350189,-77.256240
-21771=39.394652,-77.163984
-21773=39.542655,-77.551543
-21774=39.410304,-77.268909
-21776=39.517975,-77.099688
-21777=39.271310,-77.519376
-21778=39.615806,-77.328421
-21779=39.426819,-77.651635
-21780=39.677417,-77.465582
-21781=39.571073,-77.759648
-21782=39.456826,-77.762369
-21783=39.651841,-77.553573
-21784=39.401084,-76.973736
-21787=39.677630,-77.172591
-21788=39.589979,-77.413861
-21790=39.260865,-77.484901
-21791=39.532345,-77.189197
-21793=39.493618,-77.344122
-21794=39.298422,-76.966129
-21795=39.580609,-77.823698
-21797=39.328183,-77.071411
-21798=39.536366,-77.302027
-21801=38.382300,-75.639576
-21802=38.344771,-75.582696
-21804=38.314082,-75.532106
-21810=38.299722,-75.707114
-21811=38.318877,-75.216741
-21813=38.424217,-75.155464
-21814=38.293076,-75.899296
-21817=37.981025,-75.836069
-21821=38.164595,-75.916660
-21822=38.280813,-75.636084
-21824=37.980774,-76.036546
-21826=38.316950,-75.626463
-21829=38.097659,-75.371456
-21830=38.402166,-75.737946
-21835=38.531887,-75.948459
-21837=38.454582,-75.766301
-21838=38.017906,-75.737920
-21840=38.248736,-75.900009
-21841=38.246944,-75.295806
-21842=38.350536,-75.128880
-21849=38.377348,-75.462118
-21850=38.361731,-75.397078
-21851=38.079869,-75.542444
-21853=38.203540,-75.720887
-21856=38.330729,-75.794885
-21861=38.536434,-75.727324
-21862=38.398054,-75.226142
-21863=38.187913,-75.399041
-21864=38.031572,-75.405812
-21865=38.287338,-75.841179
-21866=37.967128,-76.021365
-21867=38.109665,-75.793678
-21869=38.438227,-75.896268
-21871=38.093785,-75.735688
-21872=38.415130,-75.299260
-21874=38.391283,-75.351965
-21875=38.439999,-75.544695
-21890=38.157317,-75.704343
-21901=39.585407,-75.958955
-21902=39.551971,-76.063147
-21903=39.573438,-76.039062
-21904=39.615477,-76.067960
-21911=39.695244,-76.032660
-21912=39.419414,-75.818631
-21913=39.404599,-75.867957
-21914=39.572339,-75.978486
-21915=39.496147,-75.848168
-21916=39.641288,-75.861562
-21917=39.671632,-76.097397
-21918=39.678193,-76.175883
-21919=39.418555,-75.933718
-21920=39.657498,-75.828326
-21921=39.627145,-75.859891
-21930=39.375660,-75.887993
-22003=38.829817,-77.215318
-22015=38.787814,-77.278973
-22025=38.597728,-77.339458
-22026=38.560041,-77.296214
-22027=38.894844,-77.223065
-22030=38.837138,-77.340466
-22031=38.858916,-77.260258
-22032=38.819046,-77.290301
-22033=38.875218,-77.384713
-22035=38.854782,-77.356919
-22039=38.755963,-77.314172
-22041=38.849321,-77.141472
-22042=38.865024,-77.197125
-22043=38.900858,-77.195880
-22044=38.862044,-77.154372
-22046=38.886334,-77.180975
-22060=38.693440,-77.153084
-22066=39.012386,-77.301969
-22079=38.674606,-77.209739
-22101=38.940203,-77.164882
-22102=38.950950,-77.229544
-22124=38.895480,-77.331607
-22125=38.681862,-77.262490
-22134=38.521689,-77.385058
-22150=38.772863,-77.186523
-22151=38.804093,-77.207804
-22152=38.774493,-77.232029
-22153=38.744969,-77.235640
-22172=38.565029,-77.370407
-22180=38.895439,-77.256133
-22181=38.906651,-77.293388
-22182=38.938421,-77.275520
-22185=38.874605,-77.304029
-22191=38.622914,-77.262938
-22192=38.683699,-77.314673
-22193=38.644195,-77.352000
-22201=38.886565,-77.095231
-22202=38.856868,-77.051492
-22203=38.873718,-77.117325
-22204=38.860791,-77.098972
-22205=38.883501,-77.139537
-22206=38.843917,-77.089408
-22207=38.906665,-77.124238
-22209=38.895023,-77.075464
-22211=38.880110,-77.070778
-22213=38.895078,-77.162521
-22214=38.868818,-77.073967
-22301=38.819895,-77.059577
-22302=38.827888,-77.083132
-22303=38.794380,-77.078837
-22304=38.813169,-77.112139
-22305=38.836463,-77.062098
-22306=38.755738,-77.097779
-22307=38.771982,-77.057273
-22308=38.733509,-77.061076
-22309=38.720336,-77.106155
-22310=38.783717,-77.122678
-22311=38.833620,-77.125462
-22312=38.815789,-77.154271
-22314=38.806853,-77.056374
-22315=38.758337,-77.151192
-22401=38.299272,-77.486658
-22405=38.313604,-77.403928
-22406=38.399767,-77.547310
-22407=38.283474,-77.575684
-22408=38.220271,-77.443653
-22427=38.093146,-77.271122
-22432=37.869524,-76.342347
-22433=38.367057,-77.859386
-22435=37.966791,-76.572106
-22436=38.084168,-77.117456
-22437=37.786258,-76.803286
-22438=38.041022,-76.980741
-22443=38.169514,-76.986805
-22448=38.336332,-77.028442
-22454=37.844032,-76.833646
-22460=37.869283,-76.607359
-22469=38.082265,-76.650303
-22473=37.887476,-76.420749
-22476=38.051098,-77.072623
-22480=37.662518,-76.412256
-22482=37.735631,-76.346113
-22485=38.277049,-77.162769
-22488=38.049455,-76.587481
-22503=37.750474,-76.515326
-22504=37.768923,-76.720680
-22508=38.313187,-77.798472
-22509=38.120518,-77.079949
-22511=37.991033,-76.504028
-22514=38.008001,-77.329380
-22520=38.121783,-76.803458
-22529=38.011551,-76.689548
-22530=37.897826,-76.293047
-22534=38.073124,-77.696093
-22535=38.149441,-77.167043
-22538=38.192209,-77.262187
-22539=37.860613,-76.286036
-22542=38.293517,-77.880863
-22546=37.942668,-77.448666
-22548=37.815803,-76.704785
-22551=38.169838,-77.700023
-22553=38.271202,-77.649295
-22554=38.427352,-77.367672
-22556=38.468925,-77.515244
-22560=37.915850,-76.961086
-22567=38.237857,-77.927575
-22572=37.965301,-76.771067
-22576=37.671046,-76.455700
-22578=37.636571,-76.356134
-22579=37.795598,-76.314938
-22580=38.109182,-77.445683
-22601=39.174468,-78.173406
-22602=39.144249,-78.284807
-22603=39.269354,-78.213270
-22610=38.824656,-78.279142
-22611=39.168882,-77.984613
-22620=39.068186,-78.032279
-22623=38.848927,-78.140663
-22624=39.269784,-78.091841
-22625=39.376805,-78.309326
-22627=38.757956,-78.144591
-22630=38.930914,-78.176480
-22637=39.256917,-78.352305
-22639=38.813779,-78.019064
-22640=38.811028,-78.140570
-22641=39.085460,-78.385706
-22642=38.947014,-78.012038
-22643=38.885381,-77.983512
-22644=38.949772,-78.486478
-22645=39.019181,-78.274706
-22646=39.072518,-78.050929
-22650=38.765084,-78.364632
-22652=38.840091,-78.431748
-22654=38.988131,-78.572400
-22655=39.068396,-78.209608
-22656=39.219255,-78.089345
-22657=39.002622,-78.376111
-22660=38.944124,-78.431478
-22663=39.052545,-78.112320
-22664=38.888919,-78.532453
-22701=38.438777,-77.996261
-22709=38.328731,-78.213737
-22711=38.467129,-78.274979
-22712=38.564008,-77.757247
-22713=38.560716,-78.118816
-22714=38.519671,-77.895419
-22715=38.413954,-78.184695
-22716=38.629990,-78.103016
-22718=38.477181,-77.827460
-22719=38.534889,-78.281252
-22720=38.474956,-77.644107
-22722=38.466262,-78.227068
-22723=38.334605,-78.380361
-22724=38.614645,-77.893981
-22726=38.398200,-77.816535
-22727=38.407594,-78.295292
-22728=38.596544,-77.675693
-22729=38.374194,-78.017758
-22730=38.374423,-78.158460
-22731=38.336564,-78.257331
-22732=38.314630,-78.189884
-22733=38.333260,-78.046145
-22734=38.526180,-77.794566
-22735=38.476865,-78.174258
-22736=38.398165,-77.704567
-22737=38.580891,-78.014120
-22738=38.293931,-78.280931
-22740=38.645690,-78.286953
-22741=38.426443,-77.868389
-22742=38.466332,-77.715072
-22743=38.539276,-78.380917
-22747=38.709056,-78.165674
-22749=38.619655,-78.180235
-22801=38.403645,-78.875125
-22802=38.494378,-78.863123
-22807=38.433970,-78.867870
-22810=38.827091,-78.796534
-22811=38.811567,-78.991571
-22812=38.378179,-79.027051
-22815=38.712509,-78.841209
-22820=38.704836,-79.019048
-22821=38.480717,-79.128767
-22824=38.836074,-78.631822
-22827=38.410719,-78.596414
-22830=38.667260,-78.975031
-22831=38.576502,-79.076242
-22832=38.454916,-78.759702
-22834=38.559256,-78.860046
-22835=38.669963,-78.453689
-22840=38.425391,-78.722862
-22841=38.341793,-78.892489
-22842=38.778048,-78.699661
-22843=38.387148,-79.142634
-22844=38.655841,-78.661856
-22845=38.786332,-78.816400
-22846=38.394090,-78.794326
-22847=38.730637,-78.717385
-22849=38.525324,-78.629627
-22850=38.559676,-78.924344
-22851=38.563053,-78.512907
-22853=38.651705,-78.758708
-22901=38.087705,-78.552744
-22902=37.910276,-78.522120
-22903=38.006972,-78.595060
-22904=38.031957,-78.524030
-22911=38.097005,-78.410147
-22920=37.968790,-78.805505
-22922=37.693701,-78.921765
-22923=38.189313,-78.316680
-22931=37.898904,-78.727442
-22932=38.147507,-78.696458
-22935=38.253952,-78.562665
-22936=38.159998,-78.499128
-22937=37.797229,-78.619207
-22938=37.865862,-78.794527
-22939=38.105779,-78.974031
-22940=38.159742,-78.556161
-22942=38.101443,-78.202129
-22943=38.040171,-78.778343
-22946=37.858585,-78.571382
-22947=38.043989,-78.324721
-22948=38.363165,-78.128968
-22949=37.789079,-78.883440
-22952=37.963562,-78.962741
-22958=37.892769,-78.894292
-22959=37.937275,-78.656588
-22960=38.219183,-78.072698
-22963=37.848104,-78.305112
-22964=37.711767,-78.975773
-22967=37.797305,-79.014082
-22968=38.240602,-78.400888
-22969=37.797482,-78.693383
-22971=37.745121,-78.793177
-22972=38.215776,-78.230285
-22973=38.335923,-78.479002
-22974=37.972582,-78.284455
-22976=37.812764,-79.056685
-22980=38.099858,-78.880549
-22989=38.288665,-78.131074
-23002=37.351060,-77.967875
-23004=37.688288,-78.399202
-23005=37.759696,-77.481870
-23009=37.820938,-77.181166
-23011=37.477354,-76.812450
-23015=37.929812,-77.626248
-23021=37.389948,-76.373522
-23022=37.731004,-78.263155
-23023=37.768949,-76.963741
-23024=37.927752,-77.779274
-23025=37.415160,-76.362416
-23027=37.646476,-78.130174
-23030=37.345958,-77.055314
-23032=37.655782,-76.669215
-23035=37.489338,-76.390866
-23038=37.753464,-78.148789
-23039=37.656565,-77.812465
-23040=37.501353,-78.251825
-23043=37.562083,-76.350276
-23045=37.425348,-76.268808
-23047=37.843384,-77.473917
-23050=37.497896,-76.426349
-23055=37.768214,-78.217011
-23056=37.356480,-76.362611
-23059=37.702234,-77.574005
-23060=37.656153,-77.537783
-23061=37.427731,-76.537584
-23062=37.262931,-76.507489
-23063=37.712553,-78.006130
-23064=37.496862,-76.299383
-23065=37.805959,-77.932428
-23066=37.495638,-76.286580
-23068=37.500686,-76.335139
-23069=37.771537,-77.322377
-23070=37.552199,-76.388985
-23071=37.545428,-76.448594
-23072=37.290444,-76.447790
-23075=37.557876,-77.313140
-23076=37.478376,-76.300342
-23079=37.716884,-76.674740
-23083=37.308039,-78.117329
-23084=37.884931,-78.115047
-23085=37.715457,-76.831989
-23086=37.668573,-77.054414
-23089=37.455774,-76.903521
-23091=37.650958,-76.799018
-23092=37.606769,-76.514748
-23093=38.004167,-78.040057
-23102=37.708120,-77.828653
-23103=37.648034,-77.723640
-23106=37.716107,-77.201511
-23108=37.644741,-76.734614
-23109=37.432747,-76.332511
-23110=37.582820,-76.771108
-23111=37.613551,-77.243019
-23112=37.433405,-77.662862
-23113=37.538846,-77.679628
-23114=37.482226,-77.659771
-23115=37.810985,-76.914535
-23116=37.675656,-77.336689
-23117=37.982002,-77.873977
-23119=37.448174,-76.277178
-23120=37.422080,-77.781370
-23123=37.651834,-78.301142
-23124=37.550924,-77.043956
-23125=37.327127,-76.280830
-23126=37.923461,-77.144316
-23128=37.436067,-76.432958
-23129=37.681630,-77.770420
-23130=37.387286,-76.259439
-23138=37.342651,-76.304324
-23139=37.545988,-77.936728
-23140=37.435013,-77.038311
-23141=37.528690,-77.156144
-23146=37.731490,-77.704529
-23148=37.846428,-77.054640
-23149=37.575671,-76.609283
-23150=37.501141,-77.252581
-23153=37.770805,-77.947259
-23156=37.521141,-76.706618
-23160=37.628163,-77.845916
-23161=37.715706,-76.935229
-23163=37.357691,-76.309595
-23168=37.395757,-76.825110
-23169=37.603463,-76.457221
-23173=37.577676,-77.536969
-23175=37.654869,-76.624357
-23176=37.572901,-76.414965
-23177=37.755009,-77.014493
-23180=37.702428,-76.615265
-23181=37.597491,-76.889060
-23185=37.228498,-76.718509
-23187=37.268856,-76.720941
-23188=37.342927,-76.763835
-23192=37.820363,-77.680814
-23219=37.539769,-77.435528
-23220=37.549349,-77.460606
-23221=37.553306,-77.493558
-23222=37.582968,-77.418907
-23223=37.557767,-77.378886
-23224=37.497603,-77.467429
-23225=37.518624,-77.512937
-23226=37.579912,-77.523347
-23227=37.611292,-77.438188
-23228=37.626617,-77.492834
-23229=37.586772,-77.574165
-23230=37.586639,-77.489122
-23231=37.442204,-77.314931
-23233=37.646431,-77.624235
-23234=37.451423,-77.470660
-23235=37.514570,-77.564758
-23236=37.475810,-77.585285
-23237=37.400878,-77.449054
-23238=37.595612,-77.647606
-23250=37.504783,-77.320899
-23294=37.631281,-77.542534
-23301=37.681259,-75.633464
-23302=37.865670,-75.520915
-23303=37.911355,-75.504972
-23304=36.996135,-76.572107
-23306=37.561070,-75.872026
-23307=37.432039,-75.871157
-23308=37.838625,-75.660124
-23310=37.258993,-75.963657
-23313=37.199730,-75.945635
-23314=36.958955,-76.524465
-23315=36.737390,-76.840511
-23316=37.303123,-75.992964
-23320=36.751734,-76.217637
-23321=36.800209,-76.420759
-23322=36.618712,-76.227046
-23323=36.696963,-76.379928
-23324=36.799721,-76.273447
-23325=36.814548,-76.238429
-23336=37.954605,-75.334522
-23337=37.930411,-75.486091
-23347=37.339243,-75.978024
-23350=37.512704,-75.862593
-23354=37.462861,-75.912247
-23356=37.990790,-75.382404
-23357=37.755646,-75.676028
-23358=37.652659,-75.867953
-23359=37.884947,-75.587982
-23389=37.660513,-75.834778
-23395=37.976304,-75.460590
-23398=37.516128,-75.944072
-23401=37.627492,-75.779396
-23405=37.411724,-75.926597
-23407=37.840957,-75.578774
-23408=37.452913,-75.843474
-23409=37.887621,-75.662907
-23410=37.637840,-75.736904
-23413=37.472853,-75.857763
-23414=37.806814,-75.579897
-23415=37.969553,-75.534703
-23416=37.933768,-75.563351
-23417=37.759052,-75.783815
-23418=37.666867,-75.687163
-23420=37.599070,-75.817482
-23421=37.764780,-75.611768
-23422=37.635389,-75.822735
-23423=37.525301,-75.714310
-23426=37.924102,-75.689541
-23427=37.938929,-75.720538
-23430=37.001261,-76.655932
-23432=36.876452,-76.553978
-23433=36.918069,-76.462863
-23434=36.703003,-76.592105
-23435=36.838420,-76.480264
-23436=36.893751,-76.506926
-23437=36.627115,-76.803197
-23438=36.581413,-76.696875
-23440=37.829055,-75.984124
-23441=37.710268,-75.699685
-23442=37.904756,-75.575437
-23451=36.865027,-76.006188
-23452=36.845756,-76.092807
-23453=36.783649,-76.071784
-23454=36.818062,-76.030835
-23455=36.892997,-76.147108
-23456=36.736543,-76.035469
-23457=36.612747,-76.024139
-23459=36.924881,-76.019230
-23460=36.807977,-76.028412
-23461=36.775402,-75.963250
-23462=36.837313,-76.150514
-23464=36.797023,-76.187680
-23480=37.618711,-75.690711
-23486=37.513168,-75.813784
-23487=36.847368,-76.725048
-23488=37.947613,-75.598459
-23502=36.860941,-76.204908
-23503=36.948787,-76.266459
-23504=36.857302,-76.265612
-23505=36.914369,-76.289405
-23507=36.864564,-76.303218
-23508=36.884888,-76.310270
-23509=36.882397,-76.263969
-23510=36.852122,-76.291682
-23511=36.912232,-76.325805
-23513=36.889916,-76.238602
-23517=36.869679,-76.292569
-23518=36.916118,-76.215375
-23523=36.832389,-76.272082
-23551=36.924048,-76.288625
-23601=37.038265,-76.480498
-23602=37.113416,-76.517947
-23603=37.191057,-76.564535
-23604=37.105026,-76.574793
-23605=37.017949,-76.435781
-23606=37.064408,-76.521638
-23607=36.971747,-76.424372
-23608=37.147813,-76.543036
-23651=37.007817,-76.304306
-23661=37.009301,-76.386177
-23662=37.133319,-76.353027
-23663=37.031007,-76.315244
-23664=37.078374,-76.289825
-23665=37.084498,-76.365498
-23666=37.058141,-76.406646
-23669=37.050277,-76.342873
-23690=37.222401,-76.517104
-23691=37.255253,-76.549418
-23692=37.192438,-76.463582
-23693=37.123066,-76.447129
-23696=37.189119,-76.421079
-23701=36.812940,-76.371005
-23702=36.799047,-76.328977
-23703=36.893339,-76.373292
-23704=36.824187,-76.310161
-23707=36.842301,-76.339628
-23708=36.849529,-76.305158
-23709=36.812752,-76.305458
-23801=37.235551,-77.335396
-23803=37.209357,-77.497210
-23805=37.138544,-77.403475
-23806=37.238612,-77.418238
-23821=36.883200,-77.912944
-23824=37.085581,-77.972180
-23827=36.612313,-77.196878
-23828=36.580854,-77.266933
-23829=36.732670,-77.217351
-23830=37.016961,-77.395057
-23831=37.346253,-77.450566
-23832=37.387850,-77.592108
-23833=37.209429,-77.668917
-23834=37.290584,-77.404112
-23836=37.345226,-77.346743
-23837=36.749583,-77.084152
-23838=37.319210,-77.633166
-23839=37.079815,-76.920618
-23840=37.065325,-77.666008
-23841=37.048042,-77.543937
-23842=37.131685,-77.221949
-23843=36.845150,-77.822447
-23844=36.680032,-77.326525
-23845=36.578823,-77.977561
-23846=37.066603,-76.834020
-23847=36.670258,-77.550253
-23850=37.220129,-77.765249
-23851=36.655848,-76.950841
-23856=36.784009,-77.702347
-23857=36.584651,-77.883799
-23860=37.274749,-77.227407
-23866=36.923676,-76.862401
-23867=36.816602,-77.481624
-23868=36.722009,-77.817381
-23872=36.989430,-77.720290
-23874=36.608956,-77.085713
-23875=37.221381,-77.270464
-23876=36.955753,-77.833610
-23878=36.824772,-77.025432
-23879=36.592274,-77.596837
-23881=37.180741,-76.977829
-23882=36.926173,-77.421687
-23883=37.135962,-76.735892
-23884=36.917234,-77.279442
-23885=37.190287,-77.572659
-23887=36.573362,-77.816917
-23888=36.949958,-76.975042
-23889=36.902933,-77.747246
-23890=37.009176,-77.118319
-23891=37.050821,-77.212429
-23893=36.644073,-77.920776
-23894=37.122207,-77.820822
-23897=36.829008,-77.283615
-23898=36.838263,-76.861870
-23899=37.234417,-76.974083
-23901=37.320924,-78.420892
-23909=37.300584,-78.396639
-23915=36.693140,-78.287418
-23917=36.625554,-78.344856
-23919=36.593409,-78.131154
-23920=36.724517,-77.975253
-23921=37.586321,-78.623535
-23922=37.185512,-78.216385
-23923=37.087148,-78.649692
-23924=36.806576,-78.422030
-23927=36.587497,-78.564584
-23930=37.171003,-78.099611
-23934=37.177152,-78.626705
-23936=37.532518,-78.479244
-23937=36.945141,-78.512503
-23938=36.905314,-77.992026
-23942=37.134366,-78.289196
-23943=37.245457,-78.454144
-23944=36.915939,-78.138611
-23947=37.031087,-78.444724
-23950=36.658762,-78.075874
-23952=36.928703,-78.298588
-23954=37.106333,-78.380108
-23958=37.264893,-78.659633
-23959=37.105192,-78.794749
-23960=37.320962,-78.552064
-23962=37.004656,-78.739335
-23963=37.200954,-78.798556
-23964=36.772427,-78.627089
-23966=37.300262,-78.259116
-23967=36.913125,-78.636604
-23968=36.725263,-78.528509
-23970=36.750501,-78.190761
-23974=36.970455,-78.255276
-23976=36.844428,-78.585307
-24011=37.270850,-79.941490
-24012=37.310426,-79.903054
-24013=37.266503,-79.923095
-24014=37.222860,-79.915191
-24015=37.256760,-79.981330
-24016=37.273437,-79.954687
-24017=37.297643,-79.990971
-24018=37.213055,-80.041739
-24019=37.346523,-79.953580
-24020=37.358216,-79.944179
-24053=36.607227,-80.534076
-24054=36.668892,-79.705426
-24055=36.756169,-79.997554
-24058=37.176663,-80.622252
-24059=37.163726,-80.130484
-24060=37.255474,-80.422539
-24064=37.376305,-79.770380
-24065=37.117040,-79.997325
-24066=37.537053,-79.681003
-24067=37.031804,-80.059897
-24069=36.576886,-79.642566
-24070=37.356114,-80.225834
-24072=37.041990,-80.242381
-24073=37.132347,-80.424783
-24076=36.605192,-80.421039
-24077=37.366211,-79.904022
-24078=36.721170,-79.899591
-24079=37.056632,-80.160939
-24082=36.620086,-80.116523
-24083=37.405171,-79.920188
-24084=37.127959,-80.845882
-24085=37.679371,-79.821548
-24086=37.275580,-80.632246
-24087=37.214011,-80.256774
-24088=36.887904,-80.077927
-24089=36.708518,-79.971555
-24090=37.521699,-79.886553
-24091=36.919948,-80.330525
-24092=37.012031,-79.757851
-24093=37.385177,-80.868752
-24095=37.223210,-79.737268
-24101=37.173555,-79.796387
-24102=36.844404,-80.002271
-24104=37.133611,-79.488635
-24105=36.911577,-80.603687
-24112=36.721170,-79.846927
-24120=36.691636,-80.413917
-24121=37.168916,-79.647411
-24122=37.426197,-79.692130
-24124=37.316320,-80.857538
-24127=37.473603,-80.231051
-24128=37.339994,-80.482544
-24130=37.609758,-80.002393
-24131=37.570649,-80.232870
-24132=37.203776,-80.659247
-24133=36.669705,-80.134421
-24134=37.247923,-80.777561
-24136=37.331794,-80.601598
-24137=36.927552,-79.657504
-24138=37.042837,-80.306411
-24139=37.013166,-79.481073
-24141=37.096142,-80.568655
-24142=37.137882,-80.550906
-24147=37.401494,-80.823621
-24148=36.579801,-79.877967
-24149=37.018582,-80.433581
-24150=37.380708,-80.625557
-24151=36.954022,-79.865200
-24153=37.302506,-80.114325
-24161=36.978085,-79.529113
-24162=37.129449,-80.249715
-24165=36.584884,-80.051921
-24167=37.255259,-80.724536
-24168=36.734753,-79.946456
-24171=36.696637,-80.220827
-24174=37.351716,-79.673095
-24175=37.427996,-79.939687
-24176=37.005545,-79.692495
-24179=37.285565,-79.809835
-24184=37.088543,-79.779243
-24185=36.811592,-80.269238
-24201=36.610715,-82.170050
-24202=36.656310,-82.212219
-24210=36.768935,-82.027531
-24211=36.654088,-81.955070
-24216=36.948303,-82.799398
-24217=37.084846,-82.178538
-24219=36.849443,-82.758491
-24220=37.137298,-82.240182
-24221=36.625323,-82.998722
-24224=36.861431,-82.271754
-24225=36.991715,-82.141851
-24226=37.136897,-82.323000
-24228=37.166751,-82.456233
-24230=36.956532,-82.454034
-24236=36.652361,-81.747640
-24237=37.036159,-82.261943
-24239=37.117685,-82.148524
-24243=36.773058,-82.926020
-24244=36.723868,-82.782184
-24245=36.838011,-82.512802
-24246=36.866585,-82.745568
-24248=36.625358,-83.514584
-24250=36.756733,-82.596526
-24251=36.657167,-82.599488
-24256=37.215901,-82.286740
-24258=36.645372,-82.422038
-24260=37.030751,-82.015022
-24263=36.668226,-83.147399
-24265=36.832516,-82.945708
-24266=36.858754,-82.120965
-24269=37.072767,-82.380682
-24270=36.729615,-82.250664
-24271=36.748739,-82.417259
-24272=37.013892,-82.314775
-24273=36.964701,-82.661480
-24277=36.744851,-83.038438
-24279=37.077698,-82.627403
-24280=36.956077,-81.923315
-24281=36.637323,-83.340226
-24282=36.818761,-83.054310
-24283=36.939807,-82.332961
-24290=36.612701,-82.567940
-24292=36.617691,-81.578136
-24293=37.004345,-82.550814
-24301=37.067710,-80.810743
-24311=36.874202,-81.422004
-24312=36.833014,-80.887021
-24313=36.909535,-80.819941
-24314=37.157244,-81.210414
-24315=37.134578,-81.059321
-24316=36.955705,-81.668988
-24317=36.601166,-80.671347
-24318=36.995958,-81.387124
-24319=36.745188,-81.654976
-24322=36.799014,-81.113662
-24323=36.866254,-81.186396
-24324=36.974112,-80.776478
-24325=36.795414,-80.601603
-24326=36.729845,-81.202199
-24328=36.645356,-80.700836
-24330=36.725798,-81.020688
-24333=36.639975,-80.934776
-24340=36.753252,-81.767904
-24343=36.770411,-80.690913
-24347=36.960871,-80.652471
-24348=36.652229,-81.215324
-24350=36.813319,-80.994209
-24351=36.579431,-80.765127
-24352=36.709011,-80.531193
-24354=36.829354,-81.539710
-24360=36.933276,-80.897565
-24361=36.767265,-81.845258
-24363=36.616630,-81.405048
-24366=37.259482,-81.118583
-24368=36.888029,-81.302492
-24370=36.911415,-81.689789
-24374=36.783760,-81.220305
-24375=36.768944,-81.387144
-24377=37.000269,-81.574692
-24378=36.686691,-81.443367
-24380=36.859701,-80.508764
-24381=36.729989,-80.840655
-24382=36.960016,-81.101367
-24401=38.134387,-79.085564
-24411=38.105128,-79.311238
-24412=38.053722,-79.818136
-24413=38.542448,-79.600291
-24415=37.925000,-79.317053
-24416=37.722497,-79.360864
-24421=38.244653,-79.245141
-24422=37.830403,-79.758834
-24426=37.763523,-80.084876
-24430=38.086959,-79.355799
-24431=38.170011,-78.842838
-24432=38.148060,-79.443355
-24433=38.423609,-79.424285
-24435=37.872640,-79.301938
-24437=38.220807,-78.935476
-24439=37.993806,-79.489306
-24440=37.999256,-79.165483
-24441=38.226067,-78.824873
-24442=38.372530,-79.384617
-24445=37.942029,-79.891806
-24448=37.797110,-79.788524
-24450=37.778993,-79.526578
-24457=37.763632,-79.943078
-24458=38.315747,-79.527472
-24459=38.020846,-79.292305
-24460=38.019880,-79.656459
-24464=37.874972,-79.094071
-24465=38.384565,-79.647758
-24467=38.254994,-78.971328
-24471=38.313210,-78.784180
-24472=37.941157,-79.208568
-24473=37.934749,-79.415358
-24474=37.805612,-79.845530
-24476=37.974466,-79.227361
-24477=38.004878,-79.042232
-24479=38.163944,-79.239044
-24482=38.205935,-78.996676
-24483=37.812333,-79.230553
-24484=38.155192,-79.784830
-24485=38.267603,-79.333024
-24486=38.296885,-78.924533
-24487=38.183650,-79.598206
-24501=37.359733,-79.141286
-24502=37.360401,-79.221579
-24503=37.454015,-79.249736
-24504=37.365249,-79.048192
-24517=37.147516,-79.237160
-24520=36.586589,-79.029748
-24521=37.633294,-79.100863
-24522=37.376791,-78.778773
-24523=37.344838,-79.523884
-24526=37.543273,-79.415935
-24527=36.736768,-79.341721
-24528=37.079686,-78.876229
-24529=36.626619,-78.646754
-24530=36.807067,-79.619501
-24531=36.842621,-79.453781
-24534=36.867415,-78.770512
-24536=37.495689,-79.326532
-24538=37.345197,-78.962372
-24539=36.852900,-78.914718
-24540=36.634506,-79.426751
-24541=36.588822,-79.515100
-24549=36.706660,-79.504475
-24550=37.239630,-79.245397
-24551=37.356256,-79.324598
-24553=37.545504,-78.810010
-24554=37.120037,-79.071614
-24555=37.669829,-79.484088
-24556=37.375825,-79.399305
-24557=36.969859,-79.306424
-24558=36.774341,-78.953963
-24562=37.695426,-78.637777
-24563=37.062500,-79.279115
-24565=36.852720,-79.189501
-24566=36.731828,-79.252639
-24569=37.042552,-79.125855
-24570=37.346460,-79.424457
-24571=37.132961,-79.372748
-24572=37.464909,-79.095265
-24574=37.576150,-79.253367
-24577=36.943958,-78.982770
-24578=37.659875,-79.562274
-24579=37.585803,-79.502698
-24580=36.579054,-78.673121
-24581=37.655216,-78.805765
-24586=36.607044,-79.276609
-24588=37.262151,-79.096232
-24589=36.760808,-78.758047
-24590=37.796421,-78.490289
-24592=36.675795,-78.965555
-24593=37.322564,-78.902758
-24594=36.646843,-79.178528
-24595=37.559559,-79.082716
-24597=36.782411,-79.110858
-24598=36.604670,-78.788004
-24599=37.623562,-78.723890
-24601=37.193732,-81.649243
-24602=37.183213,-81.658510
-24603=37.355386,-82.190109
-24604=37.211983,-81.538089
-24605=37.254178,-81.371211
-24606=37.286313,-81.398771
-24607=37.293533,-82.262524
-24609=37.009601,-81.807791
-24612=37.093350,-81.838141
-24613=37.265157,-81.336881
-24614=37.298652,-82.071085
-24620=37.431334,-82.011704
-24622=37.214674,-81.789853
-24628=37.282353,-82.222958
-24630=37.178327,-81.465545
-24631=37.217266,-81.990694
-24634=37.267813,-81.902722
-24635=37.312617,-81.362936
-24637=37.061082,-81.713894
-24639=37.160378,-81.888205
-24641=37.111816,-81.802451
-24646=37.143346,-82.024578
-24649=37.063005,-81.899474
-24651=37.075529,-81.503095
-24656=37.175055,-82.124994
-24657=37.226515,-81.856782
-24701=37.305951,-81.204941
-24712=37.463059,-81.015010
-24714=37.484469,-81.190073
-24715=37.340392,-81.324618
-24716=37.480042,-81.371826
-24719=37.487167,-81.326725
-24724=37.330881,-81.299757
-24726=37.514751,-81.352074
-24729=37.449867,-81.260010
-24731=37.397966,-81.151064
-24733=37.450768,-81.205194
-24736=37.444189,-81.277400
-24737=37.352245,-81.249309
-24738=37.302041,-81.309700
-24740=37.373474,-81.005001
-24747=37.378752,-81.299696
-24801=37.448883,-81.576989
-24808=37.330026,-81.422403
-24811=37.399166,-81.771251
-24813=37.357412,-81.720113
-24815=37.241667,-81.659603
-24816=37.461102,-81.705939
-24817=37.352268,-81.804780
-24818=37.602702,-81.624946
-24822=37.647094,-81.697294
-24823=37.671970,-81.751948
-24826=37.293267,-81.623592
-24827=37.753270,-81.641480
-24828=37.498900,-81.636635
-24830=37.323125,-81.506122
-24831=37.394105,-81.411521
-24834=37.547689,-81.630566
-24836=37.333874,-81.558620
-24839=37.560676,-81.738389
-24843=37.487144,-81.710100
-24844=37.462452,-81.806627
-24845=37.517953,-81.817841
-24846=37.529522,-81.912860
-24847=37.577109,-81.418416
-24848=37.303745,-81.460677
-24849=37.665763,-81.542748
-24850=37.320970,-81.850505
-24851=37.601371,-81.833685
-24853=37.435447,-81.511823
-24854=37.736493,-81.572685
-24857=37.672510,-81.660302
-24860=37.660170,-81.607608
-24861=37.350951,-81.363130
-24862=37.469177,-81.964569
-24866=37.248133,-81.580323
-24867=37.595764,-81.444714
-24868=37.438450,-81.389063
-24869=37.562684,-81.838107
-24870=37.765445,-81.510219
-24871=37.359301,-81.468304
-24872=37.449369,-81.920479
-24873=37.366148,-81.878193
-24874=37.542528,-81.555341
-24878=37.439308,-81.625265
-24879=37.313896,-81.758686
-24880=37.651410,-81.530693
-24881=37.431342,-81.684596
-24882=37.625597,-81.766000
-24884=37.230470,-81.604088
-24887=37.373345,-81.404173
-24888=37.392804,-81.483252
-24892=37.326940,-81.687785
-24894=37.274965,-81.713671
-24898=37.593853,-81.610128
-24901=37.855406,-80.451557
-24910=37.750526,-80.648133
-24915=38.465457,-79.777170
-24916=37.828599,-80.581103
-24918=37.522173,-80.745310
-24920=38.580079,-79.704212
-24924=38.201314,-80.164890
-24925=37.714707,-80.376437
-24927=38.375187,-79.957107
-24931=37.919011,-80.588601
-24934=38.333579,-79.891016
-24935=37.566530,-80.808493
-24938=37.893492,-80.387188
-24941=37.588011,-80.346704
-24944=38.389627,-79.783657
-24945=37.541978,-80.677193
-24946=38.184420,-80.262312
-24951=37.484254,-80.643612
-24954=38.224907,-80.056049
-24957=37.885394,-80.425002
-24962=37.662404,-80.718357
-24963=37.436413,-80.758492
-24966=38.078505,-80.362598
-24970=37.728072,-80.474482
-24974=37.641768,-80.448356
-24976=37.656964,-80.511709
-24977=37.897155,-80.687105
-24981=37.629807,-80.735884
-24983=37.574990,-80.518586
-24984=37.493530,-80.405020
-24986=37.921086,-80.145726
-24991=38.021577,-80.497448
-25002=38.135764,-81.241730
-25003=38.252558,-81.784866
-25005=38.583444,-81.256426
-25007=37.824840,-81.430458
-25008=37.947061,-81.343970
-25009=38.202305,-81.684573
-25011=38.508579,-81.839417
-25015=38.246134,-81.497258
-25019=38.371626,-81.068876
-25021=37.922107,-81.679778
-25022=37.860342,-81.819040
-25024=38.159082,-81.623721
-25025=38.314690,-81.411393
-25028=37.947147,-81.725572
-25030=38.453317,-81.225847
-25031=38.148617,-81.275148
-25033=38.612061,-81.924382
-25035=38.165242,-81.521007
-25036=38.214746,-81.258404
-25039=38.234956,-81.363266
-25040=38.126501,-81.235109
-25043=38.425757,-81.003154
-25044=37.911676,-81.368705
-25045=38.447483,-81.329322
-25047=37.920527,-81.767625
-25048=37.945828,-81.437333
-25049=38.115286,-81.558257
-25051=38.156947,-81.709791
-25053=38.036736,-81.878922
-25054=38.110531,-81.488490
-25057=38.120375,-81.253436
-25059=38.220237,-81.202847
-25060=37.944540,-81.427325
-25061=38.174502,-81.439839
-25062=37.880313,-81.432653
-25063=38.570368,-80.929492
-25064=38.377043,-81.749626
-25067=38.201538,-81.442935
-25070=38.545843,-81.931687
-25071=38.462464,-81.466833
-25075=38.060218,-81.405213
-25076=37.868612,-81.930987
-25081=38.075052,-81.754659
-25082=38.604207,-82.031043
-25083=38.069889,-81.367758
-25085=38.172682,-81.205480
-25086=38.203982,-81.417350
-25088=38.398602,-81.208823
-25090=38.155129,-81.221003
-25093=37.983110,-81.669642
-25102=38.191015,-81.374818
-25103=38.180757,-81.381089
-25106=38.790572,-82.100288
-25107=38.229749,-81.621635
-25108=37.973583,-81.881188
-25109=38.526763,-81.851908
-25110=38.218430,-81.314979
-25111=38.352883,-81.128837
-25112=38.380263,-81.767141
-25113=38.553281,-81.046284
-25114=37.987318,-81.786336
-25115=38.122192,-81.182251
-25118=38.111660,-81.305965
-25119=38.041356,-81.276239
-25121=37.916211,-81.897277
-25123=38.730175,-81.900044
-25124=38.622490,-81.778935
-25125=38.311679,-81.215230
-25126=38.202733,-81.372678
-25130=38.032999,-81.752251
-25132=38.293532,-81.344598
-25133=38.477116,-81.145106
-25134=38.162830,-81.490556
-25136=38.150173,-81.327319
-25139=38.137583,-81.291458
-25140=37.839893,-81.498515
-25141=38.626886,-81.025349
-25142=38.153554,-81.729882
-25143=38.417874,-81.819479
-25148=38.045589,-81.561730
-25149=37.949155,-81.771997
-25152=38.058191,-81.250675
-25154=38.120576,-81.713325
-25156=38.183259,-81.336855
-25159=38.523611,-81.788899
-25160=38.282203,-81.272662
-25161=38.052784,-81.318726
-25162=38.207558,-81.387342
-25164=38.509184,-81.204946
-25165=38.146044,-81.649422
-25168=38.560349,-81.879850
-25169=38.175825,-81.789840
-25173=38.091155,-81.229776
-25174=37.865660,-81.410962
-25177=38.367284,-81.848331
-25180=37.790262,-81.436271
-25181=38.049290,-81.641200
-25183=37.914012,-81.790074
-25185=38.235187,-81.238016
-25186=38.182372,-81.271197
-25187=38.724539,-82.029452
-25193=38.035460,-81.507099
-25201=38.335613,-81.490465
-25202=38.316375,-81.859088
-25203=38.015993,-81.882308
-25204=37.925321,-81.614560
-25205=38.019487,-81.793006
-25206=37.997807,-81.695777
-25208=37.836513,-81.639765
-25209=37.952988,-81.519912
-25211=38.468690,-80.888411
-25213=38.512666,-81.913305
-25214=38.187702,-81.538244
-25234=38.811456,-81.138257
-25235=38.669527,-81.089500
-25239=38.838660,-81.846681
-25241=38.787975,-81.810031
-25243=38.686717,-81.479468
-25244=38.767566,-81.550872
-25245=38.697420,-81.755385
-25247=39.005944,-82.006294
-25248=38.644268,-81.613862
-25251=38.620525,-81.236323
-25252=38.950961,-81.511175
-25253=38.921064,-81.961490
-25259=38.673526,-81.251761
-25260=39.003788,-82.031958
-25261=38.821662,-81.080487
-25262=38.907802,-81.826041
-25264=38.859864,-81.893884
-25265=38.986622,-81.957737
-25266=38.605981,-81.162323
-25267=38.833599,-80.940901
-25268=38.725084,-81.076202
-25270=38.864758,-81.424903
-25271=38.788510,-81.692539
-25275=38.921509,-81.610584
-25276=38.782080,-81.328691
-25285=38.539656,-81.101556
-25286=38.615199,-81.407985
-25287=38.954715,-82.051426
-25301=38.350719,-81.630359
-25302=38.393184,-81.595470
-25303=38.359561,-81.686130
-25304=38.306056,-81.593194
-25305=38.337629,-81.612742
-25306=38.312522,-81.499429
-25309=38.308648,-81.749531
-25311=38.366863,-81.557035
-25312=38.448403,-81.659346
-25313=38.419303,-81.766456
-25314=38.308083,-81.640254
-25315=38.222276,-81.560330
-25320=38.539851,-81.633191
-25401=39.457153,-77.972619
-25403=39.474850,-78.011639
-25404=39.483025,-77.890325
-25405=39.409184,-77.961535
-25411=39.548748,-78.221470
-25413=39.310588,-78.055948
-25414=39.242415,-77.865749
-25419=39.575796,-77.895710
-25420=39.381565,-78.115041
-25422=39.544988,-78.354289
-25425=39.306168,-77.773612
-25427=39.534237,-78.066125
-25428=39.380635,-78.022210
-25430=39.327184,-77.937913
-25431=39.483762,-78.574312
-25432=39.305755,-77.784290
-25434=39.439723,-78.461110
-25437=39.427797,-78.570489
-25438=39.323441,-77.864008
-25442=39.370198,-77.832595
-25443=39.443745,-77.817226
-25444=39.412854,-78.523889
-25446=39.241588,-77.953405
-25501=38.153876,-81.969643
-25502=38.656399,-82.117158
-25503=38.612591,-82.120957
-25504=38.376421,-82.270009
-25505=38.012295,-82.031190
-25506=38.204720,-82.187020
-25507=38.395279,-82.563009
-25508=37.963940,-82.021969
-25510=38.382304,-82.082946
-25511=38.051218,-82.335030
-25512=38.184728,-82.327278
-25514=38.100260,-82.528704
-25515=38.756623,-82.146875
-25517=38.108275,-82.443166
-25520=38.561148,-82.182864
-25521=38.219782,-81.999378
-25523=38.278729,-82.049132
-25524=38.021624,-82.117351
-25526=38.394443,-81.991309
-25529=38.152577,-81.846879
-25530=38.358380,-82.576854
-25534=38.084433,-82.274956
-25535=38.308557,-82.434852
-25537=38.533383,-82.281971
-25540=38.182609,-82.156471
-25541=38.480587,-82.130164
-25545=38.458992,-82.217439
-25547=37.916034,-81.965478
-25550=38.863326,-82.067437
-25555=38.213877,-82.549652
-25557=38.105832,-82.171951
-25559=38.324948,-82.229139
-25560=38.445189,-81.899312
-25564=38.272188,-81.901012
-25565=38.102343,-81.964488
-25567=38.215954,-81.870097
-25570=38.218917,-82.425284
-25571=38.313493,-82.155813
-25573=38.232180,-81.941115
-25601=37.862732,-82.009247
-25606=37.764974,-81.819803
-25607=37.784917,-81.784145
-25608=37.574102,-81.889362
-25611=37.688915,-81.840825
-25617=37.721101,-81.778320
-25621=37.626932,-81.941828
-25624=37.900691,-81.981776
-25625=37.819360,-82.081236
-25628=37.768114,-81.862466
-25630=37.788222,-81.691063
-25632=37.729709,-81.924055
-25634=37.735864,-81.840590
-25635=37.707103,-81.885979
-25637=37.861773,-82.029479
-25638=37.758843,-81.990584
-25639=37.881353,-81.958345
-25644=37.704742,-82.022096
-25646=37.847286,-81.883987
-25647=37.786810,-81.984432
-25649=37.875404,-82.093080
-25650=37.670367,-81.819109
-25651=37.601637,-81.987573
-25652=37.790733,-82.045124
-25653=37.828964,-81.998297
-25654=37.795626,-81.873719
-25661=37.736160,-82.273932
-25666=37.926751,-82.248854
-25669=37.932138,-82.391484
-25670=37.721161,-82.158989
-25671=37.883864,-82.191926
-25672=37.581336,-82.113087
-25674=37.868833,-82.351577
-25676=37.837737,-82.193065
-25678=37.590303,-82.065234
-25688=37.621295,-82.119118
-25690=37.689780,-82.124445
-25692=37.636290,-82.109819
-25696=37.679044,-82.115919
-25699=37.961653,-82.332550
-25701=38.365689,-82.405250
-25702=38.434723,-82.314415
-25703=38.424914,-82.418697
-25704=38.307610,-82.487363
-25705=38.404576,-82.360178
-25801=37.822892,-81.266198
-25810=37.596671,-81.349283
-25811=37.562416,-81.296146
-25812=38.181993,-81.122676
-25813=37.761846,-81.101871
-25817=37.758442,-81.397501
-25818=37.860276,-81.191992
-25820=37.515101,-81.162702
-25823=37.661591,-81.210671
-25825=37.644282,-81.082976
-25826=37.574891,-81.356758
-25827=37.739101,-81.254768
-25831=37.959313,-80.930792
-25832=37.715324,-81.118819
-25836=37.774944,-81.278687
-25837=38.048142,-81.011901
-25839=37.778207,-81.387207
-25840=38.042891,-81.122665
-25841=37.560685,-81.092430
-25843=37.609609,-81.118411
-25844=37.800275,-81.383269
-25845=37.695336,-81.525185
-25846=37.906328,-81.132507
-25848=37.718147,-81.428265
-25849=37.729977,-81.279707
-25853=37.640411,-81.312103
-25854=38.136747,-80.979861
-25855=37.936058,-81.156062
-25857=37.644250,-81.281535
-25862=38.085516,-81.061427
-25864=37.876046,-81.036063
-25865=37.711540,-81.362406
-25868=38.086709,-80.958315
-25870=37.630165,-81.389346
-25871=37.769825,-81.210442
-25873=37.750066,-81.213823
-25875=37.679114,-81.460808
-25876=37.631101,-81.449139
-25878=37.715436,-81.229778
-25879=37.983629,-81.106037
-25880=37.878948,-81.207573
-25882=37.632143,-81.393396
-25901=37.950702,-81.117050
-25902=37.569827,-81.217459
-25904=37.928234,-81.283417
-25906=37.836755,-81.114354
-25907=37.856017,-81.086212
-25908=37.675320,-81.247167
-25911=37.758042,-81.167172
-25913=37.714061,-81.489465
-25915=37.590131,-81.291260
-25916=37.675614,-81.498056
-25917=37.991078,-81.218428
-25918=37.753200,-80.995641
-25920=37.688595,-81.334040
-25921=37.672258,-81.314120
-25922=37.465967,-81.105042
-25928=37.558121,-81.332573
-25932=37.752007,-81.299566
-25936=37.923452,-81.039103
-25938=38.153072,-81.046857
-25942=38.017647,-80.995148
-25951=37.662049,-80.866432
-25958=38.022833,-80.750010
-25962=37.985767,-80.799157
-25969=37.617988,-81.001928
-25971=37.477419,-80.977446
-25972=38.035716,-80.746126
-25976=37.848997,-80.842768
-25977=37.798478,-80.903302
-25978=37.620672,-80.945014
-25979=37.510942,-80.913482
-25981=38.097057,-80.711083
-25984=38.029233,-80.597366
-25985=37.783259,-80.813329
-25989=37.680938,-81.069851
-26003=40.070163,-80.647242
-26030=40.220169,-80.656289
-26031=40.009395,-80.729265
-26032=40.192393,-80.540470
-26033=39.830240,-80.578022
-26034=40.598473,-80.552334
-26035=40.344900,-80.553539
-26036=39.977720,-80.554299
-26037=40.335562,-80.584518
-26038=39.964591,-80.724103
-26039=39.799369,-80.674066
-26040=39.988521,-80.715964
-26041=39.887241,-80.705476
-26047=40.520184,-80.589222
-26050=40.607741,-80.607637
-26055=39.754300,-80.782572
-26056=40.531275,-80.577127
-26059=40.057468,-80.604858
-26060=40.110039,-80.557624
-26062=40.426690,-80.560679
-26070=40.259769,-80.580062
-26074=40.159897,-80.595416
-26075=40.193433,-80.668044
-26101=39.240324,-81.575872
-26104=39.276141,-81.480363
-26105=39.329575,-81.514622
-26133=39.123282,-81.672414
-26134=39.368717,-81.290434
-26136=38.959489,-81.137586
-26137=38.995599,-81.049374
-26138=39.023425,-81.206015
-26141=38.933552,-81.245880
-26142=39.205781,-81.449266
-26143=39.056366,-81.372736
-26146=39.457065,-81.036844
-26147=38.904543,-81.075390
-26148=39.058499,-81.182808
-26149=39.483305,-80.825642
-26150=39.157283,-81.535898
-26151=38.879222,-81.172051
-26152=39.010062,-81.195907
-26155=39.630056,-80.763963
-26159=39.598891,-80.921996
-26160=38.981202,-81.412057
-26161=39.180564,-81.248200
-26164=39.010700,-81.701191
-26167=39.538939,-80.743385
-26169=39.072207,-81.571589
-26170=39.358255,-81.167847
-26175=39.537188,-80.974755
-26178=39.058252,-81.038103
-26180=39.194913,-81.366300
-26181=39.209354,-81.664619
-26184=39.294993,-81.352720
-26187=39.373250,-81.447125
-26201=39.001871,-80.197424
-26202=38.210138,-80.629587
-26203=38.548476,-80.588440
-26205=38.326803,-80.650399
-26206=38.437440,-80.522355
-26208=38.323416,-80.505355
-26209=38.428758,-79.988943
-26215=38.707115,-80.374949
-26217=38.611014,-80.446813
-26218=38.844938,-80.266223
-26222=38.660184,-80.343304
-26224=38.740310,-80.182939
-26228=38.754405,-80.370949
-26230=38.671816,-80.175663
-26234=38.773784,-80.315110
-26236=38.744665,-80.234661
-26237=38.845411,-80.150680
-26238=39.108814,-80.174014
-26241=38.932602,-79.788254
-26250=39.033465,-79.962538
-26253=38.781095,-79.867788
-26254=38.880658,-79.662794
-26257=38.919170,-80.003647
-26259=38.802900,-79.896056
-26260=39.082330,-79.424054
-26261=38.202704,-80.545044
-26263=38.948910,-79.437597
-26264=38.575718,-79.827132
-26266=38.411676,-80.476414
-26267=38.947718,-80.091877
-26268=38.748961,-79.738897
-26269=39.105610,-79.620053
-26270=38.863204,-79.578017
-26271=39.034698,-79.558784
-26273=38.624994,-79.967513
-26275=38.976177,-79.951043
-26276=39.025525,-79.772894
-26278=38.825363,-80.030486
-26280=38.729568,-80.029552
-26282=38.521675,-80.162470
-26283=39.062858,-79.812580
-26285=38.912935,-79.937516
-26287=39.181768,-79.642276
-26288=38.512962,-80.347136
-26291=38.394596,-80.154407
-26292=39.141915,-79.533672
-26293=38.782444,-79.935790
-26294=38.531451,-80.034309
-26296=38.764498,-79.553568
-26298=38.471041,-80.253444
-26301=39.301498,-80.393977
-26320=39.404104,-80.812062
-26321=39.046479,-80.674595
-26323=39.262588,-80.290610
-26325=39.098947,-80.904803
-26327=39.122886,-80.942770
-26330=39.285269,-80.220851
-26335=38.843539,-80.684125
-26337=39.230232,-81.160993
-26338=39.076885,-80.619539
-26339=39.422207,-80.613976
-26342=39.033601,-80.854830
-26343=38.822230,-80.421976
-26346=39.290000,-81.060074
-26347=39.256558,-80.126099
-26348=39.462415,-80.545251
-26349=39.235703,-80.130286
-26351=38.926224,-80.837517
-26354=39.348130,-80.031779
-26361=39.366722,-80.317562
-26362=39.152149,-81.065351
-26366=39.381255,-80.334489
-26369=39.333961,-80.331754
-26372=38.959136,-80.346572
-26374=39.452313,-79.875295
-26376=38.784372,-80.453871
-26377=39.496261,-80.647037
-26378=39.121091,-80.437639
-26384=38.981938,-80.706771
-26385=39.160459,-80.353915
-26386=39.395847,-80.405822
-26404=39.335840,-80.306513
-26405=39.225164,-79.910422
-26408=39.196594,-80.306444
-26410=39.404974,-79.808333
-26411=39.182862,-80.712694
-26412=38.869257,-80.529818
-26415=39.288299,-80.939205
-26416=39.157139,-80.023725
-26419=39.487693,-80.686389
-26421=39.181955,-80.924287
-26422=39.294490,-80.443881
-26424=39.266882,-80.173598
-26425=39.275651,-79.760271
-26426=39.287032,-80.564431
-26430=38.871117,-80.763586
-26431=39.399028,-80.295345
-26435=39.266587,-80.092281
-26436=39.297278,-80.719427
-26437=39.525975,-80.508930
-26438=39.346605,-80.319108
-26440=39.321695,-79.918717
-26443=39.075944,-80.753162
-26444=39.363716,-79.770661
-26447=38.911775,-80.479076
-26448=39.394844,-80.517109
-26451=39.207743,-80.402248
-26452=39.037157,-80.528154
-26456=39.262940,-80.774047
-26501=39.634144,-80.036792
-26505=39.649517,-79.945258
-26508=39.602633,-79.895396
-26519=39.569166,-79.627057
-26520=39.496998,-79.823625
-26521=39.713283,-80.228143
-26525=39.654026,-79.625810
-26534=39.648141,-80.001649
-26537=39.488133,-79.709884
-26541=39.695015,-80.125243
-26542=39.574651,-79.782809
-26543=39.664624,-79.999859
-26547=39.511738,-79.813851
-26554=39.465392,-80.109845
-26559=39.501274,-80.168209
-26560=39.541991,-80.146976
-26562=39.647266,-80.460604
-26563=39.482380,-80.273570
-26568=39.424891,-80.277841
-26570=39.633955,-80.226835
-26571=39.526563,-80.262026
-26572=39.486629,-80.307759
-26574=39.588251,-80.188592
-26575=39.677768,-80.441399
-26576=39.492501,-80.254748
-26581=39.670691,-80.574747
-26582=39.528793,-80.380088
-26585=39.618451,-80.430782
-26586=39.521959,-80.101624
-26587=39.517883,-80.292761
-26588=39.578871,-80.143989
-26590=39.669082,-80.312306
-26591=39.451607,-80.296284
-26601=38.617423,-80.622737
-26610=38.457591,-80.739509
-26611=38.846104,-80.846298
-26615=38.787252,-80.719190
-26617=38.501096,-80.832446
-26619=38.751656,-80.705437
-26621=38.713341,-80.543405
-26623=38.655505,-80.871607
-26624=38.719427,-80.794832
-26627=38.752473,-80.585064
-26629=38.563670,-80.704268
-26631=38.812867,-80.540480
-26636=38.743911,-80.958250
-26638=38.768006,-80.999466
-26651=38.334344,-80.887038
-26656=38.275784,-81.162670
-26660=38.353505,-80.692042
-26662=38.271503,-80.742058
-26676=38.160011,-80.647778
-26678=38.178882,-80.916062
-26679=38.173997,-80.805128
-26680=38.093333,-80.872973
-26681=38.233199,-80.731681
-26684=38.164963,-80.845681
-26690=38.175264,-81.089305
-26691=38.395337,-80.658321
-26704=39.291551,-78.599287
-26705=39.324555,-79.584376
-26707=39.211453,-79.400613
-26710=39.301767,-78.967619
-26711=39.283470,-78.469379
-26714=39.188475,-78.655159
-26716=39.252730,-79.529486
-26717=39.334155,-79.182508
-26719=39.482791,-78.774834
-26720=39.280293,-79.329586
-26722=39.503126,-78.643193
-26726=39.402845,-78.985452
-26731=39.168595,-79.075355
-26739=39.248350,-79.243252
-26743=39.293949,-79.075293
-26750=39.476670,-79.044691
-26753=39.563200,-78.791500
-26755=39.166376,-78.724626
-26757=39.318195,-78.743841
-26761=39.271397,-78.695001
-26763=39.473037,-78.699175
-26764=39.452071,-79.553425
-26767=39.615903,-78.757160
-26801=39.047799,-78.804288
-26802=38.627463,-79.205234
-26804=38.602696,-79.569209
-26807=38.674450,-79.340618
-26808=39.207894,-78.457442
-26810=38.996545,-78.753667
-26812=38.885774,-78.878032
-26814=38.781086,-79.475798
-26815=38.493516,-79.364475
-26817=39.373773,-78.401579
-26818=39.087625,-79.016499
-26823=39.132607,-78.464071
-26833=39.088814,-79.220549
-26836=38.998240,-78.975114
-26845=39.164519,-78.964204
-26847=38.949140,-79.134534
-26851=39.047099,-78.611026
-26852=39.246727,-78.896354
-26855=38.948051,-79.269009
-26865=39.205938,-78.512135
-26866=38.800610,-79.234329
-26884=38.904902,-79.395514
-27006=35.939004,-80.440264
-27007=36.389720,-80.588467
-27009=36.230931,-80.078657
-27011=36.216506,-80.698517
-27012=36.002457,-80.379291
-27013=35.750492,-80.700075
-27014=35.810049,-80.555744
-27016=36.447462,-80.218816
-27017=36.382016,-80.756218
-27018=36.197106,-80.518235
-27019=36.286886,-80.237725
-27020=36.102925,-80.804054
-27021=36.319389,-80.338592
-27022=36.512166,-80.215604
-27023=36.089784,-80.456712
-27024=36.519237,-80.841179
-27025=36.379051,-79.969387
-27027=36.441759,-79.988878
-27028=35.922771,-80.580443
-27030=36.489802,-80.629164
-27040=36.169312,-80.393045
-27041=36.425262,-80.487201
-27042=36.352819,-80.064203
-27043=36.337246,-80.451911
-27045=36.234398,-80.296070
-27046=36.502219,-80.078264
-27047=36.314134,-80.569112
-27048=36.482590,-79.917692
-27050=36.226442,-80.409707
-27051=36.195946,-80.153401
-27052=36.320755,-80.150453
-27053=36.474276,-80.347850
-27054=35.792540,-80.597888
-27055=36.113864,-80.631592
-27101=36.110850,-80.200430
-27103=36.058230,-80.321496
-27104=36.093687,-80.323532
-27105=36.163377,-80.233787
-27106=36.143910,-80.323157
-27107=36.013158,-80.175491
-27109=36.133928,-80.277635
-27110=36.089260,-80.224960
-27127=36.020708,-80.279817
-27201=36.034172,-79.484829
-27203=35.728464,-79.786527
-27205=35.638259,-79.850866
-27207=35.607613,-79.390517
-27208=35.563230,-79.542928
-27209=35.343102,-79.753442
-27212=36.480967,-79.279856
-27214=36.206055,-79.671126
-27215=36.027099,-79.491799
-27217=36.190945,-79.380185
-27229=35.265632,-79.775733
-27231=36.207715,-79.169419
-27233=35.892512,-79.704980
-27235=36.089272,-80.012545
-27239=35.600660,-80.090226
-27242=35.329657,-79.648955
-27243=36.066916,-79.198148
-27244=36.215377,-79.486370
-27248=35.783296,-79.716331
-27249=36.154141,-79.582389
-27252=35.566614,-79.349758
-27253=35.966166,-79.347351
-27258=36.010802,-79.291198
-27260=35.954467,-79.987882
-27262=35.963132,-80.041654
-27263=35.911522,-79.936799
-27265=36.012305,-80.030949
-27278=36.090195,-79.086929
-27281=35.187442,-79.625115
-27282=35.988957,-79.928282
-27283=35.951474,-79.635418
-27284=36.116121,-80.081865
-27288=36.497645,-79.750015
-27291=36.418316,-79.168428
-27292=35.738325,-80.207547
-27295=35.871767,-80.310180
-27298=35.885115,-79.567545
-27299=35.752324,-80.386149
-27301=36.113510,-79.665656
-27302=36.142030,-79.266181
-27305=36.526805,-79.233755
-27306=35.225229,-79.980186
-27310=36.174072,-79.992233
-27311=36.479651,-79.472563
-27312=35.756405,-79.209789
-27313=35.930899,-79.758242
-27314=36.310360,-79.196250
-27315=36.510190,-79.403541
-27316=35.697013,-79.625793
-27317=35.840737,-79.802499
-27320=36.341643,-79.657526
-27325=35.463087,-79.584091
-27326=36.464116,-79.556845
-27330=35.514408,-79.195453
-27332=35.384704,-79.137215
-27340=35.945873,-79.317167
-27341=35.523759,-79.695909
-27343=36.503728,-79.091478
-27344=35.722265,-79.433691
-27349=35.901313,-79.416062
-27350=35.808253,-79.888213
-27355=35.794966,-79.574007
-27356=35.436865,-79.804272
-27357=36.266600,-79.970625
-27358=36.228232,-79.880061
-27360=35.860580,-80.099288
-27370=35.809280,-79.978025
-27371=35.406855,-79.968144
-27376=35.239166,-79.535060
-27377=36.042675,-79.608729
-27379=36.374099,-79.334513
-27401=36.069140,-79.765159
-27403=36.065973,-79.824383
-27405=36.114921,-79.737030
-27406=36.000542,-79.764677
-27407=36.008599,-79.878160
-27408=36.103667,-79.813712
-27409=36.103729,-79.939830
-27410=36.117523,-79.894239
-27455=36.187509,-79.817677
-27501=35.484941,-78.684570
-27502=35.715250,-78.920992
-27503=36.152948,-78.884485
-27504=35.400309,-78.518278
-27505=35.423475,-79.001029
-27507=36.513542,-78.569494
-27508=35.956874,-78.248144
-27509=36.118640,-78.781001
-27510=35.915783,-79.082604
-27511=35.763414,-78.788528
-27513=35.802102,-78.802719
-27514=35.966740,-79.049419
-27516=35.906197,-79.154855
-27517=35.850468,-79.023121
-27518=35.731139,-78.773206
-27519=35.808578,-78.883326
-27520=35.619732,-78.477026
-27521=35.412121,-78.655865
-27522=36.105618,-78.675202
-27523=35.773618,-78.956926
-27524=35.394563,-78.387595
-27525=36.136109,-78.458098
-27526=35.544010,-78.829824
-27527=35.653948,-78.381715
-27529=35.655625,-78.584906
-27530=35.381174,-78.062514
-27531=35.342994,-77.964411
-27534=35.373478,-77.896666
-27536=36.326731,-78.409125
-27537=36.371801,-78.397878
-27539=35.676537,-78.813444
-27540=35.615062,-78.891559
-27541=36.264862,-79.083217
-27542=35.618293,-78.136838
-27544=36.199730,-78.446559
-27545=35.783720,-78.478238
-27546=35.385317,-78.862107
-27549=36.101663,-78.232233
-27551=36.432843,-78.050170
-27553=36.486500,-78.302793
-27555=35.562683,-78.204133
-27556=36.408390,-78.314748
-27557=35.779135,-78.198512
-27559=35.628213,-79.102818
-27560=35.857892,-78.827698
-27562=35.640448,-78.990037
-27563=36.415710,-78.229388
-27565=36.361651,-78.648952
-27568=35.510124,-78.245099
-27569=35.429065,-78.182749
-27571=35.919490,-78.458036
-27572=36.255106,-78.877494
-27573=36.396597,-78.976099
-27574=36.478361,-78.864911
-27576=35.577524,-78.261311
-27577=35.489638,-78.332894
-27581=36.199608,-78.728985
-27582=36.467324,-78.576588
-27583=36.292958,-78.935362
-27587=35.986719,-78.554351
-27589=36.322541,-78.133484
-27591=35.784170,-78.388983
-27592=35.557356,-78.672245
-27596=35.999902,-78.435089
-27597=35.841015,-78.302680
-27601=35.773632,-78.634457
-27603=35.664418,-78.652751
-27604=35.822789,-78.561648
-27605=35.790609,-78.654594
-27606=35.742323,-78.715478
-27607=35.813106,-78.721175
-27608=35.809046,-78.647228
-27609=35.843765,-78.633643
-27610=35.744400,-78.546278
-27612=35.855753,-78.707038
-27613=35.926102,-78.711414
-27614=35.945927,-78.619492
-27615=35.898500,-78.635485
-27616=35.866734,-78.541216
-27617=35.907875,-78.772960
-27701=35.999240,-78.897944
-27703=35.959253,-78.806827
-27704=36.042446,-78.828771
-27705=36.022136,-78.975659
-27707=35.954525,-78.953317
-27709=35.924393,-78.832764
-27712=36.095476,-78.904083
-27713=35.895040,-78.923747
-27801=35.913445,-77.725700
-27803=35.903051,-77.856172
-27804=35.989146,-77.842675
-27805=36.207741,-77.084248
-27806=35.304999,-76.756067
-27807=35.804514,-78.095537
-27808=35.467089,-76.759752
-27809=36.016777,-77.741619
-27810=35.531731,-76.525506
-27812=35.815619,-77.369240
-27813=35.634699,-77.937717
-27814=35.398663,-76.918808
-27816=36.108992,-78.070319
-27817=35.447982,-77.072002
-27818=36.499725,-77.018505
-27819=35.815994,-77.454941
-27820=36.421515,-77.241567
-27821=35.322066,-76.874087
-27822=35.807012,-77.840457
-27823=36.209653,-77.713733
-27824=35.513209,-76.037172
-27825=35.832804,-77.174424
-27826=35.595458,-76.206221
-27827=35.696636,-77.513239
-27828=35.585152,-77.577194
-27829=35.683966,-77.626467
-27830=35.564168,-77.950309
-27831=36.463087,-77.570553
-27832=36.519809,-77.740128
-27834=35.657296,-77.379187
-27837=35.513865,-77.204600
-27839=36.284912,-77.556880
-27840=35.982689,-77.214599
-27841=35.908501,-77.276319
-27842=36.526749,-77.851988
-27843=35.995560,-77.399990
-27844=36.249497,-77.943156
-27845=36.371267,-77.439990
-27846=35.758568,-76.897527
-27847=36.183169,-77.194668
-27849=36.077306,-77.215025
-27850=36.412391,-77.880191
-27851=35.640083,-78.030678
-27852=35.750459,-77.636931
-27853=36.508580,-77.285626
-27855=36.415601,-77.069301
-27856=36.013680,-77.980574
-27857=35.972793,-77.286253
-27858=35.531750,-77.283888
-27860=35.650061,-76.676197
-27861=35.814846,-77.320207
-27862=36.490175,-77.188291
-27863=35.488144,-77.971730
-27864=35.807034,-77.651372
-27865=35.656239,-76.851605
-27866=36.519869,-77.514565
-27869=36.267105,-77.313433
-27870=36.418933,-77.715760
-27871=35.802069,-77.260565
-27872=36.192755,-77.253865
-27873=35.653592,-77.775232
-27874=36.130108,-77.393225
-27875=35.455706,-76.504667
-27876=36.471995,-77.391332
-27878=35.866880,-77.834929
-27879=35.574391,-77.279486
-27880=35.730736,-78.080589
-27881=35.978414,-77.436573
-27882=35.941655,-78.115598
-27883=35.600536,-77.803696
-27884=35.703520,-77.266635
-27885=35.386414,-76.285856
-27886=35.904533,-77.511658
-27888=35.589277,-77.715950
-27889=35.582322,-77.012337
-27890=36.414180,-77.587745
-27891=36.097735,-77.742789
-27892=35.812319,-77.051630
-27893=35.688948,-77.896676
-27896=35.790766,-77.976733
-27897=36.324988,-77.210701
-27909=36.288605,-76.268734
-27910=36.290066,-76.993185
-27915=35.336950,-75.517266
-27916=36.322012,-75.915131
-27917=36.355145,-75.997481
-27919=36.308171,-76.504283
-27920=35.259518,-75.553269
-27921=36.352062,-76.187929
-27922=36.316755,-76.842210
-27923=36.396245,-75.931116
-27924=36.168447,-76.832521
-27925=35.856141,-76.193837
-27926=36.505115,-76.604925
-27927=36.341348,-75.852576
-27928=35.824539,-76.438656
-27929=36.433134,-75.988221
-27932=36.100786,-76.610814
-27935=36.431079,-76.868092
-27936=35.239423,-75.564581
-27937=36.504334,-76.780733
-27938=36.384296,-76.716000
-27939=36.238431,-75.843084
-27941=36.102528,-75.816896
-27942=36.297368,-76.750654
-27943=35.224432,-75.678903
-27944=36.173431,-76.421264
-27946=36.363435,-76.601536
-27947=36.216959,-75.891578
-27948=36.019229,-75.692172
-27949=36.108909,-75.760514
-27950=36.509694,-75.996382
-27953=35.779985,-75.881366
-27954=35.910154,-75.677781
-27956=36.401576,-76.000725
-27957=36.066297,-76.759059
-27958=36.484298,-76.138350
-27959=35.886943,-75.606402
-27960=35.073231,-75.998527
-27962=35.790464,-76.744743
-27964=36.083046,-75.806214
-27965=36.292401,-75.930873
-27966=36.149743,-75.802262
-27967=36.229468,-76.904956
-27968=35.732418,-75.509908
-27970=35.839140,-76.650404
-27972=35.552458,-75.471299
-27973=36.371209,-76.055514
-27974=36.243022,-75.989505
-27976=36.487866,-76.350687
-27978=35.727405,-75.739872
-27979=36.436768,-76.560679
-27980=36.245324,-76.619385
-27981=35.852855,-75.637424
-27982=35.565235,-75.466100
-27983=35.970460,-76.921871
-27985=36.211603,-76.456674
-27986=36.389005,-76.918212
-28001=35.338552,-80.208179
-28006=35.410444,-81.092252
-28007=35.104590,-80.109911
-28009=35.407846,-80.107195
-28012=35.211504,-81.037865
-28016=35.314932,-81.283292
-28017=35.247082,-81.670682
-28018=35.485727,-81.790396
-28019=35.276702,-81.787707
-28020=35.525046,-81.641413
-28021=35.400774,-81.403346
-28023=35.567714,-80.602258
-28025=35.382677,-80.523467
-28027=35.406991,-80.685957
-28031=35.472097,-80.900358
-28032=35.233033,-81.079513
-28033=35.419270,-81.328253
-28034=35.353664,-81.178943
-28036=35.480547,-80.792539
-28037=35.495708,-81.018394
-28039=35.678835,-80.437427
-28040=35.389195,-81.758135
-28043=35.306241,-81.872600
-28052=35.214656,-81.233227
-28054=35.262879,-81.149075
-28056=35.216936,-81.125003
-28071=35.517630,-80.316291
-28072=35.614070,-80.445205
-28073=35.198574,-81.483781
-28075=35.302748,-80.639937
-28076=35.259155,-81.788612
-28077=35.404802,-81.202770
-28078=35.405286,-80.864020
-28079=35.114710,-80.600423
-28080=35.456746,-81.105685
-28081=35.502816,-80.670173
-28083=35.489602,-80.580668
-28086=35.244245,-81.377832
-28088=35.544276,-80.614646
-28089=35.318233,-81.659574
-28090=35.454659,-81.559555
-28091=34.987392,-79.933002
-28092=35.485761,-81.254558
-28097=35.296714,-80.393052
-28098=35.271135,-81.100787
-28101=35.258099,-81.078063
-28102=34.818432,-79.972265
-28103=34.998933,-80.351309
-28104=35.060568,-80.692836
-28105=35.115566,-80.713926
-28107=35.252964,-80.518034
-28108=34.934781,-80.681183
-28109=35.496966,-80.288530
-28110=35.066044,-80.509089
-28112=34.889925,-80.549548
-28114=35.230441,-81.747702
-28115=35.585910,-80.772464
-28117=35.565695,-80.898335
-28119=34.851078,-80.016985
-28120=35.328685,-81.026385
-28124=35.399738,-80.408631
-28125=35.659025,-80.698613
-28127=35.474303,-80.190581
-28128=35.210696,-80.154523
-28129=35.231663,-80.327162
-28133=34.844926,-80.265681
-28134=35.087361,-80.896140
-28135=35.029760,-80.217276
-28137=35.563109,-80.236391
-28138=35.514441,-80.437354
-28139=35.348363,-81.994737
-28144=35.706685,-80.464788
-28146=35.619243,-80.393345
-28147=35.681060,-80.563015
-28150=35.342703,-81.576248
-28152=35.242720,-81.599412
-28159=35.694752,-80.431873
-28160=35.361006,-81.922332
-28163=35.207494,-80.428517
-28164=35.389444,-81.037135
-28166=35.680343,-80.868179
-28167=35.506751,-81.967285
-28168=35.552360,-81.425071
-28169=35.358470,-81.429395
-28170=34.998714,-80.098785
-28173=34.916155,-80.731415
-28174=34.969035,-80.439580
-28202=35.227271,-80.844194
-28203=35.208185,-80.859107
-28204=35.214620,-80.827014
-28205=35.218791,-80.789601
-28206=35.256127,-80.820999
-28207=35.194148,-80.824585
-28208=35.230466,-80.907243
-28209=35.178714,-80.853985
-28210=35.130509,-80.856685
-28211=35.166342,-80.797285
-28212=35.187703,-80.744556
-28213=35.285986,-80.734388
-28214=35.275252,-80.968144
-28215=35.244979,-80.693471
-28216=35.312103,-80.888711
-28217=35.168896,-80.908285
-28226=35.102697,-80.822129
-28227=35.189567,-80.645408
-28244=35.224605,-80.843094
-28262=35.322061,-80.739981
-28269=35.337313,-80.803472
-28270=35.112079,-80.764415
-28273=35.127358,-80.946846
-28277=35.052875,-80.817552
-28278=35.133432,-81.009357
-28280=35.226332,-80.843091
-28282=35.224815,-80.845277
-28301=35.074800,-78.884257
-28303=35.085644,-78.959363
-28304=35.025528,-78.989604
-28305=35.052609,-78.907244
-28306=34.958495,-78.896848
-28307=35.138559,-78.981887
-28308=35.171550,-79.017085
-28310=35.163471,-79.037914
-28311=35.167792,-78.887741
-28312=34.947752,-78.738133
-28314=35.052985,-79.029453
-28315=35.117305,-79.431532
-28318=35.019873,-78.613574
-28320=34.558122,-78.772715
-28323=35.314791,-78.834376
-28325=35.153922,-78.104138
-28326=35.269047,-79.154689
-28327=35.354616,-79.416494
-28328=35.003503,-78.337924
-28330=34.909596,-79.821980
-28332=34.659049,-78.737911
-28333=35.286131,-78.017373
-28334=35.272208,-78.568104
-28337=34.657047,-78.561559
-28338=35.107513,-79.759641
-28339=35.310540,-78.732747
-28340=34.471354,-79.134422
-28341=35.119876,-78.174437
-28342=35.191183,-78.651262
-28343=34.757362,-79.564875
-28344=35.160499,-78.624575
-28345=34.870289,-79.665721
-28347=35.062266,-79.631662
-28348=34.914974,-78.927020
-28349=34.981159,-77.927059
-28350=35.243159,-79.314018
-28351=34.848270,-79.563854
-28352=34.767842,-79.451730
-28356=35.237020,-78.790396
-28357=34.901888,-79.082766
-28358=34.607857,-78.934772
-28360=34.670328,-79.074940
-28363=34.960782,-79.554662
-28364=34.707928,-79.322676
-28365=35.172565,-78.052357
-28366=35.230228,-78.362014
-28367=35.172737,-79.725255
-28369=34.423373,-79.029416
-28371=34.903171,-78.979570
-28372=34.696872,-79.177620
-28373=35.093470,-79.485597
-28374=35.197454,-79.462959
-28375=34.475744,-79.038553
-28376=34.992407,-79.242642
-28377=34.826879,-79.213242
-28379=34.930279,-79.778633
-28382=34.971308,-78.517725
-28383=34.576974,-79.262696
-28384=34.796937,-78.961001
-28385=35.050008,-78.477230
-28386=34.853619,-79.129616
-28387=35.179251,-79.376489
-28390=35.219487,-78.955973
-28391=35.021629,-78.698798
-28392=34.735329,-78.800956
-28393=34.981087,-78.189480
-28394=35.217450,-79.241539
-28395=35.138511,-78.741362
-28396=34.914162,-79.397482
-28398=34.989776,-78.064151
-28399=34.784523,-78.709012
-28401=34.272145,-77.962018
-28403=34.221692,-77.880633
-28405=34.263182,-77.866380
-28409=34.155120,-77.862161
-28411=34.301809,-77.793089
-28412=34.143756,-77.928152
-28420=34.073677,-78.483850
-28421=34.505123,-78.167047
-28422=34.026370,-78.189312
-28423=34.308657,-78.393350
-28424=34.290287,-78.699681
-28425=34.562055,-77.896281
-28428=34.046841,-77.909659
-28429=34.341211,-77.900216
-28430=34.303437,-78.945367
-28431=34.314321,-78.839503
-28432=34.168033,-78.758709
-28433=34.488505,-78.616673
-28434=34.468325,-78.465485
-28435=34.405955,-78.109229
-28436=34.275102,-78.267215
-28438=34.409483,-78.918844
-28439=34.286816,-79.001382
-28441=34.811462,-78.427414
-28442=34.282924,-78.613428
-28443=34.445036,-77.675712
-28444=34.688305,-78.319958
-28445=34.483968,-77.556317
-28447=34.622297,-78.277327
-28448=34.520158,-78.363175
-28449=33.978811,-77.933743
-28450=34.324418,-78.515265
-28451=34.229818,-78.089383
-28452=33.991603,-78.549570
-28453=34.886439,-78.076256
-28454=34.678126,-77.650871
-28455=34.111657,-78.631796
-28456=34.374973,-78.287201
-28457=34.449598,-77.886638
-28458=34.814777,-78.090790
-28460=34.541298,-77.418235
-28461=33.967319,-78.058744
-28462=34.026491,-78.289661
-28463=34.109764,-78.776463
-28464=34.782240,-78.021091
-28465=33.912317,-78.102548
-28466=34.741253,-77.875651
-28467=33.917987,-78.591953
-28468=33.899650,-78.519208
-28469=33.926428,-78.466820
-28470=33.964184,-78.403547
-28472=34.299050,-78.691171
-28478=34.642840,-78.042039
-28479=34.100688,-78.016511
-28480=34.225734,-77.797334
-28501=35.242318,-77.514151
-28504=35.224563,-77.634868
-28508=35.099668,-77.824788
-28510=34.987612,-76.804461
-28511=34.901116,-76.345763
-28512=34.712152,-76.793416
-28513=35.441502,-77.388857
-28515=35.184068,-76.699387
-28516=34.905126,-76.552834
-28518=34.894823,-77.747493
-28519=35.119725,-77.026974
-28520=34.994210,-76.323307
-28521=34.817902,-77.736618
-28523=35.211357,-77.284601
-28524=34.790939,-76.468564
-28525=35.132291,-77.686672
-28526=35.261232,-77.371934
-28527=35.259463,-77.030444
-28528=34.732058,-76.538662
-28529=35.070527,-76.854760
-28530=35.374768,-77.415297
-28531=34.698040,-76.555565
-28532=34.896013,-76.890788
-28533=34.902869,-76.901473
-28537=35.237681,-76.525812
-28538=35.416645,-77.565077
-28539=34.694142,-77.203064
-28540=34.754982,-77.503794
-28543=34.736059,-77.375621
-28544=34.718090,-77.308669
-28546=34.799156,-77.356165
-28547=34.669025,-77.366970
-28551=35.321323,-77.780856
-28552=35.303795,-76.555801
-28553=34.729600,-76.512376
-28554=35.478481,-77.586122
-28555=34.863364,-77.221865
-28556=35.114002,-76.625583
-28557=34.738960,-76.749232
-28560=35.126708,-76.977604
-28562=35.081631,-77.126893
-28570=34.781487,-76.857497
-28571=35.070773,-76.689240
-28572=35.027895,-77.736417
-28573=34.985070,-77.148842
-28574=34.878931,-77.589588
-28575=34.707959,-76.883568
-28577=34.864837,-76.373188
-28578=35.196952,-77.856972
-28579=34.759099,-76.510294
-28580=35.453274,-77.679538
-28581=34.844258,-76.435553
-28582=34.748284,-77.150458
-28583=35.138756,-76.741543
-28584=34.736767,-77.077619
-28585=35.076923,-77.412405
-28586=35.313558,-77.167497
-28587=35.192730,-76.661661
-28589=34.812858,-76.505058
-28590=35.520683,-77.416661
-28594=34.689904,-76.969688
-28601=35.772393,-81.326659
-28602=35.669886,-81.389208
-28604=36.180280,-81.859151
-28605=36.129632,-81.694929
-28606=36.053487,-81.322174
-28607=36.218005,-81.652138
-28609=35.671692,-81.055604
-28610=35.730324,-81.135305
-28611=36.010955,-81.735254
-28612=35.650391,-81.537560
-28613=35.737687,-81.207681
-28615=36.458680,-81.660618
-28616=36.023071,-81.920191
-28617=36.480702,-81.361979
-28618=36.208166,-81.516769
-28619=35.758603,-81.602494
-28621=36.275650,-80.914624
-28622=36.192676,-81.947333
-28623=36.534512,-80.971492
-28624=36.128356,-81.411775
-28625=35.869567,-80.889640
-28626=36.292577,-81.517632
-28627=36.455555,-81.004437
-28628=35.726329,-81.785107
-28629=36.340426,-81.364440
-28630=35.831976,-81.420172
-28631=36.547476,-81.410356
-28634=35.972801,-80.757173
-28635=36.305463,-81.126045
-28636=35.939426,-81.063433
-28637=35.718005,-81.419361
-28638=35.845093,-81.477938
-28640=36.404873,-81.399397
-28642=36.218398,-80.820312
-28643=36.529059,-81.540879
-28644=36.426218,-81.277969
-28645=35.978845,-81.547834
-28646=36.073330,-81.847093
-28647=35.938084,-81.972993
-28649=36.335990,-81.212069
-28650=35.571426,-81.158390
-28651=36.306214,-81.308783
-28652=36.100032,-81.987170
-28654=36.058513,-81.159309
-28655=35.763266,-81.749862
-28657=36.021993,-81.942425
-28658=35.637619,-81.235843
-28659=36.215959,-81.148169
-28660=35.968615,-80.856248
-28662=36.021516,-81.899121
-28663=36.532030,-81.309408
-28665=36.209834,-81.375474
-28666=35.725271,-81.470662
-28667=35.771453,-81.426154
-28668=36.407054,-80.990485
-28669=36.223445,-80.989818
-28670=36.194308,-80.912494
-28671=35.752670,-81.527898
-28672=36.483387,-81.326621
-28673=35.617717,-80.998758
-28675=36.503161,-81.135030
-28676=36.331860,-80.855340
-28677=35.738099,-80.926089
-28678=35.821719,-81.060844
-28679=36.261211,-81.828379
-28681=35.922678,-81.223058
-28682=35.588255,-80.965153
-28683=36.390439,-80.911007
-28684=36.334824,-81.608201
-28685=36.360792,-81.059832
-28689=36.036555,-80.940896
-28690=35.732735,-81.574230
-28692=36.267538,-81.808495
-28693=36.471773,-81.559009
-28694=36.366337,-81.468016
-28697=36.134008,-81.165721
-28698=36.340894,-81.736245
-28701=35.705098,-82.636467
-28702=35.405602,-83.605242
-28704=35.457584,-82.580359
-28705=36.032692,-82.156238
-28707=35.397330,-83.065872
-28708=35.271316,-82.862620
-28709=35.771599,-82.381832
-28711=35.605271,-82.291854
-28712=35.173309,-82.770828
-28713=35.373495,-83.495989
-28714=35.889455,-82.304119
-28715=35.511966,-82.711701
-28716=35.439331,-82.847944
-28717=35.049462,-83.093365
-28718=35.159172,-82.634935
-28719=35.517887,-83.334159
-28720=35.450754,-82.253654
-28721=35.662670,-82.958496
-28722=35.208461,-82.061011
-28723=35.314207,-83.026128
-28725=35.366645,-83.255082
-28726=35.280999,-82.416555
-28729=35.320507,-82.600377
-28730=35.517421,-82.378042
-28731=35.288036,-82.394669
-28732=35.451829,-82.445701
-28733=35.429104,-83.815738
-28734=35.189081,-83.412260
-28735=35.475901,-82.350480
-28736=35.175658,-83.086467
-28739=35.256111,-82.543709
-28740=36.091216,-82.272966
-28741=35.055919,-83.211171
-28742=35.382641,-82.650687
-28743=35.800360,-82.881145
-28745=35.525282,-82.972046
-28746=35.477196,-82.161705
-28747=35.155183,-82.922658
-28748=35.649563,-82.757717
-28749=35.840722,-82.098559
-28751=35.505020,-83.120689
-28752=35.709599,-82.035573
-28753=35.864078,-82.712731
-28754=35.875581,-82.515681
-28756=35.351924,-82.186268
-28757=35.649746,-82.308567
-28759=35.381446,-82.588590
-28761=35.685330,-81.910540
-28762=35.626790,-82.231583
-28763=35.028572,-83.466615
-28766=35.251041,-82.619825
-28768=35.324202,-82.706749
-28771=35.347020,-83.842814
-28772=35.116966,-82.827217
-28773=35.265444,-82.309700
-28774=35.093445,-82.994858
-28775=35.021332,-83.321833
-28777=35.904431,-82.068534
-28778=35.628881,-82.405472
-28779=35.357002,-83.215933
-28781=35.224056,-83.635479
-28782=35.233960,-82.147409
-28783=35.262142,-83.010414
-28785=35.653307,-83.139769
-28786=35.462005,-82.989068
-28787=35.741251,-82.515578
-28789=35.407057,-83.316777
-28790=35.200490,-82.524773
-28791=35.356104,-82.508181
-28792=35.383008,-82.369906
-28801=35.594348,-82.557917
-28803=35.531707,-82.523017
-28804=35.648442,-82.563811
-28805=35.633754,-82.483180
-28806=35.571971,-82.614729
-28901=35.198079,-83.810349
-28902=35.022285,-83.959171
-28904=35.068630,-83.733593
-28905=35.163946,-83.940087
-28906=35.100136,-84.138594
-28909=35.001661,-83.904773
-29001=33.786644,-80.174065
-29003=33.241221,-81.023815
-29006=33.869101,-81.551078
-29009=34.455300,-80.376154
-29010=34.223091,-80.272650
-29014=34.523382,-81.114513
-29015=34.437442,-81.330125
-29016=34.202510,-80.997000
-29018=33.348797,-80.639176
-29020=34.314345,-80.573719
-29030=33.576312,-80.647573
-29031=34.548096,-81.492609
-29032=34.345114,-80.445025
-29033=33.956189,-81.057488
-29036=34.134004,-81.339914
-29037=34.189935,-81.867694
-29038=33.372643,-80.981506
-29039=33.422422,-80.915021
-29040=34.068795,-80.440478
-29042=33.297671,-81.158698
-29044=33.925710,-80.695204
-29045=34.185012,-80.806315
-29046=34.102331,-80.153633
-29047=33.532723,-80.585802
-29048=33.390561,-80.295284
-29051=33.861626,-80.127828
-29052=33.798310,-80.741296
-29053=33.827544,-81.090963
-29054=33.941953,-81.383081
-29055=34.574244,-80.914866
-29056=33.608638,-80.005987
-29058=34.554283,-80.749684
-29059=33.330030,-80.418508
-29061=33.897493,-80.850604
-29062=34.004286,-80.605521
-29063=34.142131,-81.206184
-29065=34.285140,-81.296583
-29067=34.544166,-80.537094
-29069=34.180119,-80.094644
-29070=33.916667,-81.449233
-29072=34.001778,-81.272410
-29073=33.888739,-81.238803
-29074=34.441127,-80.818402
-29075=34.218134,-81.299071
-29078=34.182184,-80.708825
-29079=34.286517,-80.113717
-29080=34.012164,-80.085577
-29081=33.089080,-81.047373
-29082=33.038215,-80.939141
-29101=34.460212,-80.247195
-29102=33.641983,-80.188481
-29104=34.001026,-80.213437
-29105=33.806395,-81.593579
-29107=33.529824,-81.124331
-29108=34.305524,-81.627342
-29111=33.789038,-80.006369
-29112=33.625345,-81.081592
-29113=33.432453,-81.135322
-29114=33.954301,-79.932279
-29115=33.477386,-80.849144
-29117=33.498262,-80.848831
-29118=33.569394,-80.888558
-29122=34.238809,-81.328334
-29123=33.764652,-81.271451
-29125=33.702759,-80.462307
-29126=34.328933,-81.419482
-29127=34.153252,-81.512463
-29128=34.095053,-80.526184
-29129=33.789287,-81.672715
-29130=34.331608,-80.880412
-29133=33.358911,-80.803127
-29135=33.701219,-80.757171
-29137=33.596191,-81.321416
-29138=34.042392,-81.776152
-29142=33.463477,-80.524523
-29145=34.228719,-81.766201
-29146=33.508249,-81.295412
-29147=34.091766,-80.966488
-29148=33.534198,-80.337458
-29150=33.874774,-80.354069
-29152=33.972292,-80.465816
-29153=33.959249,-80.308378
-29154=33.879261,-80.440418
-29160=33.746888,-81.035516
-29161=34.103650,-79.943426
-29162=33.885889,-80.014019
-29163=33.429587,-80.439904
-29164=33.662168,-81.416471
-29166=33.901807,-81.705732
-29168=33.848449,-80.540767
-29169=33.997527,-81.097406
-29170=33.937674,-81.147203
-29172=33.912417,-81.076978
-29175=34.443849,-80.598356
-29178=34.493359,-81.606734
-29180=34.366465,-81.093684
-29201=33.982484,-81.028098
-29202=33.993558,-81.031002
-29203=34.101723,-81.042085
-29204=34.029148,-81.002526
-29205=33.990057,-80.997249
-29206=34.026415,-80.958995
-29207=34.042447,-80.845986
-29208=33.998133,-81.028152
-29209=33.926751,-80.950364
-29210=34.046162,-81.106580
-29212=34.076232,-81.198752
-29223=34.092634,-80.919271
-29225=33.996177,-81.025028
-29229=34.139526,-80.888209
-29301=34.934028,-82.010697
-29302=34.884446,-81.843600
-29303=34.995627,-81.960400
-29306=34.892633,-81.921504
-29307=34.982716,-81.831555
-29316=35.043045,-81.975107
-29320=34.958401,-81.993676
-29321=34.714655,-81.741066
-29322=35.121041,-82.132234
-29323=35.126341,-81.907463
-29324=34.983686,-81.826635
-29325=34.465141,-81.849816
-29329=34.994511,-81.835995
-29330=35.052634,-81.804153
-29331=34.651836,-81.844085
-29332=34.278760,-81.970367
-29333=34.971201,-81.910226
-29334=34.905551,-82.124414
-29335=34.646696,-81.904469
-29338=35.135513,-82.001598
-29340=34.972313,-81.585917
-29341=35.111910,-81.713162
-29346=34.945078,-81.836373
-29349=35.067335,-82.068095
-29351=34.421034,-81.808045
-29353=34.830741,-81.648604
-29355=34.289571,-81.826418
-29356=35.142074,-82.280831
-29360=34.498690,-82.051054
-29364=34.762480,-81.470669
-29365=34.980991,-82.171853
-29368=35.081579,-81.863411
-29369=34.865620,-82.019463
-29370=34.373805,-81.963361
-29372=34.901769,-81.711278
-29373=34.924482,-81.747544
-29374=34.784549,-81.853472
-29375=34.861302,-82.113804
-29376=34.811382,-81.944219
-29377=34.930629,-82.095109
-29378=34.966907,-81.968539
-29379=34.682350,-81.608729
-29384=34.340248,-82.090128
-29385=34.972963,-82.101417
-29388=34.764315,-82.044633
-29401=32.777180,-79.932000
-29403=32.805900,-79.943180
-29404=32.898999,-80.049739
-29405=32.856252,-79.981994
-29406=32.937267,-80.035245
-29407=32.798930,-79.997803
-29409=32.796088,-79.960493
-29410=32.932710,-80.002982
-29412=32.711469,-79.952603
-29414=32.839966,-80.089182
-29418=32.909523,-80.094219
-29420=32.931762,-80.100722
-29423=32.978760,-80.071205
-29424=32.783637,-79.937365
-29426=32.797192,-80.370638
-29429=32.973563,-79.650117
-29431=33.278777,-79.882079
-29432=33.231512,-80.808866
-29434=33.140888,-79.843725
-29435=32.972972,-80.466445
-29436=33.315358,-80.187250
-29437=33.139994,-80.431756
-29438=32.564708,-80.322390
-29439=32.647997,-79.960079
-29440=33.381110,-79.329760
-29445=32.997548,-79.966641
-29446=32.630668,-80.551510
-29448=33.255570,-80.452728
-29449=32.700369,-80.287056
-29450=33.065935,-79.784197
-29451=32.822611,-79.754581
-29452=32.677951,-80.461468
-29453=33.225592,-79.642781
-29455=32.624718,-80.040587
-29456=32.985877,-80.115440
-29458=33.093336,-79.461188
-29461=33.159784,-80.007539
-29464=32.816699,-79.858222
-29466=32.877758,-79.792013
-29468=33.425634,-80.056991
-29469=33.257863,-80.056370
-29470=32.826929,-80.253739
-29471=33.192675,-80.670417
-29472=33.045536,-80.326698
-29474=32.884258,-80.523838
-29475=32.957264,-80.806480
-29477=33.163169,-80.565210
-29479=33.380638,-79.890574
-29481=33.108529,-80.800481
-29482=32.764502,-79.854987
-29483=33.057779,-80.182910
-29485=32.947923,-80.189918
-29487=32.657682,-80.183948
-29488=32.906763,-80.672836
-29492=32.903802,-79.911163
-29493=33.034143,-80.842844
-29501=34.205933,-79.826260
-29505=34.130066,-79.688893
-29506=34.221377,-79.650336
-29510=33.454312,-79.613121
-29511=33.975732,-79.122716
-29512=34.619033,-79.718041
-29516=34.437454,-79.634640
-29518=33.788608,-79.847975
-29519=34.018637,-79.359821
-29520=34.679486,-79.927292
-29525=34.552415,-79.540885
-29526=33.847406,-78.947093
-29527=33.785083,-79.140176
-29530=33.996055,-79.740075
-29532=34.280331,-79.869336
-29536=34.419502,-79.373048
-29540=34.377298,-79.846185
-29541=34.064949,-79.740750
-29543=34.287605,-79.265927
-29544=33.926098,-79.255583
-29545=34.163660,-78.966477
-29546=33.883845,-79.349409
-29547=34.496287,-79.334829
-29550=34.399975,-80.082806
-29554=33.704050,-79.381598
-29555=33.845583,-79.483856
-29556=33.668227,-79.763139
-29560=33.827895,-79.742142
-29563=34.353366,-79.208673
-29564=33.449386,-79.848408
-29565=34.358052,-79.499289
-29566=33.873402,-78.666957
-29567=34.560972,-79.432683
-29568=33.913616,-78.750292
-29569=34.032632,-78.911583
-29570=34.667866,-79.562707
-29571=34.135123,-79.425041
-29572=33.772568,-78.785662
-29574=34.165413,-79.260831
-29575=33.629132,-78.970412
-29576=33.562090,-79.061087
-29577=33.698452,-78.902659
-29579=33.753481,-78.916375
-29580=33.653101,-79.551975
-29581=34.195802,-79.113483
-29582=33.838529,-78.660551
-29583=33.977851,-79.571077
-29584=34.583313,-80.065768
-29585=33.520097,-79.135803
-29588=33.671137,-79.024270
-29590=33.568920,-79.848696
-29591=33.937999,-79.762290
-29592=34.264635,-79.483865
-29593=34.493107,-79.856964
-29594=34.640233,-79.577360
-29596=34.744162,-79.830739
-29601=34.847112,-82.402264
-29605=34.774425,-82.376610
-29607=34.812790,-82.331714
-29609=34.912592,-82.388170
-29611=34.830934,-82.458497
-29613=34.924255,-82.440488
-29614=34.873771,-82.363149
-29615=34.856825,-82.296139
-29617=34.911021,-82.468095
-29620=34.182407,-82.425607
-29621=34.506671,-82.605272
-29624=34.435943,-82.624115
-29625=34.555099,-82.765677
-29626=34.460802,-82.756514
-29627=34.518602,-82.476359
-29628=34.089135,-82.559262
-29630=34.738673,-82.799161
-29631=34.681593,-82.817762
-29634=34.675278,-82.835901
-29635=35.077658,-82.626703
-29638=34.363867,-82.338204
-29639=34.303669,-82.428794
-29640=34.877710,-82.575421
-29642=34.776943,-82.563722
-29643=34.516357,-82.996359
-29644=34.668418,-82.190145
-29645=34.588013,-82.127041
-29646=34.136053,-82.148470
-29649=34.238919,-82.145019
-29650=34.898138,-82.258067
-29651=35.023830,-82.279564
-29653=34.306003,-82.232469
-29654=34.460528,-82.361886
-29655=34.264095,-82.640492
-29657=34.767066,-82.686594
-29658=34.760705,-83.284526
-29659=34.209770,-82.646988
-29661=35.147593,-82.529539
-29662=34.778208,-82.301835
-29664=34.860889,-83.157553
-29665=34.724825,-82.914632
-29666=34.113326,-81.979552
-29667=34.764792,-82.756690
-29669=34.638704,-82.412542
-29670=34.643979,-82.723237
-29671=34.934777,-82.728691
-29672=34.751278,-82.934285
-29673=34.715864,-82.455520
-29676=34.950446,-82.983481
-29678=34.634470,-82.937301
-29680=34.685122,-82.288811
-29681=34.767679,-82.225003
-29682=34.836191,-82.853397
-29683=35.029999,-82.494173
-29684=34.379432,-82.718704
-29685=34.991238,-82.842298
-29686=34.958106,-83.053044
-29687=34.986636,-82.327451
-29689=34.534253,-82.868342
-29690=35.059806,-82.417198
-29691=34.783465,-83.083658
-29692=34.412630,-82.219492
-29693=34.644394,-83.152437
-29696=34.781122,-83.008462
-29697=34.625593,-82.548639
-29702=35.116068,-81.473073
-29704=34.832120,-80.909792
-29706=34.715558,-81.234530
-29707=34.974384,-80.862388
-29708=35.048705,-80.987118
-29709=34.720167,-80.098457
-29710=35.106284,-81.221471
-29712=34.797966,-80.975531
-29714=34.712239,-80.915313
-29715=35.009844,-80.928739
-29717=34.950733,-81.448844
-29718=34.624163,-80.331295
-29720=34.740563,-80.732729
-29724=34.773948,-81.011121
-29726=34.860843,-81.236135
-29727=34.719265,-80.264601
-29728=34.764953,-80.400558
-29729=34.689134,-81.006760
-29730=34.889889,-81.017848
-29732=34.971166,-81.081284
-29733=34.939585,-81.031961
-29741=34.725288,-80.195526
-29742=34.869975,-81.392257
-29743=35.012139,-81.390396
-29745=34.990942,-81.214095
-29801=33.588993,-81.697037
-29803=33.490342,-81.762819
-29805=33.647579,-81.604076
-29809=33.418902,-81.692490
-29810=32.986368,-81.378110
-29812=33.231937,-81.428404
-29816=33.500764,-81.871584
-29817=33.370534,-81.273172
-29819=34.044227,-82.227378
-29821=33.643047,-82.107049
-29824=33.819698,-81.993370
-29826=33.385382,-81.359584
-29827=32.963155,-81.253906
-29828=33.522812,-81.828197
-29829=33.574720,-81.857718
-29831=33.297451,-81.799578
-29832=33.838994,-81.803656
-29834=33.512930,-81.856747
-29835=33.919499,-82.288971
-29836=33.126708,-81.557127
-29838=33.747484,-82.151080
-29840=34.007202,-82.521302
-29841=33.526407,-81.939337
-29842=33.457043,-81.860710
-29843=33.182069,-81.179772
-29844=33.769606,-82.241925
-29845=33.817844,-82.201423
-29847=33.704138,-81.847277
-29848=33.970417,-82.075911
-29849=33.103626,-81.238347
-29850=33.609668,-81.816976
-29851=33.507439,-81.811783
-29853=33.403112,-81.422644
-29856=33.485256,-81.511831
-29860=33.614687,-81.984429
-29899=33.928023,-82.250602
-29902=32.334933,-80.684304
-29904=32.457441,-80.717905
-29905=32.351589,-80.682217
-29906=32.445112,-80.752875
-29907=32.474692,-80.599222
-29909=32.336836,-80.847799
-29910=32.214521,-80.891570
-29911=32.941160,-81.141681
-29912=32.584548,-80.928494
-29915=32.122105,-80.856036
-29916=32.718462,-80.967103
-29918=32.744462,-81.247365
-29920=32.364221,-80.553611
-29921=32.682581,-81.172909
-29922=32.625831,-81.277273
-29923=32.859518,-81.246422
-29924=32.876885,-81.111209
-29926=32.238247,-80.740263
-29927=32.226776,-81.057876
-29928=32.163171,-80.755765
-29929=32.927872,-80.938536
-29932=32.818148,-81.348641
-29934=32.591591,-81.107381
-29935=32.383349,-80.693678
-29936=32.482042,-80.971987
-29939=32.672512,-81.244025
-29940=32.545910,-80.713616
-29941=32.550309,-80.806715
-29943=32.479249,-81.192323
-29944=32.795699,-81.034521
-29945=32.673313,-80.765932
-30002=33.773335,-84.261667
-30004=34.145614,-84.291894
-30005=34.089039,-84.217099
-30008=33.897634,-84.589572
-30009=34.079096,-84.305262
-30011=34.019859,-83.837163
-30012=33.717806,-84.002515
-30013=33.645170,-83.972188
-30014=33.580062,-83.823102
-30016=33.517433,-83.928703
-30017=33.890533,-83.961879
-30019=33.975610,-83.883747
-30021=33.806929,-84.237588
-30022=34.029865,-84.239745
-30024=34.062971,-84.090770
-30025=33.655902,-83.696581
-30028=34.293050,-84.176167
-30030=33.771947,-84.290270
-30032=33.740666,-84.264463
-30033=33.811659,-84.283230
-30034=33.690867,-84.248622
-30035=33.724452,-84.204244
-30038=33.666460,-84.139855
-30039=33.799851,-84.035678
-30040=34.210349,-84.187794
-30041=34.204626,-84.100357
-30043=33.999276,-84.009512
-30044=33.922046,-84.065671
-30045=33.936518,-83.927669
-30046=33.948632,-83.995766
-30047=33.871867,-84.112585
-30052=33.815151,-83.893561
-30054=33.673250,-83.871806
-30055=33.497411,-83.749784
-30056=33.500250,-83.659584
-30058=33.740330,-84.108844
-30060=33.926431,-84.541629
-30062=34.005578,-84.468945
-30064=33.940455,-84.609708
-30066=34.032388,-84.505154
-30067=33.934278,-84.462185
-30068=33.968116,-84.431704
-30070=33.574432,-83.894702
-30071=33.940652,-84.206734
-30072=33.792116,-84.206463
-30075=34.055084,-84.390492
-30076=34.028483,-84.311423
-30078=33.861019,-84.017993
-30079=33.792055,-84.257369
-30080=33.869940,-84.498081
-30082=33.854654,-84.536437
-30083=33.797412,-84.197984
-30084=33.854097,-84.216155
-30087=33.805871,-84.126928
-30088=33.756052,-84.182363
-30092=33.972386,-84.231986
-30093=33.908536,-84.177349
-30094=33.612505,-84.051523
-30096=33.974292,-84.145426
-30097=34.026142,-84.145592
-30101=34.034515,-84.707349
-30102=34.110196,-84.631357
-30103=34.366336,-84.917546
-30104=34.087138,-85.056489
-30105=34.432548,-85.172442
-30106=33.839010,-84.628247
-30107=34.336291,-84.345793
-30108=33.531700,-85.262996
-30110=33.744459,-85.135938
-30113=33.850746,-85.205308
-30114=34.247838,-84.524468
-30115=34.204092,-84.400462
-30116=33.540590,-85.003082
-30117=33.581851,-85.132439
-30118=33.572388,-85.103620
-30120=34.167879,-84.852014
-30121=34.209221,-84.778006
-30122=33.766909,-84.641356
-30124=34.133691,-85.345801
-30125=34.000316,-85.276531
-30126=33.815025,-84.553831
-30127=33.874556,-84.694713
-30132=33.988832,-84.858967
-30134=33.777518,-84.781392
-30135=33.670520,-84.734280
-30137=34.126177,-84.761354
-30139=34.432341,-84.705495
-30141=33.860430,-84.769883
-30143=34.459958,-84.431752
-30144=34.036864,-84.591009
-30145=34.245660,-84.985878
-30147=34.150627,-85.208239
-30148=34.458792,-84.258613
-30149=34.309754,-85.226015
-30152=33.989250,-84.645920
-30153=33.959882,-85.054452
-30157=33.884708,-84.871928
-30161=34.242301,-85.171371
-30164=33.396015,-83.834275
-30165=34.302923,-85.269103
-30168=33.783542,-84.588106
-30170=33.429229,-85.169473
-30171=34.343395,-84.726262
-30173=34.133121,-85.153505
-30175=34.534915,-84.526711
-30176=33.766844,-85.301029
-30177=34.411307,-84.377876
-30178=34.095453,-84.971074
-30179=33.779335,-85.013502
-30180=33.717103,-84.918032
-30182=33.655819,-85.248832
-30183=34.338804,-84.602425
-30184=34.252072,-84.741005
-30185=33.519802,-84.918098
-30187=33.662549,-84.847233
-30188=34.123528,-84.457649
-30189=34.124224,-84.570679
-30204=33.056050,-84.121042
-30205=33.267427,-84.475138
-30206=33.096058,-84.458228
-30213=33.589298,-84.636766
-30214=33.490464,-84.485997
-30215=33.391613,-84.456432
-30216=33.228851,-83.884863
-30217=33.281895,-85.133844
-30218=33.129318,-84.587178
-30220=33.225499,-84.823547
-30222=33.044355,-84.743495
-30223=33.288801,-84.279923
-30224=33.204493,-84.239727
-30228=33.404147,-84.307350
-30230=33.164490,-84.920565
-30233=33.292157,-83.969544
-30234=33.323884,-84.030964
-30236=33.524478,-84.325439
-30238=33.493294,-84.379160
-30240=33.036764,-85.120092
-30241=33.022315,-84.949516
-30248=33.351576,-84.105959
-30250=33.436535,-84.314213
-30251=33.198174,-84.698112
-30252=33.473512,-84.057165
-30253=33.448926,-84.183570
-30256=33.007484,-84.309900
-30257=33.143414,-84.186220
-30258=32.972488,-84.449100
-30259=33.266198,-84.737458
-30260=33.584687,-84.327348
-30263=33.388415,-84.858937
-30265=33.418625,-84.713134
-30268=33.546430,-84.722632
-30269=33.391904,-84.570611
-30273=33.583798,-84.271027
-30274=33.554561,-84.399687
-30275=33.437124,-84.874183
-30276=33.263670,-84.570824
-30277=33.375308,-84.649196
-30281=33.567898,-84.193388
-30284=33.342874,-84.288959
-30285=32.987673,-84.258191
-30286=32.879167,-84.330566
-30288=33.652831,-84.327109
-30289=33.322887,-84.633870
-30290=33.476407,-84.589709
-30291=33.575891,-84.543792
-30292=33.168489,-84.393225
-30293=32.976649,-84.611505
-30294=33.639853,-84.267150
-30295=33.090279,-84.310405
-30296=33.563185,-84.441151
-30297=33.615841,-84.373002
-30303=33.753259,-84.389953
-30305=33.835696,-84.389116
-30306=33.789323,-84.351498
-30307=33.771079,-84.333600
-30308=33.771126,-84.378108
-30309=33.799884,-84.385805
-30310=33.726586,-84.425995
-30311=33.723262,-84.475994
-30312=33.744725,-84.375231
-30313=33.764539,-84.397339
-30314=33.757576,-84.432245
-30315=33.702829,-84.382515
-30316=33.711546,-84.331796
-30317=33.747999,-84.315586
-30318=33.792303,-84.447862
-30319=33.875954,-84.334763
-30322=33.793597,-84.326127
-30324=33.818405,-84.358175
-30326=33.849518,-84.363971
-30327=33.869694,-84.417300
-30328=33.932538,-84.385947
-30329=33.827479,-84.323017
-30331=33.707455,-84.544149
-30332=33.778271,-84.404537
-30334=33.748855,-84.387243
-30336=33.738366,-84.567535
-30337=33.640147,-84.450081
-30338=33.946218,-84.318119
-30339=33.876320,-84.462090
-30340=33.897873,-84.252804
-30341=33.888505,-84.289532
-30342=33.882179,-84.375289
-30344=33.676362,-84.460794
-30345=33.851722,-84.283624
-30346=33.924230,-84.338876
-30349=33.622488,-84.523908
-30350=33.980254,-84.330016
-30354=33.661498,-84.386895
-30360=33.933808,-84.272577
-30363=33.791004,-84.398978
-30401=32.599617,-82.352575
-30410=32.188589,-82.513470
-30411=32.128124,-82.794380
-30412=32.078922,-82.490792
-30413=32.888980,-82.510648
-30415=32.324484,-81.603497
-30417=32.170468,-81.920992
-30420=32.288422,-82.152736
-30421=32.179599,-82.107566
-30423=32.148806,-81.830641
-30425=32.682022,-82.094572
-30426=33.035037,-81.628674
-30427=31.922905,-81.962446
-30428=32.224545,-82.715130
-30429=32.165446,-81.936169
-30434=33.025668,-82.383791
-30436=32.154894,-82.293036
-30438=32.165611,-82.020521
-30439=32.407098,-82.078788
-30441=32.797050,-82.224945
-30442=32.799793,-81.983529
-30445=32.163934,-82.588515
-30446=32.563486,-81.463016
-30448=32.488240,-82.363384
-30449=32.515224,-81.561033
-30450=32.562251,-81.923131
-30451=32.390728,-81.952461
-30452=32.325315,-81.888781
-30453=32.011133,-82.121758
-30454=32.436077,-82.730358
-30455=32.690978,-81.802282
-30456=32.980717,-81.796140
-30457=32.400272,-82.567512
-30458=32.399676,-81.828266
-30460=32.418936,-81.781698
-30461=32.511828,-81.718844
-30464=32.437229,-82.224961
-30467=32.753793,-81.603534
-30470=32.313907,-82.561036
-30471=32.543263,-82.180910
-30473=32.016897,-82.468830
-30474=32.238578,-82.417773
-30475=32.224698,-82.368594
-30477=32.861525,-82.401582
-30501=34.319072,-83.814393
-30504=34.271989,-83.891026
-30506=34.346947,-83.895595
-30507=34.247502,-83.773850
-30510=34.444855,-83.570701
-30511=34.449698,-83.486672
-30512=34.859530,-83.960571
-30513=34.821043,-84.322383
-30516=34.380913,-83.030697
-30517=34.130358,-83.797204
-30518=34.130846,-84.027398
-30519=34.087437,-83.944991
-30520=34.340050,-83.082621
-30521=34.362448,-83.292322
-30522=34.795978,-84.340155
-30523=34.716543,-83.552878
-30525=34.907217,-83.369483
-30527=34.480827,-83.781847
-30528=34.621918,-83.794620
-30529=34.217179,-83.482653
-30530=34.222921,-83.393799
-30531=34.512602,-83.592206
-30533=34.563560,-84.020072
-30534=34.431100,-84.144329
-30535=34.573655,-83.574769
-30536=34.652002,-84.359442
-30537=34.976125,-83.320199
-30538=34.500986,-83.263844
-30540=34.728127,-84.543528
-30541=34.912906,-84.539104
-30542=34.178052,-83.909174
-30543=34.290463,-83.649536
-30545=34.762511,-83.762189
-30546=34.898796,-83.696585
-30547=34.361833,-83.455885
-30548=34.090470,-83.767003
-30549=34.107990,-83.577448
-30552=34.770857,-83.443724
-30553=34.443769,-83.084137
-30554=34.398083,-83.661982
-30555=34.971217,-84.436342
-30557=34.479804,-83.184960
-30558=34.264056,-83.566788
-30559=34.957885,-84.274319
-30560=34.876756,-84.204831
-30562=34.921474,-83.381098
-30563=34.567865,-83.454897
-30564=34.471046,-83.887074
-30565=34.086211,-83.411497
-30566=34.236212,-83.895210
-30567=34.180744,-83.676541
-30568=34.959487,-83.432795
-30571=34.707523,-83.694014
-30572=34.735794,-84.072487
-30573=34.749867,-83.416673
-30575=34.207642,-83.713476
-30576=34.834627,-83.452192
-30577=34.552419,-83.325929
-30581=34.795248,-83.423725
-30582=34.958918,-83.900404
-30601=33.999151,-83.346993
-30602=33.944542,-83.372937
-30605=33.905911,-83.323577
-30606=33.937551,-83.424964
-30607=34.017305,-83.447551
-30609=33.949464,-83.382007
-30619=33.855811,-83.244694
-30620=33.929472,-83.758422
-30621=33.791462,-83.492132
-30622=33.924456,-83.517926
-30623=33.726758,-83.541819
-30624=34.186246,-83.044149
-30625=33.520284,-83.333530
-30627=33.972176,-82.963748
-30628=34.028875,-83.213297
-30629=34.076932,-83.110117
-30630=33.913366,-83.147279
-30631=33.559319,-82.875272
-30633=34.180903,-83.249172
-30634=34.195694,-82.945483
-30635=34.105769,-82.793148
-30641=33.778357,-83.574025
-30642=33.554175,-83.194404
-30643=34.363471,-82.908806
-30646=34.085104,-83.299382
-30648=33.879979,-83.052055
-30650=33.583689,-83.473544
-30655=33.781688,-83.696095
-30656=33.862137,-83.716175
-30660=33.789216,-82.951866
-30662=34.267311,-83.154100
-30663=33.615822,-83.600873
-30664=33.556259,-82.798319
-30665=33.542620,-83.062914
-30666=33.962081,-83.584612
-30667=33.776347,-83.145330
-30668=33.895747,-82.697208
-30669=33.672149,-83.120938
-30673=33.710915,-82.713973
-30677=33.783202,-83.373342
-30678=33.453336,-83.065445
-30680=33.996105,-83.700168
-30683=33.946987,-83.256270
-30701=34.492384,-84.958336
-30705=34.744142,-84.731404
-30707=34.771941,-85.359193
-30708=34.961786,-84.664588
-30710=34.953194,-84.911171
-30711=34.921047,-84.711807
-30720=34.733644,-85.000824
-30721=34.788636,-84.916082
-30725=34.924777,-85.352675
-30726=34.976243,-85.139577
-30728=34.684875,-85.225790
-30730=34.348052,-85.417499
-30731=34.587768,-85.477364
-30733=34.414593,-85.050554
-30734=34.532804,-84.714916
-30735=34.602883,-84.882661
-30736=34.902663,-85.133970
-30738=34.796552,-85.480936
-30739=34.805931,-85.215984
-30740=34.757276,-85.072036
-30741=34.952685,-85.281297
-30742=34.950584,-85.243239
-30746=34.577083,-85.027273
-30747=34.502597,-85.302791
-30750=34.941414,-85.388227
-30751=34.984504,-84.732690
-30752=34.914982,-85.537961
-30753=34.582280,-85.285800
-30755=34.868030,-85.042750
-30756=34.897650,-84.977052
-30757=34.935801,-85.441516
-30802=33.601364,-82.299939
-30803=33.133196,-82.549061
-30805=33.279569,-82.191791
-30807=33.457408,-82.648621
-30808=33.384114,-82.391923
-30809=33.556030,-82.170395
-30810=33.235661,-82.589853
-30812=33.367233,-82.028573
-30813=33.471668,-82.220051
-30814=33.440353,-82.299698
-30815=33.287235,-82.088937
-30816=33.156206,-82.166263
-30817=33.778388,-82.430194
-30818=33.276427,-82.338966
-30820=33.217572,-82.709869
-30821=33.492107,-82.737994
-30822=32.926337,-81.852686
-30823=33.226005,-82.453380
-30824=33.512953,-82.514855
-30828=33.368038,-82.656312
-30830=33.079811,-81.975337
-30833=33.191250,-82.353132
-30901=33.437213,-81.956156
-30903=33.490148,-82.162688
-30904=33.478289,-82.014102
-30905=33.415160,-82.142573
-30906=33.346732,-81.967703
-30907=33.523809,-82.085688
-30909=33.470481,-82.083045
-30912=33.470510,-81.988094
-31001=31.976256,-83.339665
-31002=32.554049,-82.595322
-31003=32.606281,-83.212516
-31005=32.544201,-83.597459
-31006=32.580721,-84.250733
-31007=32.188514,-83.927321
-31008=32.665346,-83.785924
-31009=32.281608,-83.019789
-31011=32.129553,-83.074859
-31012=32.394344,-83.173715
-31014=32.415886,-83.349077
-31015=31.935000,-83.774945
-31016=32.842251,-84.115961
-31017=32.621094,-83.232220
-31018=32.977092,-82.627586
-31019=32.424244,-83.051342
-31020=32.690507,-83.498578
-31021=32.493427,-82.943054
-31022=32.511540,-83.116631
-31023=32.183213,-83.199454
-31024=33.320918,-83.375490
-31025=32.335837,-83.741003
-31027=32.581117,-82.804219
-31028=32.631200,-83.696300
-31029=33.040249,-83.934515
-31030=32.570683,-83.890124
-31031=32.866286,-83.328340
-31032=33.011683,-83.569169
-31033=33.079307,-83.434007
-31035=32.845795,-82.696035
-31036=32.282016,-83.523225
-31037=32.080832,-82.968592
-31038=33.133747,-83.646996
-31039=32.594332,-84.387121
-31041=32.333518,-84.204238
-31042=32.761346,-83.176859
-31044=32.654991,-83.384798
-31045=33.280835,-82.785442
-31046=33.054338,-83.796097
-31047=32.467280,-83.595342
-31049=32.686436,-82.525311
-31050=32.739657,-83.955974
-31051=32.155877,-83.886797
-31052=32.789015,-83.840075
-31054=32.889861,-83.214067
-31055=32.005073,-82.900735
-31057=32.435000,-83.936561
-31058=32.488651,-84.410396
-31060=31.975665,-83.063507
-31061=33.077282,-83.246171
-31062=33.046624,-83.215582
-31063=32.288966,-83.963260
-31064=33.286297,-83.702346
-31065=32.550166,-83.163351
-31066=32.811058,-84.014751
-31067=32.860339,-82.936674
-31068=32.328618,-84.117049
-31069=32.440068,-83.748603
-31070=32.186580,-83.789771
-31071=32.129447,-83.540846
-31072=31.974465,-83.566840
-31075=32.351617,-82.956349
-31076=32.538870,-84.110141
-31077=31.921144,-83.198370
-31078=32.694814,-84.075661
-31079=31.942896,-83.458767
-31081=32.419232,-84.282732
-31082=32.996417,-82.903117
-31083=32.040351,-82.814353
-31084=31.961703,-83.607862
-31085=33.427349,-83.627700
-31087=33.251362,-83.001031
-31088=32.579353,-83.650325
-31089=32.850766,-82.860314
-31090=32.829744,-83.068206
-31091=32.237927,-83.704527
-31092=32.090962,-83.785552
-31093=32.647873,-83.657206
-31094=33.113614,-82.795759
-31096=32.723279,-82.707269
-31097=32.890411,-84.166895
-31098=32.614215,-83.568560
-31201=32.806321,-83.617860
-31204=32.848513,-83.674775
-31206=32.800857,-83.693698
-31207=32.828448,-83.649156
-31210=32.907633,-83.735052
-31211=32.901115,-83.576267
-31213=32.840081,-83.639350
-31216=32.729664,-83.685340
-31217=32.844147,-83.500044
-31220=32.872019,-83.809688
-31301=31.750629,-81.602350
-31302=32.121659,-81.341739
-31303=32.505422,-81.313427
-31304=31.510772,-81.354554
-31305=31.396816,-81.393957
-31307=32.172843,-81.398602
-31308=32.180316,-81.471289
-31309=31.879886,-81.438392
-31312=32.307479,-81.403826
-31313=31.844789,-81.612554
-31314=31.870154,-81.631076
-31315=31.892873,-81.588978
-31316=31.723569,-81.714287
-31318=32.142025,-81.371941
-31320=31.765504,-81.368411
-31321=32.185059,-81.659775
-31322=32.109885,-81.255465
-31323=31.687499,-81.427655
-31324=31.851496,-81.262181
-31326=32.295200,-81.229931
-31327=31.467922,-81.248753
-31328=32.011169,-80.865603
-31329=32.425638,-81.350634
-31331=31.511701,-81.443246
-31401=32.074679,-81.088261
-31404=32.051559,-81.049211
-31405=32.039396,-81.179116
-31406=31.980523,-81.085190
-31407=32.186053,-81.192148
-31408=32.117550,-81.184333
-31409=32.016357,-81.144544
-31410=32.028784,-80.992683
-31411=31.942991,-81.034651
-31415=32.078546,-81.126056
-31419=31.997154,-81.230649
-31501=31.223623,-82.350198
-31503=31.204020,-82.419920
-31510=31.545485,-82.440693
-31512=31.545696,-83.018356
-31513=31.777050,-82.347726
-31516=31.309373,-82.253250
-31518=31.512607,-82.185093
-31519=31.684697,-82.879186
-31520=31.180919,-81.493973
-31522=31.257252,-81.342026
-31523=31.212645,-81.616811
-31524=31.240597,-81.473387
-31525=31.321100,-81.526435
-31527=31.066990,-81.433275
-31532=31.722070,-82.758822
-31533=31.560258,-82.828039
-31535=31.459466,-82.867497
-31537=30.885212,-82.005230
-31539=31.831700,-82.605344
-31542=31.142701,-82.119407
-31543=31.334089,-81.828853
-31544=31.840482,-82.963883
-31545=31.663955,-81.934173
-31546=31.509811,-81.777301
-31547=30.790547,-81.559737
-31548=30.796163,-81.698233
-31549=31.928200,-82.714917
-31550=31.147080,-82.595623
-31551=31.495826,-82.273212
-31552=31.289898,-82.599146
-31553=31.181701,-81.972104
-31554=31.486069,-82.620813
-31555=31.705666,-82.080662
-31556=31.414003,-82.112013
-31557=31.375316,-82.098948
-31558=30.899344,-81.427587
-31560=31.499205,-82.021183
-31561=31.209066,-81.309933
-31562=30.422391,-82.170373
-31563=31.751319,-82.181464
-31565=31.066705,-81.632529
-31566=31.182755,-81.805594
-31567=31.630886,-82.706228
-31568=31.013362,-81.819093
-31569=30.896489,-81.697139
-31601=30.758721,-83.319023
-31602=30.868774,-83.342695
-31605=30.929823,-83.223032
-31606=30.806085,-83.190044
-31620=31.117296,-83.434236
-31622=31.378501,-83.192225
-31623=31.074434,-82.644004
-31624=31.296189,-82.730338
-31625=30.992647,-83.533505
-31626=30.778489,-83.796406
-31627=31.043183,-83.392615
-31629=30.816844,-83.689394
-31630=30.950818,-82.876732
-31631=30.643635,-82.741456
-31632=30.987018,-83.360313
-31634=31.042485,-82.767459
-31635=31.096714,-83.048818
-31636=30.730986,-83.111372
-31637=31.295967,-83.440212
-31638=30.906417,-83.512186
-31639=31.216548,-83.190727
-31641=30.919570,-83.092297
-31642=31.262914,-82.882627
-31643=30.773089,-83.556898
-31645=31.060719,-83.218688
-31647=31.208842,-83.427337
-31648=30.706502,-83.019027
-31649=30.963885,-82.995472
-31650=31.395823,-83.025392
-31698=30.848944,-83.289570
-31699=30.974915,-83.205199
-31701=31.552695,-84.159214
-31705=31.516890,-84.042942
-31707=31.586919,-84.206431
-31709=32.064806,-84.123242
-31711=32.190998,-84.130230
-31712=31.834992,-83.707348
-31714=31.720250,-83.693961
-31716=31.358537,-84.127936
-31719=32.090302,-84.310735
-31720=30.878167,-83.724533
-31721=31.525260,-84.301465
-31722=31.067453,-83.622768
-31730=31.194884,-84.310924
-31733=31.593190,-83.489763
-31735=31.969555,-83.973306
-31738=31.012696,-83.871858
-31743=31.908396,-83.991153
-31744=31.341346,-83.901613
-31747=31.176703,-83.587067
-31749=31.413590,-83.327184
-31750=31.736465,-83.215037
-31756=31.183017,-83.965760
-31757=30.871249,-83.903185
-31763=31.750045,-84.139141
-31764=31.976312,-84.088839
-31765=31.087551,-84.027154
-31768=31.189103,-83.841107
-31771=31.248233,-83.654247
-31772=31.724154,-83.961027
-31773=30.973428,-84.048091
-31774=31.565466,-83.263747
-31775=31.330841,-83.598579
-31778=30.974992,-83.700075
-31779=31.108022,-84.211198
-31780=32.031870,-84.388811
-31781=31.560577,-83.796293
-31783=31.758976,-83.470125
-31784=31.247250,-84.036670
-31787=31.899179,-84.243318
-31788=31.111441,-83.676797
-31789=31.479734,-83.739835
-31790=31.652476,-83.577968
-31791=31.529137,-83.894978
-31792=30.770798,-84.043704
-31793=31.462511,-83.593543
-31794=31.445884,-83.452678
-31795=31.473618,-83.687462
-31796=31.770118,-83.856468
-31798=31.613378,-83.065969
-31801=32.519338,-84.594755
-31803=32.285466,-84.493596
-31804=32.662266,-84.913411
-31805=32.263056,-84.739509
-31806=32.263441,-84.322724
-31807=32.638230,-84.800836
-31808=32.631102,-85.013200
-31810=32.568168,-84.524979
-31811=32.740952,-84.928172
-31812=32.640052,-84.402775
-31814=32.215860,-84.845643
-31815=32.030013,-84.844880
-31816=32.881465,-84.608150
-31820=32.579419,-84.824690
-31821=32.116128,-84.963449
-31822=32.864979,-84.910348
-31823=32.810641,-84.822587
-31824=32.051196,-84.519089
-31825=32.116195,-84.670900
-31826=32.792963,-84.703286
-31827=32.686718,-84.521816
-31829=32.562698,-84.731611
-31830=32.900708,-84.729063
-31831=32.685573,-84.706837
-31832=31.958169,-84.614896
-31833=32.842900,-85.091845
-31836=32.796402,-84.535090
-31901=32.465313,-84.980285
-31903=32.414148,-84.954244
-31904=32.554638,-85.010012
-31905=32.378795,-84.906850
-31906=32.467811,-84.950173
-31907=32.482037,-84.901475
-31909=32.548807,-84.924106
-32003=30.095584,-81.710162
-32008=29.926064,-82.914379
-32009=30.422502,-81.973824
-32011=30.571111,-81.839579
-32024=30.092008,-82.730993
-32025=30.107103,-82.579118
-32026=30.054149,-82.181681
-32033=29.788112,-81.434324
-32034=30.609692,-81.491720
-32038=29.935072,-82.692010
-32040=30.243515,-82.238887
-32043=29.937041,-81.732588
-32044=29.859458,-82.169415
-32046=30.701206,-81.916595
-32052=30.486131,-82.936084
-32053=30.575561,-83.126060
-32054=30.033807,-82.394253
-32055=30.270103,-82.624130
-32058=30.107546,-82.106933
-32059=30.384847,-83.256128
-32060=30.274413,-83.036329
-32061=30.097553,-82.510313
-32062=30.137457,-82.978338
-32063=30.247669,-82.112978
-32064=30.295625,-82.984108
-32065=30.152238,-81.797016
-32066=30.039765,-83.205802
-32068=30.083262,-81.890855
-32071=30.058118,-82.955835
-32072=30.188160,-82.424491
-32073=30.169821,-81.739144
-32079=29.977726,-81.807023
-32080=29.818745,-81.272860
-32081=30.131197,-81.407840
-32082=30.125226,-81.369578
-32083=30.114561,-82.232783
-32084=29.918419,-81.367545
-32086=29.766738,-81.306370
-32087=30.377434,-82.280460
-32091=29.929564,-82.127579
-32092=29.939406,-81.508166
-32094=30.188054,-82.821427
-32095=30.022752,-81.406577
-32096=30.534379,-82.626963
-32097=30.661202,-81.618793
-32102=29.137291,-81.546429
-32110=29.428804,-81.339209
-32112=29.431746,-81.565573
-32113=29.409977,-82.089218
-32114=29.192394,-81.046774
-32117=29.235588,-81.063969
-32118=29.209639,-81.002321
-32119=29.161116,-81.025740
-32124=29.170716,-81.141403
-32127=29.106272,-80.973670
-32128=29.100739,-81.071829
-32129=29.136974,-81.023957
-32130=29.148342,-81.341043
-32131=29.684293,-81.562375
-32132=28.979895,-80.920866
-32133=29.020177,-81.909262
-32134=29.385007,-81.837948
-32136=29.463717,-81.147387
-32137=29.581507,-81.218196
-32139=29.372165,-81.587309
-32140=29.762494,-81.866659
-32141=28.928953,-80.919135
-32145=29.677558,-81.421332
-32147=29.590868,-81.777146
-32148=29.617032,-81.883646
-32157=29.467372,-81.578437
-32159=28.933207,-81.898475
-32162=28.914383,-81.989560
-32164=29.517748,-81.230696
-32168=28.963773,-81.029413
-32169=28.965461,-80.866467
-32174=29.284784,-81.161348
-32176=29.331582,-81.062507
-32177=29.690907,-81.708149
-32179=29.088111,-81.895092
-32180=29.236246,-81.396788
-32181=29.507980,-81.601987
-32187=29.578946,-81.550038
-32189=29.550140,-81.647738
-32190=29.343340,-81.489008
-32193=29.504996,-81.645096
-32195=28.988080,-81.886336
-32202=30.324716,-81.647200
-32204=30.317014,-81.680811
-32205=30.298806,-81.721240
-32206=30.350191,-81.638776
-32207=30.289637,-81.640966
-32208=30.393090,-81.682946
-32209=30.361015,-81.696254
-32210=30.266582,-81.745526
-32211=30.332207,-81.582792
-32212=30.216924,-81.666829
-32216=30.277467,-81.582904
-32217=30.229180,-81.621158
-32218=30.487775,-81.667141
-32219=30.427093,-81.818966
-32220=30.368009,-81.871196
-32221=30.256279,-81.853581
-32222=30.216649,-81.828227
-32223=30.156644,-81.649266
-32224=30.270482,-81.468756
-32225=30.357756,-81.505829
-32226=30.481248,-81.506157
-32227=30.389189,-81.404408
-32228=30.391860,-81.400074
-32233=30.358873,-81.419388
-32234=30.225133,-81.984561
-32244=30.217669,-81.752545
-32246=30.293760,-81.517139
-32250=30.280559,-81.412074
-32254=30.340961,-81.734788
-32256=30.175204,-81.472784
-32257=30.189349,-81.612470
-32258=30.140712,-81.551712
-32259=30.075017,-81.586854
-32266=30.317386,-81.409066
-32277=30.377450,-81.593947
-32301=30.427753,-84.258472
-32303=30.515518,-84.341641
-32304=30.452484,-84.353057
-32305=30.332299,-84.300654
-32308=30.477450,-84.226927
-32309=30.566830,-84.097649
-32310=30.385436,-84.512181
-32311=30.390100,-84.180808
-32312=30.605283,-84.229562
-32317=30.470481,-84.116694
-32320=29.731734,-85.111872
-32321=30.265440,-84.979665
-32322=29.953398,-84.579036
-32323=29.891511,-84.613733
-32324=30.654712,-84.783254
-32327=30.182261,-84.305327
-32328=29.751831,-84.909118
-32330=30.579934,-84.750533
-32331=30.444913,-83.637592
-32332=30.620273,-84.677031
-32333=30.607738,-84.417591
-32334=30.266237,-84.742472
-32336=30.260764,-83.847969
-32340=30.460330,-83.433967
-32343=30.478483,-84.504652
-32344=30.526078,-83.962287
-32346=29.990833,-84.384594
-32347=30.174157,-83.611588
-32348=29.977404,-83.596157
-32350=30.574962,-83.325801
-32351=30.520125,-84.675081
-32352=30.662261,-84.591627
-32355=30.172196,-84.208553
-32356=29.859235,-83.415003
-32358=30.105666,-84.558003
-32359=29.680070,-83.386649
-32361=30.357712,-83.988583
-32399=30.437040,-84.282546
-32401=30.159737,-85.660922
-32403=30.048562,-85.553231
-32404=30.189031,-85.506785
-32405=30.202068,-85.667403
-32407=30.198324,-85.790694
-32408=30.142185,-85.732678
-32409=30.356756,-85.653691
-32410=29.995187,-85.414223
-32413=30.310300,-85.905314
-32420=30.632365,-85.384570
-32421=30.524992,-85.172630
-32423=30.943777,-85.048909
-32424=30.362385,-85.083060
-32425=30.853184,-85.720492
-32426=30.946886,-85.370413
-32427=30.710491,-85.792286
-32428=30.615750,-85.572945
-32430=30.418361,-85.234083
-32431=30.787482,-85.410816
-32432=30.714871,-85.077571
-32433=30.851178,-86.200838
-32435=30.648635,-86.130200
-32437=30.436248,-85.909221
-32438=30.501235,-85.424174
-32439=30.468323,-86.112017
-32440=30.922426,-85.526190
-32442=30.678516,-85.016877
-32443=30.872521,-85.109420
-32444=30.239945,-85.651600
-32445=30.970520,-85.197338
-32446=30.848192,-85.231403
-32447=30.759950,-85.251574
-32448=30.671012,-85.223312
-32449=30.286718,-85.239598
-32455=30.638626,-85.962701
-32456=29.838635,-85.298379
-32459=30.360668,-86.185532
-32460=30.764089,-84.954234
-32461=30.289685,-86.027719
-32462=30.554200,-85.833399
-32463=30.631413,-85.590275
-32464=30.902879,-85.952559
-32465=30.007868,-85.181889
-32466=30.394388,-85.512372
-32501=30.428781,-87.222515
-32502=30.409367,-87.223506
-32503=30.459667,-87.213643
-32504=30.472486,-87.186673
-32505=30.454624,-87.260650
-32506=30.391628,-87.369394
-32507=30.340176,-87.374340
-32508=30.350614,-87.316902
-32509=30.468537,-87.342689
-32511=30.406055,-87.291696
-32514=30.531268,-87.221604
-32526=30.499226,-87.365573
-32530=30.598239,-87.030361
-32531=30.884038,-86.683468
-32533=30.610506,-87.326783
-32534=30.528939,-87.281718
-32535=30.963698,-87.346175
-32536=30.763783,-86.591616
-32539=30.779757,-86.478810
-32541=30.392765,-86.469506
-32542=30.464551,-86.525167
-32544=30.426974,-86.696265
-32547=30.474544,-86.667742
-32548=30.403001,-86.650482
-32550=30.384938,-86.345477
-32561=30.347061,-87.113185
-32563=30.396949,-87.028472
-32564=30.728808,-86.781915
-32565=30.892603,-87.131683
-32566=30.435956,-86.880343
-32567=30.923726,-86.449136
-32568=30.873178,-87.449977
-32569=30.410287,-86.731484
-32570=30.804825,-86.967268
-32571=30.674660,-87.208410
-32577=30.727473,-87.365012
-32578=30.506696,-86.447541
-32579=30.450903,-86.573473
-32580=30.490075,-86.514818
-32583=30.592511,-86.971003
-32601=29.648970,-82.324941
-32603=29.656712,-82.347500
-32605=29.679180,-82.372822
-32606=29.682064,-82.444115
-32607=29.647414,-82.419109
-32608=29.597009,-82.407808
-32609=29.772187,-82.283422
-32612=29.643120,-82.353845
-32615=29.819084,-82.486161
-32616=29.788495,-82.495256
-32617=29.308388,-82.074366
-32618=29.545873,-82.516538
-32619=29.762485,-82.859957
-32621=29.424698,-82.610144
-32622=29.908054,-82.318845
-32625=29.200616,-83.004494
-32626=29.423864,-82.899324
-32628=29.625434,-83.207000
-32631=29.704429,-82.092511
-32639=29.227004,-82.712558
-32640=29.580725,-82.083956
-32641=29.642524,-82.231714
-32643=29.826879,-82.633648
-32648=29.503781,-83.270475
-32653=29.745052,-82.393830
-32656=29.813684,-81.959454
-32658=29.850467,-82.390755
-32664=29.446478,-82.216667
-32666=29.723637,-81.997495
-32667=29.513704,-82.304844
-32668=29.257343,-82.474807
-32669=29.632156,-82.589919
-32680=29.542562,-83.132310
-32681=29.423388,-82.205579
-32683=29.295239,-82.786235
-32686=29.355545,-82.275017
-32692=29.333326,-83.122541
-32693=29.626478,-82.785309
-32694=29.807872,-82.144393
-32696=29.397586,-82.461744
-32697=29.929756,-82.431439
-32701=28.665648,-81.370302
-32702=29.044191,-81.627474
-32703=28.671439,-81.553055
-32707=28.663959,-81.315021
-32708=28.687105,-81.273445
-32709=28.477586,-80.976760
-32712=28.748602,-81.480140
-32713=28.883730,-81.325287
-32714=28.662553,-81.411702
-32720=29.003383,-81.368584
-32724=29.057205,-81.225576
-32725=28.886189,-81.251417
-32726=28.855051,-81.678843
-32730=28.654162,-81.343713
-32732=28.751037,-81.102119
-32735=28.890420,-81.739041
-32736=28.916650,-81.489277
-32738=28.905193,-81.184537
-32744=28.988477,-81.219379
-32746=28.771236,-81.354660
-32750=28.708784,-81.350801
-32751=28.630400,-81.365046
-32754=28.687109,-80.919193
-32757=28.773053,-81.638118
-32759=28.825537,-80.902691
-32763=28.941297,-81.296816
-32764=28.852537,-81.101799
-32765=28.663876,-81.196278
-32766=28.647702,-81.044726
-32767=29.026591,-81.534474
-32771=28.813571,-81.324958
-32773=28.754849,-81.246937
-32776=28.820155,-81.508894
-32778=28.773373,-81.730074
-32779=28.727263,-81.414779
-32780=28.533319,-80.792029
-32784=28.974319,-81.716779
-32789=28.599188,-81.352273
-32792=28.610096,-81.298342
-32796=28.625287,-80.845853
-32798=28.723731,-81.587720
-32801=28.541774,-81.374351
-32803=28.555829,-81.346291
-32804=28.578290,-81.396428
-32805=28.529380,-81.403667
-32806=28.511789,-81.360438
-32807=28.554337,-81.299480
-32808=28.580110,-81.444300
-32809=28.462146,-81.385959
-32810=28.625101,-81.427690
-32811=28.521568,-81.447421
-32812=28.483991,-81.322838
-32814=28.572584,-81.322358
-32817=28.591012,-81.243652
-32818=28.586751,-81.486895
-32819=28.453375,-81.472395
-32820=28.576844,-81.139725
-32821=28.381999,-81.479599
-32822=28.489898,-81.290154
-32824=28.384164,-81.333040
-32825=28.518028,-81.229003
-32826=28.579737,-81.188811
-32827=28.415581,-81.298990
-32828=28.529031,-81.166578
-32829=28.484569,-81.246089
-32830=28.383036,-81.573708
-32831=28.474506,-81.131105
-32832=28.403180,-81.191537
-32833=28.494294,-81.083265
-32835=28.518730,-81.486227
-32836=28.407659,-81.519798
-32837=28.379425,-81.429129
-32839=28.488069,-81.407208
-32901=28.079399,-80.623617
-32903=28.104536,-80.593357
-32904=28.066492,-80.678444
-32905=28.031366,-80.600414
-32907=28.020804,-80.681247
-32908=27.956344,-80.698949
-32909=27.919258,-80.644232
-32920=28.396235,-80.615050
-32922=28.372999,-80.742906
-32925=28.246109,-80.629046
-32926=28.388697,-80.818152
-32927=28.457716,-80.812289
-32931=28.323196,-80.623102
-32934=28.135322,-80.713049
-32935=28.145509,-80.649958
-32937=28.178766,-80.601770
-32940=28.199120,-80.781941
-32948=27.888805,-80.733582
-32949=27.909840,-80.560449
-32950=27.980573,-80.569593
-32951=27.947247,-80.504610
-32952=28.310930,-80.660577
-32953=28.441679,-80.702628
-32955=28.296697,-80.725043
-32958=27.794384,-80.491460
-32960=27.641533,-80.402619
-32962=27.587819,-80.382865
-32963=27.718239,-80.393276
-32966=27.683533,-80.707717
-32967=27.715491,-80.454288
-32968=27.584207,-80.472479
-32970=27.750386,-80.450484
-32976=27.846262,-80.554114
-33001=24.817130,-80.806001
-33004=26.057838,-80.137801
-33009=25.985129,-80.147261
-33010=25.833202,-80.278720
-33012=25.866106,-80.301115
-33013=25.862190,-80.269677
-33014=25.903100,-80.302654
-33015=25.940565,-80.318180
-33016=25.896066,-80.333140
-33018=25.917734,-80.384416
-33019=26.027459,-80.120219
-33020=26.019191,-80.152944
-33021=26.023130,-80.186539
-33023=25.989200,-80.217067
-33024=26.027148,-80.244713
-33025=25.988210,-80.281374
-33026=26.026198,-80.295994
-33027=25.988101,-80.340444
-33028=26.021034,-80.340397
-33029=25.974621,-80.420075
-33030=25.485147,-80.510882
-33031=25.524982,-80.500875
-33032=25.531517,-80.390800
-33033=25.481199,-80.414925
-33034=25.274332,-80.632552
-33035=25.409275,-80.384155
-33036=24.893835,-80.710993
-33037=25.228322,-80.395451
-33039=25.501679,-80.398423
-33040=24.560908,-81.889478
-33042=24.682083,-81.510666
-33043=24.725861,-81.329949
-33050=24.747487,-81.010326
-33051=24.723406,-81.021647
-33054=25.908575,-80.265122
-33055=25.948468,-80.278855
-33056=25.948877,-80.243582
-33060=26.234776,-80.120591
-33062=26.241077,-80.091233
-33063=26.251909,-80.208929
-33064=26.278502,-80.115300
-33065=26.274498,-80.260400
-33066=26.252615,-80.170374
-33067=26.305788,-80.223371
-33068=26.215954,-80.217951
-33069=26.235830,-80.157100
-33070=25.017205,-80.518498
-33071=26.244602,-80.265312
-33073=26.298240,-80.181415
-33076=26.315322,-80.277978
-33101=25.779298,-80.198739
-33109=25.756717,-80.140066
-33122=25.794856,-80.288375
-33125=25.783849,-80.236090
-33126=25.779400,-80.299475
-33127=25.813175,-80.205808
-33128=25.776168,-80.203733
-33129=25.750167,-80.190028
-33130=25.768524,-80.203359
-33131=25.766206,-80.182897
-33132=25.777890,-80.176165
-33133=25.728662,-80.239996
-33134=25.753332,-80.270379
-33135=25.766544,-80.235095
-33136=25.787182,-80.204722
-33137=25.816281,-80.171528
-33138=25.853764,-80.178006
-33139=25.779808,-80.153200
-33140=25.819714,-80.133711
-33141=25.851854,-80.138726
-33142=25.812043,-80.238614
-33143=25.703032,-80.297375
-33144=25.763458,-80.312667
-33145=25.753132,-80.234427
-33146=25.720850,-80.272571
-33147=25.851225,-80.238166
-33149=25.719513,-80.168541
-33150=25.852190,-80.207174
-33154=25.883337,-80.131831
-33155=25.736887,-80.310768
-33156=25.668203,-80.297010
-33157=25.606126,-80.343496
-33158=25.638840,-80.311316
-33160=25.933997,-80.135801
-33161=25.893664,-80.181539
-33162=25.927997,-80.177175
-33165=25.734345,-80.358271
-33166=25.827855,-80.316183
-33167=25.884867,-80.239362
-33168=25.893051,-80.209181
-33169=25.943117,-80.214686
-33170=25.557912,-80.457897
-33172=25.786909,-80.361253
-33173=25.702320,-80.357503
-33174=25.761518,-80.364697
-33175=25.734787,-80.406761
-33176=25.659873,-80.358354
-33177=25.596129,-80.404194
-33178=25.834607,-80.422908
-33179=25.957620,-80.179998
-33180=25.960389,-80.143113
-33181=25.897992,-80.152331
-33182=25.780654,-80.457553
-33183=25.702563,-80.404682
-33184=25.759711,-80.406473
-33185=25.726359,-80.450733
-33186=25.654426,-80.412156
-33187=25.595896,-80.506909
-33189=25.572213,-80.335434
-33190=25.560027,-80.349887
-33193=25.700770,-80.465111
-33194=25.714005,-80.583757
-33196=25.652131,-80.490508
-33301=26.121323,-80.127909
-33304=26.140411,-80.121184
-33305=26.153361,-80.119440
-33306=26.165442,-80.113853
-33308=26.188511,-80.104988
-33309=26.185990,-80.172721
-33311=26.144208,-80.172785
-33312=26.088128,-80.181807
-33313=26.151527,-80.227316
-33314=26.067601,-80.222643
-33315=26.087015,-80.152994
-33316=26.098738,-80.121896
-33317=26.112600,-80.227875
-33319=26.181382,-80.225802
-33321=26.213579,-80.270272
-33322=26.151064,-80.269953
-33323=26.151721,-80.320963
-33324=26.112485,-80.274940
-33325=26.112043,-80.318317
-33326=26.114333,-80.370670
-33327=26.111220,-80.419892
-33328=26.068175,-80.274812
-33330=26.060831,-80.319086
-33331=26.059533,-80.368583
-33332=26.006735,-80.460152
-33334=26.182586,-80.133578
-33351=26.179526,-80.275008
-33401=26.715844,-80.070249
-33403=26.803747,-80.076368
-33404=26.781022,-80.063738
-33405=26.669649,-80.058452
-33406=26.664093,-80.092407
-33407=26.757692,-80.091172
-33408=26.840483,-80.052158
-33409=26.714559,-80.095821
-33410=26.845662,-80.087350
-33411=26.720012,-80.193151
-33412=26.794532,-80.207075
-33413=26.663779,-80.151724
-33414=26.648920,-80.246459
-33415=26.660205,-80.126573
-33417=26.719196,-80.124507
-33418=26.872713,-80.165712
-33426=26.533736,-80.083152
-33428=26.352906,-80.207938
-33430=26.641965,-80.554002
-33431=26.374760,-80.106200
-33432=26.343902,-80.082735
-33433=26.347159,-80.159235
-33434=26.382712,-80.167138
-33435=26.525785,-80.061367
-33436=26.522954,-80.107263
-33437=26.512045,-80.148962
-33438=26.931927,-80.600690
-33440=26.564765,-81.037840
-33441=26.311098,-80.097874
-33442=26.309175,-80.149813
-33444=26.458903,-80.079637
-33445=26.455331,-80.106353
-33446=26.450443,-80.186185
-33449=26.589949,-80.232713
-33455=27.053143,-80.161232
-33458=26.936558,-80.131851
-33460=26.619664,-80.056715
-33461=26.620406,-80.090703
-33462=26.580020,-80.072282
-33463=26.593240,-80.128244
-33467=26.596362,-80.175602
-33469=26.989221,-80.108541
-33470=26.729431,-80.319858
-33471=26.884624,-81.198234
-33472=26.538476,-80.185568
-33473=26.503777,-80.191610
-33476=26.802148,-80.624722
-33477=26.920226,-80.076589
-33478=26.935021,-80.246071
-33480=26.686371,-80.042626
-33483=26.462644,-80.061718
-33484=26.454253,-80.134427
-33486=26.347501,-80.112571
-33487=26.415376,-80.088811
-33493=26.538819,-80.728719
-33496=26.406722,-80.160556
-33498=26.386067,-80.219558
-33503=27.763831,-82.276174
-33510=27.955637,-82.296693
-33511=27.909778,-82.295738
-33513=28.714262,-82.194963
-33514=28.686313,-81.994700
-33521=28.798271,-82.068553
-33523=28.418520,-82.221022
-33525=28.341644,-82.198380
-33527=27.973749,-82.212806
-33534=27.828452,-82.379097
-33538=28.849949,-82.185110
-33540=28.256897,-82.133000
-33541=28.236875,-82.228214
-33542=28.235780,-82.177617
-33543=28.212775,-82.296369
-33544=28.254039,-82.366223
-33545=28.272663,-82.296721
-33547=27.789947,-82.135828
-33548=28.146279,-82.482303
-33549=28.137944,-82.446252
-33556=28.134809,-82.591459
-33558=28.165483,-82.511234
-33559=28.161006,-82.414667
-33563=28.017222,-82.124953
-33565=28.085906,-82.148114
-33566=27.977965,-82.095709
-33567=27.920609,-82.116772
-33569=27.846464,-82.288630
-33570=27.690400,-82.460081
-33572=27.761109,-82.408580
-33573=27.722860,-82.356923
-33576=28.335735,-82.337831
-33578=27.862200,-82.350044
-33579=27.796231,-82.293653
-33584=28.005479,-82.294300
-33585=28.730872,-82.086057
-33592=28.101871,-82.283236
-33594=27.940934,-82.242479
-33596=27.887215,-82.225870
-33597=28.545531,-82.080532
-33598=27.693423,-82.284659
-33602=27.953530,-82.457113
-33603=27.985618,-82.464439
-33604=28.017154,-82.455350
-33605=27.951122,-82.429680
-33606=27.917452,-82.452279
-33607=27.962012,-82.492176
-33609=27.944272,-82.517675
-33610=27.998214,-82.378016
-33611=27.891345,-82.505665
-33612=28.050827,-82.449573
-33613=28.083973,-82.450768
-33614=28.004724,-82.506088
-33615=28.005103,-82.580284
-33616=27.865136,-82.535394
-33617=28.035792,-82.391538
-33618=28.074807,-82.498405
-33619=27.935372,-82.378690
-33620=28.061368,-82.412801
-33621=27.841658,-82.493273
-33624=28.080255,-82.528248
-33625=28.066876,-82.561218
-33626=28.067045,-82.620348
-33629=27.921536,-82.509043
-33634=28.009826,-82.547789
-33635=28.027644,-82.619933
-33637=28.039845,-82.367516
-33647=28.126958,-82.354093
-33701=27.770793,-82.632806
-33702=27.846613,-82.628690
-33703=27.817056,-82.619750
-33704=27.796346,-82.628737
-33705=27.734491,-82.643403
-33706=27.740169,-82.751128
-33707=27.754314,-82.722280
-33708=27.817558,-82.801134
-33709=27.816844,-82.731621
-33710=27.790669,-82.730734
-33711=27.738611,-82.687520
-33712=27.734375,-82.667894
-33713=27.788266,-82.677461
-33714=27.815246,-82.677708
-33715=27.662680,-82.722404
-33716=27.875060,-82.648609
-33744=27.807226,-82.773074
-33755=27.979914,-82.780506
-33756=27.945591,-82.793988
-33759=27.975284,-82.701482
-33760=27.907544,-82.714236
-33761=28.033061,-82.724374
-33762=27.899189,-82.679506
-33763=28.002884,-82.743408
-33764=27.934474,-82.740109
-33765=27.974876,-82.745121
-33767=27.974748,-82.826777
-33770=27.915173,-82.804068
-33771=27.906822,-82.758784
-33772=27.844208,-82.796854
-33773=27.882294,-82.755920
-33774=27.883819,-82.827877
-33776=27.850256,-82.825814
-33777=27.853532,-82.759349
-33778=27.888593,-82.798546
-33781=27.838362,-82.714996
-33782=27.859631,-82.708145
-33785=27.891841,-82.849979
-33786=27.927096,-82.833345
-33801=28.035979,-81.899636
-33803=28.009358,-81.932662
-33805=28.100700,-81.908334
-33809=28.221336,-81.973942
-33810=28.131800,-82.030327
-33811=27.984396,-82.015259
-33812=27.971442,-81.894476
-33813=27.965132,-81.939522
-33815=28.041258,-81.997590
-33823=28.085735,-81.813731
-33825=27.620252,-81.458826
-33827=27.815891,-81.508647
-33830=27.873430,-81.812659
-33834=27.620292,-82.001559
-33837=28.194772,-81.587510
-33838=28.019442,-81.614048
-33839=27.976828,-81.750498
-33841=27.741146,-81.754602
-33843=27.720799,-81.532956
-33844=28.089064,-81.589938
-33847=27.802754,-81.822039
-33848=28.283377,-81.505262
-33849=28.226068,-82.068886
-33850=28.122376,-81.732660
-33851=28.044636,-81.623893
-33852=27.239337,-81.373963
-33853=27.900707,-81.584450
-33854=27.856440,-81.410106
-33855=27.795372,-81.352760
-33856=27.856354,-81.428375
-33857=27.336195,-81.189442
-33859=27.872695,-81.626401
-33860=27.762895,-82.025348
-33865=27.433787,-81.963257
-33867=27.777856,-81.195762
-33868=28.240843,-81.826617
-33870=27.506929,-81.408456
-33872=27.505251,-81.545953
-33873=27.570917,-81.781173
-33875=27.392358,-81.510491
-33876=27.412594,-81.359530
-33877=27.985755,-81.612232
-33880=27.979055,-81.779946
-33881=28.056447,-81.711644
-33884=27.978480,-81.672447
-33890=27.432793,-81.699984
-33896=28.256905,-81.582850
-33897=28.285129,-81.688464
-33898=27.840809,-81.372964
-33901=26.621074,-81.878139
-33903=26.679968,-81.906630
-33904=26.576012,-81.944393
-33905=26.667872,-81.760927
-33907=26.563891,-81.870266
-33908=26.515834,-81.979469
-33909=26.693201,-81.945126
-33912=26.534017,-81.826175
-33913=26.514239,-81.696796
-33914=26.554392,-82.020944
-33916=26.637103,-81.838448
-33917=26.738607,-81.844783
-33919=26.556626,-81.901095
-33920=26.742298,-81.636050
-33921=26.772225,-82.252804
-33922=26.638155,-82.162513
-33924=26.617555,-82.209305
-33928=26.399034,-81.704725
-33930=26.567132,-81.406708
-33931=26.433124,-81.902995
-33935=26.760319,-81.432856
-33936=26.623407,-81.601499
-33944=26.994441,-81.291040
-33945=26.602325,-82.220531
-33946=26.847524,-82.281369
-33947=26.887601,-82.265696
-33948=26.985889,-82.151742
-33950=26.902989,-82.046244
-33952=26.986134,-82.097042
-33953=26.999702,-82.212275
-33954=27.024724,-82.122407
-33955=26.816404,-81.993627
-33956=26.546315,-82.143657
-33957=26.463920,-82.093031
-33960=27.044099,-81.402766
-33965=26.463373,-81.773019
-33966=26.591622,-81.830726
-33967=26.471507,-81.812240
-33971=26.639584,-81.699699
-33972=26.649280,-81.616279
-33973=26.607864,-81.724636
-33974=26.562706,-81.601925
-33976=26.591277,-81.686130
-33980=26.983504,-82.043606
-33981=26.918213,-82.219616
-33982=26.910534,-81.767196
-33983=27.009117,-82.017871
-33990=26.627990,-81.944774
-33991=26.625361,-82.026215
-33993=26.692897,-82.034065
-34101=26.032137,-81.761821
-34102=26.137498,-81.799105
-34103=26.193911,-81.806496
-34104=26.149955,-81.741562
-34105=26.190046,-81.764777
-34108=26.246308,-81.808323
-34109=26.240842,-81.763823
-34110=26.300417,-81.788460
-34112=26.120498,-81.741578
-34113=26.043649,-81.732424
-34114=25.943846,-81.538206
-34116=26.189294,-81.710803
-34117=26.181030,-81.605176
-34119=26.268263,-81.714054
-34120=26.326101,-81.570093
-34134=26.353032,-81.824050
-34135=26.355541,-81.754320
-34137=25.942746,-81.383178
-34138=25.816512,-81.368569
-34139=25.830885,-81.403372
-34140=25.925194,-81.662917
-34141=25.946906,-81.096079
-34142=26.342595,-81.313304
-34145=25.904093,-81.675851
-34201=27.401680,-82.468524
-34202=27.406267,-82.388721
-34203=27.440337,-82.509384
-34205=27.484084,-82.581821
-34207=27.438677,-82.579674
-34208=27.487487,-82.515923
-34209=27.500129,-82.651386
-34210=27.439524,-82.620816
-34211=27.453604,-82.377071
-34212=27.497814,-82.408401
-34215=27.471141,-82.685924
-34216=27.536772,-82.732652
-34217=27.491178,-82.705018
-34219=27.576471,-82.299218
-34221=27.581094,-82.554803
-34222=27.538965,-82.507024
-34223=26.982666,-82.354200
-34224=26.917571,-82.303940
-34228=27.402247,-82.638767
-34229=27.192291,-82.485189
-34231=27.266027,-82.516651
-34232=27.324987,-82.471714
-34233=27.280031,-82.476631
-34234=27.368298,-82.543091
-34235=27.369735,-82.476464
-34236=27.316487,-82.553527
-34237=27.338992,-82.512645
-34238=27.235792,-82.470536
-34239=27.310893,-82.521168
-34240=27.364246,-82.319337
-34241=27.250668,-82.377574
-34242=27.260222,-82.540907
-34243=27.401013,-82.527887
-34251=27.377731,-82.171544
-34266=27.192286,-81.820248
-34268=27.149245,-81.895327
-34269=27.067597,-82.013096
-34275=27.151792,-82.422444
-34285=27.094564,-82.440895
-34286=27.080871,-82.181256
-34287=27.052571,-82.244353
-34288=27.051628,-82.114523
-34289=27.079862,-82.132601
-34291=27.094062,-82.240218
-34292=27.101944,-82.341525
-34293=27.025247,-82.346959
-34420=29.052734,-82.036487
-34428=28.956773,-82.647566
-34429=28.850605,-82.667285
-34431=29.141620,-82.529999
-34432=29.088393,-82.381536
-34433=29.002221,-82.524892
-34434=28.995934,-82.439628
-34436=28.720580,-82.297980
-34442=28.937049,-82.386522
-34445=28.967990,-82.420744
-34446=28.747280,-82.522160
-34448=28.767011,-82.625191
-34449=29.074720,-82.679451
-34450=28.830041,-82.266009
-34452=28.816271,-82.343698
-34453=28.873782,-82.335157
-34461=28.866144,-82.494509
-34465=28.929489,-82.489202
-34470=29.198907,-82.087425
-34471=29.160555,-82.130765
-34472=29.109474,-81.997364
-34473=29.005695,-82.183950
-34474=29.156427,-82.209453
-34475=29.258755,-82.167075
-34476=29.081607,-82.196830
-34479=29.255724,-82.109112
-34480=29.102401,-82.096588
-34481=29.125538,-82.309895
-34482=29.244387,-82.275029
-34484=28.945021,-82.097527
-34488=29.228090,-81.938619
-34491=28.995627,-82.055143
-34498=29.031552,-82.736087
-34601=28.588628,-82.351186
-34602=28.502482,-82.282351
-34604=28.476942,-82.434791
-34606=28.468477,-82.595728
-34607=28.486761,-82.633021
-34608=28.482826,-82.552854
-34609=28.479476,-82.507906
-34610=28.369422,-82.511021
-34613=28.579241,-82.568289
-34614=28.644303,-82.535086
-34637=28.307737,-82.464718
-34638=28.256862,-82.512738
-34639=28.265430,-82.423239
-34652=28.237490,-82.737964
-34653=28.244081,-82.688478
-34654=28.294894,-82.628238
-34655=28.203310,-82.619283
-34661=28.604751,-82.245271
-34667=28.391424,-82.662659
-34668=28.300793,-82.708521
-34669=28.355990,-82.609842
-34677=28.037526,-82.673020
-34679=28.432204,-82.661230
-34681=28.082819,-82.775960
-34683=28.087706,-82.761134
-34684=28.080744,-82.726829
-34685=28.093299,-82.689364
-34688=28.147125,-82.678972
-34689=28.148306,-82.759877
-34690=28.193745,-82.725706
-34691=28.198023,-82.816078
-34695=28.008208,-82.688404
-34698=28.037553,-82.786320
-34705=28.699567,-81.718909
-34711=28.530496,-81.753341
-34714=28.403094,-81.777493
-34715=28.631016,-81.726055
-34731=28.864109,-81.898631
-34734=28.537003,-81.515454
-34736=28.556499,-81.899739
-34737=28.692308,-81.796739
-34739=27.930540,-81.117032
-34741=28.306370,-81.427060
-34743=28.329308,-81.355152
-34744=28.300969,-81.329377
-34746=28.238826,-81.445346
-34747=28.311495,-81.595565
-34748=28.768405,-81.882911
-34753=28.577078,-81.885914
-34756=28.583655,-81.684108
-34758=28.192068,-81.485428
-34759=28.103908,-81.419378
-34760=28.554727,-81.632166
-34761=28.578577,-81.534116
-34762=28.757379,-81.920610
-34769=28.244625,-81.290847
-34771=28.284307,-81.173730
-34772=28.163035,-81.264079
-34773=28.159876,-81.007582
-34785=28.837287,-82.040622
-34786=28.487141,-81.551904
-34787=28.484923,-81.619305
-34788=28.895617,-81.808248
-34797=28.730468,-81.826624
-34945=27.437265,-80.557230
-34946=27.503294,-80.360480
-34947=27.453617,-80.373764
-34949=27.467258,-80.299808
-34950=27.443788,-80.330974
-34951=27.532134,-80.418954
-34952=27.296128,-80.299313
-34953=27.243974,-80.382320
-34956=27.094656,-80.498888
-34957=27.280287,-80.238923
-34972=27.509388,-80.929139
-34974=27.145973,-80.949686
-34981=27.395528,-80.377424
-34982=27.373264,-80.308018
-34983=27.324139,-80.350299
-34984=27.248984,-80.330574
-34986=27.327734,-80.401918
-34987=27.290285,-80.497120
-34990=27.137133,-80.346948
-34994=27.200948,-80.257153
-34996=27.192817,-80.189813
-34997=27.055637,-80.270195
-35004=33.603426,-86.493789
-35005=33.595950,-87.000649
-35006=33.422765,-87.209730
-35007=33.215623,-86.797656
-35010=32.916719,-85.940589
-35013=33.902168,-86.517777
-35014=33.355851,-86.261678
-35016=34.323870,-86.502006
-35019=34.302078,-86.634094
-35020=33.402429,-86.951784
-35022=33.322849,-86.971458
-35023=33.467828,-87.088219
-35031=34.097505,-86.555035
-35032=33.264859,-86.336417
-35033=33.926475,-87.031801
-35034=32.911122,-87.271681
-35035=33.043682,-86.968442
-35036=33.643922,-86.919599
-35040=33.102967,-86.728894
-35042=32.957991,-87.103816
-35043=33.314842,-86.659872
-35044=33.243975,-86.380759
-35045=32.799962,-86.676761
-35046=32.931141,-86.534157
-35049=33.961807,-86.612064
-35051=33.205032,-86.618915
-35052=33.590682,-86.409897
-35053=34.054155,-87.073701
-35054=33.502019,-86.337925
-35055=34.151121,-86.758808
-35057=34.180462,-86.934257
-35058=34.228856,-86.737261
-35060=33.557750,-86.951726
-35061=33.472006,-86.955940
-35062=33.724920,-87.010252
-35063=33.818273,-87.020552
-35064=33.476072,-86.920253
-35068=33.607519,-86.831073
-35070=34.009280,-86.757878
-35071=33.694975,-86.848078
-35072=33.093498,-86.066947
-35073=33.651226,-86.986831
-35074=33.222349,-87.124270
-35077=34.021165,-86.832668
-35078=33.324420,-86.444966
-35079=33.937880,-86.758349
-35080=33.260081,-86.911474
-35082=33.158024,-86.153863
-35083=34.199871,-86.599170
-35085=32.976498,-86.739181
-35087=34.306453,-86.584296
-35089=32.945782,-86.081832
-35091=33.779236,-86.789554
-35094=33.530066,-86.553303
-35096=33.620336,-86.107668
-35097=33.892188,-86.627133
-35098=34.121100,-87.046880
-35111=33.284352,-87.094878
-35112=33.691077,-86.470578
-35114=33.224414,-86.879318
-35115=33.142473,-86.891528
-35116=33.731294,-86.769946
-35117=33.667778,-86.892599
-35118=33.527419,-87.034686
-35119=33.646571,-86.770930
-35120=33.666809,-86.423755
-35121=33.941185,-86.455102
-35124=33.321830,-86.742197
-35125=33.633384,-86.288692
-35126=33.730771,-86.655119
-35127=33.491657,-86.976425
-35128=33.552400,-86.337819
-35130=33.633156,-87.136688
-35131=33.727425,-86.196829
-35133=33.829650,-86.596151
-35135=33.616462,-86.199595
-35136=32.879247,-86.286795
-35139=33.714126,-86.973966
-35143=33.100837,-86.543020
-35146=33.795070,-86.453279
-35147=33.415884,-86.530992
-35148=33.755959,-87.045787
-35149=33.249870,-86.187275
-35150=33.189306,-86.238384
-35151=33.081343,-86.392211
-35160=33.356656,-86.052297
-35171=32.882540,-86.740256
-35172=33.845155,-86.695313
-35173=33.655407,-86.563109
-35175=34.435679,-86.511374
-35176=33.485382,-86.498033
-35178=33.419769,-86.398435
-35179=34.273307,-86.968970
-35180=33.820305,-86.840317
-35183=33.016108,-86.352010
-35184=33.114345,-87.136714
-35186=33.256733,-86.510291
-35187=33.080534,-86.885794
-35188=33.180336,-87.163635
-35203=33.518601,-86.809807
-35204=33.522114,-86.839847
-35205=33.494995,-86.808077
-35206=33.569909,-86.712978
-35207=33.564931,-86.823589
-35208=33.496819,-86.879298
-35209=33.466348,-86.811516
-35210=33.541558,-86.669460
-35211=33.455086,-86.856459
-35212=33.547391,-86.752910
-35213=33.506671,-86.744458
-35214=33.576837,-86.893456
-35215=33.649002,-86.707425
-35216=33.419246,-86.789433
-35217=33.607882,-86.760265
-35218=33.507667,-86.893995
-35221=33.449487,-86.898962
-35222=33.523712,-86.770115
-35223=33.488141,-86.734834
-35224=33.517287,-86.943842
-35226=33.399153,-86.845896
-35228=33.456099,-86.920957
-35229=33.465794,-86.788551
-35233=33.508748,-86.801964
-35234=33.540811,-86.802758
-35235=33.624485,-86.647907
-35242=33.425247,-86.672084
-35243=33.440918,-86.741508
-35244=33.352918,-86.825333
-35254=33.516225,-86.857550
-35401=33.170238,-87.616169
-35404=33.215157,-87.483406
-35405=33.120607,-87.538904
-35406=33.338867,-87.469325
-35441=32.852762,-87.750329
-35442=33.077211,-88.202696
-35443=32.755279,-88.000762
-35444=33.328725,-87.292884
-35446=33.207796,-87.751031
-35447=33.251868,-88.157754
-35452=33.278190,-87.680702
-35453=33.163776,-87.389459
-35456=33.063695,-87.414750
-35457=33.304137,-87.773144
-35458=33.410606,-87.806583
-35459=32.791636,-88.275851
-35460=32.713161,-88.153712
-35461=33.417374,-88.213613
-35462=32.920473,-87.967463
-35463=33.064731,-87.682451
-35464=32.806130,-88.154590
-35466=33.248527,-87.919484
-35469=32.973874,-87.781565
-35470=32.561974,-88.066347
-35473=33.270519,-87.581613
-35474=32.940566,-87.591200
-35475=33.434380,-87.593996
-35476=33.227470,-87.591277
-35477=32.956143,-88.240989
-35480=33.078038,-87.819226
-35481=33.394624,-88.037417
-35490=33.218419,-87.238215
-35501=33.818910,-87.292749
-35503=33.936479,-87.305113
-35504=33.894135,-87.170812
-35540=34.234693,-87.209720
-35541=34.081325,-87.174349
-35542=33.719014,-87.675988
-35543=34.211156,-87.758438
-35544=33.959985,-88.017137
-35545=33.651546,-87.934880
-35546=33.619425,-87.542714
-35548=34.056419,-87.750485
-35549=33.851343,-87.544905
-35550=33.745429,-87.160466
-35552=34.072276,-88.142204
-35553=34.126879,-87.383136
-35554=33.885727,-87.671678
-35555=33.658512,-87.815637
-35559=33.905485,-87.728143
-35563=33.977608,-87.903722
-35564=34.258833,-87.845260
-35565=34.236960,-87.563402
-35570=34.163750,-87.993165
-35571=34.368708,-87.944108
-35572=34.201272,-87.282580
-35574=33.567578,-87.949993
-35575=34.036179,-87.588153
-35576=33.575382,-88.143851
-35577=34.102378,-87.620057
-35578=33.980483,-87.466391
-35579=33.636267,-87.360324
-35580=33.673294,-87.255549
-35581=34.359912,-87.713097
-35582=34.486800,-88.112899
-35584=33.819369,-87.088014
-35585=34.420835,-87.832483
-35586=33.877914,-88.134094
-35587=33.795541,-87.456888
-35592=33.746099,-88.084807
-35593=34.339101,-88.095624
-35594=33.932693,-87.774369
-35601=34.608016,-87.011052
-35603=34.535452,-86.971226
-35610=34.954456,-87.245961
-35611=34.773833,-87.084145
-35613=34.820160,-86.882412
-35614=34.853722,-86.990112
-35615=34.662737,-86.875419
-35616=34.739504,-88.019381
-35618=34.641403,-87.304983
-35619=34.382723,-87.152105
-35620=34.930812,-87.020185
-35621=34.348973,-86.729536
-35622=34.346590,-86.898961
-35630=34.822980,-87.661652
-35633=34.875101,-87.798371
-35634=34.919270,-87.614548
-35640=34.440702,-86.943677
-35643=34.672577,-87.201931
-35645=34.903048,-87.500965
-35646=34.677104,-87.523343
-35647=34.967655,-87.117034
-35648=34.958660,-87.387836
-35649=34.617619,-86.869284
-35650=34.447233,-87.308593
-35651=34.469857,-87.495702
-35652=34.846744,-87.310208
-35653=34.518191,-87.871965
-35654=34.497789,-87.632269
-35660=34.755494,-87.701265
-35661=34.768526,-87.562802
-35670=34.455176,-86.729344
-35671=34.683544,-86.935107
-35672=34.648533,-87.406487
-35673=34.576336,-87.137349
-35674=34.662410,-87.781902
-35677=34.955707,-88.026555
-35739=34.968586,-86.791036
-35740=34.965286,-85.777448
-35741=34.718016,-86.479004
-35744=34.610532,-85.909141
-35745=34.943416,-86.180179
-35746=34.828619,-86.005957
-35747=34.494944,-86.298989
-35748=34.721079,-86.389356
-35749=34.822236,-86.757820
-35750=34.956179,-86.589482
-35751=34.811157,-86.276460
-35752=34.745900,-85.946047
-35754=34.525492,-86.604467
-35755=34.488768,-86.150101
-35756=34.643700,-86.818151
-35757=34.784218,-86.745309
-35758=34.711417,-86.746510
-35759=34.868262,-86.545831
-35760=34.543906,-86.383856
-35761=34.916206,-86.409214
-35763=34.622047,-86.461788
-35764=34.726301,-86.310155
-35765=34.690313,-85.814085
-35766=34.867485,-86.299884
-35768=34.768891,-86.104193
-35769=34.597984,-86.104809
-35771=34.538598,-86.005423
-35772=34.937146,-85.948547
-35773=34.891069,-86.707941
-35774=34.765246,-86.226525
-35775=34.542934,-86.705959
-35776=34.659404,-86.239414
-35801=34.725269,-86.560866
-35802=34.668212,-86.558882
-35803=34.563461,-86.519399
-35805=34.709368,-86.620290
-35806=34.760774,-86.685762
-35808=34.633027,-86.659057
-35810=34.803193,-86.601445
-35811=34.795354,-86.509948
-35816=34.739954,-86.630751
-35824=34.644914,-86.752068
-35896=34.754673,-86.654641
-35901=34.049376,-85.934301
-35903=34.024270,-85.863703
-35904=34.070560,-85.990098
-35905=33.961400,-85.922422
-35906=33.927149,-86.095113
-35907=33.890841,-86.018020
-35950=34.249750,-86.261097
-35951=34.339098,-86.162297
-35952=34.052385,-86.310738
-35953=33.809618,-86.229742
-35954=34.089754,-86.057449
-35956=34.146146,-86.146749
-35957=34.196159,-86.196898
-35958=34.916005,-85.645957
-35959=34.242383,-85.607959
-35960=34.124328,-85.570557
-35961=34.303952,-85.846214
-35962=34.303881,-86.036441
-35963=34.359787,-85.927200
-35966=34.786981,-85.674167
-35967=34.407663,-85.694569
-35968=34.551098,-85.738915
-35971=34.455491,-85.945131
-35972=33.993999,-86.246870
-35973=34.344016,-85.551513
-35974=34.362751,-86.010291
-35975=34.436463,-86.060368
-35976=34.345767,-86.330025
-35978=34.642798,-85.728979
-35979=34.832324,-85.609647
-35980=34.172088,-86.389606
-35981=34.722345,-85.648802
-35983=34.172914,-85.766300
-35984=34.536843,-85.563859
-35986=34.500336,-85.835889
-35987=33.913370,-86.242208
-35988=34.557662,-85.796490
-35989=34.613541,-85.619853
-35990=34.067780,-86.304688
-36003=32.451904,-86.723821
-36005=31.888214,-85.719600
-36006=32.646560,-86.722096
-36009=31.594781,-86.301377
-36010=31.659777,-85.798448
-36013=32.284669,-85.985235
-36016=31.850223,-85.414706
-36017=31.679443,-85.557720
-36020=32.479374,-86.322997
-36022=32.623499,-86.405578
-36024=32.671798,-86.025021
-36025=32.544457,-86.324973
-36026=32.775480,-86.130993
-36027=32.060643,-85.116624
-36028=31.495470,-86.392802
-36029=32.181872,-85.933154
-36030=31.870914,-86.876220
-36031=32.245572,-85.734076
-36032=31.994630,-86.568637
-36033=31.671714,-86.770613
-36034=31.621045,-86.111209
-36035=31.788705,-86.126215
-36036=31.973940,-86.161676
-36037=31.799009,-86.628615
-36038=31.435078,-86.491253
-36039=32.298948,-85.837560
-36040=32.173924,-86.684172
-36041=31.913800,-86.319978
-36042=31.868619,-86.459989
-36043=32.201153,-86.420747
-36046=32.023613,-86.333407
-36047=32.075247,-86.517854
-36048=31.804214,-85.592024
-36049=31.768143,-86.277257
-36051=32.685457,-86.500020
-36052=32.184093,-86.048285
-36053=32.029240,-85.443571
-36054=32.481879,-86.366311
-36064=32.296635,-86.077885
-36066=32.479684,-86.424001
-36067=32.516518,-86.561483
-36069=32.094138,-86.149865
-36071=31.706685,-86.397754
-36075=32.378389,-85.923700
-36078=32.546979,-85.942735
-36079=31.766709,-85.998035
-36080=32.711806,-86.284022
-36081=31.903745,-85.898152
-36082=31.802761,-85.954635
-36083=32.386730,-85.684361
-36088=32.415281,-85.720314
-36089=32.151049,-85.698646
-36091=32.750447,-86.508548
-36092=32.617657,-86.200531
-36093=32.494564,-86.133634
-36104=32.403254,-86.326893
-36105=32.209701,-86.288698
-36106=32.352820,-86.257585
-36107=32.383689,-86.279303
-36108=32.339100,-86.401107
-36109=32.388957,-86.242148
-36110=32.446582,-86.255772
-36111=32.336579,-86.271324
-36112=32.380826,-86.349141
-36113=32.381058,-86.363527
-36115=32.406766,-86.246699
-36116=32.273588,-86.214473
-36117=32.378728,-86.145011
-36201=33.649160,-85.879642
-36203=33.583080,-85.834626
-36205=33.717379,-85.794817
-36206=33.733273,-85.809624
-36207=33.680317,-85.709537
-36250=33.765322,-85.901096
-36251=33.222279,-85.872376
-36255=33.168154,-85.730440
-36256=33.046308,-85.704818
-36258=33.477734,-85.717338
-36260=33.581758,-85.995493
-36262=33.806237,-85.479824
-36263=33.466234,-85.359330
-36264=33.596783,-85.551483
-36265=33.847655,-85.784916
-36266=33.349846,-85.734316
-36267=33.197365,-85.948287
-36268=33.494798,-85.929452
-36269=33.739797,-85.383876
-36271=33.781230,-86.018690
-36272=33.942381,-85.595417
-36273=33.545031,-85.378048
-36274=33.172406,-85.363142
-36276=33.132677,-85.570266
-36277=33.757469,-85.818226
-36278=33.332433,-85.523567
-36279=33.872274,-85.889336
-36280=33.376324,-85.388261
-36301=31.140065,-85.398289
-36303=31.266568,-85.401317
-36305=31.204572,-85.496004
-36310=31.595148,-85.208852
-36311=31.609777,-85.685655
-36312=31.170833,-85.236826
-36313=31.178551,-85.793943
-36314=31.018937,-85.772824
-36316=31.175691,-85.863975
-36317=31.643557,-85.404255
-36318=31.169524,-85.950531
-36319=31.331937,-85.148874
-36320=31.049925,-85.319153
-36321=31.210840,-85.299230
-36322=31.257605,-85.735807
-36323=31.428104,-86.072471
-36330=31.305932,-85.864054
-36340=31.051672,-85.890943
-36343=31.060704,-85.120765
-36344=31.097890,-85.708147
-36345=31.366306,-85.310372
-36346=31.560574,-85.930086
-36350=31.350214,-85.495521
-36351=31.425502,-85.906600
-36352=31.264999,-85.609699
-36353=31.478527,-85.348637
-36360=31.467469,-85.617030
-36362=31.350932,-85.679787
-36370=31.142219,-85.158109
-36371=31.312420,-85.551996
-36373=31.541593,-85.097397
-36374=31.578737,-85.493690
-36375=31.071216,-85.544966
-36376=31.251143,-85.269809
-36401=31.480653,-86.940722
-36420=31.172401,-86.565077
-36421=31.324729,-86.506928
-36425=31.764740,-87.195168
-36426=31.140984,-87.071111
-36432=31.293982,-87.030269
-36435=31.869694,-87.451616
-36436=31.785367,-87.649528
-36439=31.419287,-87.345189
-36441=31.039357,-87.255149
-36442=31.073321,-86.359325
-36444=31.676299,-87.440954
-36445=31.444585,-87.453392
-36446=31.792460,-87.719956
-36451=31.700517,-87.803568
-36453=31.191678,-86.149163
-36454=31.328428,-87.200318
-36455=31.013096,-86.351972
-36456=31.568405,-86.806151
-36460=31.518972,-87.304829
-36467=31.281017,-86.256945
-36470=31.515188,-87.565908
-36471=31.616419,-87.248947
-36473=31.307228,-87.202125
-36474=31.429690,-86.626037
-36475=31.387683,-87.219745
-36476=31.362361,-86.549731
-36477=31.097175,-86.061411
-36480=31.325005,-87.599127
-36481=31.771512,-87.382559
-36482=31.639318,-87.636900
-36483=31.047796,-86.674187
-36502=31.147733,-87.494821
-36505=30.941950,-88.015792
-36507=30.858609,-87.742025
-36509=30.393020,-88.270178
-36511=30.315155,-87.747247
-36512=30.998808,-88.018409
-36513=31.173869,-88.005799
-36518=31.459303,-88.284040
-36521=30.964986,-88.177330
-36522=31.090945,-88.275355
-36523=30.370798,-88.190791
-36524=31.802618,-88.010863
-36525=30.890103,-88.018704
-36526=30.611152,-87.859918
-36527=30.702075,-87.881866
-36528=30.235500,-88.236219
-36529=31.275361,-88.228787
-36530=30.408210,-87.555585
-36532=30.480713,-87.861306
-36535=30.383999,-87.727359
-36538=31.657053,-88.143271
-36539=31.348614,-88.380629
-36540=31.448949,-87.675843
-36541=30.489535,-88.344106
-36542=30.269654,-87.750627
-36543=31.221493,-87.466154
-36544=30.479701,-88.230089
-36545=31.488511,-87.871704
-36548=31.488980,-87.967725
-36549=30.410999,-87.455589
-36550=31.249430,-87.730436
-36551=30.647109,-87.753071
-36553=31.243301,-88.067813
-36555=30.396615,-87.783492
-36556=31.197708,-87.976023
-36558=31.608143,-88.316371
-36559=30.567794,-87.908653
-36560=31.097767,-88.040068
-36561=30.288702,-87.571504
-36562=31.037057,-87.670416
-36564=30.483252,-87.934696
-36567=30.623536,-87.556960
-36568=30.511926,-88.272640
-36569=31.542478,-88.091294
-36571=30.854676,-88.109966
-36572=30.857722,-88.061419
-36574=30.501110,-87.478438
-36575=30.769164,-88.273387
-36576=30.522953,-87.763833
-36578=30.749286,-87.779057
-36579=31.106823,-87.796932
-36580=30.478898,-87.703414
-36581=31.375357,-87.965583
-36582=30.509877,-88.173001
-36583=31.367319,-88.195002
-36584=31.199096,-88.388739
-36585=31.387319,-88.079654
-36587=30.844238,-88.351243
-36590=30.531802,-88.174421
-36602=30.693326,-88.045544
-36603=30.673984,-88.026681
-36604=30.682213,-88.068134
-36605=30.604547,-88.087824
-36606=30.668786,-88.105874
-36607=30.698560,-88.105760
-36608=30.681503,-88.300213
-36609=30.660248,-88.163479
-36610=30.736246,-88.073507
-36611=30.769623,-88.080073
-36612=30.752882,-88.113135
-36613=30.809841,-88.187450
-36615=30.630210,-88.069879
-36616=30.724504,-88.081588
-36617=30.716026,-88.095707
-36618=30.736902,-88.169796
-36619=30.596087,-88.196637
-36688=30.696156,-88.182096
-36693=30.625698,-88.149746
-36695=30.628385,-88.280303
-36701=32.483972,-87.054642
-36703=32.427349,-86.912858
-36720=32.158196,-87.344594
-36722=32.094921,-87.571497
-36723=32.053630,-87.274538
-36726=31.963626,-87.295936
-36727=31.910985,-88.033910
-36728=32.161399,-87.476215
-36732=32.429314,-87.914179
-36736=32.060282,-87.776198
-36738=32.420970,-87.624965
-36740=32.626783,-87.836571
-36742=32.467872,-87.729452
-36744=32.695952,-87.599716
-36748=32.267275,-87.780901
-36749=32.551125,-86.849462
-36750=32.789616,-86.849377
-36751=31.824299,-87.545748
-36752=32.298669,-86.631995
-36753=31.807348,-87.076533
-36754=32.154061,-87.700902
-36756=32.683866,-87.275890
-36758=32.638779,-86.889964
-36759=32.416752,-87.277593
-36761=32.106169,-86.978039
-36763=32.276807,-87.980902
-36765=32.588169,-87.522234
-36766=31.955121,-87.086691
-36767=32.259288,-87.191091
-36768=31.912626,-87.019696
-36769=32.007856,-87.547444
-36773=32.258944,-87.357531
-36775=32.175542,-86.979214
-36776=32.735606,-87.741416
-36782=32.116133,-87.912973
-36783=32.247780,-87.597839
-36784=31.926927,-87.787887
-36785=32.260516,-86.845810
-36786=32.431068,-87.482163
-36790=32.733603,-86.893627
-36792=32.925847,-86.906151
-36793=32.821605,-87.027517
-36801=32.694763,-85.395626
-36804=32.534249,-85.347421
-36830=32.538930,-85.492645
-36832=32.582937,-85.585938
-36849=32.602420,-85.487341
-36850=32.783232,-85.658566
-36852=32.757181,-85.292494
-36853=32.816523,-85.767220
-36854=32.751613,-85.189484
-36855=33.028908,-85.308151
-36856=32.274495,-84.997829
-36858=32.328274,-85.330375
-36859=32.235008,-85.011009
-36860=32.274401,-85.424503
-36861=32.890875,-85.850604
-36862=32.903965,-85.455157
-36863=32.889494,-85.263750
-36865=32.602618,-85.589334
-36866=32.565305,-85.712082
-36867=32.495317,-85.024588
-36869=32.420407,-85.064201
-36870=32.482878,-85.120305
-36871=32.178708,-85.157233
-36874=32.564252,-85.198549
-36875=32.336837,-85.166552
-36877=32.573153,-85.101369
-36879=32.727562,-85.558384
-36901=32.421636,-88.147330
-36904=32.100587,-88.260758
-36907=32.426384,-88.346704
-36908=31.870538,-88.391132
-36910=32.204602,-88.146953
-36912=32.230412,-88.302607
-36913=31.960963,-88.447090
-36915=31.955091,-88.358729
-36916=32.209837,-88.059887
-36919=31.769052,-88.282862
-36921=31.938430,-88.182780
-36922=32.300344,-88.141975
-36925=32.432254,-88.183591
-37010=36.571861,-87.108499
-37012=36.073830,-86.001565
-37013=36.052231,-86.632515
-37014=35.875229,-86.632954
-37015=36.279378,-87.075584
-37016=35.957452,-86.100226
-37018=35.630678,-86.211258
-37019=35.392281,-86.709825
-37020=35.634389,-86.407093
-37022=36.514582,-86.317038
-37023=36.592456,-87.782744
-37025=35.948733,-87.307754
-37026=35.696497,-86.105655
-37027=35.999288,-86.785062
-37028=36.627542,-87.862973
-37029=36.042705,-87.263545
-37030=36.271546,-85.942120
-37031=36.366189,-86.292910
-37032=36.524214,-87.017154
-37033=35.744730,-87.558144
-37034=35.651936,-86.690108
-37035=36.381108,-87.133983
-37036=36.234982,-87.261263
-37037=35.703083,-86.351238
-37040=36.522633,-87.334932
-37042=36.568751,-87.416322
-37043=36.489761,-87.237235
-37046=35.781881,-86.700712
-37047=35.317299,-86.835787
-37048=36.491315,-86.595908
-37049=36.557059,-86.673094
-37050=36.374253,-87.630824
-37051=36.304294,-87.410244
-37052=36.378818,-87.401828
-37055=36.077159,-87.442911
-37057=36.418109,-86.029944
-37058=36.444343,-87.876657
-37059=35.984992,-85.903070
-37060=35.745466,-86.637754
-37061=36.287708,-87.635077
-37062=35.990876,-87.135932
-37064=35.884862,-86.954138
-37066=36.398757,-86.455540
-37067=35.912290,-86.780262
-37069=35.987493,-86.903598
-37072=36.352140,-86.746651
-37073=36.432426,-86.816630
-37074=36.426041,-86.152900
-37075=36.339969,-86.607922
-37076=36.145195,-86.576632
-37078=35.910798,-87.746885
-37079=36.464769,-87.648093
-37080=36.332761,-86.916886
-37082=36.094872,-87.115266
-37083=36.535354,-86.011048
-37085=35.954824,-86.280498
-37086=36.022237,-86.559384
-37087=36.263852,-86.269244
-37090=36.111740,-86.299189
-37091=35.489239,-86.767472
-37095=35.976818,-85.967627
-37096=35.612943,-87.871010
-37097=35.779943,-87.823417
-37098=35.872364,-87.319361
-37101=36.060216,-87.629074
-37110=35.645090,-85.741252
-37115=36.253847,-86.695530
-37118=35.930240,-86.190225
-37122=36.180589,-86.481794
-37127=35.781304,-86.327533
-37128=35.784183,-86.489369
-37129=35.932526,-86.442648
-37130=35.881943,-86.318932
-37132=35.849273,-86.364315
-37134=35.992357,-87.948031
-37135=35.915276,-86.676410
-37137=35.884168,-87.505355
-37138=36.244014,-86.609391
-37140=35.859169,-87.652532
-37141=36.614917,-86.701921
-37142=36.410966,-87.509666
-37143=36.127732,-87.031243
-37144=35.305224,-86.660357
-37145=36.380909,-85.917012
-37146=36.402067,-87.032016
-37148=36.566636,-86.495247
-37149=35.804004,-86.192696
-37150=36.541483,-85.810410
-37151=36.309201,-86.043020
-37153=35.763808,-86.554127
-37160=35.455761,-86.484563
-37165=36.292696,-87.470936
-37166=35.917978,-85.786903
-37167=35.959541,-86.531590
-37171=36.361396,-87.295572
-37172=36.532412,-86.862187
-37174=35.719838,-86.898124
-37175=36.324260,-87.892851
-37178=36.323887,-87.790475
-37179=35.811405,-86.924482
-37180=35.606468,-86.586661
-37181=36.244581,-87.469082
-37183=35.494482,-86.303181
-37184=36.082419,-86.144093
-37185=36.064255,-87.857688
-37186=36.596738,-86.221711
-37187=36.144149,-87.197891
-37188=36.480269,-86.681321
-37189=36.298880,-86.834803
-37190=35.816563,-86.021265
-37191=36.500078,-87.529243
-37201=36.166001,-86.777305
-37203=36.149614,-86.790618
-37204=36.106735,-86.774283
-37205=36.113195,-86.870442
-37206=36.179319,-86.731083
-37207=36.233774,-86.775969
-37208=36.177714,-86.808023
-37209=36.185400,-86.948570
-37210=36.149263,-86.732969
-37211=36.067234,-86.723711
-37212=36.133877,-86.801254
-37213=36.166156,-86.767542
-37214=36.162189,-86.670867
-37215=36.081868,-86.834691
-37216=36.216580,-86.726854
-37217=36.108666,-86.656722
-37218=36.164095,-86.889416
-37219=36.166811,-86.783177
-37220=36.068447,-86.793127
-37221=36.051294,-86.968798
-37228=36.196931,-86.803372
-37240=36.144893,-86.805471
-37243=36.165011,-86.782141
-37246=36.159857,-86.791447
-37301=35.416857,-85.794407
-37302=35.008329,-85.019818
-37303=35.442462,-84.640077
-37305=35.465190,-85.694230
-37306=35.096767,-86.191821
-37307=35.174229,-84.621319
-37308=35.342635,-84.993756
-37309=35.301912,-84.741487
-37310=35.252525,-84.710066
-37311=35.113133,-84.928186
-37312=35.232461,-84.879821
-37313=35.357709,-85.712800
-37315=35.048266,-85.051550
-37317=35.031001,-84.443056
-37318=35.177916,-85.992780
-37321=35.502103,-85.008024
-37322=35.503397,-84.823888
-37323=35.096183,-84.816533
-37324=35.239754,-85.987165
-37325=35.251359,-84.591718
-37326=35.040004,-84.384985
-37327=35.437647,-85.415209
-37328=35.036942,-86.357374
-37329=35.394355,-84.461040
-37330=35.279542,-86.130578
-37331=35.319312,-84.529833
-37332=35.598701,-84.971947
-37333=35.153754,-84.335338
-37334=35.166452,-86.580895
-37335=35.068898,-86.403992
-37336=35.308843,-84.931512
-37337=35.787056,-84.850664
-37338=35.429787,-85.209519
-37339=35.379959,-85.634230
-37340=35.034063,-85.517519
-37341=35.224176,-85.073294
-37342=35.391968,-85.948000
-37343=35.166669,-85.212280
-37345=35.016807,-86.203020
-37347=35.063468,-85.613418
-37348=35.131615,-86.434051
-37350=34.993921,-85.350184
-37351=35.100285,-85.260363
-37352=35.277520,-86.353027
-37353=35.115010,-84.989096
-37354=35.506329,-84.347385
-37355=35.499787,-86.083833
-37356=35.228878,-85.823694
-37357=35.585288,-85.917340
-37359=35.204200,-86.412877
-37360=35.437596,-86.254339
-37361=35.101249,-84.686634
-37362=35.031282,-84.680856
-37363=35.115688,-85.063804
-37365=35.382530,-85.559742
-37366=35.338856,-85.830003
-37367=35.627409,-85.236180
-37369=35.190807,-84.479592
-37370=35.356625,-84.700173
-37373=35.407458,-85.092816
-37374=35.168804,-85.646536
-37375=35.150468,-85.890399
-37376=35.047765,-85.955825
-37377=35.204919,-85.334972
-37379=35.295160,-85.177115
-37380=35.070937,-85.754605
-37381=35.687217,-84.877010
-37385=35.333158,-84.236984
-37387=35.273286,-85.746581
-37388=35.343672,-86.221295
-37391=35.093227,-84.353979
-37394=35.539396,-85.860045
-37396=35.005799,-85.499729
-37397=35.225560,-85.514664
-37398=35.181209,-86.138387
-37402=35.043722,-85.317871
-37403=35.048259,-85.294362
-37404=35.027912,-85.273662
-37405=35.120403,-85.407828
-37406=35.073134,-85.245571
-37407=35.001943,-85.289724
-37408=35.028634,-85.308554
-37409=35.013749,-85.335346
-37410=35.001899,-85.314220
-37411=35.028764,-85.226165
-37412=34.997526,-85.227430
-37415=35.124725,-85.281199
-37416=35.097600,-85.180301
-37419=35.039708,-85.404109
-37421=35.030496,-85.145780
-37601=36.338162,-82.318108
-37604=36.299586,-82.383193
-37614=36.301387,-82.371242
-37615=36.402425,-82.457180
-37616=36.228473,-82.746798
-37617=36.524578,-82.365576
-37618=36.460339,-82.208744
-37620=36.549613,-82.094040
-37640=36.326824,-81.974686
-37641=36.196373,-82.667344
-37642=36.530987,-82.726800
-37643=36.377345,-82.137118
-37645=36.562152,-82.662199
-37650=36.094488,-82.448079
-37656=36.398802,-82.629857
-37657=36.017623,-82.560126
-37658=36.239034,-82.099448
-37659=36.280210,-82.491063
-37660=36.526860,-82.571968
-37663=36.463012,-82.488726
-37664=36.520428,-82.498988
-37665=36.578779,-82.570554
-37680=36.579284,-81.725430
-37681=36.258014,-82.620600
-37682=36.300986,-82.290892
-37683=36.454743,-81.822037
-37686=36.440209,-82.348811
-37687=36.178723,-82.097005
-37688=36.545442,-81.882882
-37690=36.250120,-82.557584
-37691=36.371668,-81.756695
-37692=36.189822,-82.300829
-37694=36.383789,-82.278722
-37701=35.791709,-83.987225
-37705=36.226872,-84.009720
-37708=36.330563,-83.316088
-37709=36.162997,-83.664552
-37710=36.158632,-84.316134
-37711=36.281355,-83.045426
-37713=36.081454,-83.134295
-37714=36.260336,-84.292968
-37715=36.554227,-83.960522
-37716=36.097124,-84.175183
-37719=36.022415,-84.429381
-37721=36.118420,-83.812584
-37722=35.814831,-83.202702
-37723=35.970430,-84.813656
-37724=36.548535,-83.710257
-37725=35.996089,-83.399118
-37726=36.204182,-84.830473
-37727=35.885101,-83.022989
-37729=36.516651,-84.034443
-37730=36.547384,-83.975516
-37731=36.548667,-83.009063
-37732=36.327039,-84.606364
-37733=36.354076,-84.711232
-37737=35.761367,-84.120426
-37738=35.670251,-83.474881
-37742=35.675844,-84.179246
-37743=36.068721,-82.856467
-37745=36.278036,-82.820587
-37748=35.945607,-84.516324
-37752=36.560697,-83.538079
-37753=35.823088,-83.100349
-37754=36.139099,-84.029801
-37755=36.402394,-84.526705
-37756=36.304565,-84.419801
-37757=36.299009,-84.137299
-37760=36.108387,-83.457779
-37762=36.577304,-84.126170
-37763=35.820230,-84.492265
-37764=35.970376,-83.616621
-37765=36.572343,-83.058618
-37766=36.399701,-84.080824
-37769=36.218671,-84.153543
-37770=36.153311,-84.663293
-37771=35.840726,-84.321728
-37772=35.791140,-84.218553
-37774=35.729130,-84.358961
-37777=35.826849,-84.054192
-37779=36.215139,-83.756079
-37801=35.663920,-84.094594
-37803=35.660842,-83.981389
-37804=35.792054,-83.893165
-37806=36.084693,-83.727986
-37807=36.259656,-83.825990
-37809=36.156693,-83.038092
-37810=36.184525,-83.115490
-37811=36.356119,-83.210715
-37813=36.175136,-83.257024
-37814=36.233317,-83.337823
-37818=36.188793,-82.971098
-37819=36.568255,-84.205753
-37820=36.085171,-83.566057
-37821=35.975170,-83.195566
-37825=36.412413,-83.695841
-37826=35.558276,-84.589664
-37828=36.197924,-84.069010
-37829=36.010201,-84.637685
-37830=35.966483,-84.290549
-37840=36.070295,-84.409183
-37841=36.515692,-84.570592
-37843=36.010713,-83.048360
-37845=36.093370,-84.439501
-37846=35.679251,-84.481817
-37847=36.434173,-84.278950
-37848=36.235726,-83.680116
-37849=36.054314,-84.046043
-37851=36.584059,-83.907579
-37852=36.324146,-84.579513
-37853=35.836719,-83.910713
-37854=35.880918,-84.720011
-37857=36.424289,-82.941400
-37860=36.250455,-83.183736
-37861=36.240743,-83.513713
-37862=35.778007,-83.612571
-37863=35.785960,-83.562198
-37865=35.851094,-83.734853
-37866=36.342062,-83.856572
-37869=36.514755,-83.244996
-37870=36.462895,-83.833801
-37871=36.052076,-83.681001
-37872=36.269532,-84.649496
-37873=36.526270,-82.843047
-37874=35.598330,-84.456484
-37876=35.865101,-83.478970
-37877=36.151130,-83.406846
-37878=35.620642,-83.894011
-37879=36.473313,-83.513631
-37880=35.685695,-84.677934
-37881=36.406476,-83.342508
-37882=35.601218,-83.813078
-37885=35.476426,-84.132339
-37886=35.745588,-83.804718
-37887=36.091638,-84.580889
-37888=36.310172,-83.608265
-37890=36.085274,-83.298730
-37891=36.292068,-83.138109
-37892=36.555696,-84.357644
-37902=35.963643,-83.920610
-37909=35.947567,-84.021418
-37912=36.007549,-83.984876
-37914=35.983165,-83.795797
-37915=35.970813,-83.900432
-37916=35.952730,-83.934186
-37917=36.001185,-83.913706
-37918=36.056174,-83.916861
-37919=35.914748,-84.000169
-37920=35.908752,-83.869153
-37921=35.979767,-84.002156
-37922=35.860496,-84.100535
-37923=35.926395,-84.079528
-37924=36.030261,-83.798770
-37931=35.976144,-84.129965
-37932=35.917328,-84.198756
-37934=35.861344,-84.167752
-37938=36.123929,-83.938617
-38001=35.816290,-89.159971
-38002=35.286355,-89.700274
-38004=35.411411,-89.759757
-38006=35.693723,-89.089657
-38007=36.159414,-89.426956
-38008=35.246459,-88.997180
-38011=35.462176,-89.711687
-38012=35.610611,-89.273232
-38015=35.556935,-89.823415
-38016=35.181507,-89.760052
-38017=35.066971,-89.648939
-38018=35.138510,-89.760016
-38019=35.562373,-89.628878
-38021=35.875848,-89.164750
-38023=35.457109,-89.938330
-38024=36.035542,-89.380814
-38028=35.183099,-89.632200
-38029=35.238741,-89.821895
-38030=36.016378,-89.586052
-38034=35.911414,-89.236962
-38036=35.320220,-89.625825
-38037=35.797359,-89.398895
-38039=35.070591,-89.155715
-38040=35.892390,-89.444872
-38041=35.659289,-89.704618
-38042=35.145159,-89.137403
-38044=35.199316,-88.809933
-38046=35.069904,-89.247931
-38047=36.090531,-89.503400
-38049=35.390333,-89.538210
-38050=35.829629,-89.233070
-38052=35.090254,-88.917801
-38053=35.346626,-89.951498
-38054=35.336356,-89.873398
-38057=35.052974,-89.368397
-38058=35.458137,-89.816306
-38059=36.105685,-89.248757
-38060=35.209347,-89.505468
-38061=35.068390,-88.770907
-38063=35.764057,-89.640503
-38066=35.073387,-89.505031
-38067=35.081609,-89.041788
-38068=35.265556,-89.345170
-38069=35.477856,-89.330284
-38070=35.943560,-89.237010
-38075=35.379076,-89.136127
-38076=35.138706,-89.442078
-38077=36.328075,-89.474394
-38079=36.427748,-89.462502
-38080=36.207086,-89.519208
-38103=35.153050,-90.054979
-38104=35.132549,-90.003728
-38105=35.151419,-90.035468
-38106=35.102064,-90.094687
-38107=35.170165,-90.023442
-38108=35.176666,-89.967917
-38109=35.037886,-90.154242
-38111=35.110521,-89.943501
-38112=35.147662,-89.976392
-38114=35.096479,-89.985848
-38115=35.053329,-89.862806
-38116=35.033181,-90.011396
-38117=35.115180,-89.905344
-38118=35.032631,-89.932532
-38119=35.079511,-89.845385
-38120=35.123633,-89.852645
-38122=35.158933,-89.921214
-38125=35.025913,-89.788637
-38126=35.126968,-90.043659
-38127=35.242751,-90.026790
-38128=35.224574,-89.926689
-38131=35.066359,-89.992094
-38132=35.073171,-89.994830
-38133=35.212893,-89.794288
-38134=35.174957,-89.859879
-38135=35.238915,-89.848589
-38138=35.084827,-89.799331
-38139=35.079657,-89.755097
-38141=35.013650,-89.856938
-38152=35.123648,-89.931390
-38201=36.123507,-88.530333
-38220=35.993575,-88.670909
-38221=36.244754,-88.035010
-38222=36.445536,-88.157903
-38224=36.387017,-88.492197
-38225=36.318850,-88.670740
-38226=36.484448,-88.701518
-38229=36.223130,-88.606426
-38230=36.155230,-88.775865
-38231=36.213058,-88.426137
-38232=36.359026,-89.324185
-38233=36.203444,-89.049080
-38235=35.989374,-88.563893
-38236=36.168109,-88.268062
-38237=36.358391,-88.837992
-38240=36.245091,-89.318119
-38241=36.427772,-88.591844
-38242=36.305579,-88.331120
-38251=36.459872,-88.355856
-38253=36.264479,-88.993346
-38254=36.374904,-89.347404
-38255=36.240718,-88.859130
-38256=36.308521,-88.131502
-38257=36.456709,-88.876526
-38258=36.032792,-88.619287
-38259=36.199152,-89.183658
-38260=36.360777,-89.200363
-38261=36.428860,-89.113506
-38301=35.588164,-88.853395
-38305=35.701654,-88.768058
-38310=35.261666,-88.408570
-38311=35.437098,-88.104204
-38313=35.610339,-88.619827
-38315=35.268316,-88.615654
-38316=36.065982,-88.817584
-38317=36.057937,-88.263810
-38318=35.947414,-88.242002
-38320=36.051656,-88.112600
-38321=35.845504,-88.532266
-38326=35.054654,-88.286151
-38327=35.224410,-88.308574
-38328=35.680535,-88.215686
-38329=35.537576,-88.107790
-38330=36.070503,-89.034414
-38332=35.419091,-88.426456
-38333=36.128133,-87.954454
-38334=35.361284,-88.571718
-38337=35.785275,-89.014026
-38339=35.052272,-88.515023
-38340=35.401322,-88.683250
-38341=35.877577,-88.083895
-38342=36.071740,-88.288871
-38343=35.827399,-88.926409
-38344=35.978164,-88.424138
-38345=35.597455,-88.506055
-38347=35.477766,-88.498600
-38348=35.872744,-88.650963
-38351=35.671109,-88.399952
-38352=35.529455,-88.533846
-38355=35.784009,-88.775061
-38356=35.438396,-88.893792
-38357=35.044826,-88.415338
-38358=35.916675,-88.758664
-38359=35.369853,-88.351362
-38361=35.311301,-88.299924
-38362=35.729072,-88.782978
-38363=35.687843,-88.110764
-38365=35.054250,-88.232127
-38366=35.479000,-88.741273
-38367=35.053048,-88.623242
-38368=35.510913,-88.348129
-38369=36.131922,-88.942666
-38370=35.383879,-88.245206
-38371=35.424293,-88.295085
-38372=35.143564,-88.156874
-38374=35.505610,-88.230904
-38375=35.157812,-88.591697
-38376=35.099209,-88.368705
-38379=35.164244,-88.433753
-38380=35.780087,-88.038992
-38381=35.357199,-88.971359
-38382=35.968463,-88.984393
-38387=35.872920,-88.277462
-38388=35.781620,-88.319887
-38390=35.840546,-88.372294
-38391=35.546571,-88.992177
-38392=35.456728,-89.044845
-38401=35.629164,-87.021526
-38425=35.412209,-87.943013
-38449=35.040439,-86.818172
-38450=35.183623,-87.792739
-38451=35.460534,-86.992239
-38452=35.080355,-87.796308
-38453=35.121360,-86.812108
-38454=35.728171,-87.345316
-38455=35.043543,-86.885707
-38456=35.335476,-87.266379
-38457=35.029325,-87.284446
-38459=35.194281,-86.805450
-38460=35.088664,-87.153186
-38461=35.593001,-87.341971
-38462=35.528171,-87.562943
-38463=35.070595,-87.645115
-38464=35.290788,-87.433736
-38468=35.135146,-87.291063
-38469=35.074665,-87.428629
-38471=35.083901,-87.932397
-38472=35.377610,-87.038523
-38473=35.021246,-87.171674
-38474=35.517968,-87.226224
-38475=35.253477,-88.016092
-38476=35.841187,-87.213762
-38477=35.064974,-86.993087
-38478=35.232881,-87.005872
-38481=35.031246,-87.492311
-38482=35.768825,-87.149896
-38483=35.440765,-87.333659
-38485=35.356481,-87.782136
-38486=35.170567,-87.545112
-38487=35.718406,-87.233466
-38488=35.042917,-86.663495
-38501=36.226045,-85.533285
-38504=36.395555,-84.724678
-38505=36.175064,-85.505075
-38506=36.187107,-85.433312
-38541=36.538018,-85.335604
-38542=36.317132,-85.202215
-38543=36.350091,-85.150004
-38544=36.123588,-85.663143
-38545=36.232094,-85.662826
-38547=36.156158,-86.006625
-38548=36.164152,-85.790513
-38549=36.562130,-85.149064
-38551=36.558054,-85.487180
-38552=36.217719,-85.813680
-38553=36.201869,-85.006317
-38554=36.249490,-85.161655
-38555=35.887881,-84.989016
-38556=36.406761,-84.918949
-38558=36.009882,-84.866567
-38559=35.808437,-85.508014
-38560=36.221922,-85.855645
-38562=36.354002,-85.657669
-38563=36.214191,-86.023411
-38564=36.275933,-85.735915
-38565=36.262759,-85.009469
-38567=36.132827,-85.925669
-38568=36.438492,-85.473057
-38569=36.092342,-85.863126
-38570=36.376276,-85.326452
-38571=36.051604,-85.012804
-38572=35.849059,-85.128960
-38573=36.493416,-85.223882
-38574=36.143643,-85.229289
-38575=36.555337,-85.636403
-38577=36.565976,-84.972395
-38578=35.981795,-85.198328
-38579=35.835867,-85.548177
-38580=36.290013,-85.299934
-38581=35.741040,-85.620827
-38582=36.099444,-85.764549
-38583=35.944540,-85.442214
-38585=35.618527,-85.485795
-38587=35.864761,-85.613998
-38588=36.446386,-85.730671
-38589=36.285583,-85.077112
-38601=34.492325,-89.443056
-38603=34.848410,-89.142260
-38606=34.303262,-89.952316
-38610=34.651787,-89.025549
-38611=34.856233,-89.676020
-38614=34.157044,-90.597737
-38617=34.351492,-90.522013
-38618=34.716284,-89.937850
-38619=34.518142,-89.835541
-38620=34.230138,-89.902510
-38621=34.447192,-90.170459
-38622=34.171912,-90.138492
-38623=34.367662,-90.282849
-38625=34.612136,-88.826435
-38626=34.517362,-90.414527
-38627=34.417830,-89.207944
-38629=34.862808,-89.009788
-38630=34.278839,-90.685609
-38631=34.360976,-90.619981
-38632=34.795914,-90.015068
-38633=34.647337,-89.194971
-38635=34.766909,-89.486327
-38637=34.952081,-90.049209
-38639=34.303108,-90.432003
-38641=34.911876,-90.191356
-38642=34.928904,-89.334667
-38643=34.148487,-90.260865
-38644=34.460809,-90.493530
-38645=34.247849,-90.476420
-38646=34.289637,-90.314386
-38647=34.963506,-89.224108
-38650=34.528102,-89.145451
-38651=34.893390,-90.002204
-38652=34.483075,-88.996667
-38654=34.933929,-89.816280
-38655=34.333217,-89.473309
-38658=34.188345,-89.901020
-38659=34.621505,-89.331511
-38661=34.896991,-89.561056
-38663=34.734051,-88.882216
-38664=34.811462,-90.329253
-38665=34.583273,-90.166012
-38666=34.425884,-89.920273
-38668=34.590668,-89.917818
-38670=34.416895,-90.288714
-38671=34.966282,-89.998152
-38672=34.911400,-89.927894
-38673=34.293443,-89.635806
-38674=34.868370,-88.892398
-38676=34.666450,-90.383731
-38677=34.365411,-89.537180
-38680=34.951674,-90.146147
-38683=34.934910,-88.867314
-38685=34.593050,-89.488478
-38701=33.310738,-91.044262
-38702=33.535666,-91.180051
-38703=33.475662,-91.052834
-38704=33.007175,-91.021252
-38720=34.108397,-90.788009
-38721=32.989634,-90.746359
-38722=33.260304,-90.883939
-38723=33.229662,-91.038367
-38725=33.648757,-91.030947
-38726=33.755796,-90.988708
-38730=33.682859,-90.790778
-38731=33.066600,-91.046742
-38732=33.758855,-90.725595
-38736=33.642790,-90.537368
-38737=33.863521,-90.524172
-38738=33.945099,-90.533141
-38740=34.057678,-90.798760
-38744=33.014154,-91.037148
-38745=32.972278,-90.992816
-38746=33.961973,-90.909267
-38748=33.151196,-90.902048
-38749=33.447423,-90.752367
-38751=33.445530,-90.686995
-38753=33.347339,-90.576284
-38754=33.249944,-90.622535
-38756=33.389797,-90.860225
-38759=33.825158,-90.730327
-38760=33.458034,-90.989273
-38761=33.430152,-90.484464
-38762=33.895940,-90.716631
-38764=33.780114,-90.866202
-38765=33.069113,-90.874611
-38767=34.140502,-90.784721
-38768=33.975737,-90.499770
-38769=33.864775,-90.985297
-38771=33.739965,-90.528989
-38772=33.559244,-91.052351
-38773=33.607259,-90.776876
-38774=33.960037,-90.762860
-38778=33.547117,-90.531332
-38781=33.908553,-90.756588
-38801=34.222629,-88.774588
-38804=34.281378,-88.672873
-38821=33.977521,-88.436749
-38824=34.520784,-88.643025
-38826=34.301247,-88.841482
-38827=34.516910,-88.177452
-38828=34.429858,-88.869190
-38829=34.650609,-88.527209
-38833=34.918147,-88.319035
-38834=34.917111,-88.571777
-38838=34.546433,-88.255741
-38841=34.352581,-89.015298
-38843=34.262054,-88.376344
-38844=33.838614,-88.255262
-38846=34.851720,-88.385389
-38847=34.412540,-88.232960
-38848=33.937645,-88.271066
-38849=34.460959,-88.696052
-38850=34.058891,-89.057937
-38851=33.910500,-88.968194
-38852=34.843688,-88.213248
-38855=34.323342,-88.485408
-38856=34.467115,-88.455149
-38857=34.281521,-88.574989
-38858=34.099952,-88.549476
-38859=34.514877,-88.375117
-38860=33.971749,-88.761409
-38862=34.168139,-88.623239
-38863=34.217915,-89.019053
-38864=34.157283,-89.207666
-38865=34.788031,-88.595406
-38866=34.367620,-88.680078
-38868=34.123549,-88.762644
-38869=34.357456,-88.835132
-38870=34.067434,-88.336282
-38871=34.381713,-89.247255
-38873=34.659698,-88.242903
-38876=34.213590,-88.230292
-38878=33.904511,-89.187449
-38879=34.184616,-88.718163
-38901=33.762528,-89.802915
-38913=34.138881,-89.384872
-38914=33.846213,-89.416592
-38915=34.037640,-89.388855
-38916=33.816534,-89.352740
-38917=33.557840,-90.008168
-38920=33.910061,-89.995338
-38921=33.982154,-90.144181
-38922=33.932695,-89.649202
-38923=33.388567,-89.988589
-38924=33.291490,-90.224611
-38925=33.626030,-89.634279
-38927=34.142879,-90.026843
-38928=33.869471,-90.291749
-38929=33.739460,-89.531313
-38930=33.538034,-90.154409
-38940=33.744195,-90.056814
-38941=33.484573,-90.358231
-38943=33.539901,-89.845569
-38944=33.765008,-90.341539
-38945=33.600948,-90.168029
-38946=33.364004,-90.378549
-38947=33.533842,-89.898549
-38948=34.067711,-89.882122
-38949=34.191573,-89.425419
-38950=33.733058,-90.200045
-38951=33.973783,-89.290490
-38952=33.628122,-90.344867
-38953=33.930672,-89.933405
-38954=33.415410,-90.212157
-38957=33.991776,-90.350322
-38958=33.303673,-90.428149
-38961=33.954527,-89.914974
-38962=33.871721,-90.185145
-38963=34.024854,-90.393065
-38964=34.099060,-90.398491
-38965=34.135546,-89.601746
-38966=33.947038,-90.319159
-38967=33.457399,-89.732453
-39038=33.186060,-90.484577
-39039=32.816550,-90.217495
-39040=32.629706,-90.417476
-39041=32.404803,-90.468865
-39042=32.197548,-89.895006
-39044=32.029303,-89.974668
-39045=32.819535,-89.784552
-39046=32.632163,-89.983933
-39047=32.421115,-89.945501
-39051=32.778076,-89.490169
-39054=32.774344,-90.939277
-39056=32.373751,-90.350864
-39057=32.490854,-89.284427
-39059=31.982459,-90.355783
-39061=33.086397,-90.820582
-39062=31.985095,-89.898309
-39063=33.116674,-89.897489
-39066=32.296627,-90.606153
-39067=33.110083,-89.443782
-39069=31.686160,-91.043249
-39071=32.556371,-90.318383
-39073=32.102431,-90.135817
-39074=32.393704,-89.478007
-39078=31.878048,-90.188204
-39079=32.935327,-89.898550
-39082=31.941844,-90.120075
-39083=31.844615,-90.477306
-39086=31.949428,-90.766630
-39088=32.754644,-90.703709
-39090=33.002016,-89.543898
-39092=32.319548,-89.362401
-39094=32.586250,-89.663156
-39095=33.129605,-90.087121
-39096=31.817636,-91.120698
-39097=32.989067,-90.607666
-39108=33.149349,-89.338532
-39110=32.504199,-90.147242
-39111=31.896635,-89.718092
-39113=32.913834,-91.017222
-39114=31.951836,-89.824587
-39115=33.044863,-90.566898
-39116=31.896441,-89.538254
-39117=32.296241,-89.656952
-39119=31.751549,-89.670777
-39120=31.508632,-91.358538
-39140=31.749259,-90.020236
-39144=31.821262,-90.792159
-39145=32.344663,-89.794359
-39146=32.875897,-89.994910
-39149=31.831965,-90.010649
-39150=32.004742,-90.976048
-39152=32.207475,-89.585474
-39153=32.045133,-89.490046
-39154=32.225111,-90.444671
-39156=32.547816,-90.776742
-39157=32.425874,-90.169852
-39159=32.826566,-90.935377
-39160=32.992412,-89.764800
-39162=32.618790,-90.624439
-39166=33.040820,-90.481639
-39167=32.094163,-90.041201
-39168=31.831878,-89.411823
-39169=33.215516,-90.245118
-39170=32.111772,-90.330654
-39174=32.401478,-90.159514
-39175=32.090718,-90.631235
-39176=33.306079,-89.768327
-39177=32.623273,-90.800274
-39179=32.802440,-90.096935
-39180=32.224042,-90.857132
-39183=32.447078,-90.806610
-39189=32.608003,-89.400149
-39191=31.711309,-90.424334
-39192=33.183639,-89.762234
-39193=32.234475,-90.079333
-39194=32.845243,-90.520794
-39201=32.289606,-90.184324
-39202=32.311113,-90.170982
-39203=32.308883,-90.200338
-39204=32.279311,-90.206334
-39206=32.372402,-90.172455
-39208=32.259775,-90.091940
-39209=32.395522,-90.293193
-39211=32.372134,-90.122605
-39212=32.243261,-90.280351
-39213=32.392757,-90.236590
-39216=32.333857,-90.159647
-39217=32.299131,-90.210495
-39218=32.230413,-90.159622
-39232=32.330662,-90.091792
-39269=32.301109,-90.188890
-39272=32.190610,-90.258327
-39301=32.273648,-88.580363
-39305=32.463029,-88.714721
-39307=32.334866,-88.796844
-39309=32.548929,-88.615424
-39320=32.569335,-88.744163
-39322=31.535469,-88.503696
-39323=32.352256,-88.923758
-39325=32.561988,-88.877508
-39326=32.602744,-88.656165
-39327=32.446095,-89.118554
-39328=32.743509,-88.698611
-39330=32.180797,-88.843394
-39332=32.304300,-88.998857
-39335=32.533136,-88.491090
-39336=32.300601,-89.262200
-39337=32.507687,-88.979980
-39338=32.106742,-89.230937
-39339=33.101905,-89.011663
-39341=33.098547,-88.566395
-39342=32.424496,-88.648338
-39345=32.291789,-89.121899
-39346=32.965035,-89.095535
-39347=32.060443,-88.942004
-39348=32.015293,-89.032672
-39350=32.796469,-89.125241
-39352=32.684042,-88.481687
-39354=32.875326,-88.840419
-39355=32.054731,-88.624649
-39356=32.134212,-89.021973
-39358=32.905390,-88.411185
-39359=32.567824,-89.333571
-39360=31.864814,-88.754017
-39361=32.995473,-88.596380
-39362=31.390960,-88.541129
-39363=32.127054,-88.765481
-39364=32.405281,-88.486617
-39365=32.602694,-89.126133
-39366=31.943818,-88.918617
-39367=31.676874,-88.665860
-39401=31.234112,-89.265885
-39402=31.333704,-89.419175
-39406=31.328445,-89.334570
-39421=31.492362,-89.721243
-39422=31.959313,-89.257708
-39423=31.170495,-88.915119
-39425=31.060357,-89.080132
-39426=30.655222,-89.661259
-39427=31.480130,-89.814542
-39428=31.651053,-89.572840
-39429=31.239384,-89.763166
-39437=31.579926,-89.218571
-39439=31.849171,-89.013986
-39440=31.693212,-89.147245
-39443=31.716721,-89.078154
-39451=31.177200,-88.621661
-39452=30.873965,-88.601996
-39455=31.011868,-89.458807
-39456=31.060070,-88.823703
-39459=31.489786,-89.304575
-39461=31.205789,-88.732708
-39462=31.234012,-89.056621
-39464=31.491996,-89.083940
-39465=31.339572,-89.188170
-39466=30.520513,-89.585934
-39470=30.822892,-89.569010
-39474=31.612609,-89.855170
-39475=31.153467,-89.425360
-39476=31.386969,-88.866929
-39477=31.788272,-89.033802
-39478=31.054177,-89.856810
-39479=31.529263,-89.458176
-39480=31.711510,-89.315093
-39481=31.868385,-89.238136
-39482=31.372022,-89.579154
-39483=31.242774,-89.932348
-39501=30.382966,-89.102426
-39503=30.474612,-89.152878
-39507=30.400484,-89.034466
-39520=30.271308,-89.481756
-39525=30.381932,-89.370784
-39530=30.409826,-88.880304
-39531=30.403986,-88.966183
-39532=30.493085,-88.964318
-39534=30.407460,-88.924631
-39540=30.443102,-88.897234
-39553=30.410797,-88.644997
-39556=30.441523,-89.440233
-39560=30.376353,-89.172731
-39561=30.702516,-89.154883
-39562=30.546682,-88.489452
-39563=30.421750,-88.523082
-39564=30.404770,-88.771229
-39565=30.587095,-88.744463
-39567=30.365446,-88.540115
-39571=30.420066,-89.275043
-39572=30.251304,-89.601020
-39573=30.730997,-89.093397
-39574=30.611848,-89.089935
-39576=30.290082,-89.383278
-39577=30.904729,-89.086488
-39581=30.357101,-88.489323
-39601=31.563080,-90.471262
-39629=31.436637,-90.456850
-39630=31.459306,-90.845350
-39631=31.067208,-91.134006
-39633=31.306441,-91.180646
-39635=31.191429,-90.463430
-39638=31.225004,-90.995924
-39641=31.355199,-90.174857
-39643=31.246549,-90.014258
-39645=31.148785,-90.798891
-39647=31.525975,-90.722700
-39648=31.189344,-90.384302
-39652=31.113659,-90.475396
-39653=31.481823,-90.864478
-39654=31.544944,-90.136681
-39656=31.443901,-89.931798
-39657=31.040324,-90.506268
-39661=31.484447,-91.083468
-39662=31.386372,-90.285394
-39663=31.594893,-90.038161
-39664=31.325970,-90.674153
-39665=31.642810,-90.209176
-39666=31.294966,-90.482726
-39667=31.124737,-90.126164
-39668=31.710493,-90.809340
-39669=31.121117,-91.383123
-39701=33.393933,-88.504719
-39702=33.439736,-88.344713
-39705=33.587945,-88.441102
-39730=33.843635,-88.565615
-39735=33.353169,-89.187425
-39736=33.431914,-88.652317
-39737=33.670566,-89.330323
-39739=33.239354,-88.573864
-39740=33.722448,-88.305334
-39741=33.645295,-88.866068
-39743=33.336759,-88.618920
-39744=33.579940,-89.307271
-39745=33.296546,-89.451227
-39746=33.749040,-88.414965
-39747=33.409239,-89.554553
-39750=33.568955,-89.044772
-39751=33.695301,-89.093267
-39752=33.522607,-89.150748
-39755=33.607091,-88.963874
-39756=33.756717,-88.741085
-39759=33.437924,-88.825142
-39760=33.464234,-88.705141
-39762=33.452793,-88.795207
-39766=33.587707,-88.312071
-39767=33.475509,-89.448715
-39769=33.321925,-89.017837
-39771=33.606242,-89.275295
-39772=33.295116,-89.304309
-39773=33.647676,-88.690332
-39776=33.780141,-89.040474
-39813=31.423156,-84.684305
-39815=30.738850,-84.490698
-39817=30.943525,-84.602003
-39819=30.788581,-84.634069
-39823=31.336246,-84.946067
-39824=31.495163,-84.925018
-39825=30.930767,-84.740763
-39826=31.820634,-84.348887
-39827=30.947610,-84.210381
-39828=30.808346,-84.224088
-39834=30.894278,-84.431150
-39836=31.666007,-84.868633
-39837=31.152104,-84.677706
-39840=31.780932,-84.764867
-39841=31.292866,-84.685044
-39842=31.760949,-84.437475
-39845=30.951468,-84.892838
-39846=31.562973,-84.745898
-39851=31.619831,-84.992583
-39854=31.869218,-85.052557
-39859=30.987652,-84.812747
-39861=31.135350,-84.987248
-39862=31.459371,-84.517381
-39866=31.559484,-84.594397
-39867=31.828416,-84.927893
-39870=31.322028,-84.414137
-39877=31.915159,-84.511576
-39885=31.717425,-84.351063
-39886=31.745736,-84.621515
-39897=30.911205,-84.329813
-40003=38.276689,-85.043822
-40004=37.803188,-85.465955
-40006=38.596216,-85.333041
-40007=38.458345,-84.999150
-40008=37.908948,-85.275003
-40009=37.470226,-85.107358
-40010=38.372519,-85.459505
-40011=38.527667,-85.170096
-40012=37.900841,-85.191982
-40013=37.934851,-85.458027
-40014=38.340259,-85.429678
-40019=38.380651,-85.164331
-40020=37.934784,-85.387416
-40022=38.153418,-85.354984
-40023=38.174143,-85.432342
-40025=38.299699,-85.648691
-40026=38.431156,-85.532639
-40031=38.429416,-85.400814
-40033=37.544124,-85.225553
-40036=38.415891,-84.982447
-40037=37.660663,-85.417540
-40040=37.777043,-85.069286
-40041=38.255905,-85.664161
-40045=38.687495,-85.358885
-40046=38.023931,-85.169791
-40047=38.039402,-85.555239
-40048=37.847040,-85.470265
-40049=37.663524,-85.395025
-40050=38.446036,-85.186747
-40051=37.677069,-85.551473
-40052=37.604128,-85.487942
-40055=38.495202,-85.326025
-40056=38.303813,-85.490141
-40057=38.394194,-85.042908
-40058=38.432738,-85.170464
-40059=38.358108,-85.593622
-40060=37.542332,-85.466267
-40062=37.605469,-85.441439
-40063=37.570702,-85.342095
-40065=38.216500,-85.206928
-40067=38.222612,-85.369792
-40068=38.395535,-85.274186
-40069=37.723856,-85.207678
-40070=38.468642,-85.232149
-40071=38.042957,-85.378780
-40075=38.568134,-85.112670
-40076=38.113729,-85.086124
-40077=38.495455,-85.444636
-40078=37.831112,-85.144773
-40104=38.085529,-86.332850
-40107=37.725327,-85.598827
-40108=37.969937,-86.172853
-40109=38.064495,-85.750373
-40110=37.932836,-85.658363
-40111=37.774696,-86.629060
-40115=37.727892,-86.228337
-40117=37.896583,-86.124289
-40118=38.097497,-85.751202
-40119=37.608198,-86.553158
-40121=37.952624,-85.924406
-40140=37.763133,-86.353952
-40142=37.893218,-86.204086
-40143=37.781355,-86.509757
-40144=37.740090,-86.368271
-40145=37.640459,-86.314394
-40146=37.849377,-86.330840
-40150=37.880230,-85.713277
-40152=37.601537,-86.456025
-40155=37.935748,-85.992029
-40157=38.049960,-86.436187
-40160=37.812813,-85.931370
-40161=38.001981,-86.386237
-40162=37.756799,-86.059932
-40165=37.973087,-85.672012
-40170=37.963833,-86.509001
-40171=37.965455,-86.465352
-40175=37.819003,-86.089891
-40176=37.918739,-86.333203
-40177=38.006773,-85.921532
-40178=37.659592,-86.412555
-40202=38.256783,-85.754048
-40203=38.252697,-85.765167
-40204=38.239913,-85.721591
-40205=38.223001,-85.683261
-40206=38.260083,-85.704721
-40207=38.266454,-85.656675
-40208=38.221122,-85.767591
-40209=38.189888,-85.748301
-40210=38.231530,-85.786206
-40211=38.236254,-85.823836
-40212=38.271962,-85.799332
-40213=38.177589,-85.719409
-40214=38.151772,-85.780765
-40215=38.190476,-85.785734
-40216=38.189915,-85.840331
-40217=38.216712,-85.737515
-40218=38.189321,-85.654311
-40219=38.137909,-85.692693
-40220=38.216488,-85.617812
-40222=38.271765,-85.619448
-40223=38.258349,-85.539878
-40228=38.134078,-85.626299
-40229=38.089498,-85.653882
-40231=38.195065,-85.694920
-40241=38.299974,-85.575689
-40242=38.277471,-85.590514
-40243=38.241801,-85.536121
-40245=38.267088,-85.446242
-40258=38.146270,-85.877927
-40272=38.078458,-85.853119
-40280=38.247636,-85.688309
-40291=38.130795,-85.583674
-40299=38.151687,-85.517172
-40310=37.749341,-84.764605
-40311=38.332047,-83.997108
-40312=37.854688,-83.939710
-40313=38.146989,-83.376611
-40316=37.941684,-83.540062
-40322=37.938706,-83.634947
-40324=38.245380,-84.550241
-40328=37.603953,-85.067062
-40330=37.787723,-84.888056
-40334=38.013489,-83.762317
-40336=37.682978,-83.990952
-40337=37.942343,-83.854645
-40339=37.944094,-84.638897
-40342=37.995815,-84.979522
-40346=37.987118,-83.743879
-40347=38.158286,-84.728351
-40348=38.288717,-84.129361
-40350=38.304672,-83.873854
-40351=38.204798,-83.415533
-40353=38.064374,-83.948043
-40356=37.874952,-84.563367
-40358=38.060509,-83.675506
-40359=38.491906,-84.802855
-40360=38.155201,-83.789536
-40361=38.208885,-84.227201
-40363=38.514407,-85.009763
-40370=38.403476,-84.525082
-40371=38.103703,-83.580388
-40372=37.911756,-84.888114
-40374=38.222359,-83.889740
-40376=37.772740,-83.690009
-40379=38.301951,-84.687097
-40380=37.815614,-83.792349
-40383=38.006622,-84.739332
-40385=37.737704,-84.133019
-40387=37.933577,-83.492267
-40390=37.851165,-84.665677
-40391=37.970133,-84.144974
-40402=37.291850,-83.975762
-40403=37.570447,-84.271931
-40404=37.573471,-84.290858
-40409=37.369175,-84.434872
-40419=37.451573,-84.494425
-40422=37.640997,-84.797275
-40434=37.394162,-83.940822
-40437=37.435585,-84.870130
-40440=37.585916,-84.820024
-40442=37.337665,-84.751024
-40444=37.666711,-84.577249
-40445=37.338854,-84.187292
-40447=37.485785,-84.032347
-40448=37.462357,-84.753192
-40456=37.353471,-84.319508
-40460=37.397602,-84.226739
-40461=37.582530,-84.406000
-40464=37.572274,-84.925060
-40468=37.633933,-84.978242
-40472=37.732128,-83.859667
-40475=37.761600,-84.312523
-40481=37.448818,-84.090133
-40484=37.520580,-84.673931
-40486=37.365328,-83.862799
-40489=37.365743,-84.637255
-40502=38.010953,-84.483191
-40503=38.005828,-84.533469
-40504=38.042413,-84.544016
-40505=38.060653,-84.457238
-40506=38.028302,-84.503140
-40507=38.046955,-84.496353
-40508=38.061351,-84.511664
-40509=37.997348,-84.377851
-40510=38.071200,-84.583839
-40511=38.140290,-84.461610
-40513=38.016681,-84.605237
-40514=37.982460,-84.563051
-40515=37.917671,-84.391441
-40516=38.071804,-84.364002
-40517=37.982958,-84.489425
-40601=38.234919,-84.868786
-40604=38.175520,-84.864682
-40701=36.921744,-84.157710
-40729=37.255245,-84.136477
-40734=36.926433,-83.958386
-40737=37.009948,-84.122349
-40740=37.020582,-84.037313
-40741=37.136791,-84.127273
-40743=37.072517,-84.115373
-40744=37.029447,-84.118983
-40759=36.812972,-84.057124
-40763=36.689229,-83.925596
-40769=36.703266,-84.197082
-40771=36.864170,-84.034739
-40801=36.862203,-83.246075
-40806=36.891244,-83.297002
-40807=36.964094,-82.946000
-40808=36.996323,-83.203375
-40810=36.906939,-83.374584
-40813=36.709933,-83.591922
-40815=36.784475,-83.219114
-40816=37.013621,-83.295401
-40818=36.821595,-83.243138
-40819=36.804994,-83.446272
-40820=36.743868,-83.196612
-40823=36.958653,-82.990992
-40824=36.825297,-83.375312
-40826=37.046369,-82.764161
-40827=37.038287,-83.511991
-40828=36.879563,-83.123284
-40829=36.796100,-83.302352
-40830=36.760179,-83.328572
-40831=36.766514,-83.354288
-40840=36.900050,-83.440035
-40843=36.891147,-82.991051
-40844=37.057797,-83.341426
-40845=36.798817,-83.517970
-40847=36.850594,-83.174781
-40849=36.893966,-83.131739
-40854=36.845507,-83.353673
-40855=36.929858,-82.885329
-40856=36.738523,-83.527336
-40858=37.004029,-83.410985
-40862=37.018411,-82.855656
-40863=36.727167,-83.430955
-40865=36.920061,-83.211161
-40868=37.077034,-83.497075
-40870=36.923421,-83.144356
-40873=36.818242,-83.409322
-40874=36.997914,-83.469747
-40902=36.882283,-83.580345
-40903=36.799013,-83.810876
-40906=36.872205,-83.881995
-40913=36.925505,-83.567386
-40914=37.142607,-83.567824
-40915=36.887306,-83.807591
-40921=36.767148,-83.886661
-40923=36.919158,-83.844638
-40927=36.873248,-83.063114
-40935=36.919509,-83.722328
-40939=36.811921,-83.696262
-40940=36.602546,-83.939044
-40941=37.124921,-83.732392
-40943=36.970503,-83.861164
-40946=36.974203,-83.807193
-40949=36.887038,-83.870869
-40953=36.937968,-83.801341
-40958=36.809878,-83.596919
-40962=37.145887,-83.745519
-40964=36.772676,-83.312963
-40965=36.646347,-83.720813
-40972=37.259634,-83.577025
-40977=36.700132,-83.772324
-40979=37.005773,-83.511259
-40982=36.932744,-83.690087
-40983=37.330951,-83.754614
-40988=36.866617,-83.516631
-40995=36.761013,-83.815456
-40997=36.894542,-83.662034
-41001=38.917606,-84.403370
-41002=38.742052,-83.973538
-41003=38.529640,-84.390246
-41004=38.644125,-84.087983
-41005=39.006759,-84.760116
-41006=38.784430,-84.345639
-41007=38.892187,-84.294627
-41008=38.663259,-85.168673
-41010=38.499633,-84.608194
-41011=39.067114,-84.532685
-41014=39.066290,-84.505282
-41015=38.979710,-84.478596
-41016=39.088749,-84.548476
-41017=39.029195,-84.562134
-41018=39.014901,-84.602186
-41030=38.788764,-84.589293
-41031=38.417802,-84.288716
-41033=38.769191,-84.445138
-41034=38.723934,-83.891318
-41035=38.719224,-84.654354
-41039=38.414301,-83.871377
-41040=38.651666,-84.331305
-41041=38.407395,-83.720679
-41042=39.000968,-84.651005
-41043=38.761688,-84.204950
-41044=38.610431,-83.972434
-41045=38.717979,-85.035298
-41046=38.717378,-84.803336
-41048=39.098849,-84.706329
-41049=38.268994,-83.639781
-41051=38.935301,-84.550099
-41052=38.677987,-84.768518
-41055=38.525392,-83.866465
-41056=38.594938,-83.778131
-41059=39.013395,-84.351380
-41062=38.704010,-83.922840
-41063=38.846530,-84.495123
-41064=38.513826,-84.063757
-41071=39.071805,-84.485118
-41073=39.101364,-84.478768
-41074=39.110589,-84.462457
-41075=39.081974,-84.453172
-41076=39.013248,-84.453845
-41080=39.054690,-84.824178
-41083=38.666019,-84.967460
-41085=39.036410,-84.393332
-41086=38.689205,-84.871440
-41091=38.910267,-84.736327
-41092=38.815614,-84.688213
-41093=38.387403,-83.558464
-41094=38.882754,-84.624108
-41095=38.773687,-84.747466
-41097=38.621179,-84.581444
-41098=38.586870,-85.008171
-41099=39.035893,-84.468189
-41101=38.473824,-82.647933
-41102=38.427628,-82.730185
-41121=38.439405,-82.833674
-41124=38.064834,-82.869317
-41129=38.320926,-82.656257
-41132=38.272196,-82.812826
-41135=38.344292,-83.301983
-41139=38.514154,-82.726618
-41141=38.556381,-83.159390
-41142=38.277676,-83.073053
-41143=38.334906,-82.975412
-41144=38.540797,-82.942517
-41146=38.279178,-82.896024
-41149=38.098722,-83.076951
-41159=38.010408,-82.975082
-41164=38.288404,-83.157200
-41166=38.637199,-83.093646
-41168=38.306990,-82.751009
-41169=38.535531,-82.737890
-41171=38.088855,-83.106253
-41174=38.706271,-83.007077
-41175=38.648866,-82.972077
-41179=38.552152,-83.376774
-41180=38.150427,-82.884153
-41183=38.553369,-82.737832
-41189=38.547639,-83.562888
-41201=38.074457,-82.738302
-41203=37.840686,-82.459831
-41204=37.829542,-82.672333
-41214=37.801542,-82.627616
-41216=37.732570,-82.803368
-41219=37.926112,-82.905328
-41222=37.755891,-82.858454
-41224=37.805185,-82.545554
-41226=37.981129,-82.952213
-41230=38.043795,-82.672757
-41231=37.813549,-82.406876
-41232=37.941018,-82.729719
-41234=37.790227,-82.741933
-41238=37.846230,-82.961186
-41240=37.823975,-82.796579
-41250=37.715480,-82.455836
-41254=37.887302,-82.715298
-41255=37.904275,-82.832852
-41256=37.840093,-82.896758
-41257=37.918649,-82.794923
-41260=37.825569,-82.752785
-41262=37.845096,-82.630093
-41263=37.856896,-82.752180
-41264=37.924909,-82.681455
-41265=37.748183,-82.707253
-41267=37.878243,-82.441004
-41268=37.788452,-82.785270
-41271=37.822449,-82.723584
-41274=37.864160,-82.810705
-41301=37.728702,-83.492318
-41311=37.583220,-83.710711
-41314=37.425581,-83.640207
-41317=37.445675,-83.153193
-41332=37.800749,-83.389224
-41339=37.506632,-83.283040
-41348=37.409385,-83.301027
-41352=37.822932,-83.330290
-41360=37.801388,-83.614611
-41365=37.706784,-83.628873
-41366=37.595031,-83.217780
-41367=37.415013,-83.227817
-41385=37.663797,-83.314770
-41390=37.409329,-83.376933
-41397=37.689048,-83.673356
-41408=37.778659,-83.284967
-41421=37.992047,-83.197126
-41425=37.888882,-83.393015
-41464=37.658413,-82.952856
-41465=37.706222,-83.095290
-41472=37.943335,-83.248930
-41501=37.514355,-82.508901
-41503=37.664367,-82.287483
-41512=37.253716,-82.476077
-41513=37.344090,-82.343977
-41514=37.668918,-82.318529
-41517=37.195399,-82.578638
-41519=37.584041,-82.321566
-41522=37.297190,-82.389386
-41524=37.417963,-82.231061
-41526=37.433375,-82.510864
-41527=37.632121,-82.289018
-41528=37.548983,-82.139905
-41531=37.592806,-82.232756
-41534=37.277524,-82.476578
-41535=37.596357,-82.279670
-41537=37.222622,-82.613734
-41538=37.315580,-82.590072
-41539=37.506832,-82.327132
-41540=37.390941,-82.334873
-41543=37.547898,-82.285498
-41544=37.593903,-82.174090
-41547=37.536055,-82.090741
-41548=37.403075,-82.271225
-41553=37.477138,-82.163613
-41554=37.436460,-82.289063
-41555=37.538033,-82.258488
-41557=37.486031,-82.410913
-41558=37.538580,-82.209218
-41559=37.374432,-82.383096
-41560=37.395551,-82.578344
-41562=37.398708,-82.463613
-41563=37.232192,-82.536634
-41564=37.607614,-82.364813
-41566=37.403386,-82.201444
-41567=37.575019,-82.283322
-41568=37.492040,-82.097836
-41571=37.627536,-82.435568
-41572=37.313498,-82.643578
-41601=37.600075,-82.721790
-41602=37.745810,-82.754423
-41603=37.570574,-82.704312
-41604=37.383503,-82.660731
-41605=37.550134,-82.624611
-41606=37.336906,-82.734258
-41607=37.625066,-82.856899
-41612=37.354326,-82.723004
-41615=37.537440,-82.692539
-41616=37.561928,-82.879427
-41619=37.479335,-82.733485
-41621=37.626661,-82.731292
-41622=37.522691,-82.816952
-41630=37.467734,-82.798786
-41631=37.473520,-82.655341
-41632=37.564932,-82.951718
-41635=37.484500,-82.626118
-41636=37.399286,-82.731644
-41640=37.475597,-83.009273
-41642=37.592155,-82.648621
-41643=37.460203,-82.832233
-41645=37.523824,-82.795306
-41647=37.442268,-82.717674
-41649=37.570994,-82.776686
-41650=37.354509,-82.683267
-41653=37.654691,-82.757956
-41655=37.507237,-82.735644
-41659=37.579592,-82.621925
-41660=37.414098,-82.631727
-41663=37.565233,-82.659112
-41666=37.439031,-82.807592
-41667=37.308121,-82.694617
-41669=37.331634,-82.715525
-41701=37.292280,-83.189788
-41712=37.363727,-83.127097
-41713=37.219388,-83.276435
-41714=37.143481,-83.516890
-41719=37.306432,-83.258132
-41721=37.309110,-83.473327
-41722=37.369184,-83.115979
-41723=37.264853,-83.310720
-41725=37.339144,-83.035062
-41727=37.377305,-83.278803
-41729=37.264762,-83.215612
-41731=37.094053,-83.079451
-41735=37.015010,-83.102899
-41739=37.330369,-83.118657
-41740=37.364399,-83.072515
-41745=37.340210,-83.433003
-41746=37.213919,-83.090373
-41749=37.205001,-83.448725
-41751=37.210779,-83.138459
-41754=37.295245,-83.318415
-41759=37.217627,-83.014446
-41760=37.205706,-83.076493
-41762=37.273762,-83.474755
-41763=37.066991,-83.150356
-41764=37.116661,-83.253998
-41766=37.179868,-83.465731
-41772=37.424141,-83.053988
-41773=37.231869,-83.026707
-41774=37.142745,-83.139618
-41775=37.088098,-83.346410
-41776=37.168274,-83.294940
-41777=37.072378,-83.256440
-41804=37.151503,-83.002154
-41810=37.185169,-82.673873
-41812=37.254182,-82.745505
-41815=37.160405,-82.798142
-41817=37.347483,-82.929809
-41819=36.987114,-83.107019
-41821=37.059106,-83.014760
-41822=37.327340,-82.981932
-41824=37.191542,-82.873320
-41825=37.231031,-82.705616
-41826=37.163350,-82.912003
-41828=37.288132,-82.787912
-41831=37.387165,-82.953376
-41832=37.148686,-82.959284
-41833=37.026016,-82.985811
-41834=37.254312,-82.968840
-41835=37.221077,-82.667983
-41836=37.233323,-82.900543
-41837=37.125158,-82.758338
-41838=37.203755,-82.756691
-41839=37.396669,-82.905292
-41840=37.198988,-82.720877
-41843=37.283474,-82.845428
-41844=37.314352,-82.872327
-41845=37.141394,-82.901327
-41847=37.202518,-82.968252
-41848=37.093381,-82.947920
-41849=37.175839,-82.734853
-41855=37.190487,-82.784701
-41858=37.136055,-82.854849
-41859=37.387925,-82.771916
-41861=37.405758,-82.821902
-41862=37.335588,-82.778079
-42001=37.030572,-88.709400
-42003=37.004848,-88.577941
-42020=36.692634,-88.289872
-42021=36.822560,-89.027668
-42022=37.144988,-88.944769
-42023=36.872349,-88.990733
-42024=37.077408,-89.050311
-42025=36.856924,-88.334714
-42027=36.916671,-88.627686
-42028=37.238910,-88.336848
-42029=37.006472,-88.391960
-42031=36.685748,-88.991397
-42032=36.775805,-89.108067
-42035=36.900226,-88.840382
-42036=36.711521,-88.214544
-42037=37.172781,-88.187707
-42038=37.047413,-88.027647
-42039=36.788709,-88.825434
-42040=36.625296,-88.497073
-42041=36.550373,-88.877352
-42044=36.957582,-88.263203
-42045=37.063993,-88.263097
-42047=37.295041,-88.399352
-42048=36.765705,-88.228582
-42049=36.521138,-88.333756
-42050=36.555421,-89.219274
-42051=36.850728,-88.647174
-42053=37.112649,-88.877823
-42054=36.714454,-88.433457
-42055=37.075222,-88.174049
-42056=37.107275,-88.986746
-42058=37.058337,-88.465707
-42060=36.965854,-88.828130
-42061=36.882838,-88.766366
-42064=37.357138,-88.089515
-42066=36.732532,-88.639882
-42069=36.918791,-88.756493
-42071=36.624585,-88.284907
-42076=36.571455,-88.106951
-42078=37.277825,-88.286797
-42079=36.567752,-88.588819
-42081=37.226678,-88.416634
-42082=36.919858,-88.500423
-42083=37.161785,-88.288333
-42084=37.434663,-88.245662
-42085=36.569596,-88.800966
-42086=37.088547,-88.771835
-42087=36.973093,-88.994838
-42088=36.621222,-88.747697
-42101=37.058097,-86.463061
-42102=37.003731,-86.418234
-42103=36.945656,-86.281066
-42104=36.876864,-86.451190
-42120=36.672853,-86.262112
-42122=36.857070,-86.353679
-42123=36.817602,-85.982734
-42124=36.870540,-85.643964
-42127=37.113569,-85.918463
-42129=36.989145,-85.585467
-42130=36.925865,-85.786306
-42133=36.726047,-85.956233
-42134=36.724535,-86.564483
-42140=36.656541,-85.828893
-42141=36.947551,-85.918331
-42151=36.649748,-85.553812
-42153=36.663400,-86.066848
-42154=37.041978,-85.726199
-42156=36.851328,-86.053664
-42157=36.781385,-85.819740
-42159=36.994209,-86.247755
-42160=37.119712,-86.004268
-42163=37.079060,-86.134145
-42164=36.775664,-86.181864
-42166=36.880186,-85.708775
-42167=36.720987,-85.674109
-42170=36.840553,-86.576675
-42171=37.036369,-86.174441
-42202=36.682889,-86.844423
-42204=36.684754,-87.076167
-42206=36.886676,-86.743011
-42207=37.293995,-86.266888
-42210=37.206633,-86.252409
-42211=36.817748,-87.833699
-42214=37.138188,-85.683335
-42215=36.996009,-87.667395
-42217=37.040667,-87.458463
-42220=36.893234,-87.178636
-42223=36.628264,-87.462873
-42232=36.864767,-87.643359
-42234=36.721574,-87.178582
-42236=36.712080,-87.613526
-42240=36.880182,-87.463142
-42254=36.661018,-87.654511
-42256=37.000821,-86.937511
-42259=37.243161,-86.148284
-42261=37.217107,-86.671334
-42262=36.679919,-87.449417
-42265=36.739223,-87.004306
-42266=36.744341,-87.357244
-42273=37.215678,-86.838506
-42274=36.950235,-86.598782
-42275=37.216901,-86.457234
-42276=36.856794,-86.879933
-42280=36.956981,-87.099164
-42285=37.264053,-86.297813
-42286=36.729148,-87.289900
-42301=37.735778,-87.249397
-42303=37.759426,-87.046585
-42320=37.332728,-86.867017
-42321=37.165489,-87.055061
-42322=37.613648,-87.395313
-42323=37.173379,-87.035443
-42324=37.134997,-87.004577
-42325=37.327891,-87.274016
-42326=37.225420,-87.005465
-42327=37.580530,-87.297311
-42328=37.430849,-87.045199
-42330=37.321997,-87.115992
-42332=37.250429,-87.088665
-42333=37.363905,-86.752098
-42337=37.198474,-86.949246
-42338=37.543952,-86.800820
-42339=37.094280,-86.974743
-42343=37.652848,-86.693878
-42344=37.270864,-87.317148
-42345=37.135863,-87.183717
-42347=37.525035,-86.882159
-42348=37.830925,-86.774914
-42349=37.430310,-86.677192
-42350=37.455012,-87.186913
-42351=37.898577,-86.866633
-42352=37.514811,-87.085900
-42354=37.377987,-86.930571
-42355=37.856339,-86.993519
-42356=37.693255,-87.324109
-42361=37.517166,-86.683941
-42366=37.722748,-86.938515
-42367=37.239421,-87.159905
-42368=37.702946,-86.754071
-42369=37.358648,-87.003767
-42370=37.449020,-86.738928
-42371=37.510021,-87.289647
-42372=37.406181,-87.269553
-42374=37.325814,-87.154391
-42376=37.617483,-87.086437
-42378=37.667299,-86.863275
-42404=37.474342,-87.838259
-42406=37.762139,-87.738240
-42408=37.179537,-87.692699
-42409=37.538637,-87.692934
-42410=37.278539,-87.511771
-42411=37.198292,-88.010813
-42413=37.448656,-87.467001
-42420=37.810608,-87.515004
-42431=37.334473,-87.481387
-42436=37.373950,-87.575537
-42437=37.666657,-87.938070
-42440=37.240727,-87.464602
-42441=37.362648,-87.668529
-42442=37.167103,-87.488393
-42445=37.133339,-87.851740
-42450=37.395870,-87.763402
-42451=37.884533,-87.390707
-42452=37.686512,-87.531672
-42453=37.157856,-87.590712
-42455=37.593375,-87.542551
-42456=37.507705,-87.496097
-42458=37.839563,-87.420942
-42459=37.566806,-88.019048
-42461=37.797397,-87.889216
-42462=37.743982,-87.801718
-42463=37.472620,-87.869452
-42464=37.181253,-87.356159
-42501=37.056193,-84.450902
-42503=37.164960,-84.519399
-42516=37.222049,-84.786121
-42518=36.942370,-84.632646
-42519=36.955307,-84.535040
-42528=37.181802,-85.023368
-42533=37.072195,-84.592355
-42539=37.309082,-84.950978
-42541=37.358884,-84.794343
-42544=37.029948,-84.815125
-42553=37.156237,-84.697584
-42565=37.158976,-84.889276
-42566=37.278532,-84.783172
-42567=37.265935,-84.604696
-42602=36.739629,-85.110438
-42603=36.782248,-85.029028
-42629=36.912657,-85.138060
-42631=36.740393,-84.480989
-42633=36.802011,-84.830440
-42634=36.873369,-84.442676
-42635=36.680086,-84.396579
-42638=36.674602,-84.470477
-42642=37.058681,-85.035151
-42647=36.681248,-84.627344
-42649=36.619782,-84.430882
-42653=36.781914,-84.454957
-42701=37.703686,-85.837111
-42712=37.518754,-86.108877
-42713=37.383130,-85.883731
-42715=36.954779,-85.389844
-42716=37.479932,-85.606426
-42717=36.788363,-85.378995
-42718=37.385228,-85.373081
-42721=37.422980,-86.499733
-42722=37.276586,-85.716132
-42724=37.675918,-86.070835
-42726=37.425282,-86.141054
-42728=37.117031,-85.290070
-42729=37.306467,-86.096497
-42731=36.847822,-85.557382
-42732=37.588954,-86.133317
-42733=37.343603,-85.186430
-42740=37.586367,-85.948754
-42741=36.999228,-85.238426
-42743=37.228398,-85.532314
-42746=37.212381,-85.732393
-42748=37.566719,-85.694069
-42749=37.183820,-85.877076
-42753=37.210910,-85.199873
-42754=37.472934,-86.316299
-42757=37.402832,-85.719536
-42758=37.374297,-85.198725
-42762=37.455344,-86.393150
-42764=37.429579,-85.620541
-42765=37.332720,-85.933249
-42776=37.514508,-85.927093
-42782=37.336817,-85.643034
-42784=37.451992,-85.932393
-42788=37.529664,-86.027886
-43001=40.088034,-82.613930
-43002=40.062586,-83.170451
-43003=40.412257,-82.979342
-43004=40.017344,-82.798786
-43005=40.286212,-82.276828
-43006=40.459722,-82.149286
-43008=39.933890,-82.480911
-43009=40.171458,-83.639322
-43010=39.999547,-83.622832
-43011=40.303000,-82.679665
-43013=40.233019,-82.688345
-43014=40.466757,-82.262513
-43015=40.297786,-83.060181
-43016=40.097460,-83.150103
-43017=40.110681,-83.129038
-43019=40.492940,-82.578515
-43021=40.197671,-82.873674
-43022=40.345039,-82.339811
-43023=40.078885,-82.536392
-43025=39.970889,-82.517382
-43026=40.020850,-83.194413
-43028=40.401712,-82.297266
-43029=40.097477,-83.440642
-43030=39.961450,-82.415841
-43031=40.160847,-82.665164
-43032=40.328624,-82.958823
-43033=39.961379,-82.603955
-43035=40.188543,-82.995118
-43036=40.352201,-83.261098
-43037=40.284431,-82.323190
-43040=40.260321,-83.359047
-43044=40.054862,-83.550810
-43045=40.168381,-83.458675
-43046=39.896382,-82.541954
-43050=40.373976,-82.492721
-43054=40.083073,-82.798908
-43055=40.119897,-82.377784
-43056=40.008493,-82.340989
-43060=40.222353,-83.571542
-43061=40.289506,-83.203052
-43062=40.007079,-82.682268
-43064=40.098393,-83.283538
-43065=40.177540,-83.094187
-43066=40.391290,-83.171969
-43067=40.340482,-83.468152
-43068=39.956185,-82.784665
-43070=40.215778,-83.957945
-43071=40.180695,-82.359463
-43072=40.119674,-83.956704
-43074=40.269531,-82.850655
-43076=39.897004,-82.398750
-43077=40.137050,-83.341267
-43078=40.117639,-83.783790
-43080=40.240719,-82.429257
-43081=40.110443,-82.890646
-43082=40.149186,-82.884872
-43084=40.150141,-83.557259
-43085=40.100924,-83.013402
-43101=39.464519,-82.746130
-43102=39.640920,-82.764982
-43103=39.732375,-82.935709
-43105=39.866760,-82.612369
-43106=39.642318,-83.421179
-43107=39.692825,-82.414529
-43109=39.918164,-82.830546
-43110=39.826682,-82.800074
-43111=39.502068,-82.242711
-43112=39.797808,-82.704620
-43113=39.586593,-82.962246
-43115=39.491747,-83.151142
-43116=39.771637,-83.062012
-43117=39.768789,-83.206122
-43119=39.940928,-83.205719
-43123=39.866719,-83.115570
-43125=39.838052,-82.887941
-43126=39.815503,-83.165765
-43127=39.479923,-82.321355
-43128=39.659722,-83.594024
-43130=39.696463,-82.614717
-43135=39.468184,-82.693420
-43136=39.801317,-82.812481
-43137=39.808840,-82.987481
-43138=39.518345,-82.414100
-43140=39.880110,-83.428572
-43142=39.593715,-83.587259
-43143=39.712424,-83.288720
-43144=39.529878,-82.195042
-43145=39.564942,-83.259784
-43146=39.773521,-83.136925
-43147=39.897782,-82.744035
-43148=39.820316,-82.499992
-43149=39.542974,-82.577874
-43150=39.777096,-82.409813
-43151=39.732952,-83.476424
-43152=39.389719,-82.623823
-43153=39.743989,-83.556692
-43154=39.600986,-82.830089
-43155=39.634641,-82.528905
-43156=39.553520,-82.776295
-43157=39.842653,-82.546206
-43158=39.440418,-82.355963
-43160=39.526516,-83.441323
-43162=39.949400,-83.308385
-43164=39.585238,-83.118396
-43201=39.990830,-82.999946
-43202=40.019812,-83.015100
-43203=39.973084,-82.969026
-43204=39.960662,-83.082542
-43205=39.957019,-82.962071
-43206=39.942452,-82.974175
-43207=39.895590,-82.964068
-43209=39.953616,-82.930721
-43210=40.005435,-83.023227
-43211=40.011814,-82.970532
-43212=39.986564,-83.043198
-43213=39.966870,-82.862134
-43214=40.051734,-83.016269
-43215=39.966856,-83.012960
-43217=39.816560,-82.922749
-43219=40.006091,-82.920945
-43220=40.049153,-83.074244
-43221=40.023112,-83.076127
-43222=39.961192,-83.035484
-43223=39.928446,-83.034658
-43224=40.043925,-82.966265
-43227=39.944059,-82.890437
-43228=39.966129,-83.125346
-43229=40.085870,-82.978198
-43230=40.035763,-82.870875
-43231=40.079362,-82.935126
-43232=39.920951,-82.870492
-43235=40.118363,-83.027626
-43240=40.145121,-82.982819
-43302=40.599237,-83.130298
-43310=40.535325,-83.786442
-43311=40.365633,-83.756432
-43314=40.649151,-82.959413
-43315=40.483968,-82.874359
-43316=40.954177,-83.380698
-43317=40.475145,-82.680931
-43318=40.309682,-83.912297
-43319=40.302682,-83.575120
-43320=40.588536,-82.898039
-43321=40.457343,-82.829783
-43322=40.532181,-83.207840
-43323=40.729579,-83.247986
-43324=40.444543,-83.813798
-43326=40.639365,-83.614912
-43330=40.813493,-83.419408
-43331=40.517943,-83.921643
-43332=40.590903,-83.371544
-43333=40.443022,-83.924616
-43334=40.397947,-82.797304
-43336=40.290835,-83.582336
-43337=40.681312,-83.266637
-43338=40.564167,-82.760333
-43340=40.543906,-83.475995
-43341=40.596414,-83.315297
-43342=40.471236,-83.183980
-43343=40.309159,-83.978712
-43344=40.430934,-83.344615
-43345=40.511200,-83.583824
-43347=40.477854,-83.659580
-43348=40.461177,-83.891374
-43351=40.825480,-83.303252
-43356=40.465076,-83.032615
-43357=40.253547,-83.746793
-43358=40.414590,-83.537606
-43359=40.873493,-83.454880
-43360=40.333139,-83.643525
-43402=41.418411,-83.656651
-43403=41.376979,-83.637118
-43406=41.333897,-83.433071
-43407=41.277832,-83.249407
-43408=41.571832,-83.363462
-43410=41.311868,-82.957583
-43412=41.631291,-83.321889
-43413=41.243222,-83.651590
-43416=41.483937,-83.267229
-43420=41.357927,-83.110237
-43430=41.522189,-83.369834
-43431=41.389954,-83.337740
-43432=41.563259,-83.252471
-43433=41.504694,-82.880261
-43434=41.693022,-83.444689
-43435=41.325312,-83.312858
-43437=41.253686,-83.602309
-43438=41.602607,-82.706506
-43439=41.517665,-83.041286
-43440=41.526239,-82.776776
-43442=41.423266,-83.215767
-43443=41.461331,-83.470237
-43445=41.583459,-83.296408
-43446=41.680640,-82.809890
-43447=41.562886,-83.445582
-43449=41.534376,-83.135570
-43450=41.400871,-83.491254
-43451=41.318301,-83.617493
-43452=41.515792,-82.980945
-43456=41.646844,-82.822664
-43457=41.267327,-83.427464
-43458=41.530446,-83.213365
-43460=41.601192,-83.564999
-43462=41.283785,-83.722865
-43463=41.508665,-83.508034
-43464=41.404879,-82.924109
-43465=41.565472,-83.500302
-43466=41.295359,-83.514821
-43467=41.243203,-83.483841
-43468=41.597867,-83.341493
-43469=41.460369,-83.364550
-43501=41.672655,-84.461796
-43502=41.534554,-84.293787
-43504=41.695773,-83.836749
-43505=41.523946,-84.731263
-43506=41.466211,-84.557133
-43511=41.262559,-83.814726
-43512=41.303378,-84.358279
-43515=41.584215,-84.010615
-43516=41.214903,-83.915242
-43517=41.433947,-84.728550
-43518=41.596488,-84.757748
-43519=41.419359,-84.407070
-43521=41.660489,-84.297994
-43522=41.420310,-83.832402
-43523=41.337065,-83.989254
-43524=41.227122,-84.038444
-43525=41.466582,-83.704450
-43526=41.312806,-84.725309
-43527=41.246109,-84.157502
-43528=41.628855,-83.749575
-43529=41.187605,-83.781585
-43531=41.635044,-84.495666
-43532=41.450496,-83.974967
-43533=41.691884,-84.081557
-43534=41.349611,-83.926981
-43535=41.307280,-84.022034
-43536=41.309794,-84.632895
-43537=41.574794,-83.686701
-43540=41.692846,-83.928025
-43541=41.300755,-83.829536
-43542=41.566665,-83.765032
-43543=41.606489,-84.645346
-43545=41.390884,-84.127337
-43547=41.492160,-83.876316
-43548=41.185334,-84.175116
-43549=41.371203,-84.520754
-43551=41.517951,-83.572004
-43553=41.531227,-84.228836
-43554=41.658422,-84.563491
-43555=41.434129,-84.254322
-43556=41.303304,-84.563729
-43557=41.487386,-84.392466
-43558=41.594698,-83.878390
-43560=41.700591,-83.738852
-43565=41.419971,-83.740107
-43566=41.492653,-83.753390
-43567=41.580346,-84.161063
-43569=41.349767,-83.789426
-43570=41.588117,-84.441141
-43571=41.513316,-83.822816
-43604=41.651526,-83.540954
-43605=41.648026,-83.506863
-43606=41.673136,-83.611414
-43607=41.648634,-83.604132
-43608=41.679890,-83.528551
-43609=41.626694,-83.580880
-43610=41.678029,-83.561371
-43611=41.705139,-83.485030
-43612=41.715797,-83.551056
-43613=41.706245,-83.603731
-43614=41.604201,-83.630091
-43615=41.650277,-83.673822
-43616=41.658372,-83.408909
-43617=41.664632,-83.728269
-43619=41.603711,-83.470490
-43620=41.665184,-83.554271
-43623=41.702956,-83.650077
-43701=39.969220,-81.991033
-43711=39.841356,-81.576903
-43713=39.987894,-81.174590
-43716=39.829249,-81.011900
-43717=39.789724,-81.555673
-43718=40.015007,-80.998096
-43719=39.997343,-81.079098
-43720=39.796093,-81.876456
-43721=39.949992,-82.265042
-43722=39.919184,-81.517572
-43723=39.960601,-81.539490
-43724=39.720895,-81.498691
-43725=40.044987,-81.589330
-43727=39.861390,-81.785087
-43728=39.480162,-81.895132
-43730=39.615287,-82.102278
-43731=39.725343,-82.061172
-43732=39.845125,-81.642737
-43733=39.927407,-81.538067
-43734=39.884547,-81.891027
-43735=39.866627,-82.118414
-43736=40.061242,-81.237909
-43738=39.855589,-82.141513
-43739=39.903133,-82.286312
-43740=39.952193,-82.212908
-43746=39.965416,-82.183858
-43747=39.860809,-81.124896
-43748=39.692383,-82.316294
-43749=40.166779,-81.561488
-43750=39.996867,-81.513191
-43754=39.760807,-81.233920
-43755=40.053294,-81.432364
-43756=39.691749,-81.795492
-43758=39.627898,-81.945549
-43759=40.065535,-81.073453
-43760=39.888265,-82.193224
-43761=39.668339,-82.148289
-43762=40.025878,-81.741187
-43764=39.713330,-82.180619
-43766=39.593197,-82.252841
-43767=40.064270,-81.783664
-43768=40.037789,-81.444869
-43771=39.835562,-81.945402
-43772=39.886060,-81.526625
-43773=39.982394,-81.298510
-43777=39.818733,-82.113868
-43778=39.999290,-81.378862
-43779=39.819570,-81.427766
-43780=39.908671,-81.437954
-43782=39.621795,-82.212467
-43783=39.804479,-82.278579
-43786=39.710464,-81.277012
-43787=39.523954,-81.801830
-43788=39.805526,-81.333948
-43793=39.745144,-81.096103
-43802=40.091161,-81.852057
-43804=40.450792,-81.740962
-43805=40.392968,-81.972565
-43811=40.179860,-81.920852
-43812=40.263768,-81.880904
-43821=40.136752,-82.000512
-43822=40.178846,-82.174029
-43824=40.363910,-81.758449
-43830=40.067239,-82.139849
-43832=40.275813,-81.585062
-43836=40.208723,-81.719748
-43837=40.298389,-81.477938
-43840=40.410708,-81.601371
-43842=40.136917,-82.012760
-43843=40.349011,-82.175610
-43844=40.325390,-82.060739
-43845=40.264910,-81.731281
-43901=40.223552,-80.855797
-43902=39.882850,-80.951993
-43903=40.472134,-80.973297
-43905=40.105373,-80.838929
-43906=40.011095,-80.808695
-43907=40.248304,-81.019537
-43908=40.506269,-80.874019
-43910=40.372682,-80.826332
-43912=40.083356,-80.797021
-43913=40.267433,-80.635940
-43914=39.775260,-80.952819
-43915=39.763457,-80.899372
-43917=40.233510,-80.797688
-43920=40.677362,-80.594945
-43925=40.447629,-80.862322
-43926=40.508061,-80.621610
-43927=40.120516,-80.937165
-43928=40.010409,-80.914802
-43930=40.563211,-80.762834
-43931=39.673340,-80.872630
-43932=40.516991,-80.760740
-43933=39.935227,-80.895800
-43934=40.077846,-80.789223
-43935=40.127765,-80.755389
-43938=40.304495,-80.673326
-43939=40.167153,-80.800019
-43940=40.029027,-80.827269
-43942=39.861027,-80.854883
-43943=40.207606,-80.731036
-43944=40.429176,-80.769041
-43945=40.636835,-80.847982
-43946=39.652234,-80.964792
-43947=39.956153,-80.807501
-43948=40.270127,-80.778261
-43950=40.096889,-80.924669
-43951=40.111902,-81.011630
-43952=40.409046,-80.665259
-43953=40.352555,-80.702470
-43961=40.524994,-80.630282
-43962=40.672028,-80.879914
-43963=40.171369,-80.696907
-43964=40.480902,-80.662475
-43967=40.026455,-80.940094
-43968=40.632407,-80.683847
-43970=40.463201,-80.889127
-43971=40.159103,-80.713361
-43972=40.101752,-80.973716
-43973=40.190266,-81.276328
-43974=40.182236,-80.887526
-43976=40.373557,-80.920847
-43977=40.134854,-81.083447
-43983=40.137143,-81.199035
-43985=40.165380,-81.132412
-43986=40.385195,-80.995648
-43988=40.401128,-81.120838
-44001=41.366331,-82.259924
-44003=41.615736,-80.585942
-44004=41.855940,-80.791866
-44010=41.765276,-80.847485
-44011=41.445100,-82.005109
-44012=41.498342,-82.017368
-44017=41.370548,-81.861757
-44021=41.443260,-81.144465
-44022=41.446269,-81.402969
-44023=41.384751,-81.285759
-44024=41.577765,-81.192433
-44026=41.528147,-81.324706
-44028=41.300523,-81.937418
-44030=41.896637,-80.585178
-44032=41.669245,-80.670110
-44035=41.363571,-82.137860
-44039=41.386000,-82.024711
-44040=41.535663,-81.410737
-44041=41.776900,-80.949898
-44044=41.266284,-82.041790
-44045=41.748658,-81.284345
-44046=41.542545,-81.068714
-44047=41.727931,-80.735874
-44048=41.850255,-80.639309
-44049=41.266529,-82.305788
-44050=41.248733,-82.128200
-44052=41.459383,-82.164623
-44053=41.426622,-82.225503
-44054=41.471600,-82.090338
-44055=41.434058,-82.134095
-44056=41.314919,-81.501633
-44057=41.760117,-81.060305
-44060=41.676530,-81.328167
-44062=41.451820,-81.036703
-44064=41.598063,-81.032323
-44065=41.475924,-81.221612
-44067=41.316283,-81.542933
-44070=41.415033,-81.918942
-44072=41.471152,-81.324920
-44074=41.289495,-82.231223
-44076=41.530875,-80.823712
-44077=41.697563,-81.209740
-44080=41.366271,-81.057947
-44081=41.763938,-81.143104
-44082=41.761873,-80.567535
-44084=41.671377,-80.899161
-44085=41.603272,-80.874544
-44086=41.675726,-81.058597
-44087=41.313171,-81.438675
-44089=41.392084,-82.377455
-44090=41.167515,-82.228683
-44092=41.599909,-81.468699
-44093=41.530785,-80.614356
-44094=41.610724,-81.379324
-44095=41.652326,-81.441721
-44099=41.549205,-80.983305
-44101=41.489355,-81.667393
-44102=41.479174,-81.740603
-44103=41.519415,-81.642123
-44104=41.482230,-81.626784
-44105=41.449476,-81.630289
-44106=41.505341,-81.605432
-44107=41.483041,-81.801716
-44108=41.544784,-81.607394
-44109=41.447671,-81.694403
-44110=41.569382,-81.564687
-44111=41.458255,-81.788589
-44112=41.535841,-81.574143
-44113=41.483241,-81.697166
-44114=41.520126,-81.678083
-44115=41.493539,-81.671188
-44116=41.473072,-81.853825
-44117=41.570917,-81.523670
-44118=41.502337,-81.556571
-44119=41.589350,-81.547386
-44120=41.473947,-81.579956
-44121=41.526494,-81.532129
-44122=41.469494,-81.512442
-44123=41.604699,-81.524123
-44124=41.500022,-81.465036
-44125=41.405687,-81.609466
-44126=41.441758,-81.852995
-44127=41.472172,-81.650285
-44128=41.439871,-81.538518
-44129=41.390459,-81.735300
-44130=41.376642,-81.787317
-44131=41.382841,-81.650195
-44132=41.606425,-81.497217
-44133=41.313701,-81.745180
-44134=41.380488,-81.700988
-44135=41.426217,-81.819383
-44136=41.311507,-81.811326
-44137=41.409295,-81.562526
-44138=41.373654,-81.923254
-44139=41.383262,-81.444249
-44140=41.487794,-81.931435
-44141=41.299668,-81.616506
-44142=41.399662,-81.834332
-44143=41.553498,-81.477014
-44144=41.437286,-81.739814
-44145=41.449531,-81.930162
-44146=41.381223,-81.529226
-44147=41.318156,-81.679262
-44149=41.315913,-81.856217
-44201=41.028660,-81.184282
-44202=41.315087,-81.338371
-44203=41.020888,-81.628652
-44212=41.244488,-81.828842
-44214=40.951918,-81.999755
-44215=41.069175,-81.895952
-44216=40.945779,-81.581744
-44217=40.952287,-81.913359
-44221=41.139266,-81.474873
-44223=41.169665,-81.531057
-44224=41.176261,-81.436523
-44230=40.964265,-81.687607
-44231=41.302963,-81.070474
-44233=41.249087,-81.737867
-44234=41.325804,-81.152245
-44235=41.031108,-82.116704
-44236=41.246425,-81.449582
-44240=41.132323,-81.332781
-44241=41.242586,-81.347721
-44243=41.147960,-81.341421
-44250=41.020304,-81.437338
-44251=41.029161,-81.927414
-44253=41.166903,-82.032473
-44254=41.042910,-82.014354
-44255=41.286694,-81.229132
-44256=41.139872,-81.860559
-44260=41.035186,-81.338441
-44262=41.139576,-81.436066
-44264=41.229610,-81.540017
-44265=41.035722,-81.253084
-44266=41.166250,-81.208228
-44270=40.960943,-81.774537
-44272=41.089759,-81.180523
-44273=41.027999,-81.877935
-44274=41.098334,-81.732675
-44275=41.101859,-82.102593
-44276=40.939730,-81.836018
-44278=41.106119,-81.424834
-44280=41.249047,-81.930597
-44281=41.059816,-81.741072
-44285=41.159666,-81.071596
-44286=41.233126,-81.643939
-44287=40.938453,-82.102332
-44288=41.239093,-81.076053
-44301=41.043490,-81.524017
-44302=41.089437,-81.538663
-44303=41.104685,-81.536941
-44304=41.083177,-81.507852
-44305=41.075304,-81.461652
-44306=41.039347,-81.483166
-44307=41.069221,-81.546525
-44308=41.081658,-81.517014
-44310=41.105729,-81.494414
-44311=41.064229,-81.520712
-44312=41.014120,-81.443701
-44313=41.130094,-81.573169
-44314=41.041069,-81.560073
-44319=40.981530,-81.527413
-44320=41.073140,-81.582414
-44321=41.088647,-81.652446
-44333=41.160610,-81.630871
-44401=41.020990,-80.938604
-44402=41.381087,-80.845241
-44403=41.240319,-80.582126
-44404=41.324106,-80.556627
-44405=41.077984,-80.592359
-44406=41.010880,-80.770396
-44408=40.886139,-80.688425
-44410=41.346332,-80.727790
-44411=41.036746,-81.036957
-44412=41.094164,-81.023472
-44413=40.844756,-80.548688
-44417=41.436336,-80.663897
-44418=41.307372,-80.603473
-44420=41.177714,-80.682148
-44423=40.748520,-80.895947
-44425=41.170439,-80.573514
-44427=40.709172,-80.949859
-44428=41.436821,-80.573808
-44429=41.097137,-80.979645
-44430=41.240234,-80.908167
-44431=40.851614,-80.749469
-44432=40.745661,-80.765924
-44436=41.058684,-80.535073
-44437=41.155940,-80.729884
-44438=41.239631,-80.530615
-44439=41.455747,-80.956375
-44440=41.141176,-80.802908
-44441=40.756044,-80.550211
-44442=40.966173,-80.546111
-44443=40.933667,-80.604431
-44444=41.172825,-80.973285
-44445=40.849327,-80.622261
-44446=41.189561,-80.749296
-44449=40.975797,-81.037907
-44450=41.444900,-80.834590
-44451=41.079368,-80.868193
-44452=40.947372,-80.664007
-44454=40.917464,-80.551733
-44455=40.772301,-80.610166
-44460=40.899324,-80.870171
-44470=41.300310,-80.972747
-44471=41.051053,-80.590566
-44473=41.254956,-80.649928
-44481=41.176641,-80.902344
-44483=41.263566,-80.816754
-44484=41.235857,-80.750201
-44485=41.240357,-80.847586
-44490=40.896331,-80.768024
-44491=41.369940,-80.963648
-44493=40.825018,-80.888617
-44502=41.082788,-80.639487
-44503=41.099326,-80.649074
-44504=41.123512,-80.654651
-44505=41.129242,-80.622105
-44506=41.093003,-80.626397
-44507=41.074229,-80.655251
-44509=41.108505,-80.696075
-44510=41.122254,-80.673433
-44511=41.069085,-80.696703
-44512=41.025661,-80.668279
-44514=41.000614,-80.606448
-44515=41.102896,-80.761275
-44601=40.918593,-81.128745
-44606=40.734706,-81.800147
-44607=40.689518,-81.025735
-44608=40.656427,-81.592823
-44609=40.917414,-80.990071
-44610=40.559625,-81.799762
-44611=40.610103,-82.074986
-44612=40.633088,-81.476036
-44613=40.711536,-81.607797
-44614=40.889547,-81.576285
-44615=40.564539,-81.074849
-44618=40.770383,-81.681101
-44620=40.578124,-81.210132
-44621=40.436959,-81.297852
-44622=40.546033,-81.482958
-44624=40.608530,-81.662094
-44625=40.763369,-81.003737
-44626=40.688904,-81.381772
-44627=40.663996,-81.836421
-44628=40.534703,-82.168818
-44629=40.349499,-81.453223
-44632=40.963232,-81.313031
-44633=40.629759,-81.935268
-44634=40.837991,-81.041397
-44637=40.489560,-82.039032
-44638=40.642255,-82.145599
-44640=40.985543,-81.150705
-44641=40.857398,-81.246485
-44643=40.638733,-81.302903
-44644=40.687599,-81.177900
-44645=40.909713,-81.718204
-44646=40.814381,-81.497182
-44647=40.797864,-81.565063
-44651=40.628056,-80.951100
-44652=40.900221,-81.326138
-44653=40.436101,-81.370332
-44654=40.537937,-81.870867
-44656=40.569013,-81.334817
-44657=40.740959,-81.092975
-44659=40.694922,-81.702555
-44661=40.595626,-82.113008
-44662=40.710990,-81.555052
-44663=40.459991,-81.452391
-44666=40.848342,-81.638693
-44667=40.833815,-81.766531
-44669=40.788312,-81.150684
-44670=40.762639,-81.188753
-44671=40.646033,-81.365669
-44672=40.920003,-81.025268
-44675=40.502358,-81.253774
-44676=40.690773,-82.033794
-44677=40.874520,-81.858577
-44678=40.566644,-81.349941
-44680=40.606614,-81.544759
-44681=40.508051,-81.661930
-44682=40.397262,-81.405289
-44683=40.364832,-81.325281
-44685=40.955405,-81.424372
-44687=40.537922,-81.719984
-44688=40.683908,-81.255382
-44689=40.645210,-81.659132
-44690=40.613106,-81.693638
-44691=40.805744,-81.982470
-44693=40.301856,-81.186168
-44695=40.442011,-81.170166
-44697=40.612058,-81.424219
-44699=40.277288,-81.280912
-44702=40.799793,-81.375782
-44703=40.810563,-81.381352
-44704=40.800388,-81.340379
-44705=40.834614,-81.331149
-44706=40.753525,-81.418645
-44707=40.761094,-81.349840
-44708=40.817882,-81.435881
-44709=40.842337,-81.386175
-44710=40.789713,-81.425956
-44714=40.836317,-81.358279
-44718=40.847623,-81.451327
-44720=40.903454,-81.433282
-44721=40.892581,-81.332063
-44730=40.767017,-81.265784
-44802=41.045626,-83.419418
-44804=41.105589,-83.534122
-44805=40.872668,-82.317033
-44807=41.059761,-82.876997
-44809=41.133496,-83.288945
-44811=41.246317,-82.846599
-44813=40.599849,-82.529699
-44814=41.324106,-82.472160
-44815=41.246607,-83.239471
-44816=41.330202,-82.352522
-44817=41.204134,-83.545038
-44818=40.998342,-82.989373
-44820=40.817184,-82.974036
-44822=40.556723,-82.398088
-44824=41.383228,-82.805892
-44825=40.954211,-82.943194
-44826=41.242340,-82.477643
-44827=40.822444,-82.755060
-44828=41.231935,-82.860916
-44830=41.167936,-83.398998
-44833=40.710586,-82.793744
-44836=41.237162,-83.062895
-44837=41.021221,-82.472683
-44838=40.771565,-82.256155
-44839=41.380747,-82.556820
-44840=40.787950,-82.178253
-44841=41.251213,-83.306030
-44842=40.649282,-82.224627
-44843=40.689497,-82.407602
-44844=40.992175,-83.261401
-44846=41.319413,-82.605836
-44847=41.230414,-82.712888
-44849=40.809261,-83.130473
-44850=41.035393,-82.684018
-44851=41.109175,-82.391572
-44853=41.055286,-83.303003
-44854=40.943647,-82.867843
-44855=41.106391,-82.591626
-44856=40.793975,-82.856755
-44857=41.216499,-82.577642
-44859=41.021963,-82.330724
-44861=41.239479,-83.147917
-44864=40.667625,-82.320628
-44865=40.993406,-82.676943
-44866=40.924000,-82.197783
-44867=41.149035,-82.982220
-44870=41.428280,-82.744814
-44874=40.969458,-82.369734
-44875=40.889990,-82.651686
-44878=40.941616,-82.520733
-44880=41.034597,-82.220133
-44881=40.870018,-82.876041
-44882=40.946679,-83.140220
-44883=41.123331,-83.173911
-44887=40.916196,-82.790658
-44889=41.245882,-82.382433
-44890=41.085172,-82.710562
-44901=40.791707,-82.509404
-44902=40.758156,-82.510589
-44903=40.776344,-82.527634
-44904=40.663724,-82.614440
-44905=40.778080,-82.467189
-44906=40.767349,-82.572626
-44907=40.727662,-82.520406
-45001=39.141445,-84.712238
-45002=39.196791,-84.757565
-45003=39.586583,-84.786470
-45005=39.538613,-84.295877
-45011=39.426562,-84.497608
-45013=39.413632,-84.652679
-45014=39.325714,-84.552390
-45015=39.376803,-84.566788
-45030=39.259888,-84.759577
-45032=39.502773,-84.010203
-45033=39.176783,-84.762971
-45034=39.358891,-84.243425
-45036=39.444049,-84.214131
-45039=39.328643,-84.245766
-45040=39.350783,-84.313198
-45041=39.210428,-84.702260
-45042=39.556885,-84.420158
-45044=39.482404,-84.410243
-45050=39.445354,-84.359182
-45051=39.097961,-84.646609
-45052=39.144456,-84.779062
-45053=39.354057,-84.787824
-45054=39.438829,-84.085062
-45056=39.490929,-84.744187
-45062=39.479663,-84.552961
-45064=39.562006,-84.596385
-45065=39.370229,-84.211218
-45066=39.551158,-84.224353
-45067=39.494819,-84.480997
-45068=39.524739,-84.065635
-45069=39.346695,-84.413480
-45070=39.589695,-84.558089
-45101=38.697011,-83.726747
-45102=39.017190,-84.204345
-45103=39.097086,-84.134480
-45106=38.945020,-84.064915
-45107=39.292197,-83.969291
-45111=39.196499,-84.289827
-45112=38.793092,-84.139912
-45113=39.396971,-83.985801
-45115=38.824132,-83.699155
-45118=39.172249,-83.934069
-45120=38.828417,-84.090026
-45121=38.869746,-83.903520
-45122=39.216745,-84.115369
-45123=39.350021,-83.386108
-45130=38.909438,-83.998661
-45131=38.790338,-83.966938
-45132=39.343919,-83.600257
-45133=39.161850,-83.576231
-45135=39.347615,-83.541912
-45140=39.257273,-84.241953
-45142=39.204555,-83.810822
-45144=38.705934,-83.610309
-45145=39.145329,-84.005165
-45146=39.314119,-83.804201
-45147=39.205120,-84.284277
-45148=39.290218,-83.887266
-45150=39.166379,-84.230308
-45152=39.351487,-84.120225
-45153=38.864534,-84.187265
-45154=39.063424,-83.916827
-45155=39.042506,-83.752161
-45156=38.815161,-84.213826
-45157=38.953739,-84.230170
-45158=39.181517,-84.089598
-45159=39.336834,-83.691741
-45160=39.122876,-84.136621
-45162=39.269737,-84.074728
-45164=39.554033,-83.782167
-45166=39.476597,-83.687759
-45167=38.781663,-83.789731
-45168=38.850496,-83.754643
-45169=39.506479,-83.650882
-45171=39.014545,-83.800276
-45172=39.074472,-83.386883
-45174=39.158525,-84.312214
-45176=39.079262,-84.029729
-45177=39.460731,-83.844295
-45202=39.109356,-84.502584
-45203=39.105294,-84.533529
-45204=39.106537,-84.553193
-45205=39.110038,-84.575206
-45206=39.127337,-84.484393
-45207=39.142067,-84.471336
-45208=39.134746,-84.434430
-45209=39.153022,-84.426671
-45211=39.156090,-84.596637
-45212=39.164190,-84.452189
-45213=39.180801,-84.420095
-45214=39.115007,-84.534356
-45215=39.235279,-84.461948
-45216=39.200917,-84.481754
-45217=39.166056,-84.497807
-45218=39.263764,-84.518217
-45219=39.127376,-84.513064
-45220=39.148783,-84.520309
-45223=39.170810,-84.549528
-45224=39.201067,-84.531690
-45225=39.142809,-84.551212
-45226=39.111687,-84.421674
-45227=39.153237,-84.385795
-45229=39.152745,-84.486802
-45230=39.073748,-84.389281
-45231=39.247497,-84.534830
-45232=39.188263,-84.510096
-45233=39.116908,-84.672574
-45236=39.209844,-84.397290
-45237=39.193038,-84.452260
-45238=39.107658,-84.610282
-45239=39.203625,-84.580623
-45240=39.284509,-84.529330
-45241=39.276362,-84.397108
-45242=39.242803,-84.352996
-45243=39.188557,-84.336021
-45244=39.114249,-84.326468
-45245=39.061125,-84.276136
-45246=39.289592,-84.469214
-45247=39.216693,-84.661108
-45248=39.164331,-84.662549
-45249=39.275242,-84.328367
-45251=39.274640,-84.597876
-45252=39.270192,-84.628137
-45255=39.059554,-84.328333
-45301=39.711329,-84.022210
-45302=40.405910,-84.209150
-45303=40.213971,-84.659636
-45304=39.989273,-84.525310
-45305=39.632188,-84.078557
-45306=40.459234,-84.187139
-45307=39.580814,-83.723592
-45308=40.129279,-84.457368
-45309=39.842723,-84.414704
-45310=40.352937,-84.642673
-45311=39.635221,-84.678305
-45312=40.052155,-84.093025
-45314=39.750080,-83.776250
-45315=39.856990,-84.339063
-45316=39.797001,-83.825600
-45317=40.211018,-83.988585
-45318=40.129070,-84.353716
-45319=39.916364,-83.943060
-45320=39.750639,-84.681424
-45321=39.878597,-84.686054
-45322=39.899781,-84.327830
-45323=39.849966,-83.927619
-45324=39.819023,-83.990794
-45325=39.692609,-84.430204
-45326=40.139909,-84.094457
-45327=39.628760,-84.403005
-45328=40.116196,-84.496233
-45330=39.648272,-84.528668
-45331=40.098606,-84.650546
-45332=39.984569,-84.792227
-45333=40.249465,-84.331773
-45334=40.443271,-84.043450
-45335=39.639799,-83.741205
-45336=40.442745,-84.257263
-45337=39.981474,-84.422600
-45338=39.849751,-84.543549
-45339=40.012759,-84.342030
-45340=40.368571,-84.052152
-45341=39.875585,-84.024458
-45342=39.629338,-84.275969
-45344=39.953874,-84.009617
-45345=39.737813,-84.407471
-45346=39.982115,-84.709956
-45347=39.884266,-84.751489
-45348=40.329157,-84.645464
-45349=39.988479,-83.941593
-45350=40.324339,-84.573740
-45351=40.339414,-84.495154
-45352=40.050123,-84.744283
-45353=40.292575,-84.042717
-45354=39.910552,-84.399687
-45356=40.162840,-84.228210
-45358=39.986580,-84.487700
-45359=40.046535,-84.350706
-45360=40.330576,-84.091020
-45361=39.963712,-84.414821
-45362=40.292481,-84.627731
-45363=40.239309,-84.400067
-45365=40.283740,-84.159773
-45368=39.844915,-83.647979
-45369=39.952673,-83.594162
-45370=39.608378,-84.033025
-45371=39.939546,-84.160640
-45372=40.016003,-83.842304
-45373=40.032528,-84.194575
-45377=39.896083,-84.224285
-45378=39.902924,-84.488721
-45380=40.244498,-84.516917
-45381=39.730685,-84.524354
-45382=39.901521,-84.611919
-45383=39.955577,-84.343208
-45384=39.714974,-83.884442
-45385=39.669076,-83.913955
-45387=39.799356,-83.887616
-45388=40.316916,-84.478140
-45389=40.057169,-84.027600
-45390=40.215185,-84.760567
-45402=39.759360,-84.209094
-45403=39.768856,-84.147428
-45404=39.789502,-84.161815
-45405=39.792160,-84.216028
-45406=39.784214,-84.241080
-45409=39.721305,-84.187970
-45410=39.748047,-84.158124
-45414=39.847871,-84.207558
-45415=39.835581,-84.257387
-45416=39.807155,-84.258107
-45417=39.735295,-84.289429
-45418=39.700189,-84.259933
-45419=39.713376,-84.167179
-45420=39.718818,-84.129169
-45424=39.843141,-84.109630
-45426=39.804457,-84.319725
-45428=39.742877,-84.260635
-45429=39.682913,-84.158883
-45430=39.709674,-84.084844
-45431=39.763798,-84.084225
-45432=39.739492,-84.085195
-45433=39.821888,-84.049935
-45434=39.721385,-84.031824
-45439=39.699728,-84.219335
-45440=39.674725,-84.097808
-45449=39.664065,-84.237773
-45458=39.602399,-84.156363
-45459=39.647433,-84.170598
-45502=39.860825,-83.752812
-45503=39.959574,-83.771782
-45504=39.946844,-83.867277
-45505=39.902038,-83.757349
-45506=39.907948,-83.836862
-45601=39.312060,-82.957071
-45612=39.207036,-83.278831
-45613=39.034216,-82.850900
-45614=38.929704,-82.277275
-45616=38.760962,-83.314324
-45617=39.279646,-83.155641
-45618=38.885494,-83.616413
-45619=38.462544,-82.450180
-45620=38.961597,-82.142170
-45621=39.110788,-82.607744
-45622=39.375004,-82.490842
-45623=38.641686,-82.269786
-45624=39.170223,-83.347016
-45628=39.390980,-83.198042
-45629=38.657569,-82.815894
-45630=38.699141,-83.091559
-45631=38.821751,-82.264305
-45634=39.184362,-82.486496
-45636=38.588056,-82.828153
-45638=38.561186,-82.680265
-45640=39.019728,-82.656314
-45642=39.047033,-83.054463
-45644=39.459532,-82.844762
-45645=38.566353,-82.526994
-45646=39.075169,-83.322787
-45647=39.294341,-82.733029
-45648=38.918087,-83.007686
-45650=38.738293,-83.422328
-45651=39.285420,-82.483478
-45652=38.823821,-83.095018
-45653=38.889635,-82.821976
-45654=39.366498,-82.377618
-45656=38.880772,-82.593729
-45657=38.843669,-83.236462
-45658=38.762928,-82.411555
-45659=38.654972,-82.641130
-45660=38.991356,-83.367015
-45661=39.045633,-83.108220
-45662=38.782086,-82.918349
-45663=38.738787,-83.088782
-45669=38.498413,-82.358442
-45671=38.970254,-83.248012
-45672=39.192718,-82.694823
-45673=39.203898,-82.812023
-45674=38.881577,-82.373969
-45678=38.610443,-82.379581
-45679=38.964573,-83.555915
-45680=38.467808,-82.546829
-45681=39.308342,-83.256236
-45682=38.806931,-82.694911
-45684=38.651430,-83.190675
-45685=38.931803,-82.456541
-45686=39.014153,-82.376835
-45688=38.731080,-82.543240
-45690=39.136727,-83.007782
-45692=39.113937,-82.541066
-45693=38.807103,-83.540290
-45694=38.743875,-82.780883
-45695=39.161543,-82.372654
-45696=38.601172,-82.452085
-45697=38.931585,-83.673684
-45698=39.285800,-82.391730
-45701=39.311963,-82.086020
-45710=39.189862,-82.237676
-45711=39.428321,-81.931975
-45714=39.316984,-81.614345
-45715=39.605069,-81.628021
-45716=39.462855,-82.181731
-45719=39.400532,-82.126627
-45721=39.565488,-81.584377
-45723=39.226275,-81.823493
-45724=39.383437,-81.800411
-45727=39.650087,-81.488186
-45729=39.418373,-81.604397
-45732=39.515733,-82.068357
-45734=39.641144,-81.195652
-45735=39.261797,-81.928258
-45740=39.478084,-82.076689
-45741=39.075065,-82.247077
-45742=39.287076,-81.730393
-45743=39.075298,-81.834846
-45744=39.548767,-81.493983
-45745=39.606169,-81.329638
-45746=39.607107,-81.458824
-45750=39.429949,-81.422175
-45760=39.016845,-82.121701
-45761=39.425764,-82.075264
-45764=39.442495,-82.231417
-45766=39.325638,-82.257391
-45767=39.539275,-81.128173
-45768=39.422646,-81.295089
-45769=39.109284,-82.051040
-45770=38.982608,-81.798272
-45771=38.981548,-81.894511
-45772=39.148706,-81.819169
-45773=39.458516,-81.267304
-45775=39.082882,-82.154233
-45776=39.181410,-82.024066
-45778=39.353532,-81.893066
-45779=38.997704,-81.965907
-45780=39.366438,-82.130881
-45782=39.487650,-82.081032
-45784=39.388308,-81.677855
-45786=39.502663,-81.655053
-45787=39.468248,-81.632005
-45788=39.514987,-81.367568
-45789=39.551276,-81.255011
-45801=40.772863,-84.034098
-45804=40.709622,-84.061155
-45805=40.727948,-84.164879
-45806=40.672435,-84.126166
-45807=40.805996,-84.171653
-45808=40.830588,-83.968617
-45809=40.845494,-84.187163
-45810=40.784394,-83.813286
-45812=40.681854,-83.813861
-45813=41.192303,-84.733158
-45814=40.899318,-83.630161
-45816=41.004457,-83.794042
-45817=40.878759,-83.883975
-45819=40.624016,-84.260393
-45820=40.834949,-84.084000
-45821=41.225764,-84.560946
-45822=40.555742,-84.598725
-45826=40.436217,-84.493693
-45827=40.998103,-84.298851
-45828=40.483279,-84.671645
-45830=40.908460,-84.095933
-45831=41.113760,-84.254984
-45832=40.926421,-84.730092
-45833=40.834219,-84.348665
-45835=40.754415,-83.699893
-45836=40.792911,-83.639896
-45838=40.742048,-84.477662
-45840=41.025371,-83.651983
-45841=40.873705,-83.741573
-45843=40.771707,-83.544556
-45844=40.910907,-84.282481
-45845=40.331338,-84.382544
-45846=40.411515,-84.742520
-45849=41.013772,-84.446662
-45850=40.704713,-83.918297
-45851=41.032334,-84.600047
-45853=40.985266,-84.198500
-45854=40.757571,-83.952126
-45855=41.087908,-84.584089
-45856=41.111678,-83.999866
-45858=41.106604,-83.804696
-45859=40.683735,-83.778658
-45860=40.400330,-84.517378
-45861=41.082814,-84.426503
-45862=40.670620,-84.515170
-45863=40.908049,-84.444959
-45864=41.097045,-84.146577
-45865=40.391880,-84.368259
-45866=40.490375,-84.551169
-45867=40.897546,-83.526622
-45868=40.966283,-83.849662
-45869=40.457931,-84.403870
-45870=40.556264,-83.951421
-45871=40.493423,-84.300445
-45872=41.188760,-83.686064
-45873=41.117775,-84.390203
-45874=40.788114,-84.672051
-45875=41.022008,-84.061201
-45876=40.927246,-84.340922
-45877=40.959121,-83.933578
-45879=41.128322,-84.563105
-45880=41.071206,-84.732968
-45881=40.946247,-83.780047
-45882=40.683429,-84.677293
-45883=40.410203,-84.622937
-45884=40.554303,-84.082765
-45885=40.569863,-84.390644
-45886=40.996900,-84.620781
-45887=40.710853,-84.365128
-45888=40.602358,-84.086820
-45889=41.152611,-83.638601
-45890=40.975432,-83.489969
-45891=40.874541,-84.574267
-45894=40.759085,-84.461374
-45895=40.577695,-84.154664
-45896=40.607447,-83.929664
-45897=40.831069,-83.656574
-45898=40.743474,-84.769651
-45899=40.800453,-84.773821
-46001=40.251414,-85.658072
-46011=40.129994,-85.760692
-46012=40.154670,-85.619672
-46013=40.047934,-85.681768
-46016=40.097817,-85.681513
-46017=40.069277,-85.607160
-46030=40.159492,-86.009481
-46031=40.210969,-86.018095
-46032=39.962604,-86.174761
-46033=39.979283,-86.085557
-46034=40.127927,-86.046784
-46035=40.190015,-86.677981
-46036=40.295166,-85.831108
-46037=39.960563,-85.947162
-46038=39.966704,-86.017173
-46039=40.369458,-86.312273
-46040=39.927284,-85.834273
-46041=40.295035,-86.493864
-46044=40.211777,-85.792705
-46045=40.288764,-86.149860
-46047=40.284140,-85.947357
-46048=39.955501,-85.801742
-46049=40.294988,-86.221816
-46050=40.204434,-86.348899
-46051=40.057932,-85.837287
-46052=40.042907,-86.456535
-46055=39.888415,-85.902210
-46056=39.975850,-85.611772
-46057=40.336265,-86.377328
-46058=40.361165,-86.647378
-46060=40.064624,-85.915911
-46062=40.061266,-86.056039
-46063=40.270448,-85.723973
-46064=39.981812,-85.738750
-46065=40.427348,-86.610394
-46068=40.376963,-86.115827
-46069=40.138691,-86.228367
-46070=40.335565,-85.662341
-46071=40.119997,-86.608790
-46072=40.286104,-86.067353
-46074=40.034796,-86.170706
-46075=40.020864,-86.330672
-46076=40.356035,-85.928005
-46077=39.984562,-86.282625
-46103=39.688623,-86.613632
-46104=39.658470,-85.601830
-46105=39.764072,-86.810568
-46106=39.513173,-86.205119
-46107=39.716414,-86.091463
-46110=39.551781,-85.926480
-46111=39.538824,-86.369536
-46112=39.863910,-86.382425
-46113=39.636299,-86.302553
-46115=39.738754,-85.566649
-46117=39.814706,-85.615963
-46118=39.662375,-86.518005
-46120=39.511432,-86.789094
-46121=39.679042,-86.678783
-46122=39.773312,-86.551134
-46123=39.764395,-86.403457
-46124=39.370017,-85.927910
-46125=39.521518,-86.641603
-46126=39.618024,-85.880340
-46127=39.711952,-85.312209
-46128=39.658583,-86.742562
-46130=39.672748,-85.835022
-46131=39.473489,-86.043592
-46133=39.595055,-85.310832
-46135=39.654571,-86.893996
-46140=39.801973,-85.772071
-46142=39.621810,-86.175319
-46143=39.595860,-86.116319
-46144=39.655159,-85.647354
-46146=39.585666,-85.568334
-46147=39.971149,-86.622827
-46148=39.811400,-85.512466
-46149=39.883167,-86.553583
-46150=39.545464,-85.602908
-46151=39.457212,-86.433280
-46155=39.743501,-85.429741
-46156=39.489361,-85.494450
-46157=39.553630,-86.528731
-46158=39.579356,-86.373602
-46160=39.351134,-86.268692
-46161=39.669880,-85.696284
-46162=39.555779,-85.953942
-46163=39.730807,-85.900593
-46164=39.327830,-86.126245
-46165=39.849828,-86.640151
-46166=39.432913,-86.587296
-46167=39.876973,-86.467801
-46168=39.685257,-86.392912
-46171=39.525101,-86.960902
-46172=39.827835,-86.818464
-46173=39.600880,-85.430616
-46175=39.815724,-86.966359
-46176=39.527281,-85.774394
-46180=39.592189,-86.618525
-46181=39.372155,-86.171601
-46182=39.458501,-85.669492
-46183=39.652679,-86.281653
-46184=39.561936,-86.072222
-46186=39.894213,-85.644782
-46201=39.774142,-86.109200
-46202=39.784102,-86.163477
-46203=39.737584,-86.096930
-46204=39.771994,-86.156997
-46205=39.829397,-86.134374
-46208=39.819111,-86.171089
-46214=39.792817,-86.291528
-46216=39.871602,-86.011557
-46217=39.674631,-86.191451
-46218=39.807262,-86.099746
-46219=39.782412,-86.042939
-46220=39.867114,-86.108848
-46221=39.691852,-86.238222
-46222=39.790968,-86.215260
-46224=39.795413,-86.256890
-46225=39.740314,-86.163255
-46226=39.838896,-86.052485
-46227=39.674763,-86.132676
-46228=39.848228,-86.200725
-46229=39.788484,-85.977075
-46231=39.715527,-86.320620
-46234=39.813309,-86.326363
-46235=39.836957,-85.974537
-46236=39.895722,-85.967501
-46237=39.671143,-86.072110
-46239=39.721517,-85.999033
-46240=39.906046,-86.124634
-46241=39.729852,-86.285424
-46250=39.898839,-86.058720
-46254=39.849717,-86.271637
-46256=39.908383,-86.013138
-46259=39.650921,-85.981465
-46260=39.898143,-86.177595
-46268=39.898613,-86.233341
-46278=39.892946,-86.298050
-46280=39.932373,-86.131280
-46290=39.938421,-86.163234
-46301=41.691148,-86.978774
-46303=41.373714,-87.478977
-46304=41.613633,-87.046206
-46307=41.403937,-87.326039
-46310=41.179926,-87.230800
-46311=41.465084,-87.508915
-46312=41.646953,-87.453983
-46319=41.525472,-87.422201
-46320=41.691764,-87.510917
-46321=41.547510,-87.503268
-46322=41.546622,-87.457616
-46323=41.589434,-87.453729
-46324=41.583084,-87.501585
-46327=41.627870,-87.498701
-46340=41.382571,-86.770664
-46341=41.309672,-87.214561
-46342=41.518185,-87.244908
-46345=41.527320,-86.698715
-46346=41.472000,-86.692637
-46347=41.306668,-87.013293
-46348=41.310322,-86.861894
-46349=41.097944,-87.412468
-46350=41.607057,-86.721724
-46356=41.256618,-87.422184
-46360=41.689340,-86.869265
-46365=41.611548,-86.545465
-46366=41.215648,-86.768059
-46368=41.590820,-87.180707
-46371=41.688094,-86.595221
-46373=41.448355,-87.467901
-46374=41.204502,-86.897332
-46375=41.491818,-87.448746
-46376=41.184664,-87.475764
-46377=41.194734,-87.338678
-46379=41.167886,-87.439972
-46381=41.168551,-87.324634
-46382=41.461306,-86.761986
-46383=41.463199,-87.007505
-46385=41.460058,-87.129705
-46390=41.419466,-86.881518
-46391=41.554106,-86.918985
-46392=41.178401,-87.048317
-46393=41.508211,-87.177620
-46394=41.677695,-87.489493
-46402=41.599334,-87.330662
-46403=41.608093,-87.262233
-46404=41.584047,-87.374030
-46405=41.575007,-87.262305
-46406=41.602997,-87.408048
-46407=41.578440,-87.330137
-46408=41.545938,-87.368484
-46409=41.548312,-87.324279
-46410=41.480207,-87.333065
-46501=41.223031,-86.246291
-46502=41.259415,-85.976238
-46504=41.301061,-86.111272
-46506=41.462622,-86.172400
-46507=41.720973,-85.818067
-46508=41.150407,-85.976783
-46510=41.121661,-85.870707
-46511=41.219420,-86.426977
-46514=41.722641,-85.976908
-46516=41.676594,-85.944127
-46517=41.627290,-85.997855
-46524=41.305641,-86.014116
-46526=41.558780,-85.876662
-46528=41.600525,-85.784864
-46530=41.740931,-86.126918
-46531=41.356985,-86.519382
-46532=41.411435,-86.611346
-46534=41.285345,-86.617818
-46536=41.514551,-86.298011
-46537=41.459879,-86.310197
-46538=41.330237,-85.823415
-46539=41.163149,-86.026511
-46540=41.680015,-85.698192
-46542=41.396628,-85.869691
-46543=41.535194,-85.672121
-46544=41.615082,-86.147820
-46545=41.693766,-86.146824
-46550=41.445994,-86.000647
-46552=41.706315,-86.481879
-46553=41.479526,-85.849206
-46554=41.557413,-86.416992
-46555=41.326506,-85.680481
-46556=41.707119,-86.251338
-46561=41.663978,-86.075352
-46562=41.208342,-85.684898
-46563=41.356728,-86.327261
-46565=41.694850,-85.577499
-46567=41.416491,-85.725422
-46570=41.197926,-86.121792
-46571=41.575590,-85.547199
-46573=41.544364,-86.069668
-46574=41.481951,-86.486629
-46580=41.213832,-85.869547
-46582=41.280602,-85.854448
-46590=41.217143,-85.813135
-46595=41.526336,-86.166605
-46601=41.670274,-86.252661
-46613=41.655494,-86.258431
-46614=41.603188,-86.279210
-46615=41.673953,-86.211710
-46616=41.697826,-86.266028
-46617=41.684553,-86.234758
-46619=41.660941,-86.353750
-46628=41.723298,-86.328342
-46635=41.714357,-86.201743
-46637=41.733701,-86.241470
-46701=41.360791,-85.431238
-46702=40.831378,-85.628114
-46703=41.649589,-85.006550
-46704=41.103975,-85.292577
-46705=41.518869,-85.059669
-46706=41.341594,-85.032655
-46710=41.342351,-85.242144
-46711=40.661951,-84.926879
-46714=40.722652,-85.176526
-46721=41.423132,-84.876656
-46723=41.245530,-85.326545
-46725=41.148544,-85.475768
-46730=41.458442,-85.151597
-46731=40.793538,-85.099634
-46732=41.379566,-85.622389
-46733=40.828228,-84.940039
-46737=41.719282,-84.929830
-46738=41.318908,-85.148865
-46740=40.604280,-84.964762
-46741=41.216995,-84.951172
-46742=41.548594,-84.879092
-46743=41.215359,-84.851125
-46745=40.951657,-85.009422
-46746=41.725354,-85.344932
-46747=41.565687,-85.157978
-46748=41.248585,-85.161149
-46750=40.878460,-85.496399
-46755=41.449220,-85.275147
-46759=40.603927,-85.178498
-46760=41.345491,-85.552692
-46761=41.634450,-85.377399
-46763=41.301427,-85.232689
-46764=41.224389,-85.620412
-46765=41.232447,-85.048745
-46766=40.708823,-85.288636
-46767=41.470883,-85.570523
-46770=40.837684,-85.324251
-46771=41.694296,-85.296149
-46772=40.721508,-84.913716
-46773=40.982148,-84.875607
-46774=41.089259,-84.972549
-46776=41.721181,-85.165915
-46777=40.869136,-85.147577
-46779=41.577202,-85.039473
-46781=40.632380,-85.268890
-46783=40.969261,-85.357314
-46784=41.500444,-85.388310
-46785=41.323197,-84.877756
-46786=41.532044,-85.272374
-46787=41.066251,-85.619724
-46788=41.272928,-84.908026
-46791=40.837816,-85.232101
-46792=40.684316,-85.443330
-46793=41.452403,-85.015268
-46794=41.462190,-85.452201
-46795=41.553974,-85.330905
-46797=41.128395,-84.858980
-46798=40.938582,-85.214712
-46799=40.911504,-85.285755
-46802=41.069304,-85.165160
-46803=41.069874,-85.088544
-46804=41.052918,-85.241650
-46805=41.100110,-85.117711
-46806=41.046823,-85.088361
-46807=41.044893,-85.147602
-46808=41.097775,-85.177021
-46809=40.998405,-85.205235
-46814=41.050882,-85.299234
-46815=41.102735,-85.058629
-46816=41.000785,-85.036179
-46818=41.155856,-85.253014
-46819=40.974587,-85.133593
-46825=41.152413,-85.127091
-46835=41.152980,-85.040800
-46845=41.211995,-85.108804
-46901=40.531266,-86.169537
-46902=40.437275,-86.094553
-46910=41.043832,-86.036308
-46911=40.637417,-85.945821
-46913=40.503001,-86.503452
-46914=40.628598,-86.094769
-46915=40.477734,-86.386590
-46917=40.626869,-86.475047
-46919=40.594183,-85.869644
-46920=40.464409,-86.494811
-46922=41.138130,-86.413626
-46923=40.610524,-86.637989
-46926=40.887938,-86.049986
-46928=40.405898,-85.682305
-46929=40.554751,-86.476386
-46930=40.407335,-85.571487
-46931=40.947539,-86.264270
-46932=40.597241,-86.250469
-46933=40.479845,-85.582288
-46936=40.484302,-85.927782
-46938=40.459646,-85.626941
-46939=40.992876,-86.400545
-46940=40.690906,-85.689231
-46941=40.823115,-85.688947
-46943=40.975386,-85.842930
-46946=41.040430,-85.728422
-46947=40.759919,-86.376113
-46950=40.888204,-86.364948
-46951=40.947573,-86.105392
-46952=40.599427,-85.629225
-46953=40.519395,-85.645026
-46957=40.388298,-85.495962
-46958=40.821933,-86.117007
-46959=40.620859,-86.107153
-46960=41.161352,-86.535546
-46961=40.766510,-86.191686
-46962=40.988512,-85.768369
-46967=40.694682,-86.195106
-46968=41.175341,-86.546361
-46970=40.760125,-86.061471
-46974=40.951906,-85.933516
-46975=41.075438,-86.250139
-46978=40.856627,-86.512501
-46979=40.429421,-86.275733
-46982=41.063312,-85.882928
-46984=40.667769,-85.830127
-46985=40.950787,-86.573883
-46986=40.497945,-85.819279
-46987=40.568813,-85.765358
-46988=40.877117,-86.234743
-46989=40.448635,-85.481366
-46990=40.897336,-85.731383
-46991=40.628038,-85.514210
-46992=40.787305,-85.826434
-46994=40.667327,-86.254550
-46996=41.062011,-86.657974
-46998=40.567605,-86.349666
-47001=39.072665,-84.965538
-47003=39.559685,-84.834261
-47006=39.291996,-85.215884
-47010=39.501581,-84.848717
-47011=38.881620,-85.076128
-47012=39.427315,-84.983461
-47016=39.372219,-84.890262
-47017=38.935533,-85.185945
-47018=38.996765,-85.086623
-47020=38.819261,-84.923974
-47022=39.204900,-84.951741
-47023=39.080546,-85.381852
-47024=39.476872,-85.199038
-47025=39.165524,-84.866317
-47030=39.424202,-85.132571
-47031=39.124244,-85.156451
-47032=39.086912,-85.043662
-47034=39.203982,-85.327471
-47035=39.309224,-84.905542
-47036=39.391200,-85.245798
-47037=39.169482,-85.325656
-47038=38.850304,-84.849950
-47040=38.922057,-84.941033
-47041=39.234052,-85.083768
-47042=39.019440,-85.255113
-47043=38.790365,-85.090993
-47060=39.301338,-84.885706
-47102=38.765011,-85.792736
-47104=38.540304,-85.421392
-47106=38.464300,-85.899850
-47108=38.640027,-86.248533
-47110=38.098852,-86.185044
-47111=38.466355,-85.632505
-47112=38.195517,-86.162499
-47114=38.285817,-86.084556
-47115=38.348952,-86.209964
-47116=38.324227,-86.622010
-47117=38.106642,-85.967356
-47118=38.310091,-86.497430
-47119=38.371949,-85.881518
-47120=38.460364,-86.188720
-47122=38.305960,-85.984844
-47123=38.267133,-86.479372
-47124=38.371492,-86.010607
-47125=38.463600,-86.313139
-47126=38.547252,-85.776209
-47129=38.313141,-85.768453
-47130=38.332696,-85.696419
-47135=38.048816,-86.074351
-47136=38.235079,-85.966763
-47137=38.168121,-86.390479
-47138=38.682475,-85.584686
-47140=38.384301,-86.370701
-47141=38.547956,-85.612115
-47142=38.084881,-86.213131
-47143=38.468623,-85.768154
-47145=38.329877,-86.306582
-47147=38.592228,-85.543926
-47150=38.283506,-85.847601
-47160=38.164455,-86.050997
-47161=38.321795,-86.103592
-47162=38.545860,-85.460052
-47163=38.533074,-85.669844
-47164=38.413092,-86.095786
-47165=38.503446,-86.007002
-47166=38.306882,-86.167419
-47167=38.611460,-86.095905
-47170=38.685201,-85.844056
-47172=38.399506,-85.774251
-47175=38.376592,-86.568018
-47177=38.589699,-85.791876
-47201=39.158873,-85.993199
-47203=39.230403,-85.832160
-47220=38.876281,-86.049057
-47223=39.050074,-85.472026
-47224=38.888028,-85.215093
-47226=39.282458,-85.869112
-47227=38.867579,-85.654136
-47229=38.807113,-85.864840
-47230=38.792380,-85.625116
-47231=38.900912,-85.494614
-47232=39.112058,-85.789256
-47234=39.377362,-85.767900
-47235=38.991705,-86.136101
-47240=39.305991,-85.478417
-47243=38.668701,-85.482235
-47244=39.219042,-85.701540
-47246=39.299253,-85.767011
-47247=39.059532,-85.888138
-47250=38.815317,-85.351135
-47260=38.836742,-86.197754
-47263=39.309440,-85.330177
-47264=38.979029,-86.250752
-47265=39.014661,-85.629937
-47270=38.839337,-85.722862
-47272=39.411013,-85.621407
-47273=39.075790,-85.736847
-47274=38.966511,-85.937722
-47280=39.296587,-85.950521
-47281=38.788527,-86.106341
-47282=38.982353,-85.610731
-47283=39.173689,-85.588747
-47302=40.126910,-85.382469
-47303=40.271643,-85.377772
-47304=40.236332,-85.459814
-47305=40.194099,-85.385939
-47306=40.202547,-85.405132
-47320=40.271703,-85.272799
-47324=39.741173,-84.851735
-47325=39.691146,-85.020236
-47326=40.548680,-84.967266
-47327=39.827428,-85.175101
-47330=39.786249,-85.022256
-47331=39.624084,-85.157338
-47334=40.118682,-85.524594
-47335=39.812537,-85.205175
-47336=40.386666,-85.210360
-47337=39.802476,-85.437276
-47338=40.342384,-85.337455
-47339=39.938777,-85.079129
-47340=40.180757,-85.133663
-47341=39.972320,-84.891734
-47342=40.328580,-85.507983
-47344=39.878307,-85.465383
-47345=39.893863,-85.060180
-47346=39.931638,-85.168192
-47348=40.466214,-85.340374
-47351=39.906726,-85.524555
-47352=39.795720,-85.367066
-47353=39.623111,-84.925152
-47354=40.040842,-85.192539
-47355=40.044174,-84.927052
-47356=40.031458,-85.507425
-47357=39.751359,-85.146917
-47358=40.057341,-85.112956
-47359=40.551281,-85.283667
-47360=40.011265,-85.258203
-47361=40.004190,-85.385059
-47362=39.930459,-85.369580
-47367=40.082648,-85.387219
-47368=40.182196,-85.194189
-47369=40.507343,-85.142062
-47371=40.418997,-84.962799
-47373=40.337508,-85.160845
-47374=39.832079,-84.889699
-47380=40.286745,-85.030029
-47381=40.381786,-84.866884
-47382=40.236391,-84.917484
-47383=40.141861,-85.266121
-47384=39.909241,-85.550892
-47385=39.832905,-85.446008
-47386=40.055073,-85.385654
-47387=39.838465,-85.298534
-47388=40.004482,-85.443439
-47390=40.205668,-84.846428
-47393=39.962996,-85.003691
-47394=40.167974,-84.987308
-47396=40.189183,-85.517178
-47401=39.102306,-86.442835
-47403=39.085219,-86.612340
-47404=39.219531,-86.591196
-47405=39.168209,-86.518614
-47406=39.177797,-86.515448
-47408=39.229815,-86.467254
-47420=38.913158,-86.548919
-47421=38.863494,-86.452230
-47424=39.020048,-86.882428
-47427=39.232829,-87.016135
-47429=39.273303,-86.615937
-47431=39.236601,-86.902939
-47432=38.485527,-86.641906
-47433=39.355787,-86.641547
-47434=39.011912,-86.547286
-47436=38.954149,-86.385977
-47437=38.714743,-86.676968
-47438=39.158915,-87.187359
-47441=39.044695,-87.165501
-47443=38.958170,-87.099145
-47446=38.747201,-86.518136
-47448=39.179530,-86.235511
-47449=38.927130,-87.003467
-47451=38.892959,-86.523550
-47452=38.647143,-86.433430
-47453=38.941630,-86.775709
-47454=38.510025,-86.451821
-47455=39.316501,-86.956155
-47456=39.465239,-86.691333
-47457=38.909139,-86.904750
-47458=39.070329,-86.507227
-47459=39.112793,-86.749576
-47460=39.285969,-86.792025
-47462=38.958323,-86.647567
-47464=39.299803,-86.649995
-47465=39.047972,-87.034871
-47467=38.767864,-86.344361
-47468=39.270849,-86.392506
-47469=38.637600,-86.599153
-47470=38.818254,-86.637138
-47471=39.143294,-87.005186
-47501=38.662060,-87.173647
-47512=38.783522,-87.320652
-47513=38.304258,-86.714111
-47514=38.156200,-86.586209
-47515=38.183913,-86.703982
-47516=38.771006,-87.419265
-47519=38.602659,-86.992661
-47520=37.944942,-86.668258
-47521=38.408491,-86.721023
-47522=38.892320,-86.816735
-47523=38.178794,-87.025759
-47524=38.494770,-87.610887
-47525=38.032359,-86.559701
-47527=38.468858,-86.785924
-47528=38.833175,-87.253351
-47529=38.854967,-87.080001
-47531=38.039710,-86.851428
-47532=38.221348,-86.860563
-47535=38.872348,-87.307670
-47536=38.112290,-86.836519
-47537=38.074167,-87.036126
-47541=38.235278,-87.046164
-47542=38.296585,-86.966599
-47546=38.418779,-86.932557
-47550=38.067186,-86.921311
-47551=38.114113,-86.569572
-47552=38.114551,-86.999676
-47553=38.660781,-86.904069
-47557=38.578834,-87.342777
-47558=38.646137,-87.040439
-47561=38.863914,-87.438327
-47562=38.833089,-86.973432
-47564=38.483041,-87.093828
-47567=38.462700,-87.305019
-47568=38.764087,-87.102429
-47574=37.950036,-86.562127
-47575=38.317808,-86.804462
-47576=38.176996,-86.617343
-47577=38.152526,-86.808938
-47578=38.902340,-87.193521
-47579=38.110937,-86.915134
-47580=38.355203,-86.767156
-47581=38.655694,-86.762600
-47584=38.255502,-87.259526
-47585=38.268350,-87.158083
-47586=38.039096,-86.701995
-47588=38.072389,-86.778403
-47590=38.360628,-87.100361
-47591=38.628561,-87.501485
-47596=38.866496,-87.227734
-47597=38.654452,-87.298744
-47598=38.387040,-87.211447
-47601=38.051443,-87.254533
-47610=38.065322,-87.409527
-47611=38.027918,-87.057458
-47612=38.193026,-87.699246
-47613=38.158948,-87.417471
-47615=37.969660,-86.963824
-47616=38.240052,-87.890844
-47619=38.183748,-87.308139
-47620=37.931959,-87.905711
-47630=37.952897,-87.346470
-47631=38.109131,-87.901792
-47633=38.175907,-87.787892
-47634=37.939468,-87.182452
-47635=37.883458,-87.100911
-47637=38.135734,-87.151319
-47638=38.064381,-87.777636
-47639=38.176143,-87.572939
-47640=38.478176,-87.484032
-47648=38.248647,-87.550882
-47649=38.346714,-87.453413
-47654=38.249505,-87.392292
-47660=38.296159,-87.328006
-47665=38.276670,-87.722673
-47666=38.417797,-87.600469
-47670=38.344905,-87.584786
-47683=38.276782,-87.376955
-47708=37.974624,-87.573265
-47710=38.025505,-87.575809
-47711=38.015301,-87.536743
-47712=37.926457,-87.665531
-47713=37.954531,-87.559175
-47714=37.956614,-87.521291
-47715=37.972431,-87.479646
-47720=38.062897,-87.641573
-47725=38.106329,-87.524939
-47802=39.351016,-87.411897
-47803=39.466092,-87.307322
-47804=39.497812,-87.389953
-47805=39.546274,-87.326483
-47807=39.472935,-87.403423
-47809=39.471249,-87.410106
-47832=39.880882,-87.258433
-47833=39.358609,-86.975238
-47834=39.525549,-87.121971
-47836=39.646104,-87.179079
-47837=39.627224,-87.114906
-47838=38.961773,-87.383679
-47840=39.408055,-87.056514
-47841=39.273899,-87.114103
-47842=39.678584,-87.463596
-47846=39.381475,-87.193771
-47847=39.831343,-87.485836
-47848=39.042043,-87.261971
-47849=39.195304,-87.563740
-47850=39.251931,-87.435782
-47853=39.538200,-87.072828
-47854=39.803019,-87.403057
-47855=39.189827,-87.304098
-47857=39.524158,-87.091111
-47858=39.262171,-87.224587
-47859=39.881840,-87.172196
-47860=39.721857,-87.330273
-47861=39.073459,-87.570355
-47862=39.767091,-87.342366
-47863=39.589125,-87.454348
-47865=39.020999,-87.391428
-47866=39.292406,-87.321116
-47868=39.411073,-86.902594
-47869=39.273917,-87.496713
-47871=39.389680,-87.299875
-47872=39.753541,-87.153112
-47874=39.628499,-87.270746
-47876=39.516551,-87.458295
-47879=39.197692,-87.378686
-47880=39.599748,-87.418844
-47881=39.485930,-87.192415
-47882=39.091315,-87.410855
-47884=39.612406,-87.448085
-47885=39.510414,-87.477056
-47901=40.417778,-86.889633
-47904=40.438632,-86.876920
-47905=40.420015,-86.766044
-47906=40.479649,-86.989218
-47907=40.424403,-86.915480
-47909=40.324563,-86.896302
-47916=39.983646,-87.055430
-47917=40.466838,-87.473426
-47918=40.298678,-87.198005
-47920=40.540759,-86.833864
-47921=40.477151,-87.375376
-47922=40.876948,-87.348911
-47923=40.610401,-86.940003
-47924=40.487945,-86.762846
-47925=40.878281,-86.748403
-47926=40.780384,-86.595516
-47928=39.921337,-87.472313
-47929=40.670159,-86.912760
-47930=40.237087,-86.742355
-47932=40.134328,-87.415241
-47933=40.038913,-86.896849
-47940=40.117577,-86.746635
-47941=40.376134,-86.773975
-47942=40.686285,-87.444303
-47943=41.063383,-87.273449
-47944=40.616471,-87.330263
-47946=40.981738,-86.868425
-47948=40.777015,-87.281735
-47949=40.060540,-87.137329
-47950=40.802441,-86.654857
-47951=40.789254,-87.444426
-47952=39.959636,-87.299105
-47954=39.899963,-86.818500
-47955=40.196331,-86.861865
-47957=41.086146,-86.874731
-47958=40.164219,-87.142399
-47959=40.862566,-86.900583
-47960=40.779015,-86.751024
-47963=40.984169,-87.431931
-47964=40.952120,-87.298642
-47965=39.954454,-86.920264
-47966=39.885820,-87.396984
-47967=40.196681,-87.001633
-47968=39.959518,-86.749957
-47969=40.205717,-87.148731
-47970=40.462120,-87.143054
-47971=40.532018,-87.233923
-47974=40.042921,-87.480363
-47975=40.449132,-87.253258
-47977=40.755909,-87.164567
-47978=40.986173,-87.112979
-47980=40.752294,-86.909348
-47981=40.245025,-86.930413
-47982=40.197348,-87.527069
-47983=40.279131,-86.767288
-47987=40.125792,-87.233030
-47989=39.890345,-87.049040
-47990=40.061841,-87.054281
-47991=40.284444,-87.463075
-47992=40.319373,-87.048999
-47993=40.309014,-87.412707
-47994=40.169249,-87.062127
-47995=40.761189,-87.030109
-47997=40.667696,-86.723596
-48001=42.639231,-82.581698
-48002=42.935043,-82.916493
-48003=42.930240,-83.039995
-48005=42.850742,-82.923828
-48006=43.083019,-82.691035
-48009=42.544048,-83.217653
-48014=43.025719,-82.931553
-48015=42.480497,-83.027149
-48017=42.536690,-83.150367
-48021=42.466080,-82.946341
-48022=43.023396,-82.802404
-48023=42.704385,-82.658852
-48025=42.520357,-83.264824
-48026=42.537633,-82.946742
-48027=42.944289,-82.694041
-48028=42.580209,-82.616620
-48030=42.461924,-83.097689
-48032=43.133203,-82.596952
-48033=42.459322,-83.293205
-48034=42.496949,-83.291078
-48035=42.556600,-82.907589
-48036=42.597045,-82.913144
-48038=42.606146,-82.937475
-48039=42.692907,-82.546478
-48040=42.910313,-82.480603
-48041=42.937257,-82.809536
-48042=42.683619,-82.909486
-48043=42.598055,-82.881506
-48044=42.650226,-82.928905
-48045=42.586409,-82.818113
-48047=42.673906,-82.774086
-48048=42.745747,-82.795870
-48049=43.040458,-82.571040
-48050=42.787537,-82.799467
-48051=42.693641,-82.821001
-48054=42.770358,-82.528976
-48059=43.087276,-82.494490
-48060=42.980388,-82.461014
-48062=42.852495,-82.796471
-48063=42.859332,-82.683111
-48064=42.764617,-82.666777
-48065=42.845195,-83.039290
-48066=42.507586,-82.936582
-48067=42.490558,-83.137524
-48069=42.471325,-83.144332
-48070=42.481899,-83.168088
-48071=42.507266,-83.103371
-48072=42.497902,-83.185859
-48073=42.519204,-83.164362
-48074=42.950223,-82.561555
-48075=42.462064,-83.230398
-48076=42.497517,-83.230874
-48079=42.858849,-82.548404
-48080=42.464424,-82.896175
-48081=42.494669,-82.895039
-48082=42.528022,-82.887195
-48083=42.557021,-83.116859
-48084=42.560633,-83.175706
-48085=42.604032,-83.122111
-48088=42.515645,-82.982991
-48089=42.468096,-82.993857
-48091=42.468168,-83.057986
-48092=42.513593,-83.058938
-48093=42.515890,-83.016483
-48094=42.733823,-83.048737
-48095=42.778736,-83.048070
-48096=42.762151,-82.920470
-48097=43.121947,-82.827417
-48098=42.598433,-83.178450
-48101=42.259473,-83.210390
-48103=42.261350,-83.846458
-48104=42.263484,-83.715120
-48105=42.327634,-83.696444
-48108=42.221694,-83.732265
-48109=42.289187,-83.708780
-48111=42.177312,-83.488444
-48114=42.571753,-83.749573
-48116=42.505744,-83.782892
-48117=42.050259,-83.410188
-48118=42.312244,-84.034020
-48120=42.306327,-83.176211
-48122=42.278607,-83.182255
-48124=42.298036,-83.247610
-48125=42.277334,-83.264832
-48126=42.325790,-83.183213
-48127=42.335793,-83.283296
-48128=42.320411,-83.259969
-48130=42.364141,-83.909360
-48131=41.964336,-83.666150
-48133=41.782381,-83.486028
-48134=42.106693,-83.296156
-48135=42.324384,-83.341212
-48137=42.471975,-84.074565
-48138=42.133978,-83.153921
-48139=42.452452,-83.806050
-48140=41.882184,-83.580507
-48141=42.293969,-83.320074
-48143=42.459978,-83.851969
-48144=41.752485,-83.628700
-48145=41.844247,-83.459970
-48146=42.243291,-83.181258
-48150=42.371604,-83.376788
-48152=42.424935,-83.374264
-48154=42.397183,-83.372319
-48157=41.814624,-83.438215
-48158=42.155610,-84.029361
-48159=42.019159,-83.547956
-48160=42.078164,-83.674971
-48161=41.907196,-83.472457
-48162=41.960425,-83.429323
-48164=42.124571,-83.386866
-48165=42.501565,-83.616922
-48166=41.982805,-83.294714
-48167=42.432315,-83.524658
-48168=42.405262,-83.540498
-48169=42.461925,-83.947382
-48170=42.367689,-83.534306
-48173=42.073679,-83.212774
-48174=42.234298,-83.394324
-48176=42.136836,-83.829250
-48177=41.803955,-83.580926
-48178=42.443768,-83.656872
-48179=42.035092,-83.255450
-48180=42.225283,-83.267691
-48182=41.789858,-83.583849
-48183=42.131459,-83.217792
-48184=42.274479,-83.395623
-48185=42.333901,-83.384209
-48186=42.293764,-83.370739
-48187=42.325573,-83.483576
-48188=42.283886,-83.481933
-48189=42.412336,-83.782854
-48190=42.131536,-83.593807
-48191=42.121629,-83.570590
-48192=42.208455,-83.161498
-48193=42.173282,-83.209837
-48195=42.204975,-83.206511
-48197=42.194034,-83.639984
-48198=42.275075,-83.586340
-48201=42.347021,-83.060184
-48202=42.374786,-83.077718
-48203=42.420736,-83.104338
-48204=42.365812,-83.142935
-48205=42.433156,-82.981142
-48206=42.375123,-83.107897
-48207=42.349600,-83.018847
-48208=42.348491,-83.091937
-48209=42.306083,-83.117655
-48210=42.336212,-83.128331
-48211=42.381347,-83.045733
-48212=42.409721,-83.056394
-48213=42.397931,-82.995213
-48214=42.365116,-82.987644
-48215=42.375051,-82.954344
-48216=42.326485,-83.078746
-48217=42.277651,-83.155078
-48218=42.272709,-83.126672
-48219=42.425328,-83.251428
-48220=42.458066,-83.135213
-48221=42.427000,-83.148609
-48223=42.393453,-83.246327
-48224=42.410693,-82.941265
-48225=42.438984,-82.929610
-48226=42.331542,-83.050267
-48227=42.387249,-83.192592
-48228=42.355455,-83.217014
-48229=42.250559,-83.142867
-48230=42.382395,-82.921842
-48233=42.323697,-83.061662
-48234=42.431197,-83.039501
-48235=42.427058,-83.194803
-48236=42.425373,-82.893194
-48237=42.464968,-83.182420
-48238=42.396286,-83.141352
-48239=42.376046,-83.283174
-48240=42.424460,-83.301300
-48242=42.221210,-83.345136
-48243=42.329975,-83.039506
-48301=42.542400,-83.282168
-48302=42.585108,-83.293467
-48304=42.588866,-83.233152
-48306=42.724318,-83.147306
-48307=42.659316,-83.122679
-48309=42.657213,-83.186577
-48310=42.563435,-83.068397
-48312=42.558228,-83.008926
-48313=42.600651,-83.002903
-48314=42.612074,-83.053489
-48315=42.671835,-82.997399
-48316=42.690173,-83.057244
-48317=42.644844,-83.051975
-48320=42.611935,-83.338092
-48322=42.537824,-83.384526
-48323=42.570804,-83.377909
-48324=42.595022,-83.391230
-48326=42.688246,-83.244075
-48327=42.636933,-83.409987
-48328=42.646423,-83.359184
-48329=42.687016,-83.388622
-48331=42.502483,-83.408935
-48334=42.504694,-83.349204
-48335=42.462872,-83.405033
-48336=42.463144,-83.347270
-48340=42.672146,-83.287904
-48341=42.626921,-83.297371
-48342=42.642264,-83.273415
-48346=42.717882,-83.428703
-48348=42.768594,-83.404451
-48350=42.739418,-83.531044
-48353=42.646870,-83.715943
-48356=42.654414,-83.592905
-48357=42.658572,-83.646545
-48359=42.720743,-83.275522
-48360=42.747574,-83.260083
-48362=42.782333,-83.269397
-48363=42.772483,-83.162499
-48367=42.836232,-83.136902
-48370=42.842876,-83.200365
-48371=42.840970,-83.291531
-48374=42.473226,-83.522863
-48375=42.464141,-83.463958
-48377=42.505368,-83.473579
-48380=42.583002,-83.666824
-48381=42.558412,-83.591793
-48382=42.592395,-83.506365
-48383=42.655610,-83.525824
-48386=42.660223,-83.479990
-48390=42.550711,-83.474218
-48393=42.521838,-83.545088
-48397=42.495017,-83.041035
-48401=43.347342,-82.670591
-48411=42.931981,-83.528907
-48412=43.070433,-83.175549
-48413=43.798506,-82.994200
-48414=42.861694,-84.079846
-48415=43.271876,-83.808105
-48416=43.216870,-82.985115
-48417=43.261282,-83.939194
-48418=42.794295,-83.969891
-48419=43.435806,-82.660428
-48420=43.179103,-83.700508
-48421=43.155496,-83.393187
-48422=43.261472,-82.653704
-48423=43.038705,-83.510960
-48426=43.511491,-83.057347
-48427=43.535638,-82.725482
-48428=42.938195,-83.154454
-48429=42.902992,-84.004121
-48430=42.758215,-83.743683
-48432=43.898698,-82.972074
-48433=43.075348,-83.867227
-48434=43.661889,-82.611777
-48435=43.245379,-83.359338
-48436=42.865301,-83.876801
-48437=43.115745,-83.612394
-48438=42.913657,-83.484165
-48439=42.916399,-83.629374
-48440=42.951094,-83.412259
-48441=43.797892,-82.708630
-48442=42.788680,-83.606102
-48444=43.058491,-83.045197
-48445=43.950222,-82.990555
-48446=43.053740,-83.338704
-48449=42.991452,-83.944772
-48450=43.258660,-82.542438
-48451=42.801222,-83.819172
-48453=43.348144,-83.032572
-48454=43.195011,-82.812721
-48455=42.937951,-83.290783
-48456=43.666971,-82.762208
-48457=43.186801,-83.895170
-48458=43.125298,-83.681543
-48460=43.130612,-83.984997
-48461=43.193661,-83.206162
-48462=42.848476,-83.421754
-48463=43.165799,-83.519301
-48464=43.220341,-83.422460
-48465=43.607998,-82.707770
-48466=43.280507,-82.808877
-48467=44.015356,-82.982415
-48468=43.938412,-82.775181
-48469=43.441469,-82.558181
-48470=43.735130,-82.751064
-48471=43.419420,-82.852080
-48472=43.512323,-82.963212
-48473=42.936950,-83.820544
-48475=43.673156,-82.947987
-48476=42.938707,-84.030050
-48502=43.013727,-83.688376
-48503=42.999923,-83.708864
-48504=43.054721,-83.743729
-48505=43.070311,-83.686117
-48506=43.067472,-83.624392
-48507=42.966966,-83.717359
-48509=43.023941,-83.604709
-48519=42.981891,-83.604953
-48529=42.970338,-83.658590
-48532=43.011068,-83.794875
-48551=42.980994,-83.716900
-48553=42.977762,-83.723561
-48554=42.975881,-83.790734
-48601=43.405947,-83.893998
-48602=43.420026,-83.974472
-48603=43.458786,-84.029471
-48604=43.499764,-83.969084
-48607=43.432412,-83.933828
-48609=43.389617,-84.083170
-48610=44.141691,-84.192191
-48611=43.634148,-84.097206
-48612=43.883024,-84.439434
-48613=43.962785,-84.178016
-48614=43.250991,-84.298042
-48615=43.429810,-84.474806
-48616=43.191074,-84.113460
-48617=43.851308,-84.717297
-48618=43.736779,-84.556707
-48619=44.819736,-84.020613
-48621=44.736899,-84.012427
-48622=43.840836,-84.881266
-48623=43.520080,-84.132840
-48624=44.061093,-84.457370
-48625=44.052769,-84.839621
-48626=43.421372,-84.221436
-48627=44.461919,-84.750203
-48628=43.784121,-84.328366
-48629=44.312238,-84.784698
-48630=44.324794,-84.772497
-48631=43.688645,-83.995895
-48632=43.858387,-85.020525
-48633=43.936975,-84.931062
-48634=43.747641,-84.056178
-48635=44.387169,-83.994430
-48636=44.601981,-84.299426
-48637=43.413693,-84.335573
-48638=43.418925,-84.018242
-48640=43.582166,-84.337227
-48642=43.712749,-84.236964
-48647=44.658121,-84.113065
-48649=43.150461,-84.217431
-48650=43.848958,-83.997374
-48651=44.254775,-84.614813
-48652=43.860201,-84.196880
-48653=44.490944,-84.599452
-48654=44.457421,-84.137319
-48655=43.294499,-84.159695
-48656=44.341665,-84.450997
-48657=43.706126,-84.416160
-48658=43.975339,-83.936798
-48659=44.065548,-84.050783
-48661=44.318406,-84.236213
-48662=43.409942,-84.416810
-48667=43.602088,-84.233324
-48701=43.586877,-83.557827
-48703=44.063642,-83.675914
-48705=44.695826,-83.656494
-48706=43.599622,-83.950504
-48708=43.557060,-83.849680
-48710=43.556513,-83.987669
-48720=43.838908,-83.342072
-48721=44.808106,-83.339480
-48722=43.346724,-83.844762
-48723=43.484961,-83.389457
-48724=43.456815,-83.928244
-48725=43.943956,-83.209593
-48726=43.607392,-83.168024
-48727=43.313344,-83.174586
-48728=44.732391,-83.822784
-48729=43.495939,-83.173779
-48730=44.343486,-83.455677
-48731=43.843633,-83.151050
-48732=43.612331,-83.789822
-48733=43.534102,-83.593113
-48734=43.357562,-83.748510
-48735=43.667593,-83.270883
-48737=44.545688,-83.685206
-48738=44.550292,-83.331217
-48739=44.370453,-83.844934
-48740=44.663889,-83.372024
-48741=43.402479,-83.179873
-48742=44.742724,-83.435666
-48743=44.441124,-83.863151
-48744=43.348042,-83.359255
-48745=44.563700,-83.484031
-48746=43.259333,-83.550250
-48747=43.518879,-83.764927
-48748=44.345750,-83.602632
-48749=44.053935,-83.900947
-48750=44.445649,-83.471971
-48754=43.733259,-83.231016
-48755=43.791501,-83.245620
-48756=44.233746,-83.973379
-48757=43.469859,-83.676311
-48759=43.730478,-83.385904
-48760=43.323051,-83.255006
-48761=44.510924,-83.891710
-48762=44.821660,-83.461620
-48763=44.255090,-83.614901
-48765=44.151556,-83.717952
-48766=44.105722,-83.839392
-48767=43.650518,-83.463154
-48768=43.370831,-83.577539
-48770=44.251183,-83.814184
-48801=43.374101,-84.677608
-48806=43.186891,-84.500161
-48807=43.150476,-84.402006
-48808=42.828836,-84.444776
-48809=43.075299,-85.257962
-48811=43.181498,-84.853735
-48813=42.579775,-84.845891
-48815=42.834371,-85.258585
-48816=42.765009,-83.955981
-48817=43.013949,-84.042884
-48818=43.274603,-84.885112
-48819=42.547396,-84.280994
-48820=42.863913,-84.592296
-48821=42.641171,-84.647417
-48822=42.835279,-84.763128
-48823=42.764051,-84.459938
-48825=42.727604,-84.481420
-48827=42.509319,-84.660440
-48829=43.398205,-85.015378
-48831=43.096219,-84.372488
-48832=43.411883,-84.776582
-48834=43.132585,-85.032114
-48835=43.024903,-84.749057
-48836=42.669319,-84.076583
-48837=42.746876,-84.770686
-48838=43.183357,-85.256667
-48840=42.763138,-84.379361
-48841=43.112204,-84.239315
-48842=42.633522,-84.538076
-48843=42.575522,-83.923398
-48845=43.102441,-84.845897
-48846=42.986125,-85.057887
-48847=43.273232,-84.575579
-48848=42.887696,-84.353703
-48849=42.806313,-85.124536
-48850=43.435270,-85.245835
-48851=42.951055,-84.936400
-48852=43.351697,-85.046033
-48853=43.100122,-84.685621
-48854=42.581698,-84.451612
-48855=42.681274,-83.897200
-48856=43.197210,-84.733509
-48857=42.840946,-84.155615
-48858=43.616033,-84.795459
-48860=43.050812,-84.908954
-48861=42.732509,-84.925032
-48864=42.704170,-84.392139
-48865=43.090516,-85.104617
-48866=42.997596,-84.376341
-48867=43.002718,-84.188977
-48870=43.110408,-84.984752
-48871=43.156653,-84.673805
-48872=42.798650,-84.223099
-48873=42.996853,-84.844150
-48874=43.186449,-84.594937
-48875=42.860813,-84.941448
-48876=42.644294,-84.731216
-48877=43.403734,-84.840802
-48878=43.706095,-84.779858
-48879=43.003075,-84.577361
-48880=43.458864,-84.578359
-48881=42.933122,-85.201584
-48883=43.543727,-84.673886
-48884=43.209843,-85.049208
-48885=43.242912,-85.147939
-48886=43.415719,-85.159692
-48888=43.314815,-85.106068
-48889=43.285072,-84.806900
-48890=42.766874,-84.966363
-48891=43.395354,-84.911507
-48892=42.632741,-84.166861
-48893=43.685543,-84.975050
-48894=42.921483,-84.785801
-48895=42.688915,-84.279784
-48896=43.521275,-84.901027
-48897=42.703898,-85.130349
-48906=42.788043,-84.589443
-48910=42.699177,-84.519955
-48911=42.673010,-84.571422
-48912=42.738361,-84.524017
-48915=42.737952,-84.570937
-48917=42.725239,-84.639542
-48921=42.721347,-84.560830
-48933=42.731996,-84.554683
-49001=42.264543,-85.561545
-49002=42.195311,-85.562988
-49004=42.353583,-85.563941
-49006=42.292497,-85.631460
-49007=42.302591,-85.588193
-49008=42.263841,-85.617047
-49009=42.303748,-85.697876
-49010=42.533307,-85.874766
-49011=42.110137,-85.218699
-49012=42.368170,-85.344220
-49013=42.305520,-86.108039
-49014=42.314556,-85.106213
-49015=42.275471,-85.229044
-49017=42.401366,-85.215928
-49021=42.460434,-85.054743
-49022=42.112127,-86.359048
-49024=42.206513,-85.617997
-49026=42.376862,-85.963435
-49027=42.350328,-86.067386
-49028=41.851471,-85.190234
-49029=42.142409,-85.100314
-49030=41.865948,-85.338879
-49031=41.904700,-85.974314
-49032=41.911488,-85.522870
-49033=42.227502,-85.088714
-49034=42.233525,-85.341209
-49036=41.905480,-85.031277
-49037=42.330097,-85.244828
-49038=42.202822,-86.320868
-49040=41.965721,-85.329273
-49042=41.860358,-85.672869
-49043=42.285992,-86.268503
-49045=42.102102,-85.999123
-49046=42.519178,-85.387984
-49047=41.999691,-86.118680
-49048=42.272936,-85.487782
-49050=42.504302,-85.245704
-49051=42.184442,-85.242147
-49052=42.105747,-85.321815
-49053=42.289240,-85.416755
-49055=42.368474,-85.857813
-49056=42.398286,-86.056215
-49057=42.181948,-86.162944
-49058=42.636423,-85.299691
-49060=42.423536,-85.385970
-49061=41.873542,-85.815243
-49064=42.220886,-86.049114
-49065=42.138273,-85.842108
-49066=42.037739,-85.341500
-49067=42.024172,-85.798766
-49068=42.276445,-84.939742
-49070=42.539330,-85.629390
-49071=42.226444,-85.775499
-49072=42.012051,-85.460189
-49073=42.574928,-85.126192
-49074=42.317468,-85.538723
-49075=41.917513,-85.448603
-49076=42.428635,-84.880330
-49078=42.472510,-85.732849
-49079=42.240155,-85.908075
-49080=42.456426,-85.588337
-49082=41.941034,-84.876582
-49083=42.378110,-85.461128
-49084=42.182551,-86.382059
-49085=42.054277,-86.462600
-49087=42.124219,-85.700691
-49088=42.179736,-85.422562
-49089=42.004878,-85.236060
-49090=42.407427,-86.214544
-49091=41.818180,-85.455591
-49092=42.098874,-84.978737
-49093=41.972834,-85.649934
-49094=42.050304,-85.113570
-49095=41.911662,-85.889223
-49096=42.645178,-85.021222
-49097=42.121971,-85.487442
-49098=42.163885,-86.239986
-49099=41.793262,-85.671752
-49101=41.937200,-86.482677
-49102=41.949226,-86.252076
-49103=41.946299,-86.376474
-49104=41.963699,-86.358972
-49106=41.938074,-86.554845
-49107=41.844909,-86.417637
-49111=42.022699,-86.291132
-49112=41.796034,-86.030540
-49113=41.801056,-86.503854
-49115=41.878186,-86.634236
-49116=41.853312,-86.663428
-49117=41.781671,-86.726836
-49119=41.874173,-86.549249
-49120=41.832805,-86.230825
-49125=41.891897,-86.579415
-49126=42.032261,-86.371523
-49127=42.010826,-86.515299
-49128=41.820406,-86.600497
-49129=41.815482,-86.691068
-49130=41.774422,-85.860349
-49201=42.191346,-84.297205
-49202=42.267179,-84.410850
-49203=42.221835,-84.396625
-49220=41.998622,-84.337415
-49221=41.902354,-84.064698
-49224=42.279617,-84.746876
-49227=41.950018,-84.772966
-49228=41.809023,-83.875598
-49229=41.987013,-83.827239
-49230=42.091609,-84.217344
-49232=41.740366,-84.664597
-49233=42.061113,-84.362502
-49234=42.127037,-84.368713
-49235=41.863913,-84.200920
-49236=42.075966,-83.941794
-49237=42.170452,-84.651490
-49238=41.902230,-83.785596
-49240=42.283303,-84.181375
-49241=42.107843,-84.603335
-49242=41.886298,-84.622698
-49245=42.139366,-84.811584
-49246=42.127790,-84.512436
-49247=41.837616,-84.338261
-49248=41.756424,-84.011181
-49249=42.029334,-84.454755
-49250=42.021736,-84.626224
-49251=42.466346,-84.407978
-49252=42.035237,-84.765398
-49253=41.967948,-84.272771
-49254=42.227976,-84.316434
-49255=41.771201,-84.844550
-49256=41.746804,-84.214469
-49259=42.374592,-84.261604
-49261=42.157638,-84.236000
-49262=41.963612,-84.468290
-49263=42.158902,-84.184302
-49264=42.446232,-84.555061
-49265=42.006696,-84.175236
-49266=41.839750,-84.546789
-49267=41.757323,-83.719429
-49268=41.868705,-83.929015
-49269=42.287158,-84.593587
-49270=41.873675,-83.680783
-49271=41.831987,-84.453091
-49272=42.393651,-84.348183
-49274=41.846682,-84.759784
-49276=41.794583,-83.776666
-49277=42.388652,-84.469336
-49279=41.780799,-84.103949
-49282=42.034825,-84.402943
-49283=42.207352,-84.550568
-49284=42.391636,-84.688297
-49285=42.476547,-84.213034
-49286=42.010076,-83.927846
-49287=42.023030,-84.073485
-49288=41.733942,-84.429587
-49289=41.768075,-84.107807
-49301=42.973443,-85.476998
-49302=42.821539,-85.402238
-49303=43.271549,-85.860632
-49304=43.907821,-85.872637
-49305=43.752024,-85.151106
-49306=43.075016,-85.565281
-49307=43.699062,-85.489194
-49309=43.759824,-85.876884
-49310=43.513858,-85.047599
-49312=43.685372,-85.806607
-49315=42.803705,-85.742196
-49316=42.793767,-85.550467
-49318=43.227276,-85.820431
-49319=43.230088,-85.527902
-49320=43.753585,-85.275467
-49321=43.073608,-85.681875
-49322=43.355785,-85.351226
-49323=42.728548,-85.790642
-49325=42.760797,-85.301726
-49326=43.246177,-85.317292
-49327=43.323527,-85.845311
-49328=42.633680,-85.758168
-49329=43.406472,-85.484884
-49330=43.241536,-85.736679
-49331=42.950193,-85.351989
-49332=43.623061,-85.249119
-49333=42.699383,-85.461778
-49335=42.738506,-85.668451
-49336=43.508469,-85.435685
-49337=43.423029,-85.718784
-49338=43.771655,-85.602264
-49339=43.331359,-85.496456
-49340=43.617930,-85.110768
-49341=43.124135,-85.490928
-49342=43.690435,-85.315591
-49343=43.297213,-85.535097
-49344=42.589905,-85.591301
-49345=43.155340,-85.703948
-49346=43.594885,-85.421128
-49347=43.316687,-85.347044
-49348=42.685083,-85.610188
-49349=43.575359,-85.748757
-49401=42.975656,-85.939287
-49402=43.933192,-86.029270
-49403=43.140975,-85.857766
-49404=43.063438,-85.952185
-49405=43.914692,-86.191237
-49406=42.642345,-86.202866
-49408=42.571678,-86.116236
-49410=44.032042,-86.126150
-49411=44.100414,-86.251761
-49412=43.468461,-85.948247
-49415=43.150964,-86.114307
-49417=43.019340,-86.157848
-49418=42.877992,-85.767881
-49419=42.679739,-85.980751
-49420=43.719985,-86.282313
-49421=43.599328,-86.069388
-49423=42.743806,-86.083703
-49424=42.843818,-86.134355
-49425=43.428815,-86.089288
-49426=42.863270,-85.887574
-49428=42.920205,-85.838844
-49431=43.985802,-86.406481
-49434=42.769752,-86.218505
-49435=43.024455,-85.835194
-49436=43.678308,-86.466113
-49437=43.461350,-86.386504
-49440=43.237470,-86.253396
-49441=43.182952,-86.282017
-49442=43.241841,-86.135719
-49444=43.178683,-86.199103
-49445=43.292537,-86.293883
-49446=43.551402,-86.378750
-49448=43.094485,-86.071659
-49449=43.793624,-86.388577
-49450=42.484653,-86.082454
-49451=43.213069,-85.967762
-49452=43.506969,-86.260194
-49453=42.659522,-86.172666
-49454=43.946332,-86.285053
-49455=43.610287,-86.378251
-49456=43.089103,-86.206870
-49457=43.352735,-86.146187
-49458=43.921128,-86.095158
-49459=43.741385,-86.112182
-49460=42.933162,-86.145345
-49461=43.376222,-86.319255
-49464=42.844801,-85.984794
-49503=42.962120,-85.659394
-49504=42.981579,-85.710700
-49505=42.996477,-85.637735
-49506=42.945748,-85.613839
-49507=42.930660,-85.655173
-49508=42.875094,-85.619304
-49509=42.897764,-85.693418
-49512=42.883098,-85.527623
-49519=42.895737,-85.718265
-49525=43.021908,-85.592200
-49534=42.964438,-85.787181
-49544=43.038932,-85.746570
-49546=42.927758,-85.530189
-49548=42.870454,-85.662605
-49601=44.245955,-85.510205
-49611=44.973683,-84.974489
-49612=44.864922,-85.239456
-49613=44.506120,-86.206892
-49614=44.435034,-86.114343
-49615=44.964551,-85.206628
-49616=44.579933,-86.090298
-49617=44.643232,-86.031754
-49618=44.293486,-85.607626
-49619=44.293058,-85.991212
-49620=44.523532,-85.691242
-49621=44.868730,-85.770347
-49622=45.077410,-85.260935
-49623=43.908889,-85.691816
-49625=44.433447,-85.883030
-49626=44.239903,-86.292027
-49627=45.084360,-85.344921
-49628=44.615416,-86.244403
-49629=44.918988,-85.390286
-49630=44.818252,-86.009304
-49631=43.912709,-85.262924
-49632=44.239007,-84.967889
-49633=44.558687,-85.206185
-49634=44.214834,-86.290297
-49635=44.617255,-86.192428
-49636=44.855494,-85.963203
-49637=44.621616,-85.709787
-49638=44.286973,-85.755675
-49639=43.847010,-85.408527
-49640=44.715246,-86.048690
-49642=43.868900,-85.761035
-49643=44.639739,-85.828941
-49644=44.098869,-85.910662
-49645=44.362133,-86.029373
-49646=44.724482,-85.055762
-49648=44.996418,-85.336330
-49649=44.563373,-85.525432
-49650=44.739836,-85.887151
-49651=44.390519,-85.104789
-49653=44.973631,-85.723949
-49654=45.146182,-86.051574
-49655=44.024932,-85.432050
-49656=44.067819,-85.692017
-49657=44.212501,-85.169164
-49659=44.895608,-85.019378
-49660=44.225140,-86.210203
-49663=44.435322,-85.390105
-49664=44.887981,-85.898639
-49665=44.095202,-85.118154
-49666=44.622029,-85.554055
-49667=44.363328,-84.914644
-49668=44.405416,-85.702617
-49670=45.126997,-85.662573
-49674=45.055769,-85.578277
-49675=44.384188,-86.225384
-49676=44.825304,-85.288336
-49677=43.894733,-85.552563
-49679=43.875013,-85.145788
-49680=44.646003,-85.262702
-49682=44.978664,-85.627013
-49683=44.540521,-85.926894
-49684=44.762335,-85.703568
-49686=44.713682,-85.557845
-49688=44.117006,-85.450376
-49689=44.213228,-85.902445
-49690=44.788567,-85.399581
-49701=45.772645,-84.738786
-49705=45.355095,-84.460991
-49706=45.438349,-84.779360
-49707=45.094306,-83.476214
-49709=45.018684,-84.144487
-49710=46.276096,-84.176734
-49712=45.209259,-85.009296
-49713=45.210934,-84.842294
-49715=46.397420,-84.708184
-49716=45.517286,-84.748136
-49717=45.434968,-84.691217
-49718=45.734622,-84.861522
-49719=46.005621,-84.324829
-49720=45.280508,-85.245172
-49721=45.582257,-84.460476
-49722=45.427456,-84.862324
-49724=46.327640,-84.390112
-49725=45.978483,-84.020784
-49726=46.003738,-83.615219
-49727=45.125273,-85.105817
-49728=46.411594,-85.028468
-49729=45.166897,-85.292072
-49730=45.044034,-84.867529
-49733=44.806466,-84.696639
-49735=44.997939,-84.670317
-49736=46.082887,-84.075180
-49738=44.698328,-84.609421
-49740=45.524807,-85.008345
-49743=45.266958,-83.893364
-49744=44.993123,-83.657097
-49745=46.039790,-84.522382
-49746=45.062994,-83.951021
-49747=44.849651,-83.653140
-49748=46.374911,-85.212879
-49749=45.425743,-84.567774
-49751=44.982838,-84.430167
-49752=46.254145,-84.434511
-49753=45.017318,-83.777038
-49755=45.634591,-84.801026
-49756=44.822189,-84.282568
-49757=45.856211,-84.621440
-49759=45.417476,-84.096086
-49760=46.040550,-84.902479
-49762=46.106064,-85.336135
-49764=45.424174,-84.827403
-49765=45.328392,-84.242520
-49766=44.908297,-83.432043
-49768=46.654828,-85.117026
-49769=45.570770,-84.861835
-49770=45.331217,-84.897137
-49774=46.162451,-84.315258
-49775=45.770761,-84.477937
-49776=45.232202,-83.680373
-49777=45.305530,-83.507135
-49779=45.407692,-83.863353
-49780=46.213060,-84.728545
-49781=45.884283,-84.797447
-49782=45.674252,-85.542708
-49783=46.416901,-84.289054
-49788=46.265348,-84.465049
-49791=45.486753,-84.595768
-49793=46.202824,-85.063400
-49795=45.160679,-84.579688
-49796=45.262557,-84.959158
-49799=45.262245,-84.580365
-49801=45.960954,-87.976613
-49802=45.801060,-88.077894
-49805=47.367297,-88.351332
-49806=46.452414,-86.901161
-49807=45.773088,-87.343588
-49808=46.823114,-87.852670
-49812=45.591632,-87.503120
-49814=46.565613,-87.905613
-49815=46.185396,-87.964240
-49816=46.285383,-86.895309
-49817=45.961986,-86.458306
-49818=45.950770,-87.338459
-49819=46.108909,-87.456296
-49820=46.190093,-85.654181
-49821=45.529658,-87.631007
-49822=46.433521,-87.024586
-49825=46.346884,-86.994898
-49826=46.323306,-87.052838
-49827=46.177009,-85.560604
-49829=45.765202,-87.131724
-49831=46.012823,-87.866119
-49833=46.292626,-87.327611
-49834=45.945664,-87.768387
-49835=45.735775,-86.562598
-49836=46.201987,-85.903336
-49837=45.868675,-87.079134
-49838=46.031864,-85.737404
-49839=46.618009,-86.108426
-49840=46.103036,-86.010544
-49841=46.275179,-87.465733
-49847=45.704676,-87.636201
-49848=45.378247,-87.636417
-49849=46.432711,-87.756405
-49852=45.786249,-87.816777
-49853=46.368293,-85.750902
-49854=46.061609,-86.304483
-49855=46.578823,-87.455319
-49858=45.219025,-87.578451
-49861=46.481614,-88.243343
-49862=46.394508,-86.695774
-49863=45.613385,-87.551575
-49864=45.871476,-86.672584
-49866=46.521482,-87.580782
-49868=46.510988,-85.517552
-49870=45.867201,-87.878923
-49871=46.425061,-87.552178
-49872=46.021064,-87.084351
-49873=45.890463,-87.578753
-49874=45.714924,-87.473942
-49876=45.802690,-87.982830
-49877=46.148036,-87.705499
-49878=45.945698,-86.860412
-49879=46.358718,-88.038808
-49880=46.110988,-87.222361
-49881=46.073220,-88.047262
-49883=46.431726,-86.000888
-49884=46.419898,-86.329645
-49885=46.338050,-87.198320
-49886=45.739188,-87.527012
-49887=45.429340,-87.550635
-49891=46.241277,-87.022529
-49892=45.818070,-87.785817
-49893=45.297038,-87.605155
-49894=45.786301,-87.075504
-49895=46.165312,-86.665885
-49896=45.677575,-87.389319
-49901=47.307745,-88.395376
-49902=46.043004,-88.379881
-49903=46.332624,-88.445286
-49905=47.121853,-88.722062
-49908=46.768216,-88.557216
-49910=46.613364,-89.608438
-49911=46.489337,-90.050760
-49912=46.496716,-89.194224
-49913=47.243192,-88.458488
-49915=46.065123,-88.622018
-49916=46.984094,-88.586325
-49917=47.281359,-88.359132
-49918=47.435192,-87.851282
-49919=46.471628,-88.441956
-49920=46.138161,-88.302250
-49921=47.092564,-88.582649
-49922=47.100549,-88.483088
-49925=46.544419,-89.374684
-49927=46.030666,-88.535015
-49929=46.781097,-89.149533
-49930=47.165480,-88.539664
-49931=47.084375,-88.572787
-49934=47.178117,-88.437985
-49935=46.175587,-88.752156
-49938=46.584294,-90.131942
-49942=47.275174,-88.401792
-49945=47.180029,-88.314119
-49946=46.720894,-88.321592
-49947=46.385417,-89.616356
-49948=46.711175,-89.020015
-49950=47.386333,-88.133704
-49952=46.701362,-88.784945
-49953=46.803804,-89.371849
-49955=47.006575,-88.694612
-49958=46.828387,-88.668431
-49959=46.470636,-89.998383
-49960=46.711853,-89.258371
-49961=46.529390,-88.731554
-49962=46.839281,-88.131113
-49963=47.041467,-88.689132
-49965=46.955096,-88.859543
-49967=46.506508,-88.966362
-49968=46.490267,-89.887207
-49969=46.251655,-89.210723
-49970=46.547419,-88.600365
-49971=46.709240,-89.705285
-50001=41.362724,-93.433418
-50002=41.514778,-94.648341
-50003=41.611504,-94.043026
-50005=42.131988,-93.034602
-50006=42.508362,-93.401924
-50007=41.806825,-93.602007
-50008=40.679672,-93.380265
-50009=41.644957,-93.459330
-50010=42.030852,-93.588400
-50011=42.024034,-93.636451
-50012=42.026751,-93.645873
-50014=42.046297,-93.694448
-50020=41.438416,-94.747041
-50021=41.724267,-93.565320
-50022=41.414374,-94.996402
-50023=41.730271,-93.634978
-50025=41.757959,-94.923571
-50026=41.858516,-94.449580
-50027=41.482026,-92.469368
-50028=41.806910,-93.154284
-50029=41.828956,-94.555933
-50032=41.666521,-93.542387
-50033=41.363038,-93.792843
-50034=42.521662,-93.661406
-50035=41.723928,-93.458071
-50036=42.085554,-93.864204
-50038=41.525073,-93.903282
-50039=41.814205,-93.996778
-50041=42.638454,-93.248148
-50042=41.533745,-94.905323
-50044=41.202081,-92.882789
-50046=41.893405,-93.523012
-50047=41.463639,-93.474280
-50048=41.512457,-94.520058
-50049=41.034517,-93.295407
-50050=42.158973,-94.503593
-50051=42.135392,-93.141399
-50052=40.643260,-93.444379
-50054=41.690374,-93.233338
-50055=41.878681,-93.296135
-50056=42.013198,-93.296527
-50057=41.179914,-93.134256
-50058=41.855710,-94.690994
-50060=40.751408,-93.318860
-50061=41.485929,-93.784889
-50062=41.235597,-93.245092
-50063=41.695549,-93.940678
-50064=42.107729,-94.236630
-50065=40.613858,-93.781727
-50066=41.798081,-94.233396
-50067=40.717682,-93.861649
-50068=40.948073,-93.466254
-50069=41.520712,-94.030250
-50070=41.445537,-94.232632
-50071=42.648620,-93.504898
-50072=41.471219,-94.122983
-50073=41.793831,-93.525213
-50074=40.865931,-94.080133
-50075=42.332139,-93.550631
-50076=41.592177,-94.841945
-50078=41.938580,-92.863031
-50101=42.667352,-93.634644
-50102=42.245542,-93.400194
-50103=40.795120,-93.609144
-50104=41.486799,-92.386662
-50105=42.110285,-93.637284
-50106=41.881076,-92.805779
-50107=42.036533,-94.219069
-50108=40.825700,-93.952664
-50109=41.770880,-93.800631
-50111=41.700917,-93.803929
-50112=41.730188,-92.715452
-50115=41.683240,-94.561556
-50116=41.179772,-92.973610
-50117=41.669871,-94.849235
-50118=41.466968,-93.378981
-50119=41.313093,-92.939687
-50120=41.933734,-92.982857
-50122=42.305362,-93.311807
-50123=40.833825,-93.513815
-50124=41.885672,-93.604073
-50125=41.335185,-93.584634
-50126=42.494379,-93.255400
-50127=41.777140,-93.205809
-50128=41.855589,-94.300236
-50129=42.014771,-94.376743
-50130=42.303387,-93.669264
-50131=41.692120,-93.715156
-50132=42.391673,-93.691531
-50133=40.713322,-94.068993
-50134=41.939484,-93.671998
-50135=41.750582,-92.887174
-50136=41.469501,-92.292764
-50138=41.300589,-93.105185
-50139=41.198463,-93.369878
-50140=40.645520,-93.986274
-50141=41.867559,-92.949711
-50142=42.006616,-92.775596
-50143=41.341836,-92.804656
-50144=40.739050,-93.740800
-50146=41.684117,-94.243044
-50147=40.631338,-93.551745
-50148=42.181305,-92.992825
-50149=41.150466,-94.070997
-50150=41.125508,-92.975192
-50151=41.081907,-93.517790
-50153=41.573896,-92.807021
-50154=42.172261,-93.392780
-50155=41.211018,-94.199353
-50156=41.898310,-93.801235
-50157=41.739767,-92.563011
-50158=42.049806,-92.900739
-50160=41.373789,-93.738489
-50161=41.848150,-93.404030
-50162=41.928297,-93.072173
-50163=41.222388,-93.241035
-50164=41.499824,-94.425097
-50165=40.843661,-93.283695
-50166=41.282712,-93.430749
-50167=41.742883,-94.041048
-50168=41.788361,-93.278546
-50169=41.655266,-93.352320
-50170=41.530027,-93.124762
-50171=41.585852,-92.525413
-50173=41.964659,-92.713485
-50174=41.033707,-93.982304
-50201=42.041723,-93.434905
-50206=42.245675,-93.202318
-50207=41.431966,-92.637540
-50208=41.711721,-93.033958
-50210=41.195043,-93.698287
-50211=41.455311,-93.705269
-50212=42.036562,-94.066162
-50213=41.031685,-93.766137
-50214=41.469923,-93.056066
-50216=41.697097,-94.354821
-50217=42.183763,-94.251811
-50218=41.348354,-93.880399
-50219=41.420905,-92.896537
-50220=41.836423,-94.121285
-50222=41.215845,-93.959608
-50223=42.173715,-94.037830
-50225=41.384401,-93.268859
-50226=41.796243,-93.701973
-50227=42.597441,-93.427851
-50228=41.576968,-93.241960
-50229=41.379081,-93.775073
-50230=42.303248,-93.453417
-50231=42.237123,-93.602632
-50232=41.556725,-92.969720
-50233=41.612883,-94.211370
-50234=41.893096,-93.181982
-50235=41.931777,-94.224981
-50236=42.178394,-93.490398
-50237=41.533906,-93.368536
-50238=40.964291,-93.167151
-50239=42.142843,-93.202958
-50240=41.297090,-93.792788
-50242=41.561039,-92.693756
-50243=41.872429,-93.696442
-50244=41.857528,-93.652619
-50246=42.274579,-93.786125
-50247=42.017436,-93.164603
-50248=42.191221,-93.614392
-50249=42.275304,-93.903081
-50250=41.482226,-94.347153
-50251=41.566940,-92.869363
-50252=41.466282,-93.303447
-50254=40.991483,-94.075527
-50255=41.455895,-92.332273
-50256=41.259706,-92.905272
-50257=41.189507,-93.847230
-50258=42.224136,-93.073131
-50261=41.475063,-93.915872
-50262=40.860632,-93.808561
-50263=41.593171,-93.874712
-50264=40.905654,-93.697536
-50265=41.553084,-93.744782
-50266=41.570085,-93.798416
-50268=41.404406,-92.362787
-50271=42.482752,-93.541442
-50272=41.095928,-93.255936
-50273=41.329691,-94.054307
-50274=41.383348,-94.860975
-50275=41.037536,-93.589602
-50276=41.862012,-93.926489
-50277=41.784551,-94.357719
-50278=42.136759,-93.299533
-50309=41.584603,-93.620836
-50310=41.627582,-93.672660
-50311=41.601037,-93.672894
-50312=41.582678,-93.676670
-50313=41.654477,-93.624180
-50314=41.604964,-93.631200
-50315=41.545918,-93.622124
-50316=41.608629,-93.599579
-50317=41.617463,-93.546621
-50319=41.590912,-93.604288
-50320=41.527942,-93.567967
-50321=41.535138,-93.665248
-50322=41.634164,-93.734360
-50323=41.625632,-93.793650
-50324=41.604409,-93.712848
-50325=41.613243,-93.797871
-50327=41.586364,-93.487814
-50401=43.153169,-93.199820
-50420=42.804156,-93.460421
-50421=42.843465,-93.618404
-50423=43.118224,-93.814465
-50424=43.394430,-93.933846
-50426=43.415481,-93.017133
-50428=43.136933,-93.397107
-50430=42.981564,-93.953966
-50431=42.737113,-93.368223
-50432=43.223915,-93.797954
-50433=42.923242,-93.050183
-50434=43.257488,-93.448583
-50435=43.158039,-92.767049
-50436=43.266457,-93.671070
-50438=43.111502,-93.618624
-50439=42.944717,-93.626339
-50440=43.333341,-93.071258
-50441=42.741340,-93.220973
-50444=43.297226,-93.383630
-50446=43.340739,-93.446907
-50447=42.925400,-93.797708
-50448=43.349938,-93.240534
-50449=43.002487,-93.566898
-50450=43.421179,-93.522397
-50451=43.381234,-94.077615
-50452=42.781099,-93.367352
-50453=43.363364,-93.647420
-50454=43.381889,-92.737275
-50455=43.456954,-92.649842
-50456=43.291262,-93.216049
-50457=42.916337,-93.493608
-50458=43.158733,-93.012018
-50459=43.457425,-93.250439
-50460=43.227851,-92.688793
-50461=43.306168,-92.818741
-50464=43.253400,-93.080785
-50465=43.486550,-93.912229
-50466=43.386853,-92.538439
-50467=43.211730,-93.086636
-50468=43.032213,-92.947124
-50469=42.999327,-93.197099
-50470=42.745780,-93.560406
-50471=43.166568,-92.876407
-50472=43.406746,-92.935316
-50473=43.465560,-93.687784
-50475=42.881745,-93.218302
-50476=43.446805,-92.764051
-50477=42.989247,-93.327093
-50478=43.407488,-93.783601
-50479=42.939404,-93.409874
-50480=43.250367,-94.058607
-50482=43.113101,-93.486404
-50483=43.112564,-94.000915
-50484=43.230771,-93.915585
-50501=42.492334,-94.192499
-50510=42.759296,-94.985603
-50511=43.074041,-94.219184
-50514=43.415156,-94.472410
-50515=43.022217,-94.863371
-50516=42.623922,-94.136835
-50517=43.305294,-94.234287
-50518=42.514912,-94.386021
-50519=42.901704,-94.262889
-50520=42.809190,-94.397929
-50521=42.346223,-94.102821
-50522=43.192019,-94.194683
-50523=42.367994,-94.295734
-50524=42.616853,-94.353838
-50525=42.736497,-93.747437
-50527=42.964990,-94.785417
-50528=43.133889,-94.540831
-50529=42.719757,-94.196169
-50530=42.270278,-94.039589
-50531=43.454085,-94.609753
-50532=42.460118,-94.000869
-50533=42.651928,-93.911823
-50535=42.453186,-95.162489
-50536=43.118262,-94.705481
-50538=42.274049,-94.439703
-50539=43.236961,-94.419983
-50540=42.598351,-94.839981
-50541=42.710228,-94.452387
-50542=42.782976,-93.942692
-50543=42.274696,-94.304640
-50544=42.250727,-94.170545
-50545=42.797396,-94.080863
-50546=42.837690,-94.702202
-50548=42.714769,-94.225325
-50551=42.479577,-94.751117
-50554=42.845984,-94.842690
-50556=43.455220,-94.196646
-50557=42.360802,-94.043735
-50558=42.861277,-94.163770
-50559=43.208819,-94.329243
-50560=42.960487,-94.107825
-50561=42.425099,-94.850501
-50562=42.961532,-94.641788
-50563=42.527824,-94.525043
-50565=42.857398,-95.000842
-50566=42.437770,-94.323652
-50567=42.525449,-95.101883
-50568=42.626050,-94.984009
-50569=42.403206,-94.134237
-50570=42.896101,-94.373020
-50571=42.630964,-94.578693
-50573=42.876758,-94.623824
-50574=42.716670,-94.698650
-50575=42.560344,-94.700491
-50576=42.803272,-95.175275
-50577=42.858665,-93.977004
-50578=43.306502,-94.549559
-50579=42.394310,-94.638758
-50581=42.842996,-94.549778
-50582=42.793838,-94.295665
-50583=42.432718,-94.985692
-50585=42.917530,-95.141865
-50586=42.411860,-94.425560
-50588=42.654596,-95.161555
-50590=43.407052,-94.314883
-50591=42.676032,-94.055674
-50593=42.657197,-94.898808
-50594=42.585196,-94.040129
-50595=42.461417,-93.822578
-50597=42.975250,-94.451731
-50598=43.081849,-94.417046
-50599=42.579322,-93.823217
-50601=42.567768,-93.060058
-50602=42.741405,-92.805745
-50603=43.187727,-92.459489
-50604=42.601831,-92.896477
-50605=42.831759,-93.020977
-50606=42.747316,-91.691307
-50607=42.610550,-91.749864
-50609=42.228377,-92.809466
-50611=42.815489,-92.908954
-50612=42.283447,-92.386045
-50613=42.531380,-92.485808
-50616=43.080601,-92.658742
-50619=42.809681,-92.658224
-50620=43.158425,-92.590545
-50621=42.251109,-92.921016
-50622=42.672712,-92.335907
-50624=42.467823,-92.658716
-50625=42.748385,-92.988356
-50626=42.587047,-92.175533
-50627=42.350393,-93.093896
-50628=43.272710,-92.394046
-50629=42.648669,-92.071537
-50630=42.957680,-92.213959
-50632=42.061600,-92.699352
-50633=42.671799,-93.128182
-50634=42.418675,-92.214000
-50635=42.202061,-92.699322
-50636=42.897382,-92.810733
-50638=42.356740,-92.793956
-50641=42.606550,-91.920033
-50642=42.439697,-92.816454
-50643=42.357927,-92.464199
-50644=42.476151,-91.893691
-50645=43.019546,-92.443649
-50647=42.651021,-92.497168
-50648=42.453205,-92.093230
-50650=42.618248,-91.656040
-50651=42.317063,-92.196740
-50652=42.264292,-92.693760
-50653=42.968595,-92.885717
-50654=42.498698,-91.642830
-50655=42.765580,-91.891692
-50658=42.962781,-92.542513
-50659=43.095838,-92.329051
-50660=42.583567,-92.631544
-50662=42.688662,-91.937486
-50664=42.701249,-92.076193
-50665=42.580363,-92.771879
-50666=42.870965,-92.520109
-50667=42.470226,-92.226420
-50668=42.692945,-92.228866
-50669=42.343165,-92.602298
-50670=42.695374,-92.618753
-50671=42.650429,-91.795819
-50672=42.426040,-93.071556
-50673=42.524945,-92.711273
-50674=42.837805,-92.115430
-50675=42.197820,-92.512092
-50676=42.798899,-92.280180
-50677=42.766935,-92.426212
-50680=42.452094,-92.923033
-50681=42.777619,-92.009382
-50682=42.452450,-91.688455
-50701=42.418259,-92.339821
-50702=42.461479,-92.313749
-50703=42.548059,-92.286431
-50707=42.458164,-92.260032
-50801=41.078671,-94.401822
-50830=41.027101,-94.191097
-50833=40.670545,-94.700888
-50835=40.706299,-94.375485
-50836=40.632285,-94.497484
-50837=41.219823,-94.691439
-50839=41.049661,-94.824003
-50840=40.781959,-94.480948
-50841=41.009072,-94.768812
-50842=41.039887,-94.461833
-50843=41.236842,-94.885233
-50845=40.821491,-94.349675
-50846=41.308993,-94.576117
-50847=41.140269,-94.982970
-50848=40.780922,-94.764274
-50849=41.308278,-94.386570
-50851=40.908584,-94.537032
-50853=41.236843,-94.767896
-50854=40.679375,-94.212770
-50857=40.942592,-94.880965
-50858=41.221263,-94.409669
-50859=41.067099,-94.597342
-50860=40.617459,-94.347944
-50861=40.908431,-94.255922
-50862=40.811094,-94.657541
-50863=40.847781,-94.175734
-50864=40.970370,-94.978111
-51001=42.829942,-96.527233
-51002=42.688436,-95.319027
-51003=42.989594,-95.985959
-51004=42.374863,-95.915342
-51005=42.723603,-95.418791
-51006=42.320792,-95.619612
-51007=42.403949,-96.187064
-51008=42.810891,-96.266831
-51009=42.944357,-95.551533
-51010=42.086146,-95.909504
-51011=42.916316,-96.514451
-51012=42.744137,-95.561849
-51014=42.787640,-95.707313
-51016=42.471834,-95.805254
-51018=42.449661,-95.680771
-51019=42.274026,-95.738837
-51020=42.510109,-95.413547
-51022=42.976982,-95.850025
-51023=43.018658,-96.460404
-51024=42.612142,-96.262983
-51025=42.497646,-95.556107
-51026=42.255339,-96.068143
-51027=42.960313,-96.322232
-51028=42.596655,-95.987640
-51029=42.880551,-95.537847
-51030=42.497741,-96.188321
-51031=42.798547,-96.186217
-51033=42.912628,-95.251445
-51034=42.160754,-95.789620
-51035=42.778851,-95.799368
-51036=42.969720,-96.189483
-51037=42.826671,-95.643137
-51038=42.703191,-96.316957
-51039=42.449218,-96.049560
-51040=42.036236,-96.087049
-51041=43.026080,-96.077893
-51044=42.306211,-95.918126
-51046=42.961834,-95.678020
-51047=42.942362,-95.369540
-51048=42.550952,-95.841310
-51049=42.629125,-95.647492
-51050=42.793616,-95.945925
-51051=42.206091,-95.964960
-51052=42.308234,-96.265987
-51053=42.495057,-95.286548
-51054=42.380126,-96.316111
-51055=42.221916,-96.261066
-51056=42.241293,-95.956396
-51058=42.973945,-95.467315
-51060=42.042383,-95.684393
-51061=42.580726,-95.718471
-51062=42.697865,-96.534926
-51063=42.139159,-96.168318
-51101=42.493688,-96.394184
-51103=42.517086,-96.439937
-51104=42.536156,-96.404680
-51105=42.511940,-96.352258
-51106=42.462983,-96.321502
-51108=42.566047,-96.352603
-51109=42.580148,-96.474472
-51111=42.418500,-96.393103
-51201=43.177816,-95.866098
-51230=43.360330,-96.323632
-51231=43.103129,-95.742199
-51232=43.308625,-95.812663
-51234=43.192205,-96.019335
-51235=43.294539,-96.218369
-51237=43.336066,-96.000764
-51238=43.074388,-95.892427
-51239=43.203917,-96.147481
-51240=43.309361,-96.458419
-51241=43.451232,-96.461750
-51242=43.441109,-96.334849
-51243=43.439740,-95.910459
-51244=43.244772,-95.935555
-51245=43.074701,-95.599948
-51246=43.427963,-96.168032
-51247=43.193752,-96.338127
-51248=43.205540,-95.657879
-51249=43.411232,-95.726614
-51250=43.090933,-96.205811
-51301=43.153170,-95.147654
-51331=43.361009,-95.127454
-51333=43.129470,-94.997200
-51334=43.404109,-94.805056
-51338=43.205366,-95.318750
-51341=43.014277,-95.038748
-51342=43.247877,-94.736880
-51343=43.018510,-95.106025
-51345=43.407697,-95.437473
-51346=43.180463,-95.459451
-51347=43.422425,-95.318451
-51350=43.310963,-95.600833
-51351=43.315064,-95.183646
-51354=43.410626,-95.540813
-51355=43.389404,-95.136153
-51357=43.060774,-95.280618
-51358=43.131532,-94.899551
-51360=43.443563,-95.087030
-51363=43.433689,-94.946743
-51364=43.299552,-94.965445
-51365=43.305173,-94.732527
-51366=42.960703,-95.002954
-51401=42.065661,-94.869660
-51430=42.082258,-95.024722
-51431=42.344843,-95.351693
-51433=42.266641,-94.875334
-51436=42.189157,-95.024273
-51439=42.088789,-95.590386
-51440=41.913329,-94.812977
-51441=42.113305,-95.315427
-51442=42.027498,-95.360635
-51443=42.081884,-94.696842
-51444=42.004839,-94.973118
-51445=42.321415,-95.462213
-51446=41.775094,-95.191827
-51447=41.722094,-95.195981
-51448=42.205359,-95.309789
-51449=42.267823,-94.734406
-51450=42.316397,-95.020737
-51451=42.184080,-94.695158
-51453=42.269723,-94.547338
-51454=41.871279,-95.202731
-51455=41.911565,-95.055142
-51458=42.326374,-95.235307
-51459=42.045221,-94.637957
-51461=42.176055,-95.485360
-51462=42.014377,-94.556522
-51463=41.907466,-94.912733
-51465=42.086886,-95.200725
-51466=42.257168,-95.106732
-51467=42.072660,-95.117995
-51501=41.227277,-95.878439
-51503=41.223220,-95.784481
-51510=41.288533,-95.916872
-51520=41.969542,-95.461430
-51521=41.485499,-95.344680
-51523=41.915211,-96.067710
-51525=41.233770,-95.416372
-51526=41.373890,-95.871784
-51527=41.839897,-95.336506
-51528=41.909086,-95.501099
-51529=41.860476,-95.643463
-51530=41.787452,-95.430485
-51531=41.588685,-95.087216
-51532=41.137981,-95.109116
-51533=41.039454,-95.378172
-51534=41.046593,-95.714836
-51535=41.226455,-95.126689
-51536=41.386619,-95.362195
-51537=41.650131,-95.297511
-51540=41.024264,-95.498872
-51541=41.139051,-95.415922
-51542=41.431517,-95.849085
-51543=41.656752,-95.075931
-51544=41.306434,-95.114074
-51545=41.844600,-96.030365
-51546=41.637077,-95.766074
-51548=41.317852,-95.636978
-51549=41.185830,-95.466707
-51550=41.692141,-95.874194
-51551=40.990820,-95.587501
-51552=41.490756,-95.113519
-51553=41.424450,-95.546160
-51554=41.147388,-95.681849
-51555=41.560102,-95.923061
-51556=41.641709,-96.029262
-51557=41.731738,-95.997557
-51558=41.901690,-95.870563
-51559=41.466330,-95.648897
-51560=41.315294,-95.399855
-51561=41.007890,-95.806190
-51562=41.725074,-95.493320
-51563=41.570675,-95.585585
-51564=41.809589,-95.922824
-51565=41.642949,-95.524429
-51566=41.016459,-95.230901
-51570=41.527719,-95.465469
-51571=41.136915,-95.606141
-51572=41.993144,-95.784281
-51573=40.979559,-95.097052
-51575=41.240054,-95.602157
-51576=41.382876,-95.714924
-51577=41.463613,-95.203768
-51578=41.719356,-95.394557
-51579=41.761735,-95.719133
-51601=40.726129,-95.349564
-51630=40.601019,-95.191336
-51631=40.591418,-95.009999
-51632=40.745690,-95.047167
-51636=40.667282,-95.232559
-51637=40.624860,-95.115683
-51638=40.836198,-95.279939
-51639=40.720122,-95.466403
-51640=40.623488,-95.656223
-51645=40.881893,-95.432524
-51646=40.747685,-94.874449
-51647=40.608873,-95.319718
-51648=40.739475,-95.800397
-51649=40.850406,-95.527041
-51650=40.666385,-95.542483
-51652=40.772515,-95.623138
-51653=40.878427,-95.682330
-51654=40.834885,-95.781549
-51656=40.734708,-95.156343
-52001=42.545527,-90.695841
-52002=42.524764,-90.773220
-52003=42.430701,-90.669682
-52030=42.153216,-90.591931
-52031=42.252564,-90.486421
-52032=42.289646,-90.839534
-52033=42.279038,-91.001257
-52035=42.670738,-91.181213
-52037=41.967240,-90.633754
-52038=42.586686,-91.561477
-52039=42.539168,-90.860967
-52040=42.503666,-91.141684
-52041=42.505553,-91.261385
-52042=42.698093,-91.357515
-52043=42.834020,-91.426319
-52044=42.769019,-91.323506
-52045=42.460825,-90.937541
-52046=42.438363,-91.013117
-52047=42.969264,-91.341820
-52048=42.742126,-91.257204
-52049=42.885565,-91.199378
-52050=42.604314,-91.329900
-52052=42.742443,-91.116701
-52053=42.611150,-90.961050
-52054=42.305673,-90.627264
-52057=42.489481,-91.455885
-52060=42.106020,-90.682756
-52064=42.093574,-90.310826
-52065=42.593678,-91.108655
-52066=42.678326,-90.951844
-52068=42.422865,-90.817176
-52069=42.063596,-90.442323
-52070=42.078979,-90.236813
-52072=42.922014,-91.377806
-52073=42.618870,-90.821580
-52074=42.111639,-90.465023
-52076=42.699820,-91.510150
-52077=42.820999,-91.562518
-52078=42.395826,-91.115713
-52079=42.285554,-90.716248
-52101=43.353610,-91.766050
-52132=43.211156,-91.928146
-52133=43.109716,-91.661290
-52134=43.469554,-92.411225
-52135=43.015824,-91.663225
-52136=43.374077,-92.111673
-52140=43.445644,-91.534572
-52141=42.931147,-91.640926
-52142=42.824817,-91.796851
-52144=43.139152,-91.962362
-52146=43.175923,-91.206021
-52147=42.957479,-91.958474
-52151=43.346405,-91.264794
-52154=43.118625,-92.166877
-52155=43.421657,-92.288542
-52156=43.052512,-91.462345
-52157=43.021895,-91.240309
-52158=43.043969,-91.182403
-52159=43.078775,-91.365594
-52160=43.459653,-91.351712
-52161=43.129530,-91.757125
-52162=43.107578,-91.551579
-52163=43.219766,-92.103094
-52164=42.854706,-91.906611
-52165=43.309674,-91.994487
-52166=43.065843,-91.933290
-52168=43.205482,-91.952364
-52169=42.860729,-91.663085
-52170=43.223874,-91.305191
-52171=43.068229,-92.052943
-52172=43.270781,-91.484427
-52175=42.993945,-91.825624
-52201=41.329660,-91.547062
-52202=42.159359,-91.638281
-52203=41.813857,-91.891590
-52205=42.119724,-91.286273
-52206=41.991580,-91.885466
-52207=42.095059,-90.831678
-52208=41.876782,-92.256910
-52209=41.908989,-92.097513
-52210=42.334017,-91.992953
-52211=41.753890,-92.449753
-52212=42.108797,-91.090273
-52213=42.201852,-91.759632
-52214=42.187890,-91.509279
-52215=41.913527,-92.405288
-52216=41.886489,-91.039637
-52217=42.079987,-92.407882
-52218=42.290268,-91.533585
-52219=42.237735,-91.425836
-52220=41.728234,-91.998369
-52221=41.640929,-92.331699
-52222=41.576405,-92.340650
-52223=42.412580,-91.324368
-52224=42.165911,-92.299761
-52225=42.010822,-92.326845
-52227=41.894468,-91.568527
-52228=41.902290,-91.788702
-52229=42.144629,-92.169234
-52231=41.358831,-92.058629
-52232=41.804360,-92.335802
-52233=42.046770,-91.686869
-52235=41.578686,-91.531599
-52236=41.733573,-91.876568
-52237=42.344382,-91.248693
-52240=41.635728,-91.500622
-52241=41.699578,-91.595951
-52242=41.661880,-91.545940
-52245=41.672865,-91.512158
-52246=41.652313,-91.570407
-52247=41.518674,-91.723290
-52248=41.345772,-91.935346
-52249=42.014152,-92.205426
-52251=41.710291,-92.192601
-52253=41.895347,-91.353372
-52254=41.952101,-90.801178
-52255=41.863616,-90.961247
-52257=41.920953,-92.178222
-52301=41.788511,-92.082501
-52302=42.065358,-91.560548
-52305=42.019197,-91.339225
-52306=41.887089,-91.254211
-52307=41.793107,-91.898692
-52308=41.572284,-92.158723
-52309=42.131684,-90.888642
-52310=42.220372,-91.195364
-52312=42.006028,-91.245872
-52313=42.257377,-92.096977
-52314=41.935711,-91.447891
-52315=42.000913,-91.970072
-52316=41.545573,-92.094822
-52317=41.767125,-91.634505
-52318=41.889280,-91.892730
-52320=41.999150,-91.148391
-52321=42.147228,-90.983232
-52322=41.692718,-91.762785
-52323=41.983656,-90.959012
-52324=42.063907,-91.806141
-52325=41.583907,-91.925884
-52326=42.390661,-91.755826
-52327=41.477136,-91.582989
-52328=42.071601,-91.666091
-52329=42.358240,-91.855634
-52330=42.349445,-91.500496
-52332=42.098613,-91.888293
-52333=41.805879,-91.492386
-52334=41.740170,-91.941103
-52335=41.467961,-92.053796
-52336=42.070516,-91.432362
-52337=41.880203,-91.142058
-52338=41.817900,-91.707501
-52339=41.927944,-92.587091
-52340=41.705633,-91.676825
-52341=42.102851,-91.726175
-52342=42.057671,-92.547483
-52345=42.245556,-91.901472
-52346=42.010028,-92.080653
-52347=41.712540,-92.284493
-52348=41.990137,-92.381481
-52349=42.173246,-92.009630
-52351=41.877931,-91.831726
-52352=42.288221,-91.774837
-52353=41.299352,-91.711487
-52354=41.915981,-91.987759
-52355=41.460617,-92.191832
-52356=41.473717,-91.845147
-52358=41.691400,-91.318432
-52359=41.358506,-91.807482
-52361=41.649114,-92.029880
-52362=42.078991,-90.983415
-52401=41.975486,-91.659172
-52402=42.023172,-91.659613
-52403=41.965959,-91.566054
-52404=41.923056,-91.698866
-52405=41.983384,-91.746369
-52411=42.053802,-91.729225
-52501=41.035705,-92.431370
-52530=40.993430,-92.292791
-52531=41.026364,-92.815135
-52533=41.021230,-92.159365
-52534=41.271952,-92.681930
-52535=40.862944,-91.959572
-52536=40.957466,-92.608910
-52537=40.734988,-92.413618
-52540=41.156205,-91.821579
-52542=40.619850,-92.056237
-52543=41.201977,-92.512669
-52544=40.706642,-92.912272
-52548=41.085835,-92.532981
-52549=40.618642,-92.943113
-52550=41.310310,-92.355076
-52551=40.824773,-92.109395
-52552=40.827093,-92.548748
-52553=41.148432,-92.654929
-52554=40.925319,-92.227697
-52555=40.644326,-92.816175
-52556=41.024200,-91.927545
-52557=41.022148,-91.964773
-52560=40.854846,-92.249246
-52561=41.220285,-92.452262
-52563=41.168346,-92.281811
-52565=40.742079,-91.934492
-52566=41.147999,-92.502542
-52567=40.930193,-92.077955
-52569=40.983043,-93.045561
-52570=40.687411,-92.146225
-52571=40.882043,-92.840610
-52572=40.670490,-92.688437
-52573=40.627569,-91.928849
-52574=40.806698,-92.971787
-52576=41.215153,-92.109419
-52577=41.272983,-92.661641
-52580=41.105218,-92.090331
-52581=40.801220,-93.063949
-52583=40.793886,-93.148924
-52584=40.637670,-92.248193
-52585=41.193215,-91.981001
-52586=41.344968,-92.461377
-52588=40.865116,-92.170367
-52590=40.660221,-93.124967
-52591=41.316641,-92.191374
-52593=40.772293,-92.746226
-52594=40.835894,-92.650985
-52595=41.288630,-92.614973
-52601=40.856050,-91.129717
-52619=40.525346,-91.565024
-52620=40.697841,-91.797219
-52621=41.208542,-91.533756
-52623=40.863483,-91.335673
-52624=40.736419,-91.337723
-52625=40.660782,-91.574196
-52626=40.623515,-91.724296
-52627=40.681141,-91.357437
-52630=40.798743,-91.711455
-52632=40.431951,-91.444622
-52635=40.995562,-91.758587
-52637=41.017544,-91.145949
-52638=40.801453,-91.242327
-52639=40.532710,-91.460387
-52640=41.101237,-91.280466
-52641=40.994585,-91.585772
-52644=41.039995,-91.414980
-52645=40.912216,-91.404227
-52646=41.056576,-90.998123
-52647=41.135101,-91.544658
-52649=40.838567,-91.612149
-52650=40.951210,-91.152038
-52651=40.864144,-91.813729
-52653=41.163699,-91.157419
-52654=41.140702,-91.671739
-52655=40.847271,-91.213910
-52656=40.739814,-91.455500
-52657=40.767833,-91.518819
-52658=40.699404,-91.229654
-52659=41.129203,-91.441022
-52660=40.994596,-91.299370
-52701=41.981968,-90.249117
-52720=41.587724,-91.173386
-52721=41.756923,-90.959696
-52722=41.574300,-90.471526
-52726=41.496325,-90.780378
-52727=41.954788,-90.325940
-52728=41.453890,-90.742306
-52729=41.800183,-90.735691
-52730=41.775670,-90.335349
-52731=41.966975,-90.486426
-52732=41.891044,-90.253005
-52737=41.259277,-91.374611
-52738=41.273663,-91.378479
-52739=41.373418,-91.367480
-52742=41.838263,-90.519700
-52745=41.718602,-90.766483
-52746=41.716455,-90.670392
-52747=41.611037,-90.905677
-52748=41.665776,-90.554924
-52749=41.345630,-91.130747
-52750=41.937024,-90.397049
-52751=41.836435,-90.679785
-52752=41.274726,-91.191222
-52753=41.628548,-90.385928
-52754=41.349702,-91.227417
-52755=41.478372,-91.438039
-52756=41.729401,-90.539115
-52757=41.803854,-90.379055
-52758=41.745914,-90.439600
-52760=41.548655,-91.086807
-52761=41.439931,-91.064259
-52765=41.725473,-90.871502
-52766=41.467543,-91.295421
-52767=41.565852,-90.423456
-52768=41.700680,-90.386997
-52769=41.605804,-90.847235
-52772=41.755167,-91.143672
-52773=41.621540,-90.752760
-52774=41.906849,-90.595121
-52776=41.575263,-91.268626
-52777=41.854006,-90.856109
-52778=41.609579,-90.990208
-52801=41.521038,-90.574849
-52802=41.494514,-90.637187
-52803=41.538947,-90.555977
-52804=41.532458,-90.681249
-52806=41.589689,-90.625902
-52807=41.610682,-90.516851
-53001=43.607877,-88.055245
-53002=43.463948,-88.352067
-53003=43.206569,-88.509682
-53004=43.497835,-87.875646
-53005=43.062401,-88.098804
-53006=43.620098,-88.533555
-53007=43.108448,-88.072232
-53010=43.612528,-88.272017
-53011=43.659584,-88.091389
-53012=43.314732,-88.034639
-53013=43.565318,-87.846917
-53014=44.026076,-88.176312
-53015=43.907689,-87.785999
-53016=43.310240,-88.710130
-53017=43.201014,-88.251366
-53018=43.048165,-88.390515
-53019=43.697925,-88.321723
-53020=43.861777,-88.011415
-53021=43.494647,-88.009318
-53022=43.232179,-88.115800
-53023=43.780438,-88.106670
-53024=43.333530,-87.928563
-53027=43.317984,-88.372522
-53029=43.146603,-88.340998
-53031=43.639144,-87.915628
-53032=43.449585,-88.624792
-53033=43.234938,-88.253996
-53034=43.330168,-88.618784
-53035=43.390641,-88.546919
-53036=43.179661,-88.575045
-53037=43.312433,-88.163146
-53038=43.084329,-88.787652
-53039=43.369846,-88.713347
-53040=43.526965,-88.191027
-53042=43.956873,-87.972329
-53044=43.742514,-87.782195
-53045=43.058889,-88.152520
-53046=43.157247,-88.157895
-53047=43.257123,-88.630120
-53048=43.573790,-88.457156
-53049=43.886116,-88.288605
-53050=43.510549,-88.547354
-53051=43.159363,-88.121527
-53057=43.794652,-88.236790
-53058=43.112262,-88.411475
-53059=43.288567,-88.525136
-53061=43.945427,-88.120654
-53063=43.957651,-87.790583
-53065=43.679772,-88.571625
-53066=43.112853,-88.490036
-53069=43.110890,-88.435005
-53070=43.620430,-87.807118
-53072=43.081609,-88.270816
-53073=43.750854,-87.988185
-53074=43.419850,-87.884515
-53075=43.564515,-87.990969
-53076=43.268398,-88.207066
-53078=43.317703,-88.466213
-53079=43.813683,-88.180169
-53080=43.405793,-87.986330
-53081=43.710329,-87.733076
-53083=43.815995,-87.764488
-53085=43.732821,-87.855577
-53086=43.317652,-88.271254
-53088=44.070499,-88.300913
-53089=43.144615,-88.233772
-53090=43.462856,-88.188952
-53091=43.499624,-88.434562
-53092=43.214964,-87.951218
-53093=43.652874,-87.947950
-53094=43.143320,-88.723069
-53095=43.389630,-88.158004
-53097=43.242049,-88.009823
-53098=43.253742,-88.710584
-53103=42.881555,-88.212849
-53104=42.547457,-88.039280
-53105=42.663216,-88.280346
-53108=42.815000,-87.943306
-53110=42.950505,-87.860883
-53114=42.596990,-88.751804
-53115=42.656603,-88.668293
-53118=42.962493,-88.491540
-53119=42.892996,-88.485529
-53120=42.802750,-88.417464
-53121=42.719719,-88.534143
-53122=43.047520,-88.087029
-53125=42.550039,-88.554372
-53126=42.794482,-87.997744
-53128=42.528695,-88.334958
-53129=42.939993,-88.000857
-53130=42.941231,-88.049500
-53132=42.883879,-88.011548
-53137=43.007883,-88.669078
-53139=42.685512,-88.120797
-53140=42.622309,-87.828803
-53142=42.518443,-87.982635
-53143=42.561312,-87.829930
-53144=42.622122,-87.920178
-53146=42.973705,-88.155385
-53147=42.565922,-88.457346
-53149=42.878091,-88.342099
-53150=42.871356,-88.134320
-53151=42.974779,-88.098607
-53153=42.934471,-88.407089
-53154=42.878693,-87.898676
-53156=42.889865,-88.588838
-53158=42.524360,-87.885530
-53167=42.744549,-88.228216
-53168=42.575072,-88.135698
-53170=42.550836,-88.153803
-53172=42.911998,-87.859664
-53177=42.704212,-87.932874
-53178=43.029545,-88.596788
-53179=42.513801,-88.130588
-53181=42.512663,-88.243347
-53182=42.702391,-88.041279
-53183=43.005837,-88.370357
-53184=42.526240,-88.605447
-53185=42.798205,-88.194451
-53186=43.022155,-88.204676
-53188=43.022273,-88.292435
-53189=42.944059,-88.290980
-53190=42.807771,-88.736201
-53191=42.588193,-88.553354
-53192=42.502590,-88.184228
-53195=42.513993,-88.490181
-53202=43.049579,-87.892520
-53203=43.038097,-87.916734
-53204=43.018587,-87.926053
-53205=43.053460,-87.933805
-53206=43.075126,-87.933676
-53207=42.977392,-87.898851
-53208=43.047073,-87.967198
-53209=43.127780,-87.949473
-53210=43.068840,-87.973768
-53211=43.082414,-87.881444
-53212=43.073857,-87.908604
-53213=43.048803,-88.001516
-53214=43.020327,-88.012871
-53215=42.999273,-87.943018
-53216=43.086391,-87.976384
-53217=43.158204,-87.913225
-53218=43.113720,-87.992980
-53219=42.995181,-87.993688
-53220=42.965203,-87.991364
-53221=42.953909,-87.943306
-53222=43.083208,-88.036041
-53223=43.163455,-87.990496
-53224=43.163330,-88.039699
-53225=43.115154,-88.042944
-53226=43.048954,-88.042234
-53227=42.995814,-88.042017
-53228=42.969046,-88.043224
-53233=43.036919,-87.933827
-53235=42.973107,-87.867895
-53295=43.022478,-87.976072
-53402=42.795888,-87.816532
-53403=42.684188,-87.815533
-53404=42.754054,-87.811291
-53405=42.726918,-87.830175
-53406=42.734537,-87.864892
-53501=42.606210,-89.065499
-53502=42.730406,-89.438069
-53503=43.142976,-89.957507
-53504=42.703516,-89.860349
-53505=42.661074,-88.820897
-53506=43.164826,-90.286429
-53507=42.984308,-89.913883
-53508=42.866188,-89.575582
-53510=42.745356,-90.305238
-53511=42.553995,-89.094444
-53515=43.115023,-89.739283
-53516=42.796952,-89.873505
-53517=43.056983,-89.832329
-53518=43.240989,-90.595130
-53520=42.596822,-89.352736
-53521=42.838105,-89.400302
-53522=42.556909,-89.783490
-53523=42.984371,-89.028857
-53525=42.544537,-88.858656
-53526=42.974051,-90.343606
-53527=43.051357,-89.192257
-53528=43.118300,-89.638014
-53529=43.242578,-89.514652
-53530=42.693829,-90.105890
-53531=43.062216,-89.102393
-53532=43.250204,-89.326329
-53533=42.996737,-90.162179
-53534=42.860824,-89.093310
-53536=42.761233,-89.267862
-53537=42.672395,-89.210506
-53538=42.920046,-88.857150
-53540=43.229262,-90.284915
-53541=42.566140,-90.029362
-53543=43.057568,-90.345460
-53544=42.877560,-89.905663
-53545=42.738737,-89.040222
-53546=42.652244,-88.948166
-53548=42.682985,-89.124673
-53549=42.984505,-88.765614
-53550=42.552842,-89.493930
-53551=43.081815,-88.915650
-53553=42.907833,-90.302176
-53554=42.908663,-90.440680
-53555=43.320142,-89.555808
-53556=43.238115,-90.245515
-53557=43.338952,-88.797653
-53558=42.997170,-89.275479
-53559=43.165583,-89.081878
-53560=43.192255,-89.737666
-53561=43.394940,-89.638619
-53562=43.115976,-89.543636
-53563=42.804493,-88.915995
-53565=42.833363,-90.165771
-53566=42.607782,-89.649858
-53569=42.989029,-90.438953
-53570=42.731054,-89.619580
-53571=43.277997,-89.353226
-53572=42.961408,-89.733956
-53573=43.187505,-90.459136
-53574=42.816517,-89.650170
-53575=42.933063,-89.390551
-53576=42.625684,-89.233172
-53577=43.311608,-90.064349
-53578=43.327442,-89.775538
-53579=43.295981,-88.867735
-53580=42.859809,-90.378045
-53581=43.372460,-90.414095
-53582=43.018376,-89.978808
-53583=43.250531,-89.804480
-53585=42.529624,-88.715607
-53586=42.573089,-90.226681
-53587=42.580307,-89.904145
-53588=43.193739,-90.086262
-53589=42.924555,-89.212885
-53590=43.200235,-89.205195
-53593=42.985198,-89.579337
-53594=43.190831,-88.973798
-53597=43.183434,-89.457307
-53598=43.210294,-89.332532
-53599=42.647308,-89.857206
-53702=43.060926,-88.230636
-53703=43.079575,-89.378389
-53704=43.136269,-89.347319
-53705=43.074014,-89.460509
-53706=43.074271,-89.409300
-53711=43.010993,-89.411184
-53713=43.036054,-89.386887
-53714=43.100348,-89.311966
-53715=43.068490,-89.401708
-53716=43.065163,-89.313783
-53717=43.067686,-89.521056
-53718=43.094031,-89.278466
-53719=43.045313,-89.515378
-53726=43.069849,-89.422525
-53792=43.077533,-89.430660
-53801=42.924819,-91.074574
-53802=42.805790,-90.888563
-53803=42.559514,-90.353641
-53804=42.874928,-90.907869
-53805=43.143298,-90.686927
-53806=42.729852,-90.919845
-53807=42.616835,-90.472701
-53808=42.626310,-90.593132
-53809=42.993767,-90.633652
-53810=42.820785,-91.001945
-53811=42.537952,-90.506798
-53813=42.844234,-90.721223
-53816=42.978845,-90.854380
-53817=42.945082,-90.967680
-53818=42.745700,-90.492321
-53820=42.699772,-90.701468
-53821=43.049076,-91.057334
-53825=42.918230,-90.590628
-53826=43.113726,-90.924755
-53827=43.045865,-90.820473
-53901=43.560940,-89.483125
-53910=43.886723,-89.807759
-53911=43.325821,-89.367495
-53913=43.492840,-89.728705
-53916=43.466797,-88.867753
-53919=43.733861,-88.776015
-53920=43.666202,-89.595158
-53922=43.520930,-88.715147
-53923=43.574139,-89.138363
-53924=43.483411,-90.261729
-53925=43.326711,-89.057123
-53926=43.666882,-89.222839
-53928=43.427083,-89.156609
-53929=43.751417,-90.283608
-53930=43.691693,-89.486834
-53931=43.743585,-88.861263
-53932=43.422362,-89.055328
-53933=43.584013,-88.875253
-53934=43.988277,-89.820217
-53935=43.587632,-89.065550
-53936=43.868893,-89.707306
-53937=43.386917,-90.145434
-53939=43.690429,-89.130646
-53941=43.570006,-90.161064
-53943=43.386819,-90.035254
-53944=43.685886,-89.928668
-53946=43.712453,-89.020812
-53947=43.746775,-89.139926
-53948=43.776559,-90.040249
-53949=43.783318,-89.336302
-53950=43.901142,-90.137808
-53951=43.387892,-89.876273
-53952=43.783202,-89.597367
-53953=43.772537,-89.468292
-53954=43.551488,-89.313888
-53955=43.406614,-89.416632
-53956=43.542123,-89.017224
-53959=43.533502,-89.999636
-53960=43.426124,-89.235381
-53961=43.457619,-89.927555
-53963=43.639467,-88.743298
-53964=43.912582,-89.512502
-53965=43.671422,-89.748134
-53968=43.646122,-90.227850
-53969=43.493230,-89.301804
-54001=45.334330,-92.386607
-54002=44.963016,-92.369527
-54003=44.794472,-92.445729
-54004=45.302220,-92.125177
-54005=45.236119,-92.227501
-54006=45.590697,-92.646689
-54007=45.190329,-92.352940
-54009=45.352521,-92.577819
-54010=44.734316,-92.465629
-54011=44.718295,-92.464636
-54013=45.082950,-92.228166
-54014=44.648721,-92.572748
-54015=44.971881,-92.465001
-54016=44.981117,-92.694860
-54017=45.120051,-92.519801
-54020=45.274846,-92.641761
-54021=44.734174,-92.706319
-54022=44.847472,-92.606877
-54023=44.981772,-92.554736
-54024=45.501700,-92.640733
-54025=45.143861,-92.680398
-54026=45.227595,-92.534605
-54027=44.919366,-92.192828
-54028=44.955033,-92.283616
-54082=45.068040,-92.749369
-54101=44.785785,-88.075082
-54102=45.501305,-87.976929
-54103=45.636739,-88.516348
-54104=45.448633,-88.283014
-54106=44.485462,-88.456588
-54107=44.701043,-88.455663
-54110=44.187689,-88.075127
-54111=44.812344,-88.380546
-54112=45.054734,-88.054619
-54113=44.261867,-88.309516
-54114=45.245414,-88.108864
-54115=44.397967,-88.096390
-54119=45.607459,-88.159732
-54120=45.803402,-88.569386
-54121=45.865638,-88.326971
-54123=44.210985,-88.142645
-54124=44.908023,-88.345233
-54125=45.579147,-88.401615
-54126=44.291905,-88.050723
-54127=44.796395,-88.269602
-54128=44.878776,-88.811090
-54129=44.131580,-88.194198
-54130=44.311313,-88.244310
-54135=44.927379,-88.607936
-54136=44.268219,-88.338535
-54137=44.756813,-88.255012
-54138=45.333606,-88.409689
-54139=44.956844,-88.075505
-54140=44.286515,-88.309229
-54141=44.728584,-87.998318
-54143=45.076169,-87.698833
-54149=45.196478,-88.462380
-54150=44.997641,-88.853758
-54151=45.725441,-87.988217
-54153=44.898083,-87.916035
-54154=44.873690,-88.182068
-54155=44.527495,-88.200548
-54156=45.628708,-88.024459
-54157=45.040575,-87.821437
-54159=45.193358,-87.838864
-54160=44.118481,-88.101704
-54161=45.122213,-88.162416
-54162=44.662540,-88.270904
-54165=44.516630,-88.322013
-54166=44.778797,-88.634549
-54169=44.176686,-88.280739
-54170=44.536096,-88.576930
-54171=44.715231,-88.096472
-54173=44.639281,-88.030636
-54174=45.036912,-88.424393
-54175=45.314602,-88.618326
-54177=45.396619,-87.893793
-54180=44.325728,-88.175795
-54201=44.624327,-87.495679
-54202=45.087307,-87.140063
-54204=44.755492,-87.605295
-54205=44.596202,-87.632423
-54207=44.087627,-87.989005
-54208=44.363565,-87.799595
-54209=45.017946,-87.270394
-54210=45.246247,-87.035915
-54211=45.160359,-87.166369
-54212=45.109775,-87.209029
-54213=44.695177,-87.528256
-54214=44.197537,-87.713043
-54216=44.438598,-87.569911
-54217=44.552207,-87.719966
-54220=44.101825,-87.722752
-54227=44.280838,-87.810822
-54228=44.268999,-87.652873
-54229=44.560061,-87.815517
-54230=44.159852,-87.915046
-54232=44.007088,-87.923943
-54234=45.181963,-87.101510
-54235=44.840884,-87.372795
-54241=44.215871,-87.594706
-54245=44.030924,-87.898061
-54246=45.373209,-86.899374
-54247=44.199973,-87.790095
-54301=44.480778,-88.016063
-54302=44.507653,-87.976828
-54303=44.538066,-88.048764
-54304=44.492790,-88.067301
-54307=44.470428,-88.036639
-54311=44.480461,-87.892165
-54313=44.583773,-88.115037
-54401=44.963304,-89.704051
-54403=45.018422,-89.525216
-54405=44.967530,-90.282268
-54406=44.412217,-89.304930
-54407=44.532182,-89.281795
-54408=45.025581,-89.323997
-54409=45.122200,-89.170828
-54410=44.542287,-90.030459
-54411=45.062560,-90.033418
-54412=44.663265,-89.974160
-54413=44.273243,-90.130097
-54414=44.959673,-89.176857
-54416=44.884118,-88.948420
-54417=45.026967,-89.653285
-54418=45.220630,-88.940257
-54420=44.610077,-90.350683
-54421=44.895191,-90.288689
-54422=44.985893,-90.457501
-54423=44.585282,-89.421676
-54424=45.286659,-89.192153
-54425=45.006838,-90.341197
-54426=44.907469,-90.009790
-54427=44.817219,-89.258344
-54428=45.421166,-89.135714
-54430=45.147626,-88.873267
-54433=45.202063,-90.791986
-54435=45.360466,-89.438199
-54436=44.534622,-90.427124
-54437=44.777208,-90.629136
-54440=44.811220,-89.383375
-54441=44.642520,-90.104884
-54442=45.358854,-89.658980
-54443=44.608922,-89.751725
-54446=44.747785,-90.466411
-54447=45.085986,-90.747239
-54448=44.933905,-89.831679
-54449=44.638430,-90.208401
-54450=45.004292,-89.040970
-54451=45.197390,-90.407651
-54452=45.217729,-89.793643
-54454=44.606715,-89.882882
-54455=44.766821,-89.684474
-54456=44.544396,-90.632781
-54457=44.214082,-89.900133
-54458=44.497209,-89.306325
-54459=45.412581,-90.237356
-54460=44.938751,-90.543261
-54462=45.392002,-89.007393
-54463=45.502530,-89.219035
-54465=45.383296,-88.891217
-54466=44.379773,-90.306505
-54467=44.413919,-89.538901
-54469=44.345145,-89.874045
-54470=45.286613,-90.141512
-54471=44.930719,-89.424316
-54473=44.650645,-89.352368
-54474=44.873714,-89.619750
-54475=44.484665,-89.793069
-54476=44.889960,-89.520725
-54479=44.750611,-90.331989
-54480=45.054310,-90.269289
-54481=44.510664,-89.638254
-54482=44.546890,-89.525593
-54484=44.799824,-90.078596
-54485=45.410997,-89.231170
-54486=44.717991,-89.045228
-54487=45.514195,-89.775405
-54488=44.840396,-90.333122
-54489=44.460777,-90.003987
-54490=45.343391,-90.392334
-54491=45.234365,-88.754355
-54493=44.696760,-90.810720
-54494=44.340837,-89.734920
-54495=44.378213,-89.964060
-54498=45.035112,-90.629022
-54499=44.789831,-89.176405
-54501=45.657611,-89.349282
-54511=45.737470,-88.823099
-54512=46.091151,-89.659025
-54513=45.578383,-90.141311
-54514=46.041777,-90.473291
-54515=45.512631,-90.491015
-54517=46.145917,-90.930676
-54519=46.050780,-89.263108
-54520=45.536731,-88.903792
-54521=45.936699,-89.291450
-54524=45.832548,-90.347035
-54525=46.423303,-90.219958
-54526=45.529271,-90.857180
-54527=46.125898,-90.685679
-54529=45.677711,-89.667165
-54530=45.533993,-90.741634
-54531=45.752824,-89.774651
-54534=46.347714,-90.228091
-54536=46.305770,-90.354628
-54537=45.528805,-90.603457
-54538=45.970064,-89.911919
-54539=45.813350,-89.562140
-54540=46.154791,-89.372738
-54541=45.556555,-88.619289
-54542=45.920297,-88.715510
-54545=46.136882,-89.830455
-54546=46.299672,-90.694721
-54547=46.211350,-90.106130
-54548=45.865998,-89.831729
-54550=46.361796,-90.276637
-54552=45.939245,-90.316610
-54554=46.047221,-89.067188
-54555=45.705551,-90.404624
-54556=45.535094,-90.297332
-54557=46.211775,-89.747843
-54558=45.925286,-89.499516
-54559=46.495208,-90.491230
-54560=46.036677,-89.552305
-54561=46.097549,-89.513390
-54562=45.802654,-89.079344
-54563=45.460162,-90.970548
-54564=45.604132,-89.961429
-54565=46.284828,-90.465513
-54566=45.420139,-88.601253
-54568=45.958050,-89.653069
-54601=43.806197,-91.140529
-54603=43.856762,-91.241935
-54610=44.365117,-91.831714
-54611=44.447714,-90.952181
-54612=44.249551,-91.501347
-54613=44.075585,-89.923744
-54614=43.904933,-90.952867
-54615=44.260473,-90.813319
-54616=44.300810,-91.223510
-54618=43.963629,-90.285854
-54619=43.757289,-90.774100
-54621=43.656295,-91.080952
-54622=44.273358,-91.773881
-54623=43.732988,-91.006259
-54624=43.461506,-91.131141
-54625=44.133418,-91.525003
-54626=43.219646,-91.054037
-54627=44.171387,-91.226981
-54628=43.372994,-91.026177
-54629=44.174054,-91.639340
-54630=44.122714,-91.372889
-54631=43.285012,-90.830887
-54632=43.568829,-91.146482
-54634=43.581742,-90.422353
-54635=44.402903,-91.045552
-54636=44.002965,-91.224012
-54637=43.878545,-90.270235
-54638=43.800044,-90.404178
-54639=43.601953,-90.637797
-54641=44.270653,-90.330096
-54642=44.152060,-91.045009
-54643=44.186970,-90.638180
-54644=44.036084,-91.063408
-54645=43.321145,-90.932642
-54646=44.113755,-90.098056
-54648=43.829428,-90.652565
-54650=43.910343,-91.227022
-54651=43.723614,-90.573224
-54652=43.475648,-90.772308
-54653=43.815991,-90.901451
-54654=43.269653,-90.964018
-54655=43.371015,-90.759096
-54656=43.990000,-90.803057
-54657=43.188044,-90.895886
-54658=43.682130,-91.168090
-54659=44.299071,-91.114785
-54660=43.982544,-90.494405
-54661=44.057603,-91.467828
-54664=43.488330,-90.642904
-54665=43.531971,-90.928690
-54666=44.170076,-90.449672
-54667=43.664049,-90.860047
-54669=43.911245,-91.083899
-54670=43.837346,-90.485881
-54701=44.751984,-91.514998
-54703=44.836452,-91.518514
-54720=44.804142,-91.435752
-54721=44.633744,-92.082731
-54722=44.711812,-91.096003
-54723=44.610579,-92.419425
-54724=45.105047,-91.486480
-54725=45.073212,-91.990956
-54726=44.937235,-91.025904
-54727=44.953953,-91.159106
-54728=45.308101,-91.637835
-54729=44.945626,-91.392954
-54730=45.018910,-91.719575
-54731=45.349837,-91.090398
-54732=45.144614,-91.170492
-54733=45.278660,-91.850182
-54734=45.098741,-92.125756
-54736=44.598579,-91.906496
-54737=44.718395,-91.981576
-54738=44.588229,-91.488743
-54739=44.859764,-91.701174
-54740=44.751437,-92.166807
-54741=44.620349,-90.974612
-54742=44.766442,-91.267012
-54745=45.251132,-91.123401
-54746=44.553241,-90.880056
-54747=44.401401,-91.512110
-54748=45.075083,-91.263020
-54749=44.948045,-92.107164
-54750=44.613789,-92.294549
-54751=44.850670,-91.931558
-54754=44.427159,-90.753321
-54755=44.575768,-91.681302
-54756=44.468071,-91.939604
-54757=45.237197,-91.522349
-54758=44.557943,-91.216523
-54759=44.489082,-92.129260
-54760=44.424047,-91.206361
-54761=44.623256,-92.178330
-54762=45.246203,-91.993154
-54763=45.179864,-91.881737
-54765=45.169133,-91.685590
-54766=45.340713,-90.858047
-54767=44.823835,-92.267998
-54768=44.957090,-90.929805
-54769=44.528229,-92.239712
-54770=44.548564,-91.371914
-54771=44.936960,-90.812536
-54772=45.100596,-91.881707
-54773=44.389993,-91.296378
-54801=45.878861,-91.942767
-54805=45.412053,-92.023417
-54806=46.552396,-90.870143
-54810=45.457085,-92.374415
-54812=45.392528,-91.882516
-54813=45.652939,-92.044813
-54814=46.863246,-90.901161
-54817=45.669726,-91.546559
-54819=45.486919,-91.305291
-54820=46.572526,-91.565044
-54821=46.216959,-91.166168
-54822=45.400937,-91.694413
-54824=45.484715,-92.539887
-54826=45.495241,-92.159669
-54827=46.788281,-91.096741
-54828=45.840986,-91.294248
-54829=45.566650,-92.047243
-54830=46.106014,-92.225683
-54832=46.319287,-91.343441
-54835=45.691601,-91.247086
-54836=46.454438,-92.195041
-54837=45.674284,-92.357709
-54838=46.258705,-91.818848
-54839=46.361577,-91.139982
-54840=45.751262,-92.692383
-54841=45.606667,-91.778611
-54842=46.505367,-91.854667
-54843=46.023604,-91.293027
-54844=46.804784,-91.233188
-54845=45.797327,-92.193787
-54846=46.378316,-90.720238
-54847=46.579326,-91.399850
-54848=45.516039,-91.103822
-54849=46.481185,-91.725682
-54850=46.940645,-90.570830
-54853=45.568137,-92.450171
-54854=46.650264,-91.666996
-54855=46.378032,-90.831029
-54856=46.442747,-91.129309
-54857=45.596234,-91.605637
-54858=45.519382,-92.457844
-54859=46.123003,-91.803653
-54861=46.614971,-90.656678
-54862=45.778701,-91.142381
-54864=46.613354,-91.790631
-54865=46.739717,-91.374991
-54867=45.821681,-91.203126
-54868=45.525662,-91.707548
-54870=45.709205,-91.775310
-54871=45.749634,-92.002023
-54872=45.777070,-92.401715
-54873=46.339278,-91.697041
-54874=46.565542,-91.942807
-54875=45.965643,-91.692217
-54876=45.836042,-91.493513
-54880=46.590874,-92.128310
-54888=45.974818,-91.866955
-54889=45.415113,-92.170107
-54891=46.699590,-90.964839
-54893=45.878675,-92.325953
-54895=45.449432,-91.460760
-54896=45.817173,-90.881747
-54901=44.062759,-88.535773
-54902=43.946895,-88.540285
-54904=44.023400,-88.623839
-54909=44.280703,-89.367441
-54911=44.281533,-88.381003
-54913=44.335996,-88.399970
-54914=44.280839,-88.452033
-54915=44.243351,-88.355904
-54921=44.295220,-89.559173
-54922=44.544821,-88.762140
-54923=43.997757,-88.966832
-54927=44.103128,-88.654369
-54928=44.746498,-88.874634
-54929=44.636591,-88.739379
-54930=44.032633,-89.554853
-54931=44.274505,-88.679132
-54932=43.831997,-88.590949
-54933=44.670474,-88.703194
-54934=44.002969,-88.839265
-54935=43.773660,-88.436782
-54937=43.792050,-88.390935
-54940=44.220370,-88.842561
-54941=43.844703,-88.992882
-54942=44.294108,-88.547362
-54943=44.132814,-89.590410
-54944=44.324687,-88.626957
-54945=44.568660,-89.136883
-54946=44.336605,-89.144400
-54947=44.203594,-88.698749
-54948=44.780628,-88.872845
-54949=44.483988,-88.915485
-54950=44.657218,-88.918064
-54952=44.201040,-88.329484
-54956=44.182337,-88.527574
-54960=43.941908,-89.219067
-54961=44.410151,-88.761690
-54962=44.486188,-89.030971
-54963=44.044194,-88.779090
-54964=43.921644,-88.717019
-54965=44.167973,-89.043887
-54966=44.210019,-89.504888
-54967=44.126740,-88.975792
-54968=43.847027,-89.135933
-54970=44.072751,-89.098184
-54971=43.857164,-88.828882
-54974=43.787591,-88.663488
-54977=44.461173,-89.171213
-54979=43.872511,-88.536374
-54980=43.983584,-88.767287
-54981=44.322663,-89.131504
-54982=44.072748,-89.290882
-54983=44.319336,-88.933068
-54984=44.190566,-89.223457
-54985=44.075066,-88.518469
-54986=44.123302,-88.749906
-55001=44.898776,-92.819108
-55003=45.011625,-92.779163
-55005=45.396107,-93.218464
-55006=45.738266,-93.198939
-55007=45.971304,-93.117820
-55008=45.569486,-93.276659
-55009=44.483873,-92.865156
-55011=45.340740,-93.253313
-55012=45.437981,-92.788354
-55013=45.338471,-92.905419
-55014=45.161826,-93.127997
-55016=44.817691,-92.934622
-55017=45.672309,-93.436364
-55018=44.423972,-92.996175
-55019=44.419113,-93.248224
-55020=44.575540,-93.373569
-55021=44.299725,-93.277222
-55024=44.627131,-93.125137
-55025=45.263234,-93.022024
-55026=44.535111,-92.346008
-55027=44.406368,-92.609457
-55029=45.638337,-93.198359
-55030=45.839093,-93.089519
-55031=44.612517,-92.962163
-55032=45.586267,-92.988000
-55033=44.713918,-92.864469
-55036=45.871246,-93.119564
-55037=46.038859,-92.785172
-55038=45.174163,-92.980823
-55040=45.466135,-93.280188
-55041=44.394193,-92.320188
-55042=44.987819,-92.909500
-55043=44.940578,-92.768835
-55044=44.642140,-93.276428
-55045=45.395323,-92.835009
-55046=44.441784,-93.424674
-55047=45.200429,-92.820729
-55049=44.176279,-93.230762
-55051=45.928892,-93.303115
-55052=44.231018,-93.443659
-55053=44.346571,-93.061338
-55054=44.570166,-93.350454
-55055=44.874458,-92.998692
-55056=45.508583,-92.953884
-55057=44.470457,-93.176125
-55060=44.059126,-93.223482
-55063=45.838574,-92.902898
-55065=44.550758,-93.024955
-55066=44.511925,-92.539132
-55068=44.735516,-93.062773
-55069=45.693989,-92.964465
-55070=45.410032,-93.386985
-55071=44.821511,-92.998235
-55072=46.098193,-92.528531
-55073=45.272533,-92.814871
-55074=45.387779,-92.720032
-55075=44.888027,-93.040497
-55076=44.836066,-93.032174
-55077=44.819411,-93.067810
-55079=45.419467,-93.035393
-55080=45.666420,-93.222225
-55082=45.073127,-92.839768
-55084=45.462591,-92.716225
-55085=44.669775,-92.963432
-55087=44.248540,-93.394880
-55088=44.523586,-93.383455
-55089=44.583779,-92.716416
-55090=45.053332,-92.957536
-55092=45.334125,-93.099816
-55101=44.951483,-93.090649
-55102=44.931901,-93.121291
-55103=44.964258,-93.122627
-55104=44.953894,-93.164446
-55105=44.937180,-93.168279
-55106=44.963547,-93.049522
-55107=44.931070,-93.079172
-55108=44.982482,-93.174880
-55109=45.014551,-93.025535
-55110=45.089912,-93.005988
-55111=44.878385,-93.196359
-55112=45.081866,-93.190493
-55113=45.012196,-93.151186
-55114=44.966690,-93.195072
-55115=45.067903,-92.953441
-55116=44.910719,-93.169581
-55117=45.003562,-93.091280
-55118=44.894315,-93.100947
-55119=44.937421,-93.007402
-55120=44.874984,-93.152093
-55121=44.846541,-93.154935
-55122=44.806810,-93.201497
-55123=44.808933,-93.138449
-55124=44.739462,-93.193842
-55125=44.918031,-92.938277
-55126=45.084450,-93.132817
-55127=45.083907,-93.080233
-55128=44.987546,-92.963553
-55129=44.883474,-92.892768
-55130=44.973302,-93.082410
-55150=44.886640,-93.165422
-55155=44.956026,-93.082680
-55301=45.248559,-93.659820
-55302=45.246529,-94.117135
-55303=45.288298,-93.431102
-55304=45.247605,-93.275036
-55305=44.956374,-93.427997
-55306=44.730944,-93.291381
-55307=44.599706,-94.111216
-55308=45.441395,-93.832031
-55309=45.377728,-93.744336
-55310=44.759116,-94.880759
-55311=45.106403,-93.497029
-55312=44.706340,-94.351290
-55313=45.174664,-93.851455
-55314=44.779020,-94.589725
-55315=44.721096,-93.688973
-55316=45.172932,-93.386829
-55317=44.858704,-93.550209
-55318=44.810785,-93.636248
-55319=45.475266,-93.943856
-55320=45.396331,-94.086052
-55321=45.087589,-94.193155
-55322=44.771879,-93.787131
-55324=45.052586,-94.418194
-55325=45.084951,-94.317016
-55327=45.195735,-93.475802
-55328=45.031875,-93.811951
-55329=45.304542,-94.558937
-55330=45.334168,-93.568216
-55331=44.895664,-93.607649
-55332=44.520437,-94.699538
-55333=44.562955,-94.860631
-55334=44.535651,-94.188415
-55335=44.531090,-94.553138
-55336=44.777225,-94.198563
-55337=44.778472,-93.272269
-55338=44.669519,-93.995771
-55339=44.723427,-93.956959
-55340=45.078263,-93.572118
-55341=45.157755,-93.662750
-55342=44.742925,-94.739028
-55343=44.914372,-93.416254
-55344=44.863838,-93.430008
-55345=44.915442,-93.484430
-55346=44.880805,-93.482008
-55347=44.827922,-93.462312
-55349=45.058647,-94.074539
-55350=44.900627,-94.391367
-55352=44.651475,-93.592608
-55353=45.329096,-94.324626
-55354=44.880438,-94.061414
-55355=45.099093,-94.541307
-55356=44.994245,-93.589620
-55357=45.103722,-93.674218
-55358=45.253055,-93.991526
-55359=45.009760,-93.698110
-55360=44.915960,-93.919645
-55362=45.292082,-93.838711
-55363=45.037192,-93.918320
-55364=44.936989,-93.677783
-55366=44.672626,-94.232341
-55367=44.895142,-93.975752
-55368=44.740063,-93.899747
-55369=45.127446,-93.445399
-55370=44.777180,-94.036783
-55371=45.578639,-93.592062
-55372=44.682387,-93.413588
-55373=45.088621,-93.721142
-55374=45.175548,-93.575531
-55375=44.908107,-93.721559
-55376=45.211249,-93.687899
-55378=44.757299,-93.366971
-55379=44.753976,-93.514608
-55381=44.930963,-94.199979
-55382=45.300420,-94.199092
-55384=44.937621,-93.635153
-55385=44.739112,-94.489204
-55386=44.863217,-93.666882
-55387=44.869263,-93.778944
-55388=44.955978,-93.840285
-55389=45.297919,-94.442626
-55390=45.065173,-93.979556
-55391=44.956401,-93.538993
-55395=44.951833,-94.067714
-55396=44.546306,-94.367013
-55397=44.823812,-93.937971
-55398=45.464819,-93.612029
-55401=44.984577,-93.269097
-55402=44.976039,-93.271444
-55403=44.970570,-93.284044
-55404=44.961996,-93.261208
-55405=44.972669,-93.301675
-55406=44.938689,-93.221042
-55407=44.935036,-93.253029
-55408=44.940425,-93.292639
-55409=44.930326,-93.281477
-55410=44.911823,-93.319643
-55411=44.999009,-93.298363
-55412=45.027476,-93.303546
-55413=44.999463,-93.241677
-55414=44.979486,-93.227314
-55415=44.974800,-93.257647
-55416=44.950191,-93.336325
-55417=44.904440,-93.230407
-55418=45.021318,-93.242853
-55419=44.905799,-93.287653
-55420=44.835969,-93.277176
-55421=45.050884,-93.253812
-55422=45.009275,-93.341105
-55423=44.874460,-93.282529
-55424=44.905024,-93.344865
-55425=44.851166,-93.226013
-55426=44.958311,-93.374096
-55427=45.005499,-93.379150
-55428=45.062950,-93.381362
-55429=45.063552,-93.341097
-55430=45.067676,-93.302089
-55431=44.824534,-93.312602
-55432=45.096702,-93.253726
-55433=45.160411,-93.314839
-55434=45.163686,-93.250434
-55435=44.873981,-93.335255
-55436=44.904140,-93.373157
-55437=44.824347,-93.342996
-55438=44.823132,-93.386110
-55439=44.875630,-93.374747
-55441=45.006321,-93.424636
-55442=45.048920,-93.426212
-55443=45.117609,-93.338118
-55444=45.103999,-93.301791
-55445=45.122441,-93.379184
-55446=45.039140,-93.489701
-55447=45.001096,-93.489561
-55448=45.193638,-93.300544
-55449=45.176580,-93.181858
-55450=44.879554,-93.224418
-55454=44.969524,-93.241219
-55455=44.971976,-93.233777
-55601=47.235762,-91.365619
-55602=47.349871,-91.886457
-55603=47.546499,-91.251187
-55604=47.955097,-90.555583
-55605=47.965288,-89.737130
-55606=47.934516,-89.988859
-55607=47.563191,-91.417324
-55609=46.970661,-91.780871
-55612=47.769724,-90.701442
-55613=47.581631,-90.922164
-55614=47.368243,-91.375995
-55615=47.653486,-90.820619
-55616=47.170611,-91.642286
-55702=46.957364,-92.637569
-55703=47.730899,-92.750065
-55704=46.219085,-92.751667
-55705=47.451802,-92.207357
-55706=47.721360,-91.961607
-55707=46.555744,-92.629504
-55708=47.571318,-92.347412
-55709=47.428750,-93.373055
-55710=47.629693,-92.708559
-55711=46.818895,-92.690837
-55712=46.281700,-92.520624
-55713=47.500381,-92.746045
-55716=47.320392,-93.271458
-55717=47.068701,-92.387216
-55718=46.620931,-92.486403
-55719=47.541039,-92.862190
-55720=46.751015,-92.533380
-55721=47.223632,-93.688051
-55722=47.278898,-93.441893
-55723=47.839195,-92.916067
-55724=47.166394,-92.355122
-55725=48.209667,-92.168114
-55726=46.674045,-92.829381
-55731=47.981053,-91.656877
-55732=47.672842,-92.208675
-55733=46.713831,-92.360792
-55734=47.352273,-92.444451
-55735=46.210293,-93.010212
-55736=46.955641,-92.940845
-55738=47.264329,-92.660294
-55741=47.462585,-92.398232
-55742=47.204403,-93.136892
-55744=47.234469,-93.506980
-55746=47.361847,-92.955661
-55748=47.014462,-93.621281
-55749=46.439558,-92.443315
-55750=47.531850,-91.963714
-55751=47.397322,-92.659139
-55752=46.950553,-93.285945
-55753=47.395442,-93.081568
-55756=46.361182,-92.584556
-55757=46.512560,-92.950248
-55758=47.506020,-92.720194
-55760=46.642586,-93.257419
-55763=47.347559,-92.155289
-55764=47.331631,-93.291264
-55765=47.103712,-92.756285
-55766=47.268178,-92.458435
-55767=46.450299,-92.760955
-55768=47.486978,-92.684322
-55769=47.479989,-93.183860
-55771=48.133579,-92.811922
-55772=48.112705,-93.130631
-55775=47.320171,-93.171580
-55779=46.908724,-92.449100
-55780=46.688141,-92.699002
-55781=47.679928,-93.047127
-55782=47.832953,-92.206005
-55783=46.396409,-92.892446
-55784=47.058391,-93.165281
-55785=46.921584,-93.731217
-55786=47.322829,-93.381504
-55787=46.678418,-93.102978
-55790=47.927477,-92.252921
-55792=47.597028,-92.479684
-55793=47.116305,-93.283969
-55795=46.298230,-92.882974
-55797=46.566500,-92.362116
-55798=46.723256,-92.967790
-55802=46.740951,-92.049345
-55803=47.053522,-92.068754
-55804=46.931351,-91.936344
-55805=46.800824,-92.095786
-55806=46.768139,-92.127642
-55807=46.735493,-92.168592
-55808=46.676281,-92.241391
-55810=46.756745,-92.269437
-55811=46.842463,-92.221917
-55812=46.808688,-92.070727
-55814=46.833589,-92.197949
-55901=44.069818,-92.506581
-55902=43.971218,-92.507094
-55904=43.959886,-92.400595
-55905=44.055948,-92.525906
-55906=44.099900,-92.408157
-55909=43.562061,-92.733693
-55910=44.128660,-91.971828
-55912=43.682607,-92.988450
-55917=43.884820,-93.075481
-55918=43.740821,-92.846462
-55919=43.620065,-91.299476
-55920=44.013768,-92.622010
-55921=43.628993,-91.458854
-55922=43.558956,-91.900947
-55923=43.851036,-92.186086
-55924=44.029232,-93.027295
-55925=43.912092,-91.458412
-55926=43.743195,-92.706883
-55927=44.036469,-92.870923
-55929=43.976735,-92.139638
-55931=43.508662,-91.385229
-55932=44.152205,-92.298336
-55933=43.646002,-92.680581
-55934=44.003978,-92.264271
-55935=43.753751,-92.121472
-55936=43.717078,-92.577693
-55939=43.543427,-92.091732
-55940=43.898614,-92.809489
-55941=43.724845,-91.349148
-55943=43.782867,-91.582769
-55944=43.989517,-92.718008
-55945=44.266893,-92.052449
-55946=44.273212,-92.966216
-55947=43.822890,-91.366360
-55949=43.710105,-91.928608
-55950=43.747102,-92.964476
-55951=43.529233,-92.482488
-55952=43.943303,-91.843577
-55953=43.526582,-92.966542
-55954=43.557061,-91.780106
-55955=44.087320,-92.740870
-55956=44.286068,-92.527569
-55957=44.245312,-92.260879
-55959=44.117956,-91.799525
-55960=44.140242,-92.535165
-55961=43.608402,-92.473757
-55962=43.762120,-91.845163
-55963=44.190569,-92.656046
-55964=44.160083,-92.158034
-55965=43.623194,-92.128187
-55967=43.795157,-92.513371
-55968=44.397037,-92.089941
-55969=44.082477,-91.877288
-55970=43.595148,-92.831962
-55971=43.815792,-91.754675
-55972=43.995979,-92.048779
-55973=43.806240,-92.772859
-55974=43.577109,-91.647980
-55975=43.677871,-92.364465
-55976=43.864335,-92.487417
-55977=43.555778,-92.648066
-55979=43.920384,-91.950764
-55981=44.357587,-92.049217
-55982=43.815765,-92.884730
-55983=44.291403,-92.806985
-55985=44.158224,-92.904348
-55987=43.994226,-91.625441
-55990=43.732184,-92.261786
-55991=44.261215,-92.418566
-55992=44.322398,-92.682769
-56001=44.128125,-93.978990
-56003=44.219273,-94.090329
-56007=43.660887,-93.324563
-56009=43.661834,-93.546424
-56010=43.886164,-94.179805
-56011=44.602565,-93.772641
-56013=43.620180,-94.103786
-56014=43.583158,-93.817898
-56016=43.762065,-93.343107
-56017=44.305350,-93.819535
-56019=44.115896,-94.888926
-56020=43.607416,-93.538325
-56021=44.289313,-94.316025
-56022=44.053561,-94.839326
-56023=43.782339,-94.013565
-56024=44.143592,-93.838818
-56025=43.753245,-93.917351
-56026=43.885775,-93.290995
-56027=43.516714,-94.116644
-56028=44.226257,-93.717420
-56029=43.530047,-93.522279
-56031=43.622571,-94.468513
-56032=43.763635,-93.556877
-56033=43.565060,-93.938149
-56034=44.028598,-94.181962
-56035=43.819522,-93.272622
-56036=43.551882,-93.221023
-56037=44.016243,-94.051624
-56039=43.663418,-94.323586
-56041=44.161305,-94.533087
-56042=43.804234,-93.483758
-56043=43.649401,-93.222394
-56044=44.564707,-93.956838
-56045=43.757063,-93.214342
-56046=43.964524,-93.271449
-56047=43.732263,-94.233494
-56048=44.092772,-93.721097
-56050=44.266105,-93.945429
-56051=43.537461,-93.710558
-56052=44.327115,-93.558612
-56054=44.435233,-94.373758
-56055=44.128471,-94.235280
-56056=44.072691,-94.579483
-56057=44.390795,-93.711666
-56058=44.441772,-93.913721
-56060=43.928718,-94.441030
-56062=44.046244,-94.414123
-56063=44.218030,-93.815742
-56065=43.942225,-93.928430
-56068=43.865306,-93.806142
-56069=44.412099,-93.542436
-56071=44.534971,-93.579424
-56072=43.899229,-93.517081
-56073=44.304830,-94.464745
-56074=44.326877,-94.196936
-56075=43.735046,-94.436687
-56078=44.005921,-93.760875
-56080=44.080438,-93.854419
-56081=43.991089,-94.629348
-56082=44.357287,-94.036965
-56083=44.200924,-95.134152
-56085=44.294971,-94.738556
-56087=44.240509,-94.975248
-56088=43.824262,-94.443294
-56089=43.561574,-93.431131
-56090=43.956354,-94.244040
-56091=43.927424,-93.681297
-56093=44.058570,-93.519385
-56096=44.244889,-93.603466
-56097=43.720968,-93.713282
-56098=43.793016,-94.181766
-56101=43.879976,-95.134004
-56110=43.622237,-95.944970
-56111=43.639357,-94.882713
-56113=44.395415,-96.153168
-56114=43.976217,-95.593254
-56115=44.209457,-95.905771
-56116=43.614381,-96.386343
-56117=43.523116,-95.687376
-56118=43.950579,-95.029180
-56119=43.713721,-95.462996
-56120=43.962378,-94.792641
-56121=43.534615,-94.584233
-56122=43.898445,-95.956000
-56123=44.086937,-95.592414
-56125=44.058188,-95.552866
-56127=43.547469,-94.764701
-56128=43.881542,-96.110303
-56129=43.529203,-96.041896
-56131=43.855847,-95.572539
-56132=44.203493,-95.764924
-56134=43.795694,-96.238401
-56136=44.494914,-96.394646
-56137=43.840366,-95.330695
-56138=43.534582,-96.389525
-56139=44.103929,-96.179427
-56140=43.907739,-96.369409
-56141=43.877080,-95.803880
-56142=44.467693,-96.230974
-56143=43.632603,-95.008680
-56144=43.851392,-96.392004
-56145=44.054734,-95.175721
-56146=43.580062,-96.103432
-56147=43.757406,-96.057684
-56149=44.304157,-96.305564
-56150=43.628218,-95.197159
-56151=44.031451,-95.929422
-56152=44.230398,-95.276045
-56153=43.826655,-96.003104
-56155=43.772450,-95.944787
-56156=43.664330,-96.223232
-56157=44.404175,-95.948377
-56158=43.640634,-96.078500
-56159=43.941177,-94.931905
-56160=43.841157,-94.804734
-56161=43.707031,-95.324827
-56162=43.841705,-94.668746
-56164=44.060521,-96.342684
-56165=43.725343,-95.703057
-56166=44.203001,-95.380986
-56167=43.553927,-95.408728
-56168=43.617488,-95.809489
-56169=44.338334,-96.006510
-56170=44.173686,-96.090557
-56171=43.671285,-94.761789
-56172=44.014163,-95.775514
-56173=43.524720,-96.245976
-56174=44.016336,-95.305092
-56175=44.260701,-95.638506
-56176=43.783287,-94.720493
-56177=43.889121,-96.252873
-56178=44.284496,-96.133211
-56180=44.246204,-95.459592
-56181=43.677795,-94.626602
-56183=44.029019,-95.431132
-56185=43.798534,-95.824238
-56186=44.033228,-96.074258
-56187=43.622754,-95.583068
-56201=45.102185,-95.041816
-56207=45.491698,-96.066223
-56208=45.246719,-96.004770
-56209=45.127230,-94.812115
-56210=45.559885,-96.565367
-56211=45.574189,-96.679837
-56212=45.130873,-96.323833
-56214=44.603676,-95.322581
-56215=45.317717,-95.571950
-56216=44.942501,-95.059379
-56218=44.826953,-95.940466
-56219=45.607652,-96.818280
-56220=44.732106,-96.295236
-56221=45.548133,-96.192863
-56222=44.985399,-95.356764
-56223=44.762144,-95.818773
-56224=44.372814,-95.052134
-56225=45.441004,-96.442659
-56226=45.421616,-95.678120
-56227=45.290841,-96.168828
-56228=44.951236,-94.685179
-56229=44.594036,-95.716384
-56230=44.763464,-95.084058
-56231=45.279446,-95.763206
-56232=44.932618,-96.035236
-56235=45.709703,-96.016509
-56236=45.664584,-96.416130
-56237=44.616613,-95.433459
-56239=44.504193,-95.910436
-56240=45.562563,-96.483650
-56241=44.797885,-95.572929
-56243=45.170240,-94.686488
-56244=45.477723,-95.780133
-56245=44.684043,-95.677203
-56248=45.786154,-96.135813
-56249=45.318732,-95.901563
-56251=45.143751,-94.920231
-56252=45.178253,-95.310120
-56253=44.959963,-94.872528
-56255=44.397066,-95.419313
-56256=45.028691,-96.202421
-56257=44.969258,-96.402151
-56258=44.446070,-95.758167
-56260=44.963275,-95.482997
-56262=45.115071,-95.869707
-56263=44.421485,-95.532455
-56264=44.570250,-95.984716
-56265=44.999823,-95.706482
-56266=44.421064,-94.914551
-56267=45.582554,-95.928714
-56270=44.570375,-94.987380
-56271=45.244754,-95.404995
-56273=45.317879,-94.979933
-56274=45.902220,-96.245727
-56276=45.246430,-96.324208
-56277=44.756176,-94.985510
-56278=45.348003,-96.379955
-56279=45.218831,-95.169843
-56280=44.632607,-96.168267
-56281=44.953230,-95.169268
-56282=45.040131,-95.228467
-56283=44.527995,-95.138830
-56284=44.781891,-95.198352
-56285=44.788702,-95.346058
-56287=44.475762,-95.326432
-56288=45.241206,-94.951460
-56289=45.333188,-95.224451
-56291=44.626742,-96.081910
-56292=44.502071,-95.456501
-56293=44.416508,-95.259924
-56294=44.313219,-95.213533
-56295=45.035813,-95.826677
-56296=45.826830,-96.462462
-56297=44.636634,-95.529370
-56301=45.487084,-94.242777
-56303=45.574017,-94.215271
-56304=45.530416,-94.057176
-56307=45.626810,-94.591029
-56308=45.878391,-95.386055
-56309=46.079260,-95.805971
-56310=45.634286,-94.450242
-56311=45.897472,-95.895603
-56312=45.470123,-94.961846
-56313=45.784142,-93.552737
-56314=45.814701,-94.432957
-56315=45.980017,-95.594008
-56316=45.488301,-95.162659
-56318=45.853038,-94.674530
-56319=46.010823,-95.215688
-56320=45.466522,-94.403530
-56321=45.581117,-94.391288
-56323=45.629632,-95.723921
-56324=46.168955,-95.904155
-56325=45.562815,-94.946854
-56326=46.039558,-95.670809
-56327=45.754473,-95.607998
-56328=45.954758,-94.517536
-56329=45.709066,-93.914816
-56330=45.753241,-93.756384
-56331=45.678998,-94.671722
-56332=45.967416,-95.506404
-56334=45.574381,-95.336780
-56335=45.600289,-94.861632
-56336=45.820691,-94.762637
-56338=46.043124,-93.854187
-56339=45.824978,-95.821155
-56340=45.759467,-94.429019
-56342=46.183805,-93.368993
-56343=45.785910,-95.704956
-56345=45.988419,-94.373531
-56347=45.966690,-94.872044
-56349=45.726157,-95.513002
-56350=46.305029,-93.230407
-56352=45.641800,-94.806359
-56353=45.803664,-93.629079
-56354=46.057207,-95.248616
-56355=45.941442,-95.245716
-56356=45.628950,-94.753489
-56357=45.697723,-93.800686
-56358=45.837980,-93.446139
-56359=46.099568,-93.665304
-56360=45.895491,-95.116562
-56361=46.156724,-95.337656
-56362=45.401875,-94.712120
-56363=45.696739,-93.652380
-56364=46.005009,-94.072993
-56367=45.763756,-94.182051
-56368=45.464545,-94.561477
-56369=45.467009,-94.345361
-56371=45.433229,-94.636584
-56373=45.859740,-94.230562
-56374=45.670028,-94.303347
-56375=45.700876,-94.274251
-56376=45.505644,-94.679481
-56377=45.646144,-94.247760
-56378=45.725034,-94.987283
-56379=45.639682,-94.082677
-56381=45.556817,-95.537775
-56382=45.907862,-94.598327
-56384=45.809454,-94.567229
-56385=45.700872,-95.232188
-56386=46.114421,-93.519358
-56387=45.532869,-94.239690
-56389=45.797471,-95.091489
-56401=46.322919,-94.125210
-56425=46.343935,-94.276015
-56431=46.497279,-93.637914
-56433=46.973708,-94.697017
-56434=46.338439,-94.934651
-56435=46.822929,-94.539543
-56436=47.161257,-94.688534
-56437=46.245745,-95.058493
-56438=46.138601,-94.819178
-56440=46.141951,-94.955084
-56441=46.577764,-93.981482
-56442=46.679636,-94.102161
-56443=46.178895,-94.619825
-56444=46.435905,-93.888847
-56446=46.128838,-95.097490
-56447=46.738707,-93.914976
-56448=46.765412,-94.117929
-56449=46.178548,-94.261423
-56450=46.231257,-93.831513
-56452=46.957022,-94.448214
-56453=46.316002,-95.175374
-56455=46.440977,-94.000613
-56456=46.637753,-94.337293
-56458=47.193337,-94.975317
-56461=47.232073,-94.853912
-56464=46.772890,-95.124099
-56465=46.537328,-94.114383
-56466=46.420532,-94.642727
-56467=46.992697,-94.818584
-56468=46.487562,-94.290389
-56469=46.781236,-93.566778
-56470=47.027500,-95.098576
-56472=46.573721,-94.382718
-56473=46.357526,-94.493302
-56474=46.719853,-94.402843
-56475=46.079719,-94.545992
-56477=46.644616,-95.000175
-56479=46.434590,-94.794552
-56481=46.475418,-94.919653
-56482=46.464195,-95.147753
-56484=47.093135,-94.468008
-56501=46.837285,-95.813948
-56510=47.358810,-96.524868
-56511=46.839944,-95.995283
-56514=46.645710,-96.431418
-56515=46.294011,-95.693048
-56516=47.442035,-95.976010
-56517=47.560340,-96.549629
-56518=46.490070,-95.250369
-56519=47.161941,-96.478978
-56520=46.289750,-96.497076
-56521=46.999299,-95.901808
-56522=46.131921,-96.379373
-56523=47.650243,-96.813364
-56524=46.216786,-95.615481
-56525=46.666328,-96.750053
-56527=46.378318,-95.319712
-56528=46.521354,-95.823814
-56529=46.876486,-96.689672
-56531=45.987271,-95.981265
-56533=46.409003,-96.156471
-56534=46.471572,-96.011397
-56535=47.677583,-96.041858
-56536=47.046794,-96.522969
-56537=46.275451,-96.089793
-56540=47.557713,-96.269576
-56541=47.162393,-96.141503
-56542=47.550326,-95.736221
-56543=46.287011,-96.338325
-56544=46.757786,-95.605437
-56545=47.397374,-96.243251
-56546=47.104877,-96.720074
-56547=46.889472,-96.553728
-56548=47.368272,-96.745362
-56549=46.847447,-96.312324
-56550=47.273933,-96.743060
-56551=46.317390,-95.446913
-56552=46.984605,-96.204295
-56553=46.428827,-96.618255
-56554=46.885525,-96.116127
-56556=47.662952,-95.879974
-56557=47.317222,-95.794960
-56560=46.842028,-96.735562
-56565=46.049586,-96.297639
-56566=47.238908,-95.612901
-56567=46.549825,-95.374417
-56568=47.534968,-96.762906
-56569=47.073766,-95.859666
-56570=46.917928,-95.367142
-56571=46.433856,-95.542716
-56572=46.602178,-96.073714
-56573=46.618769,-95.548277
-56574=47.202120,-96.714289
-56575=47.042407,-95.434841
-56576=46.463112,-95.699414
-56577=46.974158,-95.803454
-56578=46.940894,-95.641496
-56579=46.463532,-96.338658
-56580=46.736062,-96.604014
-56581=47.462333,-96.761828
-56583=46.010570,-96.410973
-56584=47.223664,-96.237407
-56585=47.088367,-96.246304
-56586=46.318269,-95.830900
-56587=46.636628,-95.856523
-56588=46.209136,-95.496947
-56589=47.167325,-95.745654
-56590=46.050399,-96.153316
-56591=47.085971,-95.842395
-56592=47.538201,-96.009471
-56593=46.803537,-95.353467
-56594=46.548256,-96.642980
-56601=47.507374,-94.863994
-56621=47.419058,-95.412927
-56623=48.597453,-94.600591
-56626=47.320538,-94.246106
-56627=48.256133,-94.070721
-56628=47.694210,-93.590040
-56629=48.545164,-94.101623
-56630=47.756974,-94.498076
-56633=47.318784,-94.501180
-56634=47.680725,-95.398130
-56636=47.437935,-93.919202
-56637=47.608101,-93.829949
-56639=47.918547,-93.536241
-56641=47.222364,-94.252758
-56644=47.797005,-95.495088
-56646=47.773594,-95.632726
-56647=47.689935,-94.618731
-56649=48.574989,-92.917067
-56650=47.998056,-94.557478
-56651=47.454496,-95.616723
-56652=47.733484,-95.248518
-56653=48.271206,-93.509298
-56654=48.431078,-93.965043
-56655=47.028931,-94.231326
-56657=47.572913,-93.636731
-56658=48.063342,-93.842401
-56659=47.653088,-94.017436
-56660=47.991263,-94.192364
-56661=47.860557,-94.195748
-56662=46.862191,-93.852993
-56663=47.466429,-94.446625
-56666=48.033237,-94.821241
-56667=47.728469,-94.924836
-56668=48.613385,-93.346928
-56669=48.383950,-93.135452
-56670=47.828897,-94.865169
-56671=47.895133,-95.305386
-56672=47.072504,-94.001840
-56673=48.822330,-95.105483
-56676=47.539652,-95.195778
-56678=47.421977,-95.118124
-56680=47.659009,-93.954669
-56681=47.613603,-94.238708
-56683=47.736271,-94.750900
-56684=47.855617,-95.698912
-56685=48.238688,-94.531271
-56686=48.784049,-94.911697
-56687=47.501222,-94.994748
-56688=47.772963,-93.912179
-56701=48.121195,-96.192034
-56710=48.215386,-97.001820
-56711=49.315007,-94.963152
-56713=48.351356,-96.814494
-56714=48.783858,-96.004640
-56715=47.808974,-95.941278
-56716=47.743247,-96.555408
-56720=48.569749,-96.892978
-56721=47.970648,-96.949756
-56722=47.985086,-96.646021
-56723=47.809408,-96.806432
-56724=48.445803,-95.735912
-56725=48.150367,-95.797690
-56726=48.753797,-96.239203
-56727=48.288717,-95.412061
-56728=48.783124,-97.007914
-56729=48.670092,-96.561935
-56731=48.913017,-97.072561
-56732=48.584211,-96.467330
-56733=48.638068,-96.895762
-56734=48.769619,-96.603622
-56735=48.910175,-96.635315
-56736=47.708668,-96.191476
-56737=48.434470,-96.036715
-56738=48.334907,-96.335704
-56741=49.306515,-94.854660
-56742=47.928291,-95.807021
-56744=48.243585,-97.127546
-56748=47.921967,-96.010269
-56750=47.893024,-96.294498
-56751=48.809822,-95.733307
-56754=47.999110,-96.188545
-56755=48.970326,-97.097235
-56756=48.893305,-95.538296
-56757=48.478088,-96.898134
-56758=48.465369,-96.511240
-56759=48.550867,-96.081018
-56760=48.243570,-96.453251
-56761=48.602677,-95.696207
-56762=48.168749,-96.739611
-56763=48.815298,-95.360862
-57001=42.989202,-96.637675
-57002=44.296448,-96.676931
-57003=43.746315,-96.755337
-57004=43.079421,-96.791834
-57005=43.592068,-96.585656
-57006=44.314898,-96.796499
-57010=42.819184,-96.816158
-57012=43.593944,-97.278094
-57013=43.278376,-96.617496
-57014=43.111915,-96.956160
-57015=43.418384,-96.980022
-57016=43.899015,-96.958995
-57017=44.015255,-96.819123
-57018=43.797893,-96.981006
-57020=43.681278,-96.820156
-57021=43.264816,-96.972194
-57022=43.840900,-96.717205
-57024=43.988522,-96.679218
-57025=42.728403,-96.697716
-57026=44.259932,-96.518396
-57027=43.179998,-96.517223
-57028=44.061736,-96.599811
-57029=43.339062,-97.484847
-57030=43.738304,-96.519561
-57031=42.875524,-97.185859
-57032=43.424192,-96.678132
-57033=43.617972,-96.960938
-57034=43.119930,-96.553807
-57035=43.627175,-97.080459
-57036=43.278144,-97.139059
-57037=43.104561,-97.249244
-57038=42.585156,-96.576625
-57039=43.337838,-96.874855
-57040=43.061032,-97.587350
-57041=43.729774,-96.867629
-57042=43.986587,-97.156681
-57043=43.422611,-97.310061
-57045=43.205008,-97.528384
-57046=42.957636,-97.306648
-57047=43.520670,-97.211956
-57048=43.741984,-97.200336
-57049=42.523328,-96.509711
-57050=44.156906,-97.020100
-57051=44.232681,-97.337907
-57052=43.292356,-97.707966
-57053=43.410059,-97.140286
-57054=44.131488,-97.259790
-57055=43.666850,-96.743898
-57057=44.102232,-96.959250
-57058=43.737380,-97.397968
-57059=43.119205,-97.764306
-57061=44.242348,-97.044011
-57062=42.846199,-97.945247
-57063=42.930268,-97.684565
-57064=43.455933,-96.873793
-57065=43.904576,-96.615579
-57066=42.989953,-97.869989
-57067=43.045592,-97.469006
-57068=43.575015,-96.495601
-57069=42.843155,-96.975173
-57070=43.180067,-97.173356
-57071=44.272806,-96.958351
-57072=42.988671,-97.188559
-57073=43.005958,-97.055057
-57075=44.004324,-96.959518
-57076=43.971525,-97.359727
-57077=43.322952,-96.758309
-57078=42.915648,-97.446689
-57103=43.545833,-96.690132
-57104=43.604785,-96.707425
-57105=43.520296,-96.735607
-57106=43.507512,-96.840667
-57107=43.597620,-96.820415
-57108=43.479527,-96.704993
-57110=43.545488,-96.642616
-57117=43.531243,-96.754971
-57197=43.524551,-96.738610
-57201=44.936722,-97.092757
-57212=44.378729,-97.139135
-57213=44.550644,-96.530613
-57214=44.501979,-97.204842
-57216=45.303240,-96.529779
-57217=45.072481,-97.677502
-57218=44.652379,-96.592103
-57219=45.290641,-97.796148
-57220=44.467055,-96.917466
-57221=44.596631,-97.456541
-57223=44.706368,-97.014945
-57224=45.859161,-97.134345
-57225=44.888194,-97.728400
-57226=44.788157,-96.714071
-57227=45.361550,-96.704786
-57231=44.361520,-97.572040
-57232=45.623412,-97.399926
-57233=44.511948,-97.398286
-57234=44.610285,-96.894291
-57235=45.068355,-97.295125
-57236=44.985548,-97.585622
-57237=44.797699,-96.500497
-57238=44.873359,-96.860868
-57239=45.509691,-97.306701
-57241=44.695552,-97.216193
-57242=44.770719,-97.365496
-57243=44.912943,-97.442370
-57245=44.897581,-96.918190
-57246=45.054911,-96.666980
-57247=45.717409,-97.437814
-57248=44.583539,-97.187953
-57249=44.383398,-97.370502
-57251=45.283314,-96.915377
-57252=45.200406,-96.612559
-57255=45.868673,-96.936611
-57256=45.261009,-97.190250
-57257=45.497519,-97.028157
-57258=44.889599,-97.922617
-57259=45.002493,-96.563489
-57260=45.841733,-96.719612
-57261=45.545582,-97.499560
-57262=45.672913,-97.070014
-57263=45.142128,-96.995940
-57264=45.116615,-96.823738
-57265=44.992121,-96.781513
-57266=45.280440,-97.095259
-57268=44.567964,-96.689414
-57269=45.220983,-96.814676
-57270=45.841192,-97.338627
-57271=44.739380,-97.522039
-57272=45.101225,-97.462871
-57273=45.337127,-97.280424
-57274=45.304918,-97.574738
-57276=44.430861,-96.613455
-57278=44.643725,-97.704940
-57279=45.421222,-96.876323
-57301=43.713759,-98.047697
-57311=43.655651,-97.763378
-57312=44.207237,-98.379249
-57313=43.305031,-98.374320
-57314=44.046091,-97.981288
-57315=42.988388,-98.040294
-57317=43.143555,-98.966447
-57319=43.533018,-97.480025
-57321=43.870131,-97.560020
-57322=44.628064,-97.974422
-57323=44.146873,-97.720279
-57324=44.298430,-98.054051
-57325=43.752141,-99.292465
-57328=43.437622,-98.439006
-57329=42.980663,-98.145755
-57330=43.248016,-98.156995
-57331=43.474415,-98.044848
-57332=43.550500,-97.656776
-57334=43.549822,-97.997122
-57335=43.053690,-98.783901
-57337=44.011912,-97.795752
-57339=44.102176,-99.417293
-57340=43.795764,-97.837547
-57341=44.094667,-99.117978
-57342=43.244622,-98.701251
-57344=43.463754,-98.653802
-57345=44.578381,-99.444401
-57346=44.240731,-99.600069
-57348=44.625569,-98.372220
-57349=44.030097,-97.580800
-57350=44.404316,-98.199291
-57353=44.358421,-97.842036
-57355=43.783607,-98.931444
-57356=43.158170,-98.529608
-57358=44.075350,-98.421921
-57359=43.902872,-98.182622
-57361=42.996986,-98.429216
-57362=44.493857,-99.074449
-57363=43.680487,-98.255520
-57364=43.429099,-98.606899
-57365=43.811327,-99.416428
-57366=43.377168,-97.946533
-57367=43.065506,-98.519019
-57368=43.749509,-98.472097
-57369=43.420751,-98.953012
-57370=43.789461,-99.165857
-57371=44.413159,-99.272205
-57373=44.530627,-98.878290
-57374=43.753348,-97.599126
-57375=43.556414,-98.479919
-57376=43.217502,-97.937265
-57379=44.253612,-98.555655
-57380=43.030618,-98.298550
-57381=44.391041,-98.737454
-57382=44.065132,-98.659044
-57383=43.724481,-98.733640
-57384=44.419038,-98.493066
-57385=44.045304,-98.286742
-57386=44.505721,-98.006176
-57401=45.482335,-98.532540
-57420=45.292760,-100.149046
-57421=45.755478,-97.907063
-57422=45.419693,-97.909471
-57424=45.006471,-98.564447
-57426=45.737952,-98.495591
-57427=45.480547,-98.318576
-57428=45.452705,-99.678220
-57429=45.174757,-98.297445
-57430=45.812693,-97.719580
-57432=45.682867,-98.031046
-57433=45.638241,-98.320765
-57434=45.176247,-98.072285
-57435=45.186890,-98.908897
-57436=44.863778,-98.078545
-57437=45.796138,-99.604078
-57438=45.059381,-99.158928
-57439=45.331675,-98.065112
-57440=44.856478,-98.271979
-57441=45.829281,-98.527902
-57442=45.061750,-100.158139
-57445=45.465537,-98.114967
-57446=45.870828,-98.152670
-57448=45.635460,-99.411330
-57449=45.737408,-98.176157
-57450=45.225996,-99.848392
-57451=45.428490,-98.949115
-57452=45.529397,-99.862852
-57454=45.610240,-97.783531
-57455=45.006980,-99.683039
-57456=45.735597,-98.980082
-57457=45.877277,-99.154299
-57460=45.279575,-98.670681
-57461=45.156870,-98.432019
-57465=45.129106,-98.677297
-57466=45.223574,-99.460660
-57467=44.836772,-99.180338
-57468=45.499753,-97.758142
-57469=44.857384,-98.571778
-57470=44.883901,-98.894286
-57471=45.404536,-99.318265
-57472=45.435717,-100.068105
-57473=44.991457,-99.499341
-57474=45.292014,-98.278733
-57475=45.223553,-99.624634
-57476=44.706167,-98.615249
-57477=45.046943,-98.162357
-57479=45.302945,-98.443214
-57481=45.663342,-98.683984
-57501=44.527600,-100.309037
-57520=44.852798,-100.193658
-57521=43.796502,-101.198892
-57522=44.465487,-99.994822
-57523=43.233401,-99.213765
-57528=43.190776,-99.761251
-57529=43.230602,-99.563794
-57531=43.973671,-100.485912
-57532=44.400310,-100.628221
-57533=43.378934,-99.424938
-57534=43.570922,-99.687364
-57536=44.405385,-99.765270
-57537=44.578086,-101.067304
-57538=43.153994,-99.142047
-57540=44.517324,-99.612595
-57541=43.594019,-99.883888
-57543=43.775670,-101.502067
-57544=43.945257,-99.909234
-57547=43.489599,-101.423692
-57548=44.168021,-99.600218
-57551=43.177232,-101.711401
-57552=44.282982,-101.199910
-57553=44.474594,-101.645588
-57555=43.243287,-100.610812
-57559=43.936209,-100.723479
-57560=43.439227,-101.190933
-57562=43.897568,-100.958429
-57563=43.365385,-100.365514
-57564=44.729609,-99.989662
-57566=43.323502,-101.090950
-57567=44.124255,-101.740091
-57568=43.885580,-100.074535
-57569=43.856447,-99.572854
-57570=43.197980,-100.831012
-57571=43.085219,-99.092505
-57572=43.139362,-101.044918
-57574=43.059291,-101.356938
-57576=43.920919,-100.296114
-57577=43.528760,-101.677216
-57579=43.598711,-100.785578
-57580=43.289423,-100.090188
-57584=43.528970,-100.070861
-57585=43.539111,-100.405433
-57601=45.455822,-100.549592
-57620=45.377258,-102.540212
-57621=45.750092,-101.072861
-57622=44.683397,-101.567524
-57623=45.029810,-101.685858
-57625=44.949570,-101.060636
-57626=44.979706,-102.232141
-57630=45.439160,-100.905544
-57631=45.532933,-100.281010
-57632=45.833456,-100.044213
-57633=45.457211,-101.447990
-57634=45.752033,-101.896411
-57636=45.031815,-101.437515
-57638=45.869861,-102.232060
-57639=45.703323,-100.767043
-57640=45.789598,-102.717620
-57641=45.868089,-101.297372
-57642=45.811247,-100.749546
-57644=45.449229,-102.046492
-57645=45.980453,-101.739290
-57646=45.682420,-100.081670
-57648=45.910167,-100.354491
-57649=45.516635,-102.858020
-57650=45.847957,-103.014362
-57651=45.476030,-103.148406
-57652=45.186392,-100.658488
-57656=45.393033,-101.048995
-57657=45.518884,-100.792161
-57658=45.679845,-100.494653
-57660=45.797336,-101.586365
-57661=45.256752,-100.960193
-57701=44.146058,-103.206715
-57702=44.048284,-103.420467
-57703=44.004564,-103.042628
-57706=44.157189,-103.093560
-57714=43.308056,-101.941615
-57716=43.107073,-102.207123
-57717=44.933872,-103.895745
-57718=44.170732,-103.368194
-57719=44.232442,-102.976094
-57720=45.575865,-103.657033
-57722=43.456289,-102.921098
-57724=45.645373,-104.023825
-57725=43.932032,-102.791900
-57730=43.720822,-103.641848
-57732=44.201037,-103.692542
-57735=43.290766,-103.849668
-57738=43.634491,-103.123812
-57741=44.404969,-103.466634
-57744=43.782636,-103.045941
-57745=44.019240,-103.778602
-57747=43.384853,-103.527240
-57748=44.560666,-102.044535
-57750=43.593792,-101.955547
-57751=43.884534,-103.453134
-57752=43.452284,-102.174230
-57754=44.255434,-103.887569
-57755=45.868326,-103.347178
-57756=43.236872,-102.493787
-57758=44.911119,-102.819177
-57759=44.235057,-103.546699
-57760=45.005950,-103.300757
-57761=44.227139,-102.738533
-57762=44.753351,-103.619692
-57763=43.111350,-103.251934
-57764=43.183211,-102.837949
-57766=43.397620,-103.197804
-57767=44.136748,-102.571112
-57769=44.247000,-103.287046
-57770=43.057997,-102.589621
-57772=43.533576,-102.592891
-57773=43.592114,-103.568147
-57775=44.101964,-102.028950
-57776=45.257840,-103.488705
-57779=44.563773,-103.755322
-57780=43.780265,-102.510542
-57782=43.295308,-103.136670
-57783=44.474163,-103.918258
-57785=44.438809,-103.133501
-57787=44.685904,-102.650253
-57788=44.616964,-103.204941
-57790=44.082084,-102.217278
-57791=44.221139,-102.461626
-57792=44.509323,-102.397534
-57793=44.525368,-103.578762
-57794=43.124034,-102.394843
-57799=44.498707,-103.872416
-58001=46.445185,-96.719993
-58002=46.971090,-97.397242
-58004=47.026475,-97.270723
-58005=47.052877,-96.950904
-58006=47.101562,-97.209796
-58007=47.024361,-97.468653
-58008=46.309281,-97.000547
-58009=47.327689,-97.246559
-58011=46.918750,-97.539887
-58012=46.941686,-97.168331
-58013=46.057851,-97.353266
-58015=46.595255,-96.816487
-58016=47.367125,-97.461755
-58017=46.043361,-97.851471
-58018=46.435977,-96.896504
-58021=46.736143,-97.082125
-58027=46.633000,-97.607916
-58029=47.119604,-97.403783
-58030=46.030059,-96.670069
-58031=46.767684,-97.671491
-58032=46.065094,-97.642819
-58033=46.434700,-97.919560
-58035=47.253416,-97.430516
-58036=47.155563,-96.948134
-58038=47.245107,-96.995775
-58040=46.189495,-97.685000
-58041=46.047905,-96.918364
-58042=46.970891,-96.956035
-58043=45.973580,-97.545003
-58045=47.388882,-97.016318
-58046=47.328122,-97.724586
-58047=46.724262,-96.872758
-58048=47.198815,-97.223564
-58049=46.650738,-98.008073
-58051=46.636833,-97.021501
-58052=46.634620,-97.279569
-58053=46.052505,-97.180540
-58054=46.416876,-97.668726
-58056=47.231351,-97.929394
-58057=46.424475,-97.257276
-58058=46.182543,-96.963366
-58059=46.850628,-97.125872
-58060=46.264126,-97.415599
-58061=46.278946,-96.902058
-58062=46.637435,-97.818823
-58063=46.959034,-97.797584
-58064=47.144741,-97.610872
-58065=47.186168,-97.760507
-58067=46.070822,-97.469354
-58068=46.528872,-97.375093
-58069=46.243089,-97.839604
-58071=46.950839,-97.671345
-58072=46.925717,-98.006833
-58075=46.275536,-96.730394
-58076=46.272827,-96.607584
-58077=46.524837,-96.975120
-58078=46.862500,-96.924088
-58079=46.868239,-97.324941
-58081=46.310635,-97.141395
-58102=46.927094,-96.834703
-58103=46.856140,-96.822073
-58104=46.793233,-96.839680
-58105=46.895385,-96.807848
-58201=47.866638,-97.141144
-58202=47.920759,-97.072208
-58203=47.970477,-97.165490
-58204=47.955002,-97.386797
-58205=47.951474,-97.378991
-58210=48.405691,-98.111589
-58212=47.708541,-98.000416
-58214=47.924547,-97.499701
-58216=48.881885,-97.434480
-58218=47.593867,-97.038395
-58219=47.477626,-96.878975
-58220=48.796322,-97.719638
-58222=48.609949,-97.678687
-58223=47.505232,-97.037889
-58224=48.172338,-97.943628
-58225=48.611238,-97.222779
-58227=48.549096,-97.892709
-58228=47.881936,-97.343218
-58229=48.498485,-98.244323
-58230=47.474136,-97.831611
-58231=48.202239,-97.829398
-58233=48.226173,-97.525719
-58235=48.098989,-97.474761
-58237=48.414207,-97.402876
-58238=48.782789,-97.392813
-58239=48.919596,-98.684906
-58240=47.635966,-97.484580
-58241=48.698421,-97.677426
-58243=48.512705,-97.680859
-58244=48.144067,-97.611693
-58249=48.822796,-98.326795
-58250=48.267195,-98.000854
-58251=47.954294,-97.700238
-58254=47.774003,-98.150008
-58256=48.084025,-97.200169
-58257=47.497296,-97.281830
-58258=48.015382,-97.351918
-58259=48.025758,-98.128230
-58260=48.637588,-98.024787
-58261=48.244895,-97.312762
-58262=48.682182,-97.876345
-58265=48.956085,-97.612143
-58266=48.000939,-97.849975
-58267=47.751088,-97.638309
-58269=48.696182,-98.176865
-58270=48.393545,-97.783352
-58271=48.912895,-97.289694
-58272=48.016263,-97.981833
-58273=48.296100,-97.668546
-58274=47.491896,-97.488549
-58275=47.679374,-97.121138
-58276=48.638084,-97.460350
-58277=47.608381,-97.823310
-58278=47.770086,-97.121538
-58281=48.855839,-98.616489
-58282=48.912003,-97.940619
-58301=48.141947,-98.871697
-58311=48.657869,-98.589280
-58316=48.824101,-99.777341
-58317=48.605338,-99.373909
-58318=48.858084,-100.397421
-58321=48.200714,-98.344818
-58323=48.855224,-98.885162
-58324=48.479397,-99.220944
-58325=48.290313,-99.148558
-58327=48.100954,-98.594378
-58329=48.873307,-100.079593
-58330=48.449502,-98.459621
-58331=48.638515,-99.090041
-58332=48.044159,-99.772971
-58335=47.986086,-99.022076
-58338=48.537137,-98.624443
-58339=48.914400,-99.437868
-58341=47.782102,-99.844409
-58343=48.303796,-99.729507
-58344=48.027839,-98.341509
-58345=48.306961,-98.366569
-58346=48.287045,-99.428184
-58348=47.971665,-99.521090
-58351=48.099087,-99.278042
-58352=48.710574,-98.872781
-58353=48.634662,-99.596632
-58355=48.590751,-98.366420
-58356=47.678659,-99.085157
-58357=47.948460,-99.238515
-58361=47.752479,-98.339226
-58362=48.212202,-99.085481
-58363=48.755027,-99.447307
-58365=48.859408,-99.252855
-58366=48.653521,-99.874028
-58367=48.870402,-99.580643
-58368=48.260871,-100.053220
-58369=48.943639,-99.797109
-58370=47.992664,-98.839560
-58372=48.945191,-98.996927
-58374=47.839573,-99.097658
-58377=48.471646,-98.872965
-58379=47.896981,-98.823136
-58380=47.825153,-98.501854
-58381=47.825765,-98.748768
-58382=48.318151,-98.778792
-58384=48.595867,-100.265560
-58385=48.479841,-99.645501
-58386=48.303584,-99.598866
-58401=46.884369,-98.766655
-58402=46.880348,-98.687205
-58405=46.915284,-98.699503
-58413=46.035752,-99.293167
-58415=46.373335,-98.489402
-58416=47.532975,-98.338072
-58418=47.421423,-99.638932
-58420=47.061018,-98.858440
-58421=47.440419,-99.076593
-58422=47.600221,-99.405230
-58423=47.401106,-99.836299
-58424=46.887399,-99.110117
-58425=47.456370,-98.124700
-58426=47.218524,-98.589253
-58428=46.828446,-99.779666
-58429=47.190187,-98.173983
-58430=47.508825,-100.256876
-58431=46.511149,-98.470883
-58433=46.372432,-98.707687
-58436=46.089591,-98.581639
-58438=47.666874,-99.602381
-58439=45.977811,-98.830157
-58440=46.253298,-99.163686
-58441=46.175288,-98.368493
-58442=46.553679,-99.179594
-58443=47.442600,-98.681070
-58444=47.494062,-100.129143
-58445=47.565900,-98.809454
-58448=47.305957,-98.225008
-58451=47.450264,-99.971738
-58452=47.547759,-98.231235
-58454=46.584322,-98.951788
-58455=47.304908,-98.766798
-58456=46.269812,-98.954727
-58458=46.367931,-98.293851
-58460=46.300462,-99.323747
-58461=46.652232,-98.195300
-58463=47.491985,-100.473402
-58464=47.610726,-98.565277
-58466=46.623799,-98.368908
-58467=46.884858,-99.330649
-58472=46.638569,-98.650249
-58474=46.100294,-98.127097
-58475=47.179948,-99.555396
-58476=47.200511,-99.011587
-58477=47.218894,-100.504652
-58478=47.175493,-99.749464
-58479=47.092281,-98.182702
-58480=46.957653,-98.259449
-58481=46.927952,-98.428838
-58482=46.853459,-99.899917
-58483=46.646055,-99.407364
-58484=47.375996,-98.485054
-58486=47.391360,-99.382027
-58487=46.856767,-99.605672
-58488=47.178960,-100.025613
-58490=46.384285,-98.065943
-58492=47.156398,-98.441320
-58494=47.184778,-100.262723
-58495=46.277793,-99.604874
-58496=47.146460,-99.328693
-58497=46.765067,-98.549987
-58501=46.816035,-100.700296
-58503=46.904120,-100.750302
-58504=46.737571,-100.678406
-58505=46.820212,-100.780917
-58520=46.674330,-101.566948
-58521=47.008103,-100.693945
-58523=47.257297,-101.779816
-58524=46.600122,-100.073660
-58528=46.338619,-100.636812
-58529=46.295012,-101.559699
-58530=47.127782,-101.142920
-58531=47.559899,-101.195647
-58532=46.857587,-100.098298
-58533=46.405842,-101.789702
-58535=46.501789,-101.247288
-58538=46.109619,-100.689563
-58540=47.628881,-101.727334
-58541=47.362625,-102.057829
-58542=46.047071,-100.010126
-58544=46.512194,-100.370811
-58545=47.357925,-101.591236
-58549=46.479847,-99.931962
-58552=46.244129,-100.287175
-58554=46.742723,-100.935300
-58558=46.829724,-100.498374
-58559=47.489399,-100.728051
-58560=46.678439,-100.265129
-58561=46.487150,-99.682891
-58562=46.377350,-101.996874
-58563=46.898984,-101.439257
-58564=46.266095,-101.344234
-58565=47.493482,-101.370899
-58566=46.583219,-100.925343
-58568=46.087387,-101.045356
-58569=46.268099,-101.199370
-58570=46.381918,-100.887669
-58571=47.281225,-101.401288
-58572=46.855479,-100.341459
-58573=46.098273,-100.201007
-58575=47.567272,-100.896029
-58576=47.436851,-101.214174
-58577=47.317739,-101.052293
-58579=47.179421,-100.738366
-58580=47.267529,-101.943318
-58581=46.035178,-99.774432
-58601=46.916872,-102.834258
-58620=46.511333,-103.338311
-58621=47.088368,-103.930449
-58622=46.894005,-103.263285
-58623=46.185823,-103.431805
-58625=47.268133,-102.199765
-58626=47.383027,-102.622965
-58627=47.234399,-103.272650
-58630=46.944101,-102.578560
-58631=46.806835,-101.800932
-58632=46.665981,-103.965996
-58634=47.423095,-103.316291
-58636=47.379346,-102.367171
-58638=46.962340,-102.064940
-58639=46.095007,-102.593657
-58640=47.453729,-102.906687
-58641=46.667877,-102.513912
-58642=47.208180,-102.833200
-58643=46.330898,-103.944785
-58645=46.951005,-103.549653
-58646=46.392913,-102.287643
-58647=46.518902,-102.936294
-58649=46.126274,-102.922871
-58650=46.441254,-102.585433
-58651=46.258081,-103.733249
-58652=46.905856,-102.244208
-58653=46.097196,-103.130549
-58654=46.887259,-103.794900
-58655=46.771603,-103.031340
-58656=46.943037,-102.458368
-58701=48.144826,-101.326016
-58702=48.232139,-101.293788
-58703=48.334073,-101.306666
-58704=48.424722,-101.320944
-58705=48.422342,-101.333910
-58707=48.246217,-101.300515
-58710=47.868061,-100.231091
-58711=48.929575,-101.289090
-58712=47.970973,-100.531684
-58713=48.538378,-100.581797
-58716=47.804326,-101.067845
-58718=48.305559,-101.803517
-58721=48.803112,-102.270541
-58722=48.238173,-101.501497
-58723=47.745887,-100.596246
-58725=48.495490,-101.680009
-58727=48.839872,-102.796832
-58730=48.864883,-103.316671
-58731=48.436748,-100.984013
-58733=48.175009,-101.587881
-58734=48.513686,-101.935295
-58735=47.870209,-101.481270
-58736=47.930851,-100.396626
-58737=48.915978,-102.382326
-58740=48.466399,-101.222222
-58741=48.276800,-100.830824
-58744=48.116546,-100.615320
-58746=48.713443,-102.094053
-58748=48.681729,-100.654837
-58750=48.610954,-101.397529
-58752=48.829491,-102.579963
-58755=48.625964,-102.950953
-58756=47.970731,-101.814768
-58757=47.686282,-102.555817
-58758=47.782028,-100.101707
-58759=47.855616,-101.238927
-58760=48.697300,-101.157620
-58761=48.784372,-101.534814
-58762=48.673209,-100.940087
-58763=47.990944,-102.564713
-58765=48.873295,-103.042817
-58768=48.233235,-101.003629
-58769=48.319909,-102.202714
-58770=47.884344,-102.169646
-58771=48.088309,-101.976214
-58772=48.959575,-102.633710
-58773=48.582580,-102.657837
-58775=47.710059,-101.861201
-58776=48.247805,-102.623232
-58778=47.788281,-100.933992
-58779=47.869388,-101.775409
-58781=48.015721,-101.132708
-58782=48.944346,-101.704670
-58783=48.879790,-100.760464
-58784=48.364360,-102.417701
-58785=48.307789,-101.089369
-58787=48.756322,-101.813659
-58788=48.345799,-100.467754
-58789=48.553182,-100.808895
-58790=48.029571,-100.947714
-58792=47.971228,-100.746785
-58793=48.869225,-101.051028
-58794=48.269945,-102.782184
-58795=48.640375,-103.156753
-58801=48.217890,-103.763084
-58830=48.611872,-103.461197
-58831=47.799329,-103.658539
-58833=48.887153,-103.520333
-58835=47.772318,-103.430732
-58838=47.769991,-103.900837
-58843=48.233860,-103.377490
-58844=48.887526,-103.749952
-58845=48.641039,-103.917535
-58847=47.910892,-102.907792
-58849=48.317528,-103.202925
-58852=48.364287,-102.946753
-58853=48.075430,-103.836881
-58854=47.828372,-103.153255
-58856=48.595028,-103.732864
-59001=45.530271,-109.549201
-59002=46.023030,-108.665969
-59003=45.443118,-106.198168
-59006=45.920830,-108.088880
-59007=45.133827,-109.116339
-59008=45.061726,-109.087750
-59010=45.992528,-107.298731
-59011=45.924721,-109.948625
-59012=45.274927,-106.440183
-59013=45.456107,-109.087117
-59014=45.193946,-108.759696
-59015=46.054068,-108.803789
-59016=45.392677,-106.947306
-59018=45.856895,-110.538014
-59019=45.651783,-109.217531
-59020=45.108212,-110.100970
-59022=45.537869,-107.287695
-59024=46.278426,-107.807114
-59025=45.114341,-106.658087
-59026=45.485364,-108.784370
-59027=45.242152,-110.912914
-59028=45.302411,-109.713862
-59029=45.407971,-108.798810
-59030=45.104515,-110.518994
-59031=45.502652,-107.414858
-59032=47.024621,-108.703075
-59033=45.729131,-109.707454
-59034=45.697037,-107.694239
-59035=45.282975,-107.963190
-59036=46.480275,-109.933967
-59037=45.823982,-108.242236
-59038=46.203822,-107.209610
-59039=46.686774,-107.291122
-59041=45.522024,-108.991456
-59043=45.550792,-106.676383
-59044=45.630153,-108.728479
-59046=46.398482,-109.015696
-59047=45.547407,-110.571191
-59050=45.252966,-107.547277
-59052=45.465798,-110.145521
-59053=46.459883,-110.460616
-59054=46.644538,-107.748780
-59055=46.108998,-109.809893
-59057=45.853502,-108.933193
-59058=47.147005,-107.717565
-59059=46.407918,-108.072627
-59061=45.266327,-109.890082
-59062=45.093741,-106.150240
-59063=45.660790,-108.926709
-59064=45.816613,-107.976430
-59065=45.271428,-110.715081
-59066=45.335867,-108.510337
-59067=46.000389,-109.217637
-59068=45.119295,-109.446002
-59069=45.820354,-109.500979
-59070=45.375173,-109.185802
-59071=45.245737,-109.631142
-59072=46.470690,-108.545903
-59074=46.363060,-109.353209
-59075=45.405332,-107.883610
-59076=46.278749,-107.073952
-59077=47.165070,-107.556356
-59078=46.333651,-109.610551
-59079=46.062118,-108.363307
-59081=45.008320,-109.973513
-59082=45.743008,-110.225288
-59085=46.323039,-110.187818
-59086=46.071952,-110.564091
-59087=47.141917,-108.226575
-59088=46.074337,-108.093579
-59089=45.082840,-107.360831
-59101=45.613054,-108.390305
-59102=45.775641,-108.580209
-59105=45.892816,-108.497574
-59106=45.812886,-108.705770
-59201=48.172933,-105.699503
-59211=48.698644,-104.349863
-59212=48.222386,-104.143067
-59213=48.189413,-104.886609
-59214=47.292184,-106.022842
-59215=47.515988,-105.772645
-59217=47.579319,-104.249465
-59218=48.085231,-104.556884
-59219=48.526096,-104.219763
-59221=47.934085,-104.188313
-59222=48.693491,-105.116454
-59223=47.833776,-106.212669
-59225=48.284384,-105.975287
-59226=48.352474,-104.571021
-59230=48.130990,-106.800334
-59231=48.398053,-106.547859
-59240=48.842166,-106.235732
-59241=48.477635,-107.059858
-59242=48.443672,-104.450943
-59243=47.757547,-104.679209
-59244=48.590447,-106.306396
-59247=48.516199,-104.523506
-59248=48.291580,-106.299423
-59250=48.878635,-106.569744
-59252=48.913257,-104.821061
-59253=48.701091,-105.898705
-59254=48.752325,-104.638786
-59255=48.244168,-105.169231
-59256=48.925123,-104.563544
-59257=48.751314,-104.962457
-59258=48.584700,-104.691284
-59259=47.680957,-105.099851
-59260=48.828173,-106.094606
-59261=48.573615,-107.386829
-59262=47.489619,-104.497095
-59263=48.791171,-105.514255
-59270=47.609455,-104.086128
-59274=47.821893,-105.484790
-59275=48.874467,-104.199016
-59276=48.965773,-105.214155
-59301=46.293337,-105.759498
-59311=45.171683,-104.417202
-59312=47.002377,-106.214844
-59313=46.309664,-104.244522
-59314=45.075613,-105.374924
-59315=47.436500,-104.858271
-59317=45.356745,-105.488364
-59318=47.501154,-107.513850
-59322=47.010502,-106.686345
-59323=45.984210,-106.666467
-59324=45.783738,-104.542536
-59326=46.770357,-104.859402
-59327=46.236772,-106.682233
-59330=47.098693,-104.748781
-59332=45.328147,-104.862106
-59333=46.280117,-106.215722
-59336=46.331998,-105.022988
-59337=47.384253,-106.798410
-59338=46.640459,-105.640492
-59339=47.270550,-105.195851
-59343=45.662589,-105.465132
-59344=46.398869,-104.593685
-59347=46.383683,-106.320048
-59349=46.890151,-105.502227
-59351=45.752308,-105.750087
-59353=46.962966,-104.274518
-59354=46.181923,-104.300203
-59401=47.511219,-111.275500
-59404=47.631766,-111.328870
-59405=47.319261,-111.298533
-59410=47.486880,-112.635447
-59411=48.862924,-113.394345
-59412=47.303674,-110.864031
-59414=47.527490,-111.260840
-59416=48.037342,-111.492748
-59417=48.670078,-113.156827
-59418=46.799504,-109.920424
-59419=47.983733,-112.417010
-59420=47.877491,-111.003826
-59421=47.088611,-111.685282
-59422=47.813941,-112.473813
-59424=47.352942,-110.107236
-59425=48.187163,-111.898576
-59427=48.770665,-112.534338
-59430=47.430979,-109.780185
-59432=48.168933,-112.411284
-59433=47.883621,-111.692030
-59434=48.479489,-113.363518
-59436=47.611995,-112.046936
-59440=47.716021,-111.158540
-59441=46.860923,-108.983837
-59442=47.897628,-110.634914
-59443=47.563934,-111.828933
-59444=48.715915,-111.371283
-59446=47.618400,-110.159518
-59447=47.264849,-110.473317
-59448=48.267024,-112.781368
-59450=47.552457,-110.742814
-59451=47.389175,-109.389662
-59452=46.861898,-110.106626
-59453=46.638569,-109.652844
-59454=48.722520,-112.005415
-59456=48.270150,-111.361670
-59457=47.139985,-109.310714
-59460=48.074045,-110.506987
-59461=48.489338,-111.201456
-59462=47.122564,-109.891841
-59463=47.035641,-110.830833
-59464=46.907111,-109.655409
-59465=46.890345,-110.720273
-59466=48.767515,-111.704116
-59467=48.067356,-112.601298
-59468=47.705652,-111.627580
-59469=47.201398,-110.701673
-59471=47.426655,-108.772077
-59472=47.396634,-111.159034
-59474=48.508807,-111.729540
-59477=47.450159,-111.916558
-59479=47.032558,-110.305320
-59480=47.161115,-111.233325
-59482=48.871569,-111.912187
-59483=47.453014,-111.701370
-59484=48.967184,-111.658692
-59485=47.404163,-111.571601
-59486=48.340494,-112.377361
-59487=47.587366,-111.638996
-59489=47.624666,-109.230405
-59501=48.689862,-109.781130
-59520=48.038197,-109.932137
-59521=48.298777,-109.918262
-59522=48.555119,-111.005588
-59523=48.531584,-109.238565
-59524=48.229062,-108.337007
-59525=48.689648,-110.302843
-59526=48.440570,-108.716495
-59527=48.032196,-108.774083
-59528=48.576175,-110.408743
-59529=48.824522,-108.631789
-59530=48.631778,-110.717397
-59531=48.788389,-110.801412
-59532=48.578152,-110.105784
-59535=47.980497,-109.291498
-59537=48.842795,-107.987106
-59538=48.112019,-107.845520
-59540=48.595081,-110.564262
-59542=48.792992,-108.368443
-59544=48.805309,-107.557123
-59545=48.938962,-111.162590
-59546=47.751189,-108.592475
-59547=48.661556,-109.030355
-59601=46.530509,-112.199726
-59602=46.739365,-111.905529
-59631=46.323105,-112.435770
-59632=46.199911,-112.020459
-59633=46.818847,-112.342931
-59634=46.472764,-111.957829
-59635=46.565126,-111.825982
-59636=46.619729,-112.109921
-59638=46.360758,-111.967499
-59639=47.076255,-112.691688
-59640=46.736116,-112.299386
-59642=46.283477,-110.718587
-59643=46.172521,-111.589827
-59644=46.428793,-111.415948
-59645=46.687671,-111.054661
-59647=46.491037,-111.652939
-59648=47.077240,-112.127867
-59701=46.035043,-112.475720
-59703=46.045687,-112.537462
-59710=45.065271,-112.067962
-59711=46.094962,-113.140153
-59713=46.700778,-112.561064
-59714=45.980279,-111.129807
-59715=45.825929,-110.898032
-59716=45.066933,-111.489684
-59718=45.576265,-111.118089
-59720=44.858164,-111.729967
-59721=45.883065,-111.837159
-59722=46.366483,-112.772501
-59724=44.696258,-112.762063
-59725=45.098017,-112.821472
-59727=45.799440,-112.830929
-59728=46.508912,-112.434837
-59729=45.293720,-111.649073
-59730=45.208255,-111.128749
-59731=46.582196,-112.779625
-59732=45.485220,-112.727015
-59733=46.492252,-112.941615
-59735=45.616492,-111.963356
-59736=45.319448,-113.373157
-59739=44.632621,-112.184888
-59740=45.483057,-111.827924
-59741=45.769824,-111.368344
-59743=45.680410,-112.680338
-59745=45.595195,-111.614802
-59746=45.388798,-113.061194
-59747=45.735175,-111.923874
-59748=46.046681,-112.699238
-59749=45.454174,-112.072700
-59750=45.948251,-112.755726
-59751=45.704423,-112.436050
-59752=45.946381,-111.503941
-59754=45.456857,-112.326386
-59755=45.325321,-111.913739
-59756=46.179849,-112.828004
-59758=44.741942,-111.182902
-59759=45.851618,-112.191421
-59760=45.766631,-111.632061
-59761=45.642317,-113.534189
-59762=45.602186,-113.030793
-59801=46.856398,-114.014338
-59802=46.903957,-113.919267
-59803=46.796608,-113.950416
-59804=46.875845,-114.233484
-59808=46.971063,-114.111212
-59820=46.898852,-114.625586
-59821=47.173341,-114.077435
-59823=46.919805,-113.577728
-59824=47.422742,-114.203035
-59825=46.613165,-113.734648
-59826=47.373869,-113.792079
-59827=45.885625,-114.004115
-59828=46.329795,-113.976229
-59829=45.776445,-114.295574
-59830=47.424528,-115.343643
-59831=47.260120,-114.368312
-59832=46.688956,-113.252857
-59833=46.648475,-114.058793
-59834=47.079611,-114.221797
-59837=46.540302,-113.255399
-59840=46.185492,-114.193659
-59841=46.334211,-114.222998
-59842=47.330254,-115.437901
-59843=46.832595,-112.965761
-59844=48.058227,-115.974258
-59845=47.690232,-114.554576
-59846=47.151810,-114.513148
-59847=46.702089,-114.460596
-59848=47.699498,-114.693293
-59851=46.871546,-113.876570
-59853=48.042017,-115.790724
-59854=47.027458,-113.086185
-59855=47.605510,-114.118589
-59856=47.312876,-114.747243
-59858=46.285772,-113.467406
-59859=47.535214,-114.826544
-59860=47.706523,-114.172820
-59863=47.300226,-114.182539
-59864=47.529251,-114.109302
-59865=47.330512,-114.010198
-59866=47.328333,-115.205038
-59867=47.439915,-115.612263
-59868=47.211792,-113.506003
-59870=46.516308,-114.063450
-59871=45.870693,-113.819372
-59872=47.110018,-114.900920
-59873=47.667722,-115.295751
-59874=47.799431,-115.623420
-59875=46.419841,-114.314609
-59901=48.229649,-114.385053
-59910=47.794925,-114.294145
-59911=47.738548,-113.740936
-59912=48.408842,-114.154162
-59913=48.432596,-113.960834
-59914=47.858197,-114.281831
-59915=47.848129,-114.405200
-59916=48.256890,-113.382735
-59917=48.934673,-114.876678
-59918=48.768101,-114.859061
-59919=47.958549,-113.239590
-59920=48.002764,-114.608268
-59922=47.998206,-114.198521
-59923=48.225917,-115.391814
-59925=48.044415,-114.832615
-59926=48.351854,-113.995044
-59927=48.594965,-114.712167
-59928=48.776729,-114.461960
-59929=47.927434,-114.369341
-59930=48.866732,-115.133187
-59931=47.914636,-114.174980
-59932=48.057999,-114.192423
-59933=48.682382,-114.772578
-59934=48.600295,-114.898300
-59935=48.649762,-115.834835
-59936=48.627171,-113.807330
-59937=48.406092,-114.532766
-60002=42.471741,-88.084493
-60004=42.112780,-87.979542
-60005=42.064490,-87.985462
-60007=42.008600,-87.997340
-60008=42.069786,-88.016221
-60010=42.146494,-88.164651
-60012=42.272492,-88.314084
-60013=42.223439,-88.235506
-60014=42.232414,-88.327449
-60015=42.173809,-87.878173
-60016=42.049573,-87.895003
-60018=41.979388,-87.894358
-60020=42.389054,-88.173346
-60021=42.194697,-88.217108
-60022=42.135423,-87.761882
-60025=42.075201,-87.821026
-60026=42.092234,-87.837445
-60029=42.059253,-87.778339
-60030=42.337078,-88.044326
-60031=42.373574,-87.939353
-60033=42.424786,-88.608011
-60034=42.456318,-88.419695
-60035=42.185968,-87.805939
-60040=42.206363,-87.813098
-60041=42.364552,-88.151120
-60042=42.278206,-88.196627
-60043=42.088859,-87.714588
-60044=42.284408,-87.862297
-60045=42.235997,-87.864777
-60046=42.416323,-88.059119
-60047=42.203134,-88.044208
-60048=42.295408,-87.950611
-60050=42.331147,-88.295180
-60051=42.354910,-88.229132
-60053=42.042336,-87.788946
-60056=42.067166,-87.934719
-60060=42.270103,-88.039292
-60061=42.234909,-87.959135
-60062=42.126279,-87.845088
-60064=42.324027,-87.856704
-60067=42.106323,-88.064337
-60068=42.011762,-87.843434
-60069=42.196594,-87.924704
-60070=42.103663,-87.928972
-60071=42.468405,-88.315683
-60072=42.406704,-88.305861
-60073=42.348824,-88.109581
-60074=42.131462,-88.026329
-60076=42.035260,-87.729928
-60077=42.034746,-87.757188
-60081=42.451014,-88.225410
-60083=42.436276,-87.941752
-60084=42.269669,-88.140911
-60085=42.352097,-87.867656
-60087=42.403085,-87.850836
-60088=42.309632,-87.844061
-60089=42.167231,-87.964063
-60090=42.129614,-87.921503
-60091=42.077788,-87.720570
-60093=42.106708,-87.756292
-60096=42.479722,-87.824805
-60097=42.396983,-88.369978
-60098=42.326265,-88.456087
-60099=42.459988,-87.865021
-60101=41.930516,-88.016937
-60102=42.165165,-88.308768
-60103=41.980546,-88.204761
-60104=41.882844,-87.876430
-60106=41.959701,-87.941835
-60107=42.020586,-88.177771
-60108=41.950022,-88.091865
-60109=42.049807,-88.545918
-60110=42.114687,-88.291866
-60111=42.009497,-88.805358
-60112=41.924797,-88.690186
-60113=41.932247,-88.965872
-60115=41.901277,-88.761435
-60118=42.106259,-88.304383
-60119=41.851532,-88.476450
-60120=42.034492,-88.238396
-60123=42.040644,-88.311296
-60124=42.020169,-88.400686
-60126=41.896843,-87.941240
-60129=42.008121,-88.974996
-60130=41.866433,-87.817396
-60131=41.938755,-87.884263
-60133=41.977842,-88.143199
-60134=41.878343,-88.342066
-60135=42.112495,-88.670862
-60136=42.105438,-88.380571
-60137=41.865213,-88.061479
-60139=41.918877,-88.078095
-60140=42.079040,-88.513208
-60141=41.857845,-87.838010
-60142=42.173954,-88.444595
-60143=41.975335,-88.022464
-60144=41.835957,-88.520644
-60145=42.084569,-88.773820
-60146=42.099982,-88.874061
-60148=41.873571,-88.020766
-60150=41.925800,-88.891997
-60151=41.918475,-88.574468
-60152=42.237802,-88.625501
-60153=41.879283,-87.843251
-60154=41.847472,-87.891640
-60155=41.857694,-87.856223
-60156=42.203613,-88.320701
-60157=41.975252,-88.056054
-60160=41.904144,-87.860665
-60162=41.867531,-87.902184
-60163=41.888819,-87.909053
-60164=41.917512,-87.900699
-60165=41.903215,-87.880713
-60169=42.050870,-88.116615
-60171=41.925046,-87.838372
-60172=41.979850,-88.089628
-60173=42.051556,-88.055522
-60174=41.930652,-88.298614
-60175=41.948188,-88.388701
-60176=41.958125,-87.868886
-60177=41.988481,-88.310167
-60178=42.008032,-88.661107
-60180=42.225262,-88.524527
-60181=41.876897,-87.976328
-60184=41.951502,-88.253170
-60185=41.896691,-88.211014
-60187=41.872720,-88.112442
-60188=41.915737,-88.129434
-60189=41.840632,-88.122024
-60190=41.871784,-88.157015
-60191=41.966306,-87.980851
-60192=42.063272,-88.203662
-60193=42.009666,-88.096644
-60194=42.034820,-88.110285
-60195=42.074962,-88.086284
-60201=42.056214,-87.692402
-60202=42.030355,-87.685549
-60203=42.049045,-87.717453
-60301=41.888545,-87.798933
-60302=41.894609,-87.789711
-60304=41.872389,-87.789483
-60305=41.894875,-87.819064
-60401=41.343966,-87.616389
-60402=41.835216,-87.791373
-60403=41.553739,-88.134185
-60404=41.514026,-88.223228
-60406=41.654945,-87.681952
-60407=41.234907,-88.261302
-60408=41.263739,-88.215536
-60409=41.613641,-87.552122
-60410=41.423643,-88.201754
-60411=41.508774,-87.590314
-60415=41.702967,-87.778864
-60416=41.293908,-88.283101
-60417=41.427585,-87.586149
-60419=41.629149,-87.598820
-60420=41.088287,-88.416970
-60421=41.431182,-88.099710
-60422=41.536963,-87.684139
-60423=41.477349,-87.832419
-60424=41.164148,-88.327716
-60425=41.545577,-87.611725
-60426=41.610343,-87.653395
-60428=41.599800,-87.690567
-60429=41.574029,-87.683706
-60430=41.558880,-87.664442
-60431=41.509668,-88.180211
-60432=41.541747,-88.034728
-60433=41.499502,-88.043681
-60435=41.548590,-88.128928
-60436=41.486888,-88.129295
-60437=41.162929,-88.560435
-60438=41.566242,-87.550204
-60439=41.676906,-87.977229
-60440=41.700600,-88.075006
-60441=41.592639,-88.050043
-60442=41.392698,-87.963468
-60443=41.502184,-87.748201
-60444=41.243115,-88.402732
-60445=41.634390,-87.736395
-60446=41.631698,-88.106903
-60447=41.487239,-88.322166
-60448=41.537785,-87.892451
-60449=41.417550,-87.778885
-60450=41.366293,-88.434561
-60451=41.509217,-87.960579
-60452=41.606984,-87.753523
-60453=41.713436,-87.752560
-60455=41.742093,-87.808649
-60456=41.731248,-87.731134
-60457=41.724657,-87.828048
-60458=41.753401,-87.826941
-60459=41.744431,-87.768576
-60460=40.998479,-88.536714
-60461=41.522116,-87.700733
-60462=41.625307,-87.832930
-60463=41.662446,-87.789969
-60464=41.662840,-87.860756
-60465=41.698023,-87.829143
-60466=41.477816,-87.683188
-60467=41.601860,-87.887323
-60468=41.335283,-87.810291
-60469=41.628359,-87.687037
-60470=41.168970,-88.641026
-60471=41.478971,-87.734059
-60472=41.643075,-87.708082
-60473=41.597379,-87.599150
-60474=41.179801,-88.266441
-60475=41.472540,-87.627508
-60476=41.569483,-87.601709
-60477=41.572143,-87.789250
-60478=41.563453,-87.725409
-60479=41.232384,-88.526396
-60480=41.729231,-87.881134
-60481=41.285524,-88.110548
-60482=41.687843,-87.789946
-60484=41.443818,-87.710988
-60487=41.562730,-87.834416
-60490=41.669320,-88.145399
-60491=41.602523,-87.962618
-60501=41.780221,-87.823244
-60502=41.790651,-88.259738
-60503=41.712127,-88.255180
-60504=41.747452,-88.238622
-60505=41.764527,-88.294658
-60506=41.765703,-88.363853
-60510=41.841141,-88.306602
-60511=41.758993,-88.551993
-60512=41.701600,-88.439790
-60513=41.825059,-87.847546
-60514=41.795689,-87.962155
-60515=41.810554,-88.022796
-60516=41.761302,-88.013394
-60517=41.740329,-88.042149
-60518=41.598842,-88.919741
-60519=41.777818,-88.242612
-60520=41.787267,-88.667548
-60521=41.800683,-87.928172
-60523=41.836558,-87.953278
-60525=41.783830,-87.871802
-60526=41.831794,-87.873995
-60527=41.743074,-87.929214
-60530=41.797084,-88.952274
-60531=41.619207,-88.787498
-60532=41.789443,-88.083984
-60534=41.813484,-87.823564
-60536=41.597542,-88.549959
-60537=41.560474,-88.604139
-60538=41.726871,-88.338195
-60539=41.827240,-88.336209
-60540=41.764670,-88.145428
-60541=41.513344,-88.532398
-60542=41.809626,-88.352573
-60543=41.664136,-88.317818
-60544=41.614138,-88.218784
-60545=41.678691,-88.537120
-60546=41.837923,-87.821859
-60548=41.649593,-88.640479
-60549=41.502537,-88.739635
-60550=41.779872,-88.861945
-60551=41.524931,-88.687441
-60552=41.666888,-88.706507
-60553=41.826254,-89.040056
-60554=41.776684,-88.457062
-60555=41.822167,-88.180773
-60556=41.762915,-88.771125
-60557=41.448102,-88.760078
-60558=41.805603,-87.901039
-60559=41.794371,-87.972860
-60560=41.608220,-88.429346
-60561=41.745663,-87.981494
-60563=41.790146,-88.203829
-60564=41.706073,-88.195394
-60565=41.730729,-88.124336
-60585=41.657058,-88.225243
-60586=41.571567,-88.238218
-60601=41.885310,-87.622116
-60602=41.883073,-87.629149
-60603=41.880188,-87.625509
-60604=41.878095,-87.628461
-60605=41.867566,-87.617228
-60606=41.882066,-87.637349
-60607=41.874930,-87.651596
-60608=41.846880,-87.670664
-60609=41.812680,-87.656935
-60610=41.906772,-87.632231
-60611=41.895700,-87.613775
-60612=41.880320,-87.687749
-60613=41.956949,-87.654272
-60614=41.922714,-87.649577
-60615=41.801647,-87.596288
-60616=41.844883,-87.624032
-60617=41.718197,-87.552739
-60618=41.946962,-87.702548
-60619=41.743690,-87.605526
-60620=41.740497,-87.652558
-60621=41.776382,-87.639572
-60622=41.902172,-87.683337
-60623=41.848897,-87.717661
-60624=41.880504,-87.724444
-60625=41.973292,-87.700351
-60626=42.010019,-87.667095
-60628=41.690875,-87.615773
-60629=41.775868,-87.711496
-60630=41.972071,-87.756569
-60631=41.994855,-87.813003
-60632=41.810166,-87.713252
-60633=41.663809,-87.561470
-60634=41.946189,-87.806117
-60636=41.775739,-87.669064
-60637=41.781621,-87.599876
-60638=41.781430,-87.770520
-60639=41.920552,-87.756054
-60640=41.972872,-87.662604
-60641=41.946606,-87.746787
-60642=41.902042,-87.658544
-60643=41.700273,-87.663267
-60644=41.880084,-87.756373
-60645=42.008558,-87.694735
-60646=41.993019,-87.759627
-60647=41.921215,-87.701028
-60649=41.763420,-87.565879
-60651=41.902093,-87.740857
-60652=41.747932,-87.714795
-60653=41.819962,-87.605984
-60654=41.892289,-87.637271
-60655=41.694776,-87.703777
-60656=41.974280,-87.827132
-60657=41.940293,-87.646857
-60659=41.991488,-87.703986
-60660=41.991110,-87.663076
-60661=41.883030,-87.644101
-60706=41.964257,-87.816242
-60707=41.921853,-87.807282
-60712=42.005432,-87.733239
-60714=42.028057,-87.810967
-60803=41.674038,-87.736170
-60804=41.838036,-87.759870
-60805=41.722001,-87.702446
-60827=41.649434,-87.633572
-60901=41.109505,-87.897917
-60910=41.080494,-87.809612
-60911=40.880243,-87.976584
-60912=40.973619,-87.603476
-60913=41.146985,-88.061778
-60914=41.187368,-87.861802
-60915=41.146304,-87.861046
-60917=41.046818,-88.185472
-60918=40.594970,-88.025670
-60919=40.987875,-88.237518
-60920=41.029257,-88.304970
-60921=40.731456,-88.297018
-60922=41.010925,-87.919290
-60924=40.551009,-87.886524
-60926=40.566351,-87.823657
-60927=40.938489,-87.972776
-60928=40.741660,-87.849011
-60929=40.874974,-88.289163
-60930=40.829913,-88.002574
-60931=40.889327,-87.588141
-60932=40.463312,-87.805561
-60933=40.464728,-88.271912
-60934=40.958061,-88.353047
-60935=41.170447,-88.175861
-60936=40.467849,-88.351997
-60938=40.773028,-87.988260
-60940=41.249777,-87.642858
-60941=41.041988,-88.082084
-60942=40.465380,-87.661377
-60945=40.828189,-87.584213
-60946=40.916505,-88.202897
-60948=40.532765,-88.071269
-60949=40.378337,-88.105151
-60950=41.252724,-87.884400
-60951=40.914602,-87.755127
-60952=40.562795,-88.250366
-60953=40.629577,-87.688641
-60954=41.147708,-87.622516
-60955=40.699506,-87.969261
-60957=40.443066,-88.136091
-60958=41.064833,-87.591359
-60959=40.789695,-88.181996
-60960=40.438957,-87.890723
-60961=41.109567,-88.221504
-60962=40.626121,-88.187136
-60963=40.366679,-87.648421
-60964=41.038816,-87.744203
-60966=40.751503,-87.583223
-60968=40.672352,-88.119538
-60969=41.110975,-88.149737
-60970=40.796024,-87.734451
-60973=40.541685,-87.663146
-60974=40.719013,-87.733847
-61001=42.465816,-90.110232
-61006=41.861762,-89.202281
-61007=42.197755,-89.589505
-61008=42.244290,-88.841131
-61010=42.134590,-89.274106
-61011=42.392526,-88.897904
-61012=42.401445,-88.764558
-61013=42.372123,-89.639278
-61014=41.974687,-89.884447
-61015=41.996752,-89.197077
-61016=42.197297,-88.947723
-61018=42.415263,-89.555222
-61019=42.439512,-89.410047
-61020=42.110183,-89.098207
-61021=41.827392,-89.479188
-61024=42.436415,-89.297114
-61025=42.471378,-90.555965
-61027=42.330909,-89.757279
-61028=42.298465,-90.175881
-61030=42.119648,-89.591624
-61031=41.832071,-89.311588
-61032=42.318004,-89.636784
-61036=42.413677,-90.375911
-61037=41.789331,-89.760294
-61038=42.265818,-88.737964
-61039=42.208868,-89.467558
-61041=42.273156,-90.311245
-61042=41.687626,-89.562791
-61043=42.056438,-89.105241
-61044=42.318788,-89.915091
-61046=42.104394,-89.811739
-61047=42.153152,-89.395916
-61048=42.382631,-89.841219
-61049=42.049626,-89.008914
-61050=42.440288,-89.734143
-61051=41.982781,-89.754875
-61052=42.111372,-88.999555
-61053=42.120819,-89.983297
-61054=42.054974,-89.449449
-61057=41.829260,-89.382044
-61059=42.453165,-89.940174
-61060=42.478161,-89.621909
-61061=41.997917,-89.341656
-61062=42.250635,-89.835749
-61063=42.319493,-89.340658
-61064=41.987852,-89.582338
-61065=42.400588,-88.836952
-61067=42.305046,-89.478928
-61068=41.945817,-89.060013
-61070=42.416818,-89.473074
-61071=41.724673,-89.698867
-61072=42.442353,-89.138490
-61073=42.423732,-88.993797
-61074=42.124371,-90.122436
-61075=42.464451,-90.258916
-61077=42.238138,-89.357813
-61078=42.165921,-89.729005
-61079=42.437245,-89.216208
-61080=42.481345,-88.983833
-61081=41.833205,-89.737983
-61084=42.123586,-89.190074
-61085=42.341809,-90.032187
-61087=42.480214,-89.992629
-61088=42.268114,-89.262689
-61089=42.473424,-89.819325
-61091=41.906863,-89.527713
-61101=42.346079,-89.146087
-61102=42.228769,-89.162524
-61103=42.340261,-89.086492
-61104=42.251720,-89.079945
-61107=42.285452,-89.001644
-61108=42.257371,-89.002129
-61109=42.191304,-89.055756
-61111=42.335503,-89.002745
-61112=42.241981,-88.975184
-61114=42.306605,-88.990894
-61115=42.364306,-89.027467
-61201=41.477559,-90.575628
-61230=41.734087,-90.213132
-61231=41.210670,-90.717799
-61232=41.430737,-90.732438
-61234=41.417963,-89.914339
-61235=41.401294,-90.023559
-61236=41.515956,-90.367807
-61238=41.282483,-90.172661
-61239=41.480837,-90.381916
-61240=41.421147,-90.428612
-61241=41.488590,-90.321070
-61242=41.708009,-90.285148
-61243=41.618771,-89.682944
-61244=41.522559,-90.390822
-61250=41.655926,-90.112419
-61251=41.730595,-90.075699
-61252=41.836910,-90.125373
-61254=41.467230,-90.149630
-61256=41.547847,-90.407527
-61257=41.593358,-90.221845
-61258=41.521564,-89.914010
-61259=41.392567,-90.954365
-61260=41.245928,-90.884393
-61261=41.726842,-89.911219
-61262=41.276069,-90.348286
-61263=41.258847,-90.604730
-61264=41.402799,-90.595864
-61265=41.482333,-90.493407
-61270=41.826598,-89.963451
-61272=41.253608,-91.004598
-61273=41.362901,-90.398881
-61274=41.368573,-90.276974
-61275=41.605575,-90.307048
-61276=41.304077,-90.589916
-61277=41.613582,-89.930578
-61278=41.582027,-90.336731
-61279=41.320528,-90.726796
-61281=41.299780,-90.520144
-61282=41.495565,-90.412990
-61283=41.591859,-89.786563
-61284=41.394212,-90.751797
-61285=41.985776,-90.058320
-61301=41.397423,-89.084264
-61310=41.702418,-89.354497
-61311=41.037692,-88.860016
-61312=41.436355,-89.234905
-61313=41.073694,-88.668671
-61314=41.296481,-89.678495
-61315=41.287804,-89.364517
-61316=41.259082,-89.124987
-61317=41.431454,-89.208916
-61318=41.711285,-89.078271
-61319=41.018416,-88.742318
-61320=41.354676,-89.170458
-61321=40.969276,-88.973147
-61322=41.314131,-89.317590
-61323=41.433059,-89.396789
-61324=41.769914,-89.413892
-61325=41.234953,-88.809633
-61326=41.246245,-89.229713
-61327=41.226710,-89.311467
-61328=41.499544,-89.459257
-61329=41.375034,-89.180739
-61330=41.535272,-89.266957
-61331=41.747703,-89.277542
-61332=41.188769,-88.988778
-61333=40.989245,-88.888154
-61334=41.145113,-89.098451
-61335=41.165748,-89.218354
-61336=41.112606,-89.231916
-61337=41.436413,-89.328430
-61338=41.458737,-89.676107
-61340=41.261250,-89.250157
-61341=41.352165,-88.693197
-61342=41.543677,-89.084088
-61344=41.411154,-89.839694
-61345=41.280245,-89.794395
-61346=41.511190,-89.718402
-61348=41.285723,-89.035197
-61349=41.544823,-89.442299
-61350=41.372095,-88.865127
-61353=41.704316,-88.991053
-61354=41.327928,-89.143248
-61356=41.396035,-89.413241
-61358=40.978724,-89.044023
-61359=41.362452,-89.271459
-61360=41.328215,-88.600511
-61361=41.413064,-89.756154
-61362=41.358708,-89.233220
-61363=41.254185,-89.182339
-61364=41.127938,-88.841173
-61367=41.621412,-89.259488
-61368=41.262136,-89.517537
-61369=40.984046,-89.155061
-61370=41.199778,-89.038477
-61372=41.464900,-89.078018
-61373=41.407228,-88.995936
-61374=41.547712,-89.358725
-61375=41.035173,-89.243431
-61376=41.545347,-89.613262
-61377=41.061382,-89.034038
-61378=41.722671,-89.155402
-61379=41.390795,-89.606980
-61401=40.944205,-90.385824
-61410=40.796475,-90.396007
-61411=40.400982,-90.502128
-61412=41.078398,-90.579715
-61413=41.186590,-90.370422
-61414=41.124679,-90.155739
-61415=40.656310,-90.431270
-61416=40.499397,-90.562897
-61417=40.774174,-90.538320
-61418=40.850174,-90.862586
-61419=41.199461,-90.117460
-61420=40.547734,-90.866967
-61421=41.187539,-89.647935
-61422=40.551362,-90.532761
-61423=40.886282,-90.501204
-61424=41.076767,-89.634994
-61425=40.759242,-91.040150
-61426=41.119997,-89.706980
-61427=40.508521,-90.183878
-61428=40.943829,-90.107135
-61430=40.939105,-90.310833
-61431=40.608009,-90.276497
-61432=40.648385,-90.153167
-61433=40.554375,-90.168989
-61434=41.183842,-90.038489
-61435=40.975148,-90.544946
-61436=40.860149,-90.223174
-61437=40.846879,-90.992327
-61438=40.582743,-90.651654
-61439=41.028467,-90.357031
-61440=40.305582,-90.598626
-61441=40.338564,-90.277187
-61442=41.108865,-90.921684
-61443=41.263671,-89.944897
-61447=40.866806,-90.754347
-61448=40.933602,-90.246806
-61449=41.095042,-89.975133
-61450=40.578637,-90.979104
-61451=40.938697,-89.939478
-61452=40.236190,-90.660627
-61453=41.012202,-90.764135
-61454=40.681930,-91.039891
-61455=40.440468,-90.638016
-61458=40.782237,-90.183157
-61459=40.510245,-90.419564
-61460=40.716661,-90.829174
-61462=40.923313,-90.644576
-61465=41.210673,-90.479667
-61466=41.110013,-90.479663
-61467=41.076365,-90.240803
-61468=41.257745,-90.387780
-61469=40.955988,-90.908236
-61470=40.603863,-90.504840
-61471=40.697480,-90.834837
-61472=41.102144,-90.382871
-61473=40.707687,-90.640428
-61474=40.736456,-90.380402
-61475=40.597924,-90.753451
-61476=41.099146,-90.833940
-61477=40.495994,-90.310552
-61478=40.757855,-90.760645
-61479=41.004790,-89.644768
-61480=40.727421,-90.913356
-61482=40.384629,-90.408207
-61483=41.084830,-89.881372
-61484=40.299710,-90.435260
-61485=41.021282,-90.102912
-61486=41.194794,-90.576436
-61488=41.032242,-90.318324
-61489=40.930858,-90.033162
-61490=41.185531,-90.258712
-61491=41.054464,-89.730734
-61501=40.228366,-90.311915
-61516=40.858083,-89.135201
-61517=40.828373,-89.844846
-61519=40.460070,-90.088956
-61520=40.539026,-90.023221
-61523=40.911930,-89.537770
-61524=40.491321,-90.034735
-61525=40.848482,-89.669082
-61526=40.922901,-89.619957
-61528=40.778970,-89.722981
-61529=40.782018,-89.937608
-61530=40.714296,-89.260092
-61531=40.682505,-90.036794
-61532=40.339487,-89.818789
-61533=40.586374,-89.842499
-61534=40.414441,-89.666079
-61535=40.578864,-89.516514
-61536=40.689425,-89.793782
-61537=41.119166,-89.471442
-61539=40.556403,-89.762073
-61540=41.014600,-89.366597
-61541=40.980378,-89.234952
-61542=40.389729,-90.130236
-61543=40.420832,-89.964909
-61544=40.693648,-90.235793
-61545=40.870710,-89.353494
-61546=40.448338,-89.809589
-61547=40.580796,-89.720965
-61548=40.814012,-89.419925
-61550=40.610249,-89.441854
-61552=40.817660,-89.565721
-61553=40.625932,-90.032265
-61554=40.539343,-89.618320
-61559=40.919018,-89.779203
-61560=41.187262,-89.419790
-61561=40.802862,-89.200878
-61562=40.880395,-89.501542
-61563=40.492024,-90.054216
-61564=40.493466,-89.653494
-61565=41.038714,-89.505036
-61567=40.358139,-89.896566
-61568=40.510560,-89.481508
-61569=40.683232,-89.900619
-61570=40.921070,-89.325771
-61571=40.704146,-89.417889
-61572=40.803170,-90.044471
-61602=40.674562,-89.608597
-61603=40.712882,-89.576722
-61604=40.705715,-89.653644
-61605=40.676584,-89.633277
-61606=40.699812,-89.611490
-61607=40.627135,-89.685132
-61610=40.642116,-89.599560
-61611=40.713242,-89.535841
-61614=40.759136,-89.604123
-61615=40.737893,-89.686781
-61616=40.746726,-89.571641
-61625=40.697615,-89.612701
-61701=40.476769,-88.992994
-61704=40.471127,-88.944538
-61705=40.412620,-88.895569
-61720=40.554670,-88.514468
-61721=40.350757,-89.323483
-61722=40.418661,-88.632370
-61723=40.264664,-89.276542
-61724=40.322856,-88.533248
-61725=40.610560,-89.119118
-61726=40.738395,-88.692315
-61727=40.142554,-88.960868
-61728=40.571735,-88.627336
-61729=40.628659,-89.221294
-61730=40.532486,-88.729413
-61731=40.613947,-88.485525
-61732=40.529638,-89.208063
-61733=40.618858,-89.336899
-61734=40.375637,-89.512968
-61735=40.200639,-88.814798
-61736=40.402310,-88.840561
-61737=40.464516,-88.745295
-61738=40.744994,-89.029988
-61739=40.732942,-88.520725
-61740=40.884263,-88.861634
-61741=40.759435,-88.404270
-61742=40.635275,-89.268459
-61743=40.875664,-88.781679
-61744=40.739971,-88.887112
-61745=40.324880,-88.971071
-61747=40.416123,-89.435255
-61748=40.622347,-88.996766
-61749=40.092849,-89.116222
-61750=40.123545,-88.859650
-61751=40.214556,-89.299252
-61752=40.339590,-88.754232
-61753=40.629726,-88.787987
-61754=40.333755,-89.181944
-61755=40.528022,-89.337173
-61756=40.031242,-88.973447
-61759=40.437314,-89.336061
-61760=40.879243,-89.021795
-61761=40.529016,-88.958935
-61764=40.882442,-88.628136
-61769=40.882009,-88.399364
-61770=40.442966,-88.525267
-61771=40.702016,-89.131374
-61772=40.381256,-89.065969
-61773=40.565619,-88.383025
-61774=40.430678,-89.203945
-61775=40.653696,-88.375962
-61776=40.566647,-88.874226
-61777=40.244063,-88.945663
-61778=40.232881,-89.091171
-61801=40.108966,-88.211024
-61802=40.131498,-88.156770
-61810=39.916122,-87.914791
-61811=40.292742,-87.622848
-61812=40.226685,-87.911218
-61813=39.910756,-88.565713
-61814=40.230607,-87.572471
-61815=40.110752,-88.376547
-61816=39.922809,-88.001216
-61817=40.035275,-87.716283
-61818=39.886711,-88.716499
-61820=40.107890,-88.244266
-61821=40.109646,-88.274903
-61822=40.136481,-88.305307
-61830=40.033078,-88.716508
-61831=40.225090,-87.792070
-61832=40.136234,-87.636466
-61833=40.099747,-87.644220
-61834=40.152546,-87.673298
-61839=40.137717,-88.629166
-61840=40.298873,-88.300263
-61841=40.020594,-87.816871
-61842=40.238677,-88.665395
-61843=40.317241,-88.373903
-61844=40.142967,-87.869207
-61845=40.373621,-88.396814
-61846=39.977252,-87.607538
-61847=40.319302,-88.011242
-61848=40.308060,-87.702771
-61849=40.014226,-87.967370
-61850=39.931008,-87.738581
-61851=39.960820,-88.434724
-61852=39.903152,-88.075799
-61853=40.214956,-88.421171
-61854=40.199872,-88.529328
-61855=39.922139,-88.660929
-61856=40.026762,-88.580118
-61857=40.116554,-87.842280
-61858=40.134258,-87.761877
-61859=40.150428,-87.962905
-61862=40.306027,-87.958606
-61863=39.905255,-88.278472
-61864=39.975064,-88.152723
-61865=40.304925,-87.802464
-61866=40.312587,-88.154549
-61870=39.897549,-87.618389
-61871=40.190222,-87.968042
-61872=39.945376,-88.378110
-61873=40.133896,-88.039122
-61874=40.047157,-88.256753
-61875=40.103485,-88.416420
-61876=39.901327,-87.836174
-61877=39.989192,-88.081601
-61878=40.242651,-88.145453
-61880=39.973795,-88.248906
-61882=40.106230,-88.754729
-61883=40.037393,-87.641523
-61884=40.089160,-88.477814
-61910=39.677185,-88.297938
-61911=39.700938,-88.469322
-61912=39.522387,-88.040820
-61913=39.827555,-88.466090
-61914=39.630343,-88.762449
-61917=39.714200,-87.897725
-61919=39.784439,-88.137770
-61920=39.512028,-88.154235
-61924=39.786183,-87.663252
-61925=39.719105,-88.840528
-61928=39.451216,-88.501263
-61929=39.824789,-88.625797
-61930=39.680887,-88.130478
-61931=39.586339,-88.349775
-61932=39.803595,-87.879047
-61933=39.546695,-87.926758
-61936=39.801351,-88.730259
-61937=39.741355,-88.654821
-61938=39.484141,-88.374771
-61940=39.807701,-87.818525
-61941=39.804067,-88.072940
-61942=39.813836,-87.996741
-61943=39.673103,-88.030850
-61944=39.600845,-87.700643
-61949=39.633642,-87.873648
-61951=39.595754,-88.590280
-61953=39.803409,-88.291339
-61955=39.582172,-87.591665
-61956=39.858190,-88.135009
-61957=39.441804,-88.611557
-62001=38.881444,-89.744999
-62002=38.938538,-90.125303
-62006=39.053054,-90.669715
-62009=39.091549,-89.798118
-62010=38.921117,-90.045305
-62011=39.126511,-89.216001
-62012=39.044749,-90.148200
-62013=38.956413,-90.573646
-62014=39.043376,-89.951132
-62015=39.221451,-89.544038
-62016=39.295025,-90.431767
-62017=39.065099,-89.368619
-62018=38.907779,-90.081320
-62019=39.018669,-89.441465
-62021=38.983665,-89.976556
-62022=39.003162,-90.326185
-62023=39.112293,-89.787059
-62024=38.875606,-90.073491
-62025=38.831391,-89.932326
-62027=39.249602,-90.562735
-62028=38.958230,-90.354956
-62030=39.154621,-90.164239
-62031=39.111496,-90.536930
-62032=39.115639,-89.288514
-62033=39.136567,-89.839885
-62034=38.754871,-89.972284
-62035=38.962875,-90.242457
-62036=38.918311,-90.589735
-62037=39.010943,-90.465066
-62040=38.725838,-90.111791
-62044=39.363052,-90.221550
-62045=39.264194,-90.690137
-62046=38.889834,-89.846171
-62047=39.123135,-90.626568
-62048=38.801357,-90.091714
-62049=39.131717,-89.481382
-62050=39.440017,-90.544720
-62051=39.201650,-89.403275
-62052=39.110571,-90.321217
-62053=39.319254,-90.665420
-62054=39.204343,-90.339427
-62056=39.179457,-89.671970
-62058=38.971118,-89.769571
-62059=38.656488,-90.165046
-62060=38.681906,-90.142400
-62061=38.789567,-89.779093
-62062=38.725931,-89.961315
-62063=39.198422,-90.149764
-62065=39.226090,-90.632707
-62067=38.929024,-89.983292
-62069=39.089106,-89.739298
-62070=39.296898,-90.732493
-62074=38.955000,-89.689742
-62075=39.302262,-89.296245
-62076=39.343372,-89.219136
-62077=39.031034,-89.522480
-62078=39.478630,-90.486079
-62079=39.110499,-90.143849
-62080=39.137908,-89.104220
-62081=39.264927,-90.225000
-62082=39.489989,-90.317508
-62083=39.354451,-89.201432
-62084=38.838368,-90.063668
-62085=39.081894,-89.804500
-62086=38.980771,-89.579837
-62087=38.817014,-90.065488
-62088=39.012430,-89.799816
-62089=39.129585,-89.495141
-62090=38.670356,-90.169630
-62091=39.056246,-89.610567
-62092=39.418572,-90.431226
-62093=39.066361,-89.853922
-62094=39.245549,-89.349870
-62095=38.861343,-90.069002
-62097=38.936656,-89.852627
-62098=39.386098,-90.304622
-62201=38.644323,-90.140058
-62203=38.599955,-90.077337
-62204=38.633745,-90.090166
-62205=38.609757,-90.122803
-62206=38.572218,-90.166692
-62207=38.582466,-90.123247
-62208=38.595364,-90.004917
-62214=38.376408,-89.603629
-62215=38.508296,-89.608858
-62216=38.618617,-89.601788
-62217=38.175221,-89.852833
-62218=38.522191,-89.473788
-62219=38.605786,-89.431899
-62220=38.478277,-89.998032
-62221=38.512175,-89.905355
-62223=38.535922,-90.059478
-62225=38.542964,-89.852114
-62226=38.535162,-89.999556
-62230=38.635005,-89.530995
-62231=38.612258,-89.319337
-62232=38.631487,-89.999888
-62233=37.942252,-89.788551
-62234=38.683215,-89.982058
-62236=38.436589,-90.216459
-62237=38.186721,-89.568470
-62238=38.034013,-89.542673
-62239=38.535176,-90.161471
-62240=38.501857,-90.176557
-62241=38.011193,-89.893864
-62242=38.112957,-89.948834
-62243=38.419053,-89.889400
-62244=38.195693,-90.198775
-62245=38.545339,-89.562816
-62246=38.890366,-89.427577
-62248=38.303038,-89.996400
-62249=38.755322,-89.667366
-62250=38.540795,-89.266110
-62253=38.777731,-89.300082
-62254=38.609353,-89.822906
-62255=38.313204,-89.783121
-62257=38.284874,-89.728709
-62258=38.460897,-89.782081
-62260=38.460653,-90.100700
-62261=37.997579,-90.000394
-62262=38.939792,-89.293230
-62263=38.326439,-89.410588
-62264=38.315762,-89.900151
-62265=38.499764,-89.673407
-62266=38.486685,-89.677069
-62268=38.276295,-89.539572
-62269=38.599987,-89.915474
-62271=38.450120,-89.519141
-62272=37.991857,-89.596983
-62273=38.786795,-89.583856
-62274=38.100030,-89.413973
-62275=38.809868,-89.551148
-62277=38.097110,-90.112311
-62278=38.207527,-89.992598
-62279=38.150897,-90.135745
-62280=37.846636,-89.647988
-62281=38.706880,-89.779352
-62282=38.363067,-89.718104
-62284=38.881265,-89.313988
-62285=38.389548,-90.010539
-62286=38.118590,-89.715824
-62288=37.988592,-89.687262
-62289=38.596906,-89.751472
-62292=38.211462,-89.677286
-62293=38.619321,-89.697140
-62294=38.702560,-89.867485
-62295=38.283878,-90.323662
-62297=38.052121,-89.806332
-62298=38.310793,-90.159394
-62301=39.931138,-91.385695
-62305=39.928189,-91.343938
-62311=40.209847,-90.930892
-62312=39.707290,-91.024194
-62313=40.317726,-91.228289
-62314=39.767988,-90.891698
-62316=40.235474,-91.053025
-62319=40.152482,-90.731284
-62320=40.030377,-91.082819
-62321=40.409722,-91.095437
-62323=39.797568,-90.687395
-62324=39.998277,-90.966328
-62325=40.045624,-91.162046
-62326=40.416736,-90.809095
-62330=40.571437,-91.125784
-62334=40.388846,-91.233644
-62336=40.468065,-91.171385
-62338=39.987974,-91.238047
-62339=40.128504,-91.038100
-62340=39.734770,-90.728245
-62341=40.426611,-91.295738
-62343=39.696603,-91.245013
-62344=40.168894,-90.831101
-62345=39.704319,-91.127325
-62346=40.150624,-90.951257
-62347=39.870093,-91.088955
-62348=40.187552,-91.367329
-62349=40.170546,-91.191859
-62351=40.113608,-91.268867
-62352=39.564547,-90.650116
-62353=39.967967,-90.756345
-62354=40.528412,-91.345937
-62355=39.412245,-90.778624
-62356=39.589680,-91.076672
-62357=39.685820,-90.867067
-62358=40.587585,-91.253470
-62359=40.033138,-91.201056
-62360=39.816263,-91.263432
-62361=39.480283,-90.645467
-62362=39.782328,-90.747127
-62363=39.590496,-90.769665
-62365=39.796400,-91.165131
-62366=39.472086,-90.901821
-62367=40.299312,-90.874264
-62370=39.517293,-91.007228
-62373=40.241879,-91.339323
-62374=40.408924,-90.912064
-62375=40.006342,-90.868520
-62376=40.120548,-91.434891
-62378=39.905859,-90.634784
-62379=40.283497,-91.403355
-62380=40.238230,-91.190901
-62401=39.118722,-88.562385
-62410=38.538800,-87.733213
-62411=39.071264,-88.733651
-62413=39.138799,-87.837748
-62414=39.174413,-88.826356
-62417=38.707240,-87.766552
-62418=39.022272,-88.973758
-62419=38.610736,-87.989672
-62420=39.287033,-87.998545
-62421=38.753530,-87.943530
-62422=39.238796,-88.883247
-62423=39.462687,-87.579890
-62424=38.991159,-88.420192
-62425=38.830094,-88.092198
-62426=38.892322,-88.664029
-62427=38.873127,-87.649864
-62428=39.262654,-88.136713
-62431=39.228170,-88.988744
-62432=39.135473,-88.139823
-62433=39.106742,-87.715756
-62434=38.842047,-88.321795
-62436=39.179864,-88.252556
-62438=39.321114,-88.869227
-62439=38.744062,-87.639699
-62440=39.395491,-88.267884
-62441=39.397619,-87.697612
-62442=39.303946,-87.853807
-62443=38.954328,-88.627068
-62444=39.276544,-88.739300
-62445=39.169156,-88.321348
-62446=38.502952,-88.213291
-62447=39.314746,-88.448275
-62448=38.968356,-88.179181
-62449=39.006223,-87.914352
-62450=38.713182,-88.089183
-62451=38.971206,-87.611114
-62452=38.590061,-88.014703
-62454=38.999665,-87.755852
-62458=39.024780,-88.851563
-62459=38.930022,-88.027785
-62460=38.601727,-87.717505
-62461=39.194169,-88.684349
-62462=39.236991,-88.460632
-62463=39.276648,-88.605375
-62465=39.349390,-88.640463
-62466=38.728411,-87.852631
-62467=39.131186,-88.435002
-62468=39.276946,-88.270309
-62469=39.351236,-88.333828
-62471=38.946188,-89.130148
-62473=39.021649,-88.567764
-62474=39.423611,-88.000675
-62475=38.889631,-88.046510
-62476=38.542112,-88.016560
-62477=39.233553,-87.643438
-62478=39.179972,-87.743616
-62479=39.037041,-88.306897
-62480=38.997392,-87.999575
-62481=39.127228,-88.022012
-62501=39.941961,-88.805357
-62510=39.530665,-89.028916
-62512=40.143468,-89.210602
-62513=39.721984,-89.150811
-62514=39.762441,-89.050691
-62515=39.860416,-89.378281
-62517=39.591653,-89.425262
-62518=40.054193,-89.191409
-62519=39.928796,-89.395320
-62520=39.818041,-89.455998
-62521=39.817070,-88.926317
-62522=39.827583,-89.047800
-62523=39.844096,-88.952216
-62526=39.901605,-88.989407
-62530=39.560286,-89.675123
-62531=39.674378,-89.377560
-62532=39.763354,-88.989253
-62533=39.446936,-89.615992
-62534=39.529684,-88.800594
-62535=39.924871,-88.968976
-62536=39.629013,-89.652261
-62537=39.853267,-89.094760
-62538=39.356412,-89.519915
-62539=39.866030,-89.251291
-62540=39.583957,-89.417493
-62541=39.965366,-89.355146
-62543=39.971422,-89.152233
-62544=39.706394,-88.967836
-62545=39.756717,-89.388304
-62546=39.431455,-89.445923
-62547=39.770482,-89.242253
-62548=39.981254,-89.283539
-62549=39.771029,-88.867155
-62550=39.617876,-88.989628
-62551=39.855374,-89.158927
-62553=39.266267,-89.107186
-62554=39.944478,-88.882261
-62555=39.462980,-89.210466
-62556=39.474974,-89.375213
-62557=39.396869,-89.104534
-62558=39.586712,-89.549853
-62560=39.298630,-89.602818
-62561=39.863895,-89.501913
-62563=39.719259,-89.496252
-62565=39.411777,-88.804095
-62567=39.645213,-89.189850
-62568=39.561004,-89.289158
-62570=39.588581,-89.448004
-62571=39.381008,-88.960225
-62572=39.360937,-89.701524
-62573=39.945409,-89.074133
-62601=39.749094,-90.039255
-62610=39.558844,-90.434858
-62611=39.884116,-90.398177
-62612=39.896048,-90.063158
-62613=39.997432,-89.665941
-62615=39.585061,-89.757381
-62617=40.156822,-90.169890
-62618=39.982598,-90.402049
-62621=39.726720,-90.520580
-62622=39.978177,-90.353449
-62624=40.156569,-90.363732
-62625=39.910049,-89.687458
-62626=39.282802,-89.883939
-62627=40.059128,-90.111077
-62628=39.779463,-90.403198
-62629=39.677477,-89.716922
-62630=39.254828,-90.090501
-62631=39.827417,-90.354199
-62633=40.223540,-89.870793
-62634=40.011749,-89.454744
-62635=40.296711,-89.471453
-62638=39.609301,-90.081236
-62639=40.037670,-90.486012
-62640=39.428260,-89.804994
-62642=40.093598,-89.724853
-62643=40.242994,-89.451703
-62644=40.287943,-90.054538
-62649=39.357528,-90.070237
-62650=39.734542,-90.223047
-62655=40.169931,-89.986537
-62656=40.140745,-89.370598
-62661=39.668014,-89.826988
-62663=39.540551,-90.328759
-62664=40.212562,-89.724144
-62665=39.816949,-90.529555
-62666=40.086111,-89.543875
-62667=39.487765,-89.992297
-62668=39.565113,-90.238419
-62670=39.742995,-89.891711
-62671=40.172880,-89.558457
-62672=39.398009,-89.804455
-62673=40.085543,-89.978691
-62674=39.441118,-90.023313
-62675=40.036029,-89.847921
-62677=39.852210,-89.883178
-62681=40.136241,-90.542754
-62682=40.298725,-89.630971
-62684=39.909609,-89.586366
-62685=39.139883,-90.002766
-62688=39.945973,-89.923096
-62689=39.533670,-89.761848
-62690=39.505912,-89.762809
-62691=39.958257,-90.210428
-62692=39.583520,-89.939137
-62693=39.958048,-89.516172
-62694=39.622780,-90.477118
-62695=39.627088,-90.223650
-62701=39.800708,-89.648813
-62702=39.824137,-89.641940
-62703=39.762432,-89.629838
-62704=39.773498,-89.683840
-62707=39.854960,-89.650458
-62711=39.765466,-89.729326
-62712=39.753814,-89.579701
-62801=38.512863,-89.141837
-62803=38.453336,-89.295029
-62806=38.382237,-88.076602
-62807=38.744774,-88.940675
-62808=38.306180,-89.188699
-62809=38.268646,-88.290948
-62810=38.201276,-88.752318
-62811=38.382970,-87.905586
-62812=37.997347,-88.916946
-62814=38.378397,-88.731915
-62815=38.458352,-87.966440
-62816=38.189765,-88.922922
-62817=37.954474,-88.476107
-62818=38.383278,-87.965346
-62819=37.977311,-89.016586
-62820=38.242402,-88.237445
-62821=38.071022,-88.129673
-62822=37.977539,-89.056451
-62823=38.528520,-88.445583
-62824=38.669452,-88.341669
-62825=37.998887,-89.068659
-62827=38.170656,-88.047709
-62828=38.194537,-88.601621
-62829=37.973558,-88.489540
-62830=38.443409,-88.967632
-62831=38.234969,-89.222732
-62832=38.011822,-89.248910
-62833=38.361723,-88.164177
-62835=38.106048,-88.321638
-62836=38.094569,-88.805455
-62837=38.360406,-88.352856
-62838=38.883771,-88.739995
-62839=38.665702,-88.501238
-62841=37.859261,-89.000174
-62842=38.467672,-88.371044
-62843=38.382210,-88.199061
-62844=38.262729,-88.043467
-62846=38.142517,-88.868153
-62848=38.434116,-89.166535
-62849=38.584940,-88.773698
-62850=38.494727,-88.594820
-62851=38.427545,-88.659954
-62852=38.350223,-87.866785
-62853=38.516107,-88.912193
-62854=38.769938,-88.801043
-62856=37.956409,-88.838457
-62858=38.811813,-88.492950
-62859=38.081344,-88.532699
-62860=38.041367,-88.731934
-62861=38.030335,-88.022988
-62862=38.219114,-88.299337
-62863=38.415834,-87.859872
-62864=38.330493,-88.902519
-62865=37.972104,-89.080092
-62867=37.912266,-88.098946
-62868=38.677710,-88.228125
-62869=37.956600,-88.277773
-62870=38.635153,-89.053057
-62871=37.875359,-88.272861
-62872=38.268168,-88.809735
-62874=37.918705,-88.976028
-62875=38.755452,-89.121198
-62876=38.276413,-89.195732
-62877=38.392824,-89.211204
-62878=38.574513,-88.507898
-62879=38.764906,-88.360495
-62880=38.866987,-88.884389
-62881=38.635332,-88.927356
-62882=38.636254,-89.118646
-62883=38.168415,-89.120371
-62884=38.083366,-89.056171
-62885=38.859059,-89.054212
-62886=38.380898,-88.539227
-62887=38.184525,-88.361960
-62888=38.130976,-89.234469
-62889=38.456539,-88.823598
-62890=37.906205,-88.737966
-62891=38.015023,-89.042451
-62892=38.808355,-89.075972
-62893=38.465810,-89.030168
-62894=38.208520,-89.036709
-62895=38.305545,-88.555138
-62896=37.890492,-88.915973
-62897=38.094608,-88.898862
-62898=38.350379,-89.060166
-62899=38.618890,-88.642463
-62901=37.739004,-89.209109
-62902=37.662587,-89.117546
-62903=37.674118,-89.276234
-62905=37.557710,-89.367362
-62906=37.462109,-89.172530
-62907=37.872468,-89.497450
-62908=37.310226,-88.864901
-62910=37.153109,-88.534459
-62912=37.476199,-89.032407
-62914=37.061169,-89.218249
-62915=37.783608,-89.119606
-62916=37.930677,-89.568714
-62917=37.693416,-88.651628
-62918=37.789529,-89.088131
-62919=37.524023,-88.138368
-62920=37.550074,-89.237778
-62921=37.801912,-89.084262
-62922=37.620754,-88.814807
-62923=37.346432,-89.016004
-62924=37.823000,-89.198023
-62926=37.366678,-89.131409
-62927=37.934662,-89.242307
-62928=37.482396,-88.575321
-62930=37.837843,-88.441090
-62931=37.521430,-88.292023
-62932=37.892867,-89.213656
-62933=37.772371,-89.025656
-62934=37.707239,-88.358633
-62935=37.839547,-88.634847
-62938=37.381459,-88.539420
-62939=37.551161,-88.981647
-62940=37.738486,-89.471814
-62941=37.239258,-88.986107
-62942=37.649362,-89.472870
-62943=37.357564,-88.750384
-62946=37.709862,-88.538845
-62947=37.528691,-88.453991
-62948=37.817138,-89.030678
-62949=37.827923,-89.144607
-62950=37.746447,-89.560711
-62951=37.823971,-88.929329
-62952=37.417455,-89.343450
-62953=37.209471,-88.849519
-62954=37.692088,-88.279548
-62956=37.279795,-88.938359
-62957=37.312496,-89.426131
-62958=37.630995,-89.230987
-62959=37.718218,-88.910435
-62960=37.225299,-88.709403
-62961=37.338171,-89.254854
-62962=37.075360,-89.335889
-62963=37.094559,-89.169921
-62964=37.129263,-89.224360
-62965=37.767319,-88.520616
-62966=37.775136,-89.350979
-62967=37.584310,-88.736917
-62969=37.154393,-89.342299
-62970=37.222203,-89.090532
-62972=37.542288,-88.791037
-62974=37.781202,-88.782992
-62975=37.633773,-89.387589
-62976=37.221663,-89.204377
-62977=37.851778,-88.545923
-62979=37.822024,-88.186317
-62982=37.424825,-88.365319
-62983=37.902971,-89.121219
-62984=37.708208,-88.149138
-62985=37.458595,-88.685445
-62987=37.618725,-88.660351
-62988=37.259641,-89.289268
-62990=37.228582,-89.398842
-62992=37.280117,-89.165805
-62994=37.906728,-89.342358
-62995=37.438053,-88.877680
-62996=37.157531,-89.151028
-62997=37.982297,-89.590441
-62998=37.512070,-89.458153
-62999=37.869529,-89.056407
-63005=38.644214,-90.651407
-63010=38.430371,-90.392100
-63011=38.603678,-90.559295
-63012=38.347377,-90.453537
-63013=38.406982,-91.151005
-63014=38.651805,-91.313445
-63015=38.405785,-90.759427
-63016=38.352457,-90.634964
-63017=38.651309,-90.531216
-63019=38.226362,-90.376992
-63020=38.100971,-90.565549
-63021=38.569840,-90.545689
-63023=38.268630,-90.698824
-63025=38.487530,-90.620119
-63026=38.503348,-90.460968
-63028=38.137919,-90.392182
-63030=38.113945,-90.727087
-63031=38.812046,-90.353620
-63033=38.800147,-90.274817
-63034=38.848304,-90.288423
-63036=37.982007,-90.367450
-63037=38.428728,-91.303851
-63038=38.577047,-90.667758
-63039=38.494496,-90.839295
-63040=38.572950,-90.635031
-63041=38.260132,-90.787529
-63042=38.784130,-90.383731
-63043=38.729739,-90.461383
-63044=38.772791,-90.430046
-63045=38.769205,-90.463466
-63047=38.195501,-90.487417
-63048=38.257558,-90.393130
-63049=38.481047,-90.531413
-63050=38.258066,-90.579790
-63051=38.377775,-90.576636
-63052=38.388903,-90.436886
-63053=38.366588,-90.363927
-63055=38.529619,-90.835038
-63056=38.399680,-91.215039
-63057=38.343300,-90.405572
-63060=38.260590,-90.875985
-63061=38.272892,-90.812221
-63068=38.565884,-91.244062
-63069=38.490835,-90.732019
-63070=38.287955,-90.428585
-63071=38.150005,-90.821120
-63072=38.369617,-90.813033
-63073=38.588797,-90.782846
-63074=38.726499,-90.388703
-63077=38.329075,-90.984475
-63079=38.260582,-91.099799
-63080=38.192428,-91.075962
-63084=38.421900,-91.019289
-63087=38.013279,-90.451539
-63088=38.549620,-90.499888
-63089=38.458280,-90.889571
-63090=38.535267,-91.048832
-63091=38.371663,-91.393223
-63101=38.631558,-90.192610
-63102=38.635181,-90.187001
-63103=38.629712,-90.216863
-63104=38.611126,-90.214086
-63105=38.644308,-90.328202
-63106=38.644397,-90.208316
-63107=38.663921,-90.212106
-63108=38.644803,-90.253417
-63109=38.584601,-90.294432
-63110=38.625794,-90.266998
-63111=38.558084,-90.250008
-63112=38.658933,-90.282670
-63113=38.658004,-90.247592
-63114=38.702256,-90.363674
-63115=38.682188,-90.239975
-63116=38.580814,-90.264108
-63117=38.630765,-90.330852
-63118=38.592440,-90.226241
-63119=38.588449,-90.351341
-63120=38.690576,-90.262088
-63121=38.707192,-90.301332
-63122=38.581190,-90.417981
-63123=38.547432,-90.328109
-63124=38.638103,-90.380268
-63125=38.518452,-90.293514
-63126=38.549656,-90.378592
-63127=38.534493,-90.417387
-63128=38.492060,-90.386300
-63129=38.458675,-90.316506
-63130=38.665066,-90.325307
-63131=38.617391,-90.444197
-63132=38.676026,-90.377994
-63133=38.680917,-90.305996
-63134=38.740404,-90.345956
-63135=38.749681,-90.298718
-63136=38.743304,-90.259776
-63137=38.750543,-90.211660
-63138=38.801051,-90.192397
-63139=38.610412,-90.291723
-63140=38.738381,-90.323063
-63141=38.658285,-90.458195
-63143=38.611729,-90.321432
-63144=38.619024,-90.347719
-63146=38.697686,-90.474667
-63147=38.694017,-90.216219
-63155=38.627871,-90.205457
-63301=38.858035,-90.463316
-63303=38.739882,-90.543744
-63304=38.703508,-90.667522
-63330=39.271336,-90.804270
-63332=38.596868,-90.894029
-63333=39.033743,-91.309018
-63334=39.297583,-91.188309
-63336=39.331804,-90.934034
-63339=39.344378,-91.371349
-63341=38.660634,-90.806786
-63343=39.154813,-90.828184
-63344=39.235029,-91.003684
-63345=39.277056,-91.569141
-63347=39.069871,-90.766733
-63348=38.785461,-90.945226
-63349=38.974386,-91.150965
-63350=38.901096,-91.361708
-63351=38.862373,-91.312739
-63352=39.247787,-91.658947
-63353=39.454038,-91.113041
-63357=38.661018,-91.086905
-63359=39.151211,-91.356191
-63361=38.965146,-91.552972
-63362=38.922770,-90.869890
-63363=38.883906,-91.454906
-63366=38.857443,-90.725492
-63367=38.774327,-90.795044
-63368=38.751295,-90.729626
-63369=38.935145,-90.763296
-63370=39.091510,-91.240463
-63373=38.929549,-90.385340
-63376=38.798916,-90.606645
-63377=39.110313,-91.103390
-63379=39.001027,-90.995571
-63381=38.986402,-91.253305
-63382=39.305387,-91.495927
-63383=38.804365,-91.193705
-63384=39.092528,-91.553592
-63385=38.796985,-90.857245
-63386=38.870205,-90.219539
-63387=39.183555,-91.016734
-63388=38.875111,-91.757122
-63389=39.010559,-90.774110
-63390=38.803397,-91.040068
-63401=39.690673,-91.456616
-63430=40.390626,-91.542638
-63431=39.740221,-92.313960
-63432=40.497239,-91.993928
-63433=39.531222,-91.129374
-63434=39.909786,-91.947237
-63435=40.199137,-91.583680
-63436=39.505732,-91.552510
-63437=39.728217,-92.220654
-63438=39.968514,-91.687967
-63439=39.801934,-91.860563
-63440=39.987475,-91.758834
-63441=39.480325,-91.312032
-63443=39.668520,-91.882487
-63445=40.395662,-91.732212
-63446=40.130413,-91.987206
-63447=40.097022,-91.903400
-63448=40.024661,-91.557038
-63450=39.668909,-92.150260
-63451=39.903783,-92.205892
-63452=40.093130,-91.790052
-63453=40.510756,-91.867256
-63454=39.922981,-91.650377
-63456=39.656470,-91.728331
-63457=40.165850,-91.711889
-63458=39.992451,-92.019907
-63459=39.579374,-91.369252
-63460=39.999269,-92.207897
-63461=39.790536,-91.568855
-63462=39.419207,-91.701130
-63463=39.851433,-91.780946
-63464=39.980885,-92.083595
-63465=40.527638,-91.679549
-63467=39.648597,-91.270667
-63468=39.684064,-92.014629
-63469=39.825851,-92.041218
-63471=39.907583,-91.483476
-63472=40.404428,-91.585849
-63473=40.246853,-91.783858
-63474=40.349765,-91.893573
-63501=40.166289,-92.591210
-63530=39.907620,-92.455054
-63531=40.300263,-92.241036
-63532=39.760888,-92.572883
-63533=40.199773,-92.392226
-63534=39.737309,-92.648407
-63535=40.559957,-92.664954
-63536=40.485291,-92.355927
-63537=40.149926,-92.153575
-63538=39.953937,-92.679871
-63539=39.927455,-92.751567
-63540=40.107373,-92.410396
-63541=40.504170,-92.627042
-63543=40.352420,-92.014125
-63544=40.243219,-92.841064
-63545=40.272236,-92.964521
-63546=40.337736,-92.510989
-63547=40.135832,-92.297714
-63548=40.536366,-92.489160
-63549=40.018475,-92.486258
-63551=40.500565,-92.735589
-63552=39.763163,-92.436530
-63555=40.486404,-92.193179
-63556=40.182985,-93.127290
-63557=39.970985,-92.878772
-63558=39.749409,-92.751152
-63559=40.219823,-92.751687
-63560=40.359626,-93.120409
-63561=40.419561,-92.540863
-63563=40.304552,-92.065941
-63565=40.480620,-92.947276
-63566=40.043275,-92.925622
-63567=40.418795,-92.719744
-63601=37.824047,-90.544546
-63620=37.381730,-90.651947
-63621=37.478367,-90.610240
-63622=37.790992,-90.907431
-63623=37.685055,-90.882590
-63624=37.755635,-90.633945
-63625=37.554880,-90.971749
-63626=38.069983,-90.686530
-63627=38.052858,-90.267404
-63628=37.945701,-90.524737
-63629=37.408644,-91.236844
-63630=38.029627,-90.717498
-63631=37.754571,-90.788037
-63633=37.442584,-91.020136
-63636=37.293641,-90.575534
-63637=37.712286,-90.518346
-63638=37.214843,-91.019124
-63640=37.754674,-90.380562
-63645=37.536749,-90.338784
-63648=37.825109,-90.695642
-63650=37.623434,-90.609393
-63653=37.860286,-90.591590
-63654=37.487151,-90.857524
-63655=37.388946,-90.187025
-63656=37.593225,-90.797305
-63660=37.909248,-90.688778
-63662=37.532424,-90.050025
-63663=37.622900,-90.644795
-63664=37.900001,-90.927664
-63665=37.292950,-90.843941
-63666=37.402977,-91.055939
-63670=37.885845,-90.161531
-63673=37.841831,-89.991058
-63674=38.036656,-90.659306
-63675=37.314474,-90.694768
-63701=37.335872,-89.575814
-63703=37.274934,-89.540005
-63730=37.098288,-89.917161
-63732=37.594135,-89.575930
-63735=36.977711,-89.775684
-63736=37.093180,-89.510300
-63738=37.089840,-89.957230
-63739=37.358550,-89.800258
-63740=37.175369,-89.680721
-63742=37.158665,-89.446141
-63743=37.521279,-89.816136
-63744=37.196001,-89.738256
-63745=37.239802,-89.690157
-63746=37.707841,-89.694828
-63747=37.556375,-89.799679
-63748=37.668926,-89.626315
-63750=37.153220,-90.200739
-63751=37.275815,-90.128182
-63755=37.439458,-89.640800
-63758=37.187019,-89.555945
-63760=37.242838,-89.910426
-63763=37.064063,-90.173309
-63764=37.319764,-89.990229
-63766=37.430896,-89.836880
-63767=37.046217,-89.611202
-63769=37.522403,-89.736581
-63770=37.597515,-89.703017
-63771=37.071612,-89.703733
-63774=37.089468,-89.764251
-63775=37.711324,-89.877614
-63780=37.188716,-89.514476
-63781=37.538453,-89.928357
-63782=37.122136,-90.035305
-63783=37.607268,-89.679848
-63784=36.984534,-89.691550
-63785=37.266837,-89.822213
-63787=37.121082,-90.133127
-63801=36.904912,-89.618414
-63820=36.824262,-89.325574
-63821=36.047674,-90.239110
-63822=36.665946,-89.998831
-63823=36.895007,-89.460378
-63824=37.004918,-89.526686
-63825=36.931421,-89.945759
-63826=36.170361,-89.841735
-63827=36.256012,-89.887342
-63828=36.750369,-89.691841
-63829=36.035510,-90.308867
-63830=36.135350,-89.690139
-63833=36.650344,-89.730765
-63834=36.914293,-89.274233
-63837=36.461978,-89.992151
-63839=36.044736,-89.813578
-63841=36.771316,-89.984451
-63845=36.712199,-89.325952
-63846=36.826259,-89.799347
-63847=36.439950,-90.038933
-63848=36.444495,-89.906147
-63849=36.138609,-89.978779
-63851=36.259153,-89.717229
-63852=36.367334,-90.015154
-63853=36.064740,-89.870321
-63855=36.069107,-90.056809
-63857=36.224266,-90.045760
-63860=36.652181,-89.594665
-63862=36.614001,-89.641714
-63863=36.566783,-89.976753
-63866=36.528537,-89.605643
-63867=36.732716,-89.551881
-63868=36.849167,-89.693430
-63869=36.597025,-89.482225
-63870=36.621139,-89.857202
-63873=36.422873,-89.671168
-63874=36.543071,-89.822641
-63876=36.132276,-90.170310
-63877=36.075721,-89.858336
-63878=36.503021,-89.822358
-63879=36.359516,-89.812721
-63880=36.326036,-90.023873
-63882=36.914990,-89.222879
-63901=36.759059,-90.460058
-63902=36.767620,-90.427107
-63932=36.683242,-90.255781
-63933=36.528179,-90.106956
-63934=37.198621,-90.368652
-63935=36.675217,-90.921459
-63936=36.808925,-90.129028
-63937=36.935094,-90.783828
-63939=36.651164,-90.673885
-63940=36.768003,-90.227674
-63941=36.885592,-91.159046
-63942=36.554015,-91.074164
-63943=36.827168,-90.788984
-63944=37.113156,-90.359498
-63945=36.632973,-90.542740
-63951=37.114896,-90.257851
-63952=37.009877,-90.642740
-63953=36.587245,-90.637706
-63954=36.557494,-90.471256
-63955=36.603559,-90.680881
-63956=37.213951,-90.521728
-63957=37.122980,-90.648266
-63960=36.956940,-90.131465
-63961=36.567208,-90.277076
-63962=36.844028,-90.281507
-63964=37.262946,-90.414978
-63965=36.965170,-91.021293
-63966=36.979507,-90.264717
-63967=36.940696,-90.485325
-64001=39.114216,-93.540908
-64011=38.959756,-94.067926
-64012=38.789354,-94.543625
-64014=39.006760,-94.255136
-64015=39.015059,-94.312603
-64016=39.119616,-94.215755
-64017=39.195620,-94.024205
-64018=39.454719,-94.721261
-64019=38.777542,-93.865281
-64020=38.967425,-93.599784
-64021=39.104490,-93.619004
-64022=39.194364,-93.671804
-64024=39.327618,-94.226953
-64029=39.005925,-94.216381
-64030=38.881359,-94.522744
-64034=38.858551,-94.297554
-64035=39.290513,-93.812219
-64036=39.193758,-93.936807
-64037=39.054756,-93.732729
-64040=38.723760,-93.987660
-64048=39.437763,-94.363579
-64050=39.115860,-94.410550
-64052=39.073415,-94.450236
-64053=39.109351,-94.465282
-64054=39.110355,-94.439036
-64055=39.050847,-94.397998
-64056=39.113273,-94.319762
-64057=39.071957,-94.319308
-64058=39.173856,-94.313560
-64060=39.368922,-94.363744
-64061=38.783394,-94.084862
-64062=39.455731,-94.163205
-64063=38.911994,-94.351673
-64064=38.974484,-94.345181
-64065=38.952177,-94.404444
-64066=39.135995,-94.125836
-64067=39.154284,-93.836041
-64068=39.258315,-94.389653
-64070=38.886623,-94.148890
-64071=39.027828,-93.831717
-64072=39.242022,-94.293828
-64074=39.083651,-94.071296
-64075=38.999631,-94.145273
-64076=38.983162,-93.948056
-64077=39.224578,-94.139126
-64078=38.702692,-94.458131
-64079=39.359017,-94.793273
-64080=38.764216,-94.260423
-64081=38.907046,-94.403932
-64082=38.862111,-94.408320
-64083=38.797393,-94.445534
-64084=39.385681,-94.069434
-64085=39.334841,-93.945283
-64086=38.899171,-94.272385
-64088=39.151558,-94.181903
-64089=39.393886,-94.560900
-64090=38.759359,-94.163578
-64092=39.217578,-94.811119
-64093=38.792472,-93.730884
-64096=39.208822,-93.552504
-64097=39.104909,-93.984271
-64098=39.468076,-94.891475
-64101=39.103463,-94.600614
-64102=39.093844,-94.604041
-64105=39.104725,-94.590375
-64106=39.104839,-94.572176
-64108=39.084895,-94.586470
-64109=39.065794,-94.566343
-64110=39.034503,-94.572806
-64111=39.057580,-94.593879
-64112=39.035975,-94.595190
-64113=39.014065,-94.595652
-64114=38.957802,-94.598599
-64116=39.148811,-94.575242
-64117=39.164449,-94.522657
-64118=39.212864,-94.573951
-64119=39.209967,-94.514665
-64120=39.135007,-94.514957
-64123=39.114346,-94.523234
-64124=39.107225,-94.539212
-64125=39.106463,-94.494153
-64126=39.091093,-94.495978
-64127=39.089138,-94.538537
-64128=39.065566,-94.534623
-64129=39.047897,-94.491958
-64130=39.033683,-94.540754
-64131=38.936041,-94.585011
-64132=38.988304,-94.542261
-64133=39.013884,-94.457720
-64134=38.928031,-94.487653
-64136=39.012794,-94.405733
-64137=38.935360,-94.542668
-64138=38.967119,-94.467927
-64139=38.968342,-94.416366
-64145=38.873529,-94.594020
-64146=38.882969,-94.571960
-64147=38.852781,-94.550532
-64149=38.865403,-94.471632
-64150=39.172185,-94.632532
-64151=39.215355,-94.630084
-64152=39.219074,-94.724733
-64153=39.274581,-94.726643
-64154=39.279265,-94.637168
-64155=39.272316,-94.580107
-64156=39.273306,-94.519995
-64157=39.279003,-94.483504
-64158=39.234381,-94.482919
-64161=39.158585,-94.450909
-64163=39.344563,-94.688192
-64164=39.329423,-94.627074
-64165=39.321428,-94.576265
-64166=39.322075,-94.523041
-64167=39.320589,-94.487141
-64192=38.960455,-94.522029
-64401=39.633348,-94.715618
-64402=40.257169,-94.327329
-64420=40.485340,-94.288679
-64421=39.912325,-94.935909
-64422=39.886537,-94.499069
-64423=40.192871,-94.851656
-64424=40.261889,-94.036075
-64426=40.521710,-93.859518
-64427=40.111362,-94.833155
-64428=40.436610,-95.093894
-64429=39.736726,-94.225807
-64430=39.838990,-94.565539
-64431=40.528193,-94.996257
-64432=40.263494,-94.668692
-64433=40.238844,-94.680901
-64434=40.261855,-94.733515
-64436=39.857727,-94.691859
-64437=40.122385,-95.347485
-64438=40.158583,-94.413766
-64439=39.524413,-94.753373
-64440=39.585134,-94.910338
-64441=40.392917,-94.271300
-64442=40.489881,-94.011474
-64443=39.742886,-94.653163
-64444=39.485425,-94.648031
-64445=40.540243,-95.149108
-64446=40.317092,-95.414049
-64448=39.596748,-94.822765
-64449=40.041200,-94.978475
-64451=40.001541,-95.193666
-64453=40.345019,-94.480161
-64454=39.596504,-94.592521
-64455=40.180658,-95.005056
-64456=40.493138,-94.391080
-64457=40.162713,-94.682355
-64458=40.514955,-94.145198
-64459=39.928729,-94.645016
-64461=40.521587,-94.807190
-64463=40.062598,-94.482585
-64465=39.549898,-94.287621
-64466=40.166220,-95.106267
-64467=40.401658,-94.162947
-64468=40.343552,-94.881028
-64469=39.918684,-94.365008
-64470=40.160140,-95.229188
-64471=40.253201,-94.192879
-64473=39.979261,-95.076209
-64474=39.754427,-94.379661
-64475=40.436279,-94.623615
-64476=40.452969,-94.830590
-64477=39.575462,-94.452859
-64479=40.333987,-94.647005
-64480=40.054115,-94.705477
-64481=40.353947,-93.887733
-64482=40.464970,-95.546378
-64483=40.038891,-94.839109
-64484=39.561200,-95.017149
-64485=39.949638,-94.817887
-64486=40.530389,-94.624411
-64487=40.300935,-95.095911
-64489=40.234191,-94.548227
-64490=39.731215,-94.514713
-64491=40.446045,-95.358054
-64492=39.470667,-94.532644
-64493=39.635053,-94.318186
-64494=39.990658,-94.609645
-64496=40.481159,-95.645933
-64497=39.930459,-94.219852
-64498=40.539605,-95.321933
-64499=40.393864,-94.439790
-64501=39.765442,-94.844432
-64503=39.748884,-94.843728
-64504=39.691247,-94.905924
-64505=39.846747,-94.823880
-64506=39.789915,-94.803312
-64507=39.728509,-94.763541
-64601=39.805381,-93.579097
-64620=39.894531,-94.089951
-64622=39.492550,-93.542717
-64623=39.469802,-93.333256
-64624=39.562364,-93.784471
-64625=39.744043,-93.802883
-64628=39.796166,-93.041516
-64630=40.037666,-93.156885
-64631=39.824250,-92.866091
-64632=40.468986,-93.766788
-64633=39.356863,-93.484492
-64635=39.952780,-93.433845
-64636=40.110098,-93.980463
-64637=39.557997,-93.915091
-64638=39.617643,-93.620136
-64639=39.391732,-93.222763
-64640=39.898401,-93.936183
-64641=40.175889,-93.399564
-64642=40.170792,-93.836449
-64643=39.613045,-93.369158
-64644=39.735438,-93.975183
-64645=40.300070,-93.322320
-64646=40.098954,-93.308980
-64647=40.031136,-93.984725
-64648=39.989061,-93.802749
-64649=39.773347,-94.086390
-64650=39.635657,-94.071505
-64651=39.766804,-93.185672
-64652=40.021508,-93.418192
-64653=39.897256,-93.212092
-64654=39.840341,-93.773159
-64655=40.446530,-93.257493
-64656=39.676910,-93.692789
-64657=40.127046,-94.227602
-64658=39.662965,-92.917299
-64659=39.784733,-93.298316
-64660=39.564426,-93.098745
-64661=40.536056,-93.517477
-64664=39.749706,-93.651288
-64667=40.385743,-93.331269
-64668=39.355068,-93.704415
-64670=40.047587,-94.141528
-64671=39.531881,-94.050775
-64672=40.544835,-93.255082
-64673=40.374309,-93.586901
-64674=39.962633,-93.137733
-64676=39.638456,-93.058469
-64679=40.237511,-93.580329
-64681=39.645510,-93.230492
-64682=39.549487,-93.495161
-64683=40.078432,-93.601050
-64686=39.748701,-93.623824
-64688=39.817132,-93.375060
-64689=39.872556,-94.150128
-64701=38.624513,-94.329255
-64720=38.404674,-94.343478
-64722=38.278074,-94.542511
-64723=38.361639,-94.559592
-64724=38.153210,-94.006638
-64725=38.490658,-94.372655
-64726=38.527153,-93.921941
-64728=37.703047,-94.523816
-64730=38.259262,-94.300276
-64733=38.584124,-93.823768
-64734=38.654734,-94.559334
-64735=38.367806,-93.743646
-64738=37.901664,-93.651689
-64739=38.511280,-94.096624
-64740=38.227505,-93.702953
-64741=37.818234,-94.562345
-64742=38.508095,-94.541195
-64743=38.668454,-94.232284
-64744=37.848197,-93.978926
-64745=38.171889,-94.497226
-64746=38.602148,-94.496726
-64747=38.578507,-94.182338
-64748=37.359673,-94.090739
-64750=37.940899,-94.101696
-64752=38.065018,-94.563468
-64755=37.337416,-94.308691
-64756=37.619030,-94.015167
-64759=37.521220,-94.257040
-64761=38.608025,-93.675642
-64762=37.546659,-94.501483
-64763=38.143551,-93.701939
-64765=37.995885,-94.443796
-64767=37.737357,-94.201452
-64769=37.480688,-94.568309
-64770=38.281451,-93.989507
-64771=37.751185,-94.469049
-64772=37.832567,-94.334697
-64776=38.049565,-93.663707
-64778=37.919372,-94.479190
-64779=38.092018,-94.396212
-64780=38.059202,-94.046961
-64781=37.983177,-93.810586
-64783=38.005239,-94.109400
-64784=37.664651,-94.234169
-64788=38.423906,-94.019548
-64790=37.927026,-94.220647
-64801=37.106902,-94.497647
-64804=37.021691,-94.510899
-64830=37.231391,-94.410370
-64831=36.659128,-94.456762
-64832=37.340209,-94.573598
-64833=37.193810,-94.129842
-64834=37.187875,-94.573612
-64835=37.148444,-94.437484
-64836=37.189255,-94.279255
-64840=37.016570,-94.336063
-64841=37.078348,-94.416752
-64842=36.789007,-94.105994
-64843=36.733895,-94.443926
-64844=36.916226,-94.238563
-64847=36.593982,-94.440999
-64848=37.171779,-93.989626
-64849=37.254904,-94.444881
-64850=36.860533,-94.401675
-64854=36.545988,-94.455884
-64855=37.295478,-94.485320
-64856=36.565948,-94.269907
-64857=37.245854,-94.438585
-64858=36.900862,-94.530534
-64859=37.162761,-94.137989
-64861=36.695352,-94.154072
-64862=37.100665,-94.119523
-64863=36.559367,-94.583340
-64865=36.842677,-94.581306
-64866=36.869577,-94.156423
-64867=36.728044,-94.235106
-64870=37.182917,-94.477775
-64873=37.013395,-94.045714
-64874=36.758474,-94.054314
-65001=38.290230,-92.010272
-65010=38.793269,-92.237172
-65011=38.388782,-92.711775
-65013=38.283045,-91.767829
-65014=38.316176,-91.631137
-65016=38.561130,-91.935726
-65017=38.092307,-92.494503
-65018=38.620046,-92.563126
-65020=38.006239,-92.780644
-65023=38.653901,-92.396296
-65024=38.619249,-91.756356
-65025=38.675948,-92.690020
-65026=38.324361,-92.564791
-65032=38.346516,-92.378407
-65034=38.559677,-92.818106
-65035=38.363815,-91.946963
-65037=38.243419,-92.849146
-65039=38.711067,-92.296641
-65040=38.348240,-92.284439
-65041=38.633020,-91.489758
-65043=38.622999,-92.102276
-65046=38.786494,-92.488423
-65047=38.150970,-92.578409
-65048=38.373120,-92.040605
-65049=38.199500,-92.674809
-65050=38.547442,-92.688464
-65051=38.469165,-91.797166
-65052=38.083492,-92.617340
-65053=38.527031,-92.378991
-65054=38.488994,-91.949439
-65058=38.249570,-92.127898
-65059=38.713292,-91.869917
-65061=38.599503,-91.635510
-65062=38.501210,-91.659734
-65063=38.725915,-92.087514
-65064=38.402845,-92.471423
-65065=38.134934,-92.662853
-65066=38.349483,-91.484846
-65067=38.761263,-91.701808
-65068=38.825749,-92.614762
-65069=38.753012,-91.589785
-65072=38.266773,-92.729350
-65074=38.484301,-92.468144
-65075=38.237326,-92.250624
-65076=38.379486,-92.194056
-65077=38.769625,-91.818502
-65078=38.389049,-93.024237
-65079=38.149671,-92.749845
-65080=38.636261,-91.978927
-65081=38.644434,-92.782268
-65082=38.219313,-92.421422
-65083=38.140896,-92.446459
-65084=38.434073,-92.856392
-65085=38.405742,-92.083782
-65101=38.495766,-92.134532
-65109=38.573883,-92.277794
-65201=38.900944,-92.238425
-65202=39.020370,-92.296535
-65203=38.884324,-92.398565
-65215=38.953173,-92.320850
-65230=39.290548,-92.702593
-65231=39.016540,-91.897785
-65232=39.160695,-91.756000
-65233=38.917096,-92.728078
-65236=39.440542,-93.065958
-65237=38.766639,-92.793644
-65239=39.533520,-92.432043
-65240=39.220638,-92.125561
-65243=39.268429,-92.354421
-65244=39.484800,-92.659485
-65246=39.378901,-92.996616
-65247=39.635081,-92.470867
-65248=39.138606,-92.660133
-65250=39.030100,-92.840101
-65251=38.841849,-91.977132
-65254=39.210375,-92.853371
-65255=39.102561,-92.218393
-65256=39.121607,-92.455550
-65257=39.287086,-92.533811
-65258=39.520236,-92.135201
-65259=39.475322,-92.563651
-65260=39.580629,-92.385861
-65261=39.475211,-92.933433
-65262=38.960143,-91.955313
-65263=39.459909,-92.218713
-65264=39.088314,-91.685640
-65265=39.203373,-91.885371
-65270=39.413639,-92.394950
-65274=39.015477,-92.685507
-65275=39.453066,-91.994965
-65276=38.852787,-92.957997
-65278=39.341583,-92.410624
-65279=39.001389,-92.528490
-65280=39.242871,-91.736982
-65281=39.471922,-92.801649
-65282=39.387868,-91.822951
-65283=39.509271,-91.827525
-65284=39.206233,-92.293309
-65285=39.271734,-91.999838
-65286=39.507751,-93.220276
-65287=38.886302,-92.530138
-65301=38.698220,-93.226582
-65305=38.733116,-93.553158
-65320=39.070000,-92.947247
-65321=39.085623,-93.468341
-65322=38.982087,-92.951995
-65323=38.443904,-93.617513
-65324=38.126812,-93.029914
-65325=38.439546,-93.188788
-65326=38.165840,-93.139170
-65327=38.973973,-93.495313
-65329=38.620191,-92.964907
-65330=39.217726,-92.952862
-65332=38.624306,-93.414676
-65333=38.900768,-93.319941
-65334=38.845310,-93.226858
-65335=38.504713,-93.342103
-65336=38.792708,-93.575353
-65337=38.794493,-93.431379
-65338=38.363547,-93.279912
-65339=39.195918,-93.374737
-65340=39.088508,-93.175937
-65344=39.313791,-93.192269
-65345=38.537892,-93.126897
-65347=38.991207,-93.039980
-65348=38.717269,-92.971107
-65349=39.230471,-93.045452
-65350=38.645970,-93.090672
-65351=38.994519,-93.381385
-65354=38.655760,-92.873514
-65355=38.219531,-93.366959
-65360=38.516411,-93.517553
-65401=37.899825,-91.768905
-65436=37.623801,-91.963610
-65438=36.931336,-91.501101
-65439=37.656968,-91.064290
-65440=37.619926,-91.172728
-65441=38.096380,-91.159022
-65443=38.131713,-92.094612
-65444=37.377780,-92.053848
-65446=37.777805,-91.281340
-65449=37.852033,-91.494674
-65452=37.966890,-92.266127
-65453=38.106493,-91.439811
-65456=37.784607,-91.189780
-65457=37.800007,-92.051600
-65459=38.029720,-92.096732
-65461=37.675359,-92.042481
-65462=37.683375,-91.848757
-65463=37.853210,-92.783846
-65464=37.186578,-91.899782
-65466=37.205459,-91.348402
-65468=37.249928,-91.790223
-65470=37.547434,-92.401801
-65473=37.706433,-92.154489
-65479=37.342026,-91.636139
-65483=37.298969,-91.955093
-65484=37.356223,-92.227015
-65486=38.108287,-92.328061
-65501=37.462127,-91.566241
-65529=37.922028,-91.991962
-65534=37.690279,-92.284280
-65535=38.070003,-91.274154
-65536=37.687690,-92.644458
-65541=37.646612,-91.772723
-65542=37.495709,-91.883745
-65543=37.453945,-92.290231
-65548=37.012976,-91.712643
-65550=37.823651,-91.955501
-65552=37.534694,-92.165645
-65555=37.367583,-91.767023
-65556=37.836155,-92.408884
-65557=37.509813,-92.100972
-65559=38.024924,-91.610018
-65560=37.596621,-91.503902
-65564=37.225456,-91.971047
-65565=37.892886,-91.241936
-65566=37.720734,-91.126642
-65567=37.865133,-92.535705
-65570=37.452634,-92.094798
-65571=37.186248,-91.623030
-65580=38.116505,-91.789901
-65582=38.204152,-91.926434
-65583=37.828481,-92.257638
-65584=37.828203,-92.131212
-65586=37.849588,-91.431656
-65588=36.982163,-91.272720
-65589=37.245475,-91.838239
-65590=37.606148,-92.951287
-65591=37.938453,-92.640747
-65601=37.539863,-93.588003
-65603=37.556769,-93.865230
-65604=37.269914,-93.598471
-65605=36.771716,-93.654747
-65606=36.697248,-91.359401
-65608=36.898668,-92.677707
-65609=36.542285,-92.151540
-65610=37.030759,-93.530942
-65611=36.549846,-93.372149
-65612=37.213797,-93.538811
-65613=37.636902,-93.396427
-65614=36.754012,-92.910399
-65616=36.669373,-93.248879
-65617=37.437614,-93.334662
-65618=36.733049,-92.359584
-65619=37.121719,-93.394691
-65620=37.026782,-92.945631
-65622=37.633024,-93.103604
-65623=36.748816,-93.906409
-65624=36.730202,-93.566299
-65625=36.674069,-93.816497
-65626=36.594943,-92.130859
-65627=36.566955,-93.032874
-65629=36.891489,-93.000589
-65630=36.832959,-93.213650
-65631=37.000699,-93.423999
-65632=37.497907,-92.809930
-65633=36.894781,-93.534748
-65634=38.015397,-93.194616
-65635=37.531741,-93.717143
-65637=36.756411,-92.180227
-65638=36.840446,-92.325318
-65640=37.698467,-93.566848
-65641=36.543773,-93.769176
-65644=37.510802,-93.037975
-65646=37.333448,-93.703246
-65647=36.692960,-94.007064
-65648=37.408797,-93.166477
-65649=37.617274,-93.623215
-65650=37.813994,-93.441928
-65652=37.133087,-92.949997
-65653=36.840830,-93.140383
-65654=37.022203,-93.909637
-65655=36.595898,-92.425548
-65656=36.793766,-93.467830
-65657=36.838288,-93.007588
-65658=36.540154,-93.637963
-65660=37.334212,-92.273898
-65661=37.467688,-93.825199
-65662=37.446733,-92.570452
-65663=37.623371,-93.246727
-65664=37.198054,-93.615176
-65667=37.308459,-92.514047
-65668=37.930666,-93.288163
-65669=36.911907,-93.302603
-65672=36.560353,-93.219489
-65674=37.785786,-93.607277
-65676=36.572170,-92.615940
-65679=36.574234,-93.094922
-65680=36.653164,-93.003455
-65681=36.550848,-93.461857
-65682=37.411878,-93.961715
-65685=37.751809,-93.167250
-65686=36.626973,-93.444015
-65689=37.144422,-92.092870
-65690=36.589090,-91.279346
-65692=36.627591,-91.631413
-65702=37.070728,-92.493547
-65704=37.127620,-92.586107
-65705=36.988363,-93.621412
-65706=37.322820,-92.898635
-65707=37.233674,-93.843315
-65708=36.902894,-93.911536
-65710=37.485556,-93.421088
-65711=37.176383,-92.275679
-65712=37.110674,-93.800291
-65713=37.404644,-92.746951
-65714=37.041064,-93.321072
-65715=36.731375,-92.574001
-65717=37.060440,-92.416048
-65720=36.940563,-92.950037
-65721=36.982818,-93.209226
-65722=37.582915,-92.805465
-65723=36.958625,-94.040320
-65724=37.845618,-93.312279
-65725=37.433355,-93.288172
-65727=37.755095,-93.294846
-65728=36.871381,-93.345561
-65729=36.513960,-92.592739
-65730=36.623694,-94.177289
-65731=36.653457,-93.125924
-65732=37.941693,-93.161545
-65733=36.527116,-92.849419
-65734=36.795214,-93.941817
-65735=38.039920,-93.458727
-65737=36.711111,-93.359338
-65738=37.139280,-93.506398
-65739=36.510959,-93.274159
-65740=36.713574,-93.163478
-65742=37.125343,-93.088984
-65744=36.622787,-92.897552
-65745=36.530708,-93.970641
-65746=37.146190,-92.778195
-65747=36.600861,-93.580084
-65752=37.327705,-93.830886
-65753=37.004186,-93.043298
-65754=36.836654,-93.281437
-65755=36.829114,-92.623004
-65756=37.098035,-93.973906
-65757=37.282791,-93.099771
-65759=36.753545,-93.061052
-65760=36.624668,-92.292149
-65761=36.576449,-92.724984
-65762=36.684886,-92.651285
-65764=37.814520,-92.948674
-65766=36.536052,-92.268646
-65767=37.852251,-93.155937
-65768=36.919435,-92.270035
-65769=36.919096,-93.799405
-65770=37.422627,-93.548226
-65771=36.772472,-93.206420
-65772=36.597951,-94.024931
-65773=36.762508,-92.501811
-65774=37.930273,-93.489344
-65775=36.700074,-91.858053
-65777=36.525746,-91.997786
-65778=36.530448,-91.271025
-65779=37.977567,-93.378863
-65781=37.355541,-93.417569
-65783=37.714570,-92.933321
-65784=36.679888,-92.313911
-65785=37.708475,-93.825054
-65786=37.964471,-92.962937
-65787=38.070593,-92.883347
-65788=36.806689,-91.694945
-65789=36.862869,-91.873714
-65790=36.703024,-92.109540
-65791=36.579155,-91.497230
-65793=36.991559,-91.971986
-65802=37.207450,-93.354612
-65803=37.283189,-93.289821
-65804=37.150498,-93.251921
-65806=37.205585,-93.299157
-65807=37.167533,-93.324773
-65809=37.166589,-93.182484
-65810=37.119720,-93.309724
-66002=39.538742,-95.137635
-66006=38.804266,-95.232670
-66007=39.156186,-94.941707
-66008=39.718181,-95.176388
-66010=38.088217,-94.979170
-66012=39.066521,-94.920179
-66013=38.730666,-94.695551
-66014=38.228845,-94.987105
-66015=38.074849,-95.413199
-66016=39.475168,-95.231745
-66017=39.703716,-95.273961
-66018=38.963864,-94.967153
-66019=38.945440,-95.003284
-66020=39.339341,-95.116107
-66021=38.766280,-95.015000
-66023=39.512289,-95.392403
-66024=39.736869,-94.881484
-66025=38.891903,-95.083340
-66026=38.395871,-94.866312
-66027=39.368428,-94.911265
-66030=38.815137,-94.940266
-66031=38.831963,-94.890082
-66032=38.286777,-95.278214
-66033=38.363290,-95.122266
-66035=39.870996,-95.253591
-66039=38.104411,-95.164855
-66040=38.354477,-94.748388
-66041=39.600303,-95.307974
-66042=38.422786,-95.079886
-66043=39.252392,-94.879551
-66044=39.023294,-95.208909
-66045=38.958845,-95.247749
-66046=38.904524,-95.209753
-66047=38.893051,-95.346160
-66048=39.282330,-94.995995
-66049=38.978096,-95.344129
-66050=39.011834,-95.442516
-66052=39.015766,-95.048266
-66053=38.581078,-94.668065
-66054=39.206199,-95.198350
-66056=38.151453,-94.844282
-66058=39.541067,-95.520384
-66060=39.418161,-95.332230
-66061=38.893764,-94.879975
-66062=38.835491,-94.778691
-66064=38.480714,-94.988936
-66066=39.203002,-95.330593
-66067=38.623617,-95.276284
-66070=39.205690,-95.450917
-66071=38.573078,-94.864562
-66072=38.309431,-94.963963
-66073=39.082417,-95.368342
-66075=38.200521,-94.693412
-66076=38.632455,-95.443013
-66078=38.484690,-95.258501
-66079=38.542467,-95.108134
-66080=38.408100,-95.259688
-66083=38.732299,-94.830141
-66085=38.798768,-94.656684
-66086=39.119526,-95.081230
-66087=39.802081,-95.122122
-66088=39.339329,-95.461198
-66090=39.787949,-94.973367
-66091=38.178278,-95.312532
-66092=38.701500,-95.097953
-66093=38.207810,-95.494138
-66094=39.951286,-95.342440
-66095=38.441094,-95.438861
-66097=39.328599,-95.246083
-66101=39.118982,-94.625983
-66102=39.108964,-94.692538
-66103=39.060338,-94.626797
-66104=39.150159,-94.689533
-66105=39.087011,-94.638934
-66106=39.069454,-94.702613
-66109=39.165351,-94.829341
-66111=39.084029,-94.789887
-66112=39.114520,-94.773577
-66115=39.148258,-94.605084
-66118=39.103981,-94.613129
-66202=39.023150,-94.669466
-66203=39.020331,-94.705787
-66204=38.990381,-94.678214
-66205=39.031176,-94.630762
-66206=38.960717,-94.620277
-66207=38.955644,-94.643247
-66208=38.997529,-94.628369
-66209=38.899600,-94.638358
-66210=38.922144,-94.704779
-66211=38.925118,-94.635620
-66212=38.955565,-94.679875
-66213=38.898859,-94.708219
-66214=38.967425,-94.714087
-66215=38.957701,-94.744269
-66216=39.013774,-94.741577
-66217=39.009521,-94.782287
-66218=39.020690,-94.818802
-66219=38.952366,-94.776220
-66220=38.959691,-94.819014
-66221=38.863682,-94.708453
-66223=38.863482,-94.668479
-66224=38.863539,-94.626804
-66226=39.030311,-94.859415
-66227=38.972676,-94.874826
-66401=38.932367,-96.309652
-66402=38.914000,-95.843270
-66403=39.893573,-96.285893
-66404=39.878146,-96.173343
-66406=39.894106,-96.420729
-66407=39.228519,-96.198795
-66408=39.959454,-95.969994
-66409=38.924185,-95.559640
-66411=39.645460,-96.628455
-66412=39.907630,-96.777462
-66413=38.768875,-95.880727
-66414=38.830266,-95.688665
-66415=39.688276,-96.147458
-66416=39.525706,-95.863240
-66417=39.656559,-96.044857
-66418=39.279496,-95.933586
-66419=39.360679,-95.598882
-66422=39.336294,-96.085516
-66423=38.801294,-96.232746
-66424=39.674689,-95.404063
-66425=39.816145,-95.738390
-66427=39.661283,-96.438829
-66428=39.676115,-95.931359
-66429=39.093770,-95.534186
-66431=38.806807,-96.004327
-66432=39.489763,-96.066716
-66434=39.863040,-95.554804
-66436=39.467715,-95.691999
-66438=39.854484,-96.492864
-66439=39.656331,-95.540086
-66440=39.268181,-95.676822
-66441=38.973520,-96.803088
-66442=39.091847,-96.790133
-66449=39.390138,-96.856465
-66451=38.614716,-95.672323
-66501=39.053810,-96.237446
-66502=39.156299,-96.521265
-66503=39.265051,-96.695255
-66506=39.195840,-96.581581
-66507=39.045216,-96.068138
-66508=39.855917,-96.630811
-66509=39.341645,-95.776656
-66510=38.499626,-95.610199
-66512=39.199170,-95.545107
-66514=39.126223,-96.875603
-66515=39.936244,-95.703732
-66516=39.627947,-95.720734
-66517=39.112828,-96.706688
-66518=39.965606,-96.550756
-66520=39.418897,-96.617663
-66521=39.480218,-96.218995
-66522=39.868546,-95.941994
-66523=38.610790,-95.840023
-66524=38.790939,-95.506078
-66526=39.064611,-96.162616
-66527=39.745394,-95.673710
-66528=38.602870,-95.537804
-66531=39.310997,-96.821533
-66532=39.821429,-95.377943
-66533=39.163187,-95.947495
-66534=39.884360,-95.837144
-66535=39.267030,-96.433702
-66536=39.225094,-96.080292
-66537=38.751242,-95.719623
-66538=39.850557,-96.044691
-66539=39.141967,-95.840390
-66540=39.490516,-95.976268
-66541=39.974736,-96.366926
-66542=39.010744,-95.544771
-66543=38.644964,-95.592818
-66544=39.692051,-96.280047
-66546=38.895461,-95.721038
-66547=39.231558,-96.295611
-66548=39.670854,-96.762724
-66549=39.427677,-96.415466
-66550=39.655442,-95.820665
-66552=39.587681,-95.629828
-66554=39.494814,-96.790528
-66603=39.057972,-95.676181
-66604=39.039022,-95.726188
-66605=39.011911,-95.634774
-66606=39.061436,-95.719870
-66607=39.042580,-95.636364
-66608=39.079611,-95.663226
-66609=38.978236,-95.660737
-66610=38.976726,-95.844565
-66611=39.018756,-95.696387
-66612=39.040436,-95.680471
-66614=39.010366,-95.852479
-66615=39.050826,-95.897866
-66616=39.068476,-95.623407
-66617=39.134832,-95.623239
-66618=39.139508,-95.748267
-66619=38.947635,-95.688062
-66621=39.033321,-95.701543
-66622=39.025896,-95.722270
-66701=37.823655,-94.765014
-66710=37.551598,-95.624499
-66711=37.637096,-94.685001
-66712=37.564876,-94.714519
-66713=37.040492,-94.785294
-66714=37.636602,-95.698621
-66716=37.948020,-95.036782
-66717=37.695860,-95.696902
-66720=37.648330,-95.457190
-66724=37.346978,-94.856724
-66725=37.156583,-94.895319
-66728=37.171277,-94.704071
-66732=37.799187,-95.187002
-66733=37.596759,-95.254823
-66734=37.618089,-94.830183
-66735=37.523161,-94.708564
-66736=37.551477,-95.861095
-66738=38.013735,-94.723389
-66739=37.125780,-94.655261
-66740=37.479551,-95.364186
-66741=37.719140,-94.656007
-66743=37.503998,-94.893692
-66746=37.668111,-94.954136
-66748=37.795730,-95.441762
-66749=37.935949,-95.406943
-66751=37.943731,-95.289784
-66753=37.362055,-95.011049
-66754=38.004862,-94.885623
-66755=37.928862,-95.179278
-66756=37.544830,-94.659149
-66757=37.417206,-95.695818
-66758=38.015934,-95.586909
-66760=37.348316,-94.624352
-66761=37.918274,-95.569205
-66762=37.393869,-94.710469
-66763=37.463150,-94.697810
-66767=38.073554,-94.703031
-66769=37.856527,-94.889957
-66770=37.080735,-94.715342
-66771=37.487563,-95.145995
-66772=37.754519,-95.206284
-66773=37.272257,-94.806572
-66775=37.701935,-95.148771
-66776=37.462882,-95.489391
-66777=37.807887,-95.972407
-66778=37.000499,-94.840857
-66779=37.825646,-94.991966
-66780=37.621728,-95.056933
-66781=37.288583,-94.733491
-66782=37.285017,-94.926319
-66783=37.874967,-95.737007
-66801=38.414215,-96.218301
-66830=38.602420,-96.087420
-66833=38.695591,-96.195012
-66834=38.862025,-96.437437
-66835=38.543253,-96.258153
-66838=38.555437,-96.800671
-66839=38.217399,-95.748127
-66840=38.063661,-96.873297
-66842=38.009995,-96.651497
-66843=38.222479,-96.740487
-66845=38.298731,-96.508392
-66846=38.647470,-96.470435
-66849=38.877492,-96.589623
-66850=38.433834,-96.744041
-66851=38.217863,-96.918638
-66852=38.064372,-95.895602
-66853=38.001895,-96.235303
-66854=38.250808,-95.979552
-66856=38.397806,-95.811788
-66857=38.093821,-95.631713
-66858=38.480437,-96.932543
-66859=38.557958,-96.962417
-66860=38.127280,-96.165629
-66861=38.367759,-97.008508
-66862=38.154999,-96.556128
-66863=37.832866,-96.081781
-66864=38.354887,-95.981495
-66865=38.223501,-96.293197
-66866=38.173042,-97.107439
-66868=38.544773,-95.979419
-66869=38.468810,-96.515162
-66870=37.944163,-96.029569
-66871=38.362643,-95.610225
-66872=38.790751,-96.768749
-66873=38.618816,-96.679596
-66901=39.560035,-97.638951
-66930=39.706683,-97.479485
-66932=39.779487,-98.930885
-66933=39.675419,-96.872319
-66935=39.840598,-97.631694
-66936=39.921187,-98.316114
-66937=39.588521,-97.271661
-66938=39.574462,-97.413988
-66939=39.852860,-97.904290
-66940=39.807791,-97.448890
-66941=39.835576,-98.438848
-66942=39.805279,-98.000706
-66943=39.671811,-96.966281
-66944=39.839676,-97.303062
-66945=39.887172,-96.878258
-66946=39.966411,-97.004607
-66948=39.598250,-97.852349
-66949=39.643570,-98.186309
-66951=39.844098,-99.016559
-66952=39.835805,-98.604785
-66953=39.690191,-97.106623
-66955=39.967870,-97.297736
-66956=39.794314,-98.227649
-66958=39.889446,-97.177186
-66959=39.923008,-97.529645
-66960=39.936764,-97.434754
-66962=39.599322,-97.114331
-66963=39.636304,-97.998740
-66964=39.941213,-97.804925
-66966=39.775329,-97.766299
-66967=39.819725,-98.794227
-66968=39.824736,-97.065893
-66970=39.948119,-98.034391
-67001=37.757001,-97.635437
-67002=37.700947,-97.107258
-67003=37.099126,-98.073777
-67004=37.278725,-97.753071
-67005=37.065173,-96.995733
-67008=37.486787,-96.779441
-67009=37.225279,-98.268793
-67010=37.663117,-96.965280
-67012=37.674225,-96.544425
-67013=37.381869,-97.268220
-67016=37.886791,-97.514822
-67017=37.826286,-97.111634
-67018=37.071269,-97.853695
-67019=37.306570,-96.777587
-67020=38.007932,-97.675907
-67021=37.778497,-98.915310
-67022=37.076932,-97.626852
-67023=37.346062,-96.592276
-67024=37.110747,-96.486330
-67025=37.642375,-97.784959
-67026=37.511061,-97.491987
-67028=37.458774,-98.936392
-67029=37.171432,-99.279961
-67030=37.785616,-97.546810
-67031=37.399302,-97.639518
-67035=37.649389,-98.387536
-67036=37.297567,-97.876668
-67037=37.571832,-97.217235
-67038=37.101790,-96.723843
-67039=37.527668,-96.974290
-67041=38.054139,-97.129971
-67042=37.857264,-96.780718
-67045=37.866145,-96.345282
-67047=37.631846,-96.072935
-67049=37.177439,-97.846362
-67050=37.674351,-97.675588
-67051=37.089302,-97.196565
-67052=37.657709,-97.575586
-67053=38.246815,-97.346339
-67054=37.575040,-99.316072
-67055=37.789903,-97.197712
-67056=38.021951,-97.525412
-67057=37.070540,-98.780083
-67058=37.317916,-98.061352
-67059=37.636944,-99.097274
-67060=37.542973,-97.363698
-67061=37.092794,-98.381734
-67062=38.145186,-97.437098
-67063=38.340735,-97.233749
-67065=37.464925,-98.516204
-67066=37.769997,-98.766895
-67067=37.794756,-97.266460
-67068=37.617288,-98.105823
-67070=37.079078,-98.525994
-67071=37.262719,-98.882142
-67072=37.545262,-96.606898
-67073=38.383517,-97.326872
-67074=37.670731,-96.723859
-67101=37.785277,-97.464182
-67103=37.266311,-97.560600
-67104=37.265078,-98.664433
-67105=37.233364,-97.675780
-67106=37.467123,-97.757279
-67107=38.194214,-97.547655
-67108=37.816344,-97.690681
-67109=37.561275,-99.485817
-67110=37.465881,-97.226615
-67111=37.614563,-97.936927
-67112=37.467197,-98.419349
-67114=38.075760,-97.289050
-67117=38.074214,-97.346242
-67118=37.481665,-97.854212
-67119=37.238853,-97.195177
-67120=37.469479,-97.373451
-67122=37.619001,-96.428116
-67123=37.948534,-96.996749
-67124=37.634439,-98.773642
-67127=37.164820,-99.487114
-67131=37.426970,-96.955448
-67132=37.850881,-96.584695
-67133=37.569962,-97.107428
-67134=37.490343,-98.675037
-67135=37.917958,-97.460022
-67137=37.633843,-96.221972
-67138=37.276388,-98.415842
-67140=37.079302,-97.356496
-67142=37.452585,-98.113620
-67143=37.341823,-98.963403
-67144=37.819170,-97.003301
-67146=37.384478,-97.104621
-67147=37.861357,-97.312881
-67149=37.539732,-97.625937
-67150=37.007406,-98.222462
-67151=38.142146,-97.257065
-67152=37.260561,-97.427652
-67154=37.978385,-97.125224
-67155=37.274948,-99.137561
-67156=37.255625,-96.961491
-67159=37.427657,-98.309416
-67202=37.686984,-97.334920
-67203=37.700763,-97.365701
-67204=37.762497,-97.358547
-67205=37.749466,-97.423567
-67206=37.704071,-97.225463
-67207=37.665576,-97.227205
-67208=37.703847,-97.279266
-67209=37.651239,-97.428543
-67210=37.630260,-97.246498
-67211=37.666879,-97.317451
-67212=37.702404,-97.438899
-67213=37.667472,-97.364129
-67214=37.707178,-97.317750
-67215=37.615486,-97.420396
-67216=37.611066,-97.312718
-67217=37.618074,-97.362465
-67218=37.668511,-97.280418
-67219=37.771483,-97.318707
-67220=37.751156,-97.278361
-67223=37.742432,-97.495544
-67226=37.773213,-97.213035
-67227=37.628187,-97.499679
-67228=37.769004,-97.169689
-67230=37.687549,-97.173806
-67232=37.636292,-97.170212
-67235=37.688993,-97.500046
-67260=37.719376,-97.293576
-67301=37.208230,-95.756081
-67330=37.158055,-95.309148
-67332=37.043368,-95.236567
-67333=37.045391,-95.882452
-67334=37.023897,-96.177144
-67335=37.274582,-95.526745
-67336=37.095595,-95.064296
-67337=37.053665,-95.598198
-67340=37.059602,-95.713117
-67341=37.344370,-95.428356
-67342=37.059534,-95.357301
-67344=37.287471,-95.953857
-67345=37.377622,-96.199288
-67346=37.323806,-96.430952
-67347=37.154402,-95.951547
-67349=37.494403,-96.297916
-67351=37.143556,-95.568937
-67352=37.407194,-96.022826
-67353=37.308381,-96.317193
-67354=37.209440,-95.409185
-67355=37.046926,-96.010663
-67356=37.176257,-95.145772
-67357=37.345929,-95.261617
-67360=37.038024,-96.106561
-67361=37.137644,-96.217607
-67363=37.339460,-95.723048
-67364=37.060387,-95.810429
-67401=38.831829,-97.654574
-67410=38.956476,-97.219090
-67416=38.673059,-97.582120
-67417=39.444585,-97.545188
-67418=39.174888,-98.046453
-67420=39.400935,-98.085468
-67422=39.021084,-97.585249
-67423=38.951230,-97.975323
-67425=38.782025,-97.907988
-67427=38.498461,-98.399346
-67428=38.369631,-97.417862
-67430=39.531091,-98.424914
-67431=38.951046,-97.012425
-67432=39.329343,-97.193388
-67436=39.269705,-97.735810
-67437=39.515079,-98.555646
-67438=38.495918,-97.283406
-67439=38.749782,-98.220447
-67441=38.878591,-97.102832
-67442=38.655900,-97.772084
-67443=38.380616,-97.525768
-67444=38.544862,-98.136257
-67445=39.371393,-97.824145
-67446=39.473766,-98.305489
-67447=39.485611,-96.972061
-67448=38.649547,-97.412961
-67449=38.676644,-96.893941
-67450=38.615016,-98.451374
-67451=38.703171,-97.121580
-67452=39.240071,-98.371607
-67454=38.698840,-98.112105
-67455=39.020478,-98.165407
-67456=38.600676,-97.675387
-67457=38.393628,-97.992841
-67458=39.170754,-97.304396
-67459=38.600789,-98.340484
-67460=38.382552,-97.699453
-67464=38.558620,-97.897299
-67466=39.327815,-97.472357
-67467=39.142355,-97.695820
-67468=39.459362,-97.257490
-67470=38.922721,-97.507633
-67473=39.378744,-98.740560
-67474=39.576622,-98.716940
-67475=38.589650,-97.055144
-67478=39.386063,-97.938827
-67480=38.965807,-97.400502
-67481=39.005849,-98.382299
-67482=39.026891,-97.259713
-67483=38.556735,-97.203516
-67484=38.993508,-97.845300
-67485=39.283399,-98.501910
-67487=39.179061,-97.071219
-67490=38.788536,-98.439661
-67491=38.383354,-97.901877
-67492=38.809283,-96.962784
-67501=37.977493,-97.926452
-67502=38.126736,-97.929949
-67505=38.031355,-97.945800
-67510=38.006359,-98.206324
-67511=38.432498,-99.047255
-67512=38.224569,-98.335159
-67513=38.445112,-99.538302
-67514=37.861953,-98.202381
-67515=38.624639,-100.068657
-67516=38.392958,-99.686778
-67518=38.414590,-100.167102
-67519=37.930345,-99.091082
-67520=38.589677,-99.187712
-67521=38.628167,-99.712902
-67522=38.122196,-97.747612
-67523=38.199262,-99.544182
-67524=38.369422,-98.378618
-67525=38.572533,-98.563033
-67526=38.313694,-98.501559
-67529=38.076234,-99.254382
-67530=38.352059,-98.794484
-67543=37.878040,-97.799264
-67544=38.586791,-98.759205
-67545=38.165916,-98.610758
-67546=38.236266,-97.818712
-67547=37.930565,-99.455866
-67548=38.589785,-99.344998
-67550=38.185383,-99.124590
-67552=37.866129,-99.228430
-67553=38.678803,-99.304236
-67554=38.372211,-98.195208
-67556=38.616492,-99.523571
-67557=37.934601,-98.958462
-67559=38.385868,-99.454502
-67560=38.399335,-99.939209
-67561=38.109017,-98.096853
-67563=37.844005,-99.556354
-67564=38.531104,-98.930946
-67565=38.600591,-99.044062
-67566=37.933172,-98.097399
-67567=38.272185,-98.979093
-67568=38.006314,-98.316595
-67570=37.787407,-97.964176
-67572=38.689475,-99.916991
-67573=38.264697,-98.423563
-67574=38.225884,-99.384908
-67575=38.411940,-99.257638
-67576=38.035977,-98.795217
-67578=37.991416,-98.574156
-67579=38.188579,-98.235601
-67581=37.977536,-98.408746
-67583=37.799431,-98.475000
-67584=38.681972,-100.163736
-67601=38.876881,-99.349544
-67621=39.821165,-99.132679
-67622=39.895868,-99.735065
-67623=39.444471,-98.954264
-67625=39.389004,-99.685595
-67626=38.881563,-98.716958
-67628=39.627384,-99.001622
-67629=39.699951,-100.199353
-67631=39.009136,-100.081392
-67632=39.343605,-99.580695
-67634=38.819004,-98.608832
-67635=39.590217,-100.433582
-67637=38.938377,-99.605330
-67638=39.614201,-98.854602
-67639=39.636183,-99.307944
-67640=38.914134,-99.049114
-67642=39.359078,-99.844495
-67643=39.677205,-100.304033
-67644=39.643724,-99.157743
-67645=39.590207,-99.873738
-67646=39.638451,-99.577449
-67647=39.934554,-99.544883
-67648=39.087245,-98.580370
-67649=39.126972,-98.679981
-67650=39.372670,-100.102673
-67651=39.212864,-99.052635
-67653=39.906700,-100.208054
-67654=39.823962,-99.949132
-67656=38.990242,-99.755941
-67657=39.202293,-99.616784
-67658=39.103222,-98.947174
-67659=39.322801,-100.005362
-67660=38.718247,-99.156555
-67661=39.820881,-99.318975
-67663=39.212793,-99.354247
-67664=39.818075,-99.583108
-67665=38.849085,-98.882530
-67667=38.713130,-99.332501
-67669=39.458229,-99.344150
-67671=38.847160,-99.134667
-67672=39.008413,-99.912006
-67673=39.152204,-98.818662
-67674=38.863858,-99.068721
-67675=39.446185,-99.090258
-67701=39.395154,-101.061478
-67730=39.808975,-101.111247
-67731=39.765919,-101.537324
-67732=39.424720,-101.343783
-67733=39.319367,-101.512704
-67734=39.523518,-100.895989
-67735=39.344787,-101.753217
-67736=38.851088,-100.479471
-67737=39.129483,-100.478093
-67738=38.982284,-100.639410
-67739=39.878452,-100.812808
-67740=39.374969,-100.368493
-67741=39.402735,-101.994659
-67743=39.372796,-101.247184
-67744=39.843990,-100.939843
-67745=39.807589,-101.345391
-67747=39.042010,-101.065079
-67748=39.039785,-100.859850
-67749=39.834858,-100.562519
-67751=39.125650,-100.345765
-67752=38.994968,-100.251374
-67753=39.432606,-100.747899
-67756=39.797204,-101.836735
-67757=39.552908,-100.617249
-67758=38.856631,-101.764496
-67761=38.969188,-101.531917
-67762=38.905865,-101.975293
-67764=38.926382,-101.209985
-67801=37.723603,-100.057186
-67831=37.185621,-99.795980
-67834=37.519051,-99.633312
-67835=37.966772,-100.325941
-67836=38.020556,-102.008235
-67837=37.554824,-100.675137
-67838=38.084106,-101.127740
-67839=38.470501,-100.441624
-67840=37.057346,-100.043728
-67841=37.634648,-100.242500
-67842=37.561138,-99.769712
-67843=37.730266,-99.936956
-67844=37.385860,-100.194588
-67846=38.034156,-100.768068
-67849=38.151242,-99.708571
-67850=38.586731,-100.614162
-67851=38.068425,-101.021258
-67853=37.885578,-100.528171
-67854=38.101860,-100.018455
-67855=37.551783,-101.685232
-67857=37.980694,-101.555227
-67859=37.235172,-100.770115
-67860=38.008385,-101.307036
-67861=38.470438,-101.382987
-67862=37.568597,-101.913111
-67863=38.573114,-101.216506
-67864=37.176517,-100.317270
-67865=37.435511,-99.968370
-67867=37.570246,-100.463734
-67868=37.821113,-100.708784
-67869=37.236184,-100.566487
-67870=37.522178,-101.003499
-67871=38.511485,-100.888344
-67876=37.862844,-99.743464
-67877=37.554925,-100.843926
-67878=38.028056,-101.828261
-67879=38.480408,-101.805984
-67880=37.582270,-101.323591
-67882=37.804181,-99.879885
-67901=37.097719,-100.913248
-67950=37.046857,-101.867879
-67951=37.158647,-101.343473
-67952=37.296874,-101.151066
-67953=37.250679,-101.890965
-67954=37.208870,-101.641311
-68001=41.331136,-96.960029
-68002=41.499022,-96.337716
-68003=41.081192,-96.382763
-68004=42.009736,-96.623048
-68005=41.142686,-95.892969
-68007=41.367445,-96.190097
-68008=41.546834,-96.162598
-68010=41.255102,-96.132638
-68014=41.282025,-96.961996
-68015=41.385580,-96.643418
-68016=41.041448,-96.105394
-68017=41.053678,-96.657761
-68018=41.302097,-96.615195
-68019=41.781019,-96.375352
-68020=41.971179,-96.264175
-68022=41.279953,-96.250786
-68023=41.447061,-96.017553
-68025=41.437235,-96.487880
-68028=41.105185,-96.258314
-68029=41.657003,-96.273537
-68030=42.322396,-96.465273
-68031=41.640586,-96.525171
-68033=41.124967,-96.511022
-68034=41.459558,-96.225269
-68036=41.387375,-96.952345
-68037=40.983506,-96.130047
-68038=41.947113,-96.452756
-68039=42.118235,-96.346314
-68040=41.283485,-96.734999
-68041=41.241423,-96.493389
-68042=41.098862,-96.437726
-68044=41.551668,-96.442258
-68045=41.825554,-96.492473
-68046=41.121819,-96.052772
-68047=42.111188,-96.733089
-68048=40.984080,-95.942013
-68050=41.300053,-96.842321
-68055=42.054161,-96.472190
-68057=41.661870,-96.723527
-68058=41.005824,-96.244785
-68059=41.064450,-96.158755
-68061=41.793192,-96.207830
-68062=42.198845,-96.677510
-68063=41.735320,-96.497082
-68064=41.355752,-96.357708
-68065=41.068901,-96.839466
-68066=41.186717,-96.628065
-68067=42.160437,-96.482508
-68068=41.397892,-96.208503
-68069=41.241065,-96.315939
-68070=41.196681,-96.800948
-68071=42.236097,-96.471415
-68072=41.609181,-96.504788
-68073=41.256139,-96.415424
-68102=41.262140,-95.933833
-68104=41.295431,-96.002289
-68105=41.240737,-95.963660
-68106=41.238785,-96.002274
-68107=41.210119,-95.954200
-68108=41.237553,-95.930102
-68110=41.302498,-95.892524
-68111=41.295458,-95.964916
-68112=41.374859,-95.959052
-68113=41.117865,-95.906494
-68114=41.263218,-96.049586
-68116=41.298337,-96.166754
-68117=41.207121,-96.000644
-68118=41.263231,-96.178098
-68122=41.372501,-96.049201
-68123=41.101821,-95.943504
-68124=41.235473,-96.051334
-68127=41.205610,-96.049760
-68128=41.182074,-96.065315
-68130=41.234208,-96.195267
-68131=41.264565,-95.964472
-68132=41.262331,-96.001137
-68133=41.112562,-95.995484
-68134=41.301477,-96.048846
-68135=41.207379,-96.193646
-68136=41.168702,-96.186946
-68137=41.205825,-96.118601
-68138=41.155227,-96.129236
-68142=41.371146,-96.107080
-68144=41.234983,-96.118450
-68147=41.173061,-95.959746
-68152=41.367411,-95.996615
-68154=41.265139,-96.114445
-68157=41.178455,-95.993951
-68164=41.296932,-96.106750
-68178=41.265696,-95.947658
-68301=40.458675,-96.532460
-68303=40.268358,-97.428607
-68304=40.878837,-96.397869
-68305=40.370253,-95.864948
-68307=40.788873,-96.131003
-68309=40.055767,-96.567159
-68310=40.249821,-96.749490
-68313=40.783701,-97.271337
-68314=41.011259,-97.035931
-68315=40.252618,-97.544115
-68316=41.024569,-97.626400
-68317=40.671741,-96.507292
-68318=40.150988,-96.638386
-68319=40.937755,-97.759710
-68320=40.487145,-95.939002
-68321=40.389154,-95.688262
-68322=40.342479,-97.549592
-68323=40.142650,-96.382238
-68324=40.560049,-96.292163
-68325=40.024095,-97.753101
-68326=40.283769,-97.684106
-68327=40.024106,-97.624004
-68328=40.485443,-96.835085
-68329=40.497921,-96.169239
-68331=40.472865,-96.714782
-68332=40.315108,-96.400251
-68333=40.622345,-96.949349
-68335=40.271368,-97.793505
-68336=40.965855,-96.690917
-68337=40.098408,-95.831894
-68338=40.313910,-97.264952
-68339=40.732053,-96.870103
-68340=40.125343,-97.755279
-68341=40.381113,-96.920261
-68342=40.097171,-96.946317
-68343=40.618234,-97.132103
-68344=40.566742,-96.399847
-68345=40.040809,-96.024634
-68346=40.657703,-96.025186
-68347=40.804571,-96.425835
-68348=40.310315,-96.132908
-68349=40.831630,-96.296896
-68350=40.041468,-97.069559
-68351=40.661354,-97.434625
-68352=40.142403,-97.229238
-68354=40.638978,-97.577161
-68355=40.109001,-95.567883
-68357=40.312925,-96.547756
-68358=40.531326,-96.608274
-68359=40.631292,-97.284829
-68360=40.950556,-96.956412
-68361=40.512146,-97.598807
-68362=40.152250,-97.441445
-68364=40.832667,-97.218787
-68365=40.604554,-97.718432
-68366=40.974112,-96.434942
-68367=41.039521,-97.396840
-68368=40.560656,-96.821479
-68370=40.139642,-97.547632
-68371=40.771376,-97.790140
-68372=40.609311,-96.603944
-68375=40.033188,-97.456145
-68376=40.174357,-95.945332
-68377=40.216991,-97.019346
-68378=40.386004,-96.018384
-68379=40.519885,-95.867366
-68380=40.241870,-96.383670
-68381=40.076649,-96.480625
-68382=40.597299,-96.024060
-68401=40.738600,-97.591130
-68402=40.907803,-96.857212
-68403=40.920896,-96.168020
-68404=40.613627,-96.752842
-68405=40.762050,-97.073498
-68406=40.500089,-97.385641
-68407=40.916700,-96.266964
-68409=40.907713,-95.954180
-68410=40.635791,-95.883799
-68413=40.846119,-96.026323
-68414=40.308102,-95.665835
-68415=40.069634,-96.821216
-68416=40.410300,-97.459542
-68417=40.733168,-96.094147
-68418=40.687767,-96.403382
-68419=40.599806,-96.511171
-68420=40.092970,-96.209452
-68421=40.493981,-95.743549
-68422=40.388735,-96.694709
-68423=40.807477,-96.957450
-68424=40.299195,-97.016261
-68428=40.964424,-96.793115
-68430=40.668621,-96.663354
-68431=40.067562,-95.438183
-68433=40.053054,-95.738208
-68434=40.909586,-97.116949
-68436=40.430260,-97.738261
-68437=40.226069,-95.643950
-68438=40.626605,-96.744615
-68439=40.995946,-97.206667
-68440=40.060556,-97.001788
-68441=40.227060,-96.241839
-68442=40.238673,-95.773233
-68443=40.447459,-96.350076
-68444=40.411381,-97.577080
-68445=40.389231,-97.079163
-68446=40.653402,-96.175404
-68447=40.208885,-96.072644
-68448=40.559454,-96.024463
-68450=40.363539,-96.229749
-68452=40.394441,-97.852288
-68453=40.416547,-97.325795
-68454=40.691824,-96.288481
-68455=40.820047,-95.897286
-68456=40.909053,-97.320861
-68457=40.153193,-95.699364
-68458=40.227478,-96.509099
-68460=40.890741,-97.435140
-68461=40.762334,-96.511432
-68462=40.952129,-96.519659
-68463=40.875803,-96.129031
-68464=40.428713,-97.206941
-68465=40.486338,-97.022227
-68466=40.066854,-96.642831
-68467=40.866364,-97.595637
-68502=40.785810,-96.698002
-68503=40.824553,-96.674040
-68504=40.854478,-96.660184
-68505=40.824839,-96.619262
-68506=40.779641,-96.639634
-68507=40.858885,-96.614848
-68508=40.818272,-96.703937
-68510=40.806237,-96.635703
-68512=40.738801,-96.707513
-68514=40.921979,-96.653112
-68516=40.735276,-96.642790
-68517=40.936247,-96.615020
-68520=40.799995,-96.552282
-68521=40.868266,-96.705455
-68522=40.787163,-96.764222
-68523=40.734977,-96.758257
-68524=40.907023,-96.787442
-68526=40.729972,-96.582067
-68527=40.847113,-96.524224
-68528=40.820747,-96.820356
-68531=40.901432,-96.723224
-68532=40.792052,-96.842655
-68601=41.454231,-97.398164
-68620=41.744793,-98.076696
-68621=41.492162,-96.639488
-68622=41.934810,-98.622715
-68623=41.441473,-98.151971
-68624=41.345613,-97.229358
-68626=41.169497,-96.992008
-68627=41.559010,-98.174381
-68628=41.227620,-97.836915
-68629=41.719653,-97.132617
-68631=41.691866,-97.342867
-68632=41.245896,-97.131613
-68633=41.706202,-96.896404
-68634=41.389898,-97.493069
-68635=41.083416,-97.015909
-68636=42.009224,-98.152606
-68637=41.881019,-98.721803
-68638=41.375492,-97.992939
-68640=41.460369,-97.785881
-68641=41.735670,-97.015265
-68642=41.689215,-97.513932
-68643=41.705976,-97.263334
-68644=41.704257,-97.670015
-68647=41.518774,-97.628340
-68648=41.400719,-96.800326
-68649=41.505048,-96.785365
-68651=41.228224,-97.570129
-68652=41.861674,-98.044521
-68653=41.558235,-97.485954
-68654=41.067034,-97.779138
-68655=41.655561,-98.242514
-68658=41.197764,-97.281005
-68659=41.545943,-96.935406
-68660=41.572817,-97.869571
-68661=41.492505,-97.088623
-68662=41.210704,-97.417564
-68663=41.319184,-97.685134
-68664=41.704011,-96.786542
-68665=41.769883,-98.392246
-68666=41.110595,-97.611211
-68667=41.109780,-97.304742
-68669=41.079231,-97.236898
-68701=42.019825,-97.442556
-68710=42.441865,-96.859268
-68711=42.194967,-99.039009
-68713=42.540150,-98.959566
-68714=42.430669,-99.493546
-68715=41.963891,-97.609897
-68716=41.927041,-96.822664
-68717=42.383350,-97.222448
-68718=42.669933,-97.692085
-68719=42.954456,-98.560153
-68720=42.344997,-98.014660
-68722=42.929935,-98.869016
-68723=42.282752,-97.208240
-68724=42.638006,-97.894006
-68725=42.197414,-98.777902
-68726=42.184661,-98.210110
-68727=42.515296,-97.202478
-68728=42.375131,-96.947120
-68729=42.471872,-97.905075
-68730=42.767263,-97.534632
-68731=42.404578,-96.472928
-68732=42.493826,-96.978733
-68733=42.285129,-96.725139
-68734=42.458508,-98.803963
-68735=42.139520,-98.466036
-68736=42.735371,-97.367806
-68739=42.625997,-97.269952
-68740=42.152347,-97.296170
-68741=42.343022,-96.594478
-68742=42.352415,-98.529412
-68743=42.457419,-96.624457
-68745=42.456197,-97.083883
-68746=42.809636,-98.437442
-68747=42.391145,-97.496125
-68748=41.836996,-97.474624
-68749=42.453088,-97.475351
-68751=42.690454,-96.980916
-68752=42.028776,-97.723726
-68753=42.883132,-99.413221
-68755=42.926512,-99.130016
-68756=42.183568,-97.980286
-68757=42.653280,-96.927927
-68758=41.792434,-97.785946
-68759=42.704140,-99.310540
-68760=42.708842,-97.874979
-68761=42.049904,-97.962050
-68763=42.501043,-98.608208
-68764=42.404882,-98.231670
-68765=42.342300,-97.613711
-68766=42.433234,-98.403063
-68767=42.199248,-97.553627
-68768=41.995221,-97.066425
-68769=42.325158,-97.811327
-68770=42.561623,-96.764827
-68771=42.395624,-97.359991
-68773=42.362211,-98.119232
-68774=42.812222,-97.274892
-68776=42.467422,-96.447050
-68777=42.860847,-98.688036
-68778=42.853013,-99.798484
-68779=41.955848,-97.199113
-68780=42.632961,-99.128190
-68781=42.025745,-97.863783
-68783=42.618474,-98.159234
-68784=42.257167,-96.891367
-68785=42.426528,-96.724096
-68786=42.501560,-97.557442
-68787=42.213826,-97.030949
-68788=41.839631,-96.721283
-68789=42.543523,-97.970320
-68790=42.156671,-97.181822
-68791=41.988425,-96.984375
-68792=42.742919,-97.108243
-68801=40.947669,-98.292138
-68803=40.956077,-98.414575
-68810=40.855270,-98.463682
-68812=40.887782,-99.283842
-68813=41.699113,-99.856390
-68814=41.316486,-99.412938
-68815=41.418284,-99.143990
-68816=41.177383,-98.132949
-68817=41.267480,-98.793822
-68818=40.817854,-98.005876
-68820=41.112899,-98.701416
-68821=42.010446,-99.767592
-68822=41.380918,-99.631719
-68823=41.956564,-99.155956
-68824=40.994135,-98.597716
-68825=41.264062,-99.968062
-68826=41.163588,-98.016399
-68827=41.042659,-98.181454
-68828=41.549671,-99.237336
-68831=41.108676,-98.554699
-68832=40.763300,-98.369182
-68833=41.825835,-100.205383
-68834=41.031607,-99.658913
-68835=41.331899,-98.617240
-68836=40.709811,-99.373986
-68837=41.659793,-99.076621
-68838=41.212162,-98.662361
-68840=40.759666,-98.877542
-68841=40.758828,-98.171175
-68842=41.567553,-98.500538
-68843=40.905251,-97.890768
-68844=41.053759,-99.063394
-68845=40.721039,-99.164684
-68846=41.068251,-97.895188
-68847=40.760030,-99.017084
-68849=40.700703,-99.109416
-68850=40.826405,-99.739779
-68852=41.161301,-99.124626
-68853=41.294283,-98.991830
-68854=41.009922,-98.002428
-68855=41.169365,-99.325507
-68856=41.544165,-99.768500
-68858=40.965614,-99.376302
-68859=41.474517,-98.825464
-68860=41.133930,-99.795328
-68861=40.702356,-99.258817
-68862=41.599956,-98.936456
-68863=40.766301,-99.532137
-68864=41.263630,-98.235239
-68865=40.896549,-98.178659
-68866=40.976946,-99.124408
-68869=40.996135,-98.884197
-68870=40.853989,-99.167086
-68871=41.140917,-98.852753
-68872=41.094857,-98.334000
-68873=41.240105,-98.453771
-68874=41.644123,-99.418929
-68875=41.563132,-98.670522
-68876=40.818433,-98.755243
-68878=40.982333,-99.517885
-68879=41.897665,-99.509776
-68881=41.438428,-99.351889
-68882=41.435696,-98.391066
-68883=40.808239,-98.597294
-68901=40.591610,-98.372728
-68920=40.154543,-99.339914
-68922=40.335199,-99.896424
-68923=40.359107,-99.468322
-68924=40.495556,-99.118997
-68925=40.428763,-98.430111
-68926=40.105983,-99.840291
-68927=40.499975,-99.633924
-68928=40.284345,-98.606840
-68929=40.150880,-99.049980
-68930=40.284768,-98.415566
-68932=40.315286,-98.722738
-68933=40.517843,-98.022998
-68934=40.340796,-98.135089
-68935=40.378358,-97.962002
-68936=40.328446,-99.771423
-68937=40.590960,-99.881880
-68938=40.415596,-98.117141
-68939=40.101287,-98.968918
-68940=40.547151,-99.246818
-68941=40.457210,-98.278089
-68942=40.096601,-98.300584
-68943=40.057370,-97.907250
-68944=40.643601,-98.094793
-68945=40.568226,-98.777823
-68946=40.111639,-99.985789
-68947=40.280096,-99.047663
-68948=40.318263,-100.021482
-68949=40.427061,-99.388950
-68950=40.461783,-98.669439
-68952=40.076280,-98.662556
-68954=40.622945,-98.234368
-68955=40.595563,-98.542780
-68956=40.636323,-98.691023
-68957=40.273952,-98.246364
-68958=40.518810,-99.497357
-68959=40.484000,-98.916010
-68960=40.096651,-99.136253
-68961=40.208997,-98.043802
-68964=40.238096,-97.911878
-68966=40.159905,-99.467272
-68967=40.254035,-99.624404
-68969=40.303874,-99.283398
-68970=40.110321,-98.509567
-68971=40.110633,-99.247931
-68972=40.118855,-98.810982
-68973=40.454782,-98.564830
-68974=40.125862,-97.867653
-68975=40.618810,-97.948619
-68976=40.590320,-99.727778
-68977=40.069843,-99.630867
-68978=40.066660,-98.097500
-68979=40.589677,-97.851484
-68980=40.676614,-98.250701
-68981=40.278734,-98.896151
-68982=40.332296,-99.180146
-69001=40.246709,-100.643942
-69020=40.197245,-100.300903
-69021=40.141610,-101.540343
-69022=40.379758,-100.191949
-69023=40.483257,-101.907510
-69024=40.232726,-100.847051
-69025=40.620868,-100.509480
-69026=40.046771,-100.429674
-69027=40.427683,-101.542800
-69028=40.635927,-100.054271
-69029=40.708969,-100.252969
-69030=40.211719,-101.919863
-69032=40.570659,-101.014404
-69033=40.559381,-101.676010
-69034=40.250769,-100.433692
-69036=40.048682,-100.274350
-69037=40.184984,-101.405741
-69038=40.587321,-100.745866
-69039=40.696278,-100.391689
-69040=40.350306,-101.125171
-69041=40.195121,-101.765479
-69042=40.476668,-100.405251
-69043=40.128711,-101.255201
-69044=40.130145,-101.016489
-69045=40.465392,-101.369178
-69046=40.076407,-100.086526
-69101=41.141895,-100.800597
-69120=41.397011,-100.218112
-69121=41.513604,-101.688787
-69122=41.131252,-102.102414
-69123=41.011414,-100.371826
-69125=41.626490,-102.824548
-69127=41.142762,-101.932112
-69128=41.226670,-103.928819
-69129=41.113295,-102.409026
-69130=40.894116,-99.952965
-69131=41.407395,-102.973516
-69132=40.793401,-100.957871
-69133=41.188423,-103.460347
-69134=40.835298,-101.376254
-69135=42.295077,-100.219847
-69138=40.995816,-100.176551
-69140=40.850303,-101.773477
-69141=41.306523,-102.955003
-69142=41.913938,-100.304871
-69143=41.211576,-101.042099
-69144=41.272153,-101.537461
-69145=41.246022,-103.667696
-69146=41.312458,-101.773391
-69147=41.575007,-102.093460
-69148=41.590372,-102.598259
-69149=41.221745,-102.677147
-69150=40.847700,-101.543056
-69151=41.090203,-100.495252
-69152=42.165866,-101.215036
-69153=41.101361,-101.675692
-69154=41.430572,-102.351775
-69155=41.188361,-101.389426
-69156=41.310781,-103.331902
-69157=42.062187,-100.153362
-69161=42.156506,-100.781305
-69162=41.129228,-103.016632
-69163=41.569639,-100.541642
-69165=41.264859,-101.207258
-69166=42.028186,-100.608571
-69167=41.596232,-101.006031
-69168=40.798996,-101.986523
-69169=40.821942,-101.160866
-69170=40.796027,-100.744306
-69171=40.890044,-100.070711
-69201=42.739801,-100.567059
-69210=42.359562,-99.923920
-69211=42.832058,-101.303169
-69212=42.932930,-100.801436
-69214=42.598549,-100.099662
-69216=42.977809,-100.983590
-69217=42.564777,-99.666799
-69218=42.789248,-101.674835
-69219=42.577506,-101.203397
-69220=42.865604,-100.130357
-69221=42.582492,-100.300943
-69301=42.122965,-102.881280
-69331=41.897273,-102.991332
-69333=42.050942,-101.966594
-69334=41.821808,-103.290160
-69335=42.074795,-102.109845
-69336=41.628527,-103.167371
-69337=42.827175,-103.012899
-69339=42.604343,-103.412936
-69340=42.214870,-102.207861
-69341=41.720970,-103.632808
-69343=42.702367,-102.033115
-69345=41.589582,-103.744624
-69346=42.625227,-103.792979
-69347=42.606578,-102.684374
-69348=42.275508,-103.350453
-69350=41.961247,-101.764942
-69351=42.028806,-102.421861
-69352=41.803986,-103.973548
-69353=41.747228,-103.416509
-69354=42.369194,-103.603633
-69355=41.783287,-103.506205
-69356=41.901589,-103.450940
-69357=42.110496,-103.768458
-69358=42.066266,-103.968333
-69360=42.696937,-102.467053
-69361=41.922838,-103.622904
-69365=42.985001,-102.504920
-69366=42.182821,-101.585958
-69367=42.811821,-103.330405
-70001=29.983730,-90.167200
-70002=30.012223,-90.162523
-70003=30.001164,-90.209724
-70005=29.999416,-90.134065
-70006=30.014032,-90.191345
-70030=29.819197,-90.439710
-70031=29.943492,-90.295565
-70032=29.958602,-89.997477
-70036=29.714032,-90.121496
-70037=29.827451,-90.024702
-70038=29.349224,-89.438812
-70039=29.886943,-90.389006
-70040=29.744682,-89.938296
-70041=29.339544,-89.481550
-70043=29.948414,-89.962678
-70047=29.968947,-90.367309
-70049=30.030544,-90.571302
-70050=29.379579,-89.590257
-70051=30.086150,-90.647603
-70052=30.055069,-90.695015
-70053=29.913421,-90.053201
-70056=29.887380,-90.027313
-70057=29.962198,-90.464199
-70058=29.868864,-90.064875
-70062=29.991693,-90.258179
-70065=30.027292,-90.253450
-70067=29.710880,-90.096785
-70068=30.156099,-90.436898
-70070=29.829842,-90.310627
-70071=30.051611,-90.705901
-70072=29.835653,-90.110302
-70075=29.933532,-89.921950
-70076=30.061668,-90.649614
-70079=30.003414,-90.410210
-70080=29.883998,-90.433699
-70082=29.563715,-89.749596
-70083=29.463084,-89.894753
-70084=30.075645,-90.567481
-70085=29.836707,-89.737441
-70086=30.036199,-90.865400
-70087=29.976027,-90.315015
-70090=29.969253,-90.701136
-70091=29.119054,-89.271121
-70092=29.898940,-89.895262
-70094=29.915778,-90.207605
-70112=29.957008,-90.076935
-70113=29.943018,-90.083073
-70114=29.937445,-90.032322
-70115=29.923930,-90.102484
-70116=29.967440,-90.064783
-70117=29.968157,-90.029962
-70118=29.944727,-90.125661
-70119=29.975137,-90.086944
-70121=29.959763,-90.163314
-70122=30.013437,-90.062798
-70123=29.949939,-90.205559
-70124=30.007379,-90.103919
-70125=29.952072,-90.103310
-70126=30.018200,-90.020724
-70127=30.023650,-89.977867
-70128=30.050846,-89.956039
-70129=30.080851,-89.813366
-70130=29.937353,-90.069648
-70131=29.906318,-89.958342
-70139=29.950279,-90.071002
-70163=29.950058,-90.075441
-70301=29.808328,-90.750267
-70339=29.909500,-91.182867
-70340=29.669779,-91.105354
-70341=30.032520,-91.067460
-70342=29.693147,-91.238340
-70343=29.548398,-90.557239
-70344=29.176879,-90.515055
-70345=29.548416,-90.259020
-70346=30.153716,-91.003200
-70352=29.684424,-90.940194
-70353=29.358143,-90.700118
-70354=29.452557,-90.282355
-70355=29.717200,-90.468950
-70356=29.631566,-90.970879
-70357=29.242273,-90.219498
-70358=29.214732,-90.027546
-70359=29.694018,-90.776515
-70360=29.578671,-90.805402
-70363=29.538288,-90.704647
-70364=29.627637,-90.681784
-70372=29.782968,-90.988969
-70373=29.597954,-90.318653
-70374=29.604507,-90.501988
-70375=29.690078,-90.536448
-70377=29.347284,-90.502648
-70380=29.731623,-91.134095
-70390=29.897281,-91.031061
-70391=29.990822,-91.060800
-70392=29.731242,-91.318321
-70393=29.991358,-91.007272
-70394=29.692682,-90.616116
-70395=29.697436,-90.861730
-70397=29.396843,-90.791281
-70401=30.533553,-90.455443
-70402=30.516161,-90.470129
-70403=30.485554,-90.487687
-70420=30.484687,-89.953028
-70422=30.734832,-90.480843
-70426=30.926497,-89.858614
-70427=30.744198,-89.912079
-70431=30.616752,-89.967363
-70433=30.458752,-90.156313
-70435=30.556992,-90.106639
-70436=30.793036,-90.521582
-70437=30.619596,-90.209238
-70438=30.846224,-90.111321
-70441=30.859967,-90.749066
-70442=30.693140,-90.334028
-70443=30.632673,-90.534579
-70444=30.897005,-90.489375
-70445=30.375351,-89.910291
-70446=30.630171,-90.349707
-70447=30.422623,-90.205827
-70448=30.362180,-90.039451
-70449=30.273930,-90.670100
-70450=30.928745,-90.266751
-70451=30.548420,-90.480881
-70452=30.420852,-89.799212
-70453=30.700689,-90.764888
-70454=30.362846,-90.358594
-70455=30.529855,-90.323981
-70456=30.787059,-90.504620
-70458=30.261870,-89.794189
-70460=30.297957,-89.840688
-70461=30.231091,-89.716936
-70462=30.376279,-90.580740
-70463=30.658383,-89.903929
-70464=30.551195,-89.919008
-70465=30.856259,-90.523930
-70466=30.568714,-90.500761
-70471=30.407038,-90.063421
-70501=30.241832,-91.991039
-70503=30.170874,-92.054784
-70506=30.195461,-92.081305
-70507=30.278319,-92.028037
-70508=30.155238,-92.028225
-70510=29.894612,-92.193173
-70512=30.415729,-91.920497
-70513=29.899969,-91.903251
-70514=29.849782,-91.546936
-70515=30.452467,-92.577743
-70516=30.370902,-92.303577
-70517=30.298246,-91.833570
-70518=30.134781,-91.927467
-70519=30.080175,-91.897382
-70520=30.330999,-92.033704
-70523=29.871779,-91.440008
-70524=30.556953,-92.311285
-70525=30.411533,-92.218808
-70526=30.210073,-92.379963
-70528=29.939505,-91.984992
-70529=30.202279,-92.161580
-70531=30.233947,-92.517483
-70532=30.452737,-92.697025
-70533=29.890140,-92.046464
-70534=30.217040,-92.438180
-70535=30.463256,-92.420164
-70537=30.251621,-92.570192
-70538=29.805551,-91.498353
-70541=30.426726,-92.047560
-70542=30.009678,-92.584774
-70543=30.335404,-92.501138
-70544=29.904121,-91.662095
-70546=30.266368,-92.673552
-70548=29.812965,-92.405155
-70549=30.069149,-92.804700
-70550=30.518594,-92.187657
-70552=30.067552,-91.672717
-70554=30.618180,-92.484346
-70555=30.081400,-92.145854
-70556=30.195678,-92.557129
-70558=30.100525,-92.075759
-70559=30.128785,-92.502668
-70560=29.921943,-91.878669
-70563=30.016630,-91.710041
-70570=30.533657,-92.104961
-70575=29.948922,-92.158095
-70576=30.780968,-92.418253
-70577=30.550352,-91.934234
-70578=30.231922,-92.261544
-70580=30.675238,-92.428327
-70581=30.250866,-92.731431
-70582=30.161555,-91.783868
-70583=30.261065,-92.123656
-70584=30.389143,-92.097427
-70585=30.878345,-92.407676
-70586=30.746507,-92.328138
-70589=30.680315,-92.003197
-70591=30.257744,-92.832802
-70592=30.080623,-92.012361
-70601=30.226792,-93.215443
-70605=30.129276,-93.273527
-70607=30.038425,-93.190125
-70611=30.348118,-93.203600
-70615=30.255414,-93.126507
-70630=30.025828,-93.016789
-70631=29.853375,-93.568288
-70632=29.836945,-93.057766
-70633=30.426005,-93.391290
-70634=30.793357,-93.240067
-70637=30.697645,-92.963463
-70638=30.849499,-92.797226
-70639=30.978267,-93.491139
-70640=30.371889,-92.904613
-70643=29.820556,-92.811553
-70644=30.792345,-92.945596
-70645=29.928002,-93.473885
-70646=30.088895,-92.918575
-70647=30.254625,-93.023942
-70648=30.505073,-92.889361
-70650=30.237437,-92.923188
-70651=30.572014,-92.960894
-70652=30.608462,-93.267444
-70653=30.667154,-93.562092
-70654=30.664148,-92.884378
-70655=30.661491,-92.731598
-70656=30.961373,-92.968114
-70657=30.503084,-93.153008
-70658=30.527772,-93.043397
-70659=30.921932,-93.284285
-70660=30.556098,-93.444692
-70661=30.354517,-93.649660
-70662=30.799636,-92.993152
-70663=30.290269,-93.371695
-70665=30.121881,-93.451224
-70668=30.187906,-93.598313
-70669=30.242348,-93.272318
-70706=30.607223,-90.907369
-70710=30.353674,-91.259393
-70711=30.524507,-90.592005
-70712=30.969575,-91.596702
-70714=30.587189,-91.127633
-70715=30.762706,-91.676527
-70719=30.363189,-91.299551
-70721=30.223391,-91.079505
-70722=30.854787,-90.945939
-70723=30.059602,-90.840237
-70725=30.128093,-90.959430
-70726=30.425575,-90.886120
-70729=30.587693,-91.344857
-70730=30.809877,-91.094643
-70732=30.618869,-91.608423
-70733=30.299434,-90.813086
-70734=30.206556,-90.996999
-70736=30.632183,-91.338362
-70737=30.222380,-90.922197
-70739=30.601066,-90.965337
-70740=30.310055,-91.439763
-70743=30.031091,-90.779194
-70744=30.553487,-90.674224
-70747=30.873669,-91.676232
-70748=30.817729,-91.193986
-70749=30.650223,-91.394511
-70750=30.501282,-91.765791
-70752=30.586680,-91.406589
-70753=30.942185,-91.732185
-70754=30.407410,-90.750460
-70755=30.593309,-91.530033
-70756=30.546816,-91.614154
-70757=30.489381,-91.519489
-70759=30.697384,-91.579455
-70760=30.707216,-91.448808
-70761=30.974954,-91.038279
-70762=30.578340,-91.464653
-70763=30.044862,-90.741876
-70764=30.216866,-91.282778
-70767=30.481128,-91.330712
-70769=30.307430,-90.940643
-70770=30.643797,-90.996933
-70772=30.436961,-91.468653
-70773=30.610267,-91.363185
-70774=30.214554,-90.761904
-70775=30.858253,-91.369000
-70776=30.265844,-91.086139
-70777=30.740249,-91.078628
-70778=30.157756,-90.862682
-70780=30.298733,-91.185298
-70782=30.951919,-91.511804
-70783=30.685464,-91.403798
-70785=30.557101,-90.819236
-70787=30.961632,-91.440710
-70788=30.140492,-91.172838
-70789=30.940581,-91.082957
-70791=30.651982,-91.154440
-70801=30.449653,-91.185979
-70802=30.444469,-91.177692
-70803=30.414317,-91.177664
-70805=30.488923,-91.158261
-70806=30.448758,-91.124753
-70807=30.543725,-91.219682
-70808=30.404146,-91.139137
-70809=30.394045,-91.070972
-70810=30.331942,-91.092135
-70811=30.537682,-91.134907
-70812=30.500727,-91.110436
-70814=30.485177,-91.067983
-70815=30.455463,-91.066262
-70816=30.431813,-91.021967
-70817=30.375106,-90.980420
-70818=30.542532,-91.049894
-70819=30.472459,-91.009536
-70820=30.365070,-91.203973
-70836=30.391248,-91.090342
-71001=32.591547,-92.889253
-71003=32.629546,-93.030824
-71004=32.748798,-93.859811
-71006=32.722671,-93.630383
-71007=32.362527,-94.006751
-71008=32.347123,-92.968651
-71016=32.224441,-93.116314
-71018=32.823719,-93.426706
-71019=32.048755,-93.316966
-71021=32.967708,-93.446542
-71023=32.476212,-93.410302
-71024=32.498109,-93.201695
-71027=32.253378,-93.640018
-71028=32.489720,-93.083643
-71029=32.837200,-93.841034
-71030=32.195972,-93.784896
-71031=32.002968,-92.904241
-71032=32.094865,-93.795369
-71033=32.411929,-94.011253
-71034=32.181488,-93.311368
-71037=32.475074,-93.487610
-71038=32.951539,-93.062870
-71039=32.430294,-93.289700
-71040=32.767333,-93.014942
-71043=32.886012,-93.887836
-71044=32.954178,-93.882456
-71045=32.331645,-93.184640
-71046=32.163058,-93.948825
-71047=32.289524,-93.914938
-71048=32.838519,-92.845589
-71049=32.009206,-93.966552
-71051=32.319454,-93.477953
-71052=32.003718,-93.663325
-71055=32.676883,-93.293312
-71060=32.654036,-93.980614
-71061=32.778039,-93.953957
-71063=31.911493,-93.515127
-71064=32.913180,-93.679607
-71065=31.803198,-93.502679
-71067=32.600224,-93.504640
-71068=32.276728,-93.303454
-71069=32.967888,-93.987968
-71070=32.100774,-93.007304
-71071=32.921887,-93.456762
-71072=32.937113,-93.311269
-71073=32.514140,-93.311486
-71075=32.997305,-93.506202
-71078=32.256500,-93.781822
-71079=32.932816,-92.808229
-71082=32.832791,-93.964667
-71101=32.506371,-93.747221
-71103=32.491938,-93.772093
-71104=32.483775,-93.731646
-71105=32.456691,-93.709890
-71106=32.378491,-93.730669
-71107=32.595618,-93.859525
-71108=32.443173,-93.787826
-71109=32.467911,-93.813872
-71110=32.504882,-93.596138
-71111=32.572857,-93.696982
-71112=32.453017,-93.620859
-71115=32.268803,-93.579561
-71118=32.393679,-93.804064
-71119=32.490693,-93.925460
-71129=32.386060,-93.913664
-71201=32.532929,-92.105911
-71202=32.399905,-92.056550
-71203=32.582209,-92.018358
-71209=32.529023,-92.069585
-71219=32.325706,-91.693220
-71220=32.864539,-91.908541
-71222=32.826236,-92.656885
-71223=32.888913,-91.654814
-71225=32.512270,-92.338609
-71226=32.250749,-92.437982
-71227=32.535200,-92.471563
-71229=32.631925,-91.896752
-71232=32.405303,-91.466092
-71233=32.325178,-90.932097
-71234=32.645272,-92.330561
-71235=32.690015,-92.673804
-71237=32.597160,-91.494797
-71238=32.363051,-92.375269
-71241=32.779372,-92.352043
-71243=31.951730,-91.816093
-71245=32.534093,-92.725885
-71247=32.273656,-92.722016
-71250=32.954994,-91.583189
-71251=32.220631,-92.676890
-71253=32.991202,-91.309440
-71254=32.796481,-91.253379
-71256=32.949640,-92.721146
-71259=32.259266,-91.848657
-71260=32.907919,-92.234961
-71261=32.772402,-91.698336
-71263=32.871845,-91.425837
-71264=32.601281,-91.772528
-71266=32.694663,-91.504375
-71268=32.346067,-92.737020
-71269=32.440635,-91.793784
-71270=32.489856,-92.643874
-71272=32.526867,-92.649341
-71275=32.511899,-92.816833
-71276=32.570267,-91.147816
-71277=32.943343,-92.550972
-71279=32.487355,-91.857122
-71280=32.717701,-92.101206
-71282=32.358981,-91.181064
-71286=32.659214,-91.198986
-71291=32.565624,-92.172912
-71292=32.396678,-92.214764
-71295=32.148625,-91.707292
-71301=31.274156,-92.467107
-71302=31.197018,-92.370220
-71303=31.281321,-92.547344
-71316=31.241848,-91.741404
-71322=30.871119,-92.175559
-71323=31.267741,-92.211702
-71325=30.999205,-92.322145
-71326=31.777078,-91.603933
-71327=30.991981,-92.001383
-71328=31.355100,-92.175517
-71331=31.257244,-92.113148
-71333=30.909986,-92.071870
-71334=31.663443,-91.558351
-71336=32.027122,-91.591595
-71339=31.013823,-91.932294
-71340=31.759812,-91.808050
-71341=31.065430,-92.168056
-71342=31.605159,-92.140729
-71343=31.520809,-91.899171
-71345=30.728356,-91.975451
-71346=31.118246,-92.374928
-71350=31.067691,-92.074182
-71351=31.184246,-91.960829
-71353=30.772930,-91.789004
-71354=31.404457,-91.750053
-71355=31.080929,-91.843964
-71356=30.815703,-92.040935
-71357=32.118991,-91.299302
-71358=30.691880,-91.870105
-71360=31.327512,-92.354690
-71362=30.899115,-91.961060
-71366=31.937216,-91.337058
-71367=30.881575,-92.298045
-71368=31.879707,-91.681882
-71369=30.930023,-91.877060
-71371=31.681682,-92.255293
-71373=31.313431,-91.608945
-71375=31.873718,-91.487345
-71377=31.610604,-91.786272
-71378=31.942365,-91.708659
-71401=31.797481,-91.945921
-71403=31.213288,-93.432754
-71404=31.747006,-92.751585
-71405=31.409505,-92.401730
-71406=31.733102,-93.504579
-71407=31.511005,-92.485916
-71409=31.310753,-92.689221
-71410=31.964808,-92.771461
-71411=31.905455,-93.090534
-71414=31.827920,-93.023916
-71416=31.540434,-92.896951
-71417=31.508204,-92.649646
-71418=32.153925,-92.066720
-71419=31.818530,-93.710730
-71422=32.075286,-92.665698
-71423=31.608231,-92.568390
-71424=31.198217,-92.689840
-71425=31.884125,-91.864145
-71426=31.498904,-93.459879
-71427=31.393954,-92.895939
-71429=31.409171,-93.434636
-71430=31.045222,-92.495816
-71432=31.749577,-92.467710
-71433=31.001180,-92.639215
-71435=32.031741,-92.166355
-71438=31.123274,-92.824105
-71439=31.336817,-93.395725
-71441=31.951563,-92.153440
-71446=31.166711,-93.186912
-71447=31.439054,-92.812704
-71449=31.545133,-93.511491
-71450=31.777653,-93.415279
-71452=31.582642,-92.945043
-71454=31.691420,-92.858382
-71455=31.403448,-92.989500
-71456=31.642077,-92.978467
-71457=31.741703,-93.106492
-71459=31.049335,-93.223895
-71461=31.117838,-93.290291
-71462=31.656767,-93.721339
-71463=30.810055,-92.609872
-71465=31.876829,-92.179143
-71466=31.215147,-92.748626
-71467=31.563307,-92.387126
-71468=31.480849,-93.148903
-71469=31.694472,-93.270631
-71472=31.168851,-92.787163
-71473=32.060376,-92.436094
-71474=31.274616,-93.013045
-71479=31.848859,-92.367977
-71480=31.861010,-92.289798
-71483=31.892384,-92.657875
-71485=31.156609,-92.541668
-71486=31.650584,-93.618811
-71601=34.179380,-91.892483
-71602=34.266258,-92.145362
-71603=34.121075,-92.088127
-71630=33.620304,-91.207069
-71631=33.580025,-92.264958
-71635=33.131052,-91.996505
-71638=33.520936,-91.484668
-71639=33.901476,-91.520374
-71640=33.101218,-91.278079
-71642=33.387396,-91.887479
-71643=34.016891,-91.576497
-71644=34.098317,-91.704718
-71646=33.235544,-91.787587
-71647=33.364360,-92.114035
-71651=33.326924,-92.295767
-71652=33.932638,-92.333039
-71653=33.343373,-91.251768
-71654=33.621090,-91.371079
-71655=33.639802,-91.749587
-71658=33.315968,-91.562057
-71659=34.143566,-91.775854
-71660=33.758739,-92.202721
-71661=33.151034,-91.550243
-71662=33.843455,-91.506833
-71663=33.226443,-91.429483
-71665=33.930261,-92.109532
-71666=33.761035,-91.282223
-71667=33.924489,-91.837089
-71670=33.716086,-91.390919
-71671=33.601989,-92.096049
-71674=33.837003,-91.175206
-71675=33.591748,-91.938191
-71676=33.052182,-91.567642
-71677=33.761875,-91.480643
-71701=33.586463,-92.819690
-71711=33.637549,-92.720251
-71720=33.786212,-92.654681
-71722=33.721771,-93.174656
-71724=33.327776,-92.535675
-71725=34.049630,-92.557937
-71726=33.672341,-92.986057
-71730=33.198844,-92.627076
-71740=33.076871,-93.167354
-71742=33.852672,-92.448887
-71743=33.889333,-93.097793
-71744=33.496803,-92.480163
-71745=33.500735,-92.396088
-71747=33.060731,-92.202891
-71749=33.071881,-92.818579
-71751=33.411484,-92.760260
-71752=33.391416,-93.191768
-71753=33.225678,-93.184674
-71758=33.309289,-92.914948
-71759=33.320987,-92.644185
-71762=33.342916,-92.768358
-71763=33.916457,-92.805340
-71764=33.431939,-93.048957
-71765=33.141882,-92.331795
-71766=33.725131,-92.506653
-71770=33.388092,-93.317427
-71772=33.832642,-93.126092
-71801=33.645886,-93.598921
-71820=33.799412,-94.272577
-71822=33.663095,-94.156267
-71823=33.829333,-94.123392
-71825=33.877783,-93.556496
-71826=33.092540,-93.723219
-71827=33.425189,-93.396517
-71832=34.036919,-94.351136
-71833=34.141928,-94.041250
-71834=33.114843,-93.957845
-71835=33.644014,-93.429182
-71836=33.714994,-94.397650
-71837=33.254898,-93.845308
-71838=33.652497,-93.812294
-71839=33.334884,-93.729032
-71841=34.161996,-94.339512
-71842=33.902882,-94.285269
-71845=33.315595,-93.643959
-71846=33.943737,-94.127736
-71847=33.926251,-93.636805
-71851=33.856659,-93.942522
-71852=33.997681,-93.855553
-71853=33.593799,-93.938035
-71854=33.451415,-93.881829
-71855=33.865153,-93.751335
-71857=33.801468,-93.337590
-71858=33.585136,-93.263796
-71859=33.744439,-93.910186
-71860=33.290219,-93.489664
-71861=33.100673,-93.499952
-71862=33.779653,-93.728054
-71865=33.740996,-94.149866
-71866=33.877497,-94.406484
-71901=34.526453,-92.974072
-71909=34.643688,-92.997552
-71913=34.449239,-93.094266
-71921=34.243654,-93.390909
-71922=34.023207,-93.413297
-71923=34.085089,-93.045270
-71929=34.303737,-93.159556
-71933=34.439307,-93.342843
-71935=34.394960,-93.751384
-71937=34.399366,-94.390304
-71940=34.023354,-93.520406
-71941=34.247250,-92.948746
-71943=34.340316,-93.607268
-71944=34.242824,-94.332769
-71945=34.485153,-94.339565
-71949=34.699085,-93.220798
-71950=34.256518,-93.717836
-71952=34.276513,-93.821435
-71953=34.608016,-94.197193
-71956=34.598636,-93.153438
-71957=34.565024,-93.574701
-71958=34.123352,-93.664613
-71959=34.243165,-93.931584
-71960=34.490338,-93.711367
-71961=34.600315,-93.838360
-71962=34.036195,-93.322745
-71964=34.424134,-93.240731
-71965=34.670485,-93.746571
-71968=34.524171,-93.290496
-71969=34.669242,-93.629210
-71970=34.668934,-93.489154
-71971=34.304022,-94.034257
-71972=34.382891,-94.276862
-71973=34.301882,-94.318986
-71998=34.126385,-93.055286
-71999=34.127458,-93.059067
-72001=35.058351,-92.885846
-72002=34.660794,-92.527512
-72003=34.382529,-91.390261
-72004=34.282786,-91.779310
-72005=35.537189,-91.070427
-72006=35.243873,-91.359583
-72007=35.001903,-91.983177
-72010=35.320195,-91.537618
-72011=34.500623,-92.465885
-72012=35.094842,-91.907583
-72013=35.455344,-92.368472
-72014=35.432522,-91.111808
-72015=34.485899,-92.585099
-72016=34.970823,-92.632882
-72017=34.900249,-91.416432
-72019=34.638030,-92.685264
-72020=35.472034,-91.470145
-72021=34.845540,-91.217479
-72022=34.607458,-92.488544
-72023=34.964267,-92.063652
-72024=34.760848,-91.741919
-72025=35.052328,-92.999375
-72026=34.505228,-91.295000
-72027=35.373818,-92.572871
-72029=34.707123,-91.238574
-72030=35.427088,-92.675908
-72031=35.633661,-92.531647
-72032=35.065559,-92.362675
-72034=35.049921,-92.486049
-72035=35.078763,-92.457353
-72036=35.011116,-91.273098
-72037=34.537243,-91.874679
-72038=34.452651,-91.238115
-72039=35.356065,-92.397334
-72040=34.969678,-91.532820
-72041=34.721785,-91.467356
-72042=34.260580,-91.324459
-72044=35.660028,-92.164976
-72045=35.129841,-92.032290
-72046=34.558459,-91.950755
-72047=35.223782,-92.210687
-72048=34.228976,-91.145253
-72051=35.786051,-92.321011
-72055=34.098693,-91.354190
-72057=34.140940,-92.310368
-72058=35.245918,-92.374199
-72059=35.139596,-91.315005
-72060=35.073708,-91.599008
-72061=35.322763,-92.299994
-72063=35.318066,-92.790118
-72064=34.791589,-91.608698
-72065=34.534625,-92.286376
-72067=35.563373,-92.155437
-72068=35.190308,-91.710763
-72069=34.532140,-91.137845
-72070=35.008120,-92.706952
-72072=34.523961,-91.739547
-72073=34.381138,-91.669076
-72074=35.078270,-91.095316
-72076=34.916182,-92.141483
-72079=34.390546,-92.173539
-72080=35.437998,-92.834510
-72081=35.382007,-91.670425
-72082=35.232834,-91.673570
-72083=34.593528,-92.008712
-72084=34.143958,-92.667512
-72085=35.363958,-91.829069
-72086=34.807021,-91.907681
-72087=34.596727,-92.826199
-72088=35.595187,-92.267834
-72099=34.899278,-92.141459
-72101=35.245352,-91.161529
-72102=35.147155,-91.830016
-72103=34.590486,-92.390045
-72104=34.342042,-92.821803
-72106=34.973989,-92.526078
-72107=35.141820,-92.536244
-72108=34.687786,-91.066022
-72110=35.156495,-92.781326
-72111=35.238551,-92.131305
-72112=35.580917,-91.229715
-72113=34.859561,-92.397622
-72114=34.764902,-92.260348
-72116=34.800258,-92.245317
-72117=34.769847,-92.145446
-72118=34.840468,-92.326035
-72119=34.834025,-92.292252
-72120=34.902043,-92.240819
-72121=35.455321,-91.786140
-72122=34.777884,-92.808357
-72123=35.258759,-91.235387
-72125=35.066192,-92.790669
-72126=34.942765,-92.916204
-72127=35.173113,-92.606038
-72128=34.313077,-92.621441
-72129=34.325635,-92.542736
-72130=35.661399,-92.056438
-72131=35.416053,-92.189540
-72132=34.446273,-92.204774
-72134=34.617770,-91.350611
-72135=34.877841,-92.540100
-72136=35.241127,-92.005426
-72137=35.336271,-92.042179
-72139=35.361003,-91.507798
-72140=34.362455,-91.167189
-72141=35.513306,-92.672187
-72142=34.697279,-92.043838
-72143=35.232983,-91.736474
-72149=35.249093,-91.726214
-72150=34.313340,-92.394058
-72152=34.356114,-91.979332
-72153=35.646118,-92.326280
-72156=35.281036,-92.685033
-72157=35.271247,-92.556658
-72160=34.427743,-91.528699
-72165=35.575447,-91.457962
-72166=34.069097,-91.221874
-72167=34.417804,-92.647499
-72168=34.440061,-91.971787
-72169=35.396491,-91.226565
-72170=34.586000,-91.417505
-72173=35.100101,-92.211144
-72175=34.336715,-91.764040
-72176=35.002357,-91.835241
-72179=35.503585,-91.855553
-72181=35.162396,-92.445162
-72201=34.746905,-92.280049
-72202=34.730566,-92.233004
-72204=34.717617,-92.358338
-72205=34.750326,-92.351206
-72206=34.632811,-92.234961
-72207=34.773531,-92.346499
-72209=34.676378,-92.345074
-72210=34.713900,-92.508450
-72211=34.750556,-92.417622
-72212=34.785888,-92.415028
-72223=34.788983,-92.511587
-72227=34.775283,-92.374573
-72301=35.144685,-90.189236
-72311=34.723828,-90.891487
-72315=35.902669,-89.903375
-72320=34.824331,-90.524725
-72321=35.815937,-89.944659
-72322=35.064937,-90.822096
-72324=35.390418,-90.786566
-72325=35.322095,-90.245960
-72326=35.116264,-90.907852
-72327=35.232947,-90.333792
-72328=33.986016,-91.091182
-72329=35.614569,-89.988071
-72330=35.587792,-90.210309
-72331=35.281034,-90.466305
-72332=35.101950,-90.308837
-72333=34.302008,-90.866645
-72335=34.994363,-90.745986
-72338=35.400755,-90.154420
-72339=35.422010,-90.268106
-72340=34.939320,-91.027828
-72341=34.878390,-90.769095
-72342=34.448956,-90.684489
-72346=35.082326,-90.484490
-72347=35.377743,-91.014418
-72348=34.941764,-90.417886
-72350=35.499753,-90.129287
-72351=35.673714,-90.096400
-72353=34.300515,-91.007283
-72354=35.618861,-90.319300
-72355=34.474201,-90.797703
-72358=35.792094,-89.892431
-72359=35.026355,-90.722129
-72360=34.750302,-90.780771
-72364=35.217536,-90.189224
-72365=35.520937,-90.450084
-72366=34.518108,-90.960860
-72367=34.197327,-90.943901
-72368=34.810402,-91.023371
-72370=35.714480,-90.027718
-72372=34.967590,-90.950562
-72373=35.308676,-90.594228
-72374=34.566337,-90.833499
-72376=35.087232,-90.299750
-72377=35.692827,-90.335972
-72379=34.054780,-91.041036
-72383=34.491057,-91.039625
-72384=35.375795,-90.219489
-72386=35.450240,-90.365989
-72389=34.371344,-90.912075
-72390=34.551045,-90.679410
-72392=34.965598,-91.100606
-72394=35.060030,-90.614018
-72395=35.593090,-90.081246
-72396=35.230088,-90.822532
-72401=35.886344,-90.656774
-72404=35.773862,-90.778838
-72410=35.947477,-91.097645
-72411=35.745090,-90.575507
-72412=36.124168,-90.694378
-72413=36.301830,-90.822219
-72414=35.824609,-90.374049
-72415=36.126668,-91.175013
-72416=35.963977,-90.795722
-72417=35.916276,-90.539526
-72419=35.749599,-90.353550
-72421=35.785321,-90.971951
-72422=36.424558,-90.519488
-72424=36.390527,-90.736363
-72425=36.215265,-90.739215
-72426=35.868207,-90.041639
-72427=35.867056,-90.935772
-72428=35.739351,-90.224596
-72429=35.506079,-90.928396
-72430=36.334529,-90.171274
-72431=35.632571,-91.079409
-72432=35.552690,-90.720042
-72433=36.025741,-91.047639
-72434=36.217536,-91.156352
-72435=36.315759,-90.579100
-72436=36.235784,-90.485057
-72437=35.848382,-90.458281
-72438=35.949108,-90.217756
-72440=36.005556,-91.227055
-72441=36.436953,-90.385317
-72442=35.818572,-90.186693
-72443=36.175770,-90.411414
-72444=36.428649,-90.852789
-72445=35.976503,-91.026627
-72447=35.908913,-90.328424
-72449=36.177465,-90.819634
-72450=36.079546,-90.516440
-72453=36.294577,-90.707988
-72454=36.406767,-90.202572
-72455=36.319648,-91.029167
-72456=36.447254,-90.338356
-72457=36.088891,-91.068221
-72458=36.072601,-91.158549
-72459=36.292523,-91.292989
-72460=36.349823,-91.169303
-72461=36.266147,-90.285219
-72462=36.389116,-90.759335
-72464=36.457748,-90.144108
-72466=36.053793,-91.330727
-72467=35.841039,-90.675602
-72469=35.951824,-91.289073
-72470=36.474682,-90.692281
-72471=35.827874,-91.110148
-72472=35.596453,-90.534179
-72473=35.738276,-91.171315
-72476=36.049514,-90.919912
-72478=36.447875,-91.058981
-72479=35.633662,-90.905465
-72482=36.277559,-91.367518
-72501=35.791171,-91.653381
-72512=36.220421,-91.746312
-72513=36.226285,-91.658306
-72515=36.276377,-92.056433
-72517=36.132311,-91.973274
-72519=36.134123,-92.180309
-72520=36.390900,-91.720193
-72521=35.949672,-91.541118
-72522=35.810886,-91.470428
-72523=35.627793,-91.844656
-72524=35.840215,-91.311438
-72526=35.883198,-91.779304
-72527=35.739859,-91.684984
-72528=36.227487,-92.138311
-72529=36.291822,-91.564287
-72530=35.603916,-91.944720
-72531=36.330230,-92.139824
-72532=36.103956,-91.600598
-72533=35.978455,-92.247016
-72534=35.601037,-91.744389
-72536=36.144167,-91.768292
-72537=36.446131,-92.222556
-72538=36.445567,-92.100292
-72539=36.332140,-91.711144
-72540=35.919397,-91.909992
-72542=36.300403,-91.465978
-72543=35.450539,-91.987292
-72544=36.403646,-92.189682
-72546=35.578882,-91.941061
-72550=35.710126,-91.783974
-72553=35.700507,-91.480822
-72554=36.438698,-91.562211
-72555=35.781440,-91.875264
-72556=36.013879,-91.970010
-72560=35.851011,-92.094066
-72561=35.949063,-91.807728
-72562=35.735469,-91.401119
-72564=35.595880,-91.456611
-72565=36.217416,-91.912766
-72566=36.216760,-92.078015
-72567=35.814566,-91.925950
-72568=35.569396,-91.624998
-72569=36.146178,-91.399363
-72571=35.641682,-91.551195
-72572=35.899142,-91.291045
-72573=36.076165,-91.797364
-72576=36.348523,-91.856028
-72577=36.027133,-91.713924
-72578=36.453153,-91.886354
-72579=35.848823,-91.449194
-72581=35.550954,-91.989243
-72583=36.414777,-91.994110
-72584=36.140997,-91.843699
-72585=36.183223,-92.008137
-72587=36.225589,-91.816758
-72601=36.238028,-93.085992
-72611=36.244796,-93.330718
-72616=36.329139,-93.551929
-72617=36.022951,-92.390633
-72619=36.373570,-92.591504
-72623=36.447646,-92.320790
-72624=36.057715,-93.381785
-72626=36.322178,-92.551463
-72628=35.839875,-93.281762
-72629=35.738502,-92.566795
-72630=36.478794,-92.904907
-72631=36.467606,-93.834419
-72632=36.373213,-93.743893
-72633=36.128875,-92.872765
-72634=36.203533,-92.526143
-72635=36.318364,-92.513841
-72636=35.989702,-92.716224
-72638=36.322765,-93.404544
-72639=36.015321,-92.480229
-72640=36.002794,-93.059430
-72641=35.986549,-93.243741
-72642=36.375735,-92.540276
-72644=36.433124,-92.992763
-72645=35.804138,-92.575385
-72648=36.087809,-93.162053
-72650=35.884317,-92.701437
-72651=36.388396,-92.482359
-72653=36.342381,-92.385430
-72655=35.900720,-93.016516
-72658=36.159705,-92.327173
-72660=36.478646,-93.377872
-72661=36.437506,-92.578700
-72662=36.431043,-93.180824
-72663=35.937773,-92.327794
-72666=35.942242,-93.265351
-72668=36.446662,-92.783079
-72669=36.064963,-92.876157
-72670=35.981749,-93.387917
-72672=36.287894,-92.844305
-72675=36.000216,-92.800216
-72677=36.252587,-92.685240
-72679=35.730057,-92.832143
-72680=35.887327,-92.329526
-72682=36.137542,-92.741396
-72683=35.923130,-93.102771
-72685=36.064122,-92.985530
-72686=35.780294,-92.843531
-72687=36.262184,-92.706299
-72701=35.992387,-94.085584
-72703=36.118332,-94.043243
-72704=36.105647,-94.296500
-72712=36.346567,-94.256280
-72714=36.467350,-94.222151
-72715=36.467146,-94.304915
-72717=35.835094,-94.408423
-72718=36.268458,-94.219446
-72719=36.367161,-94.295087
-72721=35.798415,-93.825719
-72722=36.343769,-94.469944
-72727=35.923747,-93.927682
-72729=35.771526,-94.456211
-72730=36.030477,-94.268676
-72732=36.432516,-93.959444
-72734=36.270250,-94.451058
-72736=36.413616,-94.465023
-72738=36.155900,-93.886845
-72739=36.423561,-94.327702
-72740=36.104648,-93.655397
-72742=35.963804,-93.501240
-72744=35.962580,-94.435365
-72745=36.246524,-94.102609
-72747=36.368630,-94.582789
-72749=35.868416,-94.437597
-72751=36.462735,-94.114406
-72752=35.817589,-93.590342
-72753=35.933889,-94.331072
-72756=36.322980,-93.975959
-72758=36.299665,-94.137210
-72760=35.840520,-93.702256
-72761=36.168814,-94.454856
-72762=36.181650,-94.230680
-72764=36.175682,-94.060223
-72768=36.478322,-94.498595
-72769=36.035857,-94.495898
-72773=36.022252,-93.835973
-72774=35.948327,-94.147185
-72776=35.921488,-93.649644
-72801=35.279126,-93.140877
-72802=35.318940,-93.081593
-72821=35.434935,-93.717371
-72823=35.251217,-92.905571
-72824=35.132996,-93.412111
-72826=35.119440,-93.708890
-72827=34.871709,-93.625647
-72828=34.930718,-93.534996
-72830=35.509167,-93.515619
-72832=35.414740,-93.670516
-72833=35.021703,-93.472595
-72834=35.168824,-93.183821
-72835=35.277805,-93.346311
-72837=35.503672,-93.109424
-72838=34.910749,-93.679045
-72839=35.629695,-93.244275
-72840=35.458090,-93.615427
-72841=34.837334,-93.800571
-72842=35.082360,-93.617487
-72843=35.599930,-92.937520
-72845=35.361650,-93.377876
-72846=35.483900,-93.326796
-72847=35.377533,-93.273453
-72851=35.255427,-93.438111
-72852=35.668768,-93.553758
-72853=35.016833,-93.202344
-72854=35.718188,-93.423184
-72855=35.258968,-93.683862
-72856=35.790270,-93.089516
-72857=34.862651,-93.321900
-72858=35.240223,-93.044393
-72860=34.965746,-93.445885
-72863=35.369401,-93.511253
-72865=35.311129,-93.577173
-72901=35.366187,-94.416458
-72903=35.350978,-94.361247
-72904=35.413340,-94.382352
-72908=35.309004,-94.407401
-72916=35.260747,-94.390099
-72921=35.477101,-94.196225
-72923=35.315588,-94.308770
-72926=34.732436,-94.036964
-72927=35.080054,-93.939867
-72928=35.291336,-93.930613
-72930=35.429286,-93.958826
-72932=35.604219,-94.377357
-72933=35.328642,-94.013024
-72934=35.686804,-94.284334
-72935=35.491333,-94.126480
-72936=35.189721,-94.218511
-72937=35.134729,-94.391456
-72938=35.004118,-94.377819
-72940=35.122069,-94.259293
-72941=35.367917,-94.156308
-72943=35.180144,-93.786949
-72944=35.024077,-94.234595
-72945=35.088817,-94.347427
-72946=35.669540,-94.134989
-72947=35.572054,-94.028384
-72948=35.702674,-94.392993
-72949=35.584277,-93.805165
-72950=34.776041,-93.888006
-72951=35.327345,-93.872128
-72952=35.568762,-94.300414
-72955=35.614175,-94.437781
-72956=35.466396,-94.350067
-72958=34.903819,-94.137036
-72959=35.790380,-94.071982
-73002=34.939235,-97.728318
-73003=35.668905,-97.497380
-73004=35.152297,-97.844118
-73005=35.051308,-98.240141
-73006=34.906219,-98.400220
-73007=35.685355,-97.327459
-73008=35.513888,-97.647993
-73009=35.286344,-98.372836
-73010=35.111365,-97.679215
-73011=34.847842,-97.746577
-73012=35.667234,-97.593657
-73013=35.618788,-97.484375
-73014=35.587533,-98.145189
-73015=35.083633,-98.594435
-73016=35.802067,-97.687445
-73017=34.925446,-98.095413
-73018=35.051452,-97.940504
-73019=35.206058,-97.443580
-73020=35.458810,-97.262802
-73021=35.345111,-98.663738
-73024=35.358544,-98.797830
-73025=35.733957,-97.577310
-73026=35.240460,-97.275732
-73027=35.978178,-97.251982
-73028=35.977961,-97.631503
-73029=34.905404,-98.206268
-73030=34.466145,-97.164542
-73032=34.398366,-97.047749
-73033=35.314385,-98.546625
-73034=35.703414,-97.434052
-73036=35.509391,-97.959769
-73038=35.124504,-98.451304
-73040=35.645563,-98.375225
-73041=35.042288,-98.876115
-73042=35.222848,-98.247001
-73043=35.734241,-98.403655
-73044=35.859563,-97.422527
-73045=35.514271,-97.150530
-73047=35.456816,-98.315115
-73048=35.496580,-98.546273
-73049=35.587212,-97.313952
-73050=35.938697,-97.263815
-73051=35.031807,-97.246363
-73052=34.833535,-97.589045
-73053=35.355908,-98.412145
-73054=35.671555,-97.190309
-73055=34.643824,-97.910716
-73056=36.176938,-97.626209
-73057=34.831002,-97.428630
-73058=35.815567,-97.220104
-73059=35.311705,-98.046390
-73061=36.355132,-97.005557
-73062=35.046247,-98.740922
-73063=36.052707,-97.425008
-73064=35.368764,-97.746556
-73065=35.255216,-97.610156
-73066=35.500215,-97.327478
-73067=34.911077,-97.907103
-73068=35.138630,-97.291608
-73069=35.249662,-97.462408
-73071=35.238349,-97.411896
-73072=35.211352,-97.500882
-73073=36.151761,-97.415610
-73074=34.833387,-97.274101
-73075=34.748808,-97.232285
-73077=36.306134,-97.266383
-73078=35.674850,-97.753510
-73079=35.210934,-98.012001
-73080=34.994890,-97.479879
-73082=34.776197,-97.902110
-73084=35.525860,-97.344367
-73086=34.472963,-96.970793
-73089=35.268623,-97.792855
-73090=35.398904,-97.948406
-73092=35.123886,-98.100016
-73093=35.109618,-97.486498
-73095=34.898559,-97.296140
-73096=35.514052,-98.740993
-73097=35.400491,-97.644789
-73098=34.628309,-97.161761
-73099=35.527369,-97.782510
-73102=35.470749,-97.519001
-73103=35.489073,-97.518909
-73104=35.475230,-97.503918
-73105=35.520032,-97.501254
-73106=35.481967,-97.536812
-73107=35.481606,-97.575612
-73108=35.450007,-97.567737
-73109=35.433138,-97.524548
-73110=35.461181,-97.397639
-73111=35.519496,-97.477422
-73112=35.518170,-97.575423
-73114=35.578137,-97.517674
-73115=35.442343,-97.441523
-73116=35.546701,-97.564592
-73117=35.474862,-97.462502
-73118=35.517968,-97.528718
-73119=35.422007,-97.566125
-73120=35.581316,-97.573674
-73121=35.521118,-97.439540
-73122=35.520484,-97.613440
-73127=35.477422,-97.653194
-73128=35.458482,-97.662381
-73129=35.431488,-97.484275
-73130=35.458633,-97.345632
-73131=35.576458,-97.469294
-73132=35.553400,-97.633325
-73134=35.614168,-97.568447
-73135=35.400268,-97.433076
-73139=35.386377,-97.525689
-73141=35.519962,-97.394475
-73142=35.616598,-97.645321
-73145=35.419088,-97.394046
-73149=35.389417,-97.489325
-73150=35.401238,-97.329876
-73151=35.571681,-97.416560
-73159=35.387855,-97.578835
-73160=35.332438,-97.475217
-73162=35.582011,-97.640928
-73165=35.355435,-97.365215
-73169=35.382770,-97.642601
-73170=35.325769,-97.552609
-73173=35.340805,-97.627491
-73179=35.428391,-97.640843
-73401=34.203289,-97.115520
-73425=34.455104,-97.558417
-73430=33.898323,-97.361382
-73432=34.243189,-96.415127
-73433=34.628170,-97.406715
-73434=34.618434,-97.578939
-73437=34.367943,-97.412376
-73438=34.281559,-97.503211
-73439=33.937903,-96.744103
-73440=33.944702,-96.896744
-73441=33.904470,-97.430574
-73442=34.327013,-97.664593
-73443=34.164985,-97.297643
-73444=34.475095,-97.361366
-73446=34.089592,-96.777798
-73447=34.247252,-96.853450
-73448=33.948312,-97.106144
-73449=34.008689,-96.544119
-73450=34.263432,-96.533234
-73453=34.040983,-97.232262
-73455=34.229981,-96.760353
-73456=34.124547,-97.645662
-73458=34.352109,-97.256312
-73459=33.773891,-97.130517
-73460=34.275807,-96.651260
-73461=34.360797,-96.456915
-73463=34.107640,-97.435335
-73481=34.439270,-97.522015
-73487=34.484337,-97.448953
-73491=34.473395,-97.637933
-73501=34.557945,-98.290973
-73503=34.682971,-98.491820
-73505=34.572634,-98.479102
-73507=34.795717,-98.629094
-73520=34.263009,-97.989868
-73521=34.641313,-99.315940
-73526=34.791644,-99.275969
-73527=34.578229,-98.622288
-73528=34.398379,-98.633421
-73529=34.350658,-97.944725
-73530=34.255180,-99.022339
-73531=34.194637,-98.536922
-73532=34.643206,-99.585884
-73533=34.505317,-97.865916
-73537=34.486692,-99.664244
-73538=34.673992,-98.237715
-73539=34.457248,-99.280735
-73540=34.467092,-98.560889
-73541=34.788728,-98.180721
-73542=34.401795,-98.948196
-73543=34.470062,-98.374021
-73544=34.682536,-99.745682
-73546=34.222944,-98.723483
-73547=34.993064,-99.414089
-73548=34.286479,-98.108572
-73549=34.644812,-99.152829
-73550=34.689605,-99.900320
-73551=34.354051,-98.888948
-73552=34.642436,-98.761949
-73553=34.326642,-98.722084
-73554=34.893237,-99.616858
-73555=34.501511,-98.965922
-73556=34.730084,-99.384051
-73557=34.731987,-98.488973
-73559=34.731386,-98.963699
-73560=34.539283,-99.446744
-73562=34.181006,-98.409240
-73564=34.848450,-98.999659
-73565=34.019909,-97.893975
-73566=34.615981,-98.931116
-73567=34.745916,-98.144111
-73568=34.252094,-98.213039
-73569=33.936131,-97.782013
-73570=34.514630,-99.114772
-73571=34.931288,-99.900323
-73572=34.357391,-98.341341
-73573=34.165641,-97.938643
-73601=35.489614,-98.963496
-73620=35.622330,-99.025127
-73622=35.386159,-98.996649
-73624=35.341629,-99.177885
-73625=35.676706,-99.190504
-73626=35.421462,-99.278941
-73627=35.197014,-99.452704
-73628=35.630462,-99.699840
-73632=35.269560,-98.932044
-73638=35.840371,-99.784713
-73639=35.739089,-98.960620
-73641=35.271211,-99.173707
-73642=35.822727,-99.909944
-73644=35.419594,-99.437791
-73645=35.197482,-99.896396
-73646=35.829574,-98.609606
-73647=35.435506,-99.159954
-73650=35.645945,-99.402948
-73651=35.014541,-99.075637
-73654=35.870929,-99.367422
-73655=34.982350,-99.263681
-73658=35.949209,-98.741972
-73659=35.862816,-98.917268
-73660=35.617653,-99.917328
-73661=35.167199,-99.009351
-73662=35.298362,-99.684321
-73663=36.102944,-98.894969
-73664=35.185996,-99.247421
-73666=35.472982,-99.920163
-73667=36.005902,-99.039900
-73669=35.730713,-98.744834
-73673=35.054415,-99.567517
-73701=36.426744,-97.791989
-73703=36.427053,-97.969332
-73705=36.338237,-97.902629
-73716=36.499454,-98.524842
-73717=36.848381,-98.764389
-73718=36.224794,-98.166797
-73719=36.956781,-98.288439
-73720=36.201132,-97.872750
-73722=36.848080,-98.215556
-73724=36.052152,-98.663719
-73726=36.587781,-98.497112
-73727=36.499524,-98.041755
-73728=36.746063,-98.370066
-73729=36.422428,-98.476608
-73730=36.320793,-97.539278
-73731=36.644994,-98.603442
-73733=36.254662,-97.687940
-73734=35.978388,-97.863019
-73735=36.280361,-98.062871
-73736=36.340239,-97.681730
-73737=36.299426,-98.640492
-73738=36.451015,-97.552000
-73739=36.514327,-98.143749
-73741=36.557445,-98.256726
-73742=36.095059,-97.934650
-73743=36.577272,-98.012769
-73744=35.947878,-98.306188
-73746=36.685124,-98.657624
-73747=36.227890,-98.331843
-73749=36.716824,-98.154929
-73750=35.852627,-97.952374
-73753=36.555251,-97.863739
-73754=36.398190,-98.096146
-73755=36.138233,-98.564734
-73756=35.979497,-98.130059
-73757=36.286880,-97.458177
-73758=36.950248,-98.081048
-73759=36.860105,-97.720424
-73760=36.371004,-98.169059
-73761=36.682910,-98.043453
-73762=35.713187,-97.964437
-73763=36.093704,-98.325804
-73764=35.854740,-98.201702
-73766=36.655593,-97.825727
-73768=36.354754,-98.292563
-73771=36.875804,-97.973133
-73772=35.863246,-98.430296
-73773=36.265726,-97.920476
-73801=36.485433,-99.412748
-73832=36.049393,-99.689049
-73834=36.846523,-99.540299
-73835=35.968551,-99.218586
-73838=36.237873,-98.895489
-73840=36.356148,-99.614847
-73841=36.558739,-99.624304
-73842=36.818340,-99.198573
-73843=36.398532,-99.814293
-73844=36.870963,-100.142214
-73848=36.660888,-100.012458
-73851=36.591412,-99.806525
-73852=36.479260,-99.120104
-73853=36.241563,-99.147365
-73855=36.917876,-99.867740
-73857=36.270809,-99.332734
-73858=36.179173,-99.921531
-73859=36.126412,-99.299640
-73860=36.537569,-98.837730
-73901=36.740055,-101.017225
-73931=36.608697,-100.797981
-73932=36.706920,-100.492472
-73933=36.740858,-102.579737
-73937=36.554897,-102.795910
-73938=36.932374,-100.578761
-73939=36.776778,-101.789896
-73942=36.738486,-101.506398
-73944=36.594634,-101.107049
-73945=36.826905,-101.232916
-73946=36.935479,-102.804080
-73947=36.820446,-102.149079
-73949=36.581136,-101.915456
-73950=36.854789,-100.894970
-73951=36.942879,-101.062787
-74001=36.493357,-96.082863
-74002=36.557214,-96.143004
-74003=36.728272,-96.067573
-74006=36.712435,-95.895038
-74008=35.924521,-95.877641
-74010=35.814546,-96.363831
-74011=35.981812,-95.809191
-74012=36.051414,-95.805721
-74014=36.055628,-95.680816
-74015=36.180425,-95.702839
-74016=36.545156,-95.451260
-74017=36.390927,-95.587689
-74019=36.284765,-95.603194
-74020=36.246194,-96.420750
-74021=36.383819,-95.842017
-74022=36.944296,-95.987762
-74023=35.958944,-96.751382
-74026=35.711744,-96.761978
-74027=36.788597,-95.586008
-74028=35.786264,-96.520013
-74029=36.822884,-95.889907
-74030=35.986110,-96.558818
-74032=36.206930,-96.898778
-74033=35.945975,-96.007444
-74034=36.226279,-96.579091
-74035=36.421404,-96.387993
-74036=36.158045,-95.506549
-74037=35.998551,-95.979890
-74038=36.156966,-96.559316
-74039=35.901719,-96.236557
-74041=35.941653,-96.055667
-74042=36.858607,-95.577942
-74044=36.096730,-96.382612
-74045=36.221128,-96.708163
-74046=35.750950,-96.559172
-74047=35.853233,-96.010833
-74048=36.695375,-95.658799
-74050=36.072822,-96.064557
-74051=36.612997,-95.956681
-74052=36.085423,-96.578090
-74053=36.430563,-95.731724
-74054=36.281991,-96.353130
-74055=36.276705,-95.819071
-74056=36.795302,-96.330859
-74058=36.362625,-96.758594
-74059=35.971732,-97.067586
-74060=36.271975,-96.246207
-74061=36.533125,-95.892635
-74062=36.037717,-96.900950
-74063=36.150767,-96.199590
-74066=35.993142,-96.164294
-74068=35.907253,-96.577983
-74070=36.400253,-96.083088
-74071=35.783474,-96.296196
-74072=36.951523,-95.534407
-74073=36.293084,-96.026176
-74074=36.078949,-97.074012
-74075=36.169169,-97.083226
-74078=36.124101,-97.070460
-74079=35.746626,-96.655169
-74080=36.542107,-95.749012
-74081=36.180517,-96.451507
-74082=36.450476,-95.881557
-74083=36.879210,-95.753383
-74084=36.528846,-96.361531
-74085=36.110793,-96.722608
-74103=36.155600,-95.994557
-74104=36.146469,-95.954005
-74105=36.097442,-95.961087
-74106=36.191942,-95.985150
-74107=36.114847,-96.032320
-74108=36.139944,-95.789657
-74110=36.188283,-95.953083
-74112=36.147036,-95.902328
-74114=36.126943,-95.946695
-74115=36.199197,-95.908785
-74116=36.188756,-95.842573
-74117=36.246054,-95.901586
-74119=36.142076,-95.989166
-74120=36.150737,-95.977408
-74126=36.241925,-96.025829
-74127=36.173132,-96.046419
-74128=36.147470,-95.851460
-74129=36.126019,-95.871602
-74130=36.241481,-95.956590
-74131=36.053681,-96.064932
-74132=36.048782,-96.016734
-74133=36.039284,-95.877444
-74134=36.109821,-95.798024
-74135=36.096205,-95.924016
-74136=36.062400,-95.941457
-74137=36.022434,-95.930585
-74145=36.097138,-95.890482
-74146=36.098806,-95.855178
-74301=36.677726,-95.224726
-74330=36.437107,-95.272373
-74331=36.639422,-94.940409
-74332=36.516971,-95.228630
-74333=36.794004,-95.081910
-74337=36.140741,-95.336936
-74338=36.257119,-94.731772
-74339=36.933947,-94.879710
-74340=36.475230,-95.023102
-74342=36.429301,-94.933848
-74343=36.736252,-94.820920
-74344=36.595478,-94.740686
-74346=36.439428,-94.754141
-74347=36.209915,-94.811983
-74349=36.517520,-95.037356
-74350=36.464827,-95.054369
-74352=36.141914,-95.180396
-74354=36.886136,-94.882511
-74358=36.917847,-94.880601
-74359=36.173526,-94.792218
-74360=36.963522,-94.836064
-74361=36.302767,-95.306842
-74363=36.955400,-94.715091
-74364=36.196316,-94.948524
-74365=36.293708,-95.071341
-74366=36.390403,-95.046162
-74367=36.416088,-95.112888
-74368=36.207553,-94.848541
-74369=36.924620,-95.202002
-74370=36.749774,-94.680369
-74401=35.723078,-95.467700
-74403=35.670516,-95.306945
-74421=35.762714,-96.042025
-74422=35.622830,-95.704351
-74423=35.672774,-95.191729
-74425=35.170896,-95.641497
-74426=35.451697,-95.530308
-74427=35.678906,-94.888846
-74428=35.569374,-95.637768
-74429=35.955472,-95.627564
-74430=35.126888,-95.661226
-74431=35.470865,-95.941735
-74432=35.284422,-95.659320
-74434=35.809549,-95.210870
-74435=35.576616,-95.093838
-74436=35.797413,-95.696981
-74437=35.447884,-95.935810
-74438=35.544553,-95.758759
-74441=35.976851,-95.145009
-74442=35.131606,-95.833419
-74445=35.631467,-95.828602
-74446=35.849008,-95.315722
-74447=35.640224,-96.001771
-74450=35.599877,-95.478178
-74451=35.735256,-94.964139
-74452=36.120172,-95.068078
-74454=35.854320,-95.515876
-74455=35.361221,-95.261462
-74456=35.711240,-95.996987
-74457=36.005891,-94.841179
-74458=35.883581,-95.591741
-74459=35.534348,-95.492198
-74460=35.507855,-95.956524
-74462=35.290920,-95.164244
-74463=35.759528,-95.550283
-74464=35.927971,-94.982454
-74467=35.967475,-95.392906
-74468=35.612166,-95.568090
-74469=35.495106,-95.308333
-74470=35.476717,-95.166878
-74471=35.834204,-94.871883
-74472=35.249889,-95.268414
-74477=36.003882,-95.266587
-74501=34.985768,-95.790791
-74521=34.654509,-95.088174
-74522=34.903596,-95.692957
-74523=34.228459,-95.611929
-74525=34.336039,-96.068096
-74528=34.720120,-95.723961
-74530=34.436325,-96.494702
-74531=34.885419,-96.251927
-74533=34.208012,-96.197011
-74534=34.615230,-96.367738
-74535=34.484536,-96.445879
-74536=34.582802,-95.423011
-74538=34.582143,-96.258960
-74540=34.571036,-95.708133
-74543=34.370550,-95.437629
-74546=34.858706,-95.579631
-74547=34.810079,-95.613824
-74549=34.562463,-94.894131
-74552=35.120749,-95.242662
-74553=34.713427,-95.925266
-74554=34.921188,-95.710710
-74555=34.249162,-95.964544
-74556=34.464259,-96.179638
-74557=34.386811,-95.697877
-74558=34.504780,-95.165928
-74560=34.648749,-95.760131
-74561=35.130293,-95.415199
-74562=34.296000,-95.285523
-74563=34.969930,-95.072648
-74565=34.802192,-95.845244
-74567=34.426298,-95.392805
-74569=34.477288,-95.924577
-74570=34.862799,-96.100966
-74571=34.717269,-94.978738
-74572=34.644407,-96.428477
-74574=34.689048,-95.290387
-74576=34.655609,-96.039321
-74577=34.674841,-94.808016
-74578=34.906148,-95.341654
-74601=36.702158,-97.148862
-74604=36.701928,-96.982361
-74630=36.512112,-97.433506
-74631=36.792837,-97.305252
-74632=36.938862,-97.338198
-74633=36.710214,-96.776634
-74636=36.817793,-97.522271
-74637=36.567628,-96.661635
-74640=36.551638,-97.651364
-74641=36.807652,-96.890431
-74643=36.655037,-97.575123
-74644=36.552865,-97.098274
-74646=36.832439,-97.441607
-74647=36.918100,-96.994561
-74650=36.487629,-96.750282
-74651=36.468416,-97.173257
-74652=36.859145,-96.644047
-74653=36.649344,-97.350320
-74701=34.006822,-96.378921
-74720=33.831466,-96.371691
-74722=34.379578,-94.898336
-74723=33.992937,-96.017155
-74724=34.346276,-94.861330
-74726=33.941237,-96.174339
-74727=34.018744,-95.858764
-74728=34.150313,-94.802807
-74729=34.146610,-96.253977
-74730=33.912019,-96.430988
-74731=33.873765,-96.560439
-74733=33.836767,-96.479035
-74734=34.102246,-94.542510
-74735=34.096917,-95.247451
-74736=33.932171,-94.996817
-74738=33.895691,-95.443392
-74740=33.765412,-94.608109
-74741=33.792480,-96.328328
-74743=34.008426,-95.494469
-74745=33.859098,-94.816353
-74747=33.776584,-96.357317
-74748=34.151028,-96.398918
-74750=33.965194,-95.020642
-74753=33.907926,-96.536581
-74754=34.197935,-95.134370
-74755=34.134683,-95.114767
-74756=34.084510,-95.374012
-74759=34.056602,-95.712147
-74760=34.163146,-95.355769
-74761=34.005089,-95.200867
-74764=34.046949,-95.095563
-74766=34.143876,-94.980172
-74801=35.315129,-96.969671
-74804=35.391465,-96.921469
-74820=34.788674,-96.715184
-74824=35.888673,-96.871192
-74825=34.817952,-96.409963
-74826=35.021029,-96.887141
-74827=34.939752,-96.343385
-74829=35.517014,-96.472326
-74830=35.143879,-96.664970
-74831=34.908121,-97.059948
-74832=35.828769,-97.006776
-74833=35.570796,-96.412186
-74834=35.701353,-96.884595
-74836=34.466523,-96.705068
-74837=35.362682,-96.449187
-74839=35.241382,-96.032446
-74840=35.252916,-96.798752
-74842=34.625589,-96.613712
-74843=34.657003,-96.728609
-74844=34.865518,-96.572386
-74845=35.249320,-95.888346
-74848=35.078885,-96.361626
-74849=34.978391,-96.735519
-74850=35.109677,-96.107056
-74851=35.426237,-97.081938
-74852=35.123940,-97.008872
-74854=35.108543,-96.749097
-74855=35.519045,-96.898554
-74856=34.421746,-96.807482
-74857=35.336799,-97.196790
-74859=35.456479,-96.321622
-74860=35.531903,-96.569823
-74864=35.495336,-96.709810
-74865=34.602136,-96.803604
-74867=34.970304,-96.563479
-74868=35.278531,-96.644613
-74869=35.601184,-96.760037
-74871=34.605109,-96.544061
-74872=34.771695,-96.988016
-74873=35.220987,-96.969539
-74875=35.877069,-96.969603
-74878=35.004771,-97.069829
-74880=35.377444,-96.119784
-74881=35.714363,-97.079617
-74883=35.219684,-96.225558
-74884=35.190556,-96.515468
-74901=35.367066,-94.441795
-74902=35.242852,-94.490337
-74930=35.183480,-94.776318
-74931=35.699666,-94.741014
-74932=35.151594,-94.537988
-74935=34.949759,-94.896391
-74936=35.376865,-94.724464
-74937=34.817524,-94.587454
-74939=34.729805,-94.632473
-74940=34.953637,-94.622427
-74941=35.287754,-94.883911
-74942=34.900349,-94.978885
-74943=35.072112,-95.079877
-74944=35.139374,-94.989915
-74945=35.599476,-94.809421
-74946=35.392450,-94.454714
-74948=35.467968,-94.568942
-74949=34.660972,-94.752143
-74951=35.170654,-94.656684
-74953=35.043440,-94.610420
-74954=35.425015,-94.502571
-74955=35.496424,-94.748101
-74956=35.109713,-94.769089
-74957=34.523791,-94.655141
-74959=35.270912,-94.623306
-74960=35.810418,-94.650483
-74962=35.544019,-94.940814
-74963=34.400244,-94.579745
-74964=36.111948,-94.658801
-74965=35.996383,-94.630755
-74966=34.917644,-94.865138
-75001=32.960047,-96.838522
-75002=33.089854,-96.608600
-75006=32.962141,-96.898585
-75007=33.005262,-96.896742
-75009=33.338899,-96.752977
-75010=33.050164,-96.874540
-75013=33.114327,-96.693964
-75019=32.963417,-96.984664
-75020=33.770785,-96.604061
-75021=33.727126,-96.470794
-75022=33.034890,-97.124906
-75023=33.056756,-96.730831
-75024=33.075422,-96.802686
-75025=33.090085,-96.740008
-75028=33.032710,-97.060070
-75032=32.857112,-96.431210
-75034=33.146638,-96.855822
-75035=33.163130,-96.790193
-75038=32.874776,-96.996862
-75039=32.885612,-96.942661
-75040=32.928902,-96.619782
-75041=32.880196,-96.651555
-75042=32.911702,-96.674838
-75043=32.857447,-96.575798
-75044=32.964607,-96.649686
-75048=32.968973,-96.580671
-75050=32.773069,-97.005227
-75051=32.729440,-96.996462
-75052=32.664953,-97.024692
-75054=32.591210,-97.039429
-75056=33.070183,-96.917772
-75057=33.050725,-96.974623
-75058=33.450768,-96.742245
-75060=32.796483,-96.954806
-75061=32.825907,-96.966915
-75062=32.847370,-96.957871
-75063=32.920430,-96.986323
-75065=33.110351,-97.005469
-75067=33.013546,-97.000160
-75068=33.177062,-96.950292
-75069=33.179984,-96.585712
-75070=33.171916,-96.696296
-75071=33.245817,-96.630720
-75074=33.031561,-96.673164
-75075=33.021268,-96.741558
-75076=33.800706,-96.725999
-75077=33.081178,-97.060924
-75078=33.241758,-96.811855
-75080=32.976063,-96.742080
-75081=32.948918,-96.709719
-75082=32.991557,-96.663063
-75087=32.943901,-96.452875
-75088=32.897841,-96.550370
-75089=32.936586,-96.551566
-75090=33.604131,-96.550405
-75092=33.652101,-96.700254
-75093=33.034224,-96.811608
-75094=33.021794,-96.615481
-75098=33.012135,-96.534936
-75101=32.270032,-96.702494
-75102=32.057938,-96.632547
-75103=32.516876,-95.883622
-75104=32.580181,-96.964675
-75105=32.263010,-96.387663
-75109=32.042784,-96.343757
-75110=32.084915,-96.528172
-75114=32.610575,-96.444256
-75115=32.599427,-96.864075
-75116=32.660660,-96.911882
-75117=32.715013,-95.854461
-75119=32.325881,-96.588238
-75124=32.326026,-95.974056
-75125=32.536700,-96.621747
-75126=32.743178,-96.454900
-75127=32.690295,-95.789932
-75132=32.945748,-96.373883
-75134=32.617663,-96.778058
-75135=33.066345,-96.221437
-75137=32.643212,-96.916468
-75140=32.646573,-95.687531
-75141=32.637333,-96.697609
-75142=32.568163,-96.250214
-75143=32.366686,-96.245039
-75144=32.108388,-96.207955
-75146=32.564518,-96.752223
-75147=32.436676,-96.079558
-75148=32.126221,-96.024130
-75149=32.773369,-96.618811
-75150=32.817399,-96.630416
-75152=32.439871,-96.678051
-75153=32.158265,-96.329632
-75154=32.521773,-96.807315
-75155=32.229113,-96.475509
-75156=32.277759,-96.105332
-75157=32.464756,-96.439520
-75158=32.462831,-96.402131
-75159=32.604543,-96.543537
-75160=32.758408,-96.301323
-75161=32.738471,-96.169166
-75163=32.166584,-96.118820
-75164=33.065971,-96.308737
-75165=32.372201,-96.784944
-75166=33.013047,-96.453887
-75167=32.360829,-96.915523
-75169=32.703269,-95.994666
-75172=32.605177,-96.674317
-75173=33.061737,-96.395825
-75180=32.716606,-96.620087
-75181=32.723893,-96.555804
-75182=32.800521,-96.547575
-75189=32.942051,-96.311660
-75201=32.787760,-96.799427
-75202=32.779253,-96.804768
-75203=32.746823,-96.802681
-75204=32.802127,-96.788853
-75205=32.835893,-96.795514
-75206=32.831279,-96.771191
-75207=32.786796,-96.819971
-75208=32.753141,-96.839613
-75209=32.848310,-96.825474
-75210=32.770635,-96.746362
-75211=32.736986,-96.907815
-75212=32.781246,-96.878831
-75214=32.828494,-96.745968
-75215=32.750602,-96.756846
-75216=32.711324,-96.781215
-75217=32.710306,-96.678549
-75218=32.841987,-96.702574
-75219=32.811813,-96.812898
-75220=32.868529,-96.876118
-75223=32.792244,-96.744003
-75224=32.711405,-96.838591
-75225=32.864887,-96.790359
-75226=32.782826,-96.776443
-75227=32.766810,-96.686900
-75228=32.824924,-96.679438
-75229=32.893295,-96.864339
-75230=32.902679,-96.793393
-75231=32.873485,-96.747539
-75232=32.660862,-96.840948
-75233=32.703913,-96.871889
-75234=32.923189,-96.891721
-75235=32.832614,-96.849082
-75236=32.676397,-96.936798
-75237=32.665617,-96.873056
-75238=32.878497,-96.707819
-75240=32.930338,-96.787496
-75241=32.665447,-96.759451
-75243=32.912633,-96.736637
-75244=32.925367,-96.836334
-75246=32.792496,-96.772763
-75247=32.813735,-96.883667
-75248=32.969699,-96.797334
-75249=32.636069,-96.964600
-75251=32.919789,-96.770948
-75252=32.997373,-96.788213
-75253=32.674426,-96.609228
-75254=32.944116,-96.800090
-75270=32.781197,-96.802229
-75287=32.999309,-96.841688
-75390=32.814164,-96.840650
-75401=33.189002,-96.108829
-75402=33.068291,-96.084372
-75407=33.153143,-96.471422
-75409=33.355500,-96.516313
-75410=32.790203,-95.631982
-75411=33.866542,-95.639723
-75412=33.801868,-95.151966
-75413=33.441440,-96.179163
-75414=33.623645,-96.427867
-75415=33.462218,-95.757461
-75416=33.683869,-95.344733
-75417=33.439658,-95.140371
-75418=33.571922,-96.170962
-75420=33.052795,-95.721230
-75421=33.661952,-95.731361
-75422=33.141400,-95.934195
-75423=33.284390,-96.200388
-75424=33.321715,-96.378507
-75426=33.663063,-94.997258
-75428=33.271869,-95.917415
-75431=33.014190,-95.460935
-75432=33.397601,-95.681769
-75433=33.098096,-95.803234
-75435=33.482646,-95.320088
-75436=33.713765,-95.240033
-75437=33.261225,-95.472420
-75438=33.615571,-96.072162
-75439=33.553520,-96.282897
-75440=32.881155,-95.747763
-75441=33.427656,-95.642911
-75442=33.174219,-96.356004
-75446=33.615167,-95.900109
-75447=33.776751,-96.109370
-75448=33.316269,-95.788968
-75449=33.420872,-95.945707
-75450=33.402250,-95.483203
-75451=32.965772,-95.127063
-75452=33.402226,-96.238570
-75453=32.988834,-95.911355
-75454=33.285645,-96.564818
-75455=33.216220,-94.979111
-75457=33.168595,-95.215150
-75459=33.532620,-96.671495
-75460=33.655540,-95.605040
-75462=33.624551,-95.490113
-75468=33.502170,-95.402880
-75469=33.421409,-95.810604
-75470=33.576823,-95.809701
-75471=33.056806,-95.373518
-75472=32.884423,-95.869602
-75473=33.815579,-95.488005
-75474=32.924200,-96.109811
-75475=33.474893,-96.238246
-75476=33.708311,-96.240654
-75477=33.529909,-95.738073
-75478=33.176532,-95.358602
-75479=33.618238,-96.333077
-75480=33.024585,-95.197134
-75481=33.320015,-95.373479
-75482=33.167979,-95.608219
-75486=33.745236,-95.744327
-75487=33.334851,-95.161500
-75488=33.778767,-95.996778
-75489=33.519251,-96.484322
-75490=33.438031,-96.308280
-75491=33.486324,-96.395930
-75492=33.584371,-95.993541
-75493=33.146015,-95.107952
-75494=32.917192,-95.259860
-75495=33.439195,-96.546841
-75496=33.349615,-96.057939
-75497=32.924728,-95.568154
-75501=33.371831,-94.139813
-75503=33.511784,-94.133888
-75550=33.498221,-94.890845
-75551=33.119332,-94.220491
-75554=33.553515,-94.780261
-75555=32.939200,-94.142287
-75556=33.154789,-94.062407
-75558=33.241961,-94.857848
-75559=33.503694,-94.627358
-75560=33.185033,-94.363930
-75561=33.516756,-94.281559
-75562=32.925399,-94.248447
-75563=33.002696,-94.383454
-75565=32.926794,-94.071475
-75566=33.148176,-94.491749
-75567=33.310991,-94.311711
-75568=33.193211,-94.587279
-75569=33.441822,-94.128587
-75570=33.459236,-94.438723
-75571=33.207019,-94.773630
-75572=33.225893,-94.127695
-75573=33.348136,-94.229045
-75574=33.325004,-94.550659
-75601=32.508560,-94.724049
-75602=32.449598,-94.666048
-75603=32.403050,-94.711174
-75604=32.509164,-94.824416
-75605=32.582243,-94.725529
-75630=32.867555,-94.549488
-75631=32.249318,-94.453220
-75633=32.138496,-94.274156
-75638=33.020475,-94.729699
-75639=32.293824,-94.169679
-75640=32.708417,-94.683181
-75641=32.378409,-94.575786
-75642=32.371536,-94.176599
-75643=32.019371,-94.361907
-75644=32.791213,-94.999846
-75645=32.688692,-94.871843
-75647=32.514634,-94.953287
-75650=32.513277,-94.548846
-75651=32.664407,-94.538189
-75652=32.239409,-94.728328
-75654=32.077773,-94.830130
-75656=33.011304,-94.572161
-75657=32.794973,-94.310306
-75661=32.631317,-94.171261
-75662=32.384458,-94.870169
-75667=31.988175,-94.844274
-75668=32.907075,-94.678637
-75669=32.038799,-94.575880
-75670=32.569858,-94.418658
-75672=32.468303,-94.299079
-75681=31.925449,-94.704029
-75682=32.250339,-94.936535
-75683=32.826816,-94.737224
-75684=32.277021,-94.937156
-75686=32.965131,-94.951917
-75691=32.311917,-94.551752
-75692=32.470839,-94.118039
-75693=32.533780,-94.860660
-75701=32.321937,-95.302223
-75702=32.362434,-95.315262
-75703=32.235097,-95.320779
-75704=32.413107,-95.443348
-75705=32.362631,-95.086688
-75706=32.469555,-95.307879
-75707=32.301709,-95.177976
-75708=32.418412,-95.213070
-75709=32.304313,-95.390940
-75750=32.267540,-95.077715
-75751=32.094348,-95.906047
-75752=32.244008,-95.807608
-75754=32.427978,-95.661983
-75755=32.641695,-95.075624
-75756=32.302029,-95.600894
-75757=32.110453,-95.348074
-75758=32.271436,-95.521442
-75759=32.035939,-95.418796
-75760=31.796249,-94.854340
-75762=32.218319,-95.413426
-75763=32.042754,-95.523388
-75764=31.895427,-95.143720
-75765=32.642043,-95.234859
-75766=31.944675,-95.256775
-75770=32.158557,-95.643712
-75771=32.537897,-95.435716
-75773=32.681453,-95.447702
-75778=32.300926,-95.709837
-75779=31.863226,-95.484612
-75780=31.991020,-95.091844
-75783=32.816432,-95.424745
-75784=31.872135,-94.974153
-75785=31.775416,-95.196572
-75788=31.825939,-94.925873
-75789=32.109512,-95.094194
-75790=32.535169,-95.643977
-75791=32.221577,-95.220644
-75792=32.481968,-95.106672
-75801=31.734462,-95.531204
-75803=31.881777,-95.679494
-75831=31.473667,-96.009365
-75832=31.932016,-95.980741
-75833=31.268635,-95.843907
-75835=31.284891,-95.490625
-75838=31.478900,-96.229757
-75839=31.606693,-95.583340
-75840=31.782559,-96.093621
-75844=31.513801,-95.437616
-75845=31.087456,-95.076849
-75846=31.328853,-96.152369
-75847=31.356209,-95.152898
-75848=31.765240,-96.329922
-75849=31.417411,-95.481647
-75850=31.135677,-95.935045
-75851=31.092367,-95.499937
-75852=30.959521,-95.715509
-75853=31.946873,-95.814467
-75855=31.557331,-95.863641
-75856=31.188898,-95.255739
-75858=31.390774,-95.126654
-75859=31.893076,-96.236904
-75860=31.611350,-96.238051
-75861=31.851579,-95.888459
-75862=30.964728,-95.325895
-75901=31.301675,-94.641408
-75904=31.340748,-94.826230
-75925=31.614855,-95.062493
-75926=31.248085,-94.969099
-75928=30.671395,-93.711340
-75929=31.245162,-94.175514
-75930=31.318961,-94.032164
-75931=31.113664,-94.021385
-75932=31.056147,-93.615655
-75933=30.553812,-93.812696
-75934=30.894878,-94.759082
-75935=31.732513,-94.191290
-75936=30.952076,-94.579622
-75937=31.465322,-94.367317
-75938=30.940517,-94.353640
-75939=31.013779,-94.797420
-75941=31.187072,-94.758803
-75942=30.815166,-94.430587
-75943=31.627694,-94.910971
-75944=31.354095,-94.387680
-75946=31.819320,-94.520617
-75948=31.307588,-93.784102
-75949=31.229843,-94.509183
-75951=30.934425,-94.059578
-75954=31.904341,-94.048094
-75956=30.676367,-93.983120
-75959=31.512307,-93.861732
-75960=30.912856,-94.865672
-75961=31.558362,-94.504771
-75962=31.619873,-94.647080
-75964=31.631742,-94.740721
-75965=31.723324,-94.628592
-75966=30.827969,-93.714446
-75968=31.252156,-93.954016
-75969=31.445713,-94.887599
-75972=31.483597,-94.131501
-75973=31.712048,-93.942239
-75974=31.958364,-94.239838
-75975=31.897138,-94.413785
-75976=31.527552,-94.925270
-75977=31.065029,-93.786624
-75978=31.509051,-94.527216
-75979=30.748559,-94.389120
-75980=31.138382,-94.375214
-76001=32.635563,-97.148829
-76002=32.621861,-97.093485
-76006=32.784931,-97.099915
-76008=32.695708,-97.631482
-76009=32.414937,-97.200076
-76010=32.722819,-97.080286
-76011=32.754272,-97.083196
-76012=32.755130,-97.139242
-76013=32.719328,-97.155028
-76014=32.692105,-97.086517
-76015=32.692186,-97.133304
-76016=32.689222,-97.189130
-76017=32.662513,-97.164024
-76018=32.664590,-97.096476
-76020=32.900196,-97.561179
-76021=32.852971,-97.130443
-76022=32.830657,-97.145158
-76023=33.041942,-97.597083
-76028=32.532677,-97.306547
-76031=32.346162,-97.328078
-76033=32.275189,-97.511185
-76034=32.891787,-97.149641
-76035=32.562049,-97.631487
-76036=32.581023,-97.419617
-76039=32.860285,-97.086028
-76040=32.814107,-97.091323
-76041=32.237671,-96.842047
-76043=32.208483,-97.795247
-76044=32.425936,-97.539874
-76048=32.421697,-97.811051
-76049=32.460255,-97.706784
-76050=32.280895,-97.160931
-76051=32.925765,-97.071545
-76052=32.986137,-97.374691
-76053=32.817200,-97.180586
-76054=32.859410,-97.178636
-76055=32.162541,-97.154810
-76058=32.474087,-97.422013
-76059=32.392588,-97.327540
-76060=32.639649,-97.217476
-76061=32.503973,-97.188374
-76063=32.570740,-97.144837
-76064=32.302367,-97.037219
-76065=32.469410,-96.990665
-76066=32.704456,-97.993148
-76067=32.799602,-98.126806
-76070=32.266142,-97.655142
-76071=33.000870,-97.444484
-76073=33.098727,-97.723422
-76077=32.278261,-97.691539
-76078=33.093365,-97.462793
-76082=32.970044,-97.733748
-76084=32.426322,-97.090328
-76085=32.861345,-97.692173
-76086=32.754964,-97.791085
-76087=32.682609,-97.782556
-76088=32.851310,-97.901635
-76092=32.959875,-97.148437
-76093=32.210496,-97.392571
-76102=32.759104,-97.329756
-76103=32.748947,-97.272638
-76104=32.728688,-97.317801
-76105=32.724047,-97.269432
-76106=32.816684,-97.359633
-76107=32.742058,-97.381730
-76108=32.787541,-97.523790
-76109=32.700650,-97.386965
-76110=32.707831,-97.338265
-76111=32.778499,-97.300112
-76112=32.747426,-97.217658
-76114=32.774494,-97.402276
-76115=32.678500,-97.330511
-76116=32.720723,-97.447033
-76117=32.803436,-97.267376
-76118=32.800434,-97.192762
-76119=32.691147,-97.262625
-76120=32.775915,-97.180963
-76123=32.619311,-97.393958
-76126=32.635870,-97.503481
-76127=32.775409,-97.435599
-76129=32.708639,-97.363495
-76131=32.881807,-97.345956
-76132=32.667539,-97.416806
-76133=32.652918,-97.379538
-76134=32.639179,-97.335350
-76135=32.836325,-97.469908
-76137=32.859685,-97.291523
-76140=32.619927,-97.278066
-76148=32.868421,-97.252132
-76155=32.823993,-97.048687
-76164=32.781100,-97.354585
-76177=32.975361,-97.310486
-76179=32.913522,-97.433835
-76180=32.840011,-97.225295
-76182=32.886201,-97.207731
-76201=33.220974,-97.146038
-76205=33.192632,-97.129266
-76207=33.227850,-97.181823
-76208=33.208630,-97.055409
-76209=33.231552,-97.109871
-76210=33.149467,-97.096016
-76225=33.374041,-97.667809
-76226=33.114714,-97.173909
-76227=33.273603,-96.990042
-76228=33.617910,-98.062664
-76230=33.520572,-97.956120
-76233=33.537706,-96.906575
-76234=33.276319,-97.514178
-76238=33.479016,-97.351845
-76239=33.503014,-97.529509
-76240=33.661602,-97.176369
-76244=32.928037,-97.283914
-76245=33.830932,-96.839764
-76247=33.099993,-97.340499
-76248=32.924005,-97.225146
-76249=33.278823,-97.302310
-76250=33.630166,-97.235756
-76251=33.631922,-97.688998
-76252=33.682081,-97.382855
-76253=33.615855,-97.310834
-76255=33.824710,-97.739095
-76258=33.371113,-96.932411
-76259=33.198704,-97.311628
-76261=33.793074,-97.963802
-76262=33.009335,-97.226720
-76263=33.463256,-97.464706
-76264=33.737974,-96.839543
-76265=33.756731,-97.538116
-76266=33.372878,-97.213247
-76268=33.627623,-96.767396
-76270=33.455656,-97.752881
-76271=33.464637,-96.892763
-76272=33.455973,-97.127134
-76273=33.743893,-96.936121
-76301=33.905559,-98.479935
-76302=33.864528,-98.491011
-76305=34.006193,-98.387687
-76306=33.944942,-98.523592
-76308=33.852942,-98.540730
-76309=33.894923,-98.543742
-76310=33.799085,-98.509840
-76311=33.969544,-98.509023
-76351=33.558025,-98.695427
-76354=34.103277,-98.622462
-76357=34.081265,-98.183817
-76360=33.963477,-98.961142
-76363=33.475952,-99.551825
-76364=34.031967,-98.995374
-76365=33.758490,-98.202251
-76366=33.723849,-98.783672
-76367=33.973300,-98.721094
-76370=33.527396,-98.884782
-76371=33.484962,-99.642707
-76372=33.250203,-98.925556
-76373=34.131688,-99.106624
-76374=33.358656,-98.740056
-76377=34.008318,-98.258589
-76379=33.668239,-98.489118
-76380=33.621147,-99.243768
-76384=34.160345,-99.343426
-76388=33.322836,-99.642126
-76389=33.513047,-98.457317
-76401=32.282235,-98.196717
-76402=32.216328,-98.217166
-76424=32.801213,-98.886980
-76426=33.166041,-97.845101
-76427=33.158189,-98.377664
-76429=32.759373,-98.666449
-76430=32.790131,-99.241840
-76431=33.315883,-97.857678
-76432=31.842565,-98.805134
-76433=32.315739,-98.022849
-76435=32.242637,-98.857140
-76436=31.863402,-98.228103
-76437=32.403542,-99.038804
-76442=31.890896,-98.613096
-76443=32.133830,-99.213349
-76444=32.123480,-98.577273
-76445=32.302818,-98.552383
-76446=32.075301,-98.348620
-76448=32.398455,-98.797824
-76449=32.905155,-98.324359
-76450=33.057759,-98.622222
-76452=31.747542,-98.364392
-76453=32.584194,-98.335694
-76454=32.211850,-98.735794
-76455=31.813332,-98.384478
-76457=31.944662,-98.027972
-76458=33.219589,-98.188154
-76459=33.276426,-98.382374
-76460=33.306457,-98.500273
-76462=32.527015,-98.008849
-76463=32.455408,-98.418168
-76464=32.556004,-99.164736
-76466=32.433309,-98.737420
-76469=32.340927,-99.198503
-76470=32.495875,-98.664020
-76471=32.116953,-98.985140
-76472=32.600503,-98.172760
-76474=31.976523,-98.793857
-76475=32.676032,-98.483070
-76476=32.362649,-97.924354
-76481=32.990420,-98.745490
-76483=33.195202,-99.268024
-76484=32.764096,-98.276879
-76486=33.014639,-98.053190
-76487=32.972482,-97.904879
-76490=32.945471,-98.018901
-76491=33.036872,-99.048807
-76501=31.075303,-97.252433
-76502=31.103931,-97.412020
-76504=31.137886,-97.373653
-76508=31.077568,-97.364064
-76511=30.801782,-97.424411
-76513=31.051688,-97.499909
-76518=30.852653,-97.148898
-76519=31.020832,-97.120690
-76520=30.891129,-96.907601
-76522=31.219045,-97.968224
-76523=30.789254,-97.291628
-76524=31.268644,-97.202495
-76525=31.499723,-98.130640
-76527=30.841795,-97.809699
-76528=31.417316,-97.755931
-76530=30.710857,-97.413885
-76531=31.686814,-98.187029
-76534=30.884328,-97.378812
-76537=30.817401,-97.602900
-76538=31.628871,-97.922097
-76539=31.094009,-98.027339
-76541=31.112884,-97.729602
-76542=31.011816,-97.741880
-76543=31.149208,-97.633196
-76544=31.143642,-97.761047
-76548=31.050856,-97.644625
-76549=31.017077,-97.833092
-76550=31.102393,-98.259362
-76554=30.967958,-97.376916
-76556=30.700385,-96.830550
-76557=31.285086,-97.390061
-76559=31.075955,-97.604369
-76561=31.409518,-97.531134
-76565=31.644769,-98.350878
-76566=31.552440,-98.048509
-76567=30.649554,-97.006117
-76569=30.940183,-97.227023
-76570=31.082267,-96.953514
-76571=30.925736,-97.598650
-76573=30.818633,-97.502485
-76574=30.579327,-97.388622
-76577=30.627232,-97.170250
-76578=30.535409,-97.237170
-76579=31.195905,-97.265253
-76596=31.476843,-97.728445
-76597=31.486416,-97.706884
-76598=31.475320,-97.735455
-76599=31.467983,-97.735272
-76621=31.881728,-97.085410
-76622=31.816191,-97.243292
-76623=32.211123,-96.752827
-76624=31.661047,-96.955129
-76626=32.122997,-96.723082
-76627=32.108512,-97.395815
-76628=32.030464,-96.948850
-76629=31.149750,-96.651785
-76630=31.340818,-97.211155
-76631=31.975524,-96.977168
-76632=31.303293,-97.060163
-76633=31.695095,-97.328822
-76634=31.817062,-97.546568
-76635=31.716290,-96.661428
-76636=32.170752,-97.291476
-76637=31.769003,-97.804426
-76638=31.549983,-97.442651
-76639=31.866953,-96.655804
-76640=31.696619,-97.073707
-76641=32.038687,-96.807932
-76642=31.503056,-96.520013
-76643=31.453501,-97.195339
-76645=32.022461,-97.133361
-76648=31.848600,-96.807359
-76649=32.001589,-97.882698
-76650=31.980079,-96.863626
-76651=32.177710,-96.851184
-76652=32.117538,-97.575601
-76653=31.299588,-96.608952
-76654=31.733766,-97.009725
-76655=31.401145,-97.183101
-76656=31.185096,-97.043667
-76657=31.446184,-97.380488
-76660=31.924604,-96.904503
-76661=31.318386,-96.846019
-76664=31.560686,-96.802657
-76665=31.916215,-97.710123
-76666=32.043976,-96.914580
-76667=31.651982,-96.468387
-76670=32.136018,-96.988963
-76671=31.988449,-97.531227
-76673=31.751025,-96.891756
-76676=31.863748,-96.951488
-76678=31.661096,-96.760043
-76679=31.927546,-96.579359
-76680=31.202131,-96.814363
-76681=31.893446,-96.433731
-76682=31.453378,-96.913619
-76685=31.353546,-97.013740
-76686=31.767574,-96.559327
-76687=31.372916,-96.495028
-76689=31.662159,-97.506079
-76690=32.083642,-97.736491
-76691=31.769854,-97.098169
-76692=31.959701,-97.330421
-76693=31.787657,-96.395087
-76701=31.552011,-97.138200
-76704=31.574722,-97.127134
-76705=31.620914,-97.098526
-76706=31.475671,-97.083854
-76707=31.553876,-97.159082
-76708=31.627123,-97.215893
-76710=31.539723,-97.195009
-76711=31.513756,-97.152983
-76712=31.526544,-97.261231
-76798=31.548378,-97.119061
-76801=31.748303,-99.032891
-76802=31.743506,-98.911447
-76820=30.766987,-99.050013
-76821=31.738576,-99.934162
-76823=31.706204,-99.151374
-76824=30.936768,-98.467066
-76825=31.105959,-99.394226
-76827=31.517913,-99.135467
-76828=32.006167,-99.292204
-76831=30.653746,-98.918266
-76832=30.985777,-98.735535
-76834=31.881335,-99.481164
-76836=31.443363,-99.549127
-76837=31.222792,-99.896165
-76841=30.898116,-100.108450
-76842=30.939820,-99.079893
-76844=31.432854,-98.523070
-76845=31.538066,-99.488185
-76848=30.843122,-99.570053
-76849=30.472352,-99.821506
-76852=31.357441,-99.457184
-76853=31.272122,-98.365338
-76854=30.694786,-99.581344
-76856=30.691484,-99.273312
-76857=31.931233,-98.927404
-76858=31.176951,-99.616412
-76859=30.884365,-99.853990
-76861=31.592014,-100.192581
-76862=31.411505,-99.682323
-76864=31.553975,-98.731107
-76865=31.858516,-100.165338
-76866=31.460967,-99.933766
-76869=30.910963,-98.994062
-76870=31.627357,-98.546717
-76871=31.289123,-98.995473
-76872=31.331919,-99.165902
-76873=31.515316,-99.380601
-76874=30.458670,-100.069150
-76875=31.602931,-99.999545
-76877=31.157097,-98.763988
-76878=31.649138,-99.295378
-76882=31.816904,-99.702274
-76884=31.736902,-99.567791
-76885=30.858957,-98.861313
-76887=31.011897,-99.159484
-76888=31.609899,-99.640490
-76890=31.686677,-98.776277
-76901=31.610896,-100.553311
-76903=31.484819,-100.437870
-76904=31.271515,-100.400625
-76905=31.509724,-100.322077
-76908=31.432075,-100.402169
-76930=31.272551,-101.172783
-76932=31.268726,-101.542078
-76933=31.856368,-100.288351
-76934=31.603063,-100.668988
-76935=31.083442,-100.423683
-76936=30.883194,-100.595683
-76937=31.388546,-100.151449
-76939=31.268843,-100.563525
-76940=31.439035,-100.142932
-76941=31.272382,-100.889468
-76943=30.534314,-101.306407
-76945=31.885049,-100.610567
-76949=32.041140,-100.694580
-76950=30.441414,-100.560620
-76951=31.802748,-101.055625
-76953=31.723768,-100.331902
-76955=31.289523,-100.152670
-76957=31.372148,-100.305160
-76958=31.595106,-100.799358
-77002=29.756845,-95.365652
-77003=29.749778,-95.345885
-77004=29.724893,-95.363752
-77005=29.718435,-95.423555
-77006=29.740970,-95.391301
-77007=29.771545,-95.411083
-77008=29.798249,-95.416933
-77009=29.795344,-95.367590
-77010=29.753624,-95.359810
-77011=29.743217,-95.309110
-77012=29.718525,-95.274137
-77013=29.795268,-95.233977
-77014=29.981209,-95.463971
-77015=29.763930,-95.173121
-77016=29.862532,-95.299980
-77017=29.689824,-95.252393
-77018=29.826448,-95.426267
-77019=29.754150,-95.409498
-77020=29.773179,-95.314327
-77021=29.698430,-95.356900
-77022=29.831590,-95.379554
-77023=29.721825,-95.318275
-77024=29.772179,-95.514203
-77025=29.685706,-95.434764
-77026=29.800187,-95.328888
-77027=29.740079,-95.446409
-77028=29.827869,-95.287485
-77029=29.759665,-95.256251
-77030=29.706787,-95.401748
-77031=29.652205,-95.546230
-77032=29.987805,-95.353412
-77033=29.666880,-95.335133
-77034=29.619510,-95.191644
-77035=29.655503,-95.471663
-77036=29.701847,-95.534537
-77037=29.890360,-95.392527
-77038=29.918595,-95.441194
-77039=29.911171,-95.341182
-77040=29.874575,-95.527099
-77041=29.858600,-95.580768
-77042=29.741325,-95.560254
-77043=29.810930,-95.584639
-77044=29.906616,-95.180608
-77045=29.635793,-95.432889
-77046=29.733777,-95.433346
-77047=29.610650,-95.386863
-77048=29.618714,-95.324221
-77049=29.832928,-95.149040
-77050=29.902887,-95.269296
-77051=29.656113,-95.378696
-77053=29.583542,-95.460693
-77054=29.680250,-95.404913
-77055=29.796871,-95.491650
-77056=29.748202,-95.468948
-77057=29.744081,-95.487974
-77058=29.561579,-95.099626
-77059=29.613602,-95.119370
-77060=29.935512,-95.397624
-77061=29.647023,-95.276656
-77062=29.573552,-95.130613
-77063=29.736295,-95.523292
-77064=29.918045,-95.535685
-77065=29.926473,-95.603790
-77066=29.957234,-95.503258
-77067=29.952629,-95.446609
-77068=30.007063,-95.488362
-77069=29.988455,-95.531200
-77070=29.979648,-95.572877
-77071=29.651728,-95.519919
-77072=29.699688,-95.584817
-77073=29.999166,-95.400119
-77074=29.687947,-95.515725
-77075=29.620420,-95.268939
-77076=29.860021,-95.382184
-77077=29.750233,-95.615383
-77078=29.852397,-95.254100
-77079=29.776093,-95.603037
-77080=29.815894,-95.522885
-77081=29.712099,-95.480935
-77082=29.724490,-95.640002
-77083=29.694395,-95.649569
-77084=29.827486,-95.659920
-77085=29.620509,-95.485333
-77086=29.919035,-95.491607
-77087=29.686519,-95.303917
-77088=29.881487,-95.452619
-77089=29.586959,-95.225601
-77090=30.008240,-95.438996
-77091=29.853067,-95.435966
-77092=29.830024,-95.474409
-77093=29.863400,-95.341409
-77094=29.769285,-95.681292
-77095=29.909513,-95.651476
-77096=29.675339,-95.479372
-77098=29.734813,-95.416098
-77099=29.670869,-95.585990
-77201=29.766003,-95.364364
-77301=30.307375,-95.438548
-77302=30.222077,-95.338869
-77303=30.377952,-95.377140
-77304=30.327760,-95.516045
-77306=30.285840,-95.312397
-77316=30.306163,-95.686390
-77318=30.438807,-95.533229
-77320=30.804668,-95.550872
-77326=30.504882,-94.817018
-77327=30.318169,-94.915716
-77328=30.392374,-95.191181
-77331=30.633963,-95.161912
-77334=30.781834,-95.373441
-77335=30.574473,-94.911179
-77336=30.063168,-95.098858
-77338=30.017301,-95.286217
-77339=30.046777,-95.221022
-77340=30.640200,-95.538432
-77342=30.740381,-95.555832
-77345=30.053105,-95.157943
-77346=29.994499,-95.177499
-77350=30.824427,-94.833454
-77351=30.717792,-94.817231
-77354=30.216858,-95.647214
-77355=30.156257,-95.749260
-77356=30.465662,-95.729888
-77357=30.161065,-95.189809
-77358=30.558321,-95.436252
-77359=30.751892,-95.301591
-77360=30.846249,-95.117513
-77362=30.160534,-95.669154
-77363=30.316397,-95.849990
-77364=30.773047,-95.215467
-77365=30.106737,-95.297150
-77367=30.857073,-95.397796
-77368=30.443806,-94.822546
-77369=30.421815,-94.735330
-77371=30.483532,-94.989562
-77372=30.238010,-95.164460
-77373=30.062169,-95.383966
-77374=30.396003,-94.623750
-77375=30.094886,-95.585830
-77376=30.443771,-94.663769
-77377=30.061727,-95.681504
-77378=30.471374,-95.363872
-77379=30.040876,-95.528914
-77380=30.136972,-95.468360
-77381=30.178248,-95.500960
-77382=30.194968,-95.548190
-77384=30.233845,-95.495681
-77385=30.186277,-95.410662
-77386=30.100255,-95.356479
-77388=30.057802,-95.470985
-77389=30.123469,-95.517064
-77396=29.945205,-95.259778
-77401=29.704019,-95.460905
-77406=29.646090,-95.794526
-77407=29.670004,-95.708089
-77412=29.553502,-96.411936
-77414=28.908185,-95.868152
-77415=28.933093,-95.734948
-77417=29.464406,-95.966234
-77418=29.987117,-96.252942
-77419=28.849599,-96.256786
-77420=29.258985,-95.930309
-77422=28.960572,-95.558277
-77423=29.856778,-95.977311
-77426=30.122300,-96.258442
-77428=28.623423,-96.189925
-77429=29.998421,-95.667360
-77430=29.259878,-95.667662
-77432=29.067417,-96.188569
-77433=29.934371,-95.747578
-77434=29.527955,-96.305185
-77435=29.515694,-96.121026
-77436=29.419067,-96.238492
-77437=29.212328,-96.280585
-77440=28.894647,-96.147768
-77441=29.670458,-95.922251
-77442=29.422281,-96.506236
-77443=29.349096,-96.191821
-77444=29.286377,-95.777811
-77445=30.101838,-96.059366
-77446=30.086827,-95.990481
-77447=30.047619,-95.833733
-77448=29.416447,-96.085418
-77449=29.837572,-95.733754
-77450=29.745247,-95.741783
-77451=29.435055,-96.004540
-77453=29.213766,-95.999923
-77454=29.520234,-96.198122
-77455=29.132072,-96.428441
-77456=29.040018,-96.060809
-77457=28.730987,-95.882466
-77458=28.951217,-96.237096
-77459=29.529038,-95.523532
-77460=29.397447,-96.384508
-77461=29.383068,-95.806472
-77464=29.592427,-95.955277
-77465=28.763461,-96.230400
-77466=29.792687,-96.012215
-77467=29.201173,-96.101539
-77468=29.132669,-95.941090
-77469=29.482678,-95.680186
-77470=29.537157,-96.546208
-77471=29.548404,-95.861706
-77473=29.795148,-96.107713
-77474=29.780109,-96.181158
-77475=29.488624,-96.652467
-77476=29.687606,-95.952260
-77477=29.624261,-95.568033
-77478=29.620312,-95.605693
-77479=29.566996,-95.636016
-77480=29.086319,-95.766667
-77481=29.473418,-95.558148
-77482=29.092714,-95.903493
-77483=28.788475,-95.839228
-77484=30.079431,-95.932255
-77485=29.632734,-96.055105
-77486=29.160441,-95.691989
-77488=29.307215,-96.091291
-77489=29.600434,-95.515549
-77493=29.853215,-95.831456
-77494=29.740677,-95.829652
-77498=29.643591,-95.653255
-77502=29.679518,-95.199783
-77503=29.703477,-95.158895
-77504=29.647916,-95.189780
-77505=29.645646,-95.140307
-77506=29.713919,-95.199702
-77507=29.624554,-95.063488
-77510=29.362409,-95.087396
-77511=29.380858,-95.241857
-77514=29.700296,-94.603226
-77515=29.174921,-95.450088
-77517=29.364468,-95.131078
-77518=29.507162,-94.987247
-77519=30.218325,-94.575063
-77520=29.733275,-94.994118
-77521=29.802461,-94.970322
-77523=29.789523,-94.859125
-77530=29.785907,-95.117207
-77531=29.046833,-95.392183
-77532=29.932872,-95.057187
-77533=30.087167,-94.599575
-77534=29.231528,-95.314319
-77535=30.054493,-94.922090
-77536=29.698461,-95.121268
-77538=29.975277,-94.523235
-77539=29.452190,-95.027849
-77541=29.021218,-95.278251
-77545=29.537301,-95.474615
-77546=29.515074,-95.192133
-77547=29.735876,-95.238178
-77550=29.310535,-94.775768
-77551=29.278188,-94.833290
-77554=29.253166,-94.924652
-77560=29.870622,-94.602137
-77561=30.166506,-94.735446
-77562=29.834034,-95.051267
-77563=29.303629,-95.032416
-77564=30.180866,-94.664855
-77565=29.535935,-95.026393
-77566=29.052739,-95.474351
-77568=29.363162,-94.980107
-77571=29.688459,-95.057379
-77573=29.503785,-95.087300
-77575=30.075658,-94.733441
-77577=29.284496,-95.281587
-77578=29.482095,-95.362192
-77580=29.874143,-94.856891
-77581=29.561554,-95.279739
-77583=29.381094,-95.469320
-77584=29.545041,-95.350629
-77585=30.295238,-94.524753
-77586=29.583816,-95.036166
-77587=29.661032,-95.229784
-77590=29.391397,-94.920149
-77591=29.399536,-94.996939
-77597=29.836205,-94.702009
-77598=29.539422,-95.134995
-77611=30.014440,-93.828241
-77612=30.402074,-93.922367
-77613=30.052046,-94.360766
-77614=30.299774,-93.772977
-77615=30.327002,-94.051956
-77616=30.569783,-94.182466
-77617=29.507196,-94.518429
-77619=29.947516,-93.918571
-77622=29.862143,-94.288429
-77623=29.561256,-94.414021
-77624=30.685013,-94.291805
-77625=30.377234,-94.373937
-77627=29.986791,-94.009416
-77629=29.979840,-94.403073
-77630=30.067062,-93.868581
-77632=30.201442,-93.804542
-77640=29.881613,-93.940858
-77642=29.958020,-93.891921
-77650=29.426496,-94.685696
-77651=29.985971,-93.955847
-77655=29.710502,-93.937850
-77656=30.414774,-94.173656
-77657=30.227897,-94.197036
-77659=30.171444,-94.432275
-77660=30.649823,-94.140750
-77661=29.751627,-94.420716
-77662=30.177924,-94.018171
-77663=30.513226,-94.394328
-77664=30.601435,-94.413805
-77665=29.812999,-94.416117
-77701=30.073053,-94.105486
-77702=30.086269,-94.128303
-77703=30.145966,-94.126696
-77705=29.898029,-94.161175
-77706=30.102243,-94.173445
-77707=30.053431,-94.170654
-77708=30.146124,-94.160613
-77713=30.071005,-94.252135
-77801=30.639285,-96.362454
-77802=30.661252,-96.322614
-77803=30.681053,-96.386067
-77807=30.677687,-96.483601
-77808=30.797736,-96.312084
-77830=30.530294,-96.013037
-77831=30.726709,-95.903880
-77833=30.215075,-96.410272
-77835=30.193586,-96.588051
-77836=30.541565,-96.676232
-77837=31.003109,-96.688981
-77840=30.609093,-96.325984
-77845=30.561385,-96.272583
-77853=30.354823,-96.840158
-77855=31.133325,-96.136815
-77856=31.075823,-96.425784
-77857=30.785247,-96.706056
-77859=30.871914,-96.526934
-77861=30.721716,-96.109298
-77864=30.953672,-95.905344
-77865=31.235882,-96.229280
-77867=30.743004,-96.548436
-77868=30.365776,-96.046420
-77871=31.064168,-96.126849
-77872=30.879380,-96.138959
-77873=30.564947,-95.800223
-77876=30.600186,-95.875351
-77878=30.471289,-96.438138
-77879=30.398612,-96.497852
-77880=30.286936,-96.189365
-77901=28.804947,-96.984711
-77904=28.938252,-97.020350
-77905=28.731379,-97.042716
-77950=28.291992,-96.898424
-77951=28.634388,-96.901049
-77954=29.097035,-97.282413
-77957=29.042415,-96.689715
-77960=28.676730,-97.198682
-77961=28.857880,-96.353868
-77962=29.020933,-96.489810
-77963=28.652457,-97.405775
-77964=29.378839,-96.834601
-77968=28.905028,-96.829368
-77969=28.775164,-96.658931
-77970=28.846631,-96.428807
-77971=28.833262,-96.521612
-77973=28.543661,-96.971090
-77974=28.896922,-97.321741
-77975=29.559671,-97.081874
-77976=28.954115,-97.122655
-77977=28.695562,-96.794157
-77978=28.667111,-96.570992
-77979=28.609718,-96.609368
-77982=28.444644,-96.491788
-77983=28.441719,-96.579574
-77984=29.453329,-97.191865
-77987=29.342572,-97.075651
-77988=28.839050,-96.889623
-77990=28.484891,-96.924908
-77991=28.798662,-96.614555
-77993=28.857734,-97.428562
-77994=29.178194,-97.471550
-77995=29.202324,-97.076306
-78001=28.291719,-99.213215
-78002=29.283750,-98.737693
-78003=29.707222,-99.095171
-78004=29.903262,-98.556446
-78005=28.941736,-98.851298
-78006=29.858550,-98.703353
-78007=28.498000,-98.368762
-78008=28.703692,-98.263517
-78009=29.357251,-98.886655
-78010=29.902772,-99.037882
-78011=28.790915,-98.717634
-78012=28.764536,-98.485960
-78013=29.972311,-98.904698
-78014=28.371399,-99.135335
-78015=29.742957,-98.651509
-78016=29.171580,-98.967448
-78017=28.711947,-99.177422
-78019=28.041684,-99.399193
-78021=28.496731,-98.827726
-78022=28.257475,-98.143051
-78023=29.609914,-98.746764
-78024=30.043922,-99.515501
-78025=30.081841,-99.282981
-78026=28.821017,-98.610076
-78027=29.969074,-98.539209
-78028=30.036565,-99.163069
-78029=30.159136,-99.345011
-78039=29.312148,-98.834802
-78040=27.513811,-99.502143
-78041=27.545398,-99.462022
-78043=27.554788,-99.265533
-78044=27.751747,-99.126085
-78045=27.833815,-99.681424
-78046=27.373696,-99.346761
-78050=29.070547,-98.481810
-78052=29.203679,-98.776694
-78055=29.830348,-99.331352
-78056=29.537033,-98.933944
-78057=29.037278,-99.001103
-78058=30.095115,-99.628211
-78059=29.199686,-98.840984
-78060=28.446801,-98.107053
-78061=28.888446,-99.141465
-78063=29.689692,-98.911216
-78064=28.935779,-98.428996
-78065=29.079849,-98.642309
-78066=29.501055,-98.853494
-78067=27.128042,-99.331147
-78069=29.179375,-98.670026
-78070=29.893745,-98.391104
-78071=28.470281,-98.226391
-78072=28.310347,-98.573186
-78073=29.243915,-98.622442
-78075=28.626039,-98.377249
-78076=26.930929,-99.162765
-78101=29.353553,-98.238308
-78102=28.407712,-97.710620
-78104=28.522541,-97.761958
-78107=28.568278,-97.579237
-78108=29.570142,-98.217800
-78109=29.487774,-98.291474
-78112=29.185854,-98.395272
-78113=28.867033,-98.240425
-78114=29.114718,-98.208661
-78116=29.102258,-97.743874
-78117=28.938338,-97.923572
-78118=28.800642,-98.062937
-78119=28.733411,-97.894958
-78121=29.350393,-98.107030
-78122=29.428917,-97.735834
-78123=29.600453,-98.047576
-78124=29.557266,-98.146886
-78125=28.540900,-97.957001
-78130=29.693556,-98.072850
-78132=29.758817,-98.191068
-78133=29.889085,-98.244624
-78140=29.333756,-97.765502
-78141=28.914138,-97.632623
-78142=28.536632,-97.810515
-78143=29.258710,-97.851241
-78144=28.951208,-97.892578
-78145=28.645184,-97.994125
-78146=28.603142,-97.838545
-78147=29.073446,-98.080406
-78148=29.543813,-98.295356
-78150=29.525969,-98.277499
-78151=28.864482,-97.705273
-78152=29.436590,-98.205116
-78154=29.547159,-98.262598
-78155=29.542743,-97.937075
-78159=29.231774,-97.590672
-78160=29.252842,-97.927233
-78161=29.293499,-98.057016
-78162=28.589961,-97.773497
-78163=29.769466,-98.453225
-78164=28.982560,-97.520734
-78201=29.468413,-98.528889
-78202=29.428169,-98.460881
-78203=29.415100,-98.459123
-78204=29.404404,-98.505028
-78205=29.423945,-98.486420
-78207=29.422124,-98.525978
-78208=29.439930,-98.458718
-78209=29.488906,-98.456235
-78210=29.395776,-98.464401
-78211=29.342550,-98.570024
-78212=29.464611,-98.493653
-78213=29.516395,-98.523017
-78214=29.324786,-98.470039
-78215=29.441230,-98.480515
-78216=29.537264,-98.487882
-78217=29.538074,-98.415198
-78218=29.490048,-98.397135
-78219=29.446661,-98.387393
-78220=29.418151,-98.394314
-78221=29.298776,-98.483212
-78222=29.354940,-98.371889
-78223=29.311940,-98.391006
-78224=29.306228,-98.530819
-78225=29.387990,-98.526028
-78226=29.383778,-98.569940
-78227=29.406624,-98.630303
-78228=29.460646,-98.571279
-78229=29.501861,-98.569302
-78230=29.546515,-98.557207
-78231=29.578541,-98.541904
-78232=29.588638,-98.474585
-78233=29.555818,-98.361905
-78234=29.460597,-98.438554
-78235=29.345246,-98.443874
-78236=29.391283,-98.618734
-78237=29.421133,-98.570938
-78238=29.471773,-98.617679
-78239=29.518637,-98.362961
-78240=29.525020,-98.606564
-78242=29.350400,-98.607054
-78243=29.370752,-98.593203
-78244=29.474147,-98.348083
-78245=29.401093,-98.730806
-78247=29.585862,-98.406811
-78248=29.590028,-98.525262
-78249=29.565311,-98.612104
-78250=29.502729,-98.664897
-78251=29.462006,-98.676785
-78252=29.341337,-98.705628
-78253=29.469011,-98.797801
-78254=29.539126,-98.725885
-78255=29.651922,-98.656362
-78256=29.622289,-98.626164
-78257=29.660485,-98.583454
-78258=29.634097,-98.497426
-78259=29.627214,-98.427068
-78260=29.697453,-98.486728
-78261=29.689580,-98.402411
-78263=29.363661,-98.304351
-78264=29.193205,-98.490787
-78266=29.650534,-98.338421
-78330=27.742626,-97.915651
-78332=27.724860,-98.134831
-78335=27.873028,-97.092196
-78336=27.926913,-97.177776
-78338=26.911014,-97.773774
-78339=27.805059,-97.792233
-78340=28.120701,-97.196890
-78341=27.634419,-98.496692
-78342=27.659920,-98.075720
-78343=27.622119,-97.751430
-78344=27.480039,-98.864746
-78349=27.373485,-98.285472
-78351=27.673154,-97.759701
-78352=27.962924,-97.679027
-78353=26.880517,-98.216213
-78355=27.194074,-98.207295
-78357=27.836017,-98.628776
-78358=28.067949,-97.042232
-78359=27.923560,-97.287078
-78361=27.100448,-98.789966
-78362=27.850145,-97.203259
-78363=27.444204,-97.865597
-78368=28.103445,-97.808184
-78369=27.365130,-98.996708
-78370=27.948148,-97.598697
-78371=27.615256,-98.946373
-78372=27.987983,-98.066980
-78373=27.777437,-97.114983
-78374=27.892132,-97.384238
-78375=27.396310,-98.171285
-78376=27.421353,-98.514272
-78377=28.350360,-97.156332
-78379=27.306614,-97.780427
-78380=27.791253,-97.742139
-78382=28.132627,-97.062070
-78383=28.093161,-97.962915
-78384=27.849558,-98.385775
-78385=27.139357,-97.901370
-78387=28.121595,-97.553008
-78389=28.246302,-97.650811
-78390=27.997261,-97.327442
-78391=28.179576,-97.708393
-78393=28.187118,-97.382226
-78401=27.797802,-97.399067
-78402=27.819419,-97.392456
-78404=27.768022,-97.399136
-78405=27.774249,-97.438774
-78406=27.771238,-97.518793
-78407=27.810698,-97.440395
-78408=27.794998,-97.446858
-78409=27.809478,-97.522896
-78410=27.838247,-97.596306
-78411=27.729894,-97.385247
-78412=27.703573,-97.345045
-78413=27.683192,-97.406176
-78414=27.662537,-97.371357
-78415=27.657870,-97.479816
-78416=27.752024,-97.436507
-78417=27.739629,-97.466806
-78418=27.627121,-97.269242
-78419=27.695151,-97.269443
-78501=26.215816,-98.239592
-78503=26.162332,-98.248702
-78504=26.271965,-98.236570
-78516=26.144539,-98.121312
-78520=25.963264,-97.550453
-78521=25.943923,-97.317944
-78526=25.989042,-97.443339
-78535=26.252832,-97.743596
-78536=26.649282,-98.451125
-78537=26.161900,-98.058657
-78538=26.374541,-97.980280
-78539=26.280689,-98.183295
-78541=26.450354,-98.276866
-78542=26.451477,-98.092002
-78543=26.297375,-97.999973
-78545=26.587174,-99.119871
-78548=26.274827,-98.654824
-78549=26.457143,-98.035415
-78550=26.255523,-97.667502
-78552=26.193782,-97.750690
-78557=26.113415,-98.241154
-78558=26.307831,-98.039361
-78559=26.148831,-97.831112
-78560=26.242809,-98.494490
-78561=26.477435,-97.921496
-78562=26.297669,-97.902485
-78563=26.654454,-98.259766
-78564=26.678196,-99.103088
-78565=26.253727,-98.567191
-78566=26.148406,-97.370376
-78567=26.052713,-97.740451
-78569=26.368214,-97.743570
-78570=26.174608,-97.912659
-78572=26.229223,-98.375450
-78573=26.296191,-98.299959
-78574=26.318906,-98.370049
-78575=26.021760,-97.526109
-78576=26.321607,-98.476164
-78577=26.151530,-98.189752
-78578=26.051625,-97.312767
-78579=26.083167,-97.962140
-78580=26.487740,-97.738953
-78582=26.530903,-98.740235
-78583=26.261363,-97.489015
-78584=26.573310,-98.962760
-78585=26.523344,-99.111146
-78586=26.106086,-97.629292
-78588=26.737863,-98.397207
-78589=26.167843,-98.154834
-78590=26.508366,-97.647775
-78591=26.582929,-98.521632
-78592=26.062006,-97.846971
-78593=26.275747,-97.823524
-78594=26.345257,-97.794892
-78595=26.291408,-98.545486
-78596=26.158622,-97.989155
-78597=26.235000,-97.271778
-78598=26.569308,-97.442331
-78602=30.123820,-97.327710
-78605=30.773295,-98.045180
-78606=30.083786,-98.476159
-78607=30.821753,-98.477388
-78608=30.936006,-97.934579
-78609=30.759723,-98.438345
-78610=30.078514,-97.838012
-78611=30.801039,-98.283488
-78612=30.094098,-97.495104
-78613=30.503949,-97.824200
-78614=29.410410,-97.587174
-78615=30.465454,-97.384111
-78616=29.940066,-97.568294
-78617=30.147375,-97.600145
-78618=30.465163,-99.156225
-78619=30.111915,-98.033573
-78620=30.224136,-98.134814
-78621=30.338584,-97.361224
-78622=29.754521,-97.775837
-78623=29.971139,-98.228231
-78624=30.280938,-98.876683
-78626=30.657897,-97.617886
-78628=30.664239,-97.776853
-78629=29.476842,-97.448940
-78631=30.339770,-99.306580
-78632=29.696110,-97.470663
-78633=30.750244,-97.760498
-78634=30.560322,-97.546399
-78635=30.182914,-98.566548
-78636=30.316898,-98.424992
-78638=29.659589,-97.785208
-78639=30.672818,-98.442748
-78640=29.999103,-97.828207
-78641=30.562168,-97.907817
-78642=30.690880,-97.941426
-78643=30.688543,-98.689889
-78644=29.871644,-97.676821
-78645=30.449996,-97.971806
-78648=29.690184,-97.633555
-78650=30.303885,-97.218899
-78652=30.132805,-97.874687
-78653=30.339696,-97.523512
-78654=30.581216,-98.208732
-78655=29.816065,-97.835054
-78656=29.904511,-97.807308
-78657=30.531339,-98.378347
-78659=30.207417,-97.125389
-78660=30.439630,-97.594687
-78661=29.721920,-97.758948
-78662=29.925681,-97.426006
-78663=30.402261,-98.359569
-78664=30.501927,-97.647251
-78665=30.543419,-97.645602
-78666=29.880162,-97.966164
-78669=30.430044,-98.112656
-78670=29.773930,-97.816724
-78671=30.218956,-98.629901
-78672=30.858836,-98.469511
-78675=30.434638,-98.707142
-78676=30.034449,-98.142776
-78677=29.349952,-97.580206
-78681=30.534424,-97.725741
-78701=30.270569,-97.742589
-78702=30.263378,-97.714483
-78703=30.293268,-97.766050
-78704=30.243032,-97.765081
-78705=30.294333,-97.738517
-78712=30.282173,-97.731003
-78717=30.492408,-97.748324
-78719=30.195372,-97.668445
-78721=30.269969,-97.683557
-78722=30.289963,-97.714696
-78723=30.304274,-97.685715
-78724=30.292599,-97.618171
-78725=30.230011,-97.608576
-78726=30.430941,-97.840101
-78727=30.429937,-97.717796
-78728=30.454170,-97.692183
-78729=30.458396,-97.755344
-78730=30.370266,-97.836156
-78731=30.348236,-97.768136
-78732=30.377889,-97.895023
-78733=30.321329,-97.884738
-78734=30.378736,-97.950592
-78735=30.268138,-97.869190
-78736=30.261084,-97.959435
-78737=30.190246,-97.956906
-78738=30.319748,-97.958224
-78739=30.178420,-97.888662
-78741=30.230506,-97.714185
-78742=30.242354,-97.659200
-78744=30.176044,-97.727787
-78745=30.206851,-97.797384
-78746=30.296865,-97.809578
-78747=30.126966,-97.739969
-78748=30.167110,-97.823998
-78749=30.216184,-97.855850
-78750=30.418557,-97.802545
-78751=30.310782,-97.722759
-78752=30.331813,-97.704287
-78753=30.382462,-97.673473
-78754=30.355657,-97.644682
-78756=30.322230,-97.740167
-78757=30.351538,-97.732571
-78758=30.387979,-97.706853
-78759=30.402665,-97.761062
-78801=29.362904,-99.898132
-78802=29.151012,-100.015870
-78827=28.421951,-99.733002
-78828=29.867563,-100.018530
-78829=28.888748,-99.562652
-78830=28.524903,-99.508480
-78832=29.395621,-100.439985
-78833=29.674700,-100.078588
-78834=28.454034,-99.917847
-78836=28.301642,-99.704277
-78837=29.837220,-101.212436
-78838=29.536636,-99.746893
-78839=28.718319,-99.823476
-78840=29.729903,-100.881337
-78843=29.358463,-100.776883
-78850=29.285285,-99.329182
-78851=30.028067,-101.970461
-78852=28.729787,-100.316678
-78860=28.478614,-100.278411
-78861=29.430007,-99.149034
-78870=29.303817,-99.630829
-78871=30.006991,-101.654794
-78872=28.926452,-99.865146
-78873=29.815376,-99.727302
-78877=28.951173,-100.593386
-78879=29.644470,-99.682471
-78880=29.989030,-100.285177
-78881=29.383670,-99.529697
-78883=29.678299,-99.316603
-78884=29.605008,-99.459791
-78885=29.809429,-99.540242
-78886=29.135837,-99.168888
-78931=30.024253,-96.451051
-78932=30.164042,-96.718280
-78933=29.790645,-96.359065
-78934=29.693447,-96.557401
-78935=29.695487,-96.424126
-78938=29.806557,-96.686537
-78940=29.940125,-96.658827
-78941=29.727617,-97.158450
-78942=30.167624,-96.923038
-78943=29.708998,-96.615598
-78944=30.027584,-96.496486
-78945=29.912267,-96.889573
-78946=30.188404,-96.778991
-78947=30.420154,-97.035831
-78948=30.321105,-96.976365
-78949=29.833182,-97.087403
-78950=29.904948,-96.482617
-78951=29.587283,-96.824373
-78953=29.844013,-97.357996
-78954=30.043016,-96.699188
-78956=29.686272,-96.933626
-78957=30.013897,-97.182124
-78959=29.700745,-97.301328
-78962=29.657572,-96.733177
-78963=29.916920,-97.028763
-79001=35.339757,-102.794987
-79003=35.581845,-100.068724
-79005=36.380233,-100.507442
-79007=35.706836,-101.398799
-79009=34.533282,-102.879628
-79010=35.450973,-102.140605
-79011=35.634220,-100.231976
-79012=35.264761,-102.127678
-79013=36.038768,-102.003123
-79014=35.908257,-100.285338
-79015=34.937472,-101.916036
-79016=34.983347,-101.918740
-79018=35.748254,-102.213391
-79019=35.007100,-101.394035
-79021=33.984844,-102.027747
-79022=36.098125,-102.606910
-79024=36.439773,-100.369084
-79025=34.940988,-102.205885
-79027=34.408048,-102.419542
-79029=35.901966,-102.025897
-79031=34.270256,-102.449583
-79032=34.282885,-101.941418
-79033=36.330040,-100.983997
-79034=36.359771,-100.157216
-79035=34.690472,-102.784877
-79036=35.612828,-101.547377
-79039=35.259837,-101.096311
-79040=36.318349,-101.559411
-79041=34.043255,-101.931966
-79042=34.741356,-101.911489
-79043=34.368347,-102.134819
-79044=35.863447,-102.367722
-79045=34.914806,-102.554528
-79046=36.163536,-100.121753
-79051=36.483086,-102.259356
-79052=34.361819,-101.742898
-79053=34.408017,-102.579402
-79054=35.374819,-100.821516
-79056=36.223812,-100.211576
-79057=35.246000,-100.642178
-79058=35.579500,-101.855136
-79059=35.830763,-100.765905
-79061=35.524915,-100.442492
-79062=36.030479,-101.507597
-79063=34.531086,-102.096270
-79064=34.195479,-102.119153
-79065=35.541234,-100.906572
-79068=35.346662,-101.444262
-79070=36.269876,-100.794038
-79072=34.169757,-101.733850
-79078=35.720483,-101.580709
-79079=35.208980,-100.242918
-79080=35.748650,-101.213702
-79081=36.241620,-101.218409
-79082=34.224256,-102.287745
-79083=35.886172,-101.515093
-79084=36.276881,-101.996725
-79085=34.740717,-102.514426
-79086=36.045957,-101.783727
-79087=36.287800,-102.913883
-79088=34.580896,-101.697218
-79091=34.897796,-102.126227
-79092=35.312969,-102.446391
-79093=36.289912,-101.033947
-79094=34.840077,-101.509700
-79095=34.904040,-100.208260
-79096=35.437391,-100.196706
-79097=35.435886,-101.178360
-79098=35.153350,-102.216656
-79101=35.206031,-101.839602
-79102=35.196340,-101.866250
-79103=35.177308,-101.794475
-79104=35.202967,-101.788728
-79105=35.691238,-101.820831
-79106=35.203066,-101.895003
-79107=35.230592,-101.802502
-79108=35.307898,-101.690933
-79109=35.166416,-101.886423
-79110=35.145012,-101.876275
-79111=35.220501,-101.708127
-79118=35.106367,-101.739911
-79119=35.109084,-102.017887
-79121=35.174696,-101.929737
-79124=35.266920,-101.958417
-79201=34.437766,-100.280962
-79220=33.753501,-100.794632
-79225=34.255931,-99.515204
-79226=34.900760,-100.994549
-79227=33.899685,-99.769784
-79229=33.665706,-100.676563
-79230=34.702273,-100.069222
-79231=33.906379,-101.070036
-79233=34.520996,-100.525648
-79234=34.230443,-100.935228
-79235=33.961932,-101.246145
-79236=33.710684,-100.384217
-79237=34.918283,-100.645545
-79239=34.655623,-100.763893
-79240=34.886066,-100.779931
-79241=34.179633,-101.387813
-79243=33.774479,-100.990114
-79244=34.030397,-100.843759
-79245=34.855772,-100.510099
-79247=34.329813,-99.409069
-79248=33.994322,-100.287247
-79250=33.877689,-101.594755
-79251=34.943421,-100.451566
-79252=34.304335,-99.818916
-79255=34.349913,-101.050762
-79256=33.900389,-100.745875
-79257=34.457478,-101.287161
-79258=34.228291,-101.288735
-79259=34.398492,-100.472927
-79261=34.447226,-100.809848
-79311=33.857882,-101.881538
-79312=34.019064,-102.419954
-79313=33.804892,-102.162291
-79314=33.584900,-103.014510
-79316=33.137907,-102.326183
-79322=33.633175,-101.178516
-79323=32.945746,-102.869403
-79324=33.897884,-102.682490
-79325=34.424608,-102.943742
-79326=34.077938,-102.216144
-79329=33.715143,-101.674963
-79330=33.040784,-101.224946
-79331=32.695214,-102.009570
-79336=33.603903,-102.398414
-79339=33.889082,-102.337301
-79342=32.908208,-102.336600
-79343=33.658671,-101.531037
-79344=33.844961,-102.930411
-79345=33.337542,-102.331350
-79346=33.648086,-102.824958
-79347=34.172560,-102.789410
-79350=33.731452,-101.825895
-79351=32.927010,-101.764414
-79353=33.783518,-102.581946
-79355=33.181663,-102.876729
-79356=33.285890,-101.339267
-79357=33.611886,-101.404701
-79358=33.442185,-102.195033
-79359=32.971141,-102.586555
-79360=32.689820,-102.724661
-79363=33.707731,-102.045021
-79364=33.452358,-101.644072
-79366=33.530315,-101.685343
-79367=33.621453,-102.190786
-79369=33.955743,-102.145171
-79370=33.507585,-100.908386
-79371=33.952621,-102.966213
-79372=33.434243,-102.488401
-79373=33.182577,-101.827198
-79376=33.233860,-102.673107
-79377=32.929648,-102.133506
-79378=33.058133,-102.474677
-79379=33.510507,-102.646422
-79380=33.735629,-102.332216
-79381=33.312912,-101.770523
-79382=33.455287,-102.014055
-79401=33.588771,-101.850444
-79403=33.643505,-101.775447
-79404=33.527702,-101.793717
-79406=33.585909,-101.878382
-79407=33.566862,-102.079243
-79410=33.570071,-101.891011
-79411=33.570034,-101.857733
-79412=33.546383,-101.856516
-79413=33.547402,-101.885644
-79414=33.547794,-101.920230
-79415=33.700795,-101.896988
-79416=33.600031,-101.982853
-79423=33.439976,-101.855463
-79424=33.468167,-101.947592
-79501=32.747863,-99.905394
-79502=33.183064,-100.245133
-79503=32.868609,-99.692923
-79504=32.335802,-99.350571
-79505=33.577057,-99.809712
-79506=32.106426,-100.313408
-79508=32.274081,-99.826041
-79510=32.266413,-99.518894
-79511=32.415915,-101.250314
-79512=32.304117,-100.924392
-79517=32.879511,-101.246784
-79518=33.341053,-100.714732
-79519=32.049869,-99.693761
-79520=32.857153,-100.124111
-79521=33.122685,-99.650389
-79525=32.630369,-99.830593
-79526=32.636295,-100.716880
-79527=32.593166,-101.059442
-79528=33.192636,-100.893642
-79529=33.431837,-99.853667
-79530=32.118932,-99.748801
-79532=32.404869,-100.711396
-79533=32.857171,-99.551490
-79534=32.764338,-100.211992
-79535=32.223438,-100.479835
-79536=32.473616,-100.032549
-79537=32.291861,-100.210748
-79538=31.970613,-99.684164
-79539=33.361114,-99.876875
-79540=33.169164,-100.040999
-79541=32.147788,-99.810223
-79543=32.714330,-100.407773
-79544=33.301509,-99.852900
-79545=32.415212,-100.573539
-79546=32.891818,-100.498206
-79547=33.197744,-99.905443
-79548=33.049768,-99.918963
-79549=32.887589,-100.841389
-79553=32.940911,-99.850964
-79556=32.458787,-100.357939
-79560=32.665235,-100.213046
-79561=32.515491,-100.195108
-79562=32.236251,-99.866451
-79563=32.415823,-99.906230
-79565=32.397372,-101.087816
-79566=32.109022,-100.134603
-79567=31.972434,-99.950294
-79601=32.576489,-99.665323
-79602=32.335677,-99.667488
-79603=32.333551,-99.927724
-79605=32.434599,-99.781827
-79606=32.362783,-99.817314
-79607=32.430350,-99.832641
-79699=32.462235,-99.715894
-79701=31.992384,-102.081464
-79703=31.979427,-102.132366
-79705=32.051210,-102.059633
-79706=31.848988,-102.005075
-79707=32.043685,-102.198726
-79713=32.489818,-101.754488
-79714=32.335729,-102.697303
-79718=31.004969,-103.759065
-79719=31.460655,-103.404137
-79720=32.253541,-101.472640
-79730=31.169521,-103.085135
-79731=31.422796,-102.487774
-79733=32.102911,-101.365434
-79734=30.686139,-103.960150
-79735=30.747459,-102.790792
-79738=32.751934,-101.474837
-79739=31.769325,-101.506391
-79741=31.969312,-102.630882
-79742=31.342040,-102.868447
-79743=31.185703,-102.593762
-79744=30.922006,-101.970261
-79745=31.831415,-103.055986
-79748=32.408047,-101.651732
-79749=32.289048,-101.871764
-79752=31.228870,-102.162001
-79754=31.803547,-103.599914
-79755=31.517628,-101.918007
-79756=31.540255,-102.844644
-79758=31.970431,-102.320746
-79759=31.799171,-102.632933
-79761=31.855051,-102.350647
-79762=31.925466,-102.357932
-79763=31.799158,-102.474090
-79764=31.866262,-102.537544
-79765=31.914390,-102.262512
-79766=31.725171,-102.413607
-79770=31.875118,-103.933311
-79772=31.422363,-103.627309
-79777=31.484586,-103.161046
-79778=31.176246,-101.923824
-79780=31.061959,-103.592093
-79781=30.596998,-101.784530
-79782=32.149838,-101.826743
-79783=32.321673,-102.042298
-79785=31.327482,-103.906799
-79788=31.582140,-102.977116
-79789=31.696251,-103.138992
-79821=31.980053,-106.598777
-79830=29.802094,-103.222360
-79831=30.429399,-103.325765
-79834=29.166114,-103.270536
-79835=31.936406,-106.589725
-79836=31.572550,-106.198866
-79837=32.233577,-105.286558
-79838=31.482839,-106.168049
-79839=31.333177,-105.902546
-79842=30.085732,-103.117740
-79843=30.285296,-104.005761
-79845=29.888046,-104.519139
-79846=29.387969,-103.990395
-79847=31.835905,-105.052957
-79848=30.261302,-102.301073
-79849=31.560649,-106.250112
-79851=31.278279,-105.311660
-79852=29.396230,-103.617232
-79853=31.434058,-106.063238
-79854=30.591270,-104.660157
-79855=31.093480,-104.624514
-79901=31.760618,-106.478578
-79902=31.783715,-106.498544
-79903=31.786182,-106.441937
-79904=31.852764,-106.447636
-79905=31.766054,-106.426202
-79906=31.810651,-106.404743
-79907=31.707231,-106.326563
-79908=31.857201,-106.380388
-79911=31.892466,-106.542596
-79912=31.848583,-106.534316
-79915=31.746041,-106.371426
-79916=31.814157,-106.418030
-79920=31.824725,-106.451727
-79922=31.814165,-106.561298
-79924=31.902442,-106.413245
-79925=31.796950,-106.356880
-79927=31.640206,-106.268949
-79928=31.631426,-106.160065
-79930=31.829304,-106.483334
-79932=31.874964,-106.607988
-79934=31.950670,-106.433518
-79935=31.767715,-106.329332
-79936=31.776593,-106.296976
-79938=31.829712,-105.971362
-79942=30.575618,-101.331239
-80002=39.794822,-105.105292
-80003=39.825373,-105.063525
-80004=39.817202,-105.123954
-80005=39.851650,-105.131418
-80007=39.862519,-105.192405
-80010=39.739249,-104.862881
-80011=39.738764,-104.782159
-80012=39.699735,-104.837643
-80013=39.661404,-104.765658
-80014=39.663559,-104.838066
-80015=39.627320,-104.779035
-80016=39.599458,-104.707606
-80017=39.697928,-104.785460
-80018=39.688002,-104.689740
-80019=39.786982,-104.702170
-80020=39.930782,-105.074287
-80021=39.890663,-105.113724
-80022=39.879646,-104.798722
-80023=39.975858,-105.009387
-80024=39.843876,-104.917925
-80025=39.939848,-105.283942
-80026=40.012251,-105.099757
-80027=39.950806,-105.159495
-80030=39.830822,-105.037470
-80031=39.873832,-105.038659
-80033=39.772675,-105.104801
-80045=39.747872,-104.838305
-80101=39.365030,-104.019170
-80102=39.745990,-104.442841
-80103=39.780010,-104.142596
-80104=39.276134,-104.832238
-80105=39.667581,-103.969401
-80106=39.186147,-104.515915
-80107=39.409358,-104.572571
-80108=39.445520,-104.853001
-80109=39.364264,-104.901376
-80110=39.645936,-105.011368
-80111=39.613005,-104.877957
-80112=39.576926,-104.857826
-80113=39.644445,-104.965111
-80116=39.320019,-104.709712
-80117=39.369612,-104.342901
-80118=39.192431,-104.905265
-80120=39.593836,-105.011460
-80121=39.610714,-104.949039
-80122=39.580309,-104.954917
-80123=39.616010,-105.069449
-80124=39.532889,-104.891089
-80125=39.485069,-105.052316
-80126=39.540572,-104.958557
-80127=39.530726,-105.164344
-80128=39.563846,-105.079066
-80129=39.545535,-105.010351
-80130=39.530958,-104.923416
-80131=39.476440,-105.007544
-80132=39.099410,-104.846530
-80133=39.096847,-104.980513
-80134=39.485499,-104.778638
-80135=39.254744,-105.156973
-80136=39.791978,-104.279929
-80137=39.770328,-104.597351
-80138=39.517532,-104.670911
-80202=39.751907,-104.997633
-80203=39.731686,-104.982650
-80204=39.734837,-105.020395
-80205=39.758857,-104.962829
-80206=39.730282,-104.952592
-80207=39.762298,-104.916613
-80209=39.706581,-104.965750
-80210=39.676626,-104.962315
-80211=39.767444,-105.019736
-80212=39.772047,-105.048027
-80214=39.743312,-105.069025
-80215=39.744773,-105.115977
-80216=39.788551,-104.956478
-80218=39.731085,-104.970674
-80219=39.695293,-105.035601
-80220=39.733819,-104.916570
-80221=39.817067,-105.011035
-80222=39.671019,-104.927895
-80223=39.695794,-105.003843
-80224=39.687746,-104.911338
-80226=39.712845,-105.091519
-80227=39.666287,-105.089746
-80228=39.694990,-105.173144
-80229=39.855318,-104.957119
-80230=39.719464,-104.890279
-80231=39.671420,-104.887802
-80232=39.686866,-105.090234
-80233=39.899671,-104.946561
-80234=39.909992,-105.002643
-80235=39.647607,-105.089482
-80236=39.651675,-105.039569
-80237=39.639871,-104.901711
-80238=39.771649,-104.882471
-80239=39.787628,-104.838551
-80241=39.929518,-104.954808
-80246=39.705197,-104.930842
-80247=39.698327,-104.878815
-80249=39.854746,-104.695804
-80260=39.866918,-105.006059
-80264=39.742477,-104.985482
-80290=39.744092,-104.986754
-80293=39.746253,-104.989935
-80294=39.749452,-104.989270
-80301=40.049468,-105.201421
-80302=40.043465,-105.372324
-80303=39.973222,-105.209276
-80304=40.045421,-105.291263
-80305=39.975334,-105.248158
-80310=40.002148,-105.263655
-80401=39.718726,-105.236031
-80403=39.836967,-105.299574
-80419=39.728399,-105.202805
-80420=39.324723,-106.116757
-80421=39.460932,-105.501199
-80422=39.870497,-105.528825
-80423=39.884824,-106.586734
-80424=39.473301,-106.004254
-80425=39.350155,-105.205591
-80426=39.912085,-107.000453
-80427=39.780281,-105.494960
-80428=40.843694,-106.925249
-80432=39.222372,-105.796893
-80433=39.477721,-105.262386
-80434=40.843252,-106.286789
-80435=39.573695,-105.934609
-80436=39.780974,-105.640117
-80438=39.744391,-105.794123
-80439=39.634422,-105.440245
-80440=39.228920,-105.969828
-80442=39.924007,-105.889416
-80443=39.556393,-106.170245
-80444=39.608406,-105.750988
-80446=40.176381,-105.949079
-80447=40.296598,-105.762357
-80448=39.423124,-105.649844
-80449=38.976576,-105.856797
-80451=40.098446,-106.073143
-80452=39.689403,-105.670783
-80453=39.662687,-105.242573
-80454=39.630111,-105.248097
-80455=40.094970,-105.397691
-80456=39.248322,-105.536849
-80457=39.648250,-105.290978
-80459=40.177204,-106.454609
-80461=39.231742,-106.313157
-80463=39.970544,-106.720487
-80465=39.609101,-105.205545
-80466=39.974483,-105.546992
-80467=40.206871,-106.825671
-80468=39.951923,-106.122681
-80469=40.200081,-106.968565
-80470=39.379793,-105.324404
-80471=39.935223,-105.420972
-80473=40.416393,-106.134369
-80475=39.455178,-105.570364
-80476=39.670628,-105.834343
-80477=40.486391,-106.829354
-80478=40.029019,-105.852772
-80479=40.035912,-106.814497
-80480=40.672888,-106.341566
-80481=40.101411,-105.576764
-80482=39.897522,-105.785797
-80483=40.091798,-106.935980
-80487=40.540952,-106.850132
-80488=40.448703,-106.818184
-80497=39.670756,-106.000064
-80498=39.746631,-106.270530
-80501=40.164837,-105.103179
-80503=40.169014,-105.210376
-80504=40.163388,-105.030087
-80510=40.212495,-105.606827
-80511=40.340181,-105.572189
-80512=40.631157,-105.574043
-80513=40.297380,-105.103753
-80514=40.065847,-104.955479
-80515=40.462346,-105.382303
-80516=40.051112,-105.027632
-80517=40.384744,-105.586376
-80520=40.113099,-104.931431
-80521=40.594597,-105.127416
-80524=40.646857,-105.029513
-80525=40.529861,-105.036641
-80526=40.518836,-105.143224
-80528=40.494596,-105.004639
-80530=40.097792,-104.929279
-80532=40.493095,-105.467197
-80534=40.331863,-104.937467
-80535=40.732954,-105.183846
-80536=40.868337,-105.369065
-80537=40.363199,-105.176682
-80538=40.457521,-105.050761
-80540=40.235694,-105.364549
-80542=40.235081,-104.999386
-80543=40.349679,-104.857452
-80544=40.103412,-105.171093
-80545=40.874586,-105.637727
-80546=40.525242,-104.849696
-80547=40.526630,-104.965364
-80549=40.857579,-105.044150
-80550=40.484657,-104.900983
-80601=39.962027,-104.807809
-80602=39.966363,-104.908709
-80603=39.982211,-104.737094
-80610=40.673769,-104.591319
-80611=40.624982,-104.287097
-80612=40.872141,-104.852569
-80615=40.545658,-104.645698
-80620=40.373756,-104.717482
-80621=40.107239,-104.801290
-80622=40.538013,-104.460409
-80623=40.285379,-104.782532
-80624=40.486784,-104.498802
-80631=40.442868,-104.673072
-80634=40.403315,-104.792917
-80640=39.887453,-104.880987
-80642=40.051416,-104.612139
-80643=40.112932,-104.489163
-80644=40.428280,-104.424790
-80645=40.330728,-104.667961
-80648=40.755864,-104.740919
-80649=40.400836,-104.185793
-80650=40.621518,-104.829835
-80651=40.241735,-104.809410
-80652=40.138877,-104.275149
-80653=40.423342,-103.974634
-80654=40.138103,-104.065491
-80701=40.165309,-103.870735
-80705=40.270499,-103.829653
-80720=40.078252,-103.219881
-80721=40.689612,-102.153900
-80722=40.506613,-103.271661
-80723=40.193773,-103.543331
-80726=40.905042,-102.793047
-80727=40.075829,-102.510988
-80728=40.644866,-102.873872
-80729=40.884243,-104.269296
-80731=40.594450,-102.600328
-80733=40.371386,-103.450535
-80734=40.519891,-102.291952
-80735=39.709824,-102.273164
-80736=40.811815,-103.027237
-80737=40.876140,-102.177979
-80740=39.725661,-103.382898
-80741=40.567222,-103.476943
-80742=40.755781,-103.835012
-80743=40.197118,-102.954746
-80744=40.873626,-102.391968
-80745=40.895496,-103.412556
-80746=40.609603,-102.465912
-80747=40.942361,-103.086174
-80749=40.867058,-102.547276
-80750=40.414765,-103.604846
-80751=40.636880,-103.232406
-80754=40.721755,-103.665469
-80755=39.911897,-102.344974
-80757=39.791027,-103.583130
-80758=40.138836,-102.193094
-80759=40.135241,-102.685959
-80801=39.732280,-103.101271
-80802=38.836946,-102.173384
-80804=39.346840,-103.248069
-80805=39.305959,-102.455614
-80807=39.321667,-102.223231
-80808=38.981599,-104.304401
-80809=38.852057,-105.008560
-80810=38.822287,-102.428708
-80812=39.619003,-102.849918
-80813=38.805388,-105.158500
-80814=38.959653,-105.194278
-80815=39.396721,-103.063405
-80816=38.857741,-105.315864
-80817=38.638580,-104.686472
-80818=39.385913,-103.480409
-80819=38.972089,-105.017510
-80820=38.838655,-105.561131
-80821=38.979959,-103.371474
-80822=39.701982,-102.670238
-80823=38.663464,-103.419186
-80824=39.650575,-102.498735
-80825=38.833241,-102.827694
-80827=39.056483,-105.467359
-80828=39.327762,-103.747910
-80829=38.829017,-104.935144
-80830=39.114246,-103.894118
-80831=38.994216,-104.490669
-80832=39.017177,-104.012874
-80833=38.763233,-103.965090
-80834=39.264797,-102.883640
-80835=39.218328,-104.023254
-80836=39.298004,-102.584444
-80840=38.994694,-104.861958
-80860=38.705809,-105.088278
-80861=39.331861,-102.721831
-80862=38.873184,-103.057916
-80863=39.019995,-105.113586
-80864=38.697666,-104.186739
-80902=38.669371,-104.807956
-80903=38.831526,-104.815062
-80904=38.860829,-104.876163
-80905=38.818910,-104.838348
-80906=38.752602,-104.878232
-80907=38.878231,-104.827015
-80908=39.047589,-104.690533
-80909=38.853475,-104.775218
-80910=38.812066,-104.774580
-80911=38.752916,-104.723477
-80913=38.687472,-104.748776
-80914=38.824001,-104.704184
-80915=38.849797,-104.717043
-80916=38.806967,-104.708018
-80917=38.886168,-104.745264
-80918=38.910393,-104.780362
-80919=38.928208,-104.852626
-80920=38.957598,-104.770770
-80921=39.016197,-104.910486
-80922=38.890614,-104.700604
-80923=38.926861,-104.714813
-80924=38.968013,-104.721285
-80925=38.757764,-104.655864
-80926=38.634733,-104.903006
-80927=38.928577,-104.658334
-80928=38.630403,-104.401634
-80929=38.824710,-104.626967
-80930=38.814229,-104.502478
-80938=38.904705,-104.663409
-80939=38.877605,-104.677361
-80951=38.907884,-104.642636
-81001=38.295719,-104.533434
-81003=38.279592,-104.631463
-81004=38.044054,-104.714410
-81005=38.197683,-104.810446
-81006=38.236135,-104.497337
-81007=38.360042,-104.773198
-81008=38.441619,-104.621526
-81019=37.943700,-104.841876
-81020=37.548854,-104.491020
-81021=38.387612,-103.380930
-81022=38.050166,-104.422573
-81023=38.052634,-104.964220
-81024=37.249355,-104.734713
-81025=38.455047,-104.355296
-81027=37.189352,-103.799939
-81029=37.082909,-102.508878
-81030=38.100738,-103.523617
-81033=38.194886,-103.861345
-81036=38.387663,-102.756849
-81038=38.079243,-103.140420
-81039=37.939070,-104.085204
-81040=37.783222,-105.227208
-81041=37.867474,-102.370249
-81043=38.130942,-102.220917
-81044=37.859663,-102.947678
-81045=38.487746,-103.164635
-81047=38.109603,-102.149479
-81049=37.378762,-103.387574
-81050=37.942354,-103.515160
-81052=37.918016,-102.639554
-81054=37.945704,-103.157396
-81055=37.491667,-105.111560
-81057=38.121810,-102.879317
-81058=38.099953,-103.882859
-81059=37.505391,-104.020765
-81062=38.296890,-103.964339
-81063=38.430710,-103.771060
-81064=37.224707,-102.999283
-81067=37.933631,-103.778471
-81069=37.893271,-104.903626
-81071=38.436195,-102.246008
-81073=37.425411,-102.705136
-81076=38.343221,-103.601595
-81077=38.017621,-103.630845
-81081=37.048164,-104.214951
-81082=37.181854,-104.518043
-81084=37.585749,-102.410284
-81087=37.365900,-102.409003
-81089=37.651580,-104.737761
-81090=37.362178,-102.226659
-81091=37.149009,-104.964756
-81092=38.193819,-102.752246
-81101=37.481245,-105.833213
-81120=37.227560,-106.319313
-81121=37.109777,-107.439077
-81122=37.351492,-107.475814
-81123=37.399731,-105.571815
-81124=37.306244,-106.160588
-81125=37.819261,-106.069857
-81126=37.155590,-105.334587
-81128=37.079692,-106.620964
-81129=37.103361,-106.029047
-81130=37.535676,-107.060620
-81131=37.865412,-105.679141
-81132=37.711322,-106.429077
-81133=37.430130,-105.307195
-81136=37.719510,-105.813477
-81137=37.051911,-107.613601
-81138=37.030764,-105.620375
-81140=37.315056,-106.105367
-81141=37.162298,-105.858338
-81143=38.049008,-105.856686
-81144=37.553439,-106.167043
-81146=37.624450,-105.684002
-81147=37.322856,-107.085622
-81148=37.171819,-105.985414
-81149=38.101708,-106.345890
-81151=37.278604,-105.808117
-81152=37.110768,-105.402120
-81154=37.575406,-106.603809
-81155=38.288273,-106.074366
-81201=38.554832,-106.066038
-81210=38.808682,-106.677952
-81211=38.973327,-106.381258
-81212=38.535754,-105.398394
-81220=38.308243,-107.480574
-81221=38.362348,-105.144129
-81222=38.348083,-105.830570
-81223=38.364529,-105.612646
-81224=38.879715,-106.933212
-81225=38.966452,-106.926271
-81226=38.315025,-105.145290
-81227=38.549238,-106.290215
-81230=38.395065,-106.953683
-81231=38.550024,-106.919672
-81232=38.285131,-105.610466
-81233=38.425974,-105.824878
-81235=38.012835,-107.299418
-81236=38.676321,-106.262934
-81237=38.603067,-106.614052
-81239=38.508808,-106.663673
-81240=38.500352,-105.034304
-81241=38.622863,-106.508427
-81242=38.508149,-106.075489
-81243=38.265999,-107.192094
-81244=38.362933,-105.177721
-81248=38.464302,-106.378258
-81251=39.112071,-106.474415
-81252=38.110643,-105.427522
-81253=38.227069,-105.065171
-81301=37.441078,-107.852781
-81303=37.121490,-107.885499
-81320=37.720141,-108.735147
-81321=37.312970,-108.734537
-81323=37.702733,-108.126685
-81324=37.658451,-109.029605
-81325=37.920163,-108.726787
-81326=37.156378,-108.187079
-81327=37.518051,-108.660749
-81328=37.360003,-108.258342
-81330=37.231252,-108.482502
-81331=37.445868,-108.907291
-81332=37.700350,-107.991211
-81334=37.146139,-108.612966
-81335=37.496407,-108.757072
-81401=38.484153,-107.772919
-81403=38.368301,-107.957375
-81410=38.804613,-107.966364
-81411=38.250859,-108.979946
-81413=38.965703,-107.956201
-81415=38.624243,-107.626996
-81416=38.752074,-108.136959
-81418=38.848899,-107.987839
-81419=38.881231,-107.745058
-81422=38.346587,-108.711308
-81423=38.023159,-108.372470
-81424=38.328284,-108.439691
-81425=38.493599,-108.247485
-81426=37.868211,-107.891294
-81427=38.025837,-107.609762
-81428=38.962987,-107.599578
-81429=38.323946,-108.876176
-81430=38.023635,-108.019506
-81431=38.110654,-108.570085
-81432=38.097119,-107.754925
-81433=37.765269,-107.586247
-81434=38.981709,-107.430587
-81435=37.908208,-107.860545
-81501=39.071848,-108.547131
-81503=39.029808,-108.434076
-81504=39.079633,-108.490284
-81505=39.255826,-108.534246
-81506=39.123368,-108.531757
-81507=39.009885,-108.651873
-81520=39.111083,-108.433844
-81521=39.130597,-108.806395
-81522=38.618218,-108.913333
-81523=38.968751,-108.891394
-81524=39.274252,-108.787139
-81525=39.286707,-108.946166
-81526=39.096926,-108.334424
-81527=38.796956,-108.482549
-81601=39.601304,-107.304388
-81610=40.278752,-108.761691
-81611=39.158172,-106.668560
-81612=39.134183,-106.837368
-81615=39.220609,-106.929297
-81620=39.595601,-106.513435
-81621=39.402639,-106.804983
-81623=39.246580,-107.162855
-81624=39.199484,-107.706269
-81625=40.745223,-107.694794
-81630=39.407867,-108.572993
-81631=39.629385,-106.750040
-81632=39.629202,-106.607633
-81633=40.338315,-108.429204
-81635=39.495029,-108.047972
-81637=39.777824,-107.105819
-81638=40.315572,-107.549052
-81639=40.506919,-107.239230
-81640=40.668299,-108.514046
-81641=40.084284,-107.747345
-81642=39.318251,-106.655956
-81643=39.066286,-108.151539
-81645=39.455604,-106.458353
-81646=39.104397,-108.005191
-81647=39.610533,-107.566625
-81648=39.940221,-108.665369
-81649=39.530227,-106.278163
-81650=39.751037,-108.113722
-81652=39.485172,-107.654716
-81653=40.969754,-107.227193
-81654=39.205556,-107.045797
-81655=39.781173,-106.459886
-81656=39.283850,-106.897256
-81657=39.675999,-106.308296
-82001=41.092356,-104.936269
-82005=41.140250,-104.874531
-82007=41.080998,-104.698483
-82009=41.373553,-104.842810
-82050=41.446986,-104.266331
-82051=41.581934,-105.595429
-82052=41.118551,-105.308612
-82053=41.252203,-104.368869
-82054=41.064273,-104.360520
-82055=41.332270,-106.175710
-82058=42.087082,-105.636173
-82059=41.053423,-105.178649
-82060=41.277387,-104.496976
-82061=41.445182,-105.161358
-82063=40.882289,-105.997396
-82070=41.195245,-105.831882
-82072=41.414287,-105.477151
-82073=41.356764,-105.587542
-82081=41.533638,-104.492090
-82082=41.235319,-104.134235
-82083=41.662191,-106.080578
-82084=41.025388,-105.619771
-82190=44.552610,-110.530126
-82201=42.018732,-105.149002
-82210=41.743949,-104.830306
-82212=42.278608,-104.539289
-82213=42.494688,-105.004445
-82214=42.252378,-104.791214
-82215=42.382000,-104.759567
-82217=41.760360,-104.136425
-82219=42.498716,-104.513283
-82221=41.638038,-104.328472
-82222=43.196135,-104.650472
-82223=42.130328,-104.395784
-82224=43.027155,-104.808472
-82225=43.011180,-104.243870
-82227=42.743075,-104.750756
-82229=42.878051,-104.967096
-82240=42.257616,-104.150757
-82242=42.694543,-104.109376
-82243=41.995412,-104.429236
-82244=41.879347,-104.420881
-82301=41.892016,-107.490595
-82321=41.239450,-107.741407
-82322=42.237737,-107.561028
-82323=41.052449,-107.500084
-82324=41.674474,-106.411942
-82325=41.246959,-106.713116
-82327=42.141638,-106.630301
-82329=42.089734,-106.081233
-82331=41.370024,-106.796539
-82332=41.036084,-107.280714
-82334=41.901041,-107.017768
-82335=41.753780,-106.760179
-82336=41.698283,-108.208018
-82401=43.988573,-108.152151
-82410=44.354714,-108.119184
-82411=44.414494,-108.458033
-82412=44.796848,-108.553488
-82414=44.492387,-109.593597
-82420=44.934330,-108.457721
-82421=44.909692,-108.599103
-82422=44.497663,-108.382274
-82423=44.966206,-108.581214
-82426=44.512840,-107.761207
-82428=44.326469,-107.511302
-82430=43.815463,-108.184939
-82431=44.840242,-108.164383
-82432=44.202999,-107.864542
-82433=44.061115,-109.102295
-82434=44.381888,-108.295258
-82435=44.810459,-108.915036
-82440=44.719748,-108.864172
-82441=44.642868,-107.769976
-82442=43.879297,-107.321733
-82443=43.726647,-108.472130
-82450=44.505179,-109.435558
-82501=43.033049,-108.206993
-82510=42.994046,-108.597860
-82512=43.301564,-109.282617
-82513=43.627124,-109.668130
-82514=43.035164,-108.929406
-82515=42.903732,-108.542611
-82516=43.188553,-108.832009
-82520=42.699170,-108.618598
-82523=43.462830,-108.822660
-82601=43.058940,-106.439816
-82604=42.857603,-106.770764
-82609=42.805201,-106.180846
-82620=42.465283,-107.107180
-82630=43.165169,-107.317240
-82633=43.020861,-105.410680
-82635=43.398153,-106.222390
-82636=42.913338,-106.158433
-82637=42.814344,-105.884580
-82638=43.114517,-107.323054
-82639=43.712117,-106.612634
-82640=43.563825,-106.199923
-82642=43.245273,-107.600833
-82643=43.441014,-106.252286
-82644=42.840611,-106.366610
-82646=43.000925,-106.821962
-82648=43.281053,-107.152676
-82649=43.301333,-108.053346
-82701=43.711636,-104.433861
-82710=44.706522,-104.248772
-82711=44.709224,-104.458623
-82712=44.453260,-104.121622
-82714=44.571551,-104.699607
-82715=44.119155,-104.133391
-82716=44.464635,-105.695059
-82718=43.878837,-105.621622
-82720=44.795996,-104.670545
-82721=44.481838,-104.916416
-82723=44.001929,-104.422888
-82725=44.876792,-105.702593
-82727=44.324053,-105.198239
-82729=44.323705,-104.360408
-82730=44.045538,-104.697602
-82731=44.845838,-105.308135
-82732=43.705442,-105.619567
-82801=44.843713,-106.835993
-82831=44.600097,-106.049796
-82832=44.594845,-106.797089
-82833=44.611356,-107.063394
-82834=44.239738,-106.658714
-82835=44.756041,-106.359287
-82836=44.783123,-107.486942
-82837=44.773384,-106.235269
-82838=44.933008,-107.577595
-82839=44.925813,-107.161076
-82842=44.572988,-106.932360
-82844=44.782566,-107.221085
-82845=44.753527,-106.654623
-82901=41.379272,-108.978176
-82922=43.126480,-110.411256
-82923=42.659063,-109.427408
-82925=43.239399,-109.905709
-82929=41.555746,-109.843634
-82930=41.016132,-110.644930
-82932=42.254134,-109.357051
-82933=41.293212,-110.440833
-82934=41.604084,-110.012918
-82935=41.688569,-109.664735
-82936=41.061984,-110.184672
-82937=41.347080,-110.264865
-82938=41.099639,-109.888823
-82939=41.218918,-110.345571
-82941=42.904663,-109.738811
-82942=41.714292,-108.870798
-82943=41.754643,-109.208009
-82944=41.162053,-110.464639
-82945=41.744069,-109.051037
-83001=43.394562,-110.629837
-83011=43.524181,-110.455876
-83012=43.732474,-110.790692
-83013=43.993776,-110.465478
-83014=43.448623,-110.966891
-83025=43.593898,-110.846405
-83101=41.959496,-110.553166
-83110=42.725902,-110.849219
-83111=42.771912,-111.174095
-83112=42.920608,-110.832476
-83113=42.531855,-110.257868
-83114=42.264515,-110.984637
-83115=42.891640,-110.315245
-83116=41.769544,-110.533471
-83118=43.047855,-110.997576
-83119=42.643918,-110.988197
-83120=42.915847,-111.117315
-83121=41.819716,-110.533905
-83122=42.820269,-110.946542
-83123=42.221111,-110.250207
-83124=41.773109,-110.234012
-83126=42.593741,-110.830763
-83127=42.960329,-110.963578
-83128=43.040079,-110.722208
-83201=42.904916,-112.380093
-83202=42.925511,-112.182742
-83203=43.042389,-112.495960
-83204=42.856338,-112.629866
-83209=42.857791,-112.426322
-83210=43.020349,-112.869167
-83211=42.701149,-113.028458
-83212=42.538792,-112.543984
-83213=43.539315,-113.266776
-83214=42.539846,-112.307675
-83215=43.443158,-112.812491
-83217=42.777857,-111.942715
-83218=43.317687,-112.165272
-83220=42.377246,-111.423173
-83221=43.324081,-112.552045
-83223=42.181781,-111.406959
-83226=44.631888,-114.349810
-83227=44.248910,-114.506730
-83228=42.233673,-112.060271
-83232=42.138463,-111.971088
-83233=42.135042,-111.237956
-83234=42.422579,-112.101094
-83235=44.574889,-113.698601
-83236=43.191095,-111.872456
-83237=42.027452,-111.778558
-83238=42.321016,-111.116429
-83239=42.534060,-111.289969
-83241=42.514851,-111.765362
-83243=42.297492,-112.651289
-83244=44.116803,-113.123868
-83245=42.818119,-112.207732
-83246=42.611071,-112.024620
-83250=42.672528,-112.204751
-83251=43.943580,-113.881212
-83252=42.174414,-112.406564
-83253=44.315204,-113.690673
-83254=42.328779,-111.271877
-83255=43.685697,-113.583637
-83261=42.216058,-111.433149
-83262=43.225760,-112.774493
-83263=42.181249,-111.753213
-83271=42.442204,-112.912780
-83272=42.166116,-111.511170
-83274=43.348840,-112.097984
-83276=42.747939,-111.508511
-83277=43.066895,-112.667158
-83278=44.336299,-114.813696
-83281=42.329852,-111.965452
-83283=42.371100,-111.632470
-83285=43.072392,-111.303020
-83286=42.063423,-112.015748
-83287=42.042246,-111.399191
-83301=42.400555,-114.524876
-83302=42.226893,-115.009033
-83311=42.391733,-113.564720
-83312=41.975985,-113.650773
-83313=43.350720,-114.260756
-83314=42.985016,-114.951592
-83316=42.619859,-114.882859
-83318=42.439675,-113.815864
-83320=43.481456,-113.872707
-83321=42.463501,-114.914924
-83322=43.349499,-114.978595
-83323=42.502958,-113.391556
-83324=42.872740,-114.272110
-83325=42.587877,-114.240846
-83327=43.492599,-114.809455
-83328=42.570448,-114.613167
-83330=42.951933,-114.707998
-83332=42.803128,-114.924974
-83333=43.568308,-114.310950
-83334=42.444460,-114.292089
-83335=42.579582,-114.066822
-83336=42.564680,-113.824650
-83337=43.224071,-115.152058
-83338=42.725104,-114.431903
-83340=43.742478,-114.638311
-83341=42.419106,-114.370742
-83342=42.177466,-113.255097
-83344=42.446919,-114.138302
-83346=42.284852,-113.824404
-83347=42.663622,-113.809020
-83348=43.249472,-114.107680
-83349=43.096544,-114.181412
-83350=42.694326,-113.579982
-83352=43.070085,-114.412326
-83353=43.692299,-114.325161
-83354=43.670188,-114.322264
-83355=42.757435,-114.722206
-83401=43.542409,-111.877936
-83402=43.534886,-112.174467
-83404=43.421905,-112.011535
-83406=43.443948,-111.811633
-83414=43.836791,-110.938066
-83420=44.077471,-111.346444
-83421=44.020098,-111.529233
-83422=43.728569,-111.231457
-83423=44.300087,-112.280545
-83424=43.910055,-111.168110
-83425=43.912196,-112.242431
-83427=43.524952,-111.932584
-83428=43.469849,-111.172135
-83429=44.476186,-111.398268
-83431=43.688427,-112.032935
-83433=44.484482,-111.333103
-83434=43.752647,-112.006385
-83435=43.988863,-112.568602
-83436=43.857158,-111.472046
-83440=43.814690,-111.822546
-83442=43.671986,-111.893369
-83443=43.515950,-111.518092
-83444=43.719372,-112.301574
-83445=43.979292,-111.767357
-83446=44.472573,-112.187636
-83448=43.850004,-111.692649
-83449=43.259048,-111.417191
-83450=43.830648,-112.405569
-83451=43.866555,-111.633321
-83452=43.835421,-111.218327
-83454=43.595424,-111.952242
-83455=43.614042,-111.183881
-83460=43.816972,-111.782203
-83462=45.301183,-113.809337
-83463=45.581486,-114.053563
-83464=44.533531,-113.255751
-83465=44.792741,-113.672382
-83466=45.414846,-114.046629
-83467=44.979814,-113.896277
-83468=44.922252,-113.592213
-83469=45.341800,-114.429539
-83501=46.208729,-116.913734
-83520=46.544438,-116.325745
-83522=45.919632,-116.511565
-83523=46.248903,-116.443537
-83524=46.365735,-116.665543
-83525=45.788829,-115.517408
-83526=46.147763,-116.412071
-83530=45.919925,-116.084203
-83533=46.094403,-116.236870
-83535=46.534195,-116.724005
-83536=46.223705,-116.001302
-83537=46.637598,-116.550893
-83539=46.177855,-114.980094
-83540=46.345204,-116.782679
-83541=46.513376,-116.469465
-83542=45.569127,-116.357289
-83543=46.273201,-116.233430
-83544=46.490865,-116.151469
-83545=46.426420,-116.421800
-83546=46.560009,-115.822123
-83547=45.173515,-116.218129
-83548=46.360925,-116.505033
-83549=45.344178,-116.190911
-83552=46.008057,-115.932942
-83553=46.390006,-115.892311
-83554=45.720056,-116.275289
-83555=46.127543,-116.689431
-83601=43.891165,-115.259947
-83602=44.070601,-116.108680
-83604=42.515345,-115.747855
-83605=43.661908,-116.656290
-83607=43.709411,-116.750541
-83610=44.743225,-116.773547
-83611=44.727247,-115.368064
-83612=44.921058,-116.586316
-83615=44.720241,-116.054858
-83616=43.775559,-116.394918
-83617=43.936819,-116.505193
-83619=43.966099,-116.910257
-83622=44.101355,-115.884587
-83623=43.082032,-115.392631
-83624=42.904725,-116.154826
-83626=43.667499,-116.832129
-83627=42.917840,-115.547313
-83628=43.595444,-116.985621
-83629=43.911871,-116.130418
-83631=43.865155,-115.639901
-83632=44.540010,-116.412891
-83633=43.014599,-115.204966
-83634=43.455641,-116.328540
-83636=43.906826,-116.659398
-83637=44.109504,-115.249568
-83638=45.067183,-115.965680
-83639=43.397377,-116.866526
-83641=43.354103,-116.584684
-83642=43.568006,-116.404411
-83643=44.630796,-116.438936
-83644=43.750958,-116.579647
-83645=44.368971,-116.583493
-83646=43.649557,-116.431756
-83647=43.400748,-115.522903
-83648=43.049579,-115.866402
-83650=42.846008,-116.676479
-83651=43.587749,-116.620338
-83654=45.100179,-116.350507
-83655=43.951249,-116.788488
-83656=43.726469,-116.799128
-83657=44.223025,-116.296435
-83660=43.797717,-116.929571
-83661=44.080716,-116.708522
-83666=43.963326,-115.975879
-83669=43.724538,-116.488810
-83670=44.018634,-116.312919
-83671=45.282312,-115.271093
-83672=44.374148,-116.957099
-83676=43.656041,-116.907523
-83677=45.080615,-115.481929
-83686=43.492217,-116.607705
-83687=43.609971,-116.529134
-83702=43.680472,-116.160137
-83703=43.665568,-116.243033
-83704=43.627161,-116.287653
-83705=43.561558,-116.214363
-83706=43.591442,-116.194224
-83709=43.551112,-116.290079
-83712=43.610535,-116.118981
-83713=43.640283,-116.333528
-83714=43.732720,-116.288769
-83716=43.546083,-115.944468
-83801=47.936835,-116.666177
-83802=47.049875,-115.571720
-83803=48.031501,-116.443566
-83804=48.045283,-116.971344
-83805=48.867051,-116.540728
-83806=46.894062,-116.361162
-83808=47.320639,-116.064352
-83809=48.063602,-116.573545
-83810=47.542489,-116.450803
-83811=48.107960,-116.138084
-83812=47.023228,-116.233587
-83813=48.085042,-116.672772
-83814=47.685687,-116.627768
-83815=47.726282,-116.789948
-83821=48.538977,-116.850647
-83822=48.179101,-116.991105
-83823=46.820935,-116.540923
-83824=47.113599,-116.910037
-83825=48.245783,-116.594634
-83826=48.976124,-116.188948
-83827=46.778329,-116.173663
-83830=47.086727,-116.364991
-83832=46.552294,-116.909567
-83833=47.509953,-116.718368
-83834=46.990843,-116.638413
-83835=47.796950,-116.660251
-83836=48.250908,-116.269126
-83837=47.506543,-116.109692
-83839=47.609496,-116.163816
-83840=48.310572,-116.515166
-83841=48.201518,-116.751107
-83842=47.444837,-116.546548
-83843=46.722245,-116.940158
-83844=46.730066,-117.014806
-83845=48.804787,-116.091394
-83846=47.480713,-115.767256
-83847=48.577859,-116.449093
-83848=48.672385,-116.891551
-83849=47.538098,-115.991959
-83850=47.454339,-116.234095
-83851=47.296877,-116.922804
-83852=48.311080,-116.543458
-83854=47.719340,-116.967308
-83855=46.994784,-116.888154
-83856=48.297327,-116.910900
-83857=46.897098,-116.796287
-83858=47.863047,-116.949403
-83860=48.180541,-116.536223
-83861=47.264602,-116.540566
-83864=48.476674,-116.514487
-83866=47.155053,-116.424772
-83867=47.512124,-115.946935
-83868=47.516307,-116.182601
-83869=47.982344,-116.892359
-83870=47.125874,-116.831523
-83871=46.741942,-116.742680
-83872=46.867496,-116.976959
-83873=47.582915,-115.843529
-83874=47.643151,-115.804991
-83876=47.457470,-116.930561
-84001=40.346686,-110.275956
-84002=40.452048,-110.306744
-84003=40.471654,-111.680590
-84004=40.508773,-111.751403
-84005=40.325116,-111.996538
-84006=40.601473,-112.117219
-84007=40.323702,-110.207858
-84010=40.867942,-111.867845
-84013=40.295924,-112.094468
-84014=40.932087,-111.884033
-84015=41.120367,-112.060760
-84017=40.929601,-111.224304
-84018=41.215208,-111.445654
-84020=40.500154,-111.869576
-84021=40.108244,-110.533742
-84022=40.391658,-112.626720
-84023=40.939026,-109.189534
-84024=41.007664,-111.447334
-84025=40.980801,-111.904831
-84026=40.282780,-109.837771
-84027=40.153826,-110.819968
-84028=41.923780,-111.412329
-84029=40.646370,-112.729081
-84031=40.564466,-110.810639
-84032=40.539413,-111.321274
-84033=40.985610,-111.501145
-84034=40.059545,-113.877811
-84035=40.353999,-109.183101
-84036=40.691541,-111.052870
-84037=41.027605,-111.950941
-84038=41.922699,-111.306214
-84039=40.479556,-109.803813
-84040=41.092343,-111.928061
-84041=41.069915,-111.981254
-84042=40.340772,-111.724517
-84043=40.410762,-111.876790
-84044=40.721150,-112.164945
-84045=40.336491,-111.911190
-84046=40.920775,-109.831095
-84047=40.615219,-111.890729
-84049=40.523642,-111.519537
-84050=41.022617,-111.676858
-84051=40.389463,-110.427015
-84052=40.166547,-109.997558
-84053=40.454672,-110.010158
-84054=40.838866,-111.917284
-84055=40.709586,-111.209629
-84056=41.129127,-111.991930
-84057=40.314277,-111.710402
-84058=40.287743,-111.727923
-84060=40.652346,-111.501928
-84061=40.764258,-111.321133
-84062=40.441154,-111.670450
-84063=39.849587,-109.680896
-84064=41.679273,-111.137731
-84065=40.493860,-111.943722
-84066=40.328260,-110.026773
-84067=41.171050,-112.048138
-84069=40.389907,-112.520686
-84070=40.577101,-111.889046
-84071=40.393861,-112.307126
-84072=40.355408,-110.660309
-84073=40.354653,-110.434844
-84074=40.556201,-112.265744
-84075=41.080987,-112.080698
-84076=40.466458,-109.845533
-84078=40.627601,-109.480061
-84080=40.100245,-112.429915
-84081=40.602795,-112.037616
-84082=40.365808,-111.395303
-84083=40.815562,-113.569073
-84084=40.622887,-111.964564
-84085=40.590702,-109.952164
-84086=41.473679,-111.233054
-84087=40.884929,-111.932247
-84088=40.595163,-111.960908
-84092=40.554151,-111.706264
-84093=40.594774,-111.828533
-84094=40.571875,-111.862136
-84095=40.557499,-111.979453
-84096=40.515787,-112.102309
-84097=40.304832,-111.673117
-84098=40.733685,-111.533313
-84101=40.756383,-111.900062
-84102=40.760250,-111.864386
-84103=40.795080,-111.842571
-84104=40.749441,-111.981537
-84105=40.738309,-111.859559
-84106=40.706763,-111.855656
-84107=40.658025,-111.884450
-84108=40.808501,-111.729043
-84109=40.705812,-111.704544
-84111=40.755959,-111.883983
-84112=40.765074,-111.841491
-84113=40.764641,-111.833511
-84115=40.714497,-111.892687
-84116=40.802748,-111.957032
-84117=40.661033,-111.834700
-84118=40.653522,-112.013415
-84119=40.700258,-111.946425
-84120=40.697476,-112.001240
-84121=40.613033,-111.663944
-84123=40.658888,-111.921624
-84124=40.677205,-111.813271
-84128=40.700450,-112.046772
-84144=40.768260,-111.892525
-84180=40.770444,-111.901105
-84301=41.608192,-112.130121
-84302=41.553593,-112.050764
-84304=41.819497,-111.997798
-84305=41.944033,-112.075561
-84306=41.784766,-112.053817
-84307=41.458619,-112.505296
-84308=41.967243,-112.009131
-84309=41.714107,-112.098566
-84310=41.335665,-111.847402
-84311=41.823670,-112.116013
-84312=41.777285,-112.156085
-84313=41.660143,-113.962312
-84314=41.648337,-112.092803
-84315=41.167508,-112.137773
-84316=41.770965,-112.484431
-84317=41.307999,-111.620061
-84318=41.802539,-111.813693
-84319=41.606288,-111.663276
-84320=41.965179,-111.845797
-84321=41.717722,-111.836493
-84324=41.487841,-111.952660
-84325=41.724760,-111.988952
-84326=41.670640,-111.817816
-84327=41.869888,-111.992929
-84328=41.545839,-111.834777
-84329=41.760498,-113.418857
-84330=41.926060,-112.163257
-84331=41.948447,-112.273634
-84332=41.699946,-111.812133
-84333=41.907231,-111.812116
-84334=41.782587,-112.147640
-84335=41.836112,-111.874843
-84336=41.912978,-112.770604
-84337=41.765101,-112.317414
-84338=41.913948,-111.940640
-84339=41.626019,-111.946203
-84340=41.363536,-112.036066
-84341=41.775539,-111.806655
-84401=41.212012,-112.034564
-84403=41.214990,-111.889587
-84404=41.269473,-112.117645
-84405=41.156796,-111.965799
-84414=41.321964,-111.976133
-84501=39.546389,-110.757509
-84511=37.585845,-109.407800
-84512=37.094107,-109.618182
-84513=39.237674,-111.014473
-84515=38.974840,-109.130376
-84516=39.142987,-111.068844
-84518=39.388873,-110.876886
-84520=39.533055,-110.429496
-84521=39.417033,-110.762446
-84522=38.923974,-111.210953
-84523=39.093675,-111.197985
-84525=39.081441,-110.054367
-84526=39.739526,-110.936463
-84528=39.402323,-111.075783
-84529=39.679446,-110.820751
-84530=38.279836,-109.143112
-84531=37.174265,-109.883579
-84532=38.526725,-109.548649
-84533=37.564888,-110.443121
-84534=37.253519,-109.231924
-84535=37.999676,-109.557230
-84536=37.127173,-110.351269
-84537=39.330055,-111.231235
-84539=39.613451,-110.337801
-84540=39.243397,-109.435771
-84542=39.542324,-110.734989
-84601=40.226569,-111.697250
-84604=40.318660,-111.576956
-84606=40.214440,-111.625543
-84620=38.914823,-111.927685
-84621=39.050965,-111.826247
-84622=39.103831,-111.821679
-84623=39.453838,-111.588450
-84624=39.459894,-112.642706
-84626=39.904448,-111.998980
-84627=39.353160,-111.561071
-84628=39.941547,-112.131344
-84629=39.783373,-111.476408
-84630=39.287324,-111.829491
-84631=38.957618,-112.388783
-84632=39.620158,-111.658267
-84633=39.967495,-111.906770
-84634=39.158405,-111.811071
-84635=39.401963,-112.722943
-84636=39.140601,-112.338934
-84637=38.678060,-112.518082
-84638=39.512163,-112.256314
-84639=39.507669,-111.900088
-84640=39.496888,-112.388639
-84642=39.286221,-111.618891
-84643=39.115164,-111.712850
-84645=39.835528,-111.843671
-84646=39.541055,-111.608795
-84647=39.541107,-111.415821
-84648=39.685805,-111.864491
-84649=39.344436,-112.329197
-84651=39.958215,-111.715417
-84652=39.016903,-111.868223
-84653=40.026902,-111.644209
-84654=38.876439,-111.670908
-84655=39.971313,-111.806820
-84656=39.135599,-112.068388
-84657=38.818586,-111.938937
-84660=40.121268,-111.695542
-84662=39.429470,-111.471926
-84663=40.165628,-111.495076
-84664=40.115107,-111.565116
-84665=39.195679,-111.670247
-84667=39.500342,-111.664821
-84701=38.601244,-111.698403
-84710=37.482451,-112.477749
-84711=38.669902,-112.022656
-84712=37.992535,-111.931912
-84713=38.322179,-112.650931
-84714=37.848004,-113.724295
-84715=38.290116,-111.548784
-84716=37.944390,-111.442260
-84718=37.539582,-112.045105
-84719=37.672573,-112.810350
-84720=37.590627,-113.190988
-84721=37.770340,-113.078614
-84722=37.457577,-113.605393
-84723=38.180066,-112.252461
-84724=38.675277,-112.148888
-84725=37.540352,-113.780206
-84726=37.739286,-111.588150
-84728=39.295173,-113.906591
-84729=37.363138,-112.658709
-84730=38.736308,-112.019380
-84731=38.252722,-112.853374
-84732=38.445402,-111.902311
-84733=37.259209,-113.774912
-84734=38.305338,-110.652037
-84735=37.640601,-112.430772
-84736=37.549888,-111.998168
-84737=37.044712,-113.206012
-84738=37.174278,-113.706271
-84739=38.629228,-112.206129
-84740=38.297847,-112.259251
-84741=37.187126,-112.249416
-84742=37.540108,-113.208030
-84743=38.174184,-112.138463
-84744=38.620207,-111.943044
-84745=37.231638,-113.244595
-84746=37.242791,-113.356161
-84747=38.406572,-111.643882
-84749=38.431025,-111.529071
-84750=38.438672,-112.192102
-84751=38.383423,-112.927663
-84752=38.186802,-112.872652
-84753=37.995219,-113.817319
-84754=38.624378,-112.108864
-84755=37.229667,-112.770291
-84756=37.574205,-113.569120
-84757=37.459324,-113.263511
-84758=37.318801,-112.722460
-84759=37.906609,-112.399422
-84760=37.954970,-112.669165
-84761=37.875242,-112.848443
-84762=37.480078,-112.728815
-84763=37.142288,-113.070534
-84764=37.611132,-112.153475
-84765=37.125774,-113.675615
-84766=38.576348,-112.317073
-84767=37.236992,-112.986607
-84770=37.185988,-113.609694
-84772=37.774202,-112.937701
-84773=38.225726,-111.341096
-84774=37.290432,-113.281225
-84775=37.933914,-110.949416
-84776=37.635599,-112.077341
-84779=37.334886,-113.122148
-84780=37.125867,-113.494351
-84781=37.411550,-113.462096
-84782=37.348824,-113.664454
-84783=37.240187,-113.700847
-84784=37.025334,-112.963890
-84790=37.044186,-113.577299
-85003=33.450662,-112.078353
-85004=33.451567,-112.069886
-85006=33.465234,-112.048771
-85007=33.447614,-112.090883
-85008=33.462954,-111.985178
-85009=33.443097,-112.128136
-85012=33.507577,-112.070981
-85013=33.511087,-112.084749
-85014=33.507223,-112.057690
-85015=33.508664,-112.102018
-85016=33.511517,-112.019166
-85017=33.508782,-112.123068
-85018=33.505956,-111.985386
-85019=33.508879,-112.144514
-85020=33.567351,-112.053591
-85021=33.559421,-112.092875
-85022=33.627240,-112.048414
-85023=33.635109,-112.093768
-85024=33.736104,-112.029599
-85027=33.679761,-112.092529
-85028=33.575740,-112.008409
-85029=33.594738,-112.109861
-85031=33.493971,-112.166926
-85032=33.625920,-112.002503
-85033=33.492969,-112.209757
-85034=33.429580,-112.014097
-85035=33.471449,-112.194732
-85037=33.486707,-112.268258
-85040=33.406479,-112.025469
-85041=33.385930,-112.110307
-85042=33.369197,-112.043510
-85043=33.431905,-112.196998
-85044=33.352957,-112.019082
-85045=33.298893,-112.105877
-85048=33.312552,-112.057185
-85050=33.682738,-111.998063
-85051=33.558659,-112.132418
-85053=33.629922,-112.131609
-85054=33.678536,-111.941095
-85083=33.724570,-112.158548
-85085=33.750815,-112.090632
-85086=33.816137,-112.119971
-85087=33.924598,-112.126882
-85118=33.401783,-111.351777
-85119=33.409686,-111.501960
-85120=33.402386,-111.567878
-85121=33.144406,-111.922207
-85122=32.917126,-111.744208
-85123=32.715299,-111.697714
-85128=32.989934,-111.537957
-85131=32.672511,-111.547278
-85132=32.926782,-111.215097
-85135=33.003771,-110.785507
-85137=33.136377,-111.022570
-85138=33.007626,-111.989532
-85139=32.979987,-112.144852
-85140=33.244531,-111.543812
-85141=32.643001,-111.437094
-85142=33.199990,-111.636294
-85143=33.158661,-111.519050
-85145=32.545998,-111.347585
-85147=33.129087,-111.733471
-85172=32.883352,-111.953433
-85173=33.270163,-111.123285
-85192=32.962942,-110.678531
-85193=32.802816,-111.818167
-85194=32.901108,-111.628056
-85201=33.433545,-111.850400
-85202=33.379757,-111.875018
-85203=33.450359,-111.802894
-85204=33.395720,-111.786608
-85205=33.432420,-111.718512
-85206=33.396296,-111.717019
-85207=33.454586,-111.637972
-85208=33.403307,-111.628063
-85209=33.375450,-111.638670
-85210=33.389733,-111.843505
-85212=33.322324,-111.635342
-85213=33.448733,-111.769015
-85215=33.511896,-111.579396
-85224=33.323672,-111.878461
-85225=33.317448,-111.830487
-85226=33.252249,-112.010268
-85233=33.353505,-111.811432
-85234=33.361667,-111.741003
-85248=33.214955,-111.869973
-85249=33.224956,-111.795717
-85250=33.534451,-111.887354
-85251=33.493513,-111.919239
-85253=33.544833,-111.957563
-85254=33.615485,-111.952235
-85255=33.668187,-111.822523
-85256=33.500584,-111.843728
-85257=33.461960,-111.916392
-85258=33.564295,-111.895881
-85259=33.601112,-111.809488
-85260=33.610739,-111.891472
-85262=33.835028,-111.806018
-85263=33.839569,-111.523548
-85264=33.635113,-111.532284
-85266=33.766460,-111.918051
-85268=33.606089,-111.743277
-85281=33.427440,-111.934004
-85282=33.393984,-111.932906
-85283=33.364638,-111.931604
-85284=33.338295,-111.934644
-85286=33.271981,-111.831774
-85295=33.303241,-111.741807
-85296=33.332328,-111.749802
-85297=33.277771,-111.731454
-85298=33.241186,-111.726727
-85301=33.535011,-112.181933
-85302=33.568090,-112.178089
-85303=33.532699,-112.221063
-85304=33.599739,-112.178276
-85305=33.531745,-112.256093
-85306=33.624556,-112.176589
-85307=33.539828,-112.314451
-85308=33.660382,-112.184964
-85309=33.535476,-112.376673
-85310=33.707649,-112.159214
-85320=33.910187,-113.209957
-85321=32.237753,-112.653302
-85322=33.159109,-112.872034
-85323=33.419233,-112.326866
-85324=34.119191,-112.044271
-85325=33.992347,-113.911284
-85326=33.293755,-112.590514
-85328=33.252625,-114.620354
-85331=33.878890,-111.912687
-85332=34.181110,-112.904743
-85333=33.022104,-113.283539
-85334=33.516572,-114.516407
-85335=33.592283,-112.327691
-85336=32.548757,-114.788734
-85337=32.964032,-112.704343
-85338=33.372975,-112.410829
-85339=33.237666,-112.158587
-85340=33.515827,-112.414041
-85341=31.879191,-112.798973
-85342=33.944549,-112.451374
-85343=33.337498,-112.685719
-85344=34.080654,-114.216239
-85345=33.573244,-112.245852
-85346=33.635982,-114.145877
-85347=32.797510,-113.789648
-85348=33.714236,-113.721274
-85349=32.508824,-114.743975
-85350=32.561218,-114.693547
-85351=33.605791,-112.284060
-85352=32.719378,-113.839479
-85353=33.417511,-112.276974
-85354=33.430339,-113.046090
-85355=33.576119,-112.454619
-85356=32.689010,-114.162214
-85357=34.020672,-113.450652
-85360=34.739430,-113.464036
-85361=33.764116,-112.614597
-85362=34.279917,-112.834716
-85363=33.584969,-112.304916
-85364=32.702260,-114.658013
-85365=33.096439,-114.125340
-85367=32.671715,-114.395516
-85371=33.828542,-114.375841
-85373=33.671423,-112.299656
-85374=33.640996,-112.378330
-85375=33.685809,-112.366168
-85377=33.823195,-111.913378
-85379=33.603091,-112.369109
-85381=33.609172,-112.230381
-85382=33.654291,-112.249474
-85383=33.807403,-112.251970
-85387=33.709497,-112.450960
-85388=33.602322,-112.432071
-85390=33.903622,-112.875667
-85392=33.477580,-112.308889
-85395=33.478693,-112.395249
-85396=33.527803,-112.701269
-85501=33.559004,-110.769126
-85530=33.065174,-110.199648
-85531=32.884109,-109.790074
-85533=33.353944,-109.405783
-85534=32.753782,-109.141655
-85535=32.986470,-109.912689
-85536=33.120651,-110.015939
-85539=33.340635,-110.897224
-85540=33.002890,-109.381548
-85541=34.194537,-111.304309
-85542=33.324677,-110.310846
-85543=32.978573,-109.989395
-85544=34.303856,-111.561133
-85545=33.564981,-111.140637
-85546=32.813752,-109.355230
-85550=33.579645,-110.452417
-85551=32.724329,-109.588476
-85552=32.819951,-109.770830
-85553=33.847223,-111.186589
-85554=33.976652,-110.960344
-85601=31.588675,-111.314798
-85602=32.167495,-110.411875
-85603=31.432669,-109.919056
-85605=32.302812,-109.481523
-85606=32.042554,-109.898983
-85607=31.520779,-109.379220
-85608=31.456911,-109.580936
-85609=32.069297,-110.096907
-85610=31.727823,-109.733523
-85611=31.665168,-110.510286
-85613=31.567873,-110.376844
-85614=31.814301,-110.919400
-85615=31.402633,-110.211724
-85616=31.701994,-110.322654
-85617=31.519624,-109.708593
-85618=32.719708,-110.538094
-85619=32.407525,-110.733150
-85620=31.337282,-109.941325
-85621=31.387978,-110.912001
-85622=31.826851,-111.075511
-85623=32.706246,-110.805211
-85624=31.504971,-110.692999
-85625=31.887070,-109.614806
-85626=31.357810,-109.566679
-85627=32.007786,-110.235541
-85629=31.917849,-111.019049
-85630=31.886572,-110.181047
-85631=32.590911,-110.551269
-85632=32.093587,-109.133232
-85633=31.612902,-111.503060
-85634=32.034496,-111.994430
-85635=31.571011,-110.170235
-85637=31.719466,-110.690851
-85638=31.716172,-110.051604
-85640=31.557231,-111.047704
-85641=32.049048,-110.622850
-85643=32.407245,-109.965490
-85645=31.686279,-111.160631
-85646=31.647318,-110.940689
-85648=31.490441,-111.038096
-85650=31.500707,-110.201835
-85653=32.398790,-111.386333
-85654=32.415256,-111.154410
-85658=32.551052,-111.143446
-85701=32.216958,-110.970999
-85704=32.339420,-110.984997
-85705=32.271329,-110.993712
-85706=32.147619,-110.933338
-85707=32.179204,-110.886913
-85708=32.181923,-110.866407
-85710=32.214135,-110.823725
-85711=32.215235,-110.883394
-85712=32.252886,-110.886567
-85713=32.194570,-111.014995
-85714=32.167395,-110.950864
-85715=32.246722,-110.836178
-85716=32.241540,-110.923201
-85718=32.333304,-110.916607
-85719=32.246719,-110.948657
-85723=32.180232,-110.965154
-85724=32.240828,-110.945636
-85726=32.204728,-110.945598
-85730=32.181544,-110.746552
-85735=32.094109,-111.349265
-85736=31.909842,-111.364423
-85737=32.414615,-110.946561
-85739=32.621072,-110.989667
-85741=32.335291,-111.041759
-85742=32.393721,-111.065397
-85743=32.302273,-111.181848
-85745=32.253908,-111.080140
-85746=32.091610,-111.044294
-85747=32.094967,-110.765438
-85748=32.218928,-110.752110
-85749=32.289584,-110.733528
-85750=32.300129,-110.835996
-85755=32.468251,-110.981438
-85756=32.079259,-110.898921
-85757=32.128517,-111.122058
-85901=34.314806,-110.024014
-85911=34.173052,-110.367333
-85912=34.434763,-109.898703
-85920=33.861920,-109.177010
-85922=33.467569,-109.150827
-85923=34.324960,-110.340559
-85924=34.566622,-109.672357
-85925=34.088110,-109.322992
-85926=33.769253,-109.979275
-85927=34.006428,-109.464249
-85928=34.545363,-110.551182
-85929=34.184683,-109.939822
-85930=34.047324,-109.720674
-85931=34.370005,-110.915647
-85932=33.953341,-109.213499
-85933=34.357093,-110.509263
-85934=34.300249,-110.245734
-85935=34.119928,-109.896691
-85936=34.652683,-109.268741
-85937=34.573702,-110.064102
-85938=34.149301,-109.336532
-85939=34.431429,-110.085261
-85940=34.251663,-109.682257
-85941=33.821391,-109.969827
-85942=34.735705,-109.954702
-86001=35.287661,-111.639303
-86003=35.189708,-111.224015
-86004=35.380939,-111.373463
-86011=35.180062,-111.655035
-86015=35.231565,-111.840210
-86016=35.752462,-111.641148
-86017=34.889056,-111.626153
-86018=35.188711,-111.916131
-86020=35.992798,-111.497817
-86021=36.972279,-113.024318
-86022=36.856316,-112.836996
-86023=36.033131,-112.022616
-86024=34.668857,-111.312066
-86025=34.930781,-110.104808
-86028=35.073743,-109.764592
-86029=35.021012,-109.992631
-86030=35.968491,-110.730472
-86031=35.386597,-110.051698
-86032=35.079610,-110.283924
-86033=36.675775,-110.228223
-86034=35.794204,-110.125868
-86035=35.456718,-110.944184
-86036=36.738246,-111.823136
-86038=34.984363,-111.429984
-86039=36.055803,-110.525216
-86040=36.705496,-111.427538
-86042=35.861758,-110.384151
-86043=35.809701,-110.533441
-86044=36.693191,-110.810271
-86045=36.096446,-111.116416
-86046=35.415916,-112.124547
-86047=35.113436,-110.671248
-86052=36.147232,-112.030212
-86053=36.735052,-111.055195
-86054=36.724637,-110.612172
-86301=34.587023,-112.429033
-86303=34.482405,-112.449649
-86305=34.864326,-112.911764
-86313=34.553602,-112.452420
-86314=34.625990,-112.306211
-86315=34.703438,-112.270167
-86320=35.346130,-112.645484
-86321=34.492831,-113.103111
-86322=34.500279,-111.801158
-86323=34.778347,-112.407143
-86324=34.857441,-112.120427
-86325=34.734563,-111.897926
-86326=34.700031,-112.023634
-86327=34.571319,-112.105020
-86329=34.471629,-112.224998
-86331=34.726842,-112.143872
-86332=34.320536,-112.632932
-86333=34.323041,-112.081970
-86334=34.949042,-112.544560
-86335=34.694723,-111.673152
-86336=34.909886,-111.867252
-86337=35.359789,-113.031101
-86338=34.581751,-112.753836
-86343=34.176983,-112.299986
-86351=34.778447,-111.785069
-86401=35.131719,-113.703932
-86403=34.480257,-114.348504
-86404=34.590050,-114.307833
-86406=34.423236,-114.109863
-86409=35.461006,-114.018060
-86411=35.544283,-113.752570
-86413=35.210542,-114.346048
-86426=35.007773,-114.569324
-86429=35.163628,-114.484927
-86431=35.415566,-114.219820
-86432=36.366634,-113.446572
-86433=34.917564,-114.348809
-86434=35.676651,-113.620551
-86435=36.044172,-112.903890
-86436=34.757087,-114.385008
-86437=35.378850,-113.614085
-86438=34.548925,-113.805421
-86440=34.896684,-114.525311
-86441=35.571438,-114.372386
-86442=35.089613,-114.560868
-86443=35.948754,-114.444872
-86444=35.897037,-114.047212
-86445=35.776342,-114.502374
-86502=35.217949,-109.591862
-86503=36.153428,-109.685341
-86504=35.932269,-109.135461
-86505=35.623754,-109.706962
-86506=35.358053,-109.220401
-86507=36.410449,-109.264055
-86508=35.329488,-109.095582
-86510=36.257984,-110.220374
-86511=35.550101,-109.153663
-86512=35.095074,-109.243165
-86514=36.880257,-109.332878
-86515=35.679250,-108.954226
-86520=36.109913,-109.935612
-86535=36.794027,-109.855226
-86538=36.402224,-109.596407
-86540=35.941437,-109.443978
-86544=36.619478,-109.164204
-86545=36.711413,-109.606619
-86547=36.512528,-109.494082
-86556=36.288406,-109.255418
-87001=35.376617,-106.337081
-87002=34.611886,-106.652175
-87004=35.368871,-106.597292
-87005=35.267708,-107.977042
-87006=34.489728,-106.843685
-87007=35.024094,-107.509119
-87008=35.119938,-106.406994
-87010=35.408290,-106.129828
-87011=34.063668,-105.946918
-87012=36.127248,-106.651618
-87013=35.931703,-107.367228
-87014=35.230813,-107.390449
-87015=35.076689,-106.182537
-87016=34.806200,-105.955483
-87017=36.317041,-106.765493
-87018=36.165554,-107.563530
-87020=34.865250,-107.947956
-87021=35.192842,-107.878884
-87022=34.901663,-106.702725
-87023=34.599196,-106.758388
-87024=35.672858,-106.723238
-87025=35.841342,-106.628405
-87026=34.965327,-107.233587
-87027=36.126267,-106.947982
-87028=34.379610,-106.767080
-87029=36.396633,-106.998517
-87031=34.691701,-107.017993
-87032=34.851278,-106.011454
-87034=34.776465,-107.564562
-87035=34.915650,-105.953249
-87036=34.397914,-106.243612
-87037=36.167594,-107.763557
-87038=35.087627,-107.412347
-87040=35.103875,-107.384409
-87041=35.685834,-106.334346
-87042=34.828008,-106.686591
-87043=35.275451,-106.462126
-87044=35.665488,-106.644275
-87045=35.351817,-108.088619
-87046=36.251145,-106.912108
-87047=35.250846,-106.288772
-87048=35.239583,-106.627078
-87049=35.113635,-107.596844
-87051=35.036407,-107.852784
-87052=35.493750,-106.313750
-87053=35.632313,-107.019619
-87056=35.183058,-105.875931
-87059=34.996756,-106.300636
-87061=34.731143,-106.379632
-87062=34.440031,-106.658818
-87063=34.554979,-105.890558
-87064=36.179253,-106.580980
-87068=34.861034,-106.587187
-87070=35.021835,-105.777997
-87072=35.607030,-106.396834
-87083=35.648474,-106.342760
-87102=35.081357,-106.646575
-87104=35.103183,-106.675548
-87105=34.977206,-106.608153
-87106=35.057863,-106.620735
-87107=35.137800,-106.642543
-87108=35.072479,-106.578362
-87109=35.152882,-106.575536
-87110=35.108194,-106.578147
-87111=35.143913,-106.487460
-87112=35.100609,-106.516275
-87113=35.180966,-106.593627
-87114=35.193640,-106.685666
-87116=35.063087,-106.542538
-87117=35.008492,-106.563864
-87120=35.140539,-106.760969
-87121=35.089170,-106.871772
-87122=35.191009,-106.501625
-87123=35.067584,-106.470746
-87124=35.268498,-106.783682
-87144=35.325200,-106.705446
-87301=35.534984,-108.737949
-87305=35.379272,-108.803555
-87310=35.805114,-108.539632
-87311=35.606670,-108.515625
-87312=35.422601,-108.323010
-87313=35.804463,-108.078837
-87315=34.766798,-108.684918
-87316=35.361580,-108.377198
-87317=35.587549,-108.761044
-87319=35.470996,-108.949349
-87320=35.807856,-108.876102
-87321=35.008846,-108.361162
-87322=35.526034,-108.653130
-87323=35.457714,-108.193532
-87325=35.993895,-108.614262
-87326=35.261798,-108.821443
-87327=35.005278,-108.781728
-87328=35.978740,-108.981282
-87347=35.427243,-108.446455
-87357=34.907890,-108.296747
-87364=36.141420,-108.698339
-87375=35.676177,-108.758564
-87401=36.740321,-108.178691
-87402=36.783848,-108.144001
-87410=36.868277,-107.882308
-87412=36.697866,-107.475530
-87413=36.415501,-107.978520
-87415=36.817310,-108.094079
-87416=36.705214,-108.429080
-87417=36.748725,-108.345707
-87418=36.950686,-108.150215
-87419=36.864723,-107.492391
-87420=36.851252,-108.898429
-87421=36.766163,-108.512958
-87455=36.331258,-108.656457
-87461=36.328642,-108.945467
-87499=36.344524,-108.215832
-87501=35.744137,-105.856809
-87505=35.616964,-105.877135
-87506=35.813114,-105.984455
-87507=35.595449,-106.109399
-87508=35.527445,-105.968750
-87510=36.282896,-106.411988
-87511=36.105695,-105.930245
-87512=36.923537,-105.343500
-87513=36.579582,-105.687330
-87514=36.541237,-105.525200
-87515=36.497233,-106.393396
-87516=36.153554,-106.463052
-87517=36.394847,-105.787584
-87518=36.508220,-106.562067
-87519=36.769912,-105.627938
-87520=36.875021,-106.627345
-87521=36.017328,-105.612977
-87522=35.930826,-105.789765
-87523=36.013638,-105.842711
-87524=36.932428,-105.672292
-87525=36.569317,-105.456851
-87527=36.151131,-105.838262
-87528=36.671546,-106.983307
-87529=36.470055,-105.622837
-87530=36.348839,-106.191469
-87531=36.246711,-105.839533
-87532=35.993867,-106.088977
-87533=36.024269,-106.066584
-87535=35.528723,-105.747700
-87537=36.052227,-106.188827
-87538=35.494523,-105.571254
-87539=36.376682,-106.043173
-87540=35.450199,-105.907902
-87543=36.107035,-105.661206
-87544=35.840713,-106.288090
-87548=36.172397,-106.137834
-87549=36.237098,-106.009074
-87551=36.694598,-106.669448
-87552=35.646149,-105.601579
-87553=36.214889,-105.687472
-87554=36.482898,-106.018670
-87556=36.785506,-105.479969
-87557=36.294337,-105.683593
-87558=36.640211,-105.428066
-87560=35.236716,-105.526282
-87562=35.416830,-105.684475
-87564=36.607972,-105.627890
-87565=35.413824,-105.489881
-87566=36.072232,-106.068631
-87567=35.993887,-106.020215
-87569=35.346377,-105.300633
-87571=36.395980,-105.442212
-87573=35.789375,-105.685656
-87574=35.821660,-105.899105
-87575=36.740095,-106.370823
-87577=36.669699,-106.011107
-87578=36.047441,-105.770114
-87579=36.094585,-105.563366
-87580=36.570074,-105.565783
-87581=36.513478,-106.139631
-87582=36.156349,-106.016092
-87583=35.231348,-105.336283
-87701=35.542113,-104.933487
-87710=36.371360,-105.248496
-87711=35.228874,-105.105156
-87712=35.850481,-105.182856
-87713=36.167125,-105.364871
-87714=36.390053,-104.909528
-87715=36.017058,-105.429042
-87718=36.599808,-105.291885
-87722=36.191910,-105.261015
-87723=36.058744,-105.375578
-87724=35.173363,-105.077485
-87728=36.596537,-104.619084
-87729=36.303483,-104.817969
-87730=36.153001,-104.214447
-87731=35.759712,-105.412669
-87732=35.957974,-105.364302
-87733=35.859580,-103.851495
-87734=36.178410,-105.115285
-87735=36.069461,-105.153162
-87736=35.980449,-105.197076
-87740=36.749268,-104.407369
-87742=35.902351,-105.510938
-87743=35.973565,-104.090814
-87745=35.810926,-105.213646
-87746=35.776068,-104.046894
-87747=36.356194,-104.471772
-87749=36.544991,-105.104000
-87750=35.825334,-104.927204
-87752=36.021594,-104.649986
-87753=35.863313,-104.954298
-87801=34.127211,-106.826187
-87820=33.937649,-108.586820
-87821=33.979953,-108.062501
-87823=34.206720,-106.985923
-87824=33.828581,-108.981719
-87825=33.877340,-107.656211
-87827=34.406825,-108.096748
-87828=34.205853,-106.916719
-87829=34.354142,-108.647026
-87830=33.727127,-108.744042
-87831=34.264803,-106.932923
-87832=33.766896,-106.821217
-87901=33.215964,-107.095436
-87930=32.850682,-107.443572
-87931=32.953468,-107.426840
-87933=32.790182,-107.277937
-87935=33.254803,-107.229274
-87936=32.752827,-107.263614
-87937=32.591271,-107.195218
-87939=33.412677,-107.488567
-87940=32.621516,-107.006541
-87941=32.720691,-107.219612
-87942=33.060988,-107.348920
-87943=33.369427,-107.781385
-88001=32.290051,-106.753890
-88002=32.462947,-106.486158
-88003=32.280653,-106.745944
-88004=32.223096,-106.987431
-88005=32.258348,-106.823126
-88007=32.441109,-106.921281
-88008=31.839376,-106.681803
-88009=31.995969,-108.574554
-88011=32.322443,-106.656276
-88012=32.583386,-106.771377
-88020=31.772410,-108.839423
-88021=31.951887,-107.016272
-88022=32.808002,-108.176468
-88023=32.729733,-108.144578
-88024=32.070555,-106.639411
-88025=33.046806,-108.743448
-88026=32.751993,-108.162999
-88027=32.044128,-106.789582
-88028=32.932820,-108.635947
-88029=31.844879,-107.694722
-88030=32.173456,-107.727419
-88032=32.399562,-106.818772
-88033=32.319619,-107.028854
-88034=32.613183,-107.938061
-88038=33.121970,-108.383037
-88039=33.298350,-108.803283
-88040=31.597231,-108.354977
-88041=32.789921,-107.912182
-88042=32.812478,-107.578383
-88043=32.610316,-108.100096
-88044=32.147978,-106.805850
-88045=32.385089,-108.756093
-88046=32.250023,-106.802264
-88047=32.210044,-106.714691
-88048=32.163447,-106.660086
-88049=33.030905,-107.924734
-88051=32.999584,-108.919849
-88052=32.425362,-106.599422
-88053=32.902502,-108.205925
-88055=32.727788,-108.740985
-88056=31.844206,-108.982524
-88061=32.654196,-108.333572
-88063=31.817988,-106.599103
-88065=32.677476,-108.328877
-88072=32.138064,-106.616106
-88081=32.231242,-106.230568
-88101=34.499384,-103.275272
-88103=34.384167,-103.317985
-88112=34.843131,-103.178639
-88113=33.772019,-103.085190
-88114=33.523572,-103.199375
-88115=33.930877,-103.345497
-88116=33.915700,-103.878832
-88118=34.229541,-103.689486
-88119=34.308727,-104.411349
-88120=34.792594,-103.355142
-88121=34.714629,-103.980644
-88124=34.543377,-103.651819
-88125=33.705861,-103.225418
-88126=33.811266,-103.372019
-88130=34.129177,-103.299416
-88132=33.907313,-103.166773
-88134=34.323093,-104.018715
-88135=34.586393,-103.099611
-88136=34.463365,-104.740642
-88201=33.643275,-104.396622
-88203=33.309413,-104.092418
-88210=32.771797,-104.219669
-88220=32.311474,-104.431928
-88230=33.219170,-104.397563
-88231=32.451909,-103.262771
-88232=33.067332,-104.475568
-88240=32.703782,-103.485066
-88242=32.812891,-103.161782
-88250=32.701984,-104.955846
-88252=32.155238,-103.378041
-88253=32.934663,-104.626361
-88254=32.613320,-104.451824
-88255=32.814203,-103.996454
-88256=32.198065,-103.908039
-88260=32.991328,-103.381536
-88262=33.118535,-103.403252
-88263=32.097875,-104.081596
-88264=32.890906,-103.711801
-88265=32.620437,-103.302862
-88267=33.337444,-103.425219
-88268=32.176279,-104.379455
-88301=33.778555,-105.790679
-88310=32.641272,-106.072883
-88311=32.812102,-105.990607
-88312=33.421648,-105.737988
-88314=33.110328,-105.867199
-88316=33.797656,-105.322893
-88317=32.923929,-105.636789
-88318=34.207102,-105.396938
-88321=34.780375,-105.446147
-88323=33.494700,-105.527555
-88324=33.389780,-105.439082
-88325=32.856605,-105.858378
-88330=32.836586,-106.077393
-88336=33.330548,-105.276501
-88337=32.996694,-105.884699
-88338=33.473983,-105.399467
-88339=32.961786,-105.231031
-88340=33.176135,-105.583242
-88341=33.474146,-105.845301
-88342=32.388607,-106.111770
-88343=33.225921,-105.077180
-88344=32.558726,-105.292481
-88345=33.347759,-105.680834
-88346=33.353800,-105.540075
-88347=32.756185,-105.657681
-88348=33.396170,-105.358390
-88349=32.779443,-105.802250
-88350=32.640607,-105.678321
-88351=33.549422,-105.087715
-88352=33.165891,-105.993861
-88353=34.571355,-105.116141
-88354=32.751453,-105.498265
-88355=33.360416,-105.667375
-88401=35.119482,-103.822230
-88410=35.878428,-103.323142
-88411=35.142305,-103.148376
-88414=36.767287,-103.999599
-88415=36.311760,-103.326817
-88416=35.285771,-104.194698
-88417=35.059210,-104.376625
-88418=36.725861,-103.684739
-88419=36.899379,-103.541874
-88421=35.298352,-104.481343
-88422=36.345307,-103.991534
-88424=36.412538,-103.656438
-88426=35.543561,-103.508304
-88427=34.770502,-103.774375
-88430=35.581906,-103.179169
-88431=35.170055,-104.274806
-88434=35.152021,-103.303690
-88435=34.914545,-104.695340
-88436=36.137283,-103.123139
-89001=37.276925,-115.394121
-89002=35.998367,-114.960947
-89003=36.971364,-116.744158
-89004=36.102863,-115.487115
-89005=35.986677,-114.809401
-89007=36.666657,-114.226747
-89008=37.286087,-114.513105
-89010=37.782535,-118.074900
-89011=36.074719,-114.985309
-89012=36.011907,-115.043255
-89013=37.415175,-117.346901
-89014=36.061718,-115.058058
-89015=36.039314,-114.928032
-89017=37.744047,-115.250938
-89018=36.511372,-115.645121
-89019=35.766433,-115.735321
-89020=36.532267,-116.443610
-89021=36.640213,-114.471026
-89022=38.540993,-117.020737
-89025=36.562868,-114.885509
-89026=35.755242,-115.289723
-89027=36.813945,-114.120444
-89029=35.129221,-114.656524
-89030=36.211516,-115.124129
-89031=36.258912,-115.171788
-89032=36.223179,-115.172723
-89039=35.287951,-114.879825
-89040=36.356634,-114.578928
-89042=37.745490,-114.332372
-89043=38.255898,-114.473413
-89044=35.902434,-115.178912
-89045=38.880562,-116.968867
-89046=35.497999,-114.890260
-89047=37.765950,-117.647869
-89048=36.165343,-116.003323
-89049=38.347312,-116.259369
-89052=35.955108,-115.056693
-89054=35.927208,-115.208272
-89060=36.385724,-116.060445
-89061=36.086419,-115.898330
-89074=36.036567,-115.080932
-89081=36.257890,-115.107818
-89084=36.296920,-115.174177
-89085=36.309655,-115.198089
-89086=36.292253,-115.108590
-89101=36.172547,-115.122234
-89102=36.145430,-115.186825
-89103=36.111835,-115.211716
-89104=36.151382,-115.108648
-89106=36.181706,-115.163231
-89107=36.171241,-115.209288
-89108=36.205256,-115.223639
-89109=36.131720,-115.168382
-89110=36.171429,-115.047734
-89113=36.061152,-115.263515
-89115=36.253640,-115.041052
-89117=36.140961,-115.281091
-89118=36.077380,-115.213966
-89119=36.084721,-115.146129
-89120=36.081318,-115.095455
-89121=36.121526,-115.091277
-89122=36.106432,-115.040286
-89123=36.035206,-115.148789
-89124=36.114842,-115.613219
-89128=36.196814,-115.264363
-89129=36.233315,-115.290150
-89130=36.253975,-115.227105
-89131=36.309668,-115.249674
-89134=36.202733,-115.307750
-89135=36.100973,-115.375908
-89138=36.166612,-115.361275
-89139=36.034661,-115.211656
-89141=35.988424,-115.207059
-89142=36.147922,-115.036367
-89143=36.322319,-115.293151
-89144=36.178886,-115.320759
-89145=36.167690,-115.277862
-89146=36.143249,-115.226909
-89147=36.112796,-115.280141
-89148=36.080170,-115.297071
-89149=36.272251,-115.292534
-89156=36.163427,-114.988159
-89161=36.000360,-115.363878
-89166=36.380652,-115.506889
-89169=36.124179,-115.141282
-89178=35.997668,-115.286066
-89179=35.894539,-115.331936
-89183=35.995843,-115.157612
-89191=36.239523,-115.025695
-89301=39.540050,-114.770485
-89310=39.430542,-117.162771
-89311=38.986044,-114.200069
-89314=38.822847,-115.771955
-89316=39.827988,-115.900602
-89317=38.797901,-115.025158
-89318=39.443772,-114.810780
-89319=39.296292,-114.976004
-89402=39.223909,-120.002554
-89403=39.227192,-119.475598
-89404=41.903178,-118.668673
-89405=40.480566,-119.424671
-89406=39.537710,-118.264165
-89408=39.565417,-119.174165
-89409=38.801841,-118.110000
-89410=38.871778,-119.604207
-89411=39.019002,-119.850214
-89412=41.102934,-119.695361
-89413=39.073447,-119.922857
-89414=41.044580,-117.181049
-89415=38.480395,-118.637507
-89418=40.548280,-118.034358
-89419=40.374813,-118.189040
-89420=38.544555,-118.226681
-89421=42.049387,-117.860069
-89422=38.177630,-118.453724
-89423=39.018863,-119.755643
-89424=39.888132,-119.284126
-89425=41.633114,-117.918295
-89426=41.487947,-117.424872
-89427=38.899942,-118.645827
-89428=39.261033,-119.634642
-89429=39.324851,-119.297057
-89430=38.775090,-119.305079
-89431=39.540398,-119.749111
-89433=39.608937,-119.776657
-89434=39.541317,-119.650155
-89436=39.604161,-119.689298
-89438=40.798541,-117.093499
-89439=39.520351,-119.999800
-89440=39.296482,-119.658713
-89441=39.676372,-119.675827
-89442=39.665116,-119.426703
-89444=38.669814,-119.385630
-89445=41.169339,-118.263916
-89446=41.217004,-117.870321
-89447=38.811278,-119.131304
-89448=38.996464,-119.917493
-89449=38.955158,-119.911471
-89450=39.240488,-119.939145
-89451=39.241580,-119.934182
-89460=38.902253,-119.792493
-89501=39.525749,-119.813051
-89502=39.491314,-119.743845
-89503=39.541040,-119.840126
-89506=39.712124,-119.820815
-89508=39.780599,-119.913756
-89509=39.495806,-119.827882
-89510=40.081901,-119.612974
-89511=39.385441,-119.876909
-89512=39.550957,-119.801071
-89519=39.480704,-119.857872
-89521=39.385322,-119.692070
-89523=39.525009,-119.913718
-89701=39.129024,-119.725281
-89702=39.159107,-119.735812
-89703=39.166998,-119.839233
-89704=39.262624,-119.815832
-89705=39.111672,-119.860561
-89706=39.222699,-119.701535
-89801=41.247991,-115.761405
-89815=40.615333,-115.594252
-89820=40.411623,-116.977156
-89821=40.495361,-116.468358
-89822=40.530669,-116.193978
-89823=41.007325,-115.280794
-89825=41.876193,-114.777412
-89826=41.890603,-115.385386
-89828=40.779879,-115.296660
-89830=41.269718,-114.285932
-89831=41.715996,-116.098342
-89832=41.976489,-116.158356
-89833=40.482842,-115.331629
-89834=41.379983,-116.203471
-89835=41.114501,-114.852524
-89883=40.848920,-114.157677
-90001=33.974027,-118.249509
-90002=33.949099,-118.246737
-90003=33.964131,-118.272783
-90004=34.076198,-118.310722
-90005=34.059163,-118.306892
-90006=34.048041,-118.294177
-90007=34.028129,-118.284829
-90008=34.009552,-118.346724
-90010=34.062148,-118.315889
-90011=34.007090,-118.258681
-90012=34.065975,-118.238642
-90013=34.045405,-118.240454
-90014=34.043146,-118.251746
-90015=34.039378,-118.266300
-90016=34.028331,-118.354338
-90017=34.052913,-118.264340
-90018=34.028887,-118.317183
-90019=34.049841,-118.338460
-90020=34.066379,-118.309870
-90021=34.029036,-118.237870
-90022=34.023728,-118.156275
-90023=34.022502,-118.199613
-90024=34.065723,-118.434969
-90025=34.045421,-118.445873
-90026=34.080017,-118.262643
-90027=34.127194,-118.295647
-90028=34.099912,-118.326912
-90029=34.089848,-118.294661
-90031=34.085784,-118.206666
-90032=34.078195,-118.185501
-90033=34.050380,-118.211991
-90034=34.030578,-118.399613
-90035=34.051809,-118.383674
-90036=34.070410,-118.350411
-90037=34.002719,-118.287487
-90038=34.088475,-118.325527
-90039=34.111885,-118.261033
-90040=33.994523,-118.149952
-90041=34.137412,-118.207607
-90042=34.114708,-118.192098
-90043=33.988505,-118.336358
-90044=33.952725,-118.291904
-90045=33.942108,-118.417488
-90046=34.107810,-118.362247
-90047=33.953617,-118.308428
-90048=34.072924,-118.372710
-90049=34.092540,-118.491064
-90056=33.988047,-118.370361
-90057=34.061735,-118.276757
-90058=34.002844,-118.216400
-90059=33.926262,-118.249883
-90061=33.921280,-118.274186
-90062=34.003638,-118.308806
-90063=34.045105,-118.185914
-90064=34.037251,-118.423573
-90065=34.112272,-118.225496
-90066=34.002028,-118.430656
-90067=34.057597,-118.413998
-90068=34.129772,-118.330989
-90069=34.093828,-118.381697
-90071=34.052876,-118.254943
-90073=34.054534,-118.457025
-90077=34.108023,-118.456964
-90079=34.040587,-118.255404
-90089=34.020221,-118.286035
-90090=34.072862,-118.240989
-90094=33.975414,-118.416990
-90095=34.071200,-118.443523
-90201=33.970343,-118.171368
-90210=34.100517,-118.414712
-90211=34.064958,-118.382979
-90212=34.062210,-118.401966
-90220=33.881510,-118.234451
-90221=33.885624,-118.205918
-90222=33.912246,-118.236773
-90230=33.997862,-118.393617
-90232=34.019323,-118.391902
-90240=33.955729,-118.118346
-90241=33.940445,-118.129022
-90242=33.921793,-118.140588
-90245=33.917140,-118.404267
-90247=33.890853,-118.297967
-90248=33.878432,-118.284104
-90249=33.901390,-118.315697
-90250=33.914775,-118.348083
-90254=33.864259,-118.399303
-90255=33.979248,-118.217438
-90260=33.888560,-118.351813
-90262=33.923533,-118.200705
-90263=34.039034,-118.707992
-90265=34.066117,-118.846342
-90266=33.889151,-118.402127
-90270=33.987729,-118.186597
-90272=34.087460,-118.544232
-90274=33.780065,-118.372454
-90275=33.753155,-118.367963
-90277=33.830006,-118.387124
-90278=33.873215,-118.370360
-90280=33.944159,-118.192761
-90290=34.107753,-118.616219
-90291=33.993396,-118.465193
-90292=33.976582,-118.455222
-90293=33.947305,-118.439841
-90301=33.956526,-118.358654
-90302=33.975332,-118.355252
-90303=33.939766,-118.331085
-90304=33.937886,-118.358559
-90305=33.958890,-118.330548
-90401=34.013666,-118.493750
-90402=34.034666,-118.504039
-90403=34.030755,-118.492101
-90404=34.026608,-118.473643
-90405=34.011312,-118.469762
-90501=33.833744,-118.314022
-90502=33.833181,-118.292062
-90503=33.840398,-118.353715
-90504=33.867257,-118.330794
-90505=33.807882,-118.347957
-90506=33.884696,-118.329998
-90601=34.007840,-118.030271
-90602=33.972782,-118.022066
-90603=33.945555,-117.990719
-90604=33.927691,-118.013828
-90605=33.950295,-118.024352
-90606=33.977272,-118.066363
-90620=33.845223,-118.015292
-90621=33.874224,-117.993368
-90623=33.850616,-118.039565
-90630=33.818477,-118.038307
-90631=33.942708,-117.952483
-90638=33.902045,-118.008961
-90640=34.015444,-118.111012
-90650=33.906956,-118.082640
-90660=33.989524,-118.089299
-90670=33.933565,-118.062611
-90680=33.801191,-117.994904
-90701=33.867600,-118.080612
-90703=33.867743,-118.069472
-90704=33.399248,-118.435601
-90706=33.887821,-118.127250
-90710=33.799904,-118.298661
-90712=33.849034,-118.147902
-90713=33.847989,-118.112601
-90715=33.841027,-118.079141
-90716=33.830482,-118.073451
-90717=33.793809,-118.317170
-90720=33.795012,-118.062692
-90723=33.898883,-118.166629
-90731=33.731442,-118.278869
-90732=33.742120,-118.312878
-90740=33.758405,-118.075043
-90742=33.716666,-118.076906
-90743=33.726516,-118.090327
-90744=33.779284,-118.261723
-90745=33.822725,-118.264109
-90746=33.859171,-118.252272
-90747=33.862900,-118.251318
-90755=33.803431,-118.169770
-90802=33.745762,-118.208042
-90803=33.756289,-118.130636
-90804=33.781686,-118.148365
-90805=33.864617,-118.180567
-90806=33.805401,-118.187701
-90807=33.827740,-118.174820
-90808=33.823943,-118.111335
-90810=33.819814,-118.222416
-90813=33.782259,-118.196793
-90814=33.771616,-118.143631
-90815=33.794348,-118.116391
-90822=33.778436,-118.118648
-90831=33.768334,-118.201636
-91001=34.194489,-118.138263
-91006=34.136258,-118.026704
-91007=34.128284,-118.047732
-91008=34.153159,-117.968818
-91010=34.141586,-117.957627
-91011=34.222119,-118.205306
-91016=34.152800,-118.000482
-91020=34.211341,-118.230652
-91024=34.168771,-118.050216
-91030=34.108957,-118.156615
-91040=34.261962,-118.336078
-91042=34.322618,-118.237570
-91046=34.211452,-118.241036
-91101=34.146671,-118.139455
-91103=34.169538,-118.164941
-91104=34.165356,-118.123751
-91105=34.139460,-118.166649
-91106=34.139402,-118.128658
-91107=34.155533,-118.086178
-91108=34.122671,-118.112911
-91201=34.170510,-118.289463
-91202=34.168366,-118.267771
-91203=34.153338,-118.262974
-91204=34.136194,-118.260934
-91205=34.136580,-118.245839
-91206=34.160359,-118.213769
-91207=34.181293,-118.260277
-91208=34.185666,-118.239494
-91210=34.144557,-118.256507
-91214=34.236302,-118.249185
-91301=34.123286,-118.758541
-91302=34.123305,-118.671025
-91303=34.198292,-118.600913
-91304=34.224196,-118.632394
-91306=34.209532,-118.577563
-91307=34.200834,-118.664900
-91311=34.293338,-118.603118
-91316=34.160236,-118.515472
-91320=34.175969,-118.945127
-91321=34.368110,-118.489038
-91324=34.238208,-118.550290
-91325=34.237519,-118.517712
-91326=34.281486,-118.556005
-91330=34.247532,-118.526076
-91331=34.255442,-118.421314
-91335=34.200175,-118.540958
-91340=34.286687,-118.435080
-91342=34.326584,-118.382261
-91343=34.237912,-118.482306
-91344=34.294615,-118.507001
-91345=34.265879,-118.456748
-91350=34.440891,-118.501747
-91351=34.441596,-118.448109
-91352=34.230854,-118.365856
-91354=34.465755,-118.553789
-91355=34.439855,-118.644401
-91356=34.155097,-118.547553
-91360=34.212805,-118.882179
-91361=34.136077,-118.888919
-91362=34.193326,-118.818684
-91364=34.154040,-118.593153
-91367=34.177311,-118.615704
-91371=34.184616,-118.576125
-91377=34.184975,-118.766918
-91381=34.384697,-118.647244
-91384=34.506627,-118.699048
-91387=34.402509,-118.363427
-91390=34.545587,-118.420095
-91401=34.178483,-118.431791
-91402=34.222506,-118.444689
-91403=34.147149,-118.463365
-91405=34.199824,-118.447609
-91406=34.195685,-118.490752
-91411=34.178522,-118.459234
-91423=34.148617,-118.433298
-91436=34.149588,-118.489708
-91501=34.204400,-118.287527
-91502=34.176817,-118.309323
-91504=34.204568,-118.326365
-91505=34.173885,-118.346937
-91506=34.169706,-118.323548
-91601=34.169200,-118.372498
-91602=34.150818,-118.368159
-91604=34.140822,-118.392864
-91605=34.207341,-118.400973
-91606=34.185767,-118.388323
-91607=34.165783,-118.399795
-91608=34.138761,-118.350933
-91701=34.137564,-117.599945
-91702=34.280333,-117.866141
-91706=34.097410,-117.968269
-91708=33.952902,-117.639325
-91709=33.963723,-117.738596
-91710=34.004468,-117.684697
-91711=34.128066,-117.714773
-91722=34.097345,-117.906736
-91723=34.084747,-117.886844
-91724=34.080444,-117.854734
-91730=34.100970,-117.578820
-91731=34.078573,-118.043456
-91732=34.073420,-118.015345
-91733=34.046243,-118.053748
-91737=34.152583,-117.577707
-91739=34.172754,-117.521243
-91740=34.119367,-117.855054
-91741=34.156529,-117.841605
-91744=34.031415,-117.936470
-91745=33.999005,-117.972146
-91746=34.044416,-117.985366
-91748=33.974883,-117.900676
-91750=34.180010,-117.773939
-91752=33.996484,-117.531269
-91754=34.052922,-118.143465
-91755=34.050965,-118.114394
-91759=34.263636,-117.699470
-91761=34.035602,-117.591528
-91762=34.059410,-117.674011
-91763=34.072329,-117.698315
-91764=34.074087,-117.605618
-91765=33.986270,-117.821282
-91766=34.042286,-117.756106
-91767=34.083086,-117.737997
-91768=34.063516,-117.790379
-91770=34.065493,-118.084529
-91773=34.110186,-117.810390
-91775=34.115273,-118.088266
-91776=34.090776,-118.095091
-91780=34.102077,-118.057754
-91784=34.141146,-117.655583
-91786=34.105282,-117.662035
-91789=34.018195,-117.854821
-91790=34.066964,-117.937007
-91791=34.061624,-117.892235
-91792=34.022581,-117.902359
-91801=34.090728,-118.127527
-91803=34.074736,-118.145959
-91901=32.808563,-116.710076
-91902=32.665762,-117.018657
-91905=32.678070,-116.306851
-91906=32.654821,-116.465541
-91910=32.637868,-117.058031
-91911=32.608185,-117.054512
-91913=32.619459,-116.985820
-91914=32.674004,-116.943932
-91915=32.623185,-116.949053
-91916=32.887989,-116.621354
-91917=32.608865,-116.719660
-91931=32.846363,-116.557729
-91932=32.573755,-117.120872
-91934=32.648992,-116.152565
-91935=32.721919,-116.788204
-91941=32.759333,-116.997247
-91942=32.777999,-117.021511
-91945=32.733168,-117.034176
-91948=32.866646,-116.448325
-91950=32.670646,-117.094668
-91962=32.735124,-116.415161
-91963=32.626231,-116.610020
-91977=32.726237,-116.994318
-91978=32.724154,-116.940093
-91980=32.588866,-116.619172
-92003=33.285274,-117.197777
-92004=33.142077,-116.106046
-92007=33.023250,-117.274923
-92008=33.147294,-117.322181
-92009=33.095470,-117.243882
-92010=33.158500,-117.277163
-92011=33.107582,-117.292182
-92014=32.963199,-117.250309
-92019=32.776012,-116.880634
-92020=32.795508,-116.969747
-92021=32.838798,-116.869956
-92024=33.056022,-117.259900
-92025=33.102005,-117.080419
-92026=33.212444,-117.116098
-92027=33.131156,-116.976997
-92028=33.390477,-117.209427
-92029=33.082400,-117.127641
-92036=33.022474,-116.493688
-92037=32.856347,-117.250058
-92040=32.908915,-116.891975
-92054=33.195534,-117.354538
-92055=33.387723,-117.444758
-92056=33.201242,-117.296984
-92057=33.254619,-117.283341
-92058=33.343438,-117.317250
-92059=33.376467,-117.066121
-92060=33.346808,-116.853215
-92061=33.298504,-116.924783
-92064=32.983606,-117.019035
-92065=33.053006,-116.850651
-92066=33.219365,-116.535247
-92067=33.020908,-117.190346
-92069=33.170775,-117.158676
-92070=33.147090,-116.717453
-92071=32.852358,-116.987842
-92075=32.997248,-117.260580
-92078=33.117154,-117.180627
-92081=33.164374,-117.240270
-92082=33.253548,-117.003366
-92083=33.197840,-117.248203
-92084=33.219935,-117.202606
-92086=33.323221,-116.665930
-92091=33.015927,-117.243517
-92101=32.724103,-117.170912
-92102=32.716220,-117.117057
-92103=32.747415,-117.166883
-92104=32.741501,-117.127948
-92105=32.737827,-117.092673
-92106=32.710818,-117.237613
-92107=32.739055,-117.245404
-92108=32.774046,-117.142454
-92109=32.786772,-117.234207
-92110=32.765244,-117.200391
-92111=32.806476,-117.168879
-92113=32.696716,-117.117881
-92114=32.707756,-117.055095
-92115=32.764998,-117.073641
-92116=32.764971,-117.123145
-92117=32.824572,-117.199518
-92118=32.699234,-117.209642
-92119=32.817888,-117.031956
-92120=32.794714,-117.071764
-92121=32.899592,-117.201203
-92122=32.861727,-117.171224
-92123=32.806794,-117.134930
-92124=32.823766,-117.092378
-92126=32.908449,-117.141380
-92127=33.011833,-117.132686
-92128=32.999818,-117.071808
-92129=32.966920,-117.126158
-92130=32.945791,-117.214366
-92131=32.886070,-117.085982
-92132=32.713608,-117.172089
-92134=32.724223,-117.146587
-92135=32.697543,-117.192775
-92139=32.679888,-117.048890
-92140=32.739496,-117.197401
-92145=32.930554,-117.008063
-92147=32.724880,-117.219962
-92154=32.557022,-117.006214
-92155=32.674984,-117.161726
-92173=32.553021,-117.042454
-92201=33.710984,-116.204844
-92203=33.753959,-116.246487
-92210=33.692217,-116.341248
-92211=33.765401,-116.334205
-92220=33.948948,-116.832362
-92222=32.785826,-114.545506
-92223=33.948255,-116.987839
-92225=33.736458,-114.687973
-92227=32.990121,-115.358757
-92230=33.910412,-116.765723
-92231=32.687552,-115.541028
-92233=33.172881,-115.553769
-92234=33.818256,-116.466743
-92236=33.686145,-116.172918
-92239=33.762149,-115.466100
-92240=33.951540,-116.520104
-92241=33.842584,-116.292900
-92242=34.163216,-114.319121
-92243=32.770197,-115.598590
-92249=32.725583,-115.472680
-92250=32.777241,-115.127641
-92251=32.881449,-115.675459
-92252=34.168333,-116.288431
-92253=33.641767,-116.273943
-92254=33.543835,-115.993906
-92256=34.077059,-116.606626
-92257=33.294274,-115.296227
-92258=33.915839,-116.559873
-92259=32.737705,-115.932200
-92260=33.708012,-116.403627
-92262=33.860925,-116.566176
-92264=33.708592,-116.497622
-92266=33.345027,-114.915942
-92267=34.273755,-114.196525
-92268=34.222079,-116.564222
-92270=33.768584,-116.429988
-92273=32.817225,-115.700076
-92274=33.460512,-116.084589
-92275=33.292095,-115.844166
-92276=33.822330,-116.364238
-92277=34.141358,-115.621168
-92278=34.229973,-116.055053
-92280=34.112956,-114.633391
-92281=33.051757,-115.608752
-92282=33.983697,-116.691398
-92283=32.891546,-114.772943
-92284=34.185894,-116.432416
-92285=34.340222,-116.540435
-92301=34.585234,-117.453724
-92304=34.541483,-115.644609
-92305=34.141671,-116.817981
-92307=34.571218,-117.133073
-92308=34.424366,-117.161295
-92309=35.332155,-116.038586
-92310=35.261460,-116.690324
-92311=34.980294,-116.964449
-92313=34.031011,-117.312929
-92314=34.261092,-116.809496
-92315=34.232796,-116.902863
-92316=34.059306,-117.390768
-92320=33.990372,-117.052255
-92321=34.253816,-117.150891
-92322=34.254361,-117.326453
-92324=34.024520,-117.289255
-92325=34.243482,-117.281304
-92327=34.863585,-116.862059
-92328=36.597809,-116.827404
-92332=34.912426,-115.342092
-92333=34.270601,-116.949309
-92335=34.085972,-117.464597
-92336=34.147718,-117.464506
-92337=34.049809,-117.470613
-92338=34.782699,-116.190564
-92339=34.093661,-116.936222
-92341=34.236643,-117.062838
-92342=34.757047,-117.350142
-92344=34.391145,-117.405722
-92345=34.376159,-117.294397
-92346=34.126779,-117.183104
-92347=34.957406,-117.219606
-92352=34.259971,-117.199381
-92354=34.051177,-117.248563
-92356=34.510646,-116.896718
-92358=34.259272,-117.520971
-92359=34.083016,-117.073317
-92363=34.894366,-114.640335
-92364=35.340420,-115.426224
-92365=34.899991,-116.654532
-92368=34.650629,-117.321326
-92371=34.442625,-117.541815
-92372=34.447894,-117.623946
-92373=34.011953,-117.159699
-92374=34.067146,-117.171885
-92376=34.111605,-117.377406
-92377=34.157763,-117.405966
-92378=34.226083,-117.225931
-92382=34.205287,-117.117403
-92384=36.007706,-116.178478
-92385=34.214740,-117.192326
-92386=34.237229,-116.827695
-92389=35.900961,-116.186357
-92391=34.237898,-117.234788
-92392=34.480247,-117.408184
-92394=34.556111,-117.353632
-92395=34.501472,-117.292048
-92397=34.374009,-117.628429
-92398=34.915880,-116.865561
-92399=34.032301,-117.010574
-92401=34.104794,-117.292150
-92404=34.177083,-117.254763
-92405=34.144618,-117.301301
-92407=34.212433,-117.381239
-92408=34.083458,-117.270016
-92410=34.107379,-117.297547
-92411=34.122501,-117.320138
-92501=33.995040,-117.373184
-92503=33.882579,-117.442303
-92504=33.903134,-117.398044
-92505=33.936193,-117.493881
-92506=33.934335,-117.367319
-92507=33.970847,-117.325120
-92508=33.891133,-117.326749
-92509=34.003266,-117.442004
-92518=33.889103,-117.278368
-92530=33.649528,-117.376774
-92532=33.692673,-117.302957
-92536=33.492391,-116.837955
-92539=33.527867,-116.647620
-92543=33.667301,-116.963506
-92544=33.648169,-116.895308
-92545=33.729853,-117.034060
-92548=33.758663,-117.109484
-92549=33.768539,-116.753396
-92551=33.882740,-117.224878
-92553=33.923381,-117.244837
-92555=33.889702,-117.113427
-92557=33.972160,-117.258409
-92561=33.637201,-116.627212
-92562=33.547613,-117.344040
-92563=33.580016,-117.147360
-92567=33.810743,-117.105415
-92570=33.787292,-117.320673
-92571=33.828396,-117.207660
-92582=33.807607,-117.015163
-92583=33.795196,-116.932856
-92584=33.652675,-117.173568
-92585=33.746707,-117.172142
-92586=33.708982,-117.198853
-92587=33.694019,-117.250341
-92590=33.482811,-117.226126
-92591=33.535277,-117.104791
-92592=33.511228,-117.042396
-92595=33.617844,-117.259304
-92596=33.665848,-117.049660
-92602=33.754048,-117.752273
-92603=33.624456,-117.781423
-92604=33.690715,-117.789224
-92606=33.705442,-117.823600
-92610=33.696122,-117.675940
-92612=33.658440,-117.826009
-92614=33.680302,-117.833295
-92617=33.642512,-117.841688
-92618=33.666942,-117.732094
-92620=33.714796,-117.749139
-92624=33.451469,-117.659056
-92625=33.601966,-117.864254
-92626=33.679591,-117.908531
-92627=33.647763,-117.919761
-92629=33.475120,-117.705675
-92630=33.645736,-117.685503
-92637=33.612925,-117.731443
-92646=33.662050,-117.968459
-92647=33.723228,-118.008692
-92648=33.679010,-118.014603
-92649=33.725240,-118.051579
-92651=33.570930,-117.773042
-92653=33.591304,-117.697512
-92655=33.745130,-117.984873
-92656=33.576212,-117.730368
-92657=33.595088,-117.829038
-92660=33.634626,-117.874882
-92661=33.601984,-117.913001
-92662=33.605086,-117.892319
-92663=33.623208,-117.933903
-92672=33.424110,-117.606775
-92673=33.467371,-117.613509
-92675=33.501860,-117.608646
-92676=33.752476,-117.612554
-92677=33.528868,-117.701175
-92678=33.680226,-117.526144
-92679=33.606695,-117.604360
-92683=33.752468,-117.993933
-92688=33.619672,-117.612087
-92691=33.611945,-117.665867
-92692=33.606497,-117.643112
-92694=33.547238,-117.623761
-92701=33.748220,-117.858473
-92703=33.747155,-117.907326
-92704=33.721131,-117.905110
-92705=33.765639,-117.790075
-92706=33.765301,-117.881976
-92707=33.709935,-117.870431
-92708=33.710582,-117.951129
-92780=33.734005,-117.819163
-92782=33.739709,-117.784703
-92801=33.844983,-117.952151
-92802=33.808267,-117.923658
-92804=33.818246,-117.974985
-92805=33.830457,-117.905941
-92806=33.837960,-117.870494
-92807=33.848733,-117.788357
-92808=33.856459,-117.740176
-92821=33.927561,-117.887086
-92823=33.928179,-117.809285
-92831=33.879768,-117.896340
-92832=33.868649,-117.929055
-92833=33.879329,-117.961752
-92835=33.901886,-117.916639
-92840=33.787165,-117.931889
-92841=33.786846,-117.982020
-92843=33.763905,-117.931382
-92844=33.765471,-117.969504
-92845=33.783064,-118.026268
-92860=33.925519,-117.551958
-92861=33.817630,-117.810046
-92865=33.826393,-117.851307
-92866=33.784615,-117.844774
-92867=33.800980,-117.843772
-92868=33.788145,-117.876550
-92869=33.808450,-117.791737
-92870=33.881158,-117.854783
-92879=33.882614,-117.528204
-92880=33.925311,-117.607297
-92881=33.827409,-117.524128
-92882=33.840451,-117.601961
-92883=33.748086,-117.468037
-92886=33.896339,-117.796416
-92887=33.885514,-117.730164
-93001=34.037340,-119.800786
-93003=34.283668,-119.223196
-93004=34.278679,-119.165615
-93010=34.227892,-119.079552
-93012=34.196026,-118.992531
-93013=34.441370,-119.514092
-93015=34.404104,-118.897776
-93021=34.295652,-118.897875
-93022=34.407780,-119.306554
-93023=34.530199,-119.310133
-93030=34.205247,-119.174092
-93033=34.150212,-119.127729
-93035=34.181971,-119.224985
-93036=34.238786,-119.186492
-93040=34.473884,-118.797181
-93041=34.106896,-119.099535
-93042=33.255655,-119.503588
-93043=34.170854,-119.202409
-93060=34.402343,-119.094824
-93063=34.308729,-118.687223
-93064=34.247556,-118.700940
-93065=34.258405,-118.775026
-93066=34.297699,-119.014558
-93067=34.421964,-119.593483
-93101=34.418979,-119.709166
-93103=34.438773,-119.678841
-93105=34.533222,-119.791731
-93108=34.448024,-119.616984
-93109=34.406428,-119.726888
-93110=34.446201,-119.762794
-93111=34.449185,-119.804782
-93117=34.479453,-120.084094
-93201=35.856859,-119.507526
-93202=36.313344,-119.708452
-93203=35.112617,-118.832292
-93204=35.889811,-120.068590
-93205=35.518295,-118.430032
-93206=35.437302,-119.477735
-93207=35.889831,-118.630592
-93208=36.056587,-118.568462
-93210=36.197785,-120.422249
-93212=36.042151,-119.527700
-93215=35.779507,-119.200825
-93218=35.860883,-119.036140
-93219=35.873666,-119.281551
-93220=35.403611,-118.756525
-93221=36.295014,-119.026031
-93222=34.842425,-119.203723
-93223=36.304539,-119.204896
-93224=35.228199,-119.569304
-93225=34.768503,-119.030293
-93226=35.735652,-118.738373
-93230=36.292230,-119.622676
-93234=36.191268,-120.090097
-93235=36.389827,-119.219896
-93238=35.729116,-118.391888
-93239=36.047190,-119.990217
-93240=35.617546,-118.452285
-93241=35.254701,-118.912678
-93242=36.442077,-119.727734
-93243=34.772700,-118.791975
-93244=36.488656,-118.998043
-93245=36.292270,-119.829463
-93247=36.206269,-119.071075
-93249=35.621706,-119.887939
-93250=35.665082,-119.197958
-93251=35.335636,-119.758248
-93252=34.710034,-119.243808
-93254=34.966867,-119.810433
-93255=35.677330,-118.101417
-93256=35.960636,-119.312992
-93257=35.988087,-118.860221
-93258=36.054380,-119.150397
-93260=35.817247,-118.669124
-93261=35.808535,-119.128083
-93262=36.615624,-118.697574
-93263=35.492805,-119.286861
-93265=36.245404,-118.693313
-93266=36.145394,-119.867288
-93267=36.151180,-119.049222
-93268=35.162393,-119.425116
-93270=35.952426,-119.072843
-93271=36.469275,-118.800919
-93272=36.047414,-119.344304
-93274=36.178091,-119.370752
-93276=35.299176,-119.358368
-93277=36.301334,-119.372586
-93280=35.652242,-119.446400
-93283=35.592099,-118.297698
-93285=35.715258,-118.507027
-93286=36.462710,-119.093242
-93287=35.757886,-118.988161
-93291=36.391777,-119.372842
-93292=36.375590,-119.211689
-93301=35.384336,-119.020562
-93304=35.339702,-119.023451
-93305=35.389749,-118.985186
-93306=35.468183,-118.779649
-93307=35.245120,-118.941100
-93308=35.621087,-118.789677
-93309=35.342891,-119.064803
-93311=35.192404,-119.175866
-93312=35.393478,-119.120460
-93313=35.163190,-119.046322
-93314=35.393866,-119.244846
-93401=35.235750,-120.615973
-93402=35.295232,-120.835468
-93405=35.296958,-120.733134
-93410=35.301200,-120.660937
-93420=35.176043,-120.476694
-93422=35.463544,-120.692911
-93424=35.185911,-120.731793
-93426=35.848621,-120.938911
-93427=34.610436,-120.219523
-93428=35.585018,-121.041461
-93429=34.867662,-120.539904
-93430=35.484966,-120.944417
-93432=35.486805,-120.485271
-93433=35.120888,-120.619664
-93434=34.919894,-120.604969
-93436=34.595669,-120.352667
-93437=34.737964,-120.543739
-93440=34.712216,-120.230146
-93441=34.770605,-119.985205
-93442=35.401934,-120.799362
-93444=35.037198,-120.504593
-93445=35.044396,-120.620199
-93446=35.662509,-120.749865
-93449=35.165671,-120.655844
-93450=36.085423,-120.818522
-93451=35.886767,-120.608661
-93452=35.746484,-121.223355
-93453=35.303925,-120.256566
-93454=34.923013,-120.259463
-93455=34.831792,-120.433509
-93458=34.959340,-120.490081
-93460=34.653533,-120.007153
-93461=35.652911,-120.266428
-93463=34.624395,-120.137875
-93465=35.538809,-120.739893
-93501=35.067111,-118.184941
-93505=35.163740,-117.886527
-93510=34.450906,-118.227614
-93512=37.891866,-118.554569
-93513=37.131989,-118.155880
-93514=37.492115,-118.390408
-93516=35.002282,-117.629941
-93517=38.281108,-119.384449
-93518=35.385111,-118.491168
-93519=35.294349,-117.925785
-93522=36.316298,-117.592333
-93523=34.957206,-117.827391
-93524=34.931987,-117.907127
-93526=36.823834,-118.281246
-93527=36.119622,-118.177124
-93528=35.371604,-117.643321
-93529=37.815507,-119.095647
-93530=36.475830,-117.860116
-93531=35.221906,-118.582566
-93532=34.689848,-118.533689
-93534=34.713292,-118.152920
-93535=34.713656,-117.864660
-93536=34.747390,-118.369249
-93541=37.988074,-119.114386
-93543=34.481108,-117.982006
-93544=34.495537,-117.756645
-93545=36.556387,-118.054221
-93546=37.548799,-118.839818
-93549=36.212203,-117.948532
-93550=34.408548,-118.123592
-93551=34.604105,-118.239213
-93552=34.570867,-118.023744
-93553=34.407332,-117.911841
-93554=35.413944,-117.764333
-93555=35.606509,-117.683472
-93558=35.347928,-117.621393
-93560=34.866894,-118.339832
-93561=35.118772,-118.493811
-93562=35.746463,-117.386604
-93563=34.402521,-117.766066
-93591=34.594480,-117.813666
-93592=35.852815,-117.224709
-93601=37.393471,-119.741037
-93602=37.028835,-119.316654
-93603=36.622507,-118.957187
-93604=37.344149,-119.422139
-93605=37.203158,-119.249243
-93606=36.803197,-120.018564
-93608=36.492478,-120.355526
-93609=36.526597,-119.864103
-93610=37.098303,-120.281212
-93611=36.825296,-119.680190
-93612=36.814864,-119.710596
-93614=37.209821,-119.749802
-93615=36.503322,-119.286328
-93616=36.655353,-119.593861
-93618=36.521012,-119.389446
-93619=36.917573,-119.593481
-93620=37.020043,-120.625404
-93621=36.789273,-119.140345
-93622=36.814503,-120.575240
-93623=37.494877,-119.644280
-93624=36.378434,-120.116591
-93625=36.624539,-119.671874
-93626=37.043286,-119.691306
-93627=36.474404,-120.061497
-93628=36.772382,-118.935666
-93630=36.727250,-120.123426
-93631=36.478239,-119.521370
-93633=36.822163,-118.649328
-93634=37.223580,-119.000834
-93635=37.068068,-120.843579
-93636=36.984885,-119.873914
-93637=36.918079,-120.185933
-93638=37.043434,-120.033693
-93640=36.672683,-120.446521
-93641=36.697180,-119.022995
-93643=37.224696,-119.470738
-93644=37.377787,-119.632385
-93645=37.182359,-119.641450
-93646=36.644737,-119.289181
-93647=36.600760,-119.175485
-93648=36.620634,-119.520731
-93650=36.840813,-119.799812
-93651=36.999336,-119.518794
-93652=36.595012,-119.904577
-93653=37.248335,-119.944935
-93654=36.658709,-119.401274
-93656=36.450225,-119.934478
-93657=36.817791,-119.457602
-93660=36.585446,-120.173897
-93662=36.536573,-119.638651
-93664=37.129364,-119.219563
-93665=36.960108,-120.648060
-93666=36.547067,-119.335641
-93667=36.955940,-119.335294
-93668=36.650275,-120.284085
-93669=37.290563,-119.548406
-93673=36.452697,-119.482343
-93675=36.724723,-119.192779
-93701=36.749661,-119.787685
-93702=36.739194,-119.753933
-93703=36.768860,-119.762393
-93704=36.799054,-119.801608
-93705=36.786671,-119.828335
-93706=36.652065,-119.906591
-93710=36.822349,-119.760243
-93711=36.834289,-119.833350
-93720=36.862209,-119.760793
-93721=36.732891,-119.783739
-93722=36.799361,-119.874794
-93723=36.793477,-119.956818
-93725=36.627211,-119.731888
-93726=36.793661,-119.761461
-93727=36.751519,-119.680602
-93728=36.757294,-119.818488
-93730=36.905389,-119.748632
-93901=36.636344,-121.623978
-93905=36.682351,-121.605904
-93906=36.722714,-121.633649
-93907=36.769389,-121.667532
-93908=36.651745,-121.599444
-93920=36.092975,-121.549826
-93921=36.553175,-121.923960
-93923=36.448672,-121.849502
-93924=36.415603,-121.637651
-93925=36.588003,-121.398912
-93926=36.525870,-121.396735
-93927=36.248797,-121.386631
-93928=36.038868,-121.244009
-93930=36.205060,-121.010363
-93932=35.989792,-121.055933
-93933=36.686845,-121.786887
-93940=36.574690,-121.840854
-93943=36.597004,-121.874136
-93950=36.621181,-121.925179
-93953=36.585219,-121.945282
-93954=36.133362,-120.928512
-93955=36.614410,-121.786901
-93960=36.389618,-121.343146
-93962=36.624716,-121.646487
-94002=37.514352,-122.298896
-94005=37.688826,-122.408935
-94010=37.570280,-122.365778
-94014=37.690884,-122.447441
-94015=37.681264,-122.480589
-94019=37.469453,-122.411841
-94020=37.274612,-122.232420
-94021=37.270838,-122.280738
-94022=37.357489,-122.144437
-94024=37.352234,-122.094399
-94025=37.457524,-122.176542
-94027=37.453514,-122.204756
-94028=37.376828,-122.209796
-94030=37.598970,-122.401991
-94037=37.554298,-122.496632
-94038=37.526902,-122.512164
-94040=37.380566,-122.085293
-94041=37.388520,-122.075726
-94043=37.414028,-122.070679
-94044=37.606627,-122.477211
-94060=37.247137,-122.273493
-94061=37.461147,-122.236948
-94062=37.413691,-122.295343
-94063=37.493297,-122.195535
-94065=37.534106,-122.247372
-94066=37.625086,-122.433593
-94070=37.496466,-122.272565
-94074=37.331714,-122.341466
-94080=37.655490,-122.422075
-94085=37.388556,-122.017732
-94086=37.371647,-122.023134
-94087=37.351529,-122.036959
-94089=37.412402,-122.015605
-94102=37.779588,-122.419318
-94103=37.773134,-122.411167
-94104=37.791409,-122.402130
-94105=37.789864,-122.393665
-94107=37.760460,-122.399724
-94108=37.792007,-122.408575
-94109=37.795388,-122.422453
-94110=37.750021,-122.415201
-94111=37.799367,-122.398407
-94112=37.720375,-122.442950
-94114=37.758057,-122.435410
-94115=37.785969,-122.437253
-94116=37.745399,-122.486065
-94117=37.769436,-122.447662
-94118=37.780097,-122.462605
-94121=37.776769,-122.494707
-94122=37.758797,-122.485128
-94123=37.800934,-122.438366
-94124=37.728895,-122.382779
-94127=37.736220,-122.459338
-94128=37.626411,-122.385757
-94129=37.797336,-122.464462
-94130=37.820661,-122.369655
-94131=37.745916,-122.441472
-94132=37.722220,-122.484077
-94133=37.804531,-122.410852
-94134=37.721052,-122.413573
-94158=37.768106,-122.386927
-94301=37.444123,-122.149911
-94303=37.457880,-122.115158
-94304=37.374707,-122.181698
-94305=37.418256,-122.170871
-94306=37.415727,-122.130762
-94401=37.576948,-122.316903
-94402=37.523602,-122.344920
-94403=37.538449,-122.305447
-94404=37.555999,-122.267679
-94501=37.773793,-122.278115
-94502=37.737572,-122.245507
-94503=38.186532,-122.264069
-94505=37.871680,-121.597066
-94506=37.809677,-121.913141
-94507=37.850411,-122.021124
-94508=38.576618,-122.444388
-94509=37.996501,-121.812301
-94510=38.098071,-122.135940
-94511=38.028939,-121.640521
-94512=38.134852,-121.834156
-94513=37.922228,-121.668359
-94514=37.826372,-121.622546
-94515=38.634822,-122.615051
-94516=37.833901,-122.165034
-94517=37.890217,-121.878354
-94518=37.950362,-122.022039
-94519=37.988451,-122.013001
-94520=37.995285,-122.040627
-94521=37.956012,-121.956194
-94523=37.954131,-122.076140
-94525=38.052951,-122.232094
-94526=37.814613,-121.990552
-94528=37.845601,-121.950612
-94530=37.921561,-122.298337
-94531=37.965765,-121.775818
-94533=38.280745,-122.006380
-94534=38.244839,-122.135861
-94535=38.282221,-121.924715
-94536=37.570508,-121.981250
-94538=37.501368,-121.956753
-94539=37.516907,-121.911763
-94541=37.673945,-122.084821
-94542=37.659883,-122.037142
-94544=37.633820,-122.057200
-94545=37.605905,-122.126873
-94546=37.714509,-122.079542
-94547=38.010166,-122.261728
-94548=37.974295,-121.651441
-94549=37.897009,-122.114292
-94550=37.519986,-121.575596
-94551=37.750502,-121.749055
-94552=37.722720,-122.021552
-94553=37.993892,-122.136441
-94555=37.548205,-122.098677
-94556=37.840645,-122.114877
-94558=38.442011,-122.238320
-94559=38.245724,-122.313405
-94560=37.504514,-122.032916
-94561=37.993936,-121.691139
-94563=37.879920,-122.184572
-94564=37.994038,-122.282589
-94565=38.014576,-121.906255
-94566=37.648104,-121.849965
-94567=38.706906,-122.393997
-94568=37.715245,-121.914700
-94569=38.044258,-122.198765
-94571=38.148862,-121.737696
-94572=38.032793,-122.252211
-94573=38.458864,-122.428831
-94574=38.542448,-122.419923
-94575=37.840961,-122.109502
-94576=38.549422,-122.476382
-94577=37.713275,-122.167350
-94578=37.706137,-122.125550
-94579=37.686491,-122.157201
-94580=37.675731,-122.133017
-94582=37.762174,-121.915788
-94583=37.755120,-121.972699
-94585=38.192498,-121.927529
-94586=37.574590,-121.853708
-94587=37.603155,-122.018638
-94588=37.792682,-121.860590
-94589=38.187350,-122.224074
-94590=38.103234,-122.249096
-94591=38.122869,-122.196863
-94592=38.089730,-122.277394
-94595=37.871950,-122.069383
-94596=37.889098,-122.037553
-94597=37.918191,-122.071665
-94598=37.899936,-121.999244
-94599=38.409878,-122.361511
-94601=37.775545,-122.218705
-94602=37.804320,-122.207545
-94603=37.736529,-122.179445
-94605=37.761408,-122.150198
-94606=37.791887,-122.245334
-94607=37.807215,-122.301497
-94608=37.836844,-122.289143
-94609=37.834403,-122.264368
-94610=37.811406,-122.242458
-94611=37.829350,-122.203507
-94612=37.808800,-122.269196
-94613=37.780853,-122.182845
-94618=37.844672,-122.238105
-94619=37.790438,-122.140819
-94621=37.748272,-122.216825
-94702=37.865777,-122.286321
-94703=37.863911,-122.275643
-94704=37.866536,-122.257996
-94705=37.865183,-122.238209
-94706=37.889704,-122.295531
-94707=37.898189,-122.279130
-94708=37.902944,-122.261795
-94709=37.879234,-122.266839
-94710=37.863914,-122.306465
-94720=37.873832,-122.254944
-94801=37.952844,-122.381974
-94803=37.959549,-122.283578
-94804=37.916555,-122.341233
-94805=37.942798,-122.322923
-94806=37.980790,-122.337627
-94850=37.902226,-122.317378
-94901=37.978138,-122.497611
-94903=38.022366,-122.555605
-94904=37.945512,-122.560120
-94920=37.885629,-122.468580
-94922=38.344946,-122.948799
-94923=38.339402,-123.034599
-94924=37.943087,-122.723790
-94925=37.931846,-122.507738
-94928=38.346420,-122.694127
-94929=38.252420,-122.962717
-94930=37.943963,-122.616418
-94931=38.324133,-122.714633
-94933=38.012599,-122.687478
-94937=38.116490,-122.930351
-94938=38.029069,-122.726523
-94939=37.937082,-122.532369
-94940=38.178570,-122.883190
-94941=37.897665,-122.563172
-94945=38.134068,-122.527190
-94946=38.082829,-122.671527
-94947=38.112166,-122.634384
-94949=38.060475,-122.508496
-94950=38.024885,-122.759933
-94951=38.320861,-122.646138
-94952=38.234553,-122.760385
-94954=38.235014,-122.557332
-94956=38.045857,-122.861209
-94957=37.963111,-122.563588
-94960=37.995864,-122.577814
-94963=38.013719,-122.670120
-94964=37.943257,-122.492151
-94965=37.852904,-122.547207
-94970=37.914513,-122.646890
-94971=38.231547,-122.928226
-94972=38.287346,-122.968556
-94973=38.012697,-122.639598
-95002=37.438672,-122.011582
-95003=37.006700,-121.878207
-95004=36.874755,-121.630732
-95005=37.098768,-122.091734
-95006=37.171267,-122.149524
-95007=37.104964,-122.106903
-95008=37.279173,-121.955340
-95010=36.976175,-121.953160
-95012=36.784482,-121.759054
-95013=37.215362,-121.741521
-95014=37.306491,-122.080640
-95017=37.114335,-122.237162
-95018=37.074092,-122.059372
-95019=36.935538,-121.783134
-95020=37.018419,-121.554249
-95023=36.902045,-121.350783
-95030=37.222759,-121.983272
-95032=37.216953,-121.926555
-95033=37.160846,-121.983966
-95035=37.444349,-121.868859
-95037=37.174063,-121.598747
-95039=36.828150,-121.776583
-95041=37.050419,-122.057816
-95043=36.525703,-120.952122
-95045=36.825745,-121.518587
-95046=37.099308,-121.599240
-95050=37.351157,-121.952295
-95051=37.348640,-121.984373
-95053=37.348723,-121.937557
-95054=37.393491,-121.964670
-95060=37.036461,-122.121750
-95062=36.970525,-121.987488
-95064=36.991107,-122.059022
-95065=37.031475,-121.983340
-95066=37.067917,-122.013995
-95070=37.260499,-122.046165
-95073=37.042254,-121.930051
-95075=36.779046,-121.142439
-95076=36.946256,-121.756479
-95110=37.346512,-121.909803
-95111=37.283111,-121.826245
-95112=37.344482,-121.883535
-95113=37.333694,-121.891002
-95116=37.350421,-121.852585
-95117=37.311181,-121.961870
-95118=37.255520,-121.889995
-95119=37.230327,-121.785227
-95120=37.186141,-121.843555
-95121=37.304151,-121.809869
-95122=37.328684,-121.835269
-95123=37.244238,-121.831604
-95124=37.256765,-121.922762
-95125=37.295056,-121.891440
-95126=37.326791,-121.916745
-95127=37.371091,-121.800752
-95128=37.315977,-121.936319
-95129=37.305742,-122.000927
-95130=37.277121,-121.986133
-95131=37.387111,-121.897417
-95132=37.424565,-121.748597
-95133=37.371606,-121.860844
-95134=37.426377,-121.950977
-95135=37.284529,-121.658321
-95136=37.269128,-121.850992
-95138=37.246623,-121.733833
-95139=37.224914,-121.764075
-95140=37.393503,-121.620009
-95148=37.335987,-121.777603
-95202=37.959736,-121.288287
-95203=37.952452,-121.329655
-95204=37.973736,-121.319246
-95205=37.964578,-121.259841
-95206=37.918854,-121.417427
-95207=38.002125,-121.324979
-95209=38.046863,-121.352802
-95210=38.030177,-121.297912
-95211=37.979250,-121.313409
-95212=38.049939,-121.232970
-95215=37.949421,-121.157283
-95219=38.051726,-121.483036
-95220=38.200231,-121.235034
-95222=38.072109,-120.631346
-95223=38.433968,-119.968436
-95224=38.231324,-120.322688
-95225=38.193762,-120.875928
-95226=38.228948,-120.856627
-95227=38.210353,-121.051256
-95228=37.907230,-120.688307
-95230=38.000494,-120.898152
-95231=37.873793,-121.290146
-95232=38.355338,-120.594018
-95233=38.161669,-120.368144
-95234=37.925763,-121.528026
-95236=38.029730,-121.023890
-95237=38.161879,-121.149837
-95240=38.114388,-121.144658
-95242=38.137068,-121.384546
-95245=38.299257,-120.626707
-95246=38.227003,-120.514561
-95247=38.138539,-120.452903
-95248=38.317709,-120.461112
-95249=38.189115,-120.638708
-95250=38.237833,-120.428658
-95251=38.078402,-120.443443
-95252=38.149816,-120.846670
-95254=38.192620,-120.957820
-95255=38.419902,-120.474458
-95257=38.379703,-120.448000
-95258=38.173556,-121.312247
-95301=37.321233,-120.654395
-95303=37.470288,-120.671083
-95304=37.671103,-121.406559
-95305=37.794225,-120.269140
-95306=37.365530,-120.160164
-95307=37.554269,-120.951523
-95310=38.085839,-120.378550
-95311=37.714260,-120.081389
-95312=37.421071,-120.652983
-95313=37.431392,-121.051294
-95314=38.319132,-119.796208
-95315=37.421900,-120.769283
-95316=37.553376,-120.714055
-95317=37.127380,-120.506433
-95318=37.653372,-119.784117
-95319=37.639290,-120.903049
-95320=37.825598,-121.005157
-95321=37.864258,-120.004543
-95322=37.166199,-121.024432
-95323=37.608303,-120.685156
-95324=37.394536,-120.890747
-95325=37.466072,-120.225948
-95326=37.588918,-120.855236
-95327=37.861625,-120.480322
-95328=37.558453,-120.909880
-95329=37.666587,-120.411517
-95330=37.808915,-121.312639
-95333=37.242232,-120.240442
-95334=37.347307,-120.742627
-95335=38.124887,-120.093146
-95336=37.830267,-121.201020
-95337=37.743039,-121.238380
-95338=37.508765,-119.982496
-95340=37.345785,-120.424150
-95341=37.231045,-120.501072
-95345=37.583767,-119.976728
-95346=38.065529,-120.170699
-95348=37.392287,-120.498299
-95350=37.671978,-121.007405
-95351=37.623601,-120.996324
-95354=37.639029,-120.964772
-95355=37.672906,-120.946594
-95356=37.718023,-121.032714
-95357=37.672536,-120.887136
-95358=37.612612,-121.108568
-95360=37.325955,-121.193383
-95361=37.787236,-120.759202
-95363=37.452895,-121.229974
-95364=38.258394,-119.783024
-95365=37.331113,-120.294817
-95366=37.762766,-121.125277
-95367=37.729282,-120.942905
-95368=37.713269,-121.085404
-95369=37.531889,-120.437413
-95370=37.984549,-120.349264
-95372=37.991289,-120.262791
-95374=37.316807,-120.855753
-95375=38.186595,-120.026235
-95376=37.737191,-121.433384
-95377=37.673944,-121.517227
-95379=37.939765,-120.188046
-95380=37.474396,-120.875917
-95382=37.528476,-120.853313
-95383=38.112760,-120.225746
-95385=37.610740,-121.247330
-95386=37.667405,-120.629404
-95387=37.519349,-121.296545
-95388=37.414670,-120.586787
-95389=37.626489,-119.681280
-95391=37.768218,-121.609509
-95401=38.449137,-122.793752
-95403=38.503685,-122.754057
-95404=38.525733,-122.690443
-95405=38.437114,-122.665993
-95407=38.393300,-122.745048
-95409=38.468829,-122.580724
-95410=39.199469,-123.702253
-95412=38.713421,-123.349777
-95415=39.015251,-123.370756
-95417=39.689790,-123.610022
-95420=39.366146,-123.804985
-95421=38.628217,-123.160834
-95422=38.973012,-122.623922
-95423=39.064446,-122.626701
-95425=38.823058,-123.063891
-95426=38.833425,-122.734061
-95427=39.244183,-123.563531
-95428=39.824803,-123.179609
-95429=39.720930,-123.300262
-95430=38.461425,-123.047186
-95431=38.348343,-122.517056
-95432=39.108252,-123.645121
-95435=39.007213,-122.869510
-95436=38.486817,-122.905620
-95437=39.487185,-123.741963
-95439=38.493179,-122.777546
-95441=38.731694,-122.906767
-95442=38.371538,-122.487307
-95443=39.054011,-122.751253
-95444=38.433216,-122.869001
-95445=38.832520,-123.472532
-95446=38.527164,-123.007892
-95448=38.622985,-122.889121
-95449=38.936137,-123.119445
-95450=38.501363,-123.170879
-95451=38.922131,-122.789559
-95452=38.425523,-122.535210
-95453=39.045931,-122.941077
-95454=39.806096,-123.516147
-95456=39.258198,-123.761560
-95457=38.882973,-122.532720
-95458=39.161278,-122.745312
-95459=38.976640,-123.604802
-95460=39.305245,-123.748616
-95461=38.752774,-122.557196
-95462=38.462142,-123.018384
-95463=39.186791,-123.558382
-95464=39.128363,-122.849302
-95465=38.421934,-123.063911
-95466=39.081822,-123.504872
-95467=38.808264,-122.539952
-95468=38.918887,-123.605684
-95469=39.390917,-123.052841
-95470=39.314030,-123.249924
-95471=38.524077,-122.968774
-95472=38.398815,-122.861923
-95476=38.249428,-122.466627
-95482=39.135023,-123.259338
-95485=39.225478,-122.922912
-95486=38.474137,-123.024203
-95488=39.683707,-123.741609
-95490=39.492842,-123.340973
-95492=38.528079,-122.821349
-95493=39.184728,-122.969574
-95494=38.889651,-123.337821
-95497=38.743039,-123.476418
-95501=40.798659,-124.151583
-95503=40.738322,-124.107619
-95511=40.141856,-123.681921
-95514=40.294713,-123.653473
-95519=40.959368,-124.051236
-95521=40.855694,-124.066898
-95524=40.825486,-124.049485
-95525=40.921430,-123.815266
-95526=40.459048,-123.673177
-95527=41.012258,-123.387964
-95528=40.496975,-123.930822
-95531=41.819578,-124.065667
-95536=40.523099,-124.326421
-95537=40.726752,-124.217378
-95540=40.578828,-124.136869
-95542=40.080405,-123.783948
-95543=41.870812,-123.862770
-95545=40.280389,-124.063670
-95546=41.092825,-123.675802
-95547=40.557483,-124.081215
-95548=41.593204,-124.045992
-95549=40.666691,-123.908396
-95550=40.781218,-123.826383
-95551=40.674987,-124.231146
-95552=40.202543,-123.228609
-95553=40.244215,-123.888871
-95554=40.296412,-123.777178
-95555=41.241807,-123.913425
-95556=41.324926,-123.600968
-95558=40.298264,-124.243071
-95559=40.183681,-123.745046
-95560=40.168801,-123.826148
-95562=40.472423,-124.121840
-95563=40.877330,-123.499144
-95564=40.790880,-124.204748
-95565=40.455189,-124.015148
-95567=41.950683,-124.097094
-95568=41.452689,-123.464813
-95569=40.377299,-123.854169
-95570=41.080058,-124.156283
-95571=40.322772,-123.920622
-95573=40.914926,-123.668723
-95585=39.844682,-123.656929
-95587=39.963270,-123.775737
-95589=40.055796,-123.969269
-95595=40.123177,-123.446279
-95601=38.426699,-120.825717
-95602=38.990030,-121.114408
-95603=38.915869,-121.080284
-95604=39.243304,-120.071406
-95605=38.593521,-121.539867
-95606=38.756184,-122.195438
-95607=38.830371,-122.126946
-95608=38.624150,-121.324911
-95610=38.694908,-121.271772
-95612=38.384706,-121.578722
-95614=38.886238,-120.979699
-95615=38.318624,-121.554752
-95616=38.554133,-121.798467
-95618=38.543211,-121.681500
-95619=38.680605,-120.814261
-95620=38.412615,-121.756222
-95621=38.695704,-121.308303
-95623=38.603602,-120.857030
-95624=38.427507,-121.314899
-95625=38.358121,-121.911547
-95626=38.733145,-121.468174
-95627=38.734513,-122.025346
-95628=38.652065,-121.254410
-95629=38.516474,-120.688517
-95630=38.666597,-121.141635
-95631=39.053461,-120.795632
-95632=38.274451,-121.259201
-95633=38.840217,-120.829757
-95634=38.936904,-120.772283
-95635=38.910748,-120.908621
-95636=38.621278,-120.383217
-95637=38.834145,-122.236936
-95638=38.313448,-121.123886
-95639=38.389030,-121.500428
-95640=38.325248,-120.955787
-95641=38.140366,-121.589783
-95642=38.343033,-120.760921
-95645=38.884891,-121.778654
-95646=38.689261,-120.054975
-95648=38.922812,-121.312005
-95650=38.809175,-121.171375
-95651=38.817820,-120.929272
-95652=38.662983,-121.401113
-95653=38.697634,-121.977571
-95655=38.549228,-121.278598
-95658=38.881183,-121.169014
-95659=38.842230,-121.572164
-95660=38.678545,-121.379969
-95661=38.741074,-121.247693
-95662=38.689174,-121.218435
-95663=38.855811,-121.182313
-95664=38.801290,-121.037936
-95665=38.400650,-120.648462
-95666=38.523861,-120.376629
-95667=38.734925,-120.789952
-95668=38.833555,-121.498099
-95669=38.482619,-120.899472
-95670=38.604268,-121.280327
-95672=38.722374,-120.978633
-95673=38.689241,-121.459014
-95674=38.954159,-121.481870
-95675=38.544700,-120.740500
-95677=38.791075,-121.234854
-95678=38.764070,-121.287523
-95679=38.896313,-122.365365
-95680=38.240419,-121.587535
-95681=38.995557,-121.353545
-95682=38.612129,-120.964522
-95683=38.511992,-121.096261
-95684=38.592309,-120.584657
-95685=38.434483,-120.761659
-95686=38.157794,-121.520223
-95687=38.333133,-121.920151
-95688=38.408571,-122.022775
-95689=38.478832,-120.611993
-95690=38.199576,-121.618273
-95691=38.627951,-121.593287
-95692=39.046931,-121.403091
-95693=38.399281,-121.210116
-95694=38.568866,-122.079781
-95695=38.687045,-121.857077
-95697=38.732368,-121.810263
-95698=38.816357,-121.910770
-95699=38.436774,-120.857624
-95701=39.226549,-120.767022
-95703=38.985882,-120.978665
-95709=38.750132,-120.675412
-95713=39.111833,-120.877969
-95714=39.200502,-120.840726
-95715=39.269964,-120.677611
-95717=39.144526,-120.852575
-95720=38.766610,-120.223931
-95721=38.843738,-120.072674
-95722=39.009801,-121.034707
-95724=39.311704,-120.328125
-95726=38.800349,-120.503871
-95728=39.319332,-120.399379
-95735=38.840282,-120.150225
-95736=39.038809,-120.977530
-95742=38.577783,-121.201788
-95746=38.747526,-121.180092
-95747=38.782070,-121.373155
-95757=38.344888,-121.431231
-95758=38.427813,-121.444696
-95762=38.685087,-121.063769
-95765=38.815548,-121.280172
-95776=38.698614,-121.699262
-95811=38.583230,-121.478101
-95814=38.580568,-121.495590
-95815=38.605407,-121.447593
-95816=38.571577,-121.466465
-95817=38.550547,-121.456373
-95818=38.554487,-121.497058
-95819=38.569828,-121.440067
-95820=38.534879,-121.444372
-95821=38.625693,-121.384916
-95822=38.512787,-121.493618
-95823=38.474099,-121.443454
-95824=38.517585,-121.440739
-95825=38.591897,-121.408467
-95826=38.543754,-121.377692
-95827=38.556129,-121.324257
-95828=38.488809,-121.395843
-95829=38.489544,-121.323454
-95830=38.490508,-121.284171
-95831=38.493966,-121.529188
-95832=38.447050,-121.496114
-95833=38.619049,-121.517552
-95834=38.635653,-121.518416
-95835=38.670649,-121.525983
-95837=38.693765,-121.598941
-95838=38.645723,-121.445254
-95841=38.660370,-121.347394
-95842=38.686809,-121.349146
-95843=38.715463,-121.363422
-95864=38.584047,-121.375846
-95901=39.223939,-121.494050
-95903=39.106099,-121.368180
-95910=39.491126,-120.817232
-95912=39.016702,-122.062143
-95914=39.449004,-121.330521
-95915=40.006256,-121.158894
-95916=39.665539,-121.351955
-95917=39.409686,-121.756653
-95918=39.301229,-121.337929
-95919=39.432882,-121.261143
-95920=39.449794,-121.936372
-95922=39.488340,-121.066908
-95923=40.133728,-121.092693
-95925=39.484108,-121.192649
-95926=39.745628,-121.843834
-95928=39.685710,-121.844084
-95930=39.548599,-121.192105
-95932=39.266469,-121.978604
-95934=40.060074,-120.907922
-95935=39.379346,-121.192310
-95936=39.605383,-120.811013
-95937=38.885244,-121.999039
-95938=39.604713,-121.795288
-95939=39.571982,-122.580827
-95941=39.516314,-121.250935
-95942=40.019450,-121.566635
-95943=39.584807,-122.032297
-95944=39.495266,-120.943811
-95945=39.196387,-120.972289
-95946=39.215586,-121.203240
-95947=40.174567,-120.819768
-95948=39.339264,-121.770785
-95949=39.099230,-121.138848
-95950=39.043447,-121.918099
-95951=39.722512,-122.004433
-95953=39.259022,-121.776826
-95954=39.884654,-121.586789
-95955=39.294516,-122.201715
-95956=39.838288,-121.134235
-95957=39.060921,-121.827155
-95959=39.347811,-120.918728
-95960=39.403217,-121.034486
-95961=39.040305,-121.560484
-95962=39.344757,-121.264517
-95963=39.736308,-122.259338
-95965=39.593945,-121.581363
-95966=39.475360,-121.414110
-95968=39.435211,-121.551925
-95969=39.716846,-121.646180
-95970=39.398424,-122.060946
-95971=39.940063,-120.891328
-95973=39.891624,-121.841982
-95974=39.480221,-121.838454
-95975=39.224354,-121.151625
-95977=39.176595,-121.291692
-95978=39.875599,-121.536315
-95979=39.302035,-122.511160
-95981=39.679398,-120.998619
-95982=39.172726,-121.805819
-95983=40.077912,-120.707315
-95984=40.040955,-121.122652
-95986=39.342544,-120.770868
-95987=39.105127,-122.283003
-95988=39.491654,-122.262080
-95991=38.994187,-121.594591
-95993=39.082497,-121.680114
-96001=40.601778,-122.454973
-96002=40.527834,-122.318749
-96003=40.751937,-122.230678
-96006=41.135964,-120.840063
-96007=40.458029,-122.277830
-96008=40.704869,-122.120038
-96009=41.056040,-121.020802
-96010=40.913780,-123.307421
-96011=41.051216,-121.984492
-96013=40.973657,-121.692399
-96014=41.326646,-122.773654
-96015=41.487278,-120.912416
-96016=40.894269,-121.507020
-96017=41.076875,-122.253652
-96019=40.676564,-122.380909
-96020=40.397960,-121.298528
-96021=39.923446,-122.270806
-96022=40.336387,-122.448511
-96023=41.928894,-121.906809
-96024=40.546631,-122.880891
-96025=41.209942,-122.307935
-96027=41.399483,-123.068855
-96028=41.006417,-121.480741
-96029=39.940260,-122.489200
-96031=41.186066,-123.181796
-96032=41.609516,-122.963525
-96033=40.781633,-122.584149
-96034=41.428284,-122.609441
-96035=40.045637,-122.184859
-96037=41.544675,-122.934665
-96038=41.607100,-122.545715
-96039=41.687905,-123.483269
-96040=40.793535,-121.438607
-96041=40.525724,-123.193917
-96044=41.930950,-122.510081
-96046=40.588772,-123.434201
-96047=40.471076,-122.660955
-96048=40.829014,-123.022859
-96049=41.771860,-123.327375
-96050=41.898880,-122.888552
-96051=40.933200,-122.382788
-96052=40.738391,-122.821086
-96054=41.238956,-121.039250
-96055=40.103236,-122.074735
-96056=41.028176,-121.308316
-96057=41.268682,-121.930940
-96058=41.727044,-121.907369
-96059=40.421637,-121.833052
-96061=40.338068,-121.479070
-96062=40.580119,-122.041403
-96063=40.370467,-121.606306
-96064=41.754853,-122.365534
-96065=40.879080,-121.893264
-96067=41.314337,-122.380798
-96068=41.118402,-121.207564
-96069=40.685336,-122.016069
-96071=40.663854,-121.461060
-96073=40.603066,-122.186657
-96074=39.884652,-122.586513
-96075=40.343242,-121.852205
-96076=40.391542,-122.937883
-96080=40.181890,-122.377104
-96084=40.844643,-121.969849
-96085=41.740719,-123.077404
-96086=41.924160,-123.260782
-96087=40.619998,-122.643642
-96088=40.510870,-121.876112
-96090=40.021716,-122.127821
-96091=41.034706,-122.791321
-96092=39.963320,-122.017242
-96093=40.765478,-122.941428
-96094=41.456579,-122.469367
-96096=40.654093,-121.822848
-96097=41.756147,-122.659466
-96101=41.452711,-120.538460
-96103=39.805588,-120.665978
-96104=41.506276,-120.143106
-96105=39.753579,-120.054995
-96106=39.736644,-120.543744
-96107=38.425282,-119.475743
-96108=41.770116,-120.431104
-96109=40.019715,-120.099183
-96110=41.299883,-120.078511
-96111=39.483479,-120.037661
-96112=41.858844,-120.104998
-96113=40.142933,-120.159007
-96114=40.296745,-120.499838
-96115=41.701830,-120.134337
-96116=41.258361,-120.372343
-96117=40.533462,-120.235356
-96118=39.639597,-120.247144
-96119=41.022721,-120.523987
-96120=38.743384,-119.867624
-96121=40.164393,-120.380042
-96122=39.825228,-120.477053
-96123=40.728194,-120.396280
-96124=39.641871,-120.445265
-96125=39.602711,-120.636150
-96126=39.529719,-120.454168
-96128=40.358768,-120.408154
-96129=39.789270,-120.357278
-96130=40.551757,-120.675673
-96132=40.914751,-120.402175
-96133=38.620964,-119.505184
-96134=41.767323,-121.440546
-96135=39.808651,-120.205672
-96136=40.345753,-120.081154
-96137=40.270731,-121.039461
-96140=39.232027,-120.096413
-96141=39.067274,-120.177798
-96142=38.997166,-120.129625
-96143=39.254453,-120.022185
-96145=39.148285,-120.170923
-96146=39.198047,-120.237787
-96148=39.249050,-120.060428
-96150=38.869825,-120.008594
-96155=38.762986,-120.087069
-96161=39.313089,-120.207783
-96701=21.406053,-157.884952
-96703=22.145578,-159.385681
-96704=19.337269,-155.837622
-96705=21.899532,-159.568546
-96706=21.344763,-158.022279
-96707=21.363106,-158.082206
-96708=20.852389,-156.223562
-96710=19.842479,-155.247512
-96712=21.621367,-158.048011
-96713=20.738821,-156.045046
-96714=22.131250,-159.520972
-96716=22.049275,-159.592419
-96717=21.557794,-157.905340
-96719=20.234364,-155.835941
-96720=19.659810,-155.232473
-96722=22.188349,-159.460872
-96725=19.626488,-155.910336
-96726=19.428177,-155.820972
-96727=20.109943,-155.636271
-96728=19.861176,-155.124957
-96729=21.173558,-157.116812
-96730=21.543144,-157.850479
-96731=21.677463,-157.968120
-96732=20.883783,-156.462641
-96734=21.395084,-157.758188
-96737=19.064517,-155.779672
-96738=19.871941,-155.802163
-96740=19.756820,-155.919968
-96741=21.956769,-159.513981
-96742=21.176668,-156.965748
-96743=19.862159,-155.698870
-96744=21.451733,-157.824227
-96746=22.093378,-159.385190
-96747=21.929944,-159.624427
-96748=21.131173,-156.835237
-96749=19.621282,-154.989735
-96750=19.531994,-155.714828
-96751=22.104971,-159.302546
-96752=21.970965,-159.714507
-96753=20.711955,-156.438498
-96754=22.178915,-159.412290
-96755=20.196906,-155.789908
-96756=21.907071,-159.451665
-96757=21.154453,-156.977379
-96759=21.467418,-158.072427
-96760=19.554764,-155.056113
-96761=20.897296,-156.613540
-96762=21.618531,-157.943900
-96763=20.836482,-156.927377
-96764=19.912071,-155.276904
-96765=21.911192,-159.477967
-96766=21.991913,-159.398906
-96768=20.832264,-156.297856
-96769=21.895567,-160.152508
-96770=21.133617,-157.216932
-96771=19.524215,-155.123040
-96772=19.154515,-155.623214
-96773=19.880162,-155.239161
-96774=19.971897,-155.319507
-96776=19.994067,-155.399601
-96777=19.251948,-155.456769
-96778=19.438940,-155.028176
-96779=20.909260,-156.384632
-96780=19.969760,-155.216166
-96781=19.786152,-155.217704
-96782=21.417374,-157.936867
-96783=19.830827,-155.144159
-96785=19.453729,-155.407546
-96786=21.564057,-157.979306
-96789=21.483875,-157.934284
-96790=20.685422,-156.305383
-96791=21.563640,-158.185151
-96792=21.468626,-158.166919
-96793=20.895445,-156.530122
-96795=21.335013,-157.710924
-96796=22.094055,-159.718749
-96797=21.430996,-157.972895
-96799=14.319506,-170.750246
-96813=21.316548,-157.845053
-96814=21.293143,-157.848767
-96815=21.273462,-157.822444
-96816=21.290676,-157.788352
-96817=21.355506,-157.821647
-96818=21.343331,-157.941721
-96819=21.347117,-157.877317
-96821=21.311063,-157.750269
-96822=21.320208,-157.810759
-96825=21.294518,-157.688748
-96826=21.291518,-157.826869
-96850=21.303768,-157.862663
-96853=21.333755,-157.938957
-96857=21.486745,-158.051500
-96859=21.360460,-157.890628
-96860=21.355655,-157.941232
-96863=21.448453,-157.762325
-96910=13.450553,+144.750710
-96913=13.477839,+144.814522
-96915=13.377481,+144.702278
-96916=13.260372,+144.700671
-96917=13.300206,+144.740075
-96921=13.459123,+144.793973
-96928=13.384537,+144.661298
-96929=13.565099,+144.876240
-96932=13.475451,+144.741733
-96950=15.186892,+145.754437
-96951=14.152359,+145.213128
-96952=15.010060,+145.631189
-97001=44.990287,-120.604029
-97002=45.240483,-122.793841
-97004=45.254962,-122.449377
-97005=45.490959,-122.803586
-97006=45.517009,-122.859817
-97007=45.454271,-122.879619
-97008=45.460190,-122.804198
-97009=45.422994,-122.332770
-97011=45.387126,-122.026423
-97013=45.220824,-122.668280
-97014=45.568503,-122.044710
-97015=45.413524,-122.536758
-97016=46.060308,-123.266951
-97017=45.176519,-122.389690
-97018=45.899259,-122.812218
-97019=45.515631,-122.242730
-97020=45.222954,-122.833621
-97021=45.385919,-121.142379
-97022=45.346725,-122.319961
-97023=45.278476,-122.323188
-97024=45.546622,-122.442346
-97026=45.106152,-122.959936
-97027=45.385650,-122.592827
-97028=45.288449,-121.807282
-97029=45.287094,-120.802277
-97030=45.509203,-122.433468
-97031=45.626691,-121.550386
-97032=45.176630,-122.783877
-97033=45.280255,-120.595882
-97034=45.409354,-122.683468
-97035=45.413498,-122.725171
-97037=45.067048,-121.027621
-97038=45.095438,-122.558954
-97039=45.451556,-120.664859
-97040=45.617111,-121.388115
-97041=45.436254,-121.624789
-97042=45.207722,-122.537224
-97045=45.320277,-122.536467
-97048=46.044795,-122.982023
-97049=45.345254,-121.862740
-97050=45.673580,-120.781632
-97051=45.875701,-122.949006
-97053=45.827979,-122.883286
-97054=45.942235,-122.949588
-97055=45.388717,-122.155068
-97056=45.772037,-122.969410
-97057=45.002733,-120.749973
-97058=45.536452,-121.155254
-97060=45.531327,-122.369090
-97062=45.369302,-122.762307
-97063=45.224901,-121.301127
-97064=45.859087,-123.235518
-97065=45.607642,-120.644619
-97067=45.297725,-122.058958
-97068=45.352514,-122.668534
-97070=45.306108,-122.773066
-97071=45.134191,-122.826487
-97080=45.478314,-122.390727
-97086=45.445048,-122.528173
-97089=45.426416,-122.442992
-97101=45.090196,-123.228702
-97102=45.795655,-123.959820
-97103=46.133918,-123.710609
-97106=45.665677,-123.118977
-97107=45.552522,-123.879381
-97108=45.268884,-123.708784
-97109=45.737827,-123.181210
-97110=45.901039,-123.955401
-97111=45.284549,-123.195186
-97112=45.271232,-123.868472
-97113=45.497238,-123.044336
-97114=45.187855,-123.076570
-97115=45.275227,-123.039460
-97116=45.580822,-123.165693
-97117=45.631444,-123.287900
-97118=45.560774,-123.911344
-97119=45.468863,-123.200213
-97121=46.171919,-123.951838
-97122=45.161422,-123.825780
-97123=45.440165,-122.980083
-97124=45.569079,-122.946701
-97125=45.671165,-123.196980
-97127=45.246126,-123.111352
-97128=45.211917,-123.282091
-97130=45.671507,-123.933418
-97131=45.736903,-123.817024
-97132=45.324219,-122.987330
-97133=45.702104,-123.029779
-97134=45.457577,-123.977041
-97135=45.221862,-123.962705
-97136=45.630592,-123.920769
-97137=45.219509,-122.948493
-97138=45.853556,-123.569342
-97140=45.353080,-122.865845
-97141=45.510729,-123.743368
-97144=45.741563,-123.300243
-97145=45.851149,-123.950728
-97146=46.129698,-123.945911
-97147=45.688003,-123.878633
-97148=45.358403,-123.248478
-97149=45.112951,-123.939044
-97201=45.507856,-122.690794
-97202=45.482541,-122.643935
-97203=45.603549,-122.737905
-97204=45.518371,-122.673946
-97205=45.520562,-122.710231
-97206=45.482433,-122.598605
-97208=45.528666,-122.678981
-97209=45.531124,-122.683951
-97210=45.544163,-122.726626
-97211=45.581132,-122.637305
-97212=45.544236,-122.643468
-97213=45.538194,-122.600014
-97214=45.514672,-122.643014
-97215=45.515121,-122.600627
-97216=45.513887,-122.558403
-97217=45.601815,-122.700798
-97218=45.576236,-122.600873
-97219=45.454231,-122.698526
-97220=45.550024,-122.559297
-97221=45.498278,-122.728839
-97222=45.440949,-122.618111
-97223=45.440290,-122.776604
-97224=45.405501,-122.795056
-97225=45.502847,-122.770212
-97227=45.543386,-122.678100
-97229=45.551031,-122.809275
-97230=45.557757,-122.505268
-97231=45.687629,-122.824209
-97232=45.528929,-122.643927
-97233=45.515307,-122.502168
-97236=45.483213,-122.510515
-97239=45.489938,-122.690453
-97266=45.482967,-122.557619
-97267=45.408427,-122.612867
-97301=44.948780,-123.003655
-97302=44.903103,-123.064528
-97303=45.030354,-123.023689
-97304=45.006596,-123.111691
-97305=45.014338,-122.928719
-97306=44.842904,-123.094751
-97317=44.902603,-122.907374
-97321=44.653450,-123.139526
-97322=44.627553,-123.017613
-97324=44.364996,-123.623152
-97325=44.833821,-122.852230
-97326=44.619481,-123.602815
-97327=44.375035,-122.947586
-97329=44.411265,-122.384620
-97330=44.647997,-123.259576
-97331=44.564604,-123.280419
-97333=44.468069,-123.293831
-97338=44.926618,-123.347413
-97341=44.809324,-124.051239
-97342=44.739272,-121.878966
-97343=44.575254,-123.751490
-97344=44.869102,-123.464616
-97345=44.411545,-122.578909
-97346=44.788363,-122.335327
-97347=45.077114,-123.656393
-97348=44.383294,-123.122261
-97350=44.631459,-121.863760
-97351=44.815295,-123.129486
-97352=44.749395,-123.027593
-97355=44.532241,-122.821044
-97357=44.752668,-123.825597
-97358=44.804124,-122.413624
-97360=44.766270,-122.499397
-97361=44.766836,-123.344975
-97362=45.063492,-122.771310
-97364=44.998860,-123.986853
-97365=44.666397,-124.010783
-97366=44.575679,-124.058352
-97367=44.914756,-123.974231
-97368=45.024376,-123.903116
-97369=44.761507,-124.051772
-97370=44.563748,-123.445455
-97371=44.990697,-123.190756
-97373=45.057040,-122.771754
-97374=44.675912,-122.778135
-97375=44.977323,-122.596342
-97376=44.498235,-123.975013
-97377=44.463294,-123.105998
-97378=45.070687,-123.421129
-97380=44.786018,-123.929969
-97381=44.939469,-122.720723
-97383=44.794464,-122.721862
-97384=44.790993,-122.618879
-97385=44.865853,-122.723550
-97386=44.359177,-122.727043
-97388=44.903514,-124.017859
-97389=44.533484,-123.089786
-97390=44.309413,-123.828824
-97391=44.624538,-123.898368
-97392=44.795611,-122.930376
-97394=44.443864,-123.907156
-97396=45.104595,-123.549273
-97401=44.067988,-123.080181
-97402=44.047736,-123.230905
-97403=44.035821,-123.052976
-97404=44.105457,-123.133235
-97405=43.939557,-123.192759
-97406=42.615862,-124.021255
-97408=44.142995,-123.058241
-97410=42.798940,-123.147871
-97411=43.075636,-124.359381
-97412=44.204915,-123.548069
-97413=44.124779,-122.072275
-97414=42.961295,-124.203481
-97415=42.084386,-124.174762
-97416=43.034121,-123.686734
-97417=42.947656,-123.230688
-97419=44.180778,-123.413186
-97420=43.350966,-124.136922
-97423=43.193667,-124.173269
-97424=43.740810,-123.018593
-97426=43.898930,-123.029954
-97429=42.968299,-123.063500
-97430=44.174840,-123.705193
-97431=43.869538,-122.841490
-97434=43.621289,-122.703220
-97435=43.690204,-123.328474
-97436=43.640015,-123.584772
-97437=44.093110,-123.408747
-97438=43.944242,-122.682456
-97439=44.090182,-124.048338
-97441=43.751829,-124.166146
-97442=42.780374,-123.425369
-97443=43.250484,-123.004257
-97444=42.506103,-124.337299
-97446=44.260727,-123.054648
-97447=43.155248,-122.210461
-97448=44.208328,-123.279908
-97449=43.563367,-124.040505
-97450=42.905939,-124.397057
-97451=43.815227,-123.268019
-97452=43.874112,-122.750081
-97453=43.980238,-123.850173
-97454=44.221508,-122.821646
-97455=43.968553,-122.919656
-97456=44.339248,-123.366418
-97457=43.064514,-123.229472
-97458=43.048844,-124.008543
-97459=43.484217,-124.182735
-97461=44.108529,-123.479762
-97462=43.489968,-123.379201
-97463=43.740681,-122.387167
-97465=42.763521,-124.344681
-97466=42.848945,-124.085233
-97467=43.815887,-123.823914
-97469=42.910677,-123.445884
-97470=43.250675,-123.242413
-97471=43.218335,-123.487741
-97473=43.675910,-123.852596
-97476=42.842229,-124.402796
-97477=44.058465,-123.011597
-97478=44.089156,-122.842269
-97479=43.390350,-123.208305
-97480=44.122276,-123.825169
-97481=43.115279,-123.565980
-97484=42.940021,-122.850300
-97486=43.383323,-123.531642
-97487=43.988768,-123.387210
-97488=44.128632,-122.417466
-97489=44.164724,-122.620682
-97490=44.004140,-123.612013
-97492=43.718382,-122.484809
-97493=43.889588,-124.024907
-97494=43.330404,-123.328081
-97495=43.281038,-123.315196
-97496=43.066483,-123.472707
-97497=42.665706,-123.425495
-97498=44.284611,-124.022676
-97499=43.595025,-123.248065
-97501=42.265992,-122.900842
-97502=42.414574,-122.954536
-97503=42.604691,-122.923719
-97504=42.327947,-122.800496
-97520=42.182373,-122.577113
-97522=42.574815,-122.530566
-97523=42.123094,-123.566871
-97524=42.467463,-122.647726
-97525=42.450689,-123.060929
-97526=42.535682,-123.338285
-97527=42.371140,-123.413622
-97530=42.152148,-123.057499
-97531=42.199844,-123.645659
-97532=42.573758,-123.521009
-97534=42.118976,-123.786285
-97535=42.267738,-122.811447
-97536=42.781908,-122.494698
-97537=42.546408,-123.137820
-97538=42.270542,-123.567420
-97539=42.576424,-122.786219
-97540=42.192697,-122.817256
-97541=42.774879,-122.755413
-97543=42.375062,-123.562128
-97544=42.161377,-123.302418
-97601=42.443499,-122.075580
-97603=42.152018,-121.683526
-97604=42.953862,-122.213146
-97620=42.204181,-119.787880
-97621=42.469228,-121.293655
-97622=42.419191,-121.026234
-97623=42.202156,-121.271139
-97624=43.003246,-121.635689
-97625=42.314770,-121.580890
-97626=42.667350,-122.027910
-97627=42.140336,-122.049929
-97630=42.331353,-120.367452
-97632=42.036487,-121.433906
-97633=42.034140,-121.562829
-97634=42.128304,-121.814925
-97635=41.929992,-120.294195
-97636=42.616637,-120.514464
-97637=42.703377,-119.890062
-97638=43.135955,-120.987247
-97639=42.447776,-121.429035
-97640=42.847889,-120.663340
-97641=43.260266,-120.513837
-97701=44.112338,-121.206340
-97702=44.000626,-121.233812
-97707=43.826223,-121.492124
-97710=42.174574,-118.470845
-97711=44.705249,-120.664310
-97712=43.789447,-120.456155
-97720=43.585167,-118.887819
-97721=42.526339,-118.446078
-97722=42.948090,-118.716044
-97730=44.502297,-121.647176
-97731=43.145997,-121.797480
-97732=43.397290,-118.443106
-97733=43.371249,-121.999522
-97734=44.542438,-121.336146
-97735=43.410690,-120.926174
-97736=42.741882,-119.006803
-97737=43.496880,-121.743673
-97738=43.484045,-119.156464
-97739=43.694658,-121.460906
-97741=44.657725,-121.054464
-97750=44.658141,-120.196695
-97751=44.145500,-119.869134
-97752=44.142920,-120.254389
-97753=44.240512,-121.018129
-97754=44.159640,-120.585505
-97756=44.283326,-121.216724
-97758=43.338744,-119.872224
-97759=44.500616,-121.898499
-97760=44.376205,-121.243587
-97761=44.838526,-121.261509
-97801=45.670806,-118.823573
-97810=45.713979,-118.457961
-97812=45.575159,-120.249897
-97813=45.850406,-118.528084
-97814=44.827571,-117.757799
-97817=44.728770,-118.605928
-97818=45.785367,-119.890171
-97819=44.485347,-117.760392
-97820=44.072549,-119.472928
-97823=45.239934,-120.216766
-97824=45.354301,-117.756470
-97825=44.385126,-119.496273
-97826=45.664296,-119.232316
-97827=45.575424,-117.838050
-97828=45.716563,-117.221992
-97830=44.966553,-120.183153
-97833=44.928889,-118.014879
-97834=44.972275,-117.161191
-97835=45.910007,-118.786544
-97836=45.321152,-119.474620
-97837=44.556661,-118.067106
-97838=45.853004,-119.287265
-97839=45.591171,-119.593040
-97840=44.884599,-116.918444
-97841=45.465116,-117.944925
-97842=45.399271,-116.736989
-97843=45.502322,-119.902866
-97844=45.884150,-119.548836
-97845=44.401824,-118.903060
-97846=45.462699,-117.039586
-97848=44.722177,-119.580554
-97850=45.303538,-118.113278
-97856=44.815212,-119.125255
-97857=45.384667,-117.480138
-97859=45.526719,-118.421455
-97862=45.922063,-118.316063
-97864=44.805466,-119.435932
-97865=44.461466,-119.180040
-97867=45.077654,-117.993762
-97868=45.409294,-118.853582
-97869=44.397563,-118.633979
-97870=44.787989,-117.186563
-97873=44.132013,-119.002884
-97874=44.777573,-119.867594
-97875=45.818549,-119.132853
-97876=45.516439,-118.035678
-97877=44.711742,-118.410517
-97880=45.088669,-118.882506
-97882=45.897431,-119.366071
-97883=45.192423,-117.634155
-97884=44.455344,-118.222230
-97885=45.655669,-117.511704
-97886=45.802308,-118.272410
-97901=43.621445,-117.107275
-97903=44.246805,-117.646977
-97904=43.886179,-118.522929
-97905=44.573820,-117.459512
-97906=43.537039,-117.774678
-97907=44.419501,-117.345514
-97908=44.312378,-117.927886
-97909=44.246692,-117.418958
-97910=42.749076,-117.511459
-97911=43.736482,-118.041388
-97913=43.613589,-117.323286
-97914=44.113619,-117.084162
-97918=44.037114,-117.351072
-97920=44.072181,-117.854282
-98001=47.310617,-122.263291
-98002=47.308286,-122.216812
-98003=47.304801,-122.316969
-98004=47.618337,-122.205341
-98005=47.614533,-122.168798
-98006=47.557627,-122.151005
-98007=47.613825,-122.144365
-98008=47.605797,-122.099118
-98010=47.311990,-122.000503
-98011=47.753344,-122.201952
-98012=47.841376,-122.198939
-98014=47.662086,-121.891870
-98019=47.734333,-121.855307
-98020=47.802344,-122.374193
-98021=47.792530,-122.208207
-98022=47.216372,-121.912906
-98023=47.311491,-122.362810
-98024=47.573424,-121.899182
-98026=47.840735,-122.332660
-98027=47.493732,-121.998724
-98028=47.755665,-122.248061
-98029=47.557085,-122.007748
-98030=47.367214,-122.198051
-98031=47.405479,-122.195772
-98032=47.391942,-122.257192
-98033=47.675982,-122.193578
-98034=47.715769,-122.213748
-98036=47.809708,-122.280394
-98037=47.839223,-122.285464
-98038=47.419378,-121.958008
-98039=47.631695,-122.240405
-98040=47.567779,-122.232795
-98042=47.367737,-122.117029
-98043=47.791111,-122.307790
-98045=47.388327,-121.606221
-98047=47.261769,-122.248889
-98050=47.545269,-121.939288
-98051=47.346210,-121.881291
-98052=47.680990,-122.120531
-98053=47.669256,-122.008454
-98055=47.446982,-122.201521
-98056=47.512527,-122.190248
-98057=47.472020,-122.221900
-98058=47.442737,-122.123973
-98059=47.499429,-122.110157
-98065=47.584223,-121.791951
-98068=47.431696,-121.374163
-98070=47.407196,-122.473322
-98072=47.760785,-122.130531
-98074=47.622542,-122.044210
-98075=47.586092,-122.037436
-98077=47.752379,-122.060283
-98087=47.860085,-122.267238
-98092=47.287074,-122.113839
-98101=47.610902,-122.336422
-98102=47.637140,-122.321891
-98103=47.678255,-122.338152
-98104=47.601884,-122.329459
-98105=47.659861,-122.284977
-98106=47.544034,-122.349874
-98107=47.667527,-122.377551
-98108=47.534862,-122.305794
-98109=47.631863,-122.344267
-98110=47.646967,-122.534561
-98112=47.632810,-122.288511
-98115=47.685746,-122.281589
-98116=47.574245,-122.400222
-98117=47.687761,-122.384870
-98118=47.540246,-122.268545
-98119=47.638679,-122.370946
-98121=47.615192,-122.350581
-98122=47.611046,-122.293207
-98125=47.716513,-122.295829
-98126=47.555647,-122.379590
-98133=47.740485,-122.342826
-98134=47.578096,-122.337860
-98136=47.536464,-122.394409
-98144=47.585627,-122.291960
-98146=47.500058,-122.357848
-98148=47.444098,-122.324859
-98154=47.606211,-122.333792
-98155=47.754413,-122.300477
-98158=47.449678,-122.307657
-98164=47.605962,-122.332029
-98166=47.451576,-122.352986
-98168=47.489569,-122.299960
-98174=47.604569,-122.335359
-98177=47.742239,-122.376608
-98178=47.499387,-122.243852
-98188=47.446413,-122.272098
-98195=47.649339,-122.310294
-98198=47.391319,-122.314971
-98199=47.651371,-122.407349
-98201=48.006311,-122.210044
-98203=47.945519,-122.231096
-98204=47.901362,-122.260891
-98205=47.988595,-122.150148
-98207=47.987720,-122.223307
-98208=47.901777,-122.186999
-98220=48.684945,-122.195194
-98221=48.505025,-122.659285
-98222=48.570667,-122.817463
-98223=48.217120,-121.953540
-98224=47.595859,-121.471411
-98225=48.750940,-122.501286
-98226=48.798606,-122.445693
-98229=48.696127,-122.413538
-98230=48.953455,-122.705013
-98232=48.570552,-122.411065
-98233=48.500911,-122.345655
-98235=48.462505,-122.233980
-98236=47.948393,-122.412822
-98237=48.556708,-121.592386
-98238=48.335389,-122.344620
-98239=48.196498,-122.657954
-98240=48.948225,-122.620684
-98241=48.203972,-121.140144
-98243=48.608978,-123.003654
-98244=48.831811,-121.933829
-98245=48.619663,-122.871770
-98247=48.911829,-122.330175
-98248=48.864419,-122.619419
-98249=48.014236,-122.542794
-98250=48.571293,-123.113449
-98251=47.911529,-121.606417
-98252=48.072560,-121.689606
-98253=48.092397,-122.576537
-98255=48.522118,-121.989403
-98256=47.821484,-121.406516
-98257=48.406025,-122.512147
-98258=48.044170,-122.077404
-98260=48.036309,-122.452564
-98261=48.482492,-122.883959
-98262=48.675104,-122.645925
-98263=48.523789,-122.065596
-98264=48.950253,-122.459792
-98266=48.963594,-122.123034
-98267=48.438734,-121.296339
-98270=48.056723,-122.146904
-98271=48.089968,-122.237681
-98272=47.848583,-121.894899
-98273=48.402754,-122.376148
-98274=48.348771,-122.145467
-98275=47.916786,-122.302643
-98276=48.926701,-122.326183
-98277=48.316859,-122.622619
-98278=48.339706,-122.671656
-98279=48.636509,-122.818264
-98280=48.608033,-122.910155
-98281=48.991930,-123.051184
-98282=48.213258,-122.500085
-98283=48.802055,-121.260324
-98284=48.546832,-122.135222
-98286=48.568814,-122.957539
-98288=47.661553,-121.278786
-98290=47.955367,-121.978502
-98292=48.216792,-122.314390
-98294=47.874166,-121.754323
-98295=48.984027,-122.193118
-98296=47.840783,-122.101084
-98297=48.702062,-123.026507
-98303=47.157405,-122.693536
-98304=46.884601,-121.736645
-98305=48.062891,-124.439072
-98310=47.591896,-122.626241
-98311=47.631197,-122.631017
-98312=47.573702,-122.786447
-98314=47.556287,-122.637118
-98315=47.724550,-122.716011
-98320=47.718543,-122.966923
-98321=47.152606,-122.071738
-98323=47.043116,-121.827633
-98325=47.966641,-122.759706
-98326=48.179735,-124.411660
-98327=47.103909,-122.665131
-98328=46.865890,-122.157916
-98329=47.360807,-122.744173
-98330=46.775910,-122.169011
-98331=47.777349,-124.191674
-98332=47.372495,-122.595828
-98333=47.257686,-122.646552
-98335=47.296947,-122.623661
-98336=46.597949,-122.077799
-98337=47.568714,-122.631558
-98338=47.034316,-122.276854
-98339=48.024005,-122.749033
-98340=47.910095,-122.571060
-98342=47.755262,-122.511482
-98345=47.698622,-122.623850
-98346=47.820849,-122.525462
-98349=47.273147,-122.764515
-98350=47.906402,-124.621813
-98351=47.199661,-122.774258
-98353=47.538640,-122.492613
-98354=47.251994,-122.317289
-98355=46.703839,-122.039922
-98356=46.561214,-122.290425
-98357=48.333855,-124.635404
-98358=48.063796,-122.713163
-98359=47.431079,-122.574916
-98360=47.051415,-122.153242
-98361=46.538448,-121.504819
-98362=47.930621,-123.365101
-98363=48.003791,-123.823238
-98364=47.847110,-122.588364
-98365=47.884858,-122.701425
-98366=47.541253,-122.577029
-98367=47.461156,-122.698000
-98368=48.034402,-122.838953
-98370=47.753859,-122.626792
-98371=47.199448,-122.323541
-98372=47.205607,-122.266088
-98373=47.148479,-122.324136
-98374=47.129080,-122.263923
-98375=47.103181,-122.333406
-98376=47.846837,-122.852262
-98377=46.525584,-121.916504
-98380=47.578608,-122.902886
-98381=48.273676,-124.474857
-98382=48.023189,-123.106245
-98383=47.661688,-122.715469
-98385=47.136201,-122.089555
-98387=47.060925,-122.388908
-98388=47.209740,-122.684422
-98390=47.209523,-122.227504
-98391=47.177102,-122.166177
-98392=47.732280,-122.562318
-98394=47.310560,-122.778480
-98396=47.094772,-122.001717
-98402=47.250158,-122.439030
-98403=47.265966,-122.458532
-98404=47.208981,-122.411638
-98405=47.245647,-122.472399
-98406=47.264107,-122.512591
-98407=47.290365,-122.517747
-98408=47.197399,-122.446518
-98409=47.210957,-122.481577
-98416=47.262521,-122.481199
-98418=47.223229,-122.446523
-98421=47.260637,-122.400209
-98422=47.290368,-122.392395
-98424=47.235341,-122.354192
-98430=47.117835,-122.567171
-98433=47.112811,-122.589062
-98438=47.131631,-122.496967
-98439=47.132584,-122.512721
-98443=47.205004,-122.372661
-98444=47.153041,-122.448831
-98445=47.139967,-122.409902
-98446=47.130032,-122.379451
-98447=47.144096,-122.443441
-98465=47.251761,-122.536065
-98466=47.224432,-122.541082
-98467=47.203279,-122.567719
-98498=47.159194,-122.553122
-98499=47.168693,-122.503347
-98501=46.974504,-122.875987
-98502=47.087390,-123.022009
-98503=47.022032,-122.797103
-98506=47.108292,-122.870623
-98512=46.975003,-123.063616
-98513=46.977030,-122.733942
-98516=47.109685,-122.794261
-98520=47.205638,-123.754329
-98524=47.355338,-122.861105
-98526=47.454192,-123.990751
-98527=46.585525,-123.924687
-98528=47.445724,-122.896929
-98530=46.791231,-122.821194
-98531=46.730437,-122.902774
-98532=46.626290,-123.052671
-98533=46.661160,-122.395587
-98535=47.106431,-124.137951
-98536=47.194976,-124.104372
-98537=46.832400,-123.597466
-98538=46.482768,-123.146135
-98541=47.060731,-123.389742
-98542=46.525203,-122.790632
-98544=46.738971,-123.026988
-98546=47.319431,-122.924974
-98547=46.783816,-124.036386
-98548=47.382952,-123.411582
-98550=47.093788,-123.925662
-98552=47.315176,-123.924198
-98555=47.533400,-123.063352
-98557=47.044210,-123.268321
-98558=46.933941,-122.557218
-98559=46.958822,-123.327364
-98560=47.309541,-123.422799
-98562=47.237896,-124.203548
-98563=47.193599,-123.615371
-98564=46.449477,-122.419650
-98565=46.578315,-122.901965
-98568=46.855347,-123.313856
-98569=46.993744,-124.136704
-98570=46.630713,-122.650947
-98571=47.194635,-124.170850
-98572=46.546338,-123.314084
-98575=47.415917,-123.802838
-98576=46.837153,-122.638359
-98577=46.641849,-123.610389
-98579=46.788202,-123.125481
-98580=46.998953,-122.521882
-98581=46.357874,-123.067314
-98582=46.523681,-122.625742
-98583=47.000882,-123.486663
-98584=47.238866,-123.145661
-98585=46.550722,-122.477076
-98586=46.551443,-123.830811
-98587=47.308594,-124.202012
-98588=47.455575,-123.024771
-98589=46.833445,-122.795318
-98590=46.707873,-123.998528
-98591=46.442319,-122.747383
-98592=47.325941,-123.070409
-98593=46.402675,-123.010116
-98595=46.888036,-124.113375
-98596=46.492258,-122.952675
-98597=46.844426,-122.492804
-98601=45.943435,-122.362522
-98602=45.867106,-121.265491
-98603=46.055519,-122.414757
-98604=45.805747,-122.510777
-98605=45.776884,-121.665502
-98606=45.729741,-122.456373
-98607=45.642413,-122.379611
-98610=45.865890,-122.065218
-98611=46.305133,-122.900688
-98612=46.215680,-123.325266
-98613=45.736724,-120.965657
-98614=46.296990,-123.909315
-98616=46.253943,-122.180716
-98617=45.643032,-121.167493
-98619=45.975881,-121.274747
-98620=45.874447,-120.775830
-98621=46.379369,-123.538048
-98624=46.351433,-123.992452
-98625=46.037251,-122.733384
-98626=46.172049,-122.773959
-98628=45.887853,-121.081948
-98629=45.877319,-122.619409
-98631=46.404766,-124.031543
-98632=46.209509,-123.056153
-98635=45.750031,-121.185577
-98638=46.394046,-123.761307
-98639=45.669909,-121.989665
-98640=46.582723,-124.027257
-98641=46.546416,-124.029936
-98642=45.807695,-122.693908
-98643=46.295018,-123.617602
-98644=46.329607,-124.056969
-98645=46.331865,-122.760081
-98647=46.315246,-123.401355
-98648=45.706172,-121.956388
-98649=46.314143,-122.534600
-98650=45.947869,-121.540782
-98651=45.739924,-121.583462
-98660=45.678996,-122.720499
-98661=45.640067,-122.625018
-98662=45.688497,-122.577850
-98663=45.657396,-122.662726
-98664=45.619510,-122.577179
-98665=45.679501,-122.660560
-98670=45.858976,-121.140927
-98671=45.614420,-122.238447
-98672=45.839047,-121.451833
-98673=45.656199,-121.028435
-98674=45.951267,-122.665541
-98675=45.828452,-122.342925
-98682=45.673209,-122.481745
-98683=45.603287,-122.510170
-98684=45.630556,-122.514839
-98685=45.715211,-122.693165
-98686=45.723392,-122.624397
-98801=47.423594,-120.336633
-98802=47.486090,-120.180328
-98811=47.713843,-120.376298
-98812=48.152370,-119.743479
-98813=48.040679,-119.560504
-98814=48.206897,-120.158256
-98815=47.460575,-120.478283
-98816=48.002900,-120.339790
-98817=47.792389,-119.993594
-98819=48.615477,-119.821054
-98821=47.549717,-120.558613
-98822=47.979570,-120.623828
-98823=47.308654,-119.649345
-98824=47.077793,-119.858684
-98826=47.783145,-120.843168
-98827=48.868662,-119.770722
-98828=47.310078,-120.178258
-98829=48.302708,-119.811015
-98830=47.895366,-119.523246
-98831=47.959740,-120.103201
-98832=47.371630,-119.024249
-98833=48.772938,-120.640178
-98834=48.120299,-120.066506
-98836=47.471923,-120.438475
-98837=47.149902,-119.305972
-98840=48.315129,-119.579942
-98841=48.359648,-119.268574
-98843=47.756786,-120.057948
-98844=48.927280,-119.227952
-98845=47.431921,-119.937536
-98846=48.014734,-119.971145
-98847=47.419699,-120.643158
-98848=47.168643,-119.842939
-98849=48.540990,-119.409523
-98850=47.309924,-120.075983
-98851=47.413886,-119.432230
-98852=48.250790,-120.529503
-98853=47.459898,-119.263784
-98855=48.674509,-119.253009
-98856=48.343268,-120.263948
-98857=46.982733,-119.057609
-98858=47.649353,-119.901464
-98859=48.797895,-118.956432
-98860=47.461956,-119.200475
-98862=48.602734,-120.320530
-98901=46.722625,-120.406039
-98902=46.596673,-120.533851
-98903=46.543655,-121.023317
-98908=46.615206,-120.724113
-98921=46.431110,-120.318830
-98922=47.267033,-120.878981
-98923=46.666324,-120.717630
-98925=47.257288,-121.270878
-98926=47.014195,-120.458691
-98929=46.881702,-121.285147
-98930=46.269100,-119.891977
-98932=46.332713,-120.156231
-98933=46.402225,-120.631233
-98934=46.981791,-120.414927
-98935=46.132575,-120.086236
-98936=46.538212,-120.143700
-98937=46.792772,-121.226151
-98938=46.388203,-120.094179
-98939=46.496847,-120.465789
-98940=47.476588,-121.080477
-98941=47.223214,-120.982011
-98942=46.801335,-120.664810
-98943=47.183930,-120.965394
-98944=46.497628,-119.626676
-98946=47.080290,-120.724620
-98947=46.687471,-120.801581
-98948=46.297854,-120.312566
-98950=46.896466,-119.988074
-98951=46.456028,-120.513604
-98952=46.356211,-120.763066
-98953=46.442291,-120.226815
-99001=47.636490,-117.586305
-99003=47.920209,-117.292679
-99004=47.420062,-117.631165
-99005=47.844261,-117.366196
-99006=47.984122,-117.502192
-99008=47.503335,-117.933438
-99009=48.026086,-117.252446
-99011=47.618832,-117.648158
-99012=47.382042,-117.192777
-99013=47.893717,-117.830817
-99016=47.597285,-117.121042
-99017=47.184129,-117.886758
-99018=47.289792,-117.154853
-99019=47.643175,-117.075620
-99020=47.562601,-117.496601
-99021=47.848267,-117.189612
-99022=47.599780,-117.708985
-99023=47.561082,-117.171788
-99025=47.793859,-117.075344
-99026=47.811345,-117.626540
-99027=47.710128,-117.127560
-99029=47.693841,-117.831006
-99030=47.484075,-117.110203
-99031=47.423494,-117.362419
-99032=47.327315,-118.033609
-99033=47.232328,-117.099265
-99034=47.872252,-117.751006
-99036=47.525291,-117.275917
-99037=47.635784,-117.197605
-99039=47.344652,-117.265585
-99040=47.898470,-118.003679
-99101=48.320308,-117.920660
-99102=46.792025,-117.250253
-99103=47.756005,-118.927608
-99105=46.868175,-118.074226
-99109=48.292946,-117.698546
-99110=48.012086,-117.576352
-99111=46.837729,-117.420749
-99113=46.593490,-117.189782
-99114=48.655198,-117.735834
-99115=47.646834,-119.416689
-99116=48.030941,-118.927459
-99117=47.722069,-118.532002
-99118=48.896541,-118.638565
-99119=48.509215,-117.314900
-99121=48.936213,-118.469224
-99122=47.687849,-118.208232
-99123=47.845781,-119.144468
-99124=47.999935,-118.952851
-99125=46.931040,-117.765154
-99126=48.730100,-117.971921
-99128=47.097950,-117.081344
-99129=48.015253,-118.192667
-99130=46.997309,-117.184125
-99131=48.277409,-118.131392
-99133=48.020659,-119.054066
-99134=47.398104,-118.277666
-99135=47.664805,-119.099296
-99136=46.674643,-117.955526
-99137=48.147832,-118.115213
-99138=48.205843,-118.395823
-99139=48.752947,-117.407626
-99140=48.111429,-118.646173
-99141=48.736990,-118.138691
-99143=46.765536,-117.848245
-99144=47.377749,-118.504290
-99146=48.957548,-118.297520
-99147=47.873716,-118.509373
-99148=48.100470,-117.597004
-99149=47.217126,-117.463958
-99150=48.804513,-118.556841
-99151=48.664470,-118.063636
-99152=48.844579,-117.396802
-99153=48.910804,-117.165813
-99154=47.389734,-118.365925
-99155=48.249063,-118.965682
-99156=48.185851,-117.196814
-99157=48.820843,-117.933374
-99158=47.130275,-117.247421
-99159=47.326840,-118.765870
-99160=48.838710,-118.306323
-99161=46.903644,-117.148073
-99163=46.730331,-117.218027
-99164=46.730917,-117.152568
-99166=48.575363,-118.664374
-99167=48.419231,-118.120985
-99169=47.105898,-118.340218
-99170=47.235823,-117.393720
-99171=47.098248,-117.653890
-99173=48.036972,-117.863003
-99174=47.010562,-117.358687
-99176=47.080905,-117.423890
-99179=46.494979,-117.125923
-99180=48.292667,-117.342169
-99181=48.147785,-117.786618
-99185=47.749432,-118.717317
-99201=47.662360,-117.437255
-99202=47.657497,-117.378970
-99203=47.628641,-117.402997
-99204=47.645706,-117.427263
-99205=47.696825,-117.444879
-99206=47.629296,-117.254657
-99207=47.688750,-117.387464
-99208=47.788172,-117.480897
-99212=47.664705,-117.310362
-99216=47.686363,-117.216681
-99217=47.740709,-117.261376
-99218=47.758924,-117.409388
-99223=47.589407,-117.344623
-99224=47.652410,-117.526046
-99301=46.379233,-118.953781
-99320=46.265888,-119.487243
-99321=46.878598,-119.909356
-99322=45.943983,-120.180774
-99323=46.190771,-118.872845
-99324=46.042579,-118.386845
-99326=46.650082,-118.853349
-99328=46.263368,-117.865424
-99329=46.156353,-118.145294
-99330=46.489767,-119.043221
-99333=46.685782,-118.172717
-99335=46.647174,-118.439679
-99336=46.214050,-119.175728
-99337=46.073223,-119.090740
-99338=46.147859,-119.273473
-99341=46.912889,-118.653031
-99343=46.593609,-119.180088
-99344=46.820069,-119.178054
-99345=45.941953,-119.690097
-99346=45.997560,-119.298739
-99347=46.427734,-117.565388
-99348=46.382239,-118.470882
-99349=46.731191,-119.700579
-99350=46.183349,-119.696208
-99352=46.252840,-119.287852
-99353=46.313808,-119.387768
-99354=46.331677,-119.299782
-99356=45.823750,-120.319723
-99357=46.891310,-119.661625
-99359=46.548514,-118.094765
-99360=46.090217,-118.663029
-99361=46.236551,-118.143839
-99362=46.101083,-118.313609
-99363=46.060441,-118.883545
-99371=46.800013,-118.311494
-99401=46.087207,-117.249856
-99402=46.190773,-117.127417
-99403=46.362367,-117.282597
-99501=61.220018,-149.855702
-99502=61.163643,-149.996609
-99503=62.043951,-158.175667
-99504=61.204600,-149.746095
-99505=61.256851,-149.602697
-99506=61.253463,-149.810757
-99507=61.147656,-149.753642
-99508=61.201400,-149.817502
-99510=70.101885,-149.867360
-99513=61.214772,-149.885658
-99515=61.116381,-149.890375
-99516=61.079371,-149.709857
-99517=61.190346,-149.939108
-99518=61.159577,-149.884627
-99519=69.216237,-146.787467
-99540=60.990236,-149.419827
-99546=51.829438,-176.629994
-99547=52.213091,-174.215643
-99548=56.237395,-158.751683
-99549=56.964177,-158.580635
-99550=57.904108,-153.042685
-99551=60.902886,-161.421759
-99552=60.909581,-161.227108
-99553=54.117318,-165.830835
-99554=62.711160,-164.644712
-99555=59.260320,-158.654678
-99556=59.899955,-151.570388
-99557=61.420118,-156.044199
-99558=62.630995,-160.213725
-99559=60.814155,-161.850810
-99561=60.151220,-164.251364
-99563=61.531066,-165.597199
-99564=56.304665,-158.396180
-99565=56.304582,-158.498119
-99566=61.270907,-142.605516
-99567=61.299351,-149.021091
-99568=60.208902,-151.404202
-99569=58.805147,-158.529967
-99571=55.215790,-162.775829
-99572=60.529893,-149.952595
-99573=61.712313,-145.951769
-99574=60.893995,-145.109037
-99575=61.796853,-158.081066
-99576=60.261108,-159.092876
-99577=61.201420,-149.248298
-99578=60.214240,-162.030362
-99579=58.202719,-157.408565
-99580=59.365538,-157.491032
-99581=62.785183,-164.566301
-99583=54.890097,-163.410644
-99585=61.918711,-162.288486
-99586=62.832803,-143.310387
-99587=60.965808,-148.876643
-99588=62.402203,-146.945594
-99589=59.127491,-161.568774
-99590=62.896043,-160.112961
-99591=56.582331,-169.635254
-99602=62.187016,-159.856068
-99603=59.538519,-151.186927
-99604=61.536383,-166.122887
-99605=60.787311,-149.554873
-99606=59.851328,-154.555142
-99607=61.757492,-159.783535
-99609=60.864056,-162.537863
-99610=60.264870,-150.610562
-99611=60.600458,-151.106322
-99612=55.058778,-162.273717
-99613=59.010266,-155.901780
-99614=59.936452,-164.061751
-99615=57.650481,-153.261105
-99620=63.028752,-163.535727
-99621=60.793216,-161.431390
-99622=59.874234,-163.205541
-99624=57.587682,-153.913088
-99625=59.290256,-156.652476
-99626=61.516968,-160.364657
-99627=63.454351,-154.735702
-99628=58.957432,-159.212087
-99630=60.370781,-166.266749
-99631=60.615355,-149.372783
-99632=62.112344,-163.664390
-99633=58.787581,-156.892509
-99634=60.682928,-161.998779
-99636=59.488161,-157.290500
-99637=60.552274,-165.108110
-99638=52.897770,-168.943406
-99639=60.061709,-151.406462
-99640=60.002567,-155.390747
-99641=60.882466,-162.463637
-99643=57.220076,-153.330288
-99644=57.910232,-152.382974
-99645=61.624490,-148.979752
-99647=59.878543,-154.072088
-99648=55.930603,-159.146786
-99649=57.500442,-157.281038
-99650=61.946621,-162.878319
-99651=59.000685,-161.688071
-99652=61.529768,-149.980916
-99653=60.198400,-154.275431
-99654=61.449113,-149.900744
-99655=59.741444,-161.887384
-99656=61.927869,-157.624648
-99657=61.728284,-161.669355
-99658=62.091670,-163.254386
-99659=63.464293,-162.129902
-99660=57.179041,-170.325068
-99661=55.247147,-160.685152
-99662=61.791821,-165.961546
-99663=59.401190,-151.624586
-99664=60.076335,-149.492662
-99665=62.645835,-159.527304
-99666=62.440625,-165.145536
-99667=61.678982,-152.125307
-99668=61.682454,-157.157593
-99669=60.360150,-151.017884
-99670=58.660041,-156.987520
-99671=63.472253,-162.262227
-99672=60.752577,-150.629096
-99674=61.591281,-148.061954
-99676=62.450132,-149.789952
-99677=60.893876,-146.669922
-99678=59.399864,-159.906937
-99679=61.104273,-160.937572
-99680=60.385009,-162.684337
-99681=60.607081,-165.128294
-99682=60.352111,-153.108641
-99683=62.514805,-151.029580
-99684=63.985093,-160.406997
-99685=53.871799,-166.482869
-99686=61.150080,-146.810141
-99688=61.887028,-149.619671
-99689=59.484561,-139.419308
-99690=60.523716,-164.832582
-99691=62.817681,-153.374674
-99692=53.885808,-166.538324
-99693=60.850556,-148.033870
-99694=61.624101,-149.785264
-99695=55.918199,-159.493298
-99701=67.094545,-149.336012
-99702=64.650615,-147.052322
-99703=64.832624,-147.622719
-99704=64.296151,-149.149549
-99705=64.761825,-147.313674
-99706=64.010439,-144.678662
-99709=64.862968,-148.164072
-99712=65.058723,-145.925302
-99714=64.384531,-146.553715
-99720=66.564018,-152.766939
-99721=68.154932,-151.705201
-99722=68.091944,-145.604061
-99723=71.253500,-156.800072
-99724=66.390584,-147.337916
-99726=67.168639,-152.285215
-99727=65.975912,-161.138661
-99729=63.006166,-149.400714
-99730=65.649804,-145.587971
-99732=64.071746,-142.007579
-99733=65.838581,-144.175430
-99734=70.428206,-149.287534
-99736=66.084978,-162.761497
-99737=63.779534,-145.098323
-99738=65.634152,-141.882050
-99739=65.023988,-162.487892
-99740=67.874641,-144.596720
-99741=64.736146,-156.873009
-99742=63.777201,-171.725710
-99743=63.681106,-150.026544
-99744=64.308281,-149.163187
-99745=66.044747,-154.236862
-99746=65.600328,-158.190476
-99747=70.118416,-143.686957
-99748=64.346290,-158.771212
-99749=66.978430,-160.431808
-99750=67.728641,-164.543454
-99751=66.922686,-156.874646
-99752=67.263117,-161.919349
-99753=64.939607,-161.151272
-99754=64.902213,-157.694335
-99755=63.784977,-148.521374
-99756=64.565203,-151.751657
-99757=63.814891,-152.645747
-99758=65.151781,-149.372384
-99759=69.737132,-162.835227
-99760=64.250543,-148.128409
-99761=67.620987,-163.057973
-99762=64.744021,-164.659417
-99763=66.827912,-161.029217
-99764=63.291856,-141.453595
-99765=64.729316,-158.132388
-99766=68.702603,-164.807044
-99767=65.499199,-150.153798
-99768=65.033029,-154.913209
-99769=63.679524,-170.481103
-99770=66.746266,-159.511018
-99771=64.363986,-161.205278
-99772=66.003474,-165.911401
-99773=66.887644,-157.164700
-99774=66.023707,-149.080314
-99775=64.858130,-147.824759
-99776=63.394697,-143.402723
-99777=65.248528,-151.999049
-99778=65.059019,-166.430231
-99780=63.181236,-143.102439
-99781=67.468627,-146.064641
-99782=70.645765,-159.898711
-99783=65.676582,-168.079970
-99784=64.681721,-163.406036
-99785=65.343920,-166.508493
-99786=67.167563,-156.338137
-99788=66.646856,-143.788895
-99789=70.001750,-151.934657
-99790=65.390183,-148.326543
-99791=70.468398,-156.795478
-99801=58.372910,-134.178445
-99820=57.436465,-134.227340
-99824=58.265381,-134.400144
-99825=58.159987,-135.736378
-99826=58.710141,-136.736651
-99827=59.098771,-135.576936
-99829=58.104265,-135.399841
-99830=56.771079,-134.089981
-99832=58.015478,-136.166143
-99833=56.926675,-133.120372
-99835=57.000402,-135.076713
-99836=56.235218,-134.653499
-99840=59.575097,-135.335418
-99841=57.794300,-135.184384
-99901=55.540405,-131.105347
-99903=55.818431,-132.065800
-99918=55.916873,-132.695503
-99919=55.645594,-132.496820
-99921=55.407033,-132.766235
-99922=55.307528,-133.046815
-99923=56.002315,-130.041026
-99925=55.550204,-132.945933
-99926=55.138352,-131.470424
-99927=56.239062,-133.457924
-99929=56.370751,-131.693301
diff --git a/bin/hornet/webcam b/bin/hornet/webcam
deleted file mode 100755
index fdac5f8..0000000
--- a/bin/hornet/webcam
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-mpv av://v4l2:/dev/video0
diff --git a/bin/hostcert b/bin/hostcert
deleted file mode 100755
index 61f519d..0000000
--- a/bin/hostcert
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-host="$1"
-port="${2:-443}"
-
-openssl s_client -connect "$host:$port" </dev/null 2>/dev/null | perl -nle 'print if /BEGIN CERTIFICATE/../END CERTIFICATE/' | openssl x509 -text | perl -nle 'print unless /BEGIN CERTIFICATE/../END CERTIFICATE/'
diff --git a/bin/local/.gitignore b/bin/local/.gitignore
deleted file mode 100644
index 120f485..0000000
--- a/bin/local/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!/.gitignore
diff --git a/bin/mbsyncloop b/bin/mbsyncloop
deleted file mode 100755
index a1cf181..0000000
--- a/bin/mbsyncloop
+++ /dev/null
@@ -1,307 +0,0 @@
-#!/usr/bin/env perl
-use 5.016;
-use strict;
-use warnings;
-
-use File::Path;
-use File::Spec;
-use File::Temp;
-use JSON::PP;
-use POSIX 'mkfifo';
-
-my $RUN_DIR = make_run_dir();
-my ($PW_PID, $GOIMAPNOTIFY_PID);
-
-$SIG{INT} = $SIG{TERM} = sub { cleanup(); exit };
-END { cleanup() }
-
-my $config = "$ENV{HOME}/.config/mbsyncloop/config.json";
-
-main($config);
-
-sub main {
- my ($config) = @_;
-
- my $pw_pipe = make_pw_pipe();
- my $password_command_pipe = "head -n1 '$pw_pipe'";
-
- my $config_data;
- if (-f $config) {
- $config_data = JSON::PP::decode_json(slurp($config));
- }
- else {
- $config_data = {};
- }
-
- my $mbsync_config_data = slurp(
- ($config_data->{mbsync_config} // '~/.mbsyncrc')
- =~ s{^~/}{$ENV{HOME}/}r
- );
- my $password_command = extract_password_command($mbsync_config_data);
-
- spawn_pw_proc($pw_pipe, $password_command);
-
- my $goimapnotify_config_data = extract_goimapnotify_config(
- $config_data,
- $mbsync_config_data,
- $password_command_pipe,
- );
-
- my $goimapnotify_r = spawn_goimapnotify_proc(
- $goimapnotify_config_data,
- );
-
- my $generated_mbsync_config_file = write_mbsync_config(
- $mbsync_config_data,
- $goimapnotify_config_data->{boxes},
- $password_command_pipe,
- );
-
- loop(
- $config_data,
- $generated_mbsync_config_file,
- $goimapnotify_r,
- );
-}
-
-sub make_pw_pipe {
- my $file = File::Spec->catfile($RUN_DIR, "mbsyncloop");
- unlink($file);
- mkfifo($file, 0700) or die "couldn't create $file: $!";
- $file
-}
-
-sub extract_goimapnotify_config {
- my ($config_data, $mbsync_config_data, $password_command) = @_;
-
- (my $host) = $mbsync_config_data =~ /^Host (.*)$/m;
- (my $port) = $mbsync_config_data =~ /^Port (.*)$/m;
- (my $user) = $mbsync_config_data =~ /^User (.*)$/m;
-
- my $tls;
- if ($mbsync_config_data =~ /SSLType\s+IMAPS/) {
- $tls = JSON::PP::true;
- $port //= 993;
- }
- else {
- $tls = JSON::PP::false;
- $port //= 143;
- }
-
- my $goimapnotify_config = {
- host => $host,
- port => $port,
- tls => $tls,
- username => $user,
- passwordCmd => $password_command,
- };
-
- my @mailboxes;
- if ($config_data->{boxes}) {
- @mailboxes = @{ $config_data->{boxes} };
- }
- else {
- @mailboxes = read_mailboxes($goimapnotify_config);
- if ($config_data->{box_patterns}) {
- @mailboxes = grep {
- my $mailbox = $_;
- grep {
- $mailbox =~ /$_/
- } @{ $config_data->{box_patterns} }
- } @mailboxes
- }
- }
-
- $goimapnotify_config->{onNewMail} = "echo new";
- $goimapnotify_config->{boxes} = \@mailboxes;
-
- $goimapnotify_config
-}
-
-sub read_mailboxes {
- my ($config) = @_;
-
- my $tmp = File::Temp->new(DIR => $RUN_DIR);
- $tmp->print(JSON::PP::encode_json($config));
- $tmp->flush;
- open my $fh, '-|', 'goimapnotify', '--conf', $tmp->filename, '--list'
- or die "couldn't run goimapnotify: $!";
- <$fh>;
-
- map { chomp; s/^[^ ]* //r } <$fh>
-}
-
-sub extract_password_command {
- my ($mbsync_config) = @_;
- (my $password_command) = $mbsync_config =~ /^PassCmd "(.*)"$/m;
- $password_command
-}
-
-sub spawn_pw_proc {
- my ($pw_pipe, $password_command) = @_;
-
- my $pw = fetch_password($password_command);
-
- $PW_PID = fork;
- die "fork failed: $!" unless defined $PW_PID;
- if (!$PW_PID) {
- $SIG{PIPE} = 'IGNORE';
- setpgrp(0, 0);
- while (1) {
- open my $fh, '>', $pw_pipe or die "couldn't open $pw_pipe";
- $fh->print("$pw\n");
- close $fh;
- }
- }
-}
-
-sub fetch_password {
- my ($password_command) = @_;
- my $pw = `$password_command`;
- die "failed to fetch password: command returned $?" if $?;
- $pw
-}
-
-sub spawn_goimapnotify_proc {
- my ($config) = @_;
-
- pipe(my $goimapnotify_r, my $goimapnotify_w)
- or die "failed to create unnamed pipe: $!";
-
- $GOIMAPNOTIFY_PID = fork;
- die "fork failed: $!" unless defined $GOIMAPNOTIFY_PID;
- if (!$GOIMAPNOTIFY_PID) {
- setpgrp(0, 0);
- close $goimapnotify_r;
-
- my $tmp = File::Temp->new(DIR => $RUN_DIR);
- $tmp->print(JSON::PP::encode_json($config));
- $tmp->flush;
-
- while (1) {
- open my $fh, '-|', 'goimapnotify', '--conf', $tmp->filename
- or die "couldn't run goimapnotify: $!";
- while (<$fh>) {
- $goimapnotify_w->print("N\n");
- $goimapnotify_w->flush;
- }
- }
- }
- close $goimapnotify_w;
-
- $goimapnotify_r
-}
-
-sub write_mbsync_config {
- my ($mbsync_config, $mailboxes, $password_command) = @_;
-
- $mbsync_config =~ s/^PassCmd .*$/PassCmd "$password_command"/m;
- my ($far) = $mbsync_config =~ /^IMAPStore (.*)$/m;
- my ($near) = $mbsync_config =~ /^MaildirStore (.*)$/m;
-
- my $patterns = join "\n", map { "Pattern $_" } @$mailboxes;
- my $mbsync_channels = <<EOF;
-Channel mbsyncloop_priority
-Far :$far:
-Near :$near:
-Sync Pull Push
-$patterns
-
-Channel mbsyncloop_all
-Far :$far:
-Near :$near:
-Sync Pull Push
-Patterns *
-EOF
-
- my $tmp = File::Temp->new(DIR => $RUN_DIR);
- $tmp->print($mbsync_config);
- $tmp->print("\n");
- $tmp->print($mbsync_channels);
- $tmp->flush;
-
- $tmp
-}
-
-sub loop {
- my ($config_data, $mbsync_config, $goimapnotify_r) = @_;
-
- my $poll_interval = $config_data->{poll_interval} // 15 * 60;
- my $last_all = 0;
- $SIG{HUP} = sub { $last_all = 0 };
- while (1) {
- my $now = time;
- if (($now - $last_all) >= $poll_interval) {
- sync(
- $mbsync_config,
- "mbsyncloop_all",
- $config_data->{on_new_mail},
- );
- $last_all = $now;
- }
- if (idle($goimapnotify_r, $poll_interval)) {
- sync(
- $mbsync_config,
- "mbsyncloop_priority",
- $config_data->{on_new_mail},
- );
- }
- }
-}
-
-sub sync {
- my ($config, $channel, $on_new_mail) = @_;
- my $config_file = $config->filename;
- while (1) {
- my $status = system("mbsync -c '$config_file' $channel");
- if (!$status) {
- system($on_new_mail) if defined $on_new_mail;
- last;
- }
- sleep 5;
- }
-}
-
-sub idle {
- my ($goimapnotify_r, $max_delay) = @_;
- my $rin = '';
- vec($rin, fileno($goimapnotify_r), 1) = 1;
- my $ready = select(my $rout = $rin, undef, undef, $max_delay);
- return 0 if $ready == -1 && $! == POSIX::EINTR;
- die "failed to read goimapnotify output: $!" if $ready == -1;
- if ($ready) {
- while (1) {
- my $ready = select(my $rout = $rin, undef, undef, 0.01);
- return 0 if $ready == -1 && $! == POSIX::EINTR;
- die "failed to read goimapnotify output: $!" if $ready == -1;
- last unless $ready;
- sysread $goimapnotify_r, my $data, 4096;
- }
- return 1;
- }
- return 0;
-}
-
-sub slurp {
- my ($file) = @_;
- local $/;
- open my $fh, '<', $file or die "couldn't open $file: $!";
- <$fh>
-}
-
-sub make_run_dir {
- my $dir = "/run/user/$>";
- if (!-d $dir) {
- $dir = File::Spec->tmpdir();
- }
- unlink File::Spec->catfile($dir, "mbsyncloop");
- mkdir File::Spec->catfile($dir, "mbsyncloop");
- mkdir File::Spec->catfile($dir, "mbsyncloop", $$);
- File::Spec->catfile($dir, "mbsyncloop", $$)
-}
-
-sub cleanup {
- kill KILL => -$PW_PID if $PW_PID;
- kill KILL => -$GOIMAPNOTIFY_PID if $GOIMAPNOTIFY_PID;
- File::Path::remove_tree($RUN_DIR) if $RUN_DIR;
-}
diff --git a/bin/mem-usage b/bin/mem-usage
deleted file mode 100755
index 19e8c32..0000000
--- a/bin/mem-usage
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-ps -eo rss,ucmd | sort -rn | head -n"${1:-20}"
diff --git a/bin/mz-doy1/backlight b/bin/mz-doy1/backlight
deleted file mode 120000
index 41f9edb..0000000
--- a/bin/mz-doy1/backlight
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/backlight \ No newline at end of file
diff --git a/bin/mz-doy1/i3-switch-workspace b/bin/mz-doy1/i3-switch-workspace
deleted file mode 120000
index 9a8b81d..0000000
--- a/bin/mz-doy1/i3-switch-workspace
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/i3-switch-workspace \ No newline at end of file
diff --git a/bin/mz-doy1/kill-focused b/bin/mz-doy1/kill-focused
deleted file mode 120000
index bd9959b..0000000
--- a/bin/mz-doy1/kill-focused
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/kill-focused \ No newline at end of file
diff --git a/bin/mz-doy1/numkeys b/bin/mz-doy1/numkeys
deleted file mode 120000
index 2e7ec6c..0000000
--- a/bin/mz-doy1/numkeys
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/numkeys \ No newline at end of file
diff --git a/bin/mz-doy1/sc b/bin/mz-doy1/sc
deleted file mode 120000
index 634301f..0000000
--- a/bin/mz-doy1/sc
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/sc \ No newline at end of file
diff --git a/bin/mz-doy1/setup-inputs b/bin/mz-doy1/setup-inputs
deleted file mode 120000
index 7bec592..0000000
--- a/bin/mz-doy1/setup-inputs
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/setup-inputs \ No newline at end of file
diff --git a/bin/mz-doy1/status b/bin/mz-doy1/status
deleted file mode 120000
index f9356c4..0000000
--- a/bin/mz-doy1/status
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/status \ No newline at end of file
diff --git a/bin/mz-doy1/svdisable b/bin/mz-doy1/svdisable
deleted file mode 120000
index 2fc2baa..0000000
--- a/bin/mz-doy1/svdisable
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svdisable \ No newline at end of file
diff --git a/bin/mz-doy1/svdn b/bin/mz-doy1/svdn
deleted file mode 120000
index 74b07c4..0000000
--- a/bin/mz-doy1/svdn
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svdn \ No newline at end of file
diff --git a/bin/mz-doy1/svget b/bin/mz-doy1/svget
deleted file mode 120000
index b873a71..0000000
--- a/bin/mz-doy1/svget
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svget \ No newline at end of file
diff --git a/bin/mz-doy1/svkill b/bin/mz-doy1/svkill
deleted file mode 120000
index d0d1fd7..0000000
--- a/bin/mz-doy1/svkill
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svkill \ No newline at end of file
diff --git a/bin/mz-doy1/svlog b/bin/mz-doy1/svlog
deleted file mode 120000
index 105b765..0000000
--- a/bin/mz-doy1/svlog
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svlog \ No newline at end of file
diff --git a/bin/mz-doy1/svre b/bin/mz-doy1/svre
deleted file mode 120000
index e9591c3..0000000
--- a/bin/mz-doy1/svre
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svre \ No newline at end of file
diff --git a/bin/mz-doy1/svst b/bin/mz-doy1/svst
deleted file mode 120000
index 39c2f2a..0000000
--- a/bin/mz-doy1/svst
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svst \ No newline at end of file
diff --git a/bin/mz-doy1/svstop b/bin/mz-doy1/svstop
deleted file mode 120000
index ab107f9..0000000
--- a/bin/mz-doy1/svstop
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svstop \ No newline at end of file
diff --git a/bin/mz-doy1/svup b/bin/mz-doy1/svup
deleted file mode 120000
index 9adc623..0000000
--- a/bin/mz-doy1/svup
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/svup \ No newline at end of file
diff --git a/bin/mz-doy1/volume b/bin/mz-doy1/volume
deleted file mode 120000
index 3c17399..0000000
--- a/bin/mz-doy1/volume
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/volume \ No newline at end of file
diff --git a/bin/mz-doy1/watch-kbd b/bin/mz-doy1/watch-kbd
deleted file mode 120000
index 0db9975..0000000
--- a/bin/mz-doy1/watch-kbd
+++ /dev/null
@@ -1 +0,0 @@
-../hornet/watch-kbd \ No newline at end of file
diff --git a/bin/nopaste b/bin/nopaste
deleted file mode 100755
index 573af2e..0000000
--- a/bin/nopaste
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.020;
-
-use Carp;
-use File::Spec;
-use File::Temp;
-use POSIX 'strftime';
-
-if (@ARGV > 1) {
- croak "can only nopaste one file at a time";
-}
-
-my $date = strftime("%Y-%m-%d", localtime);
-my $template = "${date}-XXXXXXXX";
-my $suffix = @ARGV
- ? "-${\(File::Spec->splitdir($ARGV[0]))[-1]}"
- : undef;
-
-my $contents = do { local $/; <> };
-
-my $tmpfile = File::Temp->new(
- TEMPLATE => $template,
- SUFFIX => $suffix,
- UNLINK => 1,
- TMPDIR => 1,
-);
-my $tmpfilename = $tmpfile->filename;
-
-print $tmpfile $contents or croak "Can't write to $tmpfilename: $!";
-close $tmpfile or croak "Can't write to $tmpfilename: $!";
-chmod 0644 => $tmpfilename;
-
-system('scp', '-pq', $tmpfilename, "tozt.net:paste");
-
-say "https://paste.tozt.net/${\(File::Spec->splitdir($tmpfilename))[-1]}";
diff --git a/bin/on-lock b/bin/on-lock
deleted file mode 100755
index 3de3724..0000000
--- a/bin/on-lock
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-sudo -K
-ssh-add -D
-echo RELOADAGENT | gpg-connect-agent
-type rbw >/dev/null 2>&1 && rbw lock
diff --git a/bin/pacman-dump b/bin/pacman-dump
deleted file mode 100755
index b32ed16..0000000
--- a/bin/pacman-dump
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-set -eu
-set -o pipefail
-
-echo base-devel
-comm -23 <(pacman -Qeq | sort) <(pacman -Qgq base-devel | sort)
diff --git a/bin/pdfcat b/bin/pdfcat
deleted file mode 100755
index ff4edaa..0000000
--- a/bin/pdfcat
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-out="$1"
-shift
-gs -q -sPAPERSIZE=letter -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile="$out" "$@"
diff --git a/bin/pick-music b/bin/pick-music
deleted file mode 100755
index 8c406f7..0000000
--- a/bin/pick-music
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-lastfm-query sync doyster
-lastfm-query recommend "${1:-20}"
diff --git a/bin/rand-music b/bin/rand-music
deleted file mode 100755
index 6e9bccc..0000000
--- a/bin/rand-music
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-if [ "${1:-}" = '--old' ]; then
- extra_args="--exclude yearly --include all"
- shift
-else
- extra_args=
-fi
-
-lastfm-query sync doyster
-lastfm-query recommend --random --album $extra_args "${1:-20}"
diff --git a/bin/reply b/bin/reply
deleted file mode 100755
index 250a93b..0000000
--- a/bin/reply
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-set -eu
-
-podman images | grep -q localhost/reply || cat <<EOF | podman build -t reply -f -
-FROM docker.io/debian:stable-slim
-RUN sed -i 's/stable\/updates/stable-security\/updates/' /etc/apt/sources.list
-RUN apt-get update && apt-get install -y --no-install-recommends cpanminus make gcc libreadline-dev
-RUN cpanm -n Reply B::Keywords Data::Dump Carp::Always Term::ReadLine::Gnu
-EOF
-podman run --rm -itv /home/doy/.replyrc:/root/.replyrc reply reply "$@"
diff --git a/bin/rg b/bin/rg
deleted file mode 100755
index ea88361..0000000
--- a/bin/rg
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-if [ -t 1 ]; then
- exec /usr/bin/rg --smart-case --no-ignore-messages -p "$@" | less -FR
-else
- exec /usr/bin/rg --smart-case --no-ignore-messages "$@"
-fi
diff --git a/bin/ringtone b/bin/ringtone
deleted file mode 100755
index 19dddb6..0000000
--- a/bin/ringtone
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-if [ $# -lt 3 ]; then
- echo "usage: ringtone <input> <output> <fake_video_file>"
- echo "note: fake_video_file is unused, but must be valid"
- echo " and at least the length of the output"
- exit 1
-fi
-
-mencoder \
- -ovc frameno \
- -oac mp3lame \
- -lameopts cbr:br=64 \
- -of rawaudio \
- -o "$2" \
- -audiofile "$1" \
- -endpos 256kb \
- "$3"
diff --git a/bin/scanpdf b/bin/scanpdf
deleted file mode 100755
index 31ebb14..0000000
--- a/bin/scanpdf
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-set -eu
-
-scanimage --format=png --device=pixma --resolution=150 | convert - scan.pdf
diff --git a/bin/scratch b/bin/scratch
deleted file mode 100755
index 0cca01c..0000000
--- a/bin/scratch
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-cat >/dev/null
diff --git a/bin/set-mac b/bin/set-mac
deleted file mode 100755
index 986d333..0000000
--- a/bin/set-mac
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-set -eu
-
-link() {
- sudo ip link set dev wlp0s20f3 "$@"
-}
-
-link down
-link address "$1"
-link up
diff --git a/bin/show-colors b/bin/show-colors
deleted file mode 100755
index 47e0d32..0000000
--- a/bin/show-colors
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-############################################################
-# Nico Golde <nico(at)ngolde.de> Homepage: http://www.ngolde.de
-# Last change: Mon Feb 16 16:24:41 CET 2004
-############################################################
-
-for attr in 0 1 2 3 4 5 6 7; do
- echo "----------------------------------------------------------------"
- printf 'ESC[%s;Foreground;Background - \n' $attr
- for fore in 30 31 32 33 34 35 36 37; do
- for back in 40 41 42 43 44 45 46 47; do
- printf '\033[%s;%s;%sm %02s;%02s ' $attr $fore $back $fore $back
- done
- printf '\033[0m\n'
- done
- printf '\033[0m'
-done
-
-printf '\n'
-for color in $(seq 0 255); do
- printf '\033[%s;%s;%sm \033[m' 48 5 "$color"
- if [ "$color" -eq 15 ] || [ "$(echo "scale = 0; ($color - 15) % 36" | bc)" -eq 0 ]; then
- printf '\n'
- fi
-done
-printf '\033[0m\n'
diff --git a/bin/smt b/bin/smt
deleted file mode 100755
index ad3f459..0000000
--- a/bin/smt
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-set -eu
-
-podman images | grep -q localhost/smt || cat <<EOF | podman build -t smt -f -
-FROM docker.io/alpine:latest
-RUN apk add perl make
-RUN env PERL_MM_USE_DEFAULT=1 perl -MCPAN -e'install Games::SMTNocturne::Demons'
-EOF
-podman run --rm smt smt "$@"
diff --git a/bin/sum b/bin/sum
deleted file mode 100755
index cf21bfd..0000000
--- a/bin/sum
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-
-use List::Util 'sum';
-
-say sum map { s/^([-+\.\d]+).*/$1/r } <>;
diff --git a/bin/tmux-clipboard b/bin/tmux-clipboard
deleted file mode 100755
index dae796b..0000000
--- a/bin/tmux-clipboard
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.020;
-use feature 'signatures';
-no warnings 'experimental::signatures';
-
-use Config;
-
-use constant {
- COPY_CMD => ($Config{osname} eq 'linux' ? 'xclip -i' : 'pbcopy'),
- PASTE_CMD => ($Config{osname} eq 'linux' ? 'xclip -o' : 'pbpaste'),
-};
-
-sub main($cmd, $selection) {
- if ($cmd eq 'copy') {
- tmux_copy($selection);
- }
- elsif ($cmd eq 'paste') {
- tmux_paste($selection);
- }
- else {
- die "usage: $0 [copy|paste]";
- }
-}
-
-sub tmux_copy($selection='primary') {
- set_clipboard_contents(get_tmux_buffer(), $selection);
-}
-
-sub tmux_paste($selection='primary') {
- write_to_tmux(get_clipboard_contents($selection));
-}
-
-sub set_clipboard_contents($contents, $selection) {
- my $copy_cmd = COPY_CMD;
- if ($Config{osname} eq 'linux') {
- $copy_cmd .= " -selection $selection";
- }
-
- open my $clipboard, '|-', $copy_cmd
- or die "can't set clipboard contents using `$copy_cmd`: $!";
- print $clipboard $contents;
- close $clipboard;
-}
-
-sub get_clipboard_contents($selection) {
- my $paste_cmd = PASTE_CMD;
- if ($Config{osname} eq 'linux') {
- $paste_cmd .= " -selection $selection";
- }
-
- open my $clipboard, '-|', $paste_cmd
- or die "can't get clipboard contents using `$paste_cmd`: $!";
- my $contents = do { local $/; <$clipboard> };
- close $clipboard;
- $contents
-}
-
-sub get_tmux_buffer {
- scalar `tmux show-buffer`
-}
-
-sub write_to_tmux($contents) {
- my $tmux_cmd = "tmux load-buffer -b tmux-clipboard -";
- open my $tmux, '|-', $tmux_cmd
- or die "can't set tmux buffer contents using `$tmux_cmd`: $!";
- print $tmux $contents;
- close $tmux;
-
- system("tmux paste-buffer -b tmux-clipboard -dp");
-}
-
-main(@ARGV)
diff --git a/bin/tozt/learn_spam b/bin/tozt/learn_spam
deleted file mode 100755
index 75e500a..0000000
--- a/bin/tozt/learn_spam
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-MAILDIR=~/Maildir
-OPTS="--no-sync"
-SALEARN=/usr/bin/vendor_perl/sa-learn
-
-if [ "$1" = "-q" ]; then
- OPTS="$OPTS"
- OUTFILE="/dev/null"
-else
- OPTS="$OPTS --showdots"
- OUTFILE="/dev/stdout"
-fi
-
-if [ ! "$1" = "-q" ]; then
- echo "$(date): Learning ham..."
-fi
-nice find $MAILDIR -type f |
- perl -nl0e'chomp; ($ts) = /(\d{10})/; $now = time; print if m{/(new|cur)/} && !m{/(\.old|\.spam)/} && $ts > $now - 60*60*24*30' |
- xargs -n1000 -0 $SALEARN "$OPTS" --ham >$OUTFILE
-
-if [ ! "$1" = "-q" ]; then
- echo "$(date): Learning spam..."
-fi
-nice find $MAILDIR -type f |
- perl -nl0e'chomp; ($ts) = /(\d{10})/; $now = time; print if m{/(new|cur)/} && m{/\.spam/} && $ts > $now - 60*60*24*30' |
- xargs -n1000 -0 $SALEARN "$OPTS" --spam >$OUTFILE
-
-if [ ! "$1" = "-q" ]; then
- echo "$(date): Syncing..."
-fi
-nice $SALEARN --sync >$OUTFILE
-
-if [ ! "$1" = "-q" ]; then
- echo "$(date): Done!"
-fi
diff --git a/bin/update-addressbook b/bin/update-addressbook
deleted file mode 100755
index 4683e86..0000000
--- a/bin/update-addressbook
+++ /dev/null
@@ -1,276 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.020;
-use feature 'signatures';
-no warnings 'experimental::signatures';
-
-use Config::INI::Reader;
-use Config::INI::Writer;
-use Email::Address;
-use File::Find;
-
-my @exclude_patterns = (
- # quoted-printable (needs special handling, punting for now)
- sub($address) { $address->format =~ /^=\?/ },
- # automated emails
- sub($address) { $address->address =~ /(mailer-daemon|noreply)/i },
-);
-
-# abook uses # for comments instead of ;
-package Abook::Reader {
- use base 'Config::INI::Reader';
-
- sub preprocess_line($self, $line) {
- ${$line} =~ s/\s+#.*$//g;
- }
-
- sub can_ignore($self, $line, $) {
- return $line =~ /\A\s*(?:#|$)/ ? 1 : 0;
- }
-}
-
-# abook is super finicky about its input format
-package Abook::Writer {
- use base 'Config::INI::Writer';
-
- sub write_handle($self, $input, $handle) {
- print $handle "# abook addressbook file\n\n";
- $self->SUPER::write_handle($input, $handle);
- }
-
- sub preprocess_input($self, $data) {
- my $ini_data = [
- format => {
- program => 'abook',
- version => '0.6.1',
- },
- ];
- my $i = 0;
- for my $name (sort { fc($a) cmp fc($b) } keys %$data) {
- my $person_data = $data->{$name}->as_hashref;
- delete $person_data->{name};
- push @$ini_data, (
- $i++ => [
- name => $name,
- %$person_data,
- ],
- );
- }
-
- $self->SUPER::preprocess_input($ini_data);
- }
-
- sub stringify_value_assignment($self, $name, $value) {
- return '' unless defined $value;
- return $name . '=' . $self->stringify_value($value) . "\n";
- }
-}
-
-package Person {
- sub from_hashref($class, $data) {
- return bless $data, $class;
- }
-
- sub from_email($class, $name, $addresses) {
- return $class->from_hashref({
- name => $name,
- email => join(',', map { $_->address } @$addresses),
- });
- }
-
- sub addresses($self) {
- return split(',', $self->{email} // '');
- }
-
- sub as_hashref($self) {
- return { %$self };
- }
-}
-
-sub existing_people($addressbook) {
- my $data = Abook::Reader->read_file($addressbook);
- delete $data->{format};
-
- my %people;
- for my $id (keys %$data) {
- my $person = $data->{$id};
- $people{$person->{name}} = Person->from_hashref($person);
- }
-
- return %people;
-}
-
-sub maildir_addresses($maildir) {
- my %addresses;
-
- find(sub() {
- open my $fh, '<', $_ or die "couldn't open $_: $!";
- while (<$fh>) {
- last if /^$/;
- next unless /^(?:From|Sender): /;
- for my $address (Email::Address->parse($_)) {
- $address = Email::Address->new(
- $address->name,
- $address->address,
- );
-
- my $name = $address->name;
- my $format = $address->format;
-
- next if $addresses{$name} &&
- grep { $format eq $_ } @{ $addresses{$name} };
- next if grep { $_->($address) } @exclude_patterns;
-
- push @{ $addresses{$name} ||= [] }, $address;
- }
- }
- close $fh;
- }, $maildir);
-
- return %addresses;
-}
-
-sub merge_addresses($old, $new) {
- my %reverse_old = map {
- map { $_->address => $_->name } @$_
- } values %$old;
- my @new_addresses = map {
- map { $_->address } @$_
- } values %$new;
-
- my %seen_address;
- my %reverse_ret;
- for my $new_address (@new_addresses) {
- next if $seen_address{$new_address}++;
-
- my @related_addresses = ($new_address);
- my @related_names;
- while (1) {
- my @new_related_names = map {
- my $cur_address = $_;
- (
- (grep {
- grep {
- fc($_->address) eq fc($cur_address)
- } @{ $new->{$_} }
- } keys %$new),
- (grep {
- grep {
- fc($_->address) eq fc($cur_address)
- } @{ $old->{$_} }
- } keys %$old),
- )
- } @related_addresses;
- @new_related_names = keys(
- %{ { map { $_ => 1 } @new_related_names } }
- );
-
- my @new_related_addresses = map {
- $_->address
- } map {
- (
- (exists $new->{$_}
- ? (@{ $new->{$_} })
- : ()),
- (exists $old->{$_}
- ? (@{ $old->{$_} })
- : ()),
- )
- } @new_related_names;
- @new_related_addresses = keys(
- %{ { map { $_ => 1 } @new_related_addresses } }
- );
-
- last if @related_names == @new_related_names
- && @related_addresses == @new_related_addresses;
-
- @related_addresses = @new_related_addresses;
- @related_names = @new_related_names;
- }
-
- my ($name) = grep { exists $old->{$_} } @related_names;
- $name = (sort @related_names)[0] unless defined $name;
-
- for my $related_address (@related_addresses) {
- $seen_address{$related_address}++;
- $reverse_ret{$related_address} = $name;
- }
- }
-
- %reverse_ret = (%reverse_old, %reverse_ret);
-
- my %ret;
- for my $address (keys %reverse_ret) {
- my $name = $reverse_ret{$address};
- push @{ $ret{$name} ||= [] }, Email::Address->new($name, $address);
- }
-
- for my $name (keys %ret) {
- my %seen_name;
- for my $address (@{ $ret{$name} }) {
- if (defined $seen_name{lc($address->address)}) {
- if (defined $reverse_old{$address->address}) {
- $seen_name{lc($address->address)} = $address;
- }
- }
- else {
- $seen_name{lc($address->address)} = $address;
- }
- }
- $ret{$name} = [ values %seen_name ];
- }
-
- return %ret;
-}
-
-sub merge_people($old, $new) {
- for my $name (keys %$new) {
- if (exists $old->{$name}) {
- my $old_person = $old->{$name};
- my @addresses = $old_person->addresses;
- for my $address ($new->{$name}->addresses) {
- push @addresses, $address
- unless grep { $_ eq $address } @addresses;
- }
-
- $old_person->{email} = join(',', @addresses);
- }
- else {
- $old->{$name} = $new->{$name};
- }
- }
-
- return %$old;
-}
-
-sub main($addressbook, $maildir) {
- die "usage: $0 ADDRESSBOOK MAILDIR" unless @_ == 2;
-
- my %existing_people = existing_people($addressbook);
- my %existing_addresses = map {
- my $name = $_;
- $name => [
- map {
- Email::Address->new($name, $_)
- } $existing_people{$name}->addresses
- ]
- } keys %existing_people;
-
- my %maildir = maildir_addresses($maildir);
-
- my %new_addresses = merge_addresses(\%existing_addresses, \%maildir);
- my %new_people = map {
- $_ => Person->from_email($_, $new_addresses{$_})
- } keys %new_addresses;
-
- my %new_abook = merge_people(\%existing_people, \%new_people);
-
- rename $addressbook => "$addressbook.bak"
- or die "couldn't rename $addressbook: $!";
-
- my $writer = Abook::Writer->new;
- $writer->write_file(\%new_abook, $addressbook);
-}
-
-main(@ARGV);
diff --git a/bin/vimmanpager b/bin/vimmanpager
deleted file mode 100755
index dfd36f3..0000000
--- a/bin/vimmanpager
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-sed -e 's/\x1B\[[[:digit:]]\+m//g' | col -b |
- vim \
- -c 'let no_plugin_maps = 1' \
- -c 'let g:rainbow_active = 0' \
- -c 'let g:airline#extensions#whitespace#checks = []' \
- -c "if exists('\$MAN_PN') | file \$MAN_PN | endif" \
- -c 'setlocal nolist nomod noswf ft=man' \
- -c 'runtime! macros/less.vim' \
- -c 'set ma' \
- -c 'setlocal noma' \
- -
diff --git a/bin/web b/bin/web
deleted file mode 100755
index f8484c0..0000000
--- a/bin/web
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-version="$(python -c "import sys; print(sys.version_info[0])")"
-if [ "$version" = "2" ]; then
- server=SimpleHTTPServer
-else
- server=http.server
-fi
-exec python -m "$server" "${1:-8000}"